From c82cd4eed1282806e48345e3c4d37a3c1d3f90e7 Mon Sep 17 00:00:00 2001 From: Damien Le Moal Date: Fri, 20 Aug 2021 16:02:55 +0900 Subject: [PATCH 001/192] scsi: sd: Fix sd_do_mode_sense() buffer length handling commit c749301ebee82eb5e97dec14b6ab31a4aabe37a6 upstream. For devices that explicitly asked for MODE SENSE(10) use, make sure that scsi_mode_sense() is called with a buffer of at least 8 bytes so that the sense header fits. Link: https://lore.kernel.org/r/20210820070255.682775-4-damien.lemoal@wdc.com Signed-off-by: Damien Le Moal Signed-off-by: Martin K. Petersen Signed-off-by: Greg Kroah-Hartman --- drivers/scsi/sd.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index fce63335084ed5..78ead3369779ce 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -2607,6 +2607,13 @@ sd_do_mode_sense(struct scsi_disk *sdkp, int dbd, int modepage, unsigned char *buffer, int len, struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr) { + /* + * If we must use MODE SENSE(10), make sure that the buffer length + * is at least 8 bytes so that the mode sense header fits. + */ + if (sdkp->device->use_10_for_ms && len < 8) + len = 8; + return scsi_mode_sense(sdkp->device, dbd, modepage, buffer, len, SD_TIMEOUT, sdkp->max_retries, data, sshdr); From dbd961095ed44585fc628962d7c7da866852f9a5 Mon Sep 17 00:00:00 2001 From: Sakari Ailus Date: Wed, 17 Nov 2021 20:07:34 +0200 Subject: [PATCH 002/192] ACPI: Get acpi_device's parent from the parent field commit 9054fc6d57e80c27c0b0632966416144f2092c2b upstream. Printk modifier %pfw is used to print the full path of the device name. This is obtained device by device until a device no longer has a parent. On ACPI getting the parent fwnode is done by calling acpi_get_parent() which tries to down() a semaphore. But local IRQs are now disabled in vprintk_store() before the mutex is acquired. This is obviously a problem. Luckily struct device, embedded in struct acpi_device, has a parent field already. Use that field to get the parent instead of relying on acpi_get_parent(). Fixes: 3bd32d6a2ee6 ("lib/vsprintf: Add %pfw conversion specifier for printing fwnode names") Cc: 5.5+ # 5.5+ Signed-off-by: Sakari Ailus Reviewed-by: Andy Shevchenko Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- drivers/acpi/property.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/drivers/acpi/property.c b/drivers/acpi/property.c index e312ebaed8db49..781e312f453427 100644 --- a/drivers/acpi/property.c +++ b/drivers/acpi/property.c @@ -1090,15 +1090,10 @@ struct fwnode_handle *acpi_node_get_parent(const struct fwnode_handle *fwnode) /* All data nodes have parent pointer so just return that */ return to_acpi_data_node(fwnode)->parent; } else if (is_acpi_device_node(fwnode)) { - acpi_handle handle, parent_handle; + struct device *dev = to_acpi_device_node(fwnode)->dev.parent; - handle = to_acpi_device_node(fwnode)->handle; - if (ACPI_SUCCESS(acpi_get_parent(handle, &parent_handle))) { - struct acpi_device *adev; - - if (!acpi_bus_get_device(parent_handle, &adev)) - return acpi_fwnode_handle(adev); - } + if (dev) + return acpi_fwnode_handle(to_acpi_device(dev)); } return NULL; From e0b8e1ae8306ab8d8e56d8bbc32327eba5f12a42 Mon Sep 17 00:00:00 2001 From: "Rafael J. Wysocki" Date: Thu, 18 Nov 2021 14:37:38 +0100 Subject: [PATCH 003/192] ACPI: CPPC: Add NULL pointer check to cppc_get_perf() commit 935dff305da2be7957a5ce8f07f45d6c4c1c6984 upstream. Check cpc_desc against NULL in cppc_get_perf(), so it doesn't crash down the road if cpc_desc is NULL. Fixes: 0654cf05d17b ("ACPI: CPPC: Introduce cppc_get_nominal_perf()") Reported-by: Kai-Heng Feng Signed-off-by: Rafael J. Wysocki Cc: 5.15+ # 5.15+ Tested-by: Kai-Heng Feng Signed-off-by: Greg Kroah-Hartman --- drivers/acpi/cppc_acpi.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/acpi/cppc_acpi.c b/drivers/acpi/cppc_acpi.c index bd482108310cfe..3fbb17ecce2d50 100644 --- a/drivers/acpi/cppc_acpi.c +++ b/drivers/acpi/cppc_acpi.c @@ -1011,7 +1011,14 @@ static int cpc_write(int cpu, struct cpc_register_resource *reg_res, u64 val) static int cppc_get_perf(int cpunum, enum cppc_regs reg_idx, u64 *perf) { struct cpc_desc *cpc_desc = per_cpu(cpc_desc_ptr, cpunum); - struct cpc_register_resource *reg = &cpc_desc->cpc_regs[reg_idx]; + struct cpc_register_resource *reg; + + if (!cpc_desc) { + pr_debug("No CPC descriptor for CPU:%d\n", cpunum); + return -ENODEV; + } + + reg = &cpc_desc->cpc_regs[reg_idx]; if (CPC_IN_PCC(reg)) { int pcc_ss_id = per_cpu(cpu_pcc_subspace_idx, cpunum); From ea773394a0035e5f90843476200b633a0a9ead9d Mon Sep 17 00:00:00 2001 From: Johan Hovold Date: Tue, 23 Nov 2021 10:10:17 +0100 Subject: [PATCH 004/192] USB: serial: pl2303: fix GC type detection commit aa5721a9e0c9fb8a4bdfe0c8751377cd537d6174 upstream. At least some PL2303GC have a bcdDevice of 0x105 instead of 0x100 as the datasheet claims. Add it to the list of known release numbers for the HXN (G) type. Note the chip type could only be determined indirectly based on its package being of QFP type, which appears to only be available for PL2303GC. Fixes: 894758d0571d ("USB: serial: pl2303: tighten type HXN (G) detection") Cc: stable@vger.kernel.org # 5.13 Reported-by: Anton Lundin Link: https://lore.kernel.org/r/20211123071613.GZ108031@montezuma.acc.umu.se Link: https://lore.kernel.org/r/20211123091017.30708-1-johan@kernel.org Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/pl2303.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index f45ca7ddf78eac..a70fd86f735ca8 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c @@ -432,6 +432,7 @@ static int pl2303_detect_type(struct usb_serial *serial) case 0x200: switch (bcdDevice) { case 0x100: + case 0x105: case 0x305: case 0x405: /* From 616dc7809103143b331e992c3645329bd477b369 Mon Sep 17 00:00:00 2001 From: Daniele Palmas Date: Fri, 19 Nov 2021 15:03:19 +0100 Subject: [PATCH 005/192] USB: serial: option: add Telit LE910S1 0x9200 composition commit e353f3e88720300c3d72f49a4bea54f42db1fa5e upstream. Add the following Telit LE910S1 composition: 0x9200: tty Signed-off-by: Daniele Palmas Link: https://lore.kernel.org/r/20211119140319.10448-1-dnlplm@gmail.com Cc: stable@vger.kernel.org Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index a484ff5e4ebf83..0902e79c8493f4 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -1267,6 +1267,8 @@ static const struct usb_device_id option_ids[] = { .driver_info = NCTRL(2) }, { USB_DEVICE(TELIT_VENDOR_ID, 0x9010), /* Telit SBL FN980 flashing device */ .driver_info = NCTRL(0) | ZLP }, + { USB_DEVICE(TELIT_VENDOR_ID, 0x9200), /* Telit LE910S1 flashing device */ + .driver_info = NCTRL(0) | ZLP }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff), .driver_info = RSVD(1) }, From 8228d7b0281c541807af67de598e001dceaacb84 Mon Sep 17 00:00:00 2001 From: Mingjie Zhang Date: Tue, 23 Nov 2021 21:37:57 +0800 Subject: [PATCH 006/192] USB: serial: option: add Fibocom FM101-GL variants commit 88459e3e42760abb2299bbf6cb1026491170e02a upstream. Update the USB serial option driver support for the Fibocom FM101-GL Cat.6 LTE modules as there are actually several different variants. - VID:PID 2cb7:01a2, FM101-GL are laptop M.2 cards (with MBIM interfaces for /Linux/Chrome OS) - VID:PID 2cb7:01a4, FM101-GL for laptop debug M.2 cards(with adb interface for /Linux/Chrome OS) 0x01a2: mbim, tty, tty, diag, gnss 0x01a4: mbim, diag, tty, adb, gnss, gnss Here are the outputs of lsusb -v and usb-devices: T: Bus=02 Lev=01 Prnt=01 Port=03 Cnt=01 Dev#= 86 Spd=5000 MxCh= 0 D: Ver= 3.20 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 9 #Cfgs= 1 P: Vendor=2cb7 ProdID=01a2 Rev= 5.04 S: Manufacturer=Fibocom Wireless Inc. S: Product=Fibocom FM101-GL Module S: SerialNumber=673326ce C:* #Ifs= 6 Cfg#= 1 Atr=a0 MxPwr=896mA A: FirstIf#= 0 IfCount= 2 Cls=02(comm.) Sub=0e Prot=00 I:* If#= 0 Alt= 0 #EPs= 1 Cls=02(comm.) Sub=0e Prot=00 Driver=cdc_mbim I: If#= 1 Alt= 0 #EPs= 0 Cls=0a(data ) Sub=00 Prot=02 Driver=cdc_mbim I:* If#= 1 Alt= 1 #EPs= 2 Cls=0a(data ) Sub=00 Prot=02 Driver=cdc_mbim I:* If#= 2 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=40 Driver=(none) I:* If#= 3 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=40 Driver=(none) I:* If#= 4 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=30 Driver=(none) I:* If#= 5 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=40 Driver=(none) Bus 002 Device 084: ID 2cb7:01a2 Fibocom Wireless Inc. Fibocom FM101-GL Module Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 3.20 bDeviceClass 0 bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 9 idVendor 0x2cb7 idProduct 0x01a2 bcdDevice 5.04 iManufacturer 1 Fibocom Wireless Inc. iProduct 2 Fibocom FM101-GL Module iSerial 3 673326ce bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 0x015d bNumInterfaces 6 bConfigurationValue 1 iConfiguration 4 MBIM_DUN_DUN_DIAG_NMEA bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 896mA Interface Association: bLength 8 bDescriptorType 11 bFirstInterface 0 bInterfaceCount 2 bFunctionClass 2 Communications bFunctionSubClass 14 bFunctionProtocol 0 iFunction 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 2 Communications bInterfaceSubClass 14 bInterfaceProtocol 0 iInterface 5 Fibocom FM101-GL LTE Modem CDC Header: bcdCDC 1.10 CDC Union: bMasterInterface 0 bSlaveInterface 1 CDC MBIM: bcdMBIMVersion 1.00 wMaxControlMessage 4096 bNumberFilters 32 bMaxFilterSize 128 wMaxSegmentSize 2048 bmNetworkCapabilities 0x20 8-byte ntb input size CDC MBIM Extended: bcdMBIMExtendedVersion 1.00 bMaxOutstandingCommandMessages 64 wMTU 1500 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 9 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 0 bInterfaceClass 10 CDC Data bInterfaceSubClass 0 bInterfaceProtocol 2 iInterface 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 1 bNumEndpoints 2 bInterfaceClass 10 CDC Data bInterfaceSubClass 0 bInterfaceProtocol 2 iInterface 6 MBIM Data Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x8e EP 14 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 6 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x0f EP 15 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 2 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 255 Vendor Specific Subclass bInterfaceProtocol 64 iInterface 0 ** UNRECOGNIZED: 05 24 00 10 01 ** UNRECOGNIZED: 05 24 01 00 00 ** UNRECOGNIZED: 04 24 02 02 ** UNRECOGNIZED: 05 24 06 00 00 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x000a 1x 10 bytes bInterval 9 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x01 EP 1 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 3 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 255 Vendor Specific Subclass bInterfaceProtocol 64 iInterface 0 ** UNRECOGNIZED: 05 24 00 10 01 ** UNRECOGNIZED: 05 24 01 00 00 ** UNRECOGNIZED: 04 24 02 02 ** UNRECOGNIZED: 05 24 06 00 00 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x85 EP 5 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x000a 1x 10 bytes bInterval 9 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 4 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 255 Vendor Specific Subclass bInterfaceProtocol 48 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x86 EP 6 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 5 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 64 iInterface 0 ** UNRECOGNIZED: 05 24 00 10 01 ** UNRECOGNIZED: 05 24 01 00 00 ** UNRECOGNIZED: 04 24 02 02 ** UNRECOGNIZED: 05 24 06 00 00 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x88 EP 8 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x000a 1x 10 bytes bInterval 9 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x87 EP 7 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x04 EP 4 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 T: Bus=02 Lev=01 Prnt=01 Port=03 Cnt=01 Dev#= 85 Spd=5000 MxCh= 0 D: Ver= 3.20 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 9 #Cfgs= 1 P: Vendor=2cb7 ProdID=01a4 Rev= 5.04 S: Manufacturer=Fibocom Wireless Inc. S: Product=Fibocom FM101-GL Module S: SerialNumber=673326ce C:* #Ifs= 7 Cfg#= 1 Atr=a0 MxPwr=896mA A: FirstIf#= 0 IfCount= 2 Cls=02(comm.) Sub=0e Prot=00 I:* If#= 0 Alt= 0 #EPs= 1 Cls=02(comm.) Sub=0e Prot=00 Driver=cdc_mbim I: If#= 1 Alt= 0 #EPs= 0 Cls=0a(data ) Sub=00 Prot=02 Driver=cdc_mbim I:* If#= 1 Alt= 1 #EPs= 2 Cls=0a(data ) Sub=00 Prot=02 Driver=cdc_mbim I:* If#= 2 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=30 Driver=(none) I:* If#= 3 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=40 Driver=(none) I:* If#= 4 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=42 Prot=01 Driver=(none) I:* If#= 5 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=40 Driver=(none) I:* If#= 6 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=00 Prot=40 Driver=(none) Bus 002 Device 085: ID 2cb7:01a4 Fibocom Wireless Inc. Fibocom FM101-GL Module Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 3.20 bDeviceClass 0 bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 9 idVendor 0x2cb7 idProduct 0x01a4 bcdDevice 5.04 iManufacturer 1 Fibocom Wireless Inc. iProduct 2 Fibocom FM101-GL Module iSerial 3 673326ce bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 0x0180 bNumInterfaces 7 bConfigurationValue 1 iConfiguration 4 MBIM_DIAG_DUN_ADB_GNSS_GNSS bmAttributes 0xa0 (Bus Powered) Remote Wakeup MaxPower 896mA Interface Association: bLength 8 bDescriptorType 11 bFirstInterface 0 bInterfaceCount 2 bFunctionClass 2 Communications bFunctionSubClass 14 bFunctionProtocol 0 iFunction 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 1 bInterfaceClass 2 Communications bInterfaceSubClass 14 bInterfaceProtocol 0 iInterface 5 Fibocom FM101-GL LTE Modem CDC Header: bcdCDC 1.10 CDC Union: bMasterInterface 0 bSlaveInterface 1 CDC MBIM: bcdMBIMVersion 1.00 wMaxControlMessage 4096 bNumberFilters 32 bMaxFilterSize 128 wMaxSegmentSize 2048 bmNetworkCapabilities 0x20 8-byte ntb input size CDC MBIM Extended: bcdMBIMExtendedVersion 1.00 bMaxOutstandingCommandMessages 64 wMTU 1500 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 9 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 0 bInterfaceClass 10 CDC Data bInterfaceSubClass 0 bInterfaceProtocol 2 iInterface 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 1 bNumEndpoints 2 bInterfaceClass 10 CDC Data bInterfaceSubClass 0 bInterfaceProtocol 2 iInterface 6 MBIM Data Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x8e EP 14 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 6 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x0f EP 15 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 2 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 255 Vendor Specific Subclass bInterfaceProtocol 48 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x01 EP 1 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 3 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 255 Vendor Specific Subclass bInterfaceProtocol 64 iInterface 0 ** UNRECOGNIZED: 05 24 00 10 01 ** UNRECOGNIZED: 05 24 01 00 00 ** UNRECOGNIZED: 04 24 02 02 ** UNRECOGNIZED: 05 24 06 00 00 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x000a 1x 10 bytes bInterval 9 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 4 bAlternateSetting 0 bNumEndpoints 2 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 66 bInterfaceProtocol 1 iInterface 8 ADB Interface Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x03 EP 3 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x85 EP 5 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 5 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 64 iInterface 0 ** UNRECOGNIZED: 05 24 00 10 01 ** UNRECOGNIZED: 05 24 01 00 00 ** UNRECOGNIZED: 04 24 02 02 ** UNRECOGNIZED: 05 24 06 00 00 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x87 EP 7 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x000a 1x 10 bytes bInterval 9 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x86 EP 6 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x04 EP 4 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 6 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 64 iInterface 0 ** UNRECOGNIZED: 05 24 00 10 01 ** UNRECOGNIZED: 05 24 01 00 00 ** UNRECOGNIZED: 04 24 02 02 ** UNRECOGNIZED: 05 24 06 00 00 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x89 EP 9 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x000a 1x 10 bytes bInterval 9 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x88 EP 8 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x05 EP 5 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 0 bMaxBurst 0 Signed-off-by: Mingjie Zhang Link: https://lore.kernel.org/r/20211123133757.37475-1-superzmj@fibocom.com Cc: stable@vger.kernel.org Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- drivers/usb/serial/option.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 0902e79c8493f4..546fce4617a854 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -2096,6 +2096,9 @@ static const struct usb_device_id option_ids[] = { { USB_DEVICE_AND_INTERFACE_INFO(0x2cb7, 0x010b, 0xff, 0xff, 0x30) }, /* Fibocom FG150 Diag */ { USB_DEVICE_AND_INTERFACE_INFO(0x2cb7, 0x010b, 0xff, 0, 0) }, /* Fibocom FG150 AT */ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a0, 0xff) }, /* Fibocom NL668-AM/NL652-EU (laptop MBIM) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a2, 0xff) }, /* Fibocom FM101-GL (laptop MBIM) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a4, 0xff), /* Fibocom FM101-GL (laptop MBIM) */ + .driver_info = RSVD(4) }, { USB_DEVICE_INTERFACE_CLASS(0x2df3, 0x9d03, 0xff) }, /* LongSung M5710 */ { USB_DEVICE_INTERFACE_CLASS(0x305a, 0x1404, 0xff) }, /* GosunCn GM500 RNDIS */ { USB_DEVICE_INTERFACE_CLASS(0x305a, 0x1405, 0xff) }, /* GosunCn GM500 MBIM */ From 581f42756d29cdbbfa219f9edb0107d653b31005 Mon Sep 17 00:00:00 2001 From: Minas Harutyunyan Date: Thu, 4 Nov 2021 11:36:01 +0400 Subject: [PATCH 007/192] usb: dwc2: gadget: Fix ISOC flow for elapsed frames commit 7ad4a0b1d46b2612f4429a72afd8f137d7efa9a9 upstream. Added updating of request frame number for elapsed frames, otherwise frame number will remain as previous use of request. This will allow function driver to correctly track frames in case of Missed ISOC occurs. Added setting request actual length to 0 for elapsed frames. In Slave mode when pushing data to RxFIFO by dwords, request actual length incrementing accordingly. But before whole packet will be pushed into RxFIFO and send to host can occurs Missed ISOC and data will not send to host. So, in this case request actual length should be reset to 0. Fixes: 91bb163e1e4f ("usb: dwc2: gadget: Fix ISOC flow for BDMA and Slave") Cc: stable Reviewed-by: John Keeping Signed-off-by: Minas Harutyunyan Link: https://lore.kernel.org/r/c356baade6e9716d312d43df08d53ae557cb8037.1636011277.git.Minas.Harutyunyan@synopsys.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc2/gadget.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c index 11d85a6e0b0dca..2190225bf3da26 100644 --- a/drivers/usb/dwc2/gadget.c +++ b/drivers/usb/dwc2/gadget.c @@ -1198,6 +1198,8 @@ static void dwc2_hsotg_start_req(struct dwc2_hsotg *hsotg, } ctrl |= DXEPCTL_CNAK; } else { + hs_req->req.frame_number = hs_ep->target_frame; + hs_req->req.actual = 0; dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, -ENODATA); return; } @@ -2857,9 +2859,12 @@ static void dwc2_gadget_handle_ep_disabled(struct dwc2_hsotg_ep *hs_ep) do { hs_req = get_ep_head(hs_ep); - if (hs_req) + if (hs_req) { + hs_req->req.frame_number = hs_ep->target_frame; + hs_req->req.actual = 0; dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, -ENODATA); + } dwc2_gadget_incr_frame_num(hs_ep); /* Update current frame number value. */ hsotg->frame_number = dwc2_hsotg_read_frameno(hsotg); @@ -2912,8 +2917,11 @@ static void dwc2_gadget_handle_out_token_ep_disabled(struct dwc2_hsotg_ep *ep) while (dwc2_gadget_target_frame_elapsed(ep)) { hs_req = get_ep_head(ep); - if (hs_req) + if (hs_req) { + hs_req->req.frame_number = ep->target_frame; + hs_req->req.actual = 0; dwc2_hsotg_complete_request(hsotg, ep, hs_req, -ENODATA); + } dwc2_gadget_incr_frame_num(ep); /* Update current frame number value. */ @@ -3002,8 +3010,11 @@ static void dwc2_gadget_handle_nak(struct dwc2_hsotg_ep *hs_ep) while (dwc2_gadget_target_frame_elapsed(hs_ep)) { hs_req = get_ep_head(hs_ep); - if (hs_req) + if (hs_req) { + hs_req->req.frame_number = hs_ep->target_frame; + hs_req->req.actual = 0; dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, -ENODATA); + } dwc2_gadget_incr_frame_num(hs_ep); /* Update current frame number value. */ From a5e1211d44519e0c25d64b7cabefdf59c19029be Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Fri, 5 Nov 2021 07:58:03 -0700 Subject: [PATCH 008/192] usb: dwc2: hcd_queue: Fix use of floating point literal commit 310780e825f3ffd211b479b8f828885a6faedd63 upstream. A new commit in LLVM causes an error on the use of 'long double' when '-mno-x87' is used, which the kernel does through an alias, '-mno-80387' (see the LLVM commit below for more details around why it does this). drivers/usb/dwc2/hcd_queue.c:1744:25: error: expression requires 'long double' type support, but target 'x86_64-unknown-linux-gnu' does not support it delay = ktime_set(0, DWC2_RETRY_WAIT_DELAY); ^ drivers/usb/dwc2/hcd_queue.c:62:34: note: expanded from macro 'DWC2_RETRY_WAIT_DELAY' #define DWC2_RETRY_WAIT_DELAY (1 * 1E6L) ^ 1 error generated. This happens due to the use of a 'long double' literal. The 'E6' part of '1E6L' causes the literal to be a 'double' then the 'L' suffix promotes it to 'long double'. There is no visible reason for a floating point value in this driver, as the value is only used as a parameter to a function that expects an integer type. Use NSEC_PER_MSEC, which is the same integer value as '1E6L', to avoid changing functionality but fix the error. Link: https://github.com/ClangBuiltLinux/linux/issues/1497 Link: https://github.com/llvm/llvm-project/commit/a8083d42b1c346e21623a1d36d1f0cadd7801d83 Fixes: 6ed30a7d8ec2 ("usb: dwc2: host: use hrtimer for NAK retries") Cc: stable Reviewed-by: Nick Desaulniers Reviewed-by: John Keeping Acked-by: Minas Harutyunyan Signed-off-by: Nathan Chancellor Link: https://lore.kernel.org/r/20211105145802.2520658-1-nathan@kernel.org Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc2/hcd_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/dwc2/hcd_queue.c b/drivers/usb/dwc2/hcd_queue.c index 89a788326c5620..24beff610cf2c6 100644 --- a/drivers/usb/dwc2/hcd_queue.c +++ b/drivers/usb/dwc2/hcd_queue.c @@ -59,7 +59,7 @@ #define DWC2_UNRESERVE_DELAY (msecs_to_jiffies(5)) /* If we get a NAK, wait this long before retrying */ -#define DWC2_RETRY_WAIT_DELAY (1 * 1E6L) +#define DWC2_RETRY_WAIT_DELAY (1 * NSEC_PER_MSEC) /** * dwc2_periodic_channel_available() - Checks that a channel is available for a From a6cc2445103ef6c406e735cb545b44e3edeb18bb Mon Sep 17 00:00:00 2001 From: Fabio Aiuto Date: Sat, 13 Nov 2021 15:29:59 +0100 Subject: [PATCH 009/192] usb: dwc3: leave default DMA for PCI devices commit 47ce45906ca9870cf5267261f155fb7c70307cf0 upstream. in case of a PCI dwc3 controller, leave the default DMA mask. Calling of a 64 bit DMA mask breaks the driver on cherrytrail based tablets like Cyberbook T116. Fixes: 45d39448b4d0 ("usb: dwc3: support 64 bit DMA in platform driver") Cc: stable Reported-by: Hans De Goede Tested-by: Fabio Aiuto Tested-by: Hans de Goede Signed-off-by: Fabio Aiuto Link: https://lore.kernel.org/r/20211113142959.27191-1-fabioaiuto83@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/core.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 0104a80b185e17..357b7805896e75 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -1565,9 +1565,11 @@ static int dwc3_probe(struct platform_device *pdev) dwc3_get_properties(dwc); - ret = dma_set_mask_and_coherent(dwc->sysdev, DMA_BIT_MASK(64)); - if (ret) - return ret; + if (!dwc->sysdev_is_parent) { + ret = dma_set_mask_and_coherent(dwc->sysdev, DMA_BIT_MASK(64)); + if (ret) + return ret; + } dwc->reset = devm_reset_control_array_get_optional_shared(dev); if (IS_ERR(dwc->reset)) From 949fac2e09ddd1efdfbbe0ee155c3ac6c143e336 Mon Sep 17 00:00:00 2001 From: Thinh Nguyen Date: Mon, 25 Oct 2021 16:15:32 -0700 Subject: [PATCH 010/192] usb: dwc3: core: Revise GHWPARAMS9 offset commit 250fdabec6ffcaf895c5e0dedca62706ef10d8f6 upstream. During our predesign phase for DWC_usb32, the GHWPARAMS9 register offset was 0xc680. We revised our final design, and the GHWPARAMS9 offset is now moved to 0xc6e8 on release. Fixes: 16710380d3aa ("usb: dwc3: Capture new capability register GHWPARAMS9") Cc: Signed-off-by: Thinh Nguyen Link: https://lore.kernel.org/r/1541737108266a97208ff827805be1f32852590c.1635202893.git.Thinh.Nguyen@synopsys.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/dwc3/core.h b/drivers/usb/dwc3/core.h index 0c100901a78455..fd5d42ec53501b 100644 --- a/drivers/usb/dwc3/core.h +++ b/drivers/usb/dwc3/core.h @@ -143,7 +143,7 @@ #define DWC3_GHWPARAMS8 0xc600 #define DWC3_GUCTL3 0xc60c #define DWC3_GFLADJ 0xc630 -#define DWC3_GHWPARAMS9 0xc680 +#define DWC3_GHWPARAMS9 0xc6e0 /* Device Registers */ #define DWC3_DCFG 0xc700 From d92d8b5893668db88483fd85f96b7f9e5dadf544 Mon Sep 17 00:00:00 2001 From: Thinh Nguyen Date: Mon, 25 Oct 2021 16:21:10 -0700 Subject: [PATCH 011/192] usb: dwc3: gadget: Ignore NoStream after End Transfer commit d74dc3e9f58c28689cef1faccf918e06587367d3 upstream. The End Transfer command from a stream endpoint will generate a NoStream event, and we should ignore it. Currently we set the flag DWC3_EP_IGNORE_NEXT_NOSTREAM to track this prior to sending the command, and it will be cleared on the next stream event. However, a stream event may be generated before the End Transfer command completion and prematurely clear the flag. Fix this by setting the flag on End Transfer completion instead. Fixes: 140ca4cfea8a ("usb: dwc3: gadget: Handle stream transfers") Cc: Signed-off-by: Thinh Nguyen Link: https://lore.kernel.org/r/cee1253af4c3600edb878d11c9c08b040817ae23.1635203975.git.Thinh.Nguyen@synopsys.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/gadget.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index ed97e47d326138..c82d363cb00a7a 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -3352,6 +3352,14 @@ static void dwc3_gadget_endpoint_command_complete(struct dwc3_ep *dep, if (cmd != DWC3_DEPCMD_ENDTRANSFER) return; + /* + * The END_TRANSFER command will cause the controller to generate a + * NoStream Event, and it's not due to the host DP NoStream rejection. + * Ignore the next NoStream event. + */ + if (dep->stream_capable) + dep->flags |= DWC3_EP_IGNORE_NEXT_NOSTREAM; + dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING; dep->flags &= ~DWC3_EP_TRANSFER_STARTED; dwc3_gadget_ep_cleanup_cancelled_requests(dep); @@ -3574,14 +3582,6 @@ static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, WARN_ON_ONCE(ret); dep->resource_index = 0; - /* - * The END_TRANSFER command will cause the controller to generate a - * NoStream Event, and it's not due to the host DP NoStream rejection. - * Ignore the next NoStream event. - */ - if (dep->stream_capable) - dep->flags |= DWC3_EP_IGNORE_NEXT_NOSTREAM; - if (!interrupt) dep->flags &= ~DWC3_EP_TRANSFER_STARTED; else From ecba9bc9946b9dc36d454b3b9708a9be5178eb83 Mon Sep 17 00:00:00 2001 From: Thinh Nguyen Date: Mon, 25 Oct 2021 16:35:06 -0700 Subject: [PATCH 012/192] usb: dwc3: gadget: Check for L1/L2/U3 for Start Transfer commit 63c4c320ccf77074ffe9019ac596603133c1b517 upstream. The programming guide noted that the driver needs to verify if the link state is in U0 before executing the Start Transfer command. If it's not in U0, the driver needs to perform remote wakeup. This is not accurate. If the link state is in U1/U2, then the controller will not respond to link recovery request from DCTL.ULSTCHNGREQ. The Start Transfer command will trigger a link recovery if it is in U1/U2. A clarification will be added to the programming guide for all controller versions. The current implementation shouldn't cause any functional issue. It may occasionally report an invalid time out warning from failed link recovery request. The driver will still go ahead with the Start Transfer command if the remote wakeup fails. The new change only initiates remote wakeup where it is needed, which is when the link state is in L1/L2/U3. Fixes: c36d8e947a56 ("usb: dwc3: gadget: put link to U0 before Start Transfer") Cc: Signed-off-by: Thinh Nguyen Link: https://lore.kernel.org/r/05b4a5fbfbd0863fc9b1d7af934a366219e3d0b4.1635204761.git.Thinh.Nguyen@synopsys.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/gadget.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index c82d363cb00a7a..422b1988fa8374 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -310,13 +310,24 @@ int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned int cmd, if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) { int link_state; + /* + * Initiate remote wakeup if the link state is in U3 when + * operating in SS/SSP or L1/L2 when operating in HS/FS. If the + * link state is in U1/U2, no remote wakeup is needed. The Start + * Transfer command will initiate the link recovery. + */ link_state = dwc3_gadget_get_link_state(dwc); - if (link_state == DWC3_LINK_STATE_U1 || - link_state == DWC3_LINK_STATE_U2 || - link_state == DWC3_LINK_STATE_U3) { + switch (link_state) { + case DWC3_LINK_STATE_U2: + if (dwc->gadget->speed >= USB_SPEED_SUPER) + break; + + fallthrough; + case DWC3_LINK_STATE_U3: ret = __dwc3_gadget_wakeup(dwc); dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n", ret); + break; } } From 70ba56d4f464d9ad380fd99f21b3279cfc6201f8 Mon Sep 17 00:00:00 2001 From: Albert Wang Date: Tue, 9 Nov 2021 17:26:42 +0800 Subject: [PATCH 013/192] usb: dwc3: gadget: Fix null pointer exception commit 26288448120b28af1dfd85a6fa6b6d55a16c7f2f upstream. In the endpoint interrupt functions dwc3_gadget_endpoint_transfer_in_progress() and dwc3_gadget_endpoint_trbs_complete() will dereference the endpoint descriptor. But it could be cleared in __dwc3_gadget_ep_disable() when accessory disconnected. So we need to check whether it is null or not before dereferencing it. Fixes: f09ddcfcb8c5 ("usb: dwc3: gadget: Prevent EP queuing while stopping transfers") Cc: stable Reviewed-by: Jack Pham Signed-off-by: Albert Wang Link: https://lore.kernel.org/r/20211109092642.3507692-1-albertccwang@google.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/gadget.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 422b1988fa8374..4c16805a2b3102 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -3263,6 +3263,9 @@ static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep, struct dwc3 *dwc = dep->dwc; bool no_started_trb = true; + if (!dep->endpoint.desc) + return no_started_trb; + dwc3_gadget_ep_cleanup_completed_requests(dep, event, status); if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) @@ -3310,6 +3313,9 @@ static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3_ep *dep, { int status = 0; + if (!dep->endpoint.desc) + return; + if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) dwc3_gadget_endpoint_frame_from_event(dep, event); From 54619c356f6c0004ca1631cc98fe7cc4b1600b9d Mon Sep 17 00:00:00 2001 From: Martyn Welch Date: Mon, 22 Nov 2021 18:44:45 +0000 Subject: [PATCH 014/192] net: usb: Correct PHY handling of smsc95xx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit a049a30fc27c1cb2e12889bbdbd463dbf750103a upstream. The smsc95xx driver is dropping phy speed settings and causing a stack trace at device unbind: [  536.379147] smsc95xx 2-1:1.0 eth1: unregister 'smsc95xx' usb-ci_hdrc.2-1, smsc95xx USB 2.0 Ethernet [  536.425029] ------------[ cut here ]------------ [  536.429650] WARNING: CPU: 0 PID: 439 at fs/kernfs/dir.c:1535 kernfs_remove_by_name_ns+0xb8/0xc0 [  536.438416] kernfs: can not remove 'attached_dev', no directory [  536.444363] Modules linked in: xts dm_crypt dm_mod atmel_mxt_ts smsc95xx usbnet [  536.451748] CPU: 0 PID: 439 Comm: sh Tainted: G        W         5.15.0 #1 [  536.458636] Hardware name: Freescale i.MX53 (Device Tree Support) [  536.464735] Backtrace:  [  536.467190] [<80b1c904>] (dump_backtrace) from [<80b1cb48>] (show_stack+0x20/0x24) [  536.474787]  r7:000005ff r6:8035b294 r5:600f0013 r4:80d8af78 [  536.480449] [<80b1cb28>] (show_stack) from [<80b1f764>] (dump_stack_lvl+0x48/0x54) [  536.488035] [<80b1f71c>] (dump_stack_lvl) from [<80b1f788>] (dump_stack+0x18/0x1c) [  536.495620]  r5:00000009 r4:80d9b820 [  536.499198] [<80b1f770>] (dump_stack) from [<80124fac>] (__warn+0xfc/0x114) [  536.506187] [<80124eb0>] (__warn) from [<80b1d21c>] (warn_slowpath_fmt+0xa8/0xdc) [  536.513688]  r7:000005ff r6:80d9b820 r5:80d9b8e0 r4:83744000 [  536.519349] [<80b1d178>] (warn_slowpath_fmt) from [<8035b294>] (kernfs_remove_by_name_ns+0xb8/0xc0) [  536.528416]  r9:00000001 r8:00000000 r7:824926dc r6:00000000 r5:80df6c2c r4:00000000 [  536.536162] [<8035b1dc>] (kernfs_remove_by_name_ns) from [<80b1f56c>] (sysfs_remove_link+0x4c/0x50) [  536.545225]  r6:7f00f02c r5:80df6c2c r4:83306400 [  536.549845] [<80b1f520>] (sysfs_remove_link) from [<806f9c8c>] (phy_detach+0xfc/0x11c) [  536.557780]  r5:82492000 r4:83306400 [  536.561359] [<806f9b90>] (phy_detach) from [<806f9cf8>] (phy_disconnect+0x4c/0x58) [  536.568943]  r7:824926dc r6:7f00f02c r5:82492580 r4:83306400 [  536.574604] [<806f9cac>] (phy_disconnect) from [<7f00a310>] (smsc95xx_disconnect_phy+0x30/0x38 [smsc95xx]) [  536.584290]  r5:82492580 r4:82492580 [  536.587868] [<7f00a2e0>] (smsc95xx_disconnect_phy [smsc95xx]) from [<7f001570>] (usbnet_stop+0x70/0x1a0 [usbnet]) [  536.598161]  r5:82492580 r4:82492000 [  536.601740] [<7f001500>] (usbnet_stop [usbnet]) from [<808baa70>] (__dev_close_many+0xb4/0x12c) [  536.610466]  r8:83744000 r7:00000000 r6:83744000 r5:83745b74 r4:82492000 [  536.617170] [<808ba9bc>] (__dev_close_many) from [<808bab78>] (dev_close_many+0x90/0x120) [  536.625365]  r7:00000001 r6:83745b74 r5:83745b8c r4:82492000 [  536.631026] [<808baae8>] (dev_close_many) from [<808bf408>] (unregister_netdevice_many+0x15c/0x704) [  536.640094]  r9:00000001 r8:81130b98 r7:83745b74 r6:83745bc4 r5:83745b8c r4:82492000 [  536.647840] [<808bf2ac>] (unregister_netdevice_many) from [<808bfa50>] (unregister_netdevice_queue+0xa0/0xe8) [  536.657775]  r10:8112bcc0 r9:83306c00 r8:83306c80 r7:8291e420 r6:83744000 r5:00000000 [  536.665608]  r4:82492000 [  536.668143] [<808bf9b0>] (unregister_netdevice_queue) from [<808bfac0>] (unregister_netdev+0x28/0x30) [  536.677381]  r6:7f01003c r5:82492000 r4:82492000 [  536.682000] [<808bfa98>] (unregister_netdev) from [<7f000b40>] (usbnet_disconnect+0x64/0xdc [usbnet]) [  536.691241]  r5:82492000 r4:82492580 [  536.694819] [<7f000adc>] (usbnet_disconnect [usbnet]) from [<8076b958>] (usb_unbind_interface+0x80/0x248) [  536.704406]  r5:7f01003c r4:83306c80 [  536.707984] [<8076b8d8>] (usb_unbind_interface) from [<8061765c>] (device_release_driver_internal+0x1c4/0x1cc) [  536.718005]  r10:8112bcc0 r9:80dff1dc r8:83306c80 r7:83744000 r6:7f01003c r5:00000000 [  536.725838]  r4:8291e420 [  536.728373] [<80617498>] (device_release_driver_internal) from [<80617684>] (device_release_driver+0x20/0x24) [  536.738302]  r7:83744000 r6:810d4f4c r5:8291e420 r4:8176ae30 [  536.743963] [<80617664>] (device_release_driver) from [<806156cc>] (bus_remove_device+0xf0/0x148) [  536.752858] [<806155dc>] (bus_remove_device) from [<80610018>] (device_del+0x198/0x41c) [  536.760880]  r7:83744000 r6:8116e2e4 r5:8291e464 r4:8291e420 [  536.766542] [<8060fe80>] (device_del) from [<80768fe8>] (usb_disable_device+0xcc/0x1e0) [  536.774576]  r10:8112bcc0 r9:80dff1dc r8:00000001 r7:8112bc48 r6:8291e400 r5:00000001 [  536.782410]  r4:83306c00 [  536.784945] [<80768f1c>] (usb_disable_device) from [<80769c30>] (usb_set_configuration+0x514/0x8dc) [  536.794011]  r10:00000000 r9:00000000 r8:832c3600 r7:00000004 r6:810d5688 r5:00000000 [  536.801844]  r4:83306c00 [  536.804379] [<8076971c>] (usb_set_configuration) from [<80775fac>] (usb_generic_driver_disconnect+0x34/0x38) [  536.814236]  r10:832c3610 r9:83745ef8 r8:832c3600 r7:00000004 r6:810d5688 r5:83306c00 [  536.822069]  r4:83306c00 [  536.824605] [<80775f78>] (usb_generic_driver_disconnect) from [<8076b850>] (usb_unbind_device+0x30/0x70) [  536.834100]  r5:83306c00 r4:810d5688 [  536.837678] [<8076b820>] (usb_unbind_device) from [<8061765c>] (device_release_driver_internal+0x1c4/0x1cc) [  536.847432]  r5:822fb480 r4:83306c80 [  536.851009] [<80617498>] (device_release_driver_internal) from [<806176a8>] (device_driver_detach+0x20/0x24) [  536.860853]  r7:00000004 r6:810d4f4c r5:810d5688 r4:83306c80 [  536.866515] [<80617688>] (device_driver_detach) from [<80614d98>] (unbind_store+0x70/0xe4) [  536.874793] [<80614d28>] (unbind_store) from [<80614118>] (drv_attr_store+0x30/0x3c) [  536.882554]  r7:00000000 r6:00000000 r5:83739200 r4:80614d28 [  536.888217] [<806140e8>] (drv_attr_store) from [<8035cb68>] (sysfs_kf_write+0x48/0x54) [  536.896154]  r5:83739200 r4:806140e8 [  536.899732] [<8035cb20>] (sysfs_kf_write) from [<8035be84>] (kernfs_fop_write_iter+0x11c/0x1d4) [  536.908446]  r5:83739200 r4:00000004 [  536.912024] [<8035bd68>] (kernfs_fop_write_iter) from [<802b87fc>] (vfs_write+0x258/0x3e4) [  536.920317]  r10:00000000 r9:83745f58 r8:83744000 r7:00000000 r6:00000004 r5:00000000 [  536.928151]  r4:82adacc0 [  536.930687] [<802b85a4>] (vfs_write) from [<802b8b0c>] (ksys_write+0x74/0xf4) [  536.937842]  r10:00000004 r9:007767a0 r8:83744000 r7:00000000 r6:00000000 r5:82adacc0 [  536.945676]  r4:82adacc0 [  536.948213] [<802b8a98>] (ksys_write) from [<802b8ba4>] (sys_write+0x18/0x1c) [  536.955367]  r10:00000004 r9:83744000 r8:80100244 r7:00000004 r6:76f47b58 r5:76fc0350 [  536.963200]  r4:00000004 [  536.965735] [<802b8b8c>] (sys_write) from [<80100060>] (ret_fast_syscall+0x0/0x48) [  536.973320] Exception stack(0x83745fa8 to 0x83745ff0) [  536.978383] 5fa0:                   00000004 76fc0350 00000001 007767a0 00000004 00000000 [  536.986569] 5fc0: 00000004 76fc0350 76f47b58 00000004 76f47c7c 76f48114 00000000 7e87991c [  536.994753] 5fe0: 00000498 7e879908 76e6dce8 76eca2e8 [  536.999922] ---[ end trace 9b835d809816b435 ]--- The driver should not be connecting and disconnecting the PHY when the device is opened and closed, it should be stopping and starting the PHY. The phy should be connected as part of binding and disconnected during unbinding. As this results in the PHY not being reset during open, link speed, etc. settings set prior to the link coming up are now not being lost. It is necessary for phy_stop() to only be called when the phydev still exists (resolving the above stack trace). When unbinding, ".unbind" will be called prior to ".stop", with phy_disconnect() already having called phy_stop() before the phydev becomes inaccessible. Signed-off-by: Martyn Welch Cc: Steve Glendinning Cc: UNGLinuxDriver@microchip.com Cc: "David S. Miller" Cc: Jakub Kicinski Cc: stable@kernel.org # v5.15 Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- drivers/net/usb/smsc95xx.c | 55 ++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 29 deletions(-) diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c index 26b1bd8e845b43..f91dabd65ecd88 100644 --- a/drivers/net/usb/smsc95xx.c +++ b/drivers/net/usb/smsc95xx.c @@ -1049,6 +1049,14 @@ static const struct net_device_ops smsc95xx_netdev_ops = { .ndo_set_features = smsc95xx_set_features, }; +static void smsc95xx_handle_link_change(struct net_device *net) +{ + struct usbnet *dev = netdev_priv(net); + + phy_print_status(net->phydev); + usbnet_defer_kevent(dev, EVENT_LINK_CHANGE); +} + static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf) { struct smsc95xx_priv *pdata; @@ -1153,6 +1161,17 @@ static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf) dev->net->min_mtu = ETH_MIN_MTU; dev->net->max_mtu = ETH_DATA_LEN; dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len; + + ret = phy_connect_direct(dev->net, pdata->phydev, + &smsc95xx_handle_link_change, + PHY_INTERFACE_MODE_MII); + if (ret) { + netdev_err(dev->net, "can't attach PHY to %s\n", pdata->mdiobus->id); + goto unregister_mdio; + } + + phy_attached_info(dev->net->phydev); + return 0; unregister_mdio: @@ -1170,47 +1189,25 @@ static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf) { struct smsc95xx_priv *pdata = dev->driver_priv; + phy_disconnect(dev->net->phydev); mdiobus_unregister(pdata->mdiobus); mdiobus_free(pdata->mdiobus); netif_dbg(dev, ifdown, dev->net, "free pdata\n"); kfree(pdata); } -static void smsc95xx_handle_link_change(struct net_device *net) -{ - struct usbnet *dev = netdev_priv(net); - - phy_print_status(net->phydev); - usbnet_defer_kevent(dev, EVENT_LINK_CHANGE); -} - static int smsc95xx_start_phy(struct usbnet *dev) { - struct smsc95xx_priv *pdata = dev->driver_priv; - struct net_device *net = dev->net; - int ret; + phy_start(dev->net->phydev); - ret = smsc95xx_reset(dev); - if (ret < 0) - return ret; - - ret = phy_connect_direct(net, pdata->phydev, - &smsc95xx_handle_link_change, - PHY_INTERFACE_MODE_MII); - if (ret) { - netdev_err(net, "can't attach PHY to %s\n", pdata->mdiobus->id); - return ret; - } - - phy_attached_info(net->phydev); - phy_start(net->phydev); return 0; } -static int smsc95xx_disconnect_phy(struct usbnet *dev) +static int smsc95xx_stop(struct usbnet *dev) { - phy_stop(dev->net->phydev); - phy_disconnect(dev->net->phydev); + if (dev->net->phydev) + phy_stop(dev->net->phydev); + return 0; } @@ -1965,7 +1962,7 @@ static const struct driver_info smsc95xx_info = { .unbind = smsc95xx_unbind, .link_reset = smsc95xx_link_reset, .reset = smsc95xx_start_phy, - .stop = smsc95xx_disconnect_phy, + .stop = smsc95xx_stop, .rx_fixup = smsc95xx_rx_fixup, .tx_fixup = smsc95xx_tx_fixup, .status = smsc95xx_status, From 39509d76a9a3d02f379d52cb4b1449469c56c0e0 Mon Sep 17 00:00:00 2001 From: Nikolay Aleksandrov Date: Tue, 23 Nov 2021 12:27:19 +0200 Subject: [PATCH 015/192] net: nexthop: fix null pointer dereference when IPv6 is not enabled commit 1c743127cc54b112b155f434756bd4b5fa565a99 upstream. When we try to add an IPv6 nexthop and IPv6 is not enabled (!CONFIG_IPV6) we'll hit a NULL pointer dereference[1] in the error path of nh_create_ipv6() due to calling ipv6_stub->fib6_nh_release. The bug has been present since the beginning of IPv6 nexthop gateway support. Commit 1aefd3de7bc6 ("ipv6: Add fib6_nh_init and release to stubs") tells us that only fib6_nh_init has a dummy stub because fib6_nh_release should not be called if fib6_nh_init returns an error, but the commit below added a call to ipv6_stub->fib6_nh_release in its error path. To fix it return the dummy stub's -EAFNOSUPPORT error directly without calling ipv6_stub->fib6_nh_release in nh_create_ipv6()'s error path. [1] Output is a bit truncated, but it clearly shows the error. BUG: kernel NULL pointer dereference, address: 000000000000000000 #PF: supervisor instruction fetch in kernel modede #PF: error_code(0x0010) - not-present pagege PGD 0 P4D 0 Oops: 0010 [#1] PREEMPT SMP NOPTI CPU: 4 PID: 638 Comm: ip Kdump: loaded Not tainted 5.16.0-rc1+ #446 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-4.fc34 04/01/2014 RIP: 0010:0x0 Code: Unable to access opcode bytes at RIP 0xffffffffffffffd6. RSP: 0018:ffff888109f5b8f0 EFLAGS: 00010286^Ac RAX: 0000000000000000 RBX: ffff888109f5ba28 RCX: 0000000000000000 RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8881008a2860 RBP: ffff888109f5b9d8 R08: 0000000000000000 R09: 0000000000000000 R10: ffff888109f5b978 R11: ffff888109f5b948 R12: 00000000ffffff9f R13: ffff8881008a2a80 R14: ffff8881008a2860 R15: ffff8881008a2840 FS: 00007f98de70f100(0000) GS:ffff88822bf00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: ffffffffffffffd6 CR3: 0000000100efc000 CR4: 00000000000006e0 Call Trace: nh_create_ipv6+0xed/0x10c rtm_new_nexthop+0x6d7/0x13f3 ? check_preemption_disabled+0x3d/0xf2 ? lock_is_held_type+0xbe/0xfd rtnetlink_rcv_msg+0x23f/0x26a ? check_preemption_disabled+0x3d/0xf2 ? rtnl_calcit.isra.0+0x147/0x147 netlink_rcv_skb+0x61/0xb2 netlink_unicast+0x100/0x187 netlink_sendmsg+0x37f/0x3a0 ? netlink_unicast+0x187/0x187 sock_sendmsg_nosec+0x67/0x9b ____sys_sendmsg+0x19d/0x1f9 ? copy_msghdr_from_user+0x4c/0x5e ? rcu_read_lock_any_held+0x2a/0x78 ___sys_sendmsg+0x6c/0x8c ? asm_sysvec_apic_timer_interrupt+0x12/0x20 ? lockdep_hardirqs_on+0xd9/0x102 ? sockfd_lookup_light+0x69/0x99 __sys_sendmsg+0x50/0x6e do_syscall_64+0xcb/0xf2 entry_SYSCALL_64_after_hwframe+0x44/0xae RIP: 0033:0x7f98dea28914 Code: 00 f7 d8 64 89 02 48 c7 c0 ff ff ff ff eb b5 0f 1f 80 00 00 00 00 48 8d 05 e9 5d 0c 00 8b 00 85 c0 75 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 41 54 41 89 d4 55 48 89 f5 53 RSP: 002b:00007fff859f5e68 EFLAGS: 00000246 ORIG_RAX: 000000000000002e2e RAX: ffffffffffffffda RBX: 00000000619cb810 RCX: 00007f98dea28914 RDX: 0000000000000000 RSI: 00007fff859f5ed0 RDI: 0000000000000003 RBP: 0000000000000000 R08: 0000000000000001 R09: 0000000000000008 R10: fffffffffffffce6 R11: 0000000000000246 R12: 0000000000000001 R13: 000055c0097ae520 R14: 000055c0097957fd R15: 00007fff859f63a0 Modules linked in: bridge stp llc bonding virtio_net Cc: stable@vger.kernel.org Fixes: 53010f991a9f ("nexthop: Add support for IPv6 gateways") Signed-off-by: Nikolay Aleksandrov Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/ipv4/nexthop.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/net/ipv4/nexthop.c b/net/ipv4/nexthop.c index 9e8100728d464d..2cc7a7a864c6b4 100644 --- a/net/ipv4/nexthop.c +++ b/net/ipv4/nexthop.c @@ -2544,11 +2544,15 @@ static int nh_create_ipv6(struct net *net, struct nexthop *nh, /* sets nh_dev if successful */ err = ipv6_stub->fib6_nh_init(net, fib6_nh, &fib6_cfg, GFP_KERNEL, extack); - if (err) + if (err) { + /* IPv6 is not enabled, don't call fib6_nh_release */ + if (err == -EAFNOSUPPORT) + goto out; ipv6_stub->fib6_nh_release(fib6_nh); - else + } else { nh->nh_flags = fib6_nh->fib_nh_flags; - + } +out: return err; } From a815c169c8c4f1dac2444ca4d0217b766fbbd2af Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Wed, 17 Nov 2021 10:49:23 +0300 Subject: [PATCH 016/192] usb: chipidea: ci_hdrc_imx: fix potential error pointer dereference in probe commit d4d2e5329ae9dfd6742c84d79f7d143d10410f1b upstream. If the first call to devm_usb_get_phy_by_phandle(dev, "fsl,usbphy", 0) fails with something other than -ENODEV then it leads to an error pointer dereference. For those errors we should just jump directly to the error handling. Fixes: 8253a34bfae3 ("usb: chipidea: ci_hdrc_imx: Also search for 'phys' phandle") Cc: stable Signed-off-by: Dan Carpenter Link: https://lore.kernel.org/r/20211117074923.GF5237@kili Signed-off-by: Greg Kroah-Hartman --- drivers/usb/chipidea/ci_hdrc_imx.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/usb/chipidea/ci_hdrc_imx.c b/drivers/usb/chipidea/ci_hdrc_imx.c index f1d100671ee6a1..097142ffb18420 100644 --- a/drivers/usb/chipidea/ci_hdrc_imx.c +++ b/drivers/usb/chipidea/ci_hdrc_imx.c @@ -420,15 +420,15 @@ static int ci_hdrc_imx_probe(struct platform_device *pdev) data->phy = devm_usb_get_phy_by_phandle(dev, "fsl,usbphy", 0); if (IS_ERR(data->phy)) { ret = PTR_ERR(data->phy); - if (ret == -ENODEV) { - data->phy = devm_usb_get_phy_by_phandle(dev, "phys", 0); - if (IS_ERR(data->phy)) { - ret = PTR_ERR(data->phy); - if (ret == -ENODEV) - data->phy = NULL; - else - goto err_clk; - } + if (ret != -ENODEV) + goto err_clk; + data->phy = devm_usb_get_phy_by_phandle(dev, "phys", 0); + if (IS_ERR(data->phy)) { + ret = PTR_ERR(data->phy); + if (ret == -ENODEV) + data->phy = NULL; + else + goto err_clk; } } From 907f68f03f4f9c932b7d325c20c93fa7388056a8 Mon Sep 17 00:00:00 2001 From: Ondrej Jirman Date: Mon, 8 Nov 2021 11:28:32 +0100 Subject: [PATCH 017/192] usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts commit 362468830dd5bea8bf6ad5203b2ea61f8a4e8288 upstream. The code that enables either BC_LVL or COMP_CHNG interrupt in tcpm_set_cc wrongly assumes that the interrupt is unmasked by writing 1 to the apropriate bit in the mask register. In fact, interrupts are enabled when the mask is 0, so the tcpm_set_cc enables interrupt for COMP_CHNG when it expects BC_LVL interrupt to be enabled. This causes inability of the driver to recognize cable unplug events in host mode (unplug is recognized only via a COMP_CHNG interrupt). In device mode this bug was masked by simultaneous triggering of the VBUS change interrupt, because of loss of VBUS when the port peer is providing power. Fixes: 48242e30532b ("usb: typec: fusb302: Revert "Resolve fixed power role contract setup"") Cc: stable Cc: Hans de Goede Reviewed-by: Hans de Goede Acked-by: Heikki Krogerus Signed-off-by: Ondrej Jirman Link: https://lore.kernel.org/r/20211108102833.2793803-1-megous@megous.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/typec/tcpm/fusb302.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/usb/typec/tcpm/fusb302.c b/drivers/usb/typec/tcpm/fusb302.c index 7a2a17866a823b..72f9001b07921c 100644 --- a/drivers/usb/typec/tcpm/fusb302.c +++ b/drivers/usb/typec/tcpm/fusb302.c @@ -669,25 +669,27 @@ static int tcpm_set_cc(struct tcpc_dev *dev, enum typec_cc_status cc) ret = fusb302_i2c_mask_write(chip, FUSB_REG_MASK, FUSB_REG_MASK_BC_LVL | FUSB_REG_MASK_COMP_CHNG, - FUSB_REG_MASK_COMP_CHNG); + FUSB_REG_MASK_BC_LVL); if (ret < 0) { fusb302_log(chip, "cannot set SRC interrupt, ret=%d", ret); goto done; } chip->intr_comp_chng = true; + chip->intr_bc_lvl = false; break; case TYPEC_CC_RD: ret = fusb302_i2c_mask_write(chip, FUSB_REG_MASK, FUSB_REG_MASK_BC_LVL | FUSB_REG_MASK_COMP_CHNG, - FUSB_REG_MASK_BC_LVL); + FUSB_REG_MASK_COMP_CHNG); if (ret < 0) { fusb302_log(chip, "cannot set SRC interrupt, ret=%d", ret); goto done; } chip->intr_bc_lvl = true; + chip->intr_comp_chng = false; break; default: break; From 631a7e0afebd7613cc414541fca347b0949bd2c4 Mon Sep 17 00:00:00 2001 From: Dmitry Osipenko Date: Mon, 8 Nov 2021 01:44:55 +0300 Subject: [PATCH 018/192] usb: xhci: tegra: Check padctrl interrupt presence in device tree commit 51f2246158f686c881859f4b620f831f06e296e1 upstream. Older device-trees don't specify padctrl interrupt and xhci-tegra driver now fails to probe with -EINVAL using those device-trees. Check interrupt presence and keep runtime PM disabled if it's missing to fix the trouble. Fixes: 971ee247060d ("usb: xhci: tegra: Enable ELPG for runtime/system PM") Cc: # 5.14+ Reported-by: Nicolas Chauvet Tested-by: Nicolas Chauvet # T124 TK1 Tested-by: Thomas Graichen # T124 Nyan Big Tested-by: Thierry Reding # Tegra CI Acked-by: Thierry Reding Signed-off-by: Dmitry Osipenko Link: https://lore.kernel.org/r/20211107224455.10359-1-digetx@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-tegra.c | 41 +++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/drivers/usb/host/xhci-tegra.c b/drivers/usb/host/xhci-tegra.c index 1bf494b649bd24..c8af2cd2216d60 100644 --- a/drivers/usb/host/xhci-tegra.c +++ b/drivers/usb/host/xhci-tegra.c @@ -1400,6 +1400,7 @@ static void tegra_xusb_deinit_usb_phy(struct tegra_xusb *tegra) static int tegra_xusb_probe(struct platform_device *pdev) { + struct of_phandle_args args; struct tegra_xusb *tegra; struct device_node *np; struct resource *regs; @@ -1454,10 +1455,17 @@ static int tegra_xusb_probe(struct platform_device *pdev) goto put_padctl; } - tegra->padctl_irq = of_irq_get(np, 0); - if (tegra->padctl_irq <= 0) { - err = (tegra->padctl_irq == 0) ? -ENODEV : tegra->padctl_irq; - goto put_padctl; + /* Older device-trees don't have padctrl interrupt */ + err = of_irq_parse_one(np, 0, &args); + if (!err) { + tegra->padctl_irq = of_irq_get(np, 0); + if (tegra->padctl_irq <= 0) { + err = (tegra->padctl_irq == 0) ? -ENODEV : tegra->padctl_irq; + goto put_padctl; + } + } else { + dev_dbg(&pdev->dev, + "%pOF is missing an interrupt, disabling PM support\n", np); } tegra->host_clk = devm_clk_get(&pdev->dev, "xusb_host"); @@ -1696,11 +1704,15 @@ static int tegra_xusb_probe(struct platform_device *pdev) goto remove_usb3; } - err = devm_request_threaded_irq(&pdev->dev, tegra->padctl_irq, NULL, tegra_xusb_padctl_irq, - IRQF_ONESHOT, dev_name(&pdev->dev), tegra); - if (err < 0) { - dev_err(&pdev->dev, "failed to request padctl IRQ: %d\n", err); - goto remove_usb3; + if (tegra->padctl_irq) { + err = devm_request_threaded_irq(&pdev->dev, tegra->padctl_irq, + NULL, tegra_xusb_padctl_irq, + IRQF_ONESHOT, dev_name(&pdev->dev), + tegra); + if (err < 0) { + dev_err(&pdev->dev, "failed to request padctl IRQ: %d\n", err); + goto remove_usb3; + } } err = tegra_xusb_enable_firmware_messages(tegra); @@ -1718,13 +1730,16 @@ static int tegra_xusb_probe(struct platform_device *pdev) /* Enable wake for both USB 2.0 and USB 3.0 roothubs */ device_init_wakeup(&tegra->hcd->self.root_hub->dev, true); device_init_wakeup(&xhci->shared_hcd->self.root_hub->dev, true); - device_init_wakeup(tegra->dev, true); pm_runtime_use_autosuspend(tegra->dev); pm_runtime_set_autosuspend_delay(tegra->dev, 2000); pm_runtime_mark_last_busy(tegra->dev); pm_runtime_set_active(tegra->dev); - pm_runtime_enable(tegra->dev); + + if (tegra->padctl_irq) { + device_init_wakeup(tegra->dev, true); + pm_runtime_enable(tegra->dev); + } return 0; @@ -1772,7 +1787,9 @@ static int tegra_xusb_remove(struct platform_device *pdev) dma_free_coherent(&pdev->dev, tegra->fw.size, tegra->fw.virt, tegra->fw.phys); - pm_runtime_disable(&pdev->dev); + if (tegra->padctl_irq) + pm_runtime_disable(&pdev->dev); + pm_runtime_put(&pdev->dev); tegra_xusb_powergate_partitions(tegra); From 55197c24c6f13c89bba401cd7f2c2800ef02c024 Mon Sep 17 00:00:00 2001 From: Mathias Nyman Date: Tue, 16 Nov 2021 00:16:30 +0200 Subject: [PATCH 019/192] usb: hub: Fix usb enumeration issue due to address0 race commit 6ae6dc22d2d1ce6aa77a6da8a761e61aca216f8b upstream. xHC hardware can only have one slot in default state with address 0 waiting for a unique address at a time, otherwise "undefined behavior may occur" according to xhci spec 5.4.3.4 The address0_mutex exists to prevent this across both xhci roothubs. If hub_port_init() fails, it may unlock the mutex and exit with a xhci slot in default state. If the other xhci roothub calls hub_port_init() at this point we end up with two slots in default state. Make sure the address0_mutex protects the slot default state across hub_port_init() retries, until slot is addressed or disabled. Note, one known minor case is not fixed by this patch. If device needs to be reset during resume, but fails all hub_port_init() retries in usb_reset_and_verify_device(), then it's possible the slot is still left in default state when address0_mutex is unlocked. Cc: Fixes: 638139eb95d2 ("usb: hub: allow to process more usb hub events in parallel") Signed-off-by: Mathias Nyman Link: https://lore.kernel.org/r/20211115221630.871204-1-mathias.nyman@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/core/hub.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 86658a81d28445..00c3506324e47d 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -4700,8 +4700,6 @@ hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1, if (oldspeed == USB_SPEED_LOW) delay = HUB_LONG_RESET_TIME; - mutex_lock(hcd->address0_mutex); - /* Reset the device; full speed may morph to high speed */ /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */ retval = hub_port_reset(hub, port1, udev, delay, false); @@ -5016,7 +5014,6 @@ hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1, hub_port_disable(hub, port1, 0); update_devnum(udev, devnum); /* for disconnect processing */ } - mutex_unlock(hcd->address0_mutex); return retval; } @@ -5246,6 +5243,9 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, unit_load = 100; status = 0; + + mutex_lock(hcd->address0_mutex); + for (i = 0; i < PORT_INIT_TRIES; i++) { /* reallocate for each attempt, since references @@ -5282,6 +5282,8 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, if (status < 0) goto loop; + mutex_unlock(hcd->address0_mutex); + if (udev->quirks & USB_QUIRK_DELAY_INIT) msleep(2000); @@ -5370,6 +5372,7 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, loop_disable: hub_port_disable(hub, port1, 1); + mutex_lock(hcd->address0_mutex); loop: usb_ep0_reinit(udev); release_devnum(udev); @@ -5396,6 +5399,8 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, } done: + mutex_unlock(hcd->address0_mutex); + hub_port_disable(hub, port1, 1); if (hcd->driver->relinquish_port && !hub->hdev->parent) { if (status != -ENOTCONN && status != -ENODEV) @@ -5915,6 +5920,8 @@ static int usb_reset_and_verify_device(struct usb_device *udev) bos = udev->bos; udev->bos = NULL; + mutex_lock(hcd->address0_mutex); + for (i = 0; i < PORT_INIT_TRIES; ++i) { /* ep0 maxpacket size may change; let the HCD know about it. @@ -5924,6 +5931,7 @@ static int usb_reset_and_verify_device(struct usb_device *udev) if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV) break; } + mutex_unlock(hcd->address0_mutex); if (ret < 0) goto re_enumerate; From 816904fd873b2b1245939589147c3bc6082c5286 Mon Sep 17 00:00:00 2001 From: Mathias Nyman Date: Tue, 23 Nov 2021 12:16:56 +0200 Subject: [PATCH 020/192] usb: hub: Fix locking issues with address0_mutex commit 6cca13de26eea6d32a98d96d916a048d16a12822 upstream. Fix the circular lock dependency and unbalanced unlock of addess0_mutex introduced when fixing an address0_mutex enumeration retry race in commit ae6dc22d2d1 ("usb: hub: Fix usb enumeration issue due to address0 race") Make sure locking order between port_dev->status_lock and address0_mutex is correct, and that address0_mutex is not unlocked in hub_port_connect "done:" codepath which may be reached without locking address0_mutex Fixes: 6ae6dc22d2d1 ("usb: hub: Fix usb enumeration issue due to address0 race") Cc: Reported-by: Marek Szyprowski Tested-by: Hans de Goede Tested-by: Marek Szyprowski Acked-by: Hans de Goede Signed-off-by: Mathias Nyman Link: https://lore.kernel.org/r/20211123101656.1113518-1-mathias.nyman@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/core/hub.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 00c3506324e47d..00070a8a650792 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -5188,6 +5188,7 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, struct usb_port *port_dev = hub->ports[port1 - 1]; struct usb_device *udev = port_dev->child; static int unreliable_port = -1; + bool retry_locked; /* Disconnect any existing devices under this port */ if (udev) { @@ -5244,10 +5245,10 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, status = 0; - mutex_lock(hcd->address0_mutex); - for (i = 0; i < PORT_INIT_TRIES; i++) { - + usb_lock_port(port_dev); + mutex_lock(hcd->address0_mutex); + retry_locked = true; /* reallocate for each attempt, since references * to the previous one can escape in various ways */ @@ -5255,6 +5256,8 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, if (!udev) { dev_err(&port_dev->dev, "couldn't allocate usb_device\n"); + mutex_unlock(hcd->address0_mutex); + usb_unlock_port(port_dev); goto done; } @@ -5276,13 +5279,13 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, } /* reset (non-USB 3.0 devices) and get descriptor */ - usb_lock_port(port_dev); status = hub_port_init(hub, udev, port1, i); - usb_unlock_port(port_dev); if (status < 0) goto loop; mutex_unlock(hcd->address0_mutex); + usb_unlock_port(port_dev); + retry_locked = false; if (udev->quirks & USB_QUIRK_DELAY_INIT) msleep(2000); @@ -5372,11 +5375,14 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, loop_disable: hub_port_disable(hub, port1, 1); - mutex_lock(hcd->address0_mutex); loop: usb_ep0_reinit(udev); release_devnum(udev); hub_free_dev(udev); + if (retry_locked) { + mutex_unlock(hcd->address0_mutex); + usb_unlock_port(port_dev); + } usb_put_dev(udev); if ((status == -ENOTCONN) || (status == -ENOTSUPP)) break; @@ -5399,8 +5405,6 @@ static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus, } done: - mutex_unlock(hcd->address0_mutex); - hub_port_disable(hub, port1, 1); if (hcd->driver->relinquish_port && !hub->hdev->parent) { if (status != -ENOTCONN && status != -ENODEV) From 849d86e85951ea409b09e384d1f0060a3adfdb58 Mon Sep 17 00:00:00 2001 From: Todd Kjos Date: Fri, 12 Nov 2021 10:07:20 -0800 Subject: [PATCH 021/192] binder: fix test regression due to sender_euid change commit c21a80ca0684ec2910344d72556c816cb8940c01 upstream. This is a partial revert of commit 29bc22ac5e5b ("binder: use euid from cred instead of using task"). Setting sender_euid using proc->cred caused some Android system test regressions that need further investigation. It is a partial reversion because subsequent patches rely on proc->cred. Fixes: 29bc22ac5e5b ("binder: use euid from cred instead of using task") Cc: stable@vger.kernel.org # 4.4+ Acked-by: Christian Brauner Signed-off-by: Todd Kjos Change-Id: I9b1769a3510fed250bb21859ef8beebabe034c66 Link: https://lore.kernel.org/r/20211112180720.2858135-1-tkjos@google.com Signed-off-by: Greg Kroah-Hartman --- drivers/android/binder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/android/binder.c b/drivers/android/binder.c index 49fb74196d02fb..cffbe57a8e0863 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c @@ -2710,7 +2710,7 @@ static void binder_transaction(struct binder_proc *proc, t->from = thread; else t->from = NULL; - t->sender_euid = proc->cred->euid; + t->sender_euid = task_euid(proc->tsk); t->to_proc = target_proc; t->to_thread = target_thread; t->code = tr->code; From 25aa8e9f1031a88184d71cfc88e98d4f96e9c373 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 18 Nov 2021 22:57:29 +0100 Subject: [PATCH 022/192] ALSA: ctxfi: Fix out-of-range access commit 76c47183224c86e4011048b80f0e2d0d166f01c2 upstream. The master and next_conj of rcs_ops are used for iterating the resource list entries, and currently those are supposed to return the current value. The problem is that next_conf may go over the last entry before the loop abort condition is evaluated, and it may return the "current" value that is beyond the array size. It was caught recently as a GPF, for example. Those return values are, however, never actually evaluated, hence basically we don't have to consider the current value as the return at all. By dropping those return values, the potential out-of-range access above is also fixed automatically. This patch changes the return type of master and next_conj callbacks to void and drop the superfluous code accordingly. BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=214985 Cc: Link: https://lore.kernel.org/r/20211118215729.26257-1-tiwai@suse.de Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/ctxfi/ctamixer.c | 14 ++++++-------- sound/pci/ctxfi/ctdaio.c | 16 ++++++++-------- sound/pci/ctxfi/ctresource.c | 7 +++---- sound/pci/ctxfi/ctresource.h | 4 ++-- sound/pci/ctxfi/ctsrc.c | 7 +++---- 5 files changed, 22 insertions(+), 26 deletions(-) diff --git a/sound/pci/ctxfi/ctamixer.c b/sound/pci/ctxfi/ctamixer.c index da6e6350ceafad..d074727c3e21d3 100644 --- a/sound/pci/ctxfi/ctamixer.c +++ b/sound/pci/ctxfi/ctamixer.c @@ -23,16 +23,15 @@ #define BLANK_SLOT 4094 -static int amixer_master(struct rsc *rsc) +static void amixer_master(struct rsc *rsc) { rsc->conj = 0; - return rsc->idx = container_of(rsc, struct amixer, rsc)->idx[0]; + rsc->idx = container_of(rsc, struct amixer, rsc)->idx[0]; } -static int amixer_next_conj(struct rsc *rsc) +static void amixer_next_conj(struct rsc *rsc) { rsc->conj++; - return container_of(rsc, struct amixer, rsc)->idx[rsc->conj]; } static int amixer_index(const struct rsc *rsc) @@ -331,16 +330,15 @@ int amixer_mgr_destroy(struct amixer_mgr *amixer_mgr) /* SUM resource management */ -static int sum_master(struct rsc *rsc) +static void sum_master(struct rsc *rsc) { rsc->conj = 0; - return rsc->idx = container_of(rsc, struct sum, rsc)->idx[0]; + rsc->idx = container_of(rsc, struct sum, rsc)->idx[0]; } -static int sum_next_conj(struct rsc *rsc) +static void sum_next_conj(struct rsc *rsc) { rsc->conj++; - return container_of(rsc, struct sum, rsc)->idx[rsc->conj]; } static int sum_index(const struct rsc *rsc) diff --git a/sound/pci/ctxfi/ctdaio.c b/sound/pci/ctxfi/ctdaio.c index f589da04534244..7fc720046ce293 100644 --- a/sound/pci/ctxfi/ctdaio.c +++ b/sound/pci/ctxfi/ctdaio.c @@ -51,12 +51,12 @@ static const struct daio_rsc_idx idx_20k2[NUM_DAIOTYP] = { [SPDIFIO] = {.left = 0x05, .right = 0x85}, }; -static int daio_master(struct rsc *rsc) +static void daio_master(struct rsc *rsc) { /* Actually, this is not the resource index of DAIO. * For DAO, it is the input mapper index. And, for DAI, * it is the output time-slot index. */ - return rsc->conj = rsc->idx; + rsc->conj = rsc->idx; } static int daio_index(const struct rsc *rsc) @@ -64,19 +64,19 @@ static int daio_index(const struct rsc *rsc) return rsc->conj; } -static int daio_out_next_conj(struct rsc *rsc) +static void daio_out_next_conj(struct rsc *rsc) { - return rsc->conj += 2; + rsc->conj += 2; } -static int daio_in_next_conj_20k1(struct rsc *rsc) +static void daio_in_next_conj_20k1(struct rsc *rsc) { - return rsc->conj += 0x200; + rsc->conj += 0x200; } -static int daio_in_next_conj_20k2(struct rsc *rsc) +static void daio_in_next_conj_20k2(struct rsc *rsc) { - return rsc->conj += 0x100; + rsc->conj += 0x100; } static const struct rsc_ops daio_out_rsc_ops = { diff --git a/sound/pci/ctxfi/ctresource.c b/sound/pci/ctxfi/ctresource.c index 81ad2693451827..be1d3e61309ce2 100644 --- a/sound/pci/ctxfi/ctresource.c +++ b/sound/pci/ctxfi/ctresource.c @@ -109,18 +109,17 @@ static int audio_ring_slot(const struct rsc *rsc) return (rsc->conj << 4) + offset_in_audio_slot_block[rsc->type]; } -static int rsc_next_conj(struct rsc *rsc) +static void rsc_next_conj(struct rsc *rsc) { unsigned int i; for (i = 0; (i < 8) && (!(rsc->msr & (0x1 << i))); ) i++; rsc->conj += (AUDIO_SLOT_BLOCK_NUM >> i); - return rsc->conj; } -static int rsc_master(struct rsc *rsc) +static void rsc_master(struct rsc *rsc) { - return rsc->conj = rsc->idx; + rsc->conj = rsc->idx; } static const struct rsc_ops rsc_generic_ops = { diff --git a/sound/pci/ctxfi/ctresource.h b/sound/pci/ctxfi/ctresource.h index fdbfd808816d37..58553bda44f436 100644 --- a/sound/pci/ctxfi/ctresource.h +++ b/sound/pci/ctxfi/ctresource.h @@ -39,8 +39,8 @@ struct rsc { }; struct rsc_ops { - int (*master)(struct rsc *rsc); /* Move to master resource */ - int (*next_conj)(struct rsc *rsc); /* Move to next conjugate resource */ + void (*master)(struct rsc *rsc); /* Move to master resource */ + void (*next_conj)(struct rsc *rsc); /* Move to next conjugate resource */ int (*index)(const struct rsc *rsc); /* Return the index of resource */ /* Return the output slot number */ int (*output_slot)(const struct rsc *rsc); diff --git a/sound/pci/ctxfi/ctsrc.c b/sound/pci/ctxfi/ctsrc.c index bd4697b4423346..4a94b4708a77e5 100644 --- a/sound/pci/ctxfi/ctsrc.c +++ b/sound/pci/ctxfi/ctsrc.c @@ -590,16 +590,15 @@ int src_mgr_destroy(struct src_mgr *src_mgr) /* SRCIMP resource manager operations */ -static int srcimp_master(struct rsc *rsc) +static void srcimp_master(struct rsc *rsc) { rsc->conj = 0; - return rsc->idx = container_of(rsc, struct srcimp, rsc)->idx[0]; + rsc->idx = container_of(rsc, struct srcimp, rsc)->idx[0]; } -static int srcimp_next_conj(struct rsc *rsc) +static void srcimp_next_conj(struct rsc *rsc) { rsc->conj++; - return container_of(rsc, struct srcimp, rsc)->idx[rsc->conj]; } static int srcimp_index(const struct rsc *rsc) From 4e6ef09400484f0ad25afa469d589a522f0bcd80 Mon Sep 17 00:00:00 2001 From: Werner Sembach Date: Fri, 12 Nov 2021 12:07:04 +0100 Subject: [PATCH 023/192] ALSA: hda/realtek: Add quirk for ASRock NUC Box 1100 commit 174a7fb3859ae75b0f0e35ef852459d8882b55b5 upstream. This applies a SND_PCI_QUIRK(...) to the ASRock NUC Box 1100 series. This fixes the issue of the headphone jack not being detected unless warm rebooted from a certain other OS. When booting a certain other OS some coeff settings are changed that enable the audio jack. These settings are preserved on a warm reboot and can be easily dumped. The relevant indexes and values where gathered by naively diff-ing and reading a working and a non-working coeff dump. Signed-off-by: Werner Sembach Cc: Link: https://lore.kernel.org/r/20211112110704.1022501-1-wse@tuxedocomputers.com Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_realtek.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 2f1727faec698c..701c80ed83dc8c 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -6521,6 +6521,27 @@ static void alc256_fixup_tongfang_reset_persistent_settings(struct hda_codec *co alc_write_coef_idx(codec, 0x45, 0x5089); } +static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = { + WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06), + WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074), + WRITE_COEF(0x49, 0x0149), + {} +}; + +static void alc233_fixup_no_audio_jack(struct hda_codec *codec, + const struct hda_fixup *fix, + int action) +{ + /* + * The audio jack input and output is not detected on the ASRock NUC Box + * 1100 series when cold booting without this fix. Warm rebooting from a + * certain other OS makes the audio functional, as COEF settings are + * preserved in this case. This fix sets these altered COEF values as + * the default. + */ + alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs); +} + enum { ALC269_FIXUP_GPIO2, ALC269_FIXUP_SONY_VAIO, @@ -6740,6 +6761,7 @@ enum { ALC287_FIXUP_13S_GEN2_SPEAKERS, ALC256_FIXUP_TONGFANG_RESET_PERSISTENT_SETTINGS, ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE, + ALC233_FIXUP_NO_AUDIO_JACK, }; static const struct hda_fixup alc269_fixups[] = { @@ -8460,6 +8482,10 @@ static const struct hda_fixup alc269_fixups[] = { .chained = true, .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, }, + [ALC233_FIXUP_NO_AUDIO_JACK] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc233_fixup_no_audio_jack, + }, }; static const struct snd_pci_quirk alc269_fixup_tbl[] = { @@ -8894,6 +8920,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD), + SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK), SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS), SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20), SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI), From 238c04518ff1871352217706c0998ff8d43223ad Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 18 Nov 2021 08:16:36 +0100 Subject: [PATCH 024/192] ALSA: hda/realtek: Fix LED on HP ProBook 435 G7 commit 05ec7161084565365ecf267e9909a897a95f243a upstream. HP ProBook 435 G7 (SSID 103c:8735) needs the similar quirk as another HP ProBook for enabling the mute and the mic-mute LEDs. BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=215021 Cc: Link: https://lore.kernel.org/r/20211118071636.14738-1-tiwai@suse.de Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/patch_realtek.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 701c80ed83dc8c..9ce7457533c966 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -8665,6 +8665,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), + SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED), From 02130f5e7ca3770daf2a086b3bee22134901a488 Mon Sep 17 00:00:00 2001 From: Hans Verkuil Date: Tue, 2 Nov 2021 12:24:26 +0000 Subject: [PATCH 025/192] media: cec: copy sequence field for the reply commit 13cbaa4c2b7bf9f8285e1164d005dbf08244ecd5 upstream. When the reply for a non-blocking transmit arrives, the sequence field for that reply was never filled in, so userspace would have no way of associating the reply to the original transmit. Copy the sequence field to ensure that this is now possible. Signed-off-by: Hans Verkuil Fixes: 0dbacebede1e ([media] cec: move the CEC framework out of staging and to media) Cc: Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Greg Kroah-Hartman --- drivers/media/cec/core/cec-adap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/cec/core/cec-adap.c b/drivers/media/cec/core/cec-adap.c index 79fa36de8a04a9..cd9cb354dc2c7f 100644 --- a/drivers/media/cec/core/cec-adap.c +++ b/drivers/media/cec/core/cec-adap.c @@ -1199,6 +1199,7 @@ void cec_received_msg_ts(struct cec_adapter *adap, if (abort) dst->rx_status |= CEC_RX_STATUS_FEATURE_ABORT; msg->flags = dst->flags; + msg->sequence = dst->sequence; /* Remove it from the wait_queue */ list_del_init(&data->list); From 28849ab40bac4e8bfa5be1b9017091af4b135071 Mon Sep 17 00:00:00 2001 From: Helge Deller Date: Sun, 21 Nov 2021 11:10:55 +0100 Subject: [PATCH 026/192] Revert "parisc: Fix backtrace to always include init funtion names" commit 98400ad75e95860e9a10ec78b0b90ab66184a2ce upstream. This reverts commit 279917e27edc293eb645a25428c6ab3f3bca3f86. With the CONFIG_HARDENED_USERCOPY option enabled, this patch triggers kernel bugs at runtime: usercopy: Kernel memory overwrite attempt detected to kernel text (offset 2084839, size 6)! kernel BUG at mm/usercopy.c:99! Backtrace: IAOQ[0]: usercopy_abort+0xc4/0xe8 [<00000000406ed1c8>] __check_object_size+0x174/0x238 [<00000000407086d4>] copy_strings.isra.0+0x3e8/0x708 [<0000000040709a20>] do_execveat_common.isra.0+0x1bc/0x328 [<000000004070b760>] compat_sys_execve+0x7c/0xb8 [<0000000040303eb8>] syscall_exit+0x0/0x14 The problem is, that we have an init section of at least 2MB size which starts at _stext and is freed after bootup. If then later some kernel data is (temporarily) stored in this free memory, check_kernel_text_object() will trigger a bug since the data appears to be inside the kernel text (>=_stext) area: if (overlaps(ptr, len, _stext, _etext)) usercopy_abort("kernel text"); Signed-off-by: Helge Deller Cc: stable@kernel.org # 5.4+ Signed-off-by: Greg Kroah-Hartman --- arch/parisc/kernel/vmlinux.lds.S | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S index 3d208afd15bc6d..2769eb991f58d1 100644 --- a/arch/parisc/kernel/vmlinux.lds.S +++ b/arch/parisc/kernel/vmlinux.lds.S @@ -57,8 +57,6 @@ SECTIONS { . = KERNEL_BINARY_TEXT_START; - _stext = .; /* start of kernel text, includes init code & data */ - __init_begin = .; HEAD_TEXT_SECTION MLONGCALL_DISCARD(INIT_TEXT_SECTION(8)) @@ -82,6 +80,7 @@ SECTIONS /* freed after init ends here */ _text = .; /* Text and read-only data */ + _stext = .; MLONGCALL_KEEP(INIT_TEXT_SECTION(8)) .text ALIGN(PAGE_SIZE) : { TEXT_TEXT From d048d3eb3ca7e2f847b78125b12bdb9d86681495 Mon Sep 17 00:00:00 2001 From: Jason Gerecke Date: Mon, 8 Nov 2021 16:31:01 -0800 Subject: [PATCH 027/192] HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts commit 7fb0413baa7f8a04caef0c504df9af7e0623d296 upstream. The HID descriptor of many of Wacom's touch input devices include a "Confidence" usage that signals if a particular touch collection contains useful data. The driver does not look at this flag, however, which causes even invalid contacts to be reported to userspace. A lucky combination of kernel event filtering and device behavior (specifically: contact ID 0 == invalid, contact ID >0 == valid; and order all data so that all valid contacts are reported before any invalid contacts) spare most devices from any visibly-bad behavior. The DTH-2452 is one example of an unlucky device that misbehaves. It uses ID 0 for both the first valid contact and all invalid contacts. Because we report both the valid and invalid contacts, the kernel reports that contact 0 first goes down (valid) and then goes up (invalid) in every report. This causes ~100 clicks per second simply by touching the screen. This patch inroduces new `confidence` flag in our `hid_data` structure. The value is initially set to `true` at the start of a report and can be set to `false` if an invalid touch usage is seen. Link: https://github.com/linuxwacom/input-wacom/issues/270 Fixes: f8b6a74719b5 ("HID: wacom: generic: Support multiple tools per report") Signed-off-by: Jason Gerecke Tested-by: Joshua Dickens Cc: Signed-off-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- drivers/hid/wacom_wac.c | 8 +++++++- drivers/hid/wacom_wac.h | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index 33a6908995b1be..2a4cc39962e765 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -2603,6 +2603,9 @@ static void wacom_wac_finger_event(struct hid_device *hdev, return; switch (equivalent_usage) { + case HID_DG_CONFIDENCE: + wacom_wac->hid_data.confidence = value; + break; case HID_GD_X: wacom_wac->hid_data.x = value; break; @@ -2635,7 +2638,8 @@ static void wacom_wac_finger_event(struct hid_device *hdev, } if (usage->usage_index + 1 == field->report_count) { - if (equivalent_usage == wacom_wac->hid_data.last_slot_field) + if (equivalent_usage == wacom_wac->hid_data.last_slot_field && + wacom_wac->hid_data.confidence) wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input); } } @@ -2653,6 +2657,8 @@ static void wacom_wac_finger_pre_report(struct hid_device *hdev, wacom_wac->is_invalid_bt_frame = false; + hid_data->confidence = true; + for (i = 0; i < report->maxfield; i++) { struct hid_field *field = report->field[i]; int j; diff --git a/drivers/hid/wacom_wac.h b/drivers/hid/wacom_wac.h index 8b2d4e5b2303c3..466b62cc16dc19 100644 --- a/drivers/hid/wacom_wac.h +++ b/drivers/hid/wacom_wac.h @@ -301,6 +301,7 @@ struct hid_data { bool barrelswitch; bool barrelswitch2; bool serialhi; + bool confidence; int x; int y; int pressure; From d58ec6e81803e679a838f20acdcbb4e7a23e308f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noralf=20Tr=C3=B8nnes?= Date: Fri, 5 Nov 2021 21:43:58 +0100 Subject: [PATCH 028/192] staging/fbtft: Fix backlight MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 7865dd24934ad580d1bcde8f63c39f324211a23b upstream. Commit b4a1ed0cd18b ("fbdev: make FB_BACKLIGHT a tristate") forgot to update fbtft breaking its backlight support when FB_BACKLIGHT is a module. Since FB_TFT selects FB_BACKLIGHT there's no need for this conditional so just remove it and we're good. Fixes: b4a1ed0cd18b ("fbdev: make FB_BACKLIGHT a tristate") Cc: Acked-by: Sam Ravnborg Signed-off-by: Noralf Trønnes Link: https://lore.kernel.org/r/20211105204358.2991-1-noralf@tronnes.org Signed-off-by: Greg Kroah-Hartman --- drivers/staging/fbtft/fb_ssd1351.c | 4 ---- drivers/staging/fbtft/fbtft-core.c | 9 +-------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/drivers/staging/fbtft/fb_ssd1351.c b/drivers/staging/fbtft/fb_ssd1351.c index cf263a58a1489f..6fd549a424d53f 100644 --- a/drivers/staging/fbtft/fb_ssd1351.c +++ b/drivers/staging/fbtft/fb_ssd1351.c @@ -187,7 +187,6 @@ static struct fbtft_display display = { }, }; -#ifdef CONFIG_FB_BACKLIGHT static int update_onboard_backlight(struct backlight_device *bd) { struct fbtft_par *par = bl_get_data(bd); @@ -231,9 +230,6 @@ static void register_onboard_backlight(struct fbtft_par *par) if (!par->fbtftops.unregister_backlight) par->fbtftops.unregister_backlight = fbtft_unregister_backlight; } -#else -static void register_onboard_backlight(struct fbtft_par *par) { }; -#endif FBTFT_REGISTER_DRIVER(DRVNAME, "solomon,ssd1351", &display); diff --git a/drivers/staging/fbtft/fbtft-core.c b/drivers/staging/fbtft/fbtft-core.c index ed992ca605ebe2..1690358b8f0180 100644 --- a/drivers/staging/fbtft/fbtft-core.c +++ b/drivers/staging/fbtft/fbtft-core.c @@ -128,7 +128,6 @@ static int fbtft_request_gpios(struct fbtft_par *par) return 0; } -#ifdef CONFIG_FB_BACKLIGHT static int fbtft_backlight_update_status(struct backlight_device *bd) { struct fbtft_par *par = bl_get_data(bd); @@ -161,6 +160,7 @@ void fbtft_unregister_backlight(struct fbtft_par *par) par->info->bl_dev = NULL; } } +EXPORT_SYMBOL(fbtft_unregister_backlight); static const struct backlight_ops fbtft_bl_ops = { .get_brightness = fbtft_backlight_get_brightness, @@ -198,12 +198,7 @@ void fbtft_register_backlight(struct fbtft_par *par) if (!par->fbtftops.unregister_backlight) par->fbtftops.unregister_backlight = fbtft_unregister_backlight; } -#else -void fbtft_register_backlight(struct fbtft_par *par) { }; -void fbtft_unregister_backlight(struct fbtft_par *par) { }; -#endif EXPORT_SYMBOL(fbtft_register_backlight); -EXPORT_SYMBOL(fbtft_unregister_backlight); static void fbtft_set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) @@ -853,13 +848,11 @@ int fbtft_register_framebuffer(struct fb_info *fb_info) fb_info->fix.smem_len >> 10, text1, HZ / fb_info->fbdefio->delay, text2); -#ifdef CONFIG_FB_BACKLIGHT /* Turn on backlight if available */ if (fb_info->bl_dev) { fb_info->bl_dev->props.power = FB_BLANK_UNBLANK; fb_info->bl_dev->ops->update_status(fb_info->bl_dev); } -#endif return 0; From f0340bea83020c09bd1661e472d5068fb1570888 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Tue, 16 Nov 2021 08:20:27 +0100 Subject: [PATCH 029/192] staging: greybus: Add missing rwsem around snd_ctl_remove() calls commit ffcf7ae90f4489047d7b076539ba207024dea5f6 upstream. snd_ctl_remove() has to be called with card->controls_rwsem held (when called after the card instantiation). This patch adds the missing rwsem calls around it. Fixes: 510e340efe0c ("staging: greybus: audio: Add helper APIs for dynamic audio modules") Cc: stable Signed-off-by: Takashi Iwai Link: https://lore.kernel.org/r/20211116072027.18466-1-tiwai@suse.de Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/audio_helper.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/staging/greybus/audio_helper.c b/drivers/staging/greybus/audio_helper.c index 1ed4772d277150..843760675876af 100644 --- a/drivers/staging/greybus/audio_helper.c +++ b/drivers/staging/greybus/audio_helper.c @@ -192,7 +192,11 @@ int gbaudio_remove_component_controls(struct snd_soc_component *component, unsigned int num_controls) { struct snd_card *card = component->card->snd_card; + int err; - return gbaudio_remove_controls(card, component->dev, controls, - num_controls, component->name_prefix); + down_write(&card->controls_rwsem); + err = gbaudio_remove_controls(card, component->dev, controls, + num_controls, component->name_prefix); + up_write(&card->controls_rwsem); + return err; } From e27ee2f607fe6a9b923ef1fc65461c0613c97594 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Wed, 17 Nov 2021 10:20:16 +0300 Subject: [PATCH 030/192] staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() commit b535917c51acc97fb0761b1edec85f1f3d02bda4 upstream. The free_rtllib() function frees the "dev" pointer so there is use after free on the next line. Re-arrange things to avoid that. Fixes: 66898177e7e5 ("staging: rtl8192e: Fix unload/reload problem") Cc: stable Signed-off-by: Dan Carpenter Link: https://lore.kernel.org/r/20211117072016.GA5237@kili Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192e/rtl8192e/rtl_core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index a7dd1578b2c6a9..616ab3c8fde4f1 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -2549,13 +2549,14 @@ static void _rtl92e_pci_disconnect(struct pci_dev *pdev) free_irq(dev->irq, dev); priv->irq = 0; } - free_rtllib(dev); if (dev->mem_start != 0) { iounmap((void __iomem *)dev->mem_start); release_mem_region(pci_resource_start(pdev, 1), pci_resource_len(pdev, 1)); } + + free_rtllib(dev); } pci_disable_device(pdev); From 51bdb198872cc18afb986c443f985cd389e1e834 Mon Sep 17 00:00:00 2001 From: "Fabio M. De Francesco" Date: Mon, 1 Nov 2021 20:18:47 +0100 Subject: [PATCH 031/192] staging: r8188eu: Use kzalloc() with GFP_ATOMIC in atomic context commit c15a059f85de49c542e6ec2464967dd2b2aa18f6 upstream. Use the GFP_ATOMIC flag of kzalloc() with two memory allocation in report_del_sta_event(). This function is called while holding spinlocks, therefore it is not allowed to sleep. With the GFP_ATOMIC type flag, the allocation is high priority and must not sleep. This issue is detected by Smatch which emits the following warning: "drivers/staging/r8188eu/core/rtw_mlme_ext.c:6848 report_del_sta_event() warn: sleeping in atomic context". After the change, the post-commit hook output the following message: "CHECK: Prefer kzalloc(sizeof(*pcmd_obj)...) over kzalloc(sizeof(struct cmd_obj)...)". According to the above "CHECK", use the preferred style in the first kzalloc(). Fixes: 79f712ea994d ("staging: r8188eu: Remove wrappers for kalloc() and kzalloc()") Fixes: 15865124feed ("staging: r8188eu: introduce new core dir for RTL8188eu driver") Signed-off-by: Fabio M. De Francesco Link: https://lore.kernel.org/r/20211101191847.6749-1-fmdefrancesco@gmail.com Signed-off-by: Greg Kroah-Hartman Cc: stable --- drivers/staging/r8188eu/core/rtw_mlme_ext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/r8188eu/core/rtw_mlme_ext.c b/drivers/staging/r8188eu/core/rtw_mlme_ext.c index 5a472a4954b0f8..8587e7f7d2ebff 100644 --- a/drivers/staging/r8188eu/core/rtw_mlme_ext.c +++ b/drivers/staging/r8188eu/core/rtw_mlme_ext.c @@ -7080,12 +7080,12 @@ void report_del_sta_event(struct adapter *padapter, unsigned char *MacAddr, unsi struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv; struct cmd_priv *pcmdpriv = &padapter->cmdpriv; - pcmd_obj = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); + pcmd_obj = kzalloc(sizeof(*pcmd_obj), GFP_ATOMIC); if (!pcmd_obj) return; cmdsz = (sizeof(struct stadel_event) + sizeof(struct C2HEvent_Header)); - pevtcmd = kzalloc(cmdsz, GFP_KERNEL); + pevtcmd = kzalloc(cmdsz, GFP_ATOMIC); if (!pevtcmd) { kfree(pcmd_obj); return; From b0d61266f56ae394b697dcc05698b46be6b1a194 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Sun, 7 Nov 2021 11:35:43 -0600 Subject: [PATCH 032/192] staging: r8188eu: Fix breakage introduced when 5G code was removed commit d5f0b804368951b6b4a77d2f14b5bb6a04b0e011 upstream. In commit 221abd4d478a ("staging: r8188eu: Remove no more necessary definitions and code"), two entries were removed from RTW_ChannelPlanMap[], but not replaced with zeros. The position within this table is important, thus the patch broke systems operating in regulatory domains osted later than entry 0x13 in the table. Unfortunately, the FCC entry comes before that point and most testers did not see this problem. Fixes: 221abd4d478a ("staging: r8188eu: Remove no more necessary definitions and code") Cc: Stable # v5.5+ Reported-and-tested-by: Zameer Manji Reported-by: kernel test robot Reviewed-by: Phillip Potter Signed-off-by: Larry Finger Link: https://lore.kernel.org/r/20211107173543.7486-1-Larry.Finger@lwfinger.net Signed-off-by: Greg Kroah-Hartman --- drivers/staging/r8188eu/core/rtw_mlme_ext.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/r8188eu/core/rtw_mlme_ext.c b/drivers/staging/r8188eu/core/rtw_mlme_ext.c index 8587e7f7d2ebff..63d312d01171e6 100644 --- a/drivers/staging/r8188eu/core/rtw_mlme_ext.c +++ b/drivers/staging/r8188eu/core/rtw_mlme_ext.c @@ -104,6 +104,7 @@ static struct rt_channel_plan_map RTW_ChannelPlanMap[RT_CHANNEL_DOMAIN_MAX] = { {0x01}, /* 0x10, RT_CHANNEL_DOMAIN_JAPAN */ {0x02}, /* 0x11, RT_CHANNEL_DOMAIN_FCC_NO_DFS */ {0x01}, /* 0x12, RT_CHANNEL_DOMAIN_JAPAN_NO_DFS */ + {0x00}, /* 0x13 */ {0x02}, /* 0x14, RT_CHANNEL_DOMAIN_TAIWAN_NO_DFS */ {0x00}, /* 0x15, RT_CHANNEL_DOMAIN_ETSI_NO_DFS */ {0x00}, /* 0x16, RT_CHANNEL_DOMAIN_KOREA_NO_DFS */ @@ -115,6 +116,7 @@ static struct rt_channel_plan_map RTW_ChannelPlanMap[RT_CHANNEL_DOMAIN_MAX] = { {0x00}, /* 0x1C, */ {0x00}, /* 0x1D, */ {0x00}, /* 0x1E, */ + {0x00}, /* 0x1F, */ /* 0x20 ~ 0x7F , New Define ===== */ {0x00}, /* 0x20, RT_CHANNEL_DOMAIN_WORLD_NULL */ {0x01}, /* 0x21, RT_CHANNEL_DOMAIN_ETSI1_NULL */ From 788fa64fa8de1052b295d7101060a71e74cdc904 Mon Sep 17 00:00:00 2001 From: Michael Straube Date: Mon, 8 Nov 2021 11:55:37 +0100 Subject: [PATCH 033/192] staging: r8188eu: use GFP_ATOMIC under spinlock commit 4a293eaf92a510ff688dc7b3f0815221f99c9d1b upstream. In function rtw_report_sec_ie() kzalloc() is called under a spinlock, so the allocation have to be atomic. Call tree: -> rtw_select_and_join_from_scanned_queue() <- takes a spinlock -> rtw_joinbss_cmd() -> rtw_restruct_sec_ie() -> rtw_report_sec_ie() Fixes: 2b42bd58b321 ("staging: r8188eu: introduce new os_dep dir for RTL8188eu driver") Cc: stable Signed-off-by: Michael Straube Link: https://lore.kernel.org/r/20211108105537.31655-1-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/staging/r8188eu/os_dep/mlme_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/r8188eu/os_dep/mlme_linux.c b/drivers/staging/r8188eu/os_dep/mlme_linux.c index e3ee9dc7ab9001..b0d1e20edc4c2f 100644 --- a/drivers/staging/r8188eu/os_dep/mlme_linux.c +++ b/drivers/staging/r8188eu/os_dep/mlme_linux.c @@ -114,7 +114,7 @@ void rtw_report_sec_ie(struct adapter *adapter, u8 authmode, u8 *sec_ie) buff = NULL; if (authmode == _WPA_IE_ID_) { - buff = kzalloc(IW_CUSTOM_MAX, GFP_KERNEL); + buff = kzalloc(IW_CUSTOM_MAX, GFP_ATOMIC); if (!buff) return; p = buff; From c8d3775745adacf9784a7a80a82d047051752573 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 9 Nov 2021 14:49:36 +0300 Subject: [PATCH 034/192] staging: r8188eu: fix a memory leak in rtw_wx_read32() commit be4ea8f383551b9dae11b8dfff1f38b3b5436e9a upstream. Free "ptmp" before returning -EINVAL. Fixes: 2b42bd58b321 ("staging: r8188eu: introduce new os_dep dir for RTL8188eu driver") Cc: stable Signed-off-by: Dan Carpenter Link: https://lore.kernel.org/r/20211109114935.GC16587@kili Signed-off-by: Greg Kroah-Hartman --- drivers/staging/r8188eu/os_dep/ioctl_linux.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/staging/r8188eu/os_dep/ioctl_linux.c b/drivers/staging/r8188eu/os_dep/ioctl_linux.c index 013c322b98a2d4..0eccce57c63a68 100644 --- a/drivers/staging/r8188eu/os_dep/ioctl_linux.c +++ b/drivers/staging/r8188eu/os_dep/ioctl_linux.c @@ -2061,6 +2061,7 @@ static int rtw_wx_read32(struct net_device *dev, u32 data32; u32 bytes; u8 *ptmp; + int ret; padapter = (struct adapter *)rtw_netdev_priv(dev); p = &wrqu->data; @@ -2093,12 +2094,17 @@ static int rtw_wx_read32(struct net_device *dev, break; default: DBG_88E(KERN_INFO "%s: usage> read [bytes],[address(hex)]\n", __func__); - return -EINVAL; + ret = -EINVAL; + goto err_free_ptmp; } DBG_88E(KERN_INFO "%s: addr = 0x%08X data =%s\n", __func__, addr, extra); kfree(ptmp); return 0; + +err_free_ptmp: + kfree(ptmp); + return ret; } static int rtw_wx_write32(struct net_device *dev, From 695438d30896e8f0b189f8e4059b4f38691a8160 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Thu, 25 Nov 2021 14:05:18 +0100 Subject: [PATCH 035/192] fuse: release pipe buf after last use commit 473441720c8616dfaf4451f9c7ea14f0eb5e5d65 upstream. Checking buf->flags should be done before the pipe_buf_release() is called on the pipe buffer, since releasing the buffer might modify the flags. This is exactly what page_cache_pipe_buf_release() does, and which results in the same VM_BUG_ON_PAGE(PageLRU(page)) that the original patch was trying to fix. Reported-by: Justin Forbes Fixes: 712a951025c0 ("fuse: fix page stealing") Cc: # v2.6.35 Signed-off-by: Miklos Szeredi Signed-off-by: Greg Kroah-Hartman --- fs/fuse/dev.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 5a1f142bdb4845..a9d21b33da9c45 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c @@ -847,17 +847,17 @@ static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep) replace_page_cache_page(oldpage, newpage); + get_page(newpage); + + if (!(buf->flags & PIPE_BUF_FLAG_LRU)) + lru_cache_add(newpage); + /* * Release while we have extra ref on stolen page. Otherwise * anon_pipe_buf_release() might think the page can be reused. */ pipe_buf_release(cs->pipe, buf); - get_page(newpage); - - if (!(buf->flags & PIPE_BUF_FLAG_LRU)) - lru_cache_add(newpage); - err = 0; spin_lock(&cs->req->waitq.lock); if (test_bit(FR_ABORTED, &cs->req->flags)) From 6660b61a4182f7f2708807995ca3f64a9f719b92 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Mon, 15 Nov 2021 14:27:19 -0800 Subject: [PATCH 036/192] xen: don't continue xenstore initialization in case of errors commit 08f6c2b09ebd4b326dbe96d13f94fee8f9814c78 upstream. In case of errors in xenbus_init (e.g. missing xen_store_gfn parameter), we goto out_error but we forget to reset xen_store_domain_type to XS_UNKNOWN. As a consequence xenbus_probe_initcall and other initcalls will still try to initialize xenstore resulting into a crash at boot. [ 2.479830] Call trace: [ 2.482314] xb_init_comms+0x18/0x150 [ 2.486354] xs_init+0x34/0x138 [ 2.489786] xenbus_probe+0x4c/0x70 [ 2.498432] xenbus_probe_initcall+0x2c/0x7c [ 2.503944] do_one_initcall+0x54/0x1b8 [ 2.507358] kernel_init_freeable+0x1ac/0x210 [ 2.511617] kernel_init+0x28/0x130 [ 2.516112] ret_from_fork+0x10/0x20 Cc: Cc: jbeulich@suse.com Signed-off-by: Stefano Stabellini Link: https://lore.kernel.org/r/20211115222719.2558207-1-sstabellini@kernel.org Reviewed-by: Jan Beulich Signed-off-by: Boris Ostrovsky Signed-off-by: Greg Kroah-Hartman --- drivers/xen/xenbus/xenbus_probe.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c index bd003ca8acbe92..5967aa9372550e 100644 --- a/drivers/xen/xenbus/xenbus_probe.c +++ b/drivers/xen/xenbus/xenbus_probe.c @@ -909,7 +909,7 @@ static struct notifier_block xenbus_resume_nb = { static int __init xenbus_init(void) { - int err = 0; + int err; uint64_t v = 0; xen_store_domain_type = XS_UNKNOWN; @@ -983,8 +983,10 @@ static int __init xenbus_init(void) */ proc_create_mount_point("xen"); #endif + return 0; out_error: + xen_store_domain_type = XS_UNKNOWN; return err; } From c673d72d2f61c2d887f0cab2cb33d660b9cd7ad0 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Tue, 23 Nov 2021 13:07:48 -0800 Subject: [PATCH 037/192] xen: detect uninitialized xenbus in xenbus_init commit 36e8f60f0867d3b70d398d653c17108459a04efe upstream. If the xenstore page hasn't been allocated properly, reading the value of the related hvm_param (HVM_PARAM_STORE_PFN) won't actually return error. Instead, it will succeed and return zero. Instead of attempting to xen_remap a bad guest physical address, detect this condition and return early. Note that although a guest physical address of zero for HVM_PARAM_STORE_PFN is theoretically possible, it is not a good choice and zero has never been validly used in that capacity. Also recognize all bits set as an invalid value. For 32-bit Linux, any pfn above ULONG_MAX would get truncated. Pfns above ULONG_MAX should never be passed by the Xen tools to HVM guests anyway, so check for this condition and return early. Cc: stable@vger.kernel.org Signed-off-by: Stefano Stabellini Reviewed-by: Juergen Gross Reviewed-by: Jan Beulich Link: https://lore.kernel.org/r/20211123210748.1910236-1-sstabellini@kernel.org Signed-off-by: Boris Ostrovsky Signed-off-by: Greg Kroah-Hartman --- drivers/xen/xenbus/xenbus_probe.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c index 5967aa9372550e..fe360c33ce717f 100644 --- a/drivers/xen/xenbus/xenbus_probe.c +++ b/drivers/xen/xenbus/xenbus_probe.c @@ -949,6 +949,29 @@ static int __init xenbus_init(void) err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v); if (err) goto out_error; + /* + * Uninitialized hvm_params are zero and return no error. + * Although it is theoretically possible to have + * HVM_PARAM_STORE_PFN set to zero on purpose, in reality it is + * not zero when valid. If zero, it means that Xenstore hasn't + * been properly initialized. Instead of attempting to map a + * wrong guest physical address return error. + * + * Also recognize all bits set as an invalid value. + */ + if (!v || !~v) { + err = -ENOENT; + goto out_error; + } + /* Avoid truncation on 32-bit. */ +#if BITS_PER_LONG == 32 + if (v > ULONG_MAX) { + pr_err("%s: cannot handle HVM_PARAM_STORE_PFN=%llx > ULONG_MAX\n", + __func__, v); + err = -EINVAL; + goto out_error; + } +#endif xen_store_gfn = (unsigned long)v; xen_store_interface = xen_remap(xen_store_gfn << XEN_PAGE_SHIFT, From 09eb40f6776c8b50c2e46a504bf5483440ca607d Mon Sep 17 00:00:00 2001 From: Pavel Begunkov Date: Tue, 23 Nov 2021 01:45:35 +0000 Subject: [PATCH 038/192] io_uring: correct link-list traversal locking commit 674ee8e1b4a41d2fdffc885c55350c3fbb38c22a upstream. As io_remove_next_linked() is now under ->timeout_lock (see io_link_timeout_fn), we should update locking around io_for_each_link() and io_match_task() to use the new lock. Cc: stable@kernel.org # 5.15+ Fixes: 89850fce16a1a ("io_uring: run timeouts from task_work") Signed-off-by: Pavel Begunkov Link: https://lore.kernel.org/r/b54541cedf7de59cb5ae36109e58529ca16e66aa.1637631883.git.asml.silence@gmail.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- fs/io_uring.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 365f8b350b7f00..f230ae730a5386 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -1430,10 +1430,10 @@ static void io_prep_async_link(struct io_kiocb *req) if (req->flags & REQ_F_LINK_TIMEOUT) { struct io_ring_ctx *ctx = req->ctx; - spin_lock(&ctx->completion_lock); + spin_lock_irq(&ctx->timeout_lock); io_for_each_link(cur, req) io_prep_async_work(cur); - spin_unlock(&ctx->completion_lock); + spin_unlock_irq(&ctx->timeout_lock); } else { io_for_each_link(cur, req) io_prep_async_work(cur); @@ -5697,6 +5697,7 @@ static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk, int posted = 0, i; spin_lock(&ctx->completion_lock); + spin_lock_irq(&ctx->timeout_lock); for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) { struct hlist_head *list; @@ -5706,6 +5707,7 @@ static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk, posted += io_poll_remove_one(req); } } + spin_unlock_irq(&ctx->timeout_lock); spin_unlock(&ctx->completion_lock); if (posted) @@ -9523,9 +9525,9 @@ static bool io_cancel_task_cb(struct io_wq_work *work, void *data) struct io_ring_ctx *ctx = req->ctx; /* protect against races with linked timeouts */ - spin_lock(&ctx->completion_lock); + spin_lock_irq(&ctx->timeout_lock); ret = io_match_task(req, cancel->task, cancel->all); - spin_unlock(&ctx->completion_lock); + spin_unlock_irq(&ctx->timeout_lock); } else { ret = io_match_task(req, cancel->task, cancel->all); } @@ -9539,12 +9541,14 @@ static bool io_cancel_defer_files(struct io_ring_ctx *ctx, LIST_HEAD(list); spin_lock(&ctx->completion_lock); + spin_lock_irq(&ctx->timeout_lock); list_for_each_entry_reverse(de, &ctx->defer_list, list) { if (io_match_task(de->req, task, cancel_all)) { list_cut_position(&list, &ctx->defer_list, &de->list); break; } } + spin_unlock_irq(&ctx->timeout_lock); spin_unlock(&ctx->completion_lock); if (list_empty(&list)) return false; From 3d2a1e68fd9904fdc1b02f2e7d40ca47df7ba39f Mon Sep 17 00:00:00 2001 From: Pavel Begunkov Date: Fri, 26 Nov 2021 14:38:14 +0000 Subject: [PATCH 039/192] io_uring: fail cancellation for EXITING tasks commit 617a89484debcd4e7999796d693cf0b77d2519de upstream. WARNING: CPU: 1 PID: 20 at fs/io_uring.c:6269 io_try_cancel_userdata+0x3c5/0x640 fs/io_uring.c:6269 CPU: 1 PID: 20 Comm: kworker/1:0 Not tainted 5.16.0-rc1-syzkaller #0 Workqueue: events io_fallback_req_func RIP: 0010:io_try_cancel_userdata+0x3c5/0x640 fs/io_uring.c:6269 Call Trace: io_req_task_link_timeout+0x6b/0x1e0 fs/io_uring.c:6886 io_fallback_req_func+0xf9/0x1ae fs/io_uring.c:1334 process_one_work+0x9b2/0x1690 kernel/workqueue.c:2298 worker_thread+0x658/0x11f0 kernel/workqueue.c:2445 kthread+0x405/0x4f0 kernel/kthread.c:327 ret_from_fork+0x1f/0x30 arch/x86/entry/entry_64.S:295 We need original task's context to do cancellations, so if it's dying and the callback is executed in a fallback mode, fail the cancellation attempt. Fixes: 89b263f6d56e6 ("io_uring: run linked timeouts from task_work") Cc: stable@kernel.org # 5.15+ Reported-by: syzbot+ab0cfe96c2b3cd1c1153@syzkaller.appspotmail.com Signed-off-by: Pavel Begunkov Link: https://lore.kernel.org/r/4c41c5f379c6941ad5a07cd48cb66ed62199cf7e.1637937097.git.asml.silence@gmail.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- fs/io_uring.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index f230ae730a5386..edd30baa568db1 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -6886,10 +6886,11 @@ static inline struct file *io_file_get(struct io_ring_ctx *ctx, static void io_req_task_link_timeout(struct io_kiocb *req, bool *locked) { struct io_kiocb *prev = req->timeout.prev; - int ret; + int ret = -ENOENT; if (prev) { - ret = io_try_cancel_userdata(req, prev->user_data); + if (!(req->task->flags & PF_EXITING)) + ret = io_try_cancel_userdata(req, prev->user_data); io_req_complete_post(req, ret ?: -ETIME, 0); io_put_req(prev); } else { From 1c939a53b26b6b39378a77f76a49be8dd6df7af0 Mon Sep 17 00:00:00 2001 From: Pavel Begunkov Date: Fri, 26 Nov 2021 14:38:15 +0000 Subject: [PATCH 040/192] io_uring: fix link traversal locking commit 6af3f48bf6156a7f02e91aca64e2927c4bebda03 upstream. WARNING: inconsistent lock state 5.16.0-rc2-syzkaller #0 Not tainted inconsistent {HARDIRQ-ON-W} -> {IN-HARDIRQ-W} usage. ffff888078e11418 (&ctx->timeout_lock ){?.+.}-{2:2} , at: io_timeout_fn+0x6f/0x360 fs/io_uring.c:5943 {HARDIRQ-ON-W} state was registered at: [...] spin_unlock_irq include/linux/spinlock.h:399 [inline] __io_poll_remove_one fs/io_uring.c:5669 [inline] __io_poll_remove_one fs/io_uring.c:5654 [inline] io_poll_remove_one+0x236/0x870 fs/io_uring.c:5680 io_poll_remove_all+0x1af/0x235 fs/io_uring.c:5709 io_ring_ctx_wait_and_kill+0x1cc/0x322 fs/io_uring.c:9534 io_uring_release+0x42/0x46 fs/io_uring.c:9554 __fput+0x286/0x9f0 fs/file_table.c:280 task_work_run+0xdd/0x1a0 kernel/task_work.c:164 exit_task_work include/linux/task_work.h:32 [inline] do_exit+0xc14/0x2b40 kernel/exit.c:832 674ee8e1b4a41 ("io_uring: correct link-list traversal locking") fixed a data race but introduced a possible deadlock and inconsistentcy in irq states. E.g. io_poll_remove_all() spin_lock_irq(timeout_lock) io_poll_remove_one() spin_lock/unlock_irq(poll_lock); spin_unlock_irq(timeout_lock) Another type of problem is freeing a request while holding ->timeout_lock, which may leads to a deadlock in io_commit_cqring() -> io_flush_timeouts() and other places. Having 3 nested locks is also too ugly. Add io_match_task_safe(), which would briefly take and release timeout_lock for race prevention inside, so the actuall request cancellation / free / etc. code doesn't have it taken. Reported-by: syzbot+ff49a3059d49b0ca0eec@syzkaller.appspotmail.com Reported-by: syzbot+847f02ec20a6609a328b@syzkaller.appspotmail.com Reported-by: syzbot+3368aadcd30425ceb53b@syzkaller.appspotmail.com Reported-by: syzbot+51ce8887cdef77c9ac83@syzkaller.appspotmail.com Reported-by: syzbot+3cb756a49d2f394a9ee3@syzkaller.appspotmail.com Fixes: 674ee8e1b4a41 ("io_uring: correct link-list traversal locking") Cc: stable@kernel.org # 5.15+ Signed-off-by: Pavel Begunkov Link: https://lore.kernel.org/r/397f7ebf3f4171f1abe41f708ac1ecb5766f0b68.1637937097.git.asml.silence@gmail.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- fs/io_uring.c | 60 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 18 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index edd30baa568db1..074718333b1053 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -1204,6 +1204,7 @@ static void io_refs_resurrect(struct percpu_ref *ref, struct completion *compl) static bool io_match_task(struct io_kiocb *head, struct task_struct *task, bool cancel_all) + __must_hold(&req->ctx->timeout_lock) { struct io_kiocb *req; @@ -1219,6 +1220,44 @@ static bool io_match_task(struct io_kiocb *head, struct task_struct *task, return false; } +static bool io_match_linked(struct io_kiocb *head) +{ + struct io_kiocb *req; + + io_for_each_link(req, head) { + if (req->flags & REQ_F_INFLIGHT) + return true; + } + return false; +} + +/* + * As io_match_task() but protected against racing with linked timeouts. + * User must not hold timeout_lock. + */ +static bool io_match_task_safe(struct io_kiocb *head, struct task_struct *task, + bool cancel_all) +{ + bool matched; + + if (task && head->task != task) + return false; + if (cancel_all) + return true; + + if (head->flags & REQ_F_LINK_TIMEOUT) { + struct io_ring_ctx *ctx = head->ctx; + + /* protect against races with linked timeouts */ + spin_lock_irq(&ctx->timeout_lock); + matched = io_match_linked(head); + spin_unlock_irq(&ctx->timeout_lock); + } else { + matched = io_match_linked(head); + } + return matched; +} + static inline void req_set_fail(struct io_kiocb *req) { req->flags |= REQ_F_FAIL; @@ -5697,17 +5736,15 @@ static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk, int posted = 0, i; spin_lock(&ctx->completion_lock); - spin_lock_irq(&ctx->timeout_lock); for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) { struct hlist_head *list; list = &ctx->cancel_hash[i]; hlist_for_each_entry_safe(req, tmp, list, hash_node) { - if (io_match_task(req, tsk, cancel_all)) + if (io_match_task_safe(req, tsk, cancel_all)) posted += io_poll_remove_one(req); } } - spin_unlock_irq(&ctx->timeout_lock); spin_unlock(&ctx->completion_lock); if (posted) @@ -9520,19 +9557,8 @@ static bool io_cancel_task_cb(struct io_wq_work *work, void *data) { struct io_kiocb *req = container_of(work, struct io_kiocb, work); struct io_task_cancel *cancel = data; - bool ret; - if (!cancel->all && (req->flags & REQ_F_LINK_TIMEOUT)) { - struct io_ring_ctx *ctx = req->ctx; - - /* protect against races with linked timeouts */ - spin_lock_irq(&ctx->timeout_lock); - ret = io_match_task(req, cancel->task, cancel->all); - spin_unlock_irq(&ctx->timeout_lock); - } else { - ret = io_match_task(req, cancel->task, cancel->all); - } - return ret; + return io_match_task_safe(req, cancel->task, cancel->all); } static bool io_cancel_defer_files(struct io_ring_ctx *ctx, @@ -9542,14 +9568,12 @@ static bool io_cancel_defer_files(struct io_ring_ctx *ctx, LIST_HEAD(list); spin_lock(&ctx->completion_lock); - spin_lock_irq(&ctx->timeout_lock); list_for_each_entry_reverse(de, &ctx->defer_list, list) { - if (io_match_task(de->req, task, cancel_all)) { + if (io_match_task_safe(de->req, task, cancel_all)) { list_cut_position(&list, &ctx->defer_list, &de->list); break; } } - spin_unlock_irq(&ctx->timeout_lock); spin_unlock(&ctx->completion_lock); if (list_empty(&list)) return false; From 2def7fdf5c823ae4dfc65c92701848b27fc7ebe6 Mon Sep 17 00:00:00 2001 From: Philip Yang Date: Fri, 12 Nov 2021 19:05:08 -0500 Subject: [PATCH 041/192] drm/amdgpu: IH process reset count when restart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 4d62555f624582e60be416fbc4772cd3fcd12b1a upstream. Otherwise when IH process restart, count is zero, the loop will not exit to wake_up_all after processing AMDGPU_IH_MAX_NUM_IVS interrupts. Cc: stable@vger.kernel.org Signed-off-by: Philip Yang Reviewed-by: Christian König Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c index f3d62e196901a8..0c7963dfacad1e 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c @@ -223,7 +223,7 @@ int amdgpu_ih_wait_on_checkpoint_process(struct amdgpu_device *adev, */ int amdgpu_ih_process(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih) { - unsigned int count = AMDGPU_IH_MAX_NUM_IVS; + unsigned int count; u32 wptr; if (!ih->enabled || adev->shutdown) @@ -232,6 +232,7 @@ int amdgpu_ih_process(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih) wptr = amdgpu_ih_get_wptr(adev, ih); restart_ih: + count = AMDGPU_IH_MAX_NUM_IVS; DRM_DEBUG("%s: rptr %d, wptr %d\n", __func__, ih->rptr, wptr); /* Order reading of wptr vs. reading of IH ring data */ From 832c006eec0d423a8956cf4e54700e6624ad4b4a Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Tue, 23 Nov 2021 11:36:01 -0500 Subject: [PATCH 042/192] drm/amdgpu/pm: fix powerplay OD interface MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit d5c7255dc7ff6e1239d794b9c53029d83ced04ca upstream. The overclocking interface currently appends data to a string. Revert back to using sprintf(). Bug: https://gitlab.freedesktop.org/drm/amd/-/issues/1774 Fixes: 6db0c87a0a8ee1 ("amdgpu/pm: Replace hwmgr smu usage of sprintf with sysfs_emit") Acked-by: Evan Quan Acked-by: Christian König Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman --- .../drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c | 20 +++---- .../drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c | 24 ++++---- .../drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c | 6 +- .../drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c | 28 +++++---- .../drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c | 10 ++-- .../drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c | 58 +++++++++---------- 6 files changed, 67 insertions(+), 79 deletions(-) diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c index 258c573acc9798..1f406f21b452fa 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c @@ -1024,8 +1024,6 @@ static int smu10_print_clock_levels(struct pp_hwmgr *hwmgr, uint32_t min_freq, max_freq = 0; uint32_t ret = 0; - phm_get_sysfs_buf(&buf, &size); - switch (type) { case PP_SCLK: smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetGfxclkFrequency, &now); @@ -1038,13 +1036,13 @@ static int smu10_print_clock_levels(struct pp_hwmgr *hwmgr, else i = 1; - size += sysfs_emit_at(buf, size, "0: %uMhz %s\n", + size += sprintf(buf + size, "0: %uMhz %s\n", data->gfx_min_freq_limit/100, i == 0 ? "*" : ""); - size += sysfs_emit_at(buf, size, "1: %uMhz %s\n", + size += sprintf(buf + size, "1: %uMhz %s\n", i == 1 ? now : SMU10_UMD_PSTATE_GFXCLK, i == 1 ? "*" : ""); - size += sysfs_emit_at(buf, size, "2: %uMhz %s\n", + size += sprintf(buf + size, "2: %uMhz %s\n", data->gfx_max_freq_limit/100, i == 2 ? "*" : ""); break; @@ -1052,7 +1050,7 @@ static int smu10_print_clock_levels(struct pp_hwmgr *hwmgr, smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetFclkFrequency, &now); for (i = 0; i < mclk_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, mclk_table->entries[i].clk / 100, ((mclk_table->entries[i].clk / 100) @@ -1067,10 +1065,10 @@ static int smu10_print_clock_levels(struct pp_hwmgr *hwmgr, if (ret) return ret; - size += sysfs_emit_at(buf, size, "%s:\n", "OD_SCLK"); - size += sysfs_emit_at(buf, size, "0: %10uMhz\n", + size += sprintf(buf + size, "%s:\n", "OD_SCLK"); + size += sprintf(buf + size, "0: %10uMhz\n", (data->gfx_actual_soft_min_freq > 0) ? data->gfx_actual_soft_min_freq : min_freq); - size += sysfs_emit_at(buf, size, "1: %10uMhz\n", + size += sprintf(buf + size, "1: %10uMhz\n", (data->gfx_actual_soft_max_freq > 0) ? data->gfx_actual_soft_max_freq : max_freq); } break; @@ -1083,8 +1081,8 @@ static int smu10_print_clock_levels(struct pp_hwmgr *hwmgr, if (ret) return ret; - size += sysfs_emit_at(buf, size, "%s:\n", "OD_RANGE"); - size += sysfs_emit_at(buf, size, "SCLK: %7uMHz %10uMHz\n", + size += sprintf(buf + size, "%s:\n", "OD_RANGE"); + size += sprintf(buf + size, "SCLK: %7uMHz %10uMHz\n", min_freq, max_freq); } break; diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c index aceebf58422530..611969bf452077 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c @@ -4914,8 +4914,6 @@ static int smu7_print_clock_levels(struct pp_hwmgr *hwmgr, int size = 0; uint32_t i, now, clock, pcie_speed; - phm_get_sysfs_buf(&buf, &size); - switch (type) { case PP_SCLK: smum_send_msg_to_smc(hwmgr, PPSMC_MSG_API_GetSclkFrequency, &clock); @@ -4928,7 +4926,7 @@ static int smu7_print_clock_levels(struct pp_hwmgr *hwmgr, now = i; for (i = 0; i < sclk_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, sclk_table->dpm_levels[i].value / 100, (i == now) ? "*" : ""); break; @@ -4943,7 +4941,7 @@ static int smu7_print_clock_levels(struct pp_hwmgr *hwmgr, now = i; for (i = 0; i < mclk_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, mclk_table->dpm_levels[i].value / 100, (i == now) ? "*" : ""); break; @@ -4957,7 +4955,7 @@ static int smu7_print_clock_levels(struct pp_hwmgr *hwmgr, now = i; for (i = 0; i < pcie_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %s %s\n", i, + size += sprintf(buf + size, "%d: %s %s\n", i, (pcie_table->dpm_levels[i].value == 0) ? "2.5GT/s, x8" : (pcie_table->dpm_levels[i].value == 1) ? "5.0GT/s, x16" : (pcie_table->dpm_levels[i].value == 2) ? "8.0GT/s, x16" : "", @@ -4965,32 +4963,32 @@ static int smu7_print_clock_levels(struct pp_hwmgr *hwmgr, break; case OD_SCLK: if (hwmgr->od_enabled) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_SCLK"); + size += sprintf(buf + size, "%s:\n", "OD_SCLK"); for (i = 0; i < odn_sclk_table->num_of_pl; i++) - size += sysfs_emit_at(buf, size, "%d: %10uMHz %10umV\n", + size += sprintf(buf + size, "%d: %10uMHz %10umV\n", i, odn_sclk_table->entries[i].clock/100, odn_sclk_table->entries[i].vddc); } break; case OD_MCLK: if (hwmgr->od_enabled) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_MCLK"); + size += sprintf(buf + size, "%s:\n", "OD_MCLK"); for (i = 0; i < odn_mclk_table->num_of_pl; i++) - size += sysfs_emit_at(buf, size, "%d: %10uMHz %10umV\n", + size += sprintf(buf + size, "%d: %10uMHz %10umV\n", i, odn_mclk_table->entries[i].clock/100, odn_mclk_table->entries[i].vddc); } break; case OD_RANGE: if (hwmgr->od_enabled) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_RANGE"); - size += sysfs_emit_at(buf, size, "SCLK: %7uMHz %10uMHz\n", + size += sprintf(buf + size, "%s:\n", "OD_RANGE"); + size += sprintf(buf + size, "SCLK: %7uMHz %10uMHz\n", data->golden_dpm_table.sclk_table.dpm_levels[0].value/100, hwmgr->platform_descriptor.overdriveLimit.engineClock/100); - size += sysfs_emit_at(buf, size, "MCLK: %7uMHz %10uMHz\n", + size += sprintf(buf + size, "MCLK: %7uMHz %10uMHz\n", data->golden_dpm_table.mclk_table.dpm_levels[0].value/100, hwmgr->platform_descriptor.overdriveLimit.memoryClock/100); - size += sysfs_emit_at(buf, size, "VDDC: %7umV %11umV\n", + size += sprintf(buf + size, "VDDC: %7umV %11umV\n", data->odn_dpm_table.min_vddc, data->odn_dpm_table.max_vddc); } diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c index 8e28a8eecefc64..03bf8f0692228d 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c @@ -1550,8 +1550,6 @@ static int smu8_print_clock_levels(struct pp_hwmgr *hwmgr, uint32_t i, now; int size = 0; - phm_get_sysfs_buf(&buf, &size); - switch (type) { case PP_SCLK: now = PHM_GET_FIELD(cgs_read_ind_register(hwmgr->device, @@ -1561,7 +1559,7 @@ static int smu8_print_clock_levels(struct pp_hwmgr *hwmgr, CURR_SCLK_INDEX); for (i = 0; i < sclk_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, sclk_table->entries[i].clk / 100, (i == now) ? "*" : ""); break; @@ -1573,7 +1571,7 @@ static int smu8_print_clock_levels(struct pp_hwmgr *hwmgr, CURR_MCLK_INDEX); for (i = SMU8_NUM_NBPMEMORYCLOCK; i > 0; i--) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", SMU8_NUM_NBPMEMORYCLOCK-i, data->sys_info.nbp_memory_clock[i-1] / 100, (SMU8_NUM_NBPMEMORYCLOCK-i == now) ? "*" : ""); break; diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c index c981fc2882f017..e6336654c5655e 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c @@ -4639,8 +4639,6 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, int i, now, size = 0, count = 0; - phm_get_sysfs_buf(&buf, &size); - switch (type) { case PP_SCLK: if (data->registry_data.sclk_dpm_key_disabled) @@ -4654,7 +4652,7 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, else count = sclk_table->count; for (i = 0; i < count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, sclk_table->dpm_levels[i].value / 100, (i == now) ? "*" : ""); break; @@ -4665,7 +4663,7 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetCurrentUclkIndex, &now); for (i = 0; i < mclk_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, mclk_table->dpm_levels[i].value / 100, (i == now) ? "*" : ""); break; @@ -4676,7 +4674,7 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetCurrentSocclkIndex, &now); for (i = 0; i < soc_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, soc_table->dpm_levels[i].value / 100, (i == now) ? "*" : ""); break; @@ -4688,7 +4686,7 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, PPSMC_MSG_GetClockFreqMHz, CLK_DCEFCLK, &now); for (i = 0; i < dcef_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, dcef_table->dpm_levels[i].value / 100, (dcef_table->dpm_levels[i].value / 100 == now) ? "*" : ""); @@ -4702,7 +4700,7 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, gen_speed = pptable->PcieGenSpeed[i]; lane_width = pptable->PcieLaneCount[i]; - size += sysfs_emit_at(buf, size, "%d: %s %s %s\n", i, + size += sprintf(buf + size, "%d: %s %s %s\n", i, (gen_speed == 0) ? "2.5GT/s," : (gen_speed == 1) ? "5.0GT/s," : (gen_speed == 2) ? "8.0GT/s," : @@ -4721,34 +4719,34 @@ static int vega10_print_clock_levels(struct pp_hwmgr *hwmgr, case OD_SCLK: if (hwmgr->od_enabled) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_SCLK"); + size += sprintf(buf + size, "%s:\n", "OD_SCLK"); podn_vdd_dep = &data->odn_dpm_table.vdd_dep_on_sclk; for (i = 0; i < podn_vdd_dep->count; i++) - size += sysfs_emit_at(buf, size, "%d: %10uMhz %10umV\n", + size += sprintf(buf + size, "%d: %10uMhz %10umV\n", i, podn_vdd_dep->entries[i].clk / 100, podn_vdd_dep->entries[i].vddc); } break; case OD_MCLK: if (hwmgr->od_enabled) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_MCLK"); + size += sprintf(buf + size, "%s:\n", "OD_MCLK"); podn_vdd_dep = &data->odn_dpm_table.vdd_dep_on_mclk; for (i = 0; i < podn_vdd_dep->count; i++) - size += sysfs_emit_at(buf, size, "%d: %10uMhz %10umV\n", + size += sprintf(buf + size, "%d: %10uMhz %10umV\n", i, podn_vdd_dep->entries[i].clk/100, podn_vdd_dep->entries[i].vddc); } break; case OD_RANGE: if (hwmgr->od_enabled) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_RANGE"); - size += sysfs_emit_at(buf, size, "SCLK: %7uMHz %10uMHz\n", + size += sprintf(buf + size, "%s:\n", "OD_RANGE"); + size += sprintf(buf + size, "SCLK: %7uMHz %10uMHz\n", data->golden_dpm_table.gfx_table.dpm_levels[0].value/100, hwmgr->platform_descriptor.overdriveLimit.engineClock/100); - size += sysfs_emit_at(buf, size, "MCLK: %7uMHz %10uMHz\n", + size += sprintf(buf + size, "MCLK: %7uMHz %10uMHz\n", data->golden_dpm_table.mem_table.dpm_levels[0].value/100, hwmgr->platform_descriptor.overdriveLimit.memoryClock/100); - size += sysfs_emit_at(buf, size, "VDDC: %7umV %11umV\n", + size += sprintf(buf + size, "VDDC: %7umV %11umV\n", data->odn_dpm_table.min_vddc, data->odn_dpm_table.max_vddc); } diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c index f7e783e1c888f3..a2f4d6773d458c 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c @@ -2246,8 +2246,6 @@ static int vega12_print_clock_levels(struct pp_hwmgr *hwmgr, int i, now, size = 0; struct pp_clock_levels_with_latency clocks; - phm_get_sysfs_buf(&buf, &size); - switch (type) { case PP_SCLK: PP_ASSERT_WITH_CODE( @@ -2260,7 +2258,7 @@ static int vega12_print_clock_levels(struct pp_hwmgr *hwmgr, "Attempt to get gfx clk levels Failed!", return -1); for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz / 1000 == now / 100) ? "*" : ""); break; @@ -2276,7 +2274,7 @@ static int vega12_print_clock_levels(struct pp_hwmgr *hwmgr, "Attempt to get memory clk levels Failed!", return -1); for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz / 1000 == now / 100) ? "*" : ""); break; @@ -2294,7 +2292,7 @@ static int vega12_print_clock_levels(struct pp_hwmgr *hwmgr, "Attempt to get soc clk levels Failed!", return -1); for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz / 1000 == now) ? "*" : ""); break; @@ -2312,7 +2310,7 @@ static int vega12_print_clock_levels(struct pp_hwmgr *hwmgr, "Attempt to get dcef clk levels Failed!", return -1); for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz / 1000 == now) ? "*" : ""); break; diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c index 03e63be4ee2756..85d55ab4e369fc 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c @@ -3366,8 +3366,6 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, int ret = 0; uint32_t gen_speed, lane_width, current_gen_speed, current_lane_width; - phm_get_sysfs_buf(&buf, &size); - switch (type) { case PP_SCLK: ret = vega20_get_current_clk_freq(hwmgr, PPCLK_GFXCLK, &now); @@ -3376,13 +3374,13 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, return ret); if (vega20_get_sclks(hwmgr, &clocks)) { - size += sysfs_emit_at(buf, size, "0: %uMhz * (DPM disabled)\n", + size += sprintf(buf + size, "0: %uMhz * (DPM disabled)\n", now / 100); break; } for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz == now * 10) ? "*" : ""); break; @@ -3394,13 +3392,13 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, return ret); if (vega20_get_memclocks(hwmgr, &clocks)) { - size += sysfs_emit_at(buf, size, "0: %uMhz * (DPM disabled)\n", + size += sprintf(buf + size, "0: %uMhz * (DPM disabled)\n", now / 100); break; } for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz == now * 10) ? "*" : ""); break; @@ -3412,13 +3410,13 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, return ret); if (vega20_get_socclocks(hwmgr, &clocks)) { - size += sysfs_emit_at(buf, size, "0: %uMhz * (DPM disabled)\n", + size += sprintf(buf + size, "0: %uMhz * (DPM disabled)\n", now / 100); break; } for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz == now * 10) ? "*" : ""); break; @@ -3430,7 +3428,7 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, return ret); for (i = 0; i < fclk_dpm_table->count; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, fclk_dpm_table->dpm_levels[i].value, fclk_dpm_table->dpm_levels[i].value == (now / 100) ? "*" : ""); break; @@ -3442,13 +3440,13 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, return ret); if (vega20_get_dcefclocks(hwmgr, &clocks)) { - size += sysfs_emit_at(buf, size, "0: %uMhz * (DPM disabled)\n", + size += sprintf(buf + size, "0: %uMhz * (DPM disabled)\n", now / 100); break; } for (i = 0; i < clocks.num_levels; i++) - size += sysfs_emit_at(buf, size, "%d: %uMhz %s\n", + size += sprintf(buf + size, "%d: %uMhz %s\n", i, clocks.data[i].clocks_in_khz / 1000, (clocks.data[i].clocks_in_khz == now * 10) ? "*" : ""); break; @@ -3462,7 +3460,7 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, gen_speed = pptable->PcieGenSpeed[i]; lane_width = pptable->PcieLaneCount[i]; - size += sysfs_emit_at(buf, size, "%d: %s %s %dMhz %s\n", i, + size += sprintf(buf + size, "%d: %s %s %dMhz %s\n", i, (gen_speed == 0) ? "2.5GT/s," : (gen_speed == 1) ? "5.0GT/s," : (gen_speed == 2) ? "8.0GT/s," : @@ -3483,18 +3481,18 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, case OD_SCLK: if (od8_settings[OD8_SETTING_GFXCLK_FMIN].feature_id && od8_settings[OD8_SETTING_GFXCLK_FMAX].feature_id) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_SCLK"); - size += sysfs_emit_at(buf, size, "0: %10uMhz\n", + size += sprintf(buf + size, "%s:\n", "OD_SCLK"); + size += sprintf(buf + size, "0: %10uMhz\n", od_table->GfxclkFmin); - size += sysfs_emit_at(buf, size, "1: %10uMhz\n", + size += sprintf(buf + size, "1: %10uMhz\n", od_table->GfxclkFmax); } break; case OD_MCLK: if (od8_settings[OD8_SETTING_UCLK_FMAX].feature_id) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_MCLK"); - size += sysfs_emit_at(buf, size, "1: %10uMhz\n", + size += sprintf(buf + size, "%s:\n", "OD_MCLK"); + size += sprintf(buf + size, "1: %10uMhz\n", od_table->UclkFmax); } @@ -3507,14 +3505,14 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, od8_settings[OD8_SETTING_GFXCLK_VOLTAGE1].feature_id && od8_settings[OD8_SETTING_GFXCLK_VOLTAGE2].feature_id && od8_settings[OD8_SETTING_GFXCLK_VOLTAGE3].feature_id) { - size += sysfs_emit_at(buf, size, "%s:\n", "OD_VDDC_CURVE"); - size += sysfs_emit_at(buf, size, "0: %10uMhz %10dmV\n", + size += sprintf(buf + size, "%s:\n", "OD_VDDC_CURVE"); + size += sprintf(buf + size, "0: %10uMhz %10dmV\n", od_table->GfxclkFreq1, od_table->GfxclkVolt1 / VOLTAGE_SCALE); - size += sysfs_emit_at(buf, size, "1: %10uMhz %10dmV\n", + size += sprintf(buf + size, "1: %10uMhz %10dmV\n", od_table->GfxclkFreq2, od_table->GfxclkVolt2 / VOLTAGE_SCALE); - size += sysfs_emit_at(buf, size, "2: %10uMhz %10dmV\n", + size += sprintf(buf + size, "2: %10uMhz %10dmV\n", od_table->GfxclkFreq3, od_table->GfxclkVolt3 / VOLTAGE_SCALE); } @@ -3522,17 +3520,17 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, break; case OD_RANGE: - size += sysfs_emit_at(buf, size, "%s:\n", "OD_RANGE"); + size += sprintf(buf + size, "%s:\n", "OD_RANGE"); if (od8_settings[OD8_SETTING_GFXCLK_FMIN].feature_id && od8_settings[OD8_SETTING_GFXCLK_FMAX].feature_id) { - size += sysfs_emit_at(buf, size, "SCLK: %7uMhz %10uMhz\n", + size += sprintf(buf + size, "SCLK: %7uMhz %10uMhz\n", od8_settings[OD8_SETTING_GFXCLK_FMIN].min_value, od8_settings[OD8_SETTING_GFXCLK_FMAX].max_value); } if (od8_settings[OD8_SETTING_UCLK_FMAX].feature_id) { - size += sysfs_emit_at(buf, size, "MCLK: %7uMhz %10uMhz\n", + size += sprintf(buf + size, "MCLK: %7uMhz %10uMhz\n", od8_settings[OD8_SETTING_UCLK_FMAX].min_value, od8_settings[OD8_SETTING_UCLK_FMAX].max_value); } @@ -3543,22 +3541,22 @@ static int vega20_print_clock_levels(struct pp_hwmgr *hwmgr, od8_settings[OD8_SETTING_GFXCLK_VOLTAGE1].feature_id && od8_settings[OD8_SETTING_GFXCLK_VOLTAGE2].feature_id && od8_settings[OD8_SETTING_GFXCLK_VOLTAGE3].feature_id) { - size += sysfs_emit_at(buf, size, "VDDC_CURVE_SCLK[0]: %7uMhz %10uMhz\n", + size += sprintf(buf + size, "VDDC_CURVE_SCLK[0]: %7uMhz %10uMhz\n", od8_settings[OD8_SETTING_GFXCLK_FREQ1].min_value, od8_settings[OD8_SETTING_GFXCLK_FREQ1].max_value); - size += sysfs_emit_at(buf, size, "VDDC_CURVE_VOLT[0]: %7dmV %11dmV\n", + size += sprintf(buf + size, "VDDC_CURVE_VOLT[0]: %7dmV %11dmV\n", od8_settings[OD8_SETTING_GFXCLK_VOLTAGE1].min_value, od8_settings[OD8_SETTING_GFXCLK_VOLTAGE1].max_value); - size += sysfs_emit_at(buf, size, "VDDC_CURVE_SCLK[1]: %7uMhz %10uMhz\n", + size += sprintf(buf + size, "VDDC_CURVE_SCLK[1]: %7uMhz %10uMhz\n", od8_settings[OD8_SETTING_GFXCLK_FREQ2].min_value, od8_settings[OD8_SETTING_GFXCLK_FREQ2].max_value); - size += sysfs_emit_at(buf, size, "VDDC_CURVE_VOLT[1]: %7dmV %11dmV\n", + size += sprintf(buf + size, "VDDC_CURVE_VOLT[1]: %7dmV %11dmV\n", od8_settings[OD8_SETTING_GFXCLK_VOLTAGE2].min_value, od8_settings[OD8_SETTING_GFXCLK_VOLTAGE2].max_value); - size += sysfs_emit_at(buf, size, "VDDC_CURVE_SCLK[2]: %7uMhz %10uMhz\n", + size += sprintf(buf + size, "VDDC_CURVE_SCLK[2]: %7uMhz %10uMhz\n", od8_settings[OD8_SETTING_GFXCLK_FREQ3].min_value, od8_settings[OD8_SETTING_GFXCLK_FREQ3].max_value); - size += sysfs_emit_at(buf, size, "VDDC_CURVE_VOLT[2]: %7dmV %11dmV\n", + size += sprintf(buf + size, "VDDC_CURVE_VOLT[2]: %7dmV %11dmV\n", od8_settings[OD8_SETTING_GFXCLK_VOLTAGE3].min_value, od8_settings[OD8_SETTING_GFXCLK_VOLTAGE3].max_value); } From a70414d820f74107882be7b8bd257606ffac7233 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Thu, 18 Nov 2021 13:04:13 +1000 Subject: [PATCH 043/192] drm/nouveau: recognise GA106 commit 46741e4f593ff1bd0e4a140ab7e566701946484b upstream. I've got HW now, appears to work as expected so far. Signed-off-by: Ben Skeggs Cc: # 5.14+ Reviewed-by: Karol Herbst Signed-off-by: Karol Herbst Link: https://patchwork.freedesktop.org/patch/msgid/20211118030413.2610-1-skeggsb@gmail.com Signed-off-by: Greg Kroah-Hartman --- .../gpu/drm/nouveau/nvkm/engine/device/base.c | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c index b51d690f375ff4..88d262ba648cf9 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c @@ -2626,6 +2626,27 @@ nv174_chipset = { .fifo = { 0x00000001, ga102_fifo_new }, }; +static const struct nvkm_device_chip +nv176_chipset = { + .name = "GA106", + .bar = { 0x00000001, tu102_bar_new }, + .bios = { 0x00000001, nvkm_bios_new }, + .devinit = { 0x00000001, ga100_devinit_new }, + .fb = { 0x00000001, ga102_fb_new }, + .gpio = { 0x00000001, ga102_gpio_new }, + .i2c = { 0x00000001, gm200_i2c_new }, + .imem = { 0x00000001, nv50_instmem_new }, + .mc = { 0x00000001, ga100_mc_new }, + .mmu = { 0x00000001, tu102_mmu_new }, + .pci = { 0x00000001, gp100_pci_new }, + .privring = { 0x00000001, gm200_privring_new }, + .timer = { 0x00000001, gk20a_timer_new }, + .top = { 0x00000001, ga100_top_new }, + .disp = { 0x00000001, ga102_disp_new }, + .dma = { 0x00000001, gv100_dma_new }, + .fifo = { 0x00000001, ga102_fifo_new }, +}; + static const struct nvkm_device_chip nv177_chipset = { .name = "GA107", @@ -3072,6 +3093,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func, case 0x168: device->chip = &nv168_chipset; break; case 0x172: device->chip = &nv172_chipset; break; case 0x174: device->chip = &nv174_chipset; break; + case 0x176: device->chip = &nv176_chipset; break; case 0x177: device->chip = &nv177_chipset; break; default: if (nvkm_boolopt(device->cfgopt, "NvEnableUnsupportedChipsets", false)) { From b05576526e84e50718f24409086d0d51f3d3371c Mon Sep 17 00:00:00 2001 From: Namjae Jeon Date: Sun, 21 Nov 2021 07:48:45 +0900 Subject: [PATCH 044/192] ksmbd: downgrade addition info error msg to debug in smb2_get_info_sec() commit 8e537d1465e7401f352a6e0a728a93f8cad5294a upstream. While file transfer through windows client, This error flood message happen. This flood message will cause performance degradation and misunderstand server has problem. Fixes: e294f78d3478 ("ksmbd: allow PROTECTED_DACL_SECINFO and UNPROTECTED_DACL_SECINFO addition information in smb2 set info security") Cc: stable@vger.kernel.org # v5.15 Acked-by: Hyunchul Lee Signed-off-by: Namjae Jeon Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- fs/ksmbd/smb2pdu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 589694af4e9512..fe16c80f0de39a 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -5060,7 +5060,7 @@ static int smb2_get_info_sec(struct ksmbd_work *work, if (addition_info & ~(OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO | PROTECTED_DACL_SECINFO | UNPROTECTED_DACL_SECINFO)) { - pr_err("Unsupported addition info: 0x%x)\n", + ksmbd_debug(SMB, "Unsupported addition info: 0x%x)\n", addition_info); pntsd->revision = cpu_to_le16(1); From 522cd5c6554a0bb56dae7baa2c6155970de4be1d Mon Sep 17 00:00:00 2001 From: Namjae Jeon Date: Sun, 21 Nov 2021 11:32:39 +0900 Subject: [PATCH 045/192] ksmbd: contain default data stream even if xattr is empty commit 1ec72153ff434ce75bace3044dc89a23a05d7064 upstream. If xattr is not supported like exfat or fat, ksmbd server doesn't contain default data stream in FILE_STREAM_INFORMATION response. It will cause ppt or doc file update issue if local filesystem is such as ones. This patch move goto statement to contain it. Fixes: 9f6323311c70 ("ksmbd: add default data stream name in FILE_STREAM_INFORMATION") Cc: stable@vger.kernel.org # v5.15 Acked-by: Hyunchul Lee Signed-off-by: Namjae Jeon Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- fs/ksmbd/smb2pdu.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index fe16c80f0de39a..69525ab7b2cab8 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -4450,6 +4450,12 @@ static void get_file_stream_info(struct ksmbd_work *work, &stat); file_info = (struct smb2_file_stream_info *)rsp->Buffer; + buf_free_len = + smb2_calc_max_out_buf_len(work, 8, + le32_to_cpu(req->OutputBufferLength)); + if (buf_free_len < 0) + goto out; + xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list); if (xattr_list_len < 0) { goto out; @@ -4458,12 +4464,6 @@ static void get_file_stream_info(struct ksmbd_work *work, goto out; } - buf_free_len = - smb2_calc_max_out_buf_len(work, 8, - le32_to_cpu(req->OutputBufferLength)); - if (buf_free_len < 0) - goto out; - while (idx < xattr_list_len) { stream_name = xattr_list + idx; streamlen = strlen(stream_name); @@ -4507,6 +4507,7 @@ static void get_file_stream_info(struct ksmbd_work *work, file_info->NextEntryOffset = cpu_to_le32(next); } +out: if (!S_ISDIR(stat.mode) && buf_free_len >= sizeof(struct smb2_file_stream_info) + 7 * 2) { file_info = (struct smb2_file_stream_info *) @@ -4515,14 +4516,13 @@ static void get_file_stream_info(struct ksmbd_work *work, "::$DATA", 7, conn->local_nls, 0); streamlen *= 2; file_info->StreamNameLength = cpu_to_le32(streamlen); - file_info->StreamSize = 0; - file_info->StreamAllocationSize = 0; + file_info->StreamSize = cpu_to_le64(stat.size); + file_info->StreamAllocationSize = cpu_to_le64(stat.blocks << 9); nbytes += sizeof(struct smb2_file_stream_info) + streamlen; } /* last entry offset should be 0 */ file_info->NextEntryOffset = 0; -out: kvfree(xattr_list); rsp->OutputBufferLength = cpu_to_le32(nbytes); From 11e659827c3a2facb3a04e08cc97ff14d5091f51 Mon Sep 17 00:00:00 2001 From: Namjae Jeon Date: Wed, 24 Nov 2021 10:23:02 +0900 Subject: [PATCH 046/192] ksmbd: fix memleak in get_file_stream_info() commit 178ca6f85aa3231094467691f5ea1ff2f398aa8d upstream. Fix memleak in get_file_stream_info() Fixes: 34061d6b76a4 ("ksmbd: validate OutputBufferLength of QUERY_DIR, QUERY_INFO, IOCTL requests") Cc: stable@vger.kernel.org # v5.15 Reported-by: Coverity Scan Acked-by: Hyunchul Lee Signed-off-by: Namjae Jeon Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- fs/ksmbd/smb2pdu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 69525ab7b2cab8..691c861e41a2e1 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -4489,8 +4489,10 @@ static void get_file_stream_info(struct ksmbd_work *work, ":%s", &stream_name[XATTR_NAME_STREAM_LEN]); next = sizeof(struct smb2_file_stream_info) + streamlen * 2; - if (next > buf_free_len) + if (next > buf_free_len) { + kfree(stream_buf); break; + } file_info = (struct smb2_file_stream_info *)&rsp->Buffer[nbytes]; streamlen = smbConvertToUTF16((__le16 *)file_info->StreamName, From 83247fdb9417e7ce9eaf838e43840df8e6ee9a1c Mon Sep 17 00:00:00 2001 From: Nicholas Piggin Date: Fri, 19 Nov 2021 13:16:27 +1000 Subject: [PATCH 047/192] KVM: PPC: Book3S HV: Prevent POWER7/8 TLB flush flushing SLB commit cf0b0e3712f7af90006f8317ff27278094c2c128 upstream. The POWER9 ERAT flush instruction is a SLBIA with IH=7, which is a reserved value on POWER7/8. On POWER8 this invalidates the SLB entries above index 0, similarly to SLBIA IH=0. If the SLB entries are invalidated, and then the guest is bypassed, the host SLB does not get re-loaded, so the bolted entries above 0 will be lost. This can result in kernel stack access causing a SLB fault. Kernel stack access causing a SLB fault was responsible for the infamous mega bug (search "Fix SLB reload bug"). Although since commit 48e7b7695745 ("powerpc/64s/hash: Convert SLB miss handlers to C") that starts using the kernel stack in the SLB miss handler, it might only result in an infinite loop of SLB faults. In any case it's a bug. Fix this by only executing the instruction on >= POWER9 where IH=7 is defined not to invalidate the SLB. POWER7/8 don't require this ERAT flush. Fixes: 500871125920 ("KVM: PPC: Book3S HV: Invalidate ERAT when flushing guest TLB entries") Cc: stable@vger.kernel.org # v5.2+ Signed-off-by: Nicholas Piggin Reviewed-by: Fabiano Rosas Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20211119031627.577853-1-npiggin@gmail.com Signed-off-by: Greg Kroah-Hartman --- arch/powerpc/kvm/book3s_hv_builtin.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book3s_hv_builtin.c index fcf4760a3a0ea2..70b7a8f9715384 100644 --- a/arch/powerpc/kvm/book3s_hv_builtin.c +++ b/arch/powerpc/kvm/book3s_hv_builtin.c @@ -695,6 +695,7 @@ static void flush_guest_tlb(struct kvm *kvm) "r" (0) : "memory"); } asm volatile("ptesync": : :"memory"); + // POWER9 congruence-class TLBIEL leaves ERAT. Flush it now. asm volatile(PPC_RADIX_INVALIDATE_ERAT_GUEST : : :"memory"); } else { for (set = 0; set < kvm->arch.tlb_sets; ++set) { @@ -705,7 +706,9 @@ static void flush_guest_tlb(struct kvm *kvm) rb += PPC_BIT(51); /* increment set number */ } asm volatile("ptesync": : :"memory"); - asm volatile(PPC_ISA_3_0_INVALIDATE_ERAT : : :"memory"); + // POWER9 congruence-class TLBIEL leaves ERAT. Flush it now. + if (cpu_has_feature(CPU_FTR_ARCH_300)) + asm volatile(PPC_ISA_3_0_INVALIDATE_ERAT : : :"memory"); } } From a3e90db5180fd7f5d38940e2022aee19c3332f3e Mon Sep 17 00:00:00 2001 From: Jiri Olsa Date: Tue, 23 Nov 2021 15:28:01 +0100 Subject: [PATCH 048/192] tracing/uprobe: Fix uprobe_perf_open probes iteration commit 1880ed71ce863318c1ce93bf324876fb5f92854f upstream. Add missing 'tu' variable initialization in the probes loop, otherwise the head 'tu' is used instead of added probes. Link: https://lkml.kernel.org/r/20211123142801.182530-1-jolsa@kernel.org Cc: stable@vger.kernel.org Fixes: 99c9a923e97a ("tracing/uprobe: Fix double perf_event linking on multiprobe uprobe") Acked-by: Masami Hiramatsu Signed-off-by: Jiri Olsa Signed-off-by: Steven Rostedt (VMware) Signed-off-by: Greg Kroah-Hartman --- kernel/trace/trace_uprobe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c index 0a5c0db3137ee9..f5f0039d31e5aa 100644 --- a/kernel/trace/trace_uprobe.c +++ b/kernel/trace/trace_uprobe.c @@ -1313,6 +1313,7 @@ static int uprobe_perf_open(struct trace_event_call *call, return 0; list_for_each_entry(pos, trace_probe_probe_list(tp), list) { + tu = container_of(pos, struct trace_uprobe, tp); err = uprobe_apply(tu->inode, tu->offset, &tu->consumer, true); if (err) { uprobe_perf_close(call, event); From 55bc4437762a6bcc8089e0639d2662e26e3629f6 Mon Sep 17 00:00:00 2001 From: "Steven Rostedt (VMware)" Date: Fri, 26 Nov 2021 17:34:42 -0500 Subject: [PATCH 049/192] tracing: Fix pid filtering when triggers are attached commit a55f224ff5f238013de8762c4287117e47b86e22 upstream. If a event is filtered by pid and a trigger that requires processing of the event to happen is a attached to the event, the discard portion does not take the pid filtering into account, and the event will then be recorded when it should not have been. Cc: stable@vger.kernel.org Fixes: 3fdaf80f4a836 ("tracing: Implement event pid filtering") Signed-off-by: Steven Rostedt (VMware) Signed-off-by: Greg Kroah-Hartman --- kernel/trace/trace.h | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 5c71d32b2860ac..421374c304fc04 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h @@ -1360,14 +1360,26 @@ __event_trigger_test_discard(struct trace_event_file *file, if (eflags & EVENT_FILE_FL_TRIGGER_COND) *tt = event_triggers_call(file, buffer, entry, event); - if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) || - (unlikely(file->flags & EVENT_FILE_FL_FILTERED) && - !filter_match_preds(file->filter, entry))) { - __trace_event_discard_commit(buffer, event); - return true; - } + if (likely(!(file->flags & (EVENT_FILE_FL_SOFT_DISABLED | + EVENT_FILE_FL_FILTERED | + EVENT_FILE_FL_PID_FILTER)))) + return false; + + if (file->flags & EVENT_FILE_FL_SOFT_DISABLED) + goto discard; + + if (file->flags & EVENT_FILE_FL_FILTERED && + !filter_match_preds(file->filter, entry)) + goto discard; + + if ((file->flags & EVENT_FILE_FL_PID_FILTER) && + trace_event_ignore_this_pid(file)) + goto discard; return false; + discard: + __trace_event_discard_commit(buffer, event); + return true; } /** From 4721b9ee049ac67785f2221f3bd56735187452dd Mon Sep 17 00:00:00 2001 From: Tim Harvey Date: Wed, 3 Nov 2021 09:54:15 -0700 Subject: [PATCH 050/192] mmc: sdhci-esdhc-imx: disable CMDQ support commit adab993c25191b839b415781bdc7173a77315240 upstream. On IMX SoC's which support CMDQ the following can occur during high a high cpu load: mmc2: cqhci: ============ CQHCI REGISTER DUMP =========== mmc2: cqhci: Caps: 0x0000310a | Version: 0x00000510 mmc2: cqhci: Config: 0x00001001 | Control: 0x00000000 mmc2: cqhci: Int stat: 0x00000000 | Int enab: 0x00000006 mmc2: cqhci: Int sig: 0x00000006 | Int Coal: 0x00000000 mmc2: cqhci: TDL base: 0x8003f000 | TDL up32: 0x00000000 mmc2: cqhci: Doorbell: 0xbf01dfff | TCN: 0x00000000 mmc2: cqhci: Dev queue: 0x00000000 | Dev Pend: 0x08000000 mmc2: cqhci: Task clr: 0x00000000 | SSC1: 0x00011000 mmc2: cqhci: SSC2: 0x00000001 | DCMD rsp: 0x00000800 mmc2: cqhci: RED mask: 0xfdf9a080 | TERRI: 0x00000000 mmc2: cqhci: Resp idx: 0x0000000d | Resp arg: 0x00000000 mmc2: sdhci: ============ SDHCI REGISTER DUMP =========== mmc2: sdhci: Sys addr: 0x7c722000 | Version: 0x00000002 mmc2: sdhci: Blk size: 0x00000200 | Blk cnt: 0x00000020 mmc2: sdhci: Argument: 0x00018000 | Trn mode: 0x00000023 mmc2: sdhci: Present: 0x01f88008 | Host ctl: 0x00000030 mmc2: sdhci: Power: 0x00000002 | Blk gap: 0x00000080 mmc2: sdhci: Wake-up: 0x00000008 | Clock: 0x0000000f mmc2: sdhci: Timeout: 0x0000008f | Int stat: 0x00000000 mmc2: sdhci: Int enab: 0x107f4000 | Sig enab: 0x107f4000 mmc2: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000502 mmc2: sdhci: Caps: 0x07eb0000 | Caps_1: 0x8000b407 mmc2: sdhci: Cmd: 0x00000d1a | Max curr: 0x00ffffff mmc2: sdhci: Resp[0]: 0x00000000 | Resp[1]: 0xffc003ff mmc2: sdhci: Resp[2]: 0x328f5903 | Resp[3]: 0x00d07f01 mmc2: sdhci: Host ctl2: 0x00000088 mmc2: sdhci: ADMA Err: 0x00000000 | ADMA Ptr: 0xfe179020 mmc2: sdhci-esdhc-imx: ========= ESDHC IMX DEBUG STATUS DUMP ==== mmc2: sdhci-esdhc-imx: cmd debug status: 0x2120 mmc2: sdhci-esdhc-imx: data debug status: 0x2200 mmc2: sdhci-esdhc-imx: trans debug status: 0x2300 mmc2: sdhci-esdhc-imx: dma debug status: 0x2400 mmc2: sdhci-esdhc-imx: adma debug status: 0x2510 mmc2: sdhci-esdhc-imx: fifo debug status: 0x2680 mmc2: sdhci-esdhc-imx: async fifo debug status: 0x2750 mmc2: sdhci: ============================================ For now, disable CMDQ support on the imx8qm/imx8qxp/imx8mm until the issue is found and resolved. Fixes: bb6e358169bf6 ("mmc: sdhci-esdhc-imx: add CMDQ support") Fixes: cde5e8e9ff146 ("mmc: sdhci-esdhc-imx: Add an new esdhc_soc_data for i.MX8MM") Cc: stable@vger.kernel.org Signed-off-by: Tim Harvey Reviewed-by: Haibo Chen Acked-by: Adrian Hunter Link: https://lore.kernel.org/r/20211103165415.2016-1-tharvey@gateworks.com Signed-off-by: Ulf Hansson Signed-off-by: Greg Kroah-Hartman --- drivers/mmc/host/sdhci-esdhc-imx.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index e658f017424207..60f19369de8455 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -300,7 +300,6 @@ static struct esdhc_soc_data usdhc_imx8qxp_data = { .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 | ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES - | ESDHC_FLAG_CQHCI | ESDHC_FLAG_STATE_LOST_IN_LPMODE | ESDHC_FLAG_CLK_RATE_LOST_IN_PM_RUNTIME, }; @@ -309,7 +308,6 @@ static struct esdhc_soc_data usdhc_imx8mm_data = { .flags = ESDHC_FLAG_USDHC | ESDHC_FLAG_STD_TUNING | ESDHC_FLAG_HAVE_CAP1 | ESDHC_FLAG_HS200 | ESDHC_FLAG_HS400 | ESDHC_FLAG_HS400_ES - | ESDHC_FLAG_CQHCI | ESDHC_FLAG_STATE_LOST_IN_LPMODE, }; From 4332ead299903138a32a39957239def81a774f9c Mon Sep 17 00:00:00 2001 From: Adrian Hunter Date: Mon, 15 Nov 2021 10:23:45 +0200 Subject: [PATCH 051/192] mmc: sdhci: Fix ADMA for PAGE_SIZE >= 64KiB commit 3d7c194b7c9ad414264935ad4f943a6ce285ebb1 upstream. The block layer forces a minimum segment size of PAGE_SIZE, so a segment can be too big for the ADMA table, if PAGE_SIZE >= 64KiB. Fix by writing multiple descriptors, noting that the ADMA table is sized for 4KiB chunks anyway, so it will be big enough. Reported-and-tested-by: Bough Chen Signed-off-by: Adrian Hunter Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20211115082345.802238-1-adrian.hunter@intel.com Signed-off-by: Ulf Hansson Signed-off-by: Greg Kroah-Hartman --- drivers/mmc/host/sdhci.c | 21 ++++++++++++++++++--- drivers/mmc/host/sdhci.h | 4 +++- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 2d80a04e11d878..7728f26adb19f9 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -771,7 +771,19 @@ static void sdhci_adma_table_pre(struct sdhci_host *host, len -= offset; } - BUG_ON(len > 65536); + /* + * The block layer forces a minimum segment size of PAGE_SIZE, + * so 'len' can be too big here if PAGE_SIZE >= 64KiB. Write + * multiple descriptors, noting that the ADMA table is sized + * for 4KiB chunks anyway, so it will be big enough. + */ + while (len > host->max_adma) { + int n = 32 * 1024; /* 32KiB*/ + + __sdhci_adma_write_desc(host, &desc, addr, n, ADMA2_TRAN_VALID); + addr += n; + len -= n; + } /* tran, valid */ if (len) @@ -3952,6 +3964,7 @@ struct sdhci_host *sdhci_alloc_host(struct device *dev, * descriptor for each segment, plus 1 for a nop end descriptor. */ host->adma_table_cnt = SDHCI_MAX_SEGS * 2 + 1; + host->max_adma = 65536; host->max_timeout_count = 0xE; @@ -4617,10 +4630,12 @@ int sdhci_setup_host(struct sdhci_host *host) * be larger than 64 KiB though. */ if (host->flags & SDHCI_USE_ADMA) { - if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC) + if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC) { + host->max_adma = 65532; /* 32-bit alignment */ mmc->max_seg_size = 65535; - else + } else { mmc->max_seg_size = 65536; + } } else { mmc->max_seg_size = mmc->max_req_size; } diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index e8d04e42a5afd6..6c689be3e48f6f 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h @@ -340,7 +340,8 @@ struct sdhci_adma2_64_desc { /* * Maximum segments assuming a 512KiB maximum requisition size and a minimum - * 4KiB page size. + * 4KiB page size. Note this also allows enough for multiple descriptors in + * case of PAGE_SIZE >= 64KiB. */ #define SDHCI_MAX_SEGS 128 @@ -543,6 +544,7 @@ struct sdhci_host { unsigned int blocks; /* remaining PIO blocks */ int sg_count; /* Mapped sg entries */ + int max_adma; /* Max. length in ADMA descriptor */ void *adma_table; /* ADMA descriptor table */ void *align_buffer; /* Bounce buffer */ From 9ed3dc3968adb9fcaaa17d30fa4a037d071405d4 Mon Sep 17 00:00:00 2001 From: Dylan Hung Date: Thu, 25 Nov 2021 10:44:32 +0800 Subject: [PATCH 052/192] mdio: aspeed: Fix "Link is Down" issue commit 9dbe33cf371bd70330858370bdbc35c7668f00c3 upstream. The issue happened randomly in runtime. The message "Link is Down" is popped but soon it recovered to "Link is Up". The "Link is Down" results from the incorrect read data for reading the PHY register via MDIO bus. The correct sequence for reading the data shall be: 1. fire the command 2. wait for command done (this step was missing) 3. wait for data idle 4. read data from data register Cc: stable@vger.kernel.org Fixes: f160e99462c6 ("net: phy: Add mdio-aspeed") Reviewed-by: Joel Stanley Signed-off-by: Dylan Hung Reviewed-by: Andrew Lunn Reviewed-by: Russell King (Oracle) Link: https://lore.kernel.org/r/20211125024432.15809-1-dylan_hung@aspeedtech.com Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- drivers/net/mdio/mdio-aspeed.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/net/mdio/mdio-aspeed.c b/drivers/net/mdio/mdio-aspeed.c index cad820568f7511..966c3b4ad59d14 100644 --- a/drivers/net/mdio/mdio-aspeed.c +++ b/drivers/net/mdio/mdio-aspeed.c @@ -61,6 +61,13 @@ static int aspeed_mdio_read(struct mii_bus *bus, int addr, int regnum) iowrite32(ctrl, ctx->base + ASPEED_MDIO_CTRL); + rc = readl_poll_timeout(ctx->base + ASPEED_MDIO_CTRL, ctrl, + !(ctrl & ASPEED_MDIO_CTRL_FIRE), + ASPEED_MDIO_INTERVAL_US, + ASPEED_MDIO_TIMEOUT_US); + if (rc < 0) + return rc; + rc = readl_poll_timeout(ctx->base + ASPEED_MDIO_DATA, data, data & ASPEED_MDIO_DATA_IDLE, ASPEED_MDIO_INTERVAL_US, From 7dd74096dd28c9c4d7b7d8e4aa16cb2109399de5 Mon Sep 17 00:00:00 2001 From: Pingfan Liu Date: Fri, 12 Nov 2021 13:22:14 +0800 Subject: [PATCH 053/192] arm64: mm: Fix VM_BUG_ON(mm != &init_mm) for trans_pgd commit d3eb70ead6474ec16f976fcacf10a7a890a95bd3 upstream. trans_pgd_create_copy() can hit "VM_BUG_ON(mm != &init_mm)" in the function pmd_populate_kernel(). This is the combined consequence of commit 5de59884ac0e ("arm64: trans_pgd: pass NULL instead of init_mm to *_populate functions"), which replaced &init_mm with NULL and commit 59511cfd08f3 ("arm64: mm: use XN table mapping attributes for user/kernel mappings"), which introduced the VM_BUG_ON. Since the former sounds reasonable, it is better to work on the later. From the perspective of trans_pgd, two groups of functions are considered in the later one: pmd_populate_kernel() mm == NULL should be fixed, else it hits VM_BUG_ON() p?d_populate() mm == NULL means PXN, that is OK, since trans_pgd only copies a linear map, no execution will happen on the map. So it is good enough to just relax VM_BUG_ON() to disregard mm == NULL Fixes: 59511cfd08f3 ("arm64: mm: use XN table mapping attributes for user/kernel mappings") Signed-off-by: Pingfan Liu Cc: # 5.13.x Cc: Ard Biesheuvel Cc: James Morse Cc: Matthias Brugger Reviewed-by: Catalin Marinas Reviewed-by: Pasha Tatashin Link: https://lore.kernel.org/r/20211112052214.9086-1-kernelfans@gmail.com Signed-off-by: Will Deacon Signed-off-by: Greg Kroah-Hartman --- arch/arm64/include/asm/pgalloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/include/asm/pgalloc.h b/arch/arm64/include/asm/pgalloc.h index 8433a2058eb15f..237224484d0f6f 100644 --- a/arch/arm64/include/asm/pgalloc.h +++ b/arch/arm64/include/asm/pgalloc.h @@ -76,7 +76,7 @@ static inline void __pmd_populate(pmd_t *pmdp, phys_addr_t ptep, static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmdp, pte_t *ptep) { - VM_BUG_ON(mm != &init_mm); + VM_BUG_ON(mm && mm != &init_mm); __pmd_populate(pmdp, __pa(ptep), PMD_TYPE_TABLE | PMD_TABLE_UXN); } From 671fbc2e8dea63846935fd1267e4f4c61440ac5d Mon Sep 17 00:00:00 2001 From: "Rafael J. Wysocki" Date: Wed, 17 Nov 2021 14:57:31 +0100 Subject: [PATCH 054/192] cpufreq: intel_pstate: Fix active mode offline/online EPP handling commit ed38eb49d101e829ae0f8c0a0d3bf5cb6bcbc6b2 upstream. After commit 4adcf2e5829f ("cpufreq: intel_pstate: Add ->offline and ->online callbacks") the EPP value set by the "performance" scaling algorithm in the active mode is not restored after an offline/online cycle which replaces it with the saved EPP value coming from user space. Address this issue by forcing intel_pstate_hwp_set() to set a new EPP value when it runs first time after online. Fixes: 4adcf2e5829f ("cpufreq: intel_pstate: Add ->offline and ->online callbacks") Link: https://lore.kernel.org/linux-pm/adc7132c8655bd4d1c8b6129578e931a14fe1db2.camel@linux.intel.com/ Reported-by: Srinivas Pandruvada Cc: 5.9+ # 5.9+ Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- drivers/cpufreq/intel_pstate.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index dafa631582bacf..3e56a4a1d1d3a1 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c @@ -999,6 +999,12 @@ static void intel_pstate_hwp_offline(struct cpudata *cpu) */ value &= ~GENMASK_ULL(31, 24); value |= HWP_ENERGY_PERF_PREFERENCE(cpu->epp_cached); + /* + * However, make sure that EPP will be set to "performance" when + * the CPU is brought back online again and the "performance" + * scaling algorithm is still in effect. + */ + cpu->epp_policy = CPUFREQ_POLICY_UNKNOWN; } /* From c4e3ff8b8b1d54f0c755670174c453b06e17114b Mon Sep 17 00:00:00 2001 From: Christophe Leroy Date: Thu, 18 Nov 2021 10:39:53 +0100 Subject: [PATCH 055/192] powerpc/32: Fix hardlockup on vmap stack overflow commit 5bb60ea611db1e04814426ed4bd1c95d1487678e upstream. Since the commit c118c7303ad5 ("powerpc/32: Fix vmap stack - Do not activate MMU before reading task struct") a vmap stack overflow results in a hard lockup. This is because emergency_ctx is still addressed with its virtual address allthough data MMU is not active anymore at that time. Fix it by using a physical address instead. Fixes: c118c7303ad5 ("powerpc/32: Fix vmap stack - Do not activate MMU before reading task struct") Cc: stable@vger.kernel.org # v5.10+ Signed-off-by: Christophe Leroy Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/ce30364fb7ccda489272af4a1612b6aa147e1d23.1637227521.git.christophe.leroy@csgroup.eu Signed-off-by: Greg Kroah-Hartman --- arch/powerpc/kernel/head_32.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/powerpc/kernel/head_32.h b/arch/powerpc/kernel/head_32.h index 6b1ec9e3541b90..349c4a820231bd 100644 --- a/arch/powerpc/kernel/head_32.h +++ b/arch/powerpc/kernel/head_32.h @@ -202,11 +202,11 @@ _ASM_NOKPROBE_SYMBOL(\name\()_virt) mfspr r1, SPRN_SPRG_THREAD lwz r1, TASK_CPU - THREAD(r1) slwi r1, r1, 3 - addis r1, r1, emergency_ctx@ha + addis r1, r1, emergency_ctx-PAGE_OFFSET@ha #else - lis r1, emergency_ctx@ha + lis r1, emergency_ctx-PAGE_OFFSET@ha #endif - lwz r1, emergency_ctx@l(r1) + lwz r1, emergency_ctx-PAGE_OFFSET@l(r1) addi r1, r1, THREAD_SIZE - INT_FRAME_SIZE EXCEPTION_PROLOG_2 0 vmap_stack_overflow prepare_transfer_to_handler From 55d2254fd9a0d528dd1de0ff1b9a1499efc9990b Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Wed, 17 Nov 2021 17:59:01 -0800 Subject: [PATCH 056/192] iomap: Fix inline extent handling in iomap_readpage commit d8af404ffce71448f29bbc19a05e3d095baf98eb upstream. Before commit 740499c78408 ("iomap: fix the iomap_readpage_actor return value for inline data"), when hitting an IOMAP_INLINE extent, iomap_readpage_actor would report having read the entire page. Since then, it only reports having read the inline data (iomap->length). This will force iomap_readpage into another iteration, and the filesystem will report an unaligned hole after the IOMAP_INLINE extent. But iomap_readpage_actor (now iomap_readpage_iter) isn't prepared to deal with unaligned extents, it will get things wrong on filesystems with a block size smaller than the page size, and we'll eventually run into the following warning in iomap_iter_advance: WARN_ON_ONCE(iter->processed > iomap_length(iter)); Fix that by changing iomap_readpage_iter to return 0 when hitting an inline extent; this will cause iomap_iter to stop immediately. To fix readahead as well, change iomap_readahead_iter to pass on iomap_readpage_iter return values less than or equal to zero. Fixes: 740499c78408 ("iomap: fix the iomap_readpage_actor return value for inline data") Cc: stable@vger.kernel.org # v5.15+ Signed-off-by: Andreas Gruenbacher Reviewed-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong Signed-off-by: Greg Kroah-Hartman --- fs/iomap/buffered-io.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c index 9cc5798423d121..97119ec3b8503a 100644 --- a/fs/iomap/buffered-io.c +++ b/fs/iomap/buffered-io.c @@ -256,8 +256,13 @@ static loff_t iomap_readpage_iter(const struct iomap_iter *iter, unsigned poff, plen; sector_t sector; - if (iomap->type == IOMAP_INLINE) - return min(iomap_read_inline_data(iter, page), length); + if (iomap->type == IOMAP_INLINE) { + loff_t ret = iomap_read_inline_data(iter, page); + + if (ret < 0) + return ret; + return 0; + } /* zero post-eof blocks as the page may be mapped */ iop = iomap_page_create(iter->inode, page); @@ -370,6 +375,8 @@ static loff_t iomap_readahead_iter(const struct iomap_iter *iter, ctx->cur_page_in_bio = false; } ret = iomap_readpage_iter(iter, ctx, done); + if (ret <= 0) + return ret; } return done; From a0a7875c0305fe103381ad919a85aaf2cc553a7d Mon Sep 17 00:00:00 2001 From: Benjamin Coddington Date: Tue, 16 Nov 2021 10:48:13 -0500 Subject: [PATCH 057/192] NFSv42: Fix pagecache invalidation after COPY/CLONE commit 3f015d89a47cd8855cd92f71fff770095bd885a1 upstream. The mechanism in use to allow the client to see the results of COPY/CLONE is to drop those pages from the pagecache. This forces the client to read those pages once more from the server. However, truncate_pagecache_range() zeros out partial pages instead of dropping them. Let us instead use invalidate_inode_pages2_range() with full-page offsets to ensure the client properly sees the results of COPY/CLONE operations. Cc: # v4.7+ Fixes: 2e72448b07dc ("NFS: Add COPY nfs operation") Signed-off-by: Benjamin Coddington Signed-off-by: Trond Myklebust Signed-off-by: Greg Kroah-Hartman --- fs/nfs/nfs42proc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/nfs/nfs42proc.c b/fs/nfs/nfs42proc.c index a24349512ffe93..9865b5c37d8893 100644 --- a/fs/nfs/nfs42proc.c +++ b/fs/nfs/nfs42proc.c @@ -285,7 +285,9 @@ static void nfs42_copy_dest_done(struct inode *inode, loff_t pos, loff_t len) loff_t newsize = pos + len; loff_t end = newsize - 1; - truncate_pagecache_range(inode, pos, end); + WARN_ON_ONCE(invalidate_inode_pages2_range(inode->i_mapping, + pos >> PAGE_SHIFT, end >> PAGE_SHIFT)); + spin_lock(&inode->i_lock); if (newsize > i_size_read(inode)) i_size_write(inode, newsize); From c37f8369fa0387d5edd708467b3a99aa06127fa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Beh=C3=BAn?= Date: Tue, 5 Oct 2021 20:09:47 +0200 Subject: [PATCH 058/192] PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 67cb2a4c93499c2c22704998fd1fd2bc35194d8e upstream. Avoid code repetition in advk_pcie_rd_conf() by handling errors with goto jump, as is customary in kernel. Link: https://lore.kernel.org/r/20211005180952.6812-9-kabel@kernel.org Fixes: 43f5c77bcbd2 ("PCI: aardvark: Fix reporting CRS value") Signed-off-by: Marek Behún Signed-off-by: Lorenzo Pieralisi Signed-off-by: Greg Kroah-Hartman --- drivers/pci/controller/pci-aardvark.c | 48 +++++++++++---------------- 1 file changed, 20 insertions(+), 28 deletions(-) diff --git a/drivers/pci/controller/pci-aardvark.c b/drivers/pci/controller/pci-aardvark.c index b051d127f0aff8..6eea7d5aac26d2 100644 --- a/drivers/pci/controller/pci-aardvark.c +++ b/drivers/pci/controller/pci-aardvark.c @@ -1090,18 +1090,8 @@ static int advk_pcie_rd_conf(struct pci_bus *bus, u32 devfn, (le16_to_cpu(pcie->bridge.pcie_conf.rootctl) & PCI_EXP_RTCTL_CRSSVE); - if (advk_pcie_pio_is_running(pcie)) { - /* - * If it is possible return Completion Retry Status so caller - * tries to issue the request again instead of failing. - */ - if (allow_crs) { - *val = CFG_RD_CRS_VAL; - return PCIBIOS_SUCCESSFUL; - } - *val = 0xffffffff; - return PCIBIOS_SET_FAILED; - } + if (advk_pcie_pio_is_running(pcie)) + goto try_crs; /* Program the control register */ reg = advk_readl(pcie, PIO_CTRL); @@ -1125,25 +1115,13 @@ static int advk_pcie_rd_conf(struct pci_bus *bus, u32 devfn, advk_writel(pcie, 1, PIO_START); ret = advk_pcie_wait_pio(pcie); - if (ret < 0) { - /* - * If it is possible return Completion Retry Status so caller - * tries to issue the request again instead of failing. - */ - if (allow_crs) { - *val = CFG_RD_CRS_VAL; - return PCIBIOS_SUCCESSFUL; - } - *val = 0xffffffff; - return PCIBIOS_SET_FAILED; - } + if (ret < 0) + goto try_crs; /* Check PIO status and get the read result */ ret = advk_pcie_check_pio_status(pcie, allow_crs, val); - if (ret < 0) { - *val = 0xffffffff; - return PCIBIOS_SET_FAILED; - } + if (ret < 0) + goto fail; if (size == 1) *val = (*val >> (8 * (where & 3))) & 0xff; @@ -1151,6 +1129,20 @@ static int advk_pcie_rd_conf(struct pci_bus *bus, u32 devfn, *val = (*val >> (8 * (where & 3))) & 0xffff; return PCIBIOS_SUCCESSFUL; + +try_crs: + /* + * If it is possible, return Completion Retry Status so that caller + * tries to issue the request again instead of failing. + */ + if (allow_crs) { + *val = CFG_RD_CRS_VAL; + return PCIBIOS_SUCCESSFUL; + } + +fail: + *val = 0xffffffff; + return PCIBIOS_SET_FAILED; } static int advk_pcie_wr_conf(struct pci_bus *bus, u32 devfn, From 70b131ff35bd90e043d4b07d089059f1d8eb315e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pali=20Roh=C3=A1r?= Date: Tue, 5 Oct 2021 20:09:48 +0200 Subject: [PATCH 059/192] PCI: aardvark: Implement re-issuing config requests on CRS response MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 223dec14a05337a4155f1deed46d2becce4d00fd upstream. Commit 43f5c77bcbd2 ("PCI: aardvark: Fix reporting CRS value") fixed handling of CRS response and when CRSSVE flag was not enabled it marked CRS response as failed transaction (due to simplicity). But pci-aardvark.c driver is already waiting up to the PIO_RETRY_CNT count for PIO config response and so we can with a small change implement re-issuing of config requests as described in PCIe base specification. This change implements re-issuing of config requests when response is CRS. Set upper bound of wait cycles to around PIO_RETRY_CNT, afterwards the transaction is marked as failed and an all-ones value is returned as before. We do this by returning appropriate error codes from function advk_pcie_check_pio_status(). On CRS we return -EAGAIN and caller then reissues transaction. Link: https://lore.kernel.org/r/20211005180952.6812-10-kabel@kernel.org Signed-off-by: Pali Rohár Signed-off-by: Marek Behún Signed-off-by: Lorenzo Pieralisi Reviewed-by: Marek Behún Signed-off-by: Greg Kroah-Hartman --- drivers/pci/controller/pci-aardvark.c | 67 +++++++++++++++++---------- 1 file changed, 43 insertions(+), 24 deletions(-) diff --git a/drivers/pci/controller/pci-aardvark.c b/drivers/pci/controller/pci-aardvark.c index 6eea7d5aac26d2..ff243be8410c9c 100644 --- a/drivers/pci/controller/pci-aardvark.c +++ b/drivers/pci/controller/pci-aardvark.c @@ -692,6 +692,7 @@ static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u3 u32 reg; unsigned int status; char *strcomp_status, *str_posted; + int ret; reg = advk_readl(pcie, PIO_STAT); status = (reg & PIO_COMPLETION_STATUS_MASK) >> @@ -716,6 +717,7 @@ static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u3 case PIO_COMPLETION_STATUS_OK: if (reg & PIO_ERR_STATUS) { strcomp_status = "COMP_ERR"; + ret = -EFAULT; break; } /* Get the read result */ @@ -723,9 +725,11 @@ static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u3 *val = advk_readl(pcie, PIO_RD_DATA); /* No error */ strcomp_status = NULL; + ret = 0; break; case PIO_COMPLETION_STATUS_UR: strcomp_status = "UR"; + ret = -EOPNOTSUPP; break; case PIO_COMPLETION_STATUS_CRS: if (allow_crs && val) { @@ -743,6 +747,7 @@ static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u3 */ *val = CFG_RD_CRS_VAL; strcomp_status = NULL; + ret = 0; break; } /* PCIe r4.0, sec 2.3.2, says: @@ -758,21 +763,24 @@ static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u3 * Request and taking appropriate action, e.g., complete the * Request to the host as a failed transaction. * - * To simplify implementation do not re-issue the Configuration - * Request and complete the Request as a failed transaction. + * So return -EAGAIN and caller (pci-aardvark.c driver) will + * re-issue request again up to the PIO_RETRY_CNT retries. */ strcomp_status = "CRS"; + ret = -EAGAIN; break; case PIO_COMPLETION_STATUS_CA: strcomp_status = "CA"; + ret = -ECANCELED; break; default: strcomp_status = "Unknown"; + ret = -EINVAL; break; } if (!strcomp_status) - return 0; + return ret; if (reg & PIO_NON_POSTED_REQ) str_posted = "Non-posted"; @@ -782,7 +790,7 @@ static int advk_pcie_check_pio_status(struct advk_pcie *pcie, bool allow_crs, u3 dev_dbg(dev, "%s PIO Response Status: %s, %#x @ %#x\n", str_posted, strcomp_status, reg, advk_readl(pcie, PIO_ADDR_LS)); - return -EFAULT; + return ret; } static int advk_pcie_wait_pio(struct advk_pcie *pcie) @@ -790,13 +798,13 @@ static int advk_pcie_wait_pio(struct advk_pcie *pcie) struct device *dev = &pcie->pdev->dev; int i; - for (i = 0; i < PIO_RETRY_CNT; i++) { + for (i = 1; i <= PIO_RETRY_CNT; i++) { u32 start, isr; start = advk_readl(pcie, PIO_START); isr = advk_readl(pcie, PIO_ISR); if (!start && isr) - return 0; + return i; udelay(PIO_RETRY_DELAY); } @@ -1068,6 +1076,7 @@ static int advk_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, int size, u32 *val) { struct advk_pcie *pcie = bus->sysdata; + int retry_count; bool allow_crs; u32 reg; int ret; @@ -1110,16 +1119,22 @@ static int advk_pcie_rd_conf(struct pci_bus *bus, u32 devfn, /* Program the data strobe */ advk_writel(pcie, 0xf, PIO_WR_DATA_STRB); - /* Clear PIO DONE ISR and start the transfer */ - advk_writel(pcie, 1, PIO_ISR); - advk_writel(pcie, 1, PIO_START); + retry_count = 0; + do { + /* Clear PIO DONE ISR and start the transfer */ + advk_writel(pcie, 1, PIO_ISR); + advk_writel(pcie, 1, PIO_START); - ret = advk_pcie_wait_pio(pcie); - if (ret < 0) - goto try_crs; + ret = advk_pcie_wait_pio(pcie); + if (ret < 0) + goto try_crs; + + retry_count += ret; + + /* Check PIO status and get the read result */ + ret = advk_pcie_check_pio_status(pcie, allow_crs, val); + } while (ret == -EAGAIN && retry_count < PIO_RETRY_CNT); - /* Check PIO status and get the read result */ - ret = advk_pcie_check_pio_status(pcie, allow_crs, val); if (ret < 0) goto fail; @@ -1151,6 +1166,7 @@ static int advk_pcie_wr_conf(struct pci_bus *bus, u32 devfn, struct advk_pcie *pcie = bus->sysdata; u32 reg; u32 data_strobe = 0x0; + int retry_count; int offset; int ret; @@ -1192,19 +1208,22 @@ static int advk_pcie_wr_conf(struct pci_bus *bus, u32 devfn, /* Program the data strobe */ advk_writel(pcie, data_strobe, PIO_WR_DATA_STRB); - /* Clear PIO DONE ISR and start the transfer */ - advk_writel(pcie, 1, PIO_ISR); - advk_writel(pcie, 1, PIO_START); + retry_count = 0; + do { + /* Clear PIO DONE ISR and start the transfer */ + advk_writel(pcie, 1, PIO_ISR); + advk_writel(pcie, 1, PIO_START); - ret = advk_pcie_wait_pio(pcie); - if (ret < 0) - return PCIBIOS_SET_FAILED; + ret = advk_pcie_wait_pio(pcie); + if (ret < 0) + return PCIBIOS_SET_FAILED; - ret = advk_pcie_check_pio_status(pcie, false, NULL); - if (ret < 0) - return PCIBIOS_SET_FAILED; + retry_count += ret; - return PCIBIOS_SUCCESSFUL; + ret = advk_pcie_check_pio_status(pcie, false, NULL); + } while (ret == -EAGAIN && retry_count < PIO_RETRY_CNT); + + return ret < 0 ? PCIBIOS_SET_FAILED : PCIBIOS_SUCCESSFUL; } static struct pci_ops advk_pcie_ops = { From cc890665eaa12a5cc7f772023eb53955a834f127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pali=20Roh=C3=A1r?= Date: Tue, 5 Oct 2021 20:09:49 +0200 Subject: [PATCH 060/192] PCI: aardvark: Simplify initialization of rootcap on virtual bridge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 454c53271fc11f3aa5e44e41fd99ca181bd32c62 upstream. PCIe config space can be initialized also before pci_bridge_emul_init() call, so move rootcap initialization after PCI config space initialization. This simplifies the function a little since it removes one if (ret < 0) check. Link: https://lore.kernel.org/r/20211005180952.6812-11-kabel@kernel.org Signed-off-by: Pali Rohár Signed-off-by: Marek Behún Signed-off-by: Lorenzo Pieralisi Reviewed-by: Marek Behún Signed-off-by: Marek Behún Signed-off-by: Greg Kroah-Hartman --- drivers/pci/controller/pci-aardvark.c | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/drivers/pci/controller/pci-aardvark.c b/drivers/pci/controller/pci-aardvark.c index ff243be8410c9c..52caa6f86f5813 100644 --- a/drivers/pci/controller/pci-aardvark.c +++ b/drivers/pci/controller/pci-aardvark.c @@ -992,7 +992,6 @@ static struct pci_bridge_emul_ops advk_pci_bridge_emul_ops = { static int advk_sw_pci_bridge_init(struct advk_pcie *pcie) { struct pci_bridge_emul *bridge = &pcie->bridge; - int ret; bridge->conf.vendor = cpu_to_le16(advk_readl(pcie, PCIE_CORE_DEV_ID_REG) & 0xffff); @@ -1012,19 +1011,14 @@ static int advk_sw_pci_bridge_init(struct advk_pcie *pcie) /* Support interrupt A for MSI feature */ bridge->conf.intpin = PCIE_CORE_INT_A_ASSERT_ENABLE; + /* Indicates supports for Completion Retry Status */ + bridge->pcie_conf.rootcap = cpu_to_le16(PCI_EXP_RTCAP_CRSVIS); + bridge->has_pcie = true; bridge->data = pcie; bridge->ops = &advk_pci_bridge_emul_ops; - /* PCIe config space can be initialized after pci_bridge_emul_init() */ - ret = pci_bridge_emul_init(bridge, 0); - if (ret < 0) - return ret; - - /* Indicates supports for Completion Retry Status */ - bridge->pcie_conf.rootcap = cpu_to_le16(PCI_EXP_RTCAP_CRSVIS); - - return 0; + return pci_bridge_emul_init(bridge, 0); } static bool advk_pcie_valid_device(struct advk_pcie *pcie, struct pci_bus *bus, From edd145cd09029aa1ecec22eea079f4c8659bb8ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pali=20Roh=C3=A1r?= Date: Tue, 5 Oct 2021 20:09:50 +0200 Subject: [PATCH 061/192] PCI: aardvark: Fix link training MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit f76b36d40beee0a13aa8f6aa011df0d7cbbb8a7f upstream. Fix multiple link training issues in aardvark driver. The main reason of these issues was misunderstanding of what certain registers do, since their names and comments were misleading: before commit 96be36dbffac ("PCI: aardvark: Replace custom macros by standard linux/pci_regs.h macros"), the pci-aardvark.c driver used custom macros for accessing standard PCIe Root Bridge registers, and misleading comments did not help to understand what the code was really doing. After doing more tests and experiments I've come to the conclusion that the SPEED_GEN register in aardvark sets the PCIe revision / generation compliance and forces maximal link speed. Both GEN3 and GEN2 values set the read-only PCI_EXP_FLAGS_VERS bits (PCIe capabilities version of Root Bridge) to value 2, while GEN1 value sets PCI_EXP_FLAGS_VERS to 1, which matches with PCI Express specifications revisions 3, 2 and 1 respectively. Changing SPEED_GEN also sets the read-only bits PCI_EXP_LNKCAP_SLS and PCI_EXP_LNKCAP2_SLS to corresponding speed. (Note that PCI Express rev 1 specification does not define PCI_EXP_LNKCAP2 and PCI_EXP_LNKCTL2 registers and when SPEED_GEN is set to GEN1 (which also sets PCI_EXP_FLAGS_VERS set to 1), lspci cannot access PCI_EXP_LNKCAP2 and PCI_EXP_LNKCTL2 registers.) Changing PCIe link speed can be done via PCI_EXP_LNKCTL2_TLS bits of PCI_EXP_LNKCTL2 register. Armada 3700 Functional Specifications says that the default value of PCI_EXP_LNKCTL2_TLS is based on SPEED_GEN value, but tests showed that the default value is always 8.0 GT/s, independently of speed set by SPEED_GEN. So after setting SPEED_GEN, we must also set value in PCI_EXP_LNKCTL2 register via PCI_EXP_LNKCTL2_TLS bits. Triggering PCI_EXP_LNKCTL_RL bit immediately after setting LINK_TRAINING_EN bit actually doesn't do anything. Tests have shown that a delay is needed after enabling LINK_TRAINING_EN bit. As triggering PCI_EXP_LNKCTL_RL currently does nothing, remove it. Commit 43fc679ced18 ("PCI: aardvark: Improve link training") introduced code which sets SPEED_GEN register based on negotiated link speed from PCI_EXP_LNKSTA_CLS bits of PCI_EXP_LNKSTA register. This code was added to fix detection of Compex WLE900VX (Atheros QCA9880) WiFi GEN1 PCIe cards, as otherwise these cards were "invisible" on PCIe bus (probably because they crashed). But apparently more people reported the same issues with these cards also with other PCIe controllers [1] and I was able to reproduce this issue also with other "noname" WiFi cards based on Atheros QCA9890 chip (with the same PCI vendor/device ids as Atheros QCA9880). So this is not an issue in aardvark but rather an issue in Atheros QCA98xx chips. Also, this issue only exists if the kernel is compiled with PCIe ASPM support, and a generic workaround for this is to change PCIe Bridge to 2.5 GT/s link speed via PCI_EXP_LNKCTL2_TLS_2_5GT bits in PCI_EXP_LNKCTL2 register [2], before triggering PCI_EXP_LNKCTL_RL bit. This workaround also works when SPEED_GEN is set to value GEN2 (5 GT/s). So remove this hack completely in the aardvark driver and always set SPEED_GEN to value from 'max-link-speed' DT property. Fix for Atheros QCA98xx chips is handled separately by patch [2]. These two things (code for triggering PCI_EXP_LNKCTL_RL bit and changing SPEED_GEN value) also explain why commit 6964494582f5 ("PCI: aardvark: Train link immediately after enabling training") somehow fixed detection of those problematic Compex cards with Atheros chips: if triggering link retraining (via PCI_EXP_LNKCTL_RL bit) was done immediately after enabling link training (via LINK_TRAINING_EN), it did nothing. If there was a specific delay, aardvark HW already initialized PCIe link and therefore triggering link retraining caused the above issue. Compex cards triggered link down event and disappeared from the PCIe bus. Commit f4c7d053d7f7 ("PCI: aardvark: Wait for endpoint to be ready before training link") added 100ms sleep before calling 'Start link training' command and explained that it is a requirement of PCI Express specification. But the code after this 100ms sleep was not doing 'Start link training', rather it triggered PCI_EXP_LNKCTL_RL bit via PCIe Root Bridge to put link into Recovery state. The required delay after fundamental reset is already done in function advk_pcie_wait_for_link() which also checks whether PCIe link is up. So after removing the code which triggers PCI_EXP_LNKCTL_RL bit on PCIe Root Bridge, there is no need to wait 100ms again. Remove the extra msleep() call and update comment about the delay required by the PCI Express specification. According to Marvell Armada 3700 Functional Specifications, Link training should be enabled via aardvark register LINK_TRAINING_EN after selecting PCIe generation and x1 lane. There is no need to disable it prior resetting card via PERST# signal. This disabling code was introduced in commit 5169a9851daa ("PCI: aardvark: Issue PERST via GPIO") as a workaround for some Atheros cards. It turns out that this also is Atheros specific issue and affects any PCIe controller, not only aardvark. Moreover this Atheros issue was triggered by juggling with PCI_EXP_LNKCTL_RL, LINK_TRAINING_EN and SPEED_GEN bits interleaved with sleeps. Now, after removing triggering PCI_EXP_LNKCTL_RL, there is no need to explicitly disable LINK_TRAINING_EN bit. So remove this code too. The problematic Compex cards described in previous git commits are correctly detected in advk_pcie_train_link() function even after applying all these changes. Note that with this patch, and also prior this patch, some NVMe disks which support PCIe GEN3 with 8 GT/s speed are negotiated only at the lowest link speed 2.5 GT/s, independently of SPEED_GEN value. After manually triggering PCI_EXP_LNKCTL_RL bit (e.g. from userspace via setpci), these NVMe disks change link speed to 5 GT/s when SPEED_GEN was configured to GEN2. This issue first needs to be properly investigated. I will send a fix in the future. On the other hand, some other GEN2 PCIe cards with 5 GT/s speed are autonomously by HW autonegotiated at full 5 GT/s speed without need of any software interaction. Armada 3700 Functional Specifications describes the following steps for link training: set SPEED_GEN to GEN2, enable LINK_TRAINING_EN, poll until link training is complete, trigger PCI_EXP_LNKCTL_RL, poll until signal rate is 5 GT/s, poll until link training is complete, enable ASPM L0s. The requirement for triggering PCI_EXP_LNKCTL_RL can be explained by the need to achieve 5 GT/s speed (as changing link speed is done by throw to recovery state entered by PCI_EXP_LNKCTL_RL) or maybe as a part of enabling ASPM L0s (but in this case ASPM L0s should have been enabled prior PCI_EXP_LNKCTL_RL). It is unknown why the original pci-aardvark.c driver was triggering PCI_EXP_LNKCTL_RL bit before waiting for the link to be up. This does not align with neither PCIe base specifications nor with Armada 3700 Functional Specification. (Note that in older versions of aardvark, this bit was called incorrectly PCIE_CORE_LINK_TRAINING, so this may be the reason.) It is also unknown why Armada 3700 Functional Specification says that it is needed to trigger PCI_EXP_LNKCTL_RL for GEN2 mode, as according to PCIe base specification 5 GT/s speed negotiation is supposed to be entirely autonomous, even if initial speed is 2.5 GT/s. [1] - https://lore.kernel.org/linux-pci/87h7l8axqp.fsf@toke.dk/ [2] - https://lore.kernel.org/linux-pci/20210326124326.21163-1-pali@kernel.org/ Link: https://lore.kernel.org/r/20211005180952.6812-12-kabel@kernel.org Signed-off-by: Pali Rohár Signed-off-by: Marek Behún Signed-off-by: Lorenzo Pieralisi Reviewed-by: Marek Behún Signed-off-by: Marek Behún Signed-off-by: Greg Kroah-Hartman --- drivers/pci/controller/pci-aardvark.c | 117 ++++++++------------------ 1 file changed, 34 insertions(+), 83 deletions(-) diff --git a/drivers/pci/controller/pci-aardvark.c b/drivers/pci/controller/pci-aardvark.c index 52caa6f86f5813..c5300d49807a23 100644 --- a/drivers/pci/controller/pci-aardvark.c +++ b/drivers/pci/controller/pci-aardvark.c @@ -299,11 +299,6 @@ static inline u32 advk_readl(struct advk_pcie *pcie, u64 reg) return readl(pcie->base + reg); } -static inline u16 advk_read16(struct advk_pcie *pcie, u64 reg) -{ - return advk_readl(pcie, (reg & ~0x3)) >> ((reg & 0x3) * 8); -} - static u8 advk_pcie_ltssm_state(struct advk_pcie *pcie) { u32 val; @@ -377,23 +372,9 @@ static void advk_pcie_wait_for_retrain(struct advk_pcie *pcie) static void advk_pcie_issue_perst(struct advk_pcie *pcie) { - u32 reg; - if (!pcie->reset_gpio) return; - /* - * As required by PCI Express spec (PCI Express Base Specification, REV. - * 4.0 PCI Express, February 19 2014, 6.6.1 Conventional Reset) a delay - * for at least 100ms after de-asserting PERST# signal is needed before - * link training is enabled. So ensure that link training is disabled - * prior de-asserting PERST# signal to fulfill that PCI Express spec - * requirement. - */ - reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); - reg &= ~LINK_TRAINING_EN; - advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); - /* 10ms delay is needed for some cards */ dev_info(&pcie->pdev->dev, "issuing PERST via reset GPIO for 10ms\n"); gpiod_set_value_cansleep(pcie->reset_gpio, 1); @@ -401,53 +382,46 @@ static void advk_pcie_issue_perst(struct advk_pcie *pcie) gpiod_set_value_cansleep(pcie->reset_gpio, 0); } -static int advk_pcie_train_at_gen(struct advk_pcie *pcie, int gen) +static void advk_pcie_train_link(struct advk_pcie *pcie) { - int ret, neg_gen; + struct device *dev = &pcie->pdev->dev; u32 reg; + int ret; - /* Setup link speed */ + /* + * Setup PCIe rev / gen compliance based on device tree property + * 'max-link-speed' which also forces maximal link speed. + */ reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); reg &= ~PCIE_GEN_SEL_MSK; - if (gen == 3) + if (pcie->link_gen == 3) reg |= SPEED_GEN_3; - else if (gen == 2) + else if (pcie->link_gen == 2) reg |= SPEED_GEN_2; else reg |= SPEED_GEN_1; advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); /* - * Enable link training. This is not needed in every call to this - * function, just once suffices, but it does not break anything either. + * Set maximal link speed value also into PCIe Link Control 2 register. + * Armada 3700 Functional Specification says that default value is based + * on SPEED_GEN but tests showed that default value is always 8.0 GT/s. */ + reg = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKCTL2); + reg &= ~PCI_EXP_LNKCTL2_TLS; + if (pcie->link_gen == 3) + reg |= PCI_EXP_LNKCTL2_TLS_8_0GT; + else if (pcie->link_gen == 2) + reg |= PCI_EXP_LNKCTL2_TLS_5_0GT; + else + reg |= PCI_EXP_LNKCTL2_TLS_2_5GT; + advk_writel(pcie, reg, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKCTL2); + + /* Enable link training after selecting PCIe generation */ reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG); reg |= LINK_TRAINING_EN; advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG); - /* - * Start link training immediately after enabling it. - * This solves problems for some buggy cards. - */ - reg = advk_readl(pcie, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKCTL); - reg |= PCI_EXP_LNKCTL_RL; - advk_writel(pcie, reg, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKCTL); - - ret = advk_pcie_wait_for_link(pcie); - if (ret) - return ret; - - reg = advk_read16(pcie, PCIE_CORE_PCIEXP_CAP + PCI_EXP_LNKSTA); - neg_gen = reg & PCI_EXP_LNKSTA_CLS; - - return neg_gen; -} - -static void advk_pcie_train_link(struct advk_pcie *pcie) -{ - struct device *dev = &pcie->pdev->dev; - int neg_gen = -1, gen; - /* * Reset PCIe card via PERST# signal. Some cards are not detected * during link training when they are in some non-initial state. @@ -458,41 +432,18 @@ static void advk_pcie_train_link(struct advk_pcie *pcie) * PERST# signal could have been asserted by pinctrl subsystem before * probe() callback has been called or issued explicitly by reset gpio * function advk_pcie_issue_perst(), making the endpoint going into - * fundamental reset. As required by PCI Express spec a delay for at - * least 100ms after such a reset before link training is needed. - */ - msleep(PCI_PM_D3COLD_WAIT); - - /* - * Try link training at link gen specified by device tree property - * 'max-link-speed'. If this fails, iteratively train at lower gen. - */ - for (gen = pcie->link_gen; gen > 0; --gen) { - neg_gen = advk_pcie_train_at_gen(pcie, gen); - if (neg_gen > 0) - break; - } - - if (neg_gen < 0) - goto err; - - /* - * After successful training if negotiated gen is lower than requested, - * train again on negotiated gen. This solves some stability issues for - * some buggy gen1 cards. + * fundamental reset. As required by PCI Express spec (PCI Express + * Base Specification, REV. 4.0 PCI Express, February 19 2014, 6.6.1 + * Conventional Reset) a delay for at least 100ms after such a reset + * before sending a Configuration Request to the device is needed. + * So wait until PCIe link is up. Function advk_pcie_wait_for_link() + * waits for link at least 900ms. */ - if (neg_gen < gen) { - gen = neg_gen; - neg_gen = advk_pcie_train_at_gen(pcie, gen); - } - - if (neg_gen == gen) { - dev_info(dev, "link up at gen %i\n", gen); - return; - } - -err: - dev_err(dev, "link never came up\n"); + ret = advk_pcie_wait_for_link(pcie); + if (ret < 0) + dev_err(dev, "link never came up\n"); + else + dev_info(dev, "link up\n"); } /* From de6231fc7f2b8825e328953e2c7729d76f4b62bd Mon Sep 17 00:00:00 2001 From: Roman Li Date: Wed, 17 Nov 2021 10:05:36 -0500 Subject: [PATCH 062/192] drm/amd/display: Fix OLED brightness control on eDP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit dab60582685aabdae2d4ff7ce716456bd0dc7a0f upstream. [Why] After commit ("drm/amdgpu/display: add support for multiple backlights") number of eDPs is defined while registering backlight device. However the panel's extended caps get updated once before register call. That leads to regression with extended caps like oled brightness control. [How] Update connector ext caps after register_backlight_device Fixes: 7fd13baeb7a3a4 ("drm/amdgpu/display: add support for multiple backlights") Link: https://www.reddit.com/r/AMDLaptops/comments/qst0fm/after_updating_to_linux_515_my_brightness/ Signed-off-by: Roman Li Tested-by: Samuel Čavoj Acked-by: Alex Deucher Reviewed-by: Jasdeep Dhillon Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c index 084491afe54050..d15967239474ec 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -3846,6 +3846,9 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev) } else if (dc_link_detect(link, DETECT_REASON_BOOT)) { amdgpu_dm_update_connector_after_detect(aconnector); register_backlight_device(dm, link); + + if (dm->num_of_edps) + update_connector_ext_caps(aconnector); if (amdgpu_dc_feature_mask & DC_PSR_MASK) amdgpu_dm_set_psr_caps(link); } From 7b3a34f08d11e7f05cd00b8e09adaa15192f0ad1 Mon Sep 17 00:00:00 2001 From: David Hildenbrand Date: Fri, 19 Nov 2021 16:43:58 -0800 Subject: [PATCH 063/192] proc/vmcore: fix clearing user buffer by properly using clear_user() commit c1e63117711977cc4295b2ce73de29dd17066c82 upstream. To clear a user buffer we cannot simply use memset, we have to use clear_user(). With a virtio-mem device that registers a vmcore_cb and has some logically unplugged memory inside an added Linux memory block, I can easily trigger a BUG by copying the vmcore via "cp": systemd[1]: Starting Kdump Vmcore Save Service... kdump[420]: Kdump is using the default log level(3). kdump[453]: saving to /sysroot/var/crash/127.0.0.1-2021-11-11-14:59:22/ kdump[458]: saving vmcore-dmesg.txt to /sysroot/var/crash/127.0.0.1-2021-11-11-14:59:22/ kdump[465]: saving vmcore-dmesg.txt complete kdump[467]: saving vmcore BUG: unable to handle page fault for address: 00007f2374e01000 #PF: supervisor write access in kernel mode #PF: error_code(0x0003) - permissions violation PGD 7a523067 P4D 7a523067 PUD 7a528067 PMD 7a525067 PTE 800000007048f867 Oops: 0003 [#1] PREEMPT SMP NOPTI CPU: 0 PID: 468 Comm: cp Not tainted 5.15.0+ #6 Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.14.0-27-g64f37cc530f1-prebuilt.qemu.org 04/01/2014 RIP: 0010:read_from_oldmem.part.0.cold+0x1d/0x86 Code: ff ff ff e8 05 ff fe ff e9 b9 e9 7f ff 48 89 de 48 c7 c7 38 3b 60 82 e8 f1 fe fe ff 83 fd 08 72 3c 49 8d 7d 08 4c 89 e9 89 e8 <49> c7 45 00 00 00 00 00 49 c7 44 05 f8 00 00 00 00 48 83 e7 f81 RSP: 0018:ffffc9000073be08 EFLAGS: 00010212 RAX: 0000000000001000 RBX: 00000000002fd000 RCX: 00007f2374e01000 RDX: 0000000000000001 RSI: 00000000ffffdfff RDI: 00007f2374e01008 RBP: 0000000000001000 R08: 0000000000000000 R09: ffffc9000073bc50 R10: ffffc9000073bc48 R11: ffffffff829461a8 R12: 000000000000f000 R13: 00007f2374e01000 R14: 0000000000000000 R15: ffff88807bd421e8 FS: 00007f2374e12140(0000) GS:ffff88807f000000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 00007f2374e01000 CR3: 000000007a4aa000 CR4: 0000000000350eb0 Call Trace: read_vmcore+0x236/0x2c0 proc_reg_read+0x55/0xa0 vfs_read+0x95/0x190 ksys_read+0x4f/0xc0 do_syscall_64+0x3b/0x90 entry_SYSCALL_64_after_hwframe+0x44/0xae Some x86-64 CPUs have a CPU feature called "Supervisor Mode Access Prevention (SMAP)", which is used to detect wrong access from the kernel to user buffers like this: SMAP triggers a permissions violation on wrong access. In the x86-64 variant of clear_user(), SMAP is properly handled via clac()+stac(). To fix, properly use clear_user() when we're dealing with a user buffer. Link: https://lkml.kernel.org/r/20211112092750.6921-1-david@redhat.com Fixes: 997c136f518c ("fs/proc/vmcore.c: add hook to read_from_oldmem() to check for non-ram pages") Signed-off-by: David Hildenbrand Acked-by: Baoquan He Cc: Dave Young Cc: Baoquan He Cc: Vivek Goyal Cc: Philipp Rudo Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- fs/proc/vmcore.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c index 9a15334da20864..e5730986758fa0 100644 --- a/fs/proc/vmcore.c +++ b/fs/proc/vmcore.c @@ -124,9 +124,13 @@ ssize_t read_from_oldmem(char *buf, size_t count, nr_bytes = count; /* If pfn is not ram, return zeros for sparse dump files */ - if (pfn_is_ram(pfn) == 0) - memset(buf, 0, nr_bytes); - else { + if (pfn_is_ram(pfn) == 0) { + tmp = 0; + if (!userbuf) + memset(buf, 0, nr_bytes); + else if (clear_user(buf, nr_bytes)) + tmp = -EFAULT; + } else { if (encrypted) tmp = copy_oldmem_page_encrypted(pfn, buf, nr_bytes, @@ -135,10 +139,10 @@ ssize_t read_from_oldmem(char *buf, size_t count, else tmp = copy_oldmem_page(pfn, buf, nr_bytes, offset, userbuf); - - if (tmp < 0) - return tmp; } + if (tmp < 0) + return tmp; + *ppos += nr_bytes; count -= nr_bytes; buf += nr_bytes; From 37c8d485cb72250e0bba48486a83c9c33993fb21 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 5 Nov 2021 13:16:55 +0200 Subject: [PATCH 064/192] ASoC: SOF: Intel: hda: fix hotplug when only codec is suspended MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit fd572393baf0350835e8d822db588f679dc7bcb8 ] If codec is in runtime suspend, but controller is not, hotplug events are missed as the codec has no way to alert the controller. Problem does not occur if both controller and codec are active, or when both are suspended. An easy way to reproduce is to play an audio stream on one codec (e.g. to HDMI/DP display codec), wait for other HDA codec to go to runtime suspend, and then plug in a headset to the suspended codec. The jack event is not reported correctly in this case. Another way to reproduce is to force controller to stay active with "snd_sof_pci.sof_pci_debug=0x1" Fix the issue by reconfiguring the WAKEEN register when powering up/down individual links, and handling control events in the interrupt handler. Fixes: 87fc20e4a0cb ("ASoC: SOF: Intel: hda: use hdac_ext fine-grained link management") Reported-by: Hui Wang Signed-off-by: Kai Vehmanen Reviewed-by: Pierre-Louis Bossart Reviewed-by: Ranjani Sridharan Reviewed-by: Péter Ujfalusi Link: https://lore.kernel.org/r/20211105111655.668777-1-kai.vehmanen@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/sof/intel/hda-bus.c | 17 +++++++++++++++++ sound/soc/sof/intel/hda-dsp.c | 3 +-- sound/soc/sof/intel/hda.c | 16 ++++++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/sound/soc/sof/intel/hda-bus.c b/sound/soc/sof/intel/hda-bus.c index 30025d3c16b6e9..0862ff8b662733 100644 --- a/sound/soc/sof/intel/hda-bus.c +++ b/sound/soc/sof/intel/hda-bus.c @@ -10,6 +10,8 @@ #include #include #include +#include +#include #include "../sof-priv.h" #include "hda.h" @@ -21,6 +23,18 @@ #endif #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA) +static void update_codec_wake_enable(struct hdac_bus *bus, unsigned int addr, bool link_power) +{ + unsigned int mask = snd_hdac_chip_readw(bus, WAKEEN); + + if (link_power) + mask &= ~BIT(addr); + else + mask |= BIT(addr); + + snd_hdac_chip_updatew(bus, WAKEEN, STATESTS_INT_MASK, mask); +} + static void sof_hda_bus_link_power(struct hdac_device *codec, bool enable) { struct hdac_bus *bus = codec->bus; @@ -41,6 +55,9 @@ static void sof_hda_bus_link_power(struct hdac_device *codec, bool enable) */ if (codec->addr == HDA_IDISP_ADDR && !enable) snd_hdac_display_power(bus, HDA_CODEC_IDX_CONTROLLER, false); + + /* WAKEEN needs to be set for disabled links */ + update_codec_wake_enable(bus, codec->addr, enable); } static const struct hdac_bus_ops bus_core_ops = { diff --git a/sound/soc/sof/intel/hda-dsp.c b/sound/soc/sof/intel/hda-dsp.c index 623cf291e20747..262a70791a8f80 100644 --- a/sound/soc/sof/intel/hda-dsp.c +++ b/sound/soc/sof/intel/hda-dsp.c @@ -623,8 +623,7 @@ static int hda_suspend(struct snd_sof_dev *sdev, bool runtime_suspend) hda_dsp_ipc_int_disable(sdev); #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA) - if (runtime_suspend) - hda_codec_jack_wake_enable(sdev, true); + hda_codec_jack_wake_enable(sdev, runtime_suspend); /* power down all hda link */ snd_hdac_ext_bus_link_power_down_all(bus); diff --git a/sound/soc/sof/intel/hda.c b/sound/soc/sof/intel/hda.c index f60e2c57d3d0c6..ef92cca7ae01e2 100644 --- a/sound/soc/sof/intel/hda.c +++ b/sound/soc/sof/intel/hda.c @@ -696,6 +696,20 @@ static int hda_init_caps(struct snd_sof_dev *sdev) return 0; } +static void hda_check_for_state_change(struct snd_sof_dev *sdev) +{ +#if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA) + struct hdac_bus *bus = sof_to_bus(sdev); + unsigned int codec_mask; + + codec_mask = snd_hdac_chip_readw(bus, STATESTS); + if (codec_mask) { + hda_codec_jack_check(sdev); + snd_hdac_chip_writew(bus, STATESTS, codec_mask); + } +#endif +} + static irqreturn_t hda_dsp_interrupt_handler(int irq, void *context) { struct snd_sof_dev *sdev = context; @@ -737,6 +751,8 @@ static irqreturn_t hda_dsp_interrupt_thread(int irq, void *context) if (hda_sdw_check_wakeen_irq(sdev)) hda_sdw_process_wakeen(sdev); + hda_check_for_state_change(sdev); + /* enable GIE interrupt */ snd_sof_dsp_update_bits(sdev, HDA_DSP_HDA_BAR, SOF_HDA_INTCTL, From 59a0088fde86739acaec38a9d7f3a094afea93d9 Mon Sep 17 00:00:00 2001 From: Florent Fourcot Date: Wed, 3 Nov 2021 23:21:54 +0100 Subject: [PATCH 065/192] netfilter: ctnetlink: fix filtering with CTA_TUPLE_REPLY [ Upstream commit ad81d4daf6a3f4769a346e635d5e1e967ca455d9 ] filter->orig_flags was used for a reply context. Fixes: cb8aa9a3affb ("netfilter: ctnetlink: add kernel side filtering for dump") Signed-off-by: Florent Fourcot Signed-off-by: Pablo Neira Ayuso Signed-off-by: Sasha Levin --- net/netfilter/nf_conntrack_netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c index f1e5443fe7c74c..2663764d0b6eeb 100644 --- a/net/netfilter/nf_conntrack_netlink.c +++ b/net/netfilter/nf_conntrack_netlink.c @@ -1011,7 +1011,7 @@ ctnetlink_alloc_filter(const struct nlattr * const cda[], u8 family) CTA_TUPLE_REPLY, filter->family, &filter->zone, - filter->orig_flags); + filter->reply_flags); if (err < 0) { err = -EINVAL; goto err_filter; From 49f8783307587247b8b1b89bf7bdd106059d7232 Mon Sep 17 00:00:00 2001 From: Florent Fourcot Date: Wed, 3 Nov 2021 23:21:55 +0100 Subject: [PATCH 066/192] netfilter: ctnetlink: do not erase error code with EINVAL [ Upstream commit 77522ff02f333434612bd72df9b376f8d3836e4d ] And be consistent in error management for both orig/reply filtering Fixes: cb8aa9a3affb ("netfilter: ctnetlink: add kernel side filtering for dump") Signed-off-by: Florent Fourcot Signed-off-by: Pablo Neira Ayuso Signed-off-by: Sasha Levin --- net/netfilter/nf_conntrack_netlink.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c index 2663764d0b6eeb..c7708bde057cb4 100644 --- a/net/netfilter/nf_conntrack_netlink.c +++ b/net/netfilter/nf_conntrack_netlink.c @@ -1012,10 +1012,8 @@ ctnetlink_alloc_filter(const struct nlattr * const cda[], u8 family) filter->family, &filter->zone, filter->reply_flags); - if (err < 0) { - err = -EINVAL; + if (err < 0) goto err_filter; - } } return filter; From e76228cbecc2127c6891e74d358c3243a661bac1 Mon Sep 17 00:00:00 2001 From: yangxingwu Date: Thu, 4 Nov 2021 03:10:29 +0100 Subject: [PATCH 067/192] netfilter: ipvs: Fix reuse connection if RS weight is 0 [ Upstream commit c95c07836fa4c1767ed11d8eca0769c652760e32 ] We are changing expire_nodest_conn to work even for reused connections when conn_reuse_mode=0, just as what was done with commit dc7b3eb900aa ("ipvs: Fix reuse connection if real server is dead"). For controlled and persistent connections, the new connection will get the needed real server depending on the rules in ip_vs_check_template(). Fixes: d752c3645717 ("ipvs: allow rescheduling of new connections when port reuse is detected") Co-developed-by: Chuanqi Liu Signed-off-by: Chuanqi Liu Signed-off-by: yangxingwu Acked-by: Simon Horman Acked-by: Julian Anastasov Signed-off-by: Pablo Neira Ayuso Signed-off-by: Sasha Levin --- Documentation/networking/ipvs-sysctl.rst | 3 +-- net/netfilter/ipvs/ip_vs_core.c | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Documentation/networking/ipvs-sysctl.rst b/Documentation/networking/ipvs-sysctl.rst index 2afccc63856ee0..1cfbf1add2fc94 100644 --- a/Documentation/networking/ipvs-sysctl.rst +++ b/Documentation/networking/ipvs-sysctl.rst @@ -37,8 +37,7 @@ conn_reuse_mode - INTEGER 0: disable any special handling on port reuse. The new connection will be delivered to the same real server that was - servicing the previous connection. This will effectively - disable expire_nodest_conn. + servicing the previous connection. bit 1: enable rescheduling of new connections when it is safe. That is, whenever expire_nodest_conn and for TCP sockets, when diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c index 128690c512dff1..393058a43aa73c 100644 --- a/net/netfilter/ipvs/ip_vs_core.c +++ b/net/netfilter/ipvs/ip_vs_core.c @@ -1964,7 +1964,6 @@ ip_vs_in(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int struct ip_vs_proto_data *pd; struct ip_vs_conn *cp; int ret, pkts; - int conn_reuse_mode; struct sock *sk; /* Already marked as IPVS request or reply? */ @@ -2041,15 +2040,16 @@ ip_vs_in(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int cp = INDIRECT_CALL_1(pp->conn_in_get, ip_vs_conn_in_get_proto, ipvs, af, skb, &iph); - conn_reuse_mode = sysctl_conn_reuse_mode(ipvs); - if (conn_reuse_mode && !iph.fragoffs && is_new_conn(skb, &iph) && cp) { + if (!iph.fragoffs && is_new_conn(skb, &iph) && cp) { + int conn_reuse_mode = sysctl_conn_reuse_mode(ipvs); bool old_ct = false, resched = false; if (unlikely(sysctl_expire_nodest_conn(ipvs)) && cp->dest && unlikely(!atomic_read(&cp->dest->weight))) { resched = true; old_ct = ip_vs_conn_uses_old_conntrack(cp, skb); - } else if (is_new_conn_expected(cp, conn_reuse_mode)) { + } else if (conn_reuse_mode && + is_new_conn_expected(cp, conn_reuse_mode)) { old_ct = ip_vs_conn_uses_old_conntrack(cp, skb); if (!atomic_read(&cp->n_control)) { resched = true; From ed741b849ade9b4fd0b27ca20266be0a121b300e Mon Sep 17 00:00:00 2001 From: Will Mortensen Date: Sat, 6 Nov 2021 18:28:21 -0700 Subject: [PATCH 068/192] netfilter: flowtable: fix IPv6 tunnel addr match [ Upstream commit 39f6eed4cb209643f3f8633291854ed7375d7264 ] Previously the IPv6 addresses in the key were clobbered and the mask was left unset. I haven't tested this; I noticed it while skimming the code to understand an unrelated issue. Fixes: cfab6dbd0ecf ("netfilter: flowtable: add tunnel match offload support") Cc: wenxu Signed-off-by: Will Mortensen Signed-off-by: Pablo Neira Ayuso Signed-off-by: Sasha Levin --- net/netfilter/nf_flow_table_offload.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/netfilter/nf_flow_table_offload.c b/net/netfilter/nf_flow_table_offload.c index d6bf1b2cd541b7..b561e0a44a45f3 100644 --- a/net/netfilter/nf_flow_table_offload.c +++ b/net/netfilter/nf_flow_table_offload.c @@ -65,11 +65,11 @@ static void nf_flow_rule_lwt_match(struct nf_flow_match *match, sizeof(struct in6_addr)); if (memcmp(&key->enc_ipv6.src, &in6addr_any, sizeof(struct in6_addr))) - memset(&key->enc_ipv6.src, 0xff, + memset(&mask->enc_ipv6.src, 0xff, sizeof(struct in6_addr)); if (memcmp(&key->enc_ipv6.dst, &in6addr_any, sizeof(struct in6_addr))) - memset(&key->enc_ipv6.dst, 0xff, + memset(&mask->enc_ipv6.dst, 0xff, sizeof(struct in6_addr)); enc_keys |= BIT(FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS); key->enc_control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS; From 75fa2dadb7c26010eef19185eaff40c960a185fd Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Tue, 26 Oct 2021 06:49:54 +0100 Subject: [PATCH 069/192] media: v4l2-core: fix VIDIOC_DQEVENT handling on non-x86 [ Upstream commit 678d92b6126b9f55419b6a51ef0a88bce2ef2f20 ] My previous bugfix addressed an API inconsistency found by syzbot, and it correctly fixed the issue on x86-64 machines, which now behave correctly for both native and compat tasks. Unfortunately, John found that the patch broke compat mode on all other architectures, as they can no longer rely on the VIDIOC_DQEVENT_TIME32 code from the native handler as a fallback in the compat code. The best way I can see for addressing this is to generalize the VIDIOC_DQEVENT32_TIME32 code from x86 and use that for all architectures, leaving only the VIDIOC_DQEVENT32 variant as x86 specific. The original code was trying to be clever and use the same conversion helper for native 32-bit code and compat mode, but that turned out to be too obscure so even I missed that bit I had introduced myself when I made the fix. Fixes: c344f07aa1b4 ("media: v4l2-core: ignore native time32 ioctls on 64-bit") Reported-by: John Stultz Signed-off-by: Arnd Bergmann Tested-by: John Stultz Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Sasha Levin --- drivers/media/v4l2-core/v4l2-compat-ioctl32.c | 41 ++++++++----------- 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/drivers/media/v4l2-core/v4l2-compat-ioctl32.c b/drivers/media/v4l2-core/v4l2-compat-ioctl32.c index 47aff3b197426c..80aaf07b16f282 100644 --- a/drivers/media/v4l2-core/v4l2-compat-ioctl32.c +++ b/drivers/media/v4l2-core/v4l2-compat-ioctl32.c @@ -744,10 +744,6 @@ static int put_v4l2_ext_controls32(struct v4l2_ext_controls *p64, /* * x86 is the only compat architecture with different struct alignment * between 32-bit and 64-bit tasks. - * - * On all other architectures, v4l2_event32 and v4l2_event32_time32 are - * the same as v4l2_event and v4l2_event_time32, so we can use the native - * handlers, converting v4l2_event to v4l2_event_time32 if necessary. */ struct v4l2_event32 { __u32 type; @@ -765,21 +761,6 @@ struct v4l2_event32 { __u32 reserved[8]; }; -#ifdef CONFIG_COMPAT_32BIT_TIME -struct v4l2_event32_time32 { - __u32 type; - union { - compat_s64 value64; - __u8 data[64]; - } u; - __u32 pending; - __u32 sequence; - struct old_timespec32 timestamp; - __u32 id; - __u32 reserved[8]; -}; -#endif - static int put_v4l2_event32(struct v4l2_event *p64, struct v4l2_event32 __user *p32) { @@ -795,7 +776,22 @@ static int put_v4l2_event32(struct v4l2_event *p64, return 0; } +#endif + #ifdef CONFIG_COMPAT_32BIT_TIME +struct v4l2_event32_time32 { + __u32 type; + union { + compat_s64 value64; + __u8 data[64]; + } u; + __u32 pending; + __u32 sequence; + struct old_timespec32 timestamp; + __u32 id; + __u32 reserved[8]; +}; + static int put_v4l2_event32_time32(struct v4l2_event *p64, struct v4l2_event32_time32 __user *p32) { @@ -811,7 +807,6 @@ static int put_v4l2_event32_time32(struct v4l2_event *p64, return 0; } #endif -#endif struct v4l2_edid32 { __u32 pad; @@ -873,9 +868,7 @@ static int put_v4l2_edid32(struct v4l2_edid *p64, #define VIDIOC_QUERYBUF32_TIME32 _IOWR('V', 9, struct v4l2_buffer32_time32) #define VIDIOC_QBUF32_TIME32 _IOWR('V', 15, struct v4l2_buffer32_time32) #define VIDIOC_DQBUF32_TIME32 _IOWR('V', 17, struct v4l2_buffer32_time32) -#ifdef CONFIG_X86_64 #define VIDIOC_DQEVENT32_TIME32 _IOR ('V', 89, struct v4l2_event32_time32) -#endif #define VIDIOC_PREPARE_BUF32_TIME32 _IOWR('V', 93, struct v4l2_buffer32_time32) #endif @@ -929,10 +922,10 @@ unsigned int v4l2_compat_translate_cmd(unsigned int cmd) #ifdef CONFIG_X86_64 case VIDIOC_DQEVENT32: return VIDIOC_DQEVENT; +#endif #ifdef CONFIG_COMPAT_32BIT_TIME case VIDIOC_DQEVENT32_TIME32: return VIDIOC_DQEVENT; -#endif #endif } return cmd; @@ -1025,10 +1018,10 @@ int v4l2_compat_put_user(void __user *arg, void *parg, unsigned int cmd) #ifdef CONFIG_X86_64 case VIDIOC_DQEVENT32: return put_v4l2_event32(parg, arg); +#endif #ifdef CONFIG_COMPAT_32BIT_TIME case VIDIOC_DQEVENT32_TIME32: return put_v4l2_event32_time32(parg, arg); -#endif #endif } return 0; From 03339d10253edea4435bccf7223153f9d9d23a13 Mon Sep 17 00:00:00 2001 From: Cristian Marussi Date: Fri, 12 Nov 2021 18:07:05 +0000 Subject: [PATCH 070/192] firmware: arm_scmi: Fix null de-reference on error path [ Upstream commit 95161165727650a707bc34ecfac286a418b6bb00 ] During channel setup a failure in the call of scmi_vio_feed_vq_rx() leads to an attempt to access a dev pointer by dereferencing vioch->cinfo at a time when vioch->cinfo has still to be initialized. Fix it by providing the device reference directly to scmi_vio_feed_vq_rx. Link: https://lore.kernel.org/r/20211112180705.41601-1-cristian.marussi@arm.com Fixes: 46abe13b5e3db ("firmware: arm_scmi: Add virtio transport") Signed-off-by: Cristian Marussi Signed-off-by: Sudeep Holla Signed-off-by: Sasha Levin --- drivers/firmware/arm_scmi/virtio.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/firmware/arm_scmi/virtio.c b/drivers/firmware/arm_scmi/virtio.c index 11e8efb7137512..87039c5c03fdb9 100644 --- a/drivers/firmware/arm_scmi/virtio.c +++ b/drivers/firmware/arm_scmi/virtio.c @@ -82,7 +82,8 @@ static bool scmi_vio_have_vq_rx(struct virtio_device *vdev) } static int scmi_vio_feed_vq_rx(struct scmi_vio_channel *vioch, - struct scmi_vio_msg *msg) + struct scmi_vio_msg *msg, + struct device *dev) { struct scatterlist sg_in; int rc; @@ -94,8 +95,7 @@ static int scmi_vio_feed_vq_rx(struct scmi_vio_channel *vioch, rc = virtqueue_add_inbuf(vioch->vqueue, &sg_in, 1, msg, GFP_ATOMIC); if (rc) - dev_err_once(vioch->cinfo->dev, - "failed to add to virtqueue (%d)\n", rc); + dev_err_once(dev, "failed to add to virtqueue (%d)\n", rc); else virtqueue_kick(vioch->vqueue); @@ -108,7 +108,7 @@ static void scmi_finalize_message(struct scmi_vio_channel *vioch, struct scmi_vio_msg *msg) { if (vioch->is_rx) { - scmi_vio_feed_vq_rx(vioch, msg); + scmi_vio_feed_vq_rx(vioch, msg, vioch->cinfo->dev); } else { /* Here IRQs are assumed to be already disabled by the caller */ spin_lock(&vioch->lock); @@ -269,7 +269,7 @@ static int virtio_chan_setup(struct scmi_chan_info *cinfo, struct device *dev, list_add_tail(&msg->list, &vioch->free_list); spin_unlock_irqrestore(&vioch->lock, flags); } else { - scmi_vio_feed_vq_rx(vioch, msg); + scmi_vio_feed_vq_rx(vioch, msg, cinfo->dev); } } From b14b8cf0d1c6a5914b3547b032f9933973e08e74 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Wed, 27 Oct 2021 12:37:29 -0700 Subject: [PATCH 071/192] ARM: dts: BCM5301X: Fix I2C controller interrupt [ Upstream commit 754c4050a00e802e122690112fc2c3a6abafa7e2 ] The I2C interrupt controller line is off by 32 because the datasheet describes interrupt inputs into the GIC which are for Shared Peripheral Interrupts and are starting at offset 32. The ARM GIC binding expects the SPI interrupts to be numbered from 0 relative to the SPI base. Fixes: bb097e3e0045 ("ARM: dts: BCM5301X: Add I2C support to the DT") Tested-by: Christian Lamparter Signed-off-by: Florian Fainelli Signed-off-by: Sasha Levin --- arch/arm/boot/dts/bcm5301x.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/bcm5301x.dtsi b/arch/arm/boot/dts/bcm5301x.dtsi index d4f355015e3cab..437a2b0f68de31 100644 --- a/arch/arm/boot/dts/bcm5301x.dtsi +++ b/arch/arm/boot/dts/bcm5301x.dtsi @@ -408,7 +408,7 @@ i2c0: i2c@18009000 { compatible = "brcm,iproc-i2c"; reg = <0x18009000 0x50>; - interrupts = ; + interrupts = ; #address-cells = <1>; #size-cells = <0>; clock-frequency = <100000>; From 6012bea743440b29114c351ebec9b91e81181fdc Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Thu, 28 Oct 2021 09:46:53 -0700 Subject: [PATCH 072/192] ARM: dts: BCM5301X: Add interrupt properties to GPIO node [ Upstream commit 40f7342f0587639e5ad625adaa15efdd3cffb18f ] The GPIO controller is also an interrupt controller provider and is currently missing the appropriate 'interrupt-controller' and '#interrupt-cells' properties to denote that. Fixes: fb026d3de33b ("ARM: BCM5301X: Add Broadcom's bus-axi to the DTS file") Signed-off-by: Florian Fainelli Signed-off-by: Sasha Levin --- arch/arm/boot/dts/bcm5301x.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/boot/dts/bcm5301x.dtsi b/arch/arm/boot/dts/bcm5301x.dtsi index 437a2b0f68de31..f69d2af3c1fa48 100644 --- a/arch/arm/boot/dts/bcm5301x.dtsi +++ b/arch/arm/boot/dts/bcm5301x.dtsi @@ -242,6 +242,8 @@ gpio-controller; #gpio-cells = <2>; + interrupt-controller; + #interrupt-cells = <2>; }; pcie0: pcie@12000 { From 322eebada5e39870a56681f0efacbba9395b267b Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Fri, 29 Oct 2021 14:09:26 -0700 Subject: [PATCH 073/192] ARM: dts: bcm2711: Fix PCIe interrupts [ Upstream commit 98481f3d72fb88cb5b973153434061015f094925 ] The PCIe host bridge has two interrupt lines, one that goes towards it PCIE_INTR2 second level interrupt controller and one for its MSI second level interrupt controller. The first interrupt line is not currently managed by the driver, which is why it was not a functional problem. The interrupt-map property was also only listing the PCI_INTA interrupts when there are also the INTB, C and D. Reported-by: Jim Quinlan Fixes: d5c8dc0d4c88 ("ARM: dts: bcm2711: Enable PCIe controller") Signed-off-by: Florian Fainelli Signed-off-by: Sasha Levin --- arch/arm/boot/dts/bcm2711.dtsi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/bcm2711.dtsi b/arch/arm/boot/dts/bcm2711.dtsi index 3b60297af7f60b..9e01dbca4a011f 100644 --- a/arch/arm/boot/dts/bcm2711.dtsi +++ b/arch/arm/boot/dts/bcm2711.dtsi @@ -506,11 +506,17 @@ #address-cells = <3>; #interrupt-cells = <1>; #size-cells = <2>; - interrupts = , + interrupts = , ; interrupt-names = "pcie", "msi"; interrupt-map-mask = <0x0 0x0 0x0 0x7>; interrupt-map = <0 0 0 1 &gicv2 GIC_SPI 143 + IRQ_TYPE_LEVEL_HIGH>, + <0 0 0 2 &gicv2 GIC_SPI 144 + IRQ_TYPE_LEVEL_HIGH>, + <0 0 0 3 &gicv2 GIC_SPI 145 + IRQ_TYPE_LEVEL_HIGH>, + <0 0 0 4 &gicv2 GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>; msi-controller; msi-parent = <&pcie0>; From f61e5332fe241c26141d06a482bd7b0b71f15b18 Mon Sep 17 00:00:00 2001 From: Srinivas Kandagatla Date: Tue, 16 Nov 2021 11:47:18 +0000 Subject: [PATCH 074/192] ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer [ Upstream commit 861afeac7990587588d057b2c0b3222331c3da29 ] Stream IDs are reused across multiple BackEnd mixers, do not reset the stream mixers if they are not already set for that particular FrontEnd. Ex: amixer cset iface=MIXER,name='SLIMBUS_0_RX Audio Mixer MultiMedia1' 1 would set the MultiMedia1 steam for SLIMBUS_0_RX, however doing below command will reset previously setup MultiMedia1 stream, because both of them are using MultiMedia1 PCM stream. amixer cset iface=MIXER,name='SLIMBUS_2_RX Audio Mixer MultiMedia1' 0 reset the FrontEnd Mixers conditionally to fix this issue. This is more noticeable in desktop setup, where in alsactl tries to restore the alsa state and overwriting the previous mixer settings. Fixes: e3a33673e845 ("ASoC: qdsp6: q6routing: Add q6routing driver") Signed-off-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20211116114721.12517-3-srinivas.kandagatla@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/qcom/qdsp6/q6routing.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sound/soc/qcom/qdsp6/q6routing.c b/sound/soc/qcom/qdsp6/q6routing.c index 3390ebef9549d2..243b8179e59df5 100644 --- a/sound/soc/qcom/qdsp6/q6routing.c +++ b/sound/soc/qcom/qdsp6/q6routing.c @@ -495,7 +495,11 @@ static int msm_routing_put_audio_mixer(struct snd_kcontrol *kcontrol, session->port_id = be_id; snd_soc_dapm_mixer_update_power(dapm, kcontrol, 1, update); } else { - session->port_id = -1; + if (session->port_id == be_id) { + session->port_id = -1; + return 0; + } + snd_soc_dapm_mixer_update_power(dapm, kcontrol, 0, update); } From f4c465bf918aa6a3ee0620e9c201aca602700a0f Mon Sep 17 00:00:00 2001 From: Srinivas Kandagatla Date: Tue, 16 Nov 2021 11:47:19 +0000 Subject: [PATCH 075/192] ASoC: qdsp6: q6asm: fix q6asm_dai_prepare error handling [ Upstream commit 721a94b4352dc8e47bff90b549a0118c39776756 ] Error handling in q6asm_dai_prepare() seems to be completely broken, Fix this by handling it properly. Fixes: 2a9e92d371db ("ASoC: qdsp6: q6asm: Add q6asm dai driver") Signed-off-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20211116114721.12517-4-srinivas.kandagatla@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/qcom/qdsp6/q6asm-dai.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/sound/soc/qcom/qdsp6/q6asm-dai.c b/sound/soc/qcom/qdsp6/q6asm-dai.c index 46f365528d5018..b74b67720ef437 100644 --- a/sound/soc/qcom/qdsp6/q6asm-dai.c +++ b/sound/soc/qcom/qdsp6/q6asm-dai.c @@ -269,9 +269,7 @@ static int q6asm_dai_prepare(struct snd_soc_component *component, if (ret < 0) { dev_err(dev, "%s: q6asm_open_write failed\n", __func__); - q6asm_audio_client_free(prtd->audio_client); - prtd->audio_client = NULL; - return -ENOMEM; + goto open_err; } prtd->session_id = q6asm_get_session_id(prtd->audio_client); @@ -279,7 +277,7 @@ static int q6asm_dai_prepare(struct snd_soc_component *component, prtd->session_id, substream->stream); if (ret) { dev_err(dev, "%s: stream reg failed ret:%d\n", __func__, ret); - return ret; + goto routing_err; } if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { @@ -301,10 +299,19 @@ static int q6asm_dai_prepare(struct snd_soc_component *component, } if (ret < 0) dev_info(dev, "%s: CMD Format block failed\n", __func__); + else + prtd->state = Q6ASM_STREAM_RUNNING; - prtd->state = Q6ASM_STREAM_RUNNING; + return ret; - return 0; +routing_err: + q6asm_cmd(prtd->audio_client, prtd->stream_id, CMD_CLOSE); +open_err: + q6asm_unmap_memory_regions(substream->stream, prtd->audio_client); + q6asm_audio_client_free(prtd->audio_client); + prtd->audio_client = NULL; + + return ret; } static int q6asm_dai_trigger(struct snd_soc_component *component, From 49475a2b29b3085aab54beae3baa10d902e74723 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Tue, 16 Nov 2021 08:18:12 +0100 Subject: [PATCH 076/192] ASoC: topology: Add missing rwsem around snd_ctl_remove() calls [ Upstream commit 7e567b5ae06315ef2d70666b149962e2bb4b97af ] snd_ctl_remove() has to be called with card->controls_rwsem held (when called after the card instantiation). This patch add the missing rwsem calls around it. Fixes: 8a9782346dcc ("ASoC: topology: Add topology core") Signed-off-by: Takashi Iwai Link: https://lore.kernel.org/r/20211116071812.18109-1-tiwai@suse.de Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/soc-topology.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c index f6e5ac3e03140b..7459956d62b996 100644 --- a/sound/soc/soc-topology.c +++ b/sound/soc/soc-topology.c @@ -2674,6 +2674,7 @@ EXPORT_SYMBOL_GPL(snd_soc_tplg_component_load); /* remove dynamic controls from the component driver */ int snd_soc_tplg_component_remove(struct snd_soc_component *comp) { + struct snd_card *card = comp->card->snd_card; struct snd_soc_dobj *dobj, *next_dobj; int pass = SOC_TPLG_PASS_END; @@ -2681,6 +2682,7 @@ int snd_soc_tplg_component_remove(struct snd_soc_component *comp) while (pass >= SOC_TPLG_PASS_START) { /* remove mixer controls */ + down_write(&card->controls_rwsem); list_for_each_entry_safe(dobj, next_dobj, &comp->dobj_list, list) { @@ -2719,6 +2721,7 @@ int snd_soc_tplg_component_remove(struct snd_soc_component *comp) break; } } + up_write(&card->controls_rwsem); pass--; } From de178246c30378652796248f66ed2dc4eecb1c7a Mon Sep 17 00:00:00 2001 From: Srinivas Kandagatla Date: Tue, 16 Nov 2021 11:46:21 +0000 Subject: [PATCH 077/192] ASoC: codecs: wcd938x: fix volatile register range [ Upstream commit ea157c2ba821dab789a544cd9fbe44dc07036ff8 ] Interrupt Clear registers WCD938X_INTR_CLEAR_0 - WCD938X_INTR_CLEAR_2 are not marked as volatile. This has resulted in a missing interrupt bug while performing runtime pm. regcache_sync() during runtime pm resume path will write to Interrupt clear registers with previous values which basically clears the pending interrupt and actual interrupt handler never sees this interrupt. This issue is more visible with headset plug-in plug-out case compared to headset button. Fix this by adding the Interrupt clear registers to volatile range Fixes: 8d78602aa87a ("ASoC: codecs: wcd938x: add basic driver") Signed-off-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20211116114623.11891-2-srinivas.kandagatla@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/wcd938x.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sound/soc/codecs/wcd938x.c b/sound/soc/codecs/wcd938x.c index 52de7d14b13985..67151c7770c650 100644 --- a/sound/soc/codecs/wcd938x.c +++ b/sound/soc/codecs/wcd938x.c @@ -1174,6 +1174,9 @@ static bool wcd938x_readonly_register(struct device *dev, unsigned int reg) case WCD938X_DIGITAL_INTR_STATUS_0: case WCD938X_DIGITAL_INTR_STATUS_1: case WCD938X_DIGITAL_INTR_STATUS_2: + case WCD938X_DIGITAL_INTR_CLEAR_0: + case WCD938X_DIGITAL_INTR_CLEAR_1: + case WCD938X_DIGITAL_INTR_CLEAR_2: case WCD938X_DIGITAL_SWR_HM_TEST_0: case WCD938X_DIGITAL_SWR_HM_TEST_1: case WCD938X_DIGITAL_EFUSE_T_DATA_0: From b1b33a14298a8baa090389d66e6453ba19268092 Mon Sep 17 00:00:00 2001 From: Srinivas Kandagatla Date: Tue, 16 Nov 2021 11:46:22 +0000 Subject: [PATCH 078/192] ASoC: codecs: wcd934x: return error code correctly from hw_params [ Upstream commit 006ea27c4e7037369085755c7b5389effa508c04 ] Error returned from wcd934x_slim_set_hw_params() are not passed to upper layer, this could be misleading to the user which can start sending stream leading to unnecessary errors. Fix this by properly returning the errors. Fixes: a61f3b4f476e ("ASoC: wcd934x: add support to wcd9340/wcd9341 codec") Signed-off-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20211116114623.11891-3-srinivas.kandagatla@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/wcd934x.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sound/soc/codecs/wcd934x.c b/sound/soc/codecs/wcd934x.c index c496b359f2f40b..4f568abd59e24a 100644 --- a/sound/soc/codecs/wcd934x.c +++ b/sound/soc/codecs/wcd934x.c @@ -1896,9 +1896,8 @@ static int wcd934x_hw_params(struct snd_pcm_substream *substream, } wcd->dai[dai->id].sconfig.rate = params_rate(params); - wcd934x_slim_set_hw_params(wcd, &wcd->dai[dai->id], substream->stream); - return 0; + return wcd934x_slim_set_hw_params(wcd, &wcd->dai[dai->id], substream->stream); } static int wcd934x_hw_free(struct snd_pcm_substream *substream, From 4739705254a7ca837ecc0ef1fe3dda7083fce579 Mon Sep 17 00:00:00 2001 From: Srinivas Kandagatla Date: Tue, 16 Nov 2021 11:46:23 +0000 Subject: [PATCH 079/192] ASoC: codecs: lpass-rx-macro: fix HPHR setting CLSH mask [ Upstream commit cb04d8cd0bb0b82acc34cc73cb33ae77cbfb020d ] For some reason we ended up using snd_soc_component_write_field for HPHL and snd_soc_component_update_bits for HPHR, so fix this. Fixes: af3d54b99764 ("ASoC: codecs: lpass-rx-macro: add support for lpass rx macro") Signed-off-by: Srinivas Kandagatla Link: https://lore.kernel.org/r/20211116114623.11891-4-srinivas.kandagatla@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/lpass-rx-macro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/lpass-rx-macro.c b/sound/soc/codecs/lpass-rx-macro.c index 196b06898eeb24..07894ec5e7a613 100644 --- a/sound/soc/codecs/lpass-rx-macro.c +++ b/sound/soc/codecs/lpass-rx-macro.c @@ -2188,7 +2188,7 @@ static int rx_macro_config_classh(struct snd_soc_component *component, snd_soc_component_update_bits(component, CDC_RX_CLSH_DECAY_CTRL, CDC_RX_CLSH_DECAY_RATE_MASK, 0x0); - snd_soc_component_update_bits(component, + snd_soc_component_write_field(component, CDC_RX_RX1_RX_PATH_CFG0, CDC_RX_RXn_CLSH_EN_MASK, 0x1); break; From 6335d90df8afac55b60b90078063fd299916e692 Mon Sep 17 00:00:00 2001 From: Alexander Aring Date: Thu, 11 Nov 2021 22:09:16 -0500 Subject: [PATCH 080/192] net: ieee802154: handle iftypes as u32 [ Upstream commit 451dc48c806a7ce9fbec5e7a24ccf4b2c936e834 ] This patch fixes an issue that an u32 netlink value is handled as a signed enum value which doesn't fit into the range of u32 netlink type. If it's handled as -1 value some BIT() evaluation ends in a shift-out-of-bounds issue. To solve the issue we set the to u32 max which is s32 "-1" value to keep backwards compatibility and let the followed enum values start counting at 0. This brings the compiler to never handle the enum as signed and a check if the value is above NL802154_IFTYPE_MAX should filter -1 out. Fixes: f3ea5e44231a ("ieee802154: add new interface command") Signed-off-by: Alexander Aring Link: https://lore.kernel.org/r/20211112030916.685793-1-aahringo@redhat.com Signed-off-by: Stefan Schmidt Signed-off-by: Sasha Levin --- include/net/nl802154.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/net/nl802154.h b/include/net/nl802154.h index ddcee128f5d9ac..145acb8f250957 100644 --- a/include/net/nl802154.h +++ b/include/net/nl802154.h @@ -19,6 +19,8 @@ * */ +#include + #define NL802154_GENL_NAME "nl802154" enum nl802154_commands { @@ -150,10 +152,9 @@ enum nl802154_attrs { }; enum nl802154_iftype { - /* for backwards compatibility TODO */ - NL802154_IFTYPE_UNSPEC = -1, + NL802154_IFTYPE_UNSPEC = (~(__u32)0), - NL802154_IFTYPE_NODE, + NL802154_IFTYPE_NODE = 0, NL802154_IFTYPE_MONITOR, NL802154_IFTYPE_COORD, From 7382bcaf30cb274f49c220b88a5bc6814cc48229 Mon Sep 17 00:00:00 2001 From: Vincent Guittot Date: Wed, 17 Nov 2021 09:18:56 +0100 Subject: [PATCH 081/192] firmware: arm_scmi: Fix base agent discover response [ Upstream commit d1cbd9e0f7e51ae8e3638a36ba884fdbb2fc967e ] According to scmi specification, the response of the discover agent request is made of: - int32 status - uint32 agent_id - uint8 name[16] but the current implementation doesn't take into account the agent_id field and only allocates a rx buffer of SCMI_MAX_STR_SIZE length Allocate the correct length for rx buffer and copy the name from the correct offset in the response. While no error were returned until v5.15, v5.16-rc1 fails with virtio_scmi transport channel: | arm-scmi firmware:scmi0: SCMI Notifications - Core Enabled. | arm-scmi firmware:scmi0: SCMI Protocol v2.0 'Linaro:PMWG' Firmware version 0x2090000 | scmi-virtio virtio0: tx:used len 28 is larger than in buflen 24 Link: https://lore.kernel.org/r/20211117081856.9932-1-vincent.guittot@linaro.org Fixes: b6f20ff8bd94 ("firmware: arm_scmi: add common infrastructure and support for base protocol") Tested-by: Cristian Marussi Reviewed-by: Cristian Marussi Signed-off-by: Vincent Guittot Signed-off-by: Sudeep Holla Signed-off-by: Sasha Levin --- drivers/firmware/arm_scmi/base.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/drivers/firmware/arm_scmi/base.c b/drivers/firmware/arm_scmi/base.c index de416f9e792132..f5219334fd3a56 100644 --- a/drivers/firmware/arm_scmi/base.c +++ b/drivers/firmware/arm_scmi/base.c @@ -34,6 +34,12 @@ struct scmi_msg_resp_base_attributes { __le16 reserved; }; +struct scmi_msg_resp_base_discover_agent { + __le32 agent_id; + u8 name[SCMI_MAX_STR_SIZE]; +}; + + struct scmi_msg_base_error_notify { __le32 event_control; #define BASE_TP_NOTIFY_ALL BIT(0) @@ -225,18 +231,21 @@ static int scmi_base_discover_agent_get(const struct scmi_protocol_handle *ph, int id, char *name) { int ret; + struct scmi_msg_resp_base_discover_agent *agent_info; struct scmi_xfer *t; ret = ph->xops->xfer_get_init(ph, BASE_DISCOVER_AGENT, - sizeof(__le32), SCMI_MAX_STR_SIZE, &t); + sizeof(__le32), sizeof(*agent_info), &t); if (ret) return ret; put_unaligned_le32(id, t->tx.buf); ret = ph->xops->do_xfer(ph, t); - if (!ret) - strlcpy(name, t->rx.buf, SCMI_MAX_STR_SIZE); + if (!ret) { + agent_info = t->rx.buf; + strlcpy(name, agent_info->name, SCMI_MAX_STR_SIZE); + } ph->xops->xfer_put(ph, t); From 008fb838e226ab9aa5f29227d57f092ceab06fb8 Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Tue, 16 Nov 2021 14:42:27 +0800 Subject: [PATCH 082/192] firmware: arm_scmi: pm: Propagate return value to caller [ Upstream commit 1446fc6c678e8d8b31606a4b877abe205f344b38 ] of_genpd_add_provider_onecell may return error, so let's propagate its return value to caller Link: https://lore.kernel.org/r/20211116064227.20571-1-peng.fan@oss.nxp.com Fixes: 898216c97ed2 ("firmware: arm_scmi: add device power domain support using genpd") Signed-off-by: Peng Fan Signed-off-by: Sudeep Holla Signed-off-by: Sasha Levin --- drivers/firmware/arm_scmi/scmi_pm_domain.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/firmware/arm_scmi/scmi_pm_domain.c b/drivers/firmware/arm_scmi/scmi_pm_domain.c index 4371fdcd5a73f3..581d34c9576954 100644 --- a/drivers/firmware/arm_scmi/scmi_pm_domain.c +++ b/drivers/firmware/arm_scmi/scmi_pm_domain.c @@ -138,9 +138,7 @@ static int scmi_pm_domain_probe(struct scmi_device *sdev) scmi_pd_data->domains = domains; scmi_pd_data->num_domains = num_domains; - of_genpd_add_provider_onecell(np, scmi_pd_data); - - return 0; + return of_genpd_add_provider_onecell(np, scmi_pd_data); } static const struct scmi_device_id scmi_id_table[] = { From 63073a015730061084fa1c414f47ed8f03f07237 Mon Sep 17 00:00:00 2001 From: Olivier Moysan Date: Wed, 17 Nov 2021 11:44:04 +0100 Subject: [PATCH 083/192] ASoC: stm32: i2s: fix 32 bits channel length without mclk [ Upstream commit 424fe7edbed18d47f7b97f7e1322a6f8969b77ae ] Fix divider calculation in the case of 32 bits channel configuration, when no master clock is used. Fixes: e4e6ec7b127c ("ASoC: stm32: Add I2S driver") Signed-off-by: Olivier Moysan Link: https://lore.kernel.org/r/20211117104404.3832-1-olivier.moysan@foss.st.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/stm/stm32_i2s.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/stm/stm32_i2s.c b/sound/soc/stm/stm32_i2s.c index 6254bacad6eb76..717f45a83445c1 100644 --- a/sound/soc/stm/stm32_i2s.c +++ b/sound/soc/stm/stm32_i2s.c @@ -700,7 +700,7 @@ static int stm32_i2s_configure_clock(struct snd_soc_dai *cpu_dai, if (ret < 0) return ret; - nb_bits = frame_len * ((cgfr & I2S_CGFR_CHLEN) + 1); + nb_bits = frame_len * (FIELD_GET(I2S_CGFR_CHLEN, cgfr) + 1); ret = stm32_i2s_calc_clk_div(i2s, i2s_clock_rate, (nb_bits * rate)); if (ret) From c76a5e594920930fce5016578a34ddb15bdfefe4 Mon Sep 17 00:00:00 2001 From: Trond Myklebust Date: Tue, 16 Nov 2021 09:55:01 -0500 Subject: [PATCH 084/192] NFSv42: Don't fail clone() unless the OP_CLONE operation failed [ Upstream commit d3c45824ad65aebf765fcf51366d317a29538820 ] The failure to retrieve post-op attributes has no bearing on whether or not the clone operation itself was successful. We must therefore ignore the return value of decode_getfattr() when looking at the success or failure of nfs4_xdr_dec_clone(). Fixes: 36022770de6c ("nfs42: add CLONE xdr functions") Signed-off-by: Trond Myklebust Signed-off-by: Sasha Levin --- fs/nfs/nfs42xdr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/nfs/nfs42xdr.c b/fs/nfs/nfs42xdr.c index c8bad735e4c19d..271e5f92ed0195 100644 --- a/fs/nfs/nfs42xdr.c +++ b/fs/nfs/nfs42xdr.c @@ -1434,8 +1434,7 @@ static int nfs4_xdr_dec_clone(struct rpc_rqst *rqstp, status = decode_clone(xdr); if (status) goto out; - status = decode_getfattr(xdr, res->dst_fattr, res->server); - + decode_getfattr(xdr, res->dst_fattr, res->server); out: res->rpc_status = status; return status; From 20a09c8b25a21506cf8b60bdef78f31a6549ebfc Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 18 Nov 2021 15:25:08 +0100 Subject: [PATCH 085/192] ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE [ Upstream commit 187bea472600dcc8d2eb714335053264dd437172 ] When CONFIG_FORTIFY_SOURCE is set, memcpy() checks the potential buffer overflow and panics. The code in sofcpga bootstrapping contains the memcpy() calls are mistakenly translated as the shorter size, hence it triggers a panic as if it were overflowing. This patch changes the secondary_trampoline and *_end definitions to arrays for avoiding the false-positive crash above. Fixes: 9c4566a117a6 ("ARM: socfpga: Enable SMP for socfpga") Suggested-by: Kees Cook Buglink: https://bugzilla.suse.com/show_bug.cgi?id=1192473 Link: https://lore.kernel.org/r/20211117193244.31162-1-tiwai@suse.de Signed-off-by: Takashi Iwai Signed-off-by: Dinh Nguyen Signed-off-by: Sasha Levin --- arch/arm/mach-socfpga/core.h | 2 +- arch/arm/mach-socfpga/platsmp.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-socfpga/core.h b/arch/arm/mach-socfpga/core.h index fc2608b18a0d04..18f01190dcfd42 100644 --- a/arch/arm/mach-socfpga/core.h +++ b/arch/arm/mach-socfpga/core.h @@ -33,7 +33,7 @@ extern void __iomem *sdr_ctl_base_addr; u32 socfpga_sdram_self_refresh(u32 sdr_base); extern unsigned int socfpga_sdram_self_refresh_sz; -extern char secondary_trampoline, secondary_trampoline_end; +extern char secondary_trampoline[], secondary_trampoline_end[]; extern unsigned long socfpga_cpu1start_addr; diff --git a/arch/arm/mach-socfpga/platsmp.c b/arch/arm/mach-socfpga/platsmp.c index fbb80b883e5dd2..201191cf68f324 100644 --- a/arch/arm/mach-socfpga/platsmp.c +++ b/arch/arm/mach-socfpga/platsmp.c @@ -20,14 +20,14 @@ static int socfpga_boot_secondary(unsigned int cpu, struct task_struct *idle) { - int trampoline_size = &secondary_trampoline_end - &secondary_trampoline; + int trampoline_size = secondary_trampoline_end - secondary_trampoline; if (socfpga_cpu1start_addr) { /* This will put CPU #1 into reset. */ writel(RSTMGR_MPUMODRST_CPU1, rst_manager_base_addr + SOCFPGA_RSTMGR_MODMPURST); - memcpy(phys_to_virt(0), &secondary_trampoline, trampoline_size); + memcpy(phys_to_virt(0), secondary_trampoline, trampoline_size); writel(__pa_symbol(secondary_startup), sys_manager_base_addr + (socfpga_cpu1start_addr & 0x000000ff)); @@ -45,12 +45,12 @@ static int socfpga_boot_secondary(unsigned int cpu, struct task_struct *idle) static int socfpga_a10_boot_secondary(unsigned int cpu, struct task_struct *idle) { - int trampoline_size = &secondary_trampoline_end - &secondary_trampoline; + int trampoline_size = secondary_trampoline_end - secondary_trampoline; if (socfpga_cpu1start_addr) { writel(RSTMGR_MPUMODRST_CPU1, rst_manager_base_addr + SOCFPGA_A10_RSTMGR_MODMPURST); - memcpy(phys_to_virt(0), &secondary_trampoline, trampoline_size); + memcpy(phys_to_virt(0), secondary_trampoline, trampoline_size); writel(__pa_symbol(secondary_startup), sys_manager_base_addr + (socfpga_cpu1start_addr & 0x00000fff)); From 8f98d6449b098ac6a7e9626c625a6c5c3e13a790 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Thu, 18 Nov 2021 14:13:14 +0300 Subject: [PATCH 086/192] drm/nouveau/acr: fix a couple NULL vs IS_ERR() checks [ Upstream commit b371fd131fcec59f6165c80778bdc2cd1abd616b ] The nvkm_acr_lsfw_add() function never returns NULL. It returns error pointers on error. Fixes: 22dcda45a3d1 ("drm/nouveau/acr: implement new subdev to replace "secure boot"") Signed-off-by: Dan Carpenter Reviewed-by: Ben Skeggs Signed-off-by: Karol Herbst Link: https://patchwork.freedesktop.org/patch/msgid/20211118111314.GB1147@kili Signed-off-by: Sasha Levin --- drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c | 6 ++++-- drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c b/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c index cdb1ead26d84f0..82b4c8e1457c28 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c @@ -207,11 +207,13 @@ int gm200_acr_wpr_parse(struct nvkm_acr *acr) { const struct wpr_header *hdr = (void *)acr->wpr_fw->data; + struct nvkm_acr_lsfw *lsfw; while (hdr->falcon_id != WPR_HEADER_V0_FALCON_ID_INVALID) { wpr_header_dump(&acr->subdev, hdr); - if (!nvkm_acr_lsfw_add(NULL, acr, NULL, (hdr++)->falcon_id)) - return -ENOMEM; + lsfw = nvkm_acr_lsfw_add(NULL, acr, NULL, (hdr++)->falcon_id); + if (IS_ERR(lsfw)) + return PTR_ERR(lsfw); } return 0; diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c b/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c index fb9132a39bb1a5..fd97a935a380e8 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c @@ -161,11 +161,13 @@ int gp102_acr_wpr_parse(struct nvkm_acr *acr) { const struct wpr_header_v1 *hdr = (void *)acr->wpr_fw->data; + struct nvkm_acr_lsfw *lsfw; while (hdr->falcon_id != WPR_HEADER_V1_FALCON_ID_INVALID) { wpr_header_v1_dump(&acr->subdev, hdr); - if (!nvkm_acr_lsfw_add(NULL, acr, NULL, (hdr++)->falcon_id)) - return -ENOMEM; + lsfw = nvkm_acr_lsfw_add(NULL, acr, NULL, (hdr++)->falcon_id); + if (IS_ERR(lsfw)) + return PTR_ERR(lsfw); } return 0; From 032cf0ad6873a07309736806269b3bfd53040cae Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 9 Nov 2021 14:52:19 +0300 Subject: [PATCH 087/192] scsi: qla2xxx: edif: Fix off by one bug in qla_edif_app_getfcinfo() [ Upstream commit e11e285b9cd132db21568b5d29c291f590841944 ] The > comparison needs to be >= to prevent accessing one element beyond the end of the app_reply->ports[] array. Link: https://lore.kernel.org/r/20211109115219.GE16587@kili Fixes: 7878f22a2e03 ("scsi: qla2xxx: edif: Add getfcinfo and statistic bsgs") Reviewed-by: Ewan D. Milne Reviewed-by: Himanshu Madhani Signed-off-by: Dan Carpenter Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- drivers/scsi/qla2xxx/qla_edif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/qla2xxx/qla_edif.c b/drivers/scsi/qla2xxx/qla_edif.c index 9240e788b011de..a04693498dc013 100644 --- a/drivers/scsi/qla2xxx/qla_edif.c +++ b/drivers/scsi/qla2xxx/qla_edif.c @@ -865,7 +865,7 @@ qla_edif_app_getfcinfo(scsi_qla_host_t *vha, struct bsg_job *bsg_job) "APP request entry - portid=%06x.\n", tdid.b24); /* Ran out of space */ - if (pcnt > app_req.num_ports) + if (pcnt >= app_req.num_ports) break; if (tdid.b24 != 0 && tdid.b24 != fcport->d_id.b24) From 8485649a7655e791a6e4e9f15b4d30fdae937184 Mon Sep 17 00:00:00 2001 From: Sreekanth Reddy Date: Wed, 17 Nov 2021 16:19:09 +0530 Subject: [PATCH 088/192] scsi: mpt3sas: Fix kernel panic during drive powercycle test [ Upstream commit 0ee4ba13e09c9d9c1cb6abb59da8295d9952328b ] While looping over shost's sdev list it is possible that one of the drives is getting removed and its sas_target object is freed but its sdev object remains intact. Consequently, a kernel panic can occur while the driver is trying to access the sas_address field of sas_target object without also checking the sas_target object for NULL. Link: https://lore.kernel.org/r/20211117104909.2069-1-sreekanth.reddy@broadcom.com Fixes: f92363d12359 ("[SCSI] mpt3sas: add new driver supporting 12GB SAS") Signed-off-by: Sreekanth Reddy Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- drivers/scsi/mpt3sas/mpt3sas_scsih.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/mpt3sas/mpt3sas_scsih.c b/drivers/scsi/mpt3sas/mpt3sas_scsih.c index ad1b6c2b37a74e..1272b5ebea7ae1 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ b/drivers/scsi/mpt3sas/mpt3sas_scsih.c @@ -3869,7 +3869,7 @@ _scsih_ublock_io_device(struct MPT3SAS_ADAPTER *ioc, shost_for_each_device(sdev, ioc->shost) { sas_device_priv_data = sdev->hostdata; - if (!sas_device_priv_data) + if (!sas_device_priv_data || !sas_device_priv_data->sas_target) continue; if (sas_device_priv_data->sas_target->sas_address != sas_address) From 8f13c5eddf507e83a97080dd267e24a036c1906a Mon Sep 17 00:00:00 2001 From: Sreekanth Reddy Date: Wed, 17 Nov 2021 16:20:58 +0530 Subject: [PATCH 089/192] scsi: mpt3sas: Fix system going into read-only mode [ Upstream commit 91202a01a2fb2b78da3d03811b6d3d973ae426aa ] While determining the SAS address of a drive, the driver checks whether the handle number is less than the HBA phy count or not. If the handle number is less than the HBA phy count then driver assumes that this handle belongs to HBA and hence it assigns the HBA SAS address. During IOC firmware downgrade operation, if the number of HBA phys is reduced and the OS drive's device handle drops below the phy count while determining the drive's SAS address, the driver ends up using the HBA's SAS address. This leads to a mismatch of drive's SAS address and hence the driver unregisters the OS drive and the system goes into read-only mode. Update the IOC's num_phys to the HBA phy count provided by actual loaded firmware. Link: https://lore.kernel.org/r/20211117105058.3505-1-sreekanth.reddy@broadcom.com Fixes: a5e99fda0172 ("scsi: mpt3sas: Update hba_port objects after host reset") Signed-off-by: Sreekanth Reddy Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- drivers/scsi/mpt3sas/mpt3sas_base.h | 4 ++ drivers/scsi/mpt3sas/mpt3sas_scsih.c | 57 +++++++++++++++++++++++++++- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.h b/drivers/scsi/mpt3sas/mpt3sas_base.h index f87c0911f66ad7..1b3a44ce65aae0 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.h +++ b/drivers/scsi/mpt3sas/mpt3sas_base.h @@ -142,6 +142,8 @@ #define MPT_MAX_CALLBACKS 32 +#define MPT_MAX_HBA_NUM_PHYS 32 + #define INTERNAL_CMDS_COUNT 10 /* reserved cmds */ /* reserved for issuing internally framed scsi io cmds */ #define INTERNAL_SCSIIO_CMDS_COUNT 3 @@ -798,6 +800,7 @@ struct _sas_phy { * @enclosure_handle: handle for this a member of an enclosure * @device_info: bitwise defining capabilities of this sas_host/expander * @responding: used in _scsih_expander_device_mark_responding + * @nr_phys_allocated: Allocated memory for this many count phys * @phy: a list of phys that make up this sas_host/expander * @sas_port_list: list of ports attached to this sas_host/expander * @port: hba port entry containing node's port number info @@ -813,6 +816,7 @@ struct _sas_node { u16 enclosure_handle; u64 enclosure_logical_id; u8 responding; + u8 nr_phys_allocated; struct hba_port *port; struct _sas_phy *phy; struct list_head sas_port_list; diff --git a/drivers/scsi/mpt3sas/mpt3sas_scsih.c b/drivers/scsi/mpt3sas/mpt3sas_scsih.c index 1272b5ebea7ae1..c1f900c6ea0030 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ b/drivers/scsi/mpt3sas/mpt3sas_scsih.c @@ -6406,11 +6406,26 @@ _scsih_sas_port_refresh(struct MPT3SAS_ADAPTER *ioc) int i, j, count = 0, lcount = 0; int ret; u64 sas_addr; + u8 num_phys; drsprintk(ioc, ioc_info(ioc, "updating ports for sas_host(0x%016llx)\n", (unsigned long long)ioc->sas_hba.sas_address)); + mpt3sas_config_get_number_hba_phys(ioc, &num_phys); + if (!num_phys) { + ioc_err(ioc, "failure at %s:%d/%s()!\n", + __FILE__, __LINE__, __func__); + return; + } + + if (num_phys > ioc->sas_hba.nr_phys_allocated) { + ioc_err(ioc, "failure at %s:%d/%s()!\n", + __FILE__, __LINE__, __func__); + return; + } + ioc->sas_hba.num_phys = num_phys; + port_table = kcalloc(ioc->sas_hba.num_phys, sizeof(struct hba_port), GFP_KERNEL); if (!port_table) @@ -6611,6 +6626,30 @@ _scsih_sas_host_refresh(struct MPT3SAS_ADAPTER *ioc) ioc->sas_hba.phy[i].hba_vphy = 1; } + /* + * Add new HBA phys to STL if these new phys got added as part + * of HBA Firmware upgrade/downgrade operation. + */ + if (!ioc->sas_hba.phy[i].phy) { + if ((mpt3sas_config_get_phy_pg0(ioc, &mpi_reply, + &phy_pg0, i))) { + ioc_err(ioc, "failure at %s:%d/%s()!\n", + __FILE__, __LINE__, __func__); + continue; + } + ioc_status = le16_to_cpu(mpi_reply.IOCStatus) & + MPI2_IOCSTATUS_MASK; + if (ioc_status != MPI2_IOCSTATUS_SUCCESS) { + ioc_err(ioc, "failure at %s:%d/%s()!\n", + __FILE__, __LINE__, __func__); + continue; + } + ioc->sas_hba.phy[i].phy_id = i; + mpt3sas_transport_add_host_phy(ioc, + &ioc->sas_hba.phy[i], phy_pg0, + ioc->sas_hba.parent_dev); + continue; + } ioc->sas_hba.phy[i].handle = ioc->sas_hba.handle; attached_handle = le16_to_cpu(sas_iounit_pg0->PhyData[i]. AttachedDevHandle); @@ -6622,6 +6661,19 @@ _scsih_sas_host_refresh(struct MPT3SAS_ADAPTER *ioc) attached_handle, i, link_rate, ioc->sas_hba.phy[i].port); } + /* + * Clear the phy details if this phy got disabled as part of + * HBA Firmware upgrade/downgrade operation. + */ + for (i = ioc->sas_hba.num_phys; + i < ioc->sas_hba.nr_phys_allocated; i++) { + if (ioc->sas_hba.phy[i].phy && + ioc->sas_hba.phy[i].phy->negotiated_linkrate >= + SAS_LINK_RATE_1_5_GBPS) + mpt3sas_transport_update_links(ioc, + ioc->sas_hba.sas_address, 0, i, + MPI2_SAS_NEG_LINK_RATE_PHY_DISABLED, NULL); + } out: kfree(sas_iounit_pg0); } @@ -6654,7 +6706,10 @@ _scsih_sas_host_add(struct MPT3SAS_ADAPTER *ioc) __FILE__, __LINE__, __func__); return; } - ioc->sas_hba.phy = kcalloc(num_phys, + + ioc->sas_hba.nr_phys_allocated = max_t(u8, + MPT_MAX_HBA_NUM_PHYS, num_phys); + ioc->sas_hba.phy = kcalloc(ioc->sas_hba.nr_phys_allocated, sizeof(struct _sas_phy), GFP_KERNEL); if (!ioc->sas_hba.phy) { ioc_err(ioc, "failure at %s:%d/%s()!\n", From b28df766a3fc377187e97dc0166dd5bbbe29876c Mon Sep 17 00:00:00 2001 From: Sreekanth Reddy Date: Wed, 17 Nov 2021 18:02:15 +0530 Subject: [PATCH 090/192] scsi: mpt3sas: Fix incorrect system timestamp [ Upstream commit 5ecae9f8c705fae85fe4d2ed9f1b9cddf91e88e9 ] For updating the IOC firmware's timestamp with system timestamp, the driver issues the Mpi26IoUnitControlRequest message. While framing the Mpi26IoUnitControlRequest, the driver should copy the lower 32 bits of the current timestamp into IOCParameterValue field and the higher 32 bits into Reserved7 field. Link: https://lore.kernel.org/r/20211117123215.25487-1-sreekanth.reddy@broadcom.com Fixes: f98790c00375 ("scsi: mpt3sas: Sync time periodically between driver and firmware") Signed-off-by: Sreekanth Reddy Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- drivers/scsi/mpt3sas/mpt3sas_base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.c b/drivers/scsi/mpt3sas/mpt3sas_base.c index 27eb652b564f54..81dab9b82f79f9 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.c +++ b/drivers/scsi/mpt3sas/mpt3sas_base.c @@ -639,8 +639,8 @@ static void _base_sync_drv_fw_timestamp(struct MPT3SAS_ADAPTER *ioc) mpi_request->IOCParameter = MPI26_SET_IOC_PARAMETER_SYNC_TIMESTAMP; current_time = ktime_get_real(); TimeStamp = ktime_to_ms(current_time); - mpi_request->Reserved7 = cpu_to_le32(TimeStamp & 0xFFFFFFFF); - mpi_request->IOCParameterValue = cpu_to_le32(TimeStamp >> 32); + mpi_request->Reserved7 = cpu_to_le32(TimeStamp >> 32); + mpi_request->IOCParameterValue = cpu_to_le32(TimeStamp & 0xFFFFFFFF); init_completion(&ioc->scsih_cmds.done); ioc->put_smid_default(ioc, smid); dinitprintk(ioc, ioc_info(ioc, From 555721765bd6174a735f4539474fab3d68886373 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Thu, 18 Nov 2021 14:14:16 +0300 Subject: [PATCH 091/192] drm/vc4: fix error code in vc4_create_object() [ Upstream commit 96c5f82ef0a145d3e56e5b26f2bf6dcd2ffeae1c ] The ->gem_create_object() functions are supposed to return NULL if there is an error. None of the callers expect error pointers so returing one will lead to an Oops. See drm_gem_vram_create(), for example. Fixes: c826a6e10644 ("drm/vc4: Add a BO cache.") Signed-off-by: Dan Carpenter Signed-off-by: Maxime Ripard Link: https://patchwork.freedesktop.org/patch/msgid/20211118111416.GC1147@kili Signed-off-by: Sasha Levin --- drivers/gpu/drm/vc4/vc4_bo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/vc4/vc4_bo.c b/drivers/gpu/drm/vc4/vc4_bo.c index fddaeb0b09c117..f642bd6e71ff49 100644 --- a/drivers/gpu/drm/vc4/vc4_bo.c +++ b/drivers/gpu/drm/vc4/vc4_bo.c @@ -391,7 +391,7 @@ struct drm_gem_object *vc4_create_object(struct drm_device *dev, size_t size) bo = kzalloc(sizeof(*bo), GFP_KERNEL); if (!bo) - return ERR_PTR(-ENOMEM); + return NULL; bo->madv = VC4_MADV_WILLNEED; refcount_set(&bo->usecnt, 0); From 94850e2dda990fc07dfac15a65c167ac620b734a Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Wed, 17 Nov 2021 09:01:45 +0800 Subject: [PATCH 092/192] drm/aspeed: Fix vga_pw sysfs output [ Upstream commit b4a6aaeaf4aa79f23775f6688a7e8db3ee1c1303 ] Before the drm driver had support for this file there was a driver that exposed the contents of the vga password register to userspace. It would present the entire register instead of interpreting it. The drm implementation chose to mask of the lower bit, without explaining why. This breaks the existing userspace, which is looking for 0xa8 in the lower byte. Change our implementation to expose the entire register. Fixes: 696029eb36c0 ("drm/aspeed: Add sysfs for output settings") Reported-by: Oskar Senft Signed-off-by: Joel Stanley Reviewed-by: Jeremy Kerr Tested-by: Oskar Senft Signed-off-by: Maxime Ripard Link: https://patchwork.freedesktop.org/patch/msgid/20211117010145.297253-1-joel@jms.id.au Signed-off-by: Sasha Levin --- drivers/gpu/drm/aspeed/aspeed_gfx_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c b/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c index b53fee6f1c170a..65f172807a0d57 100644 --- a/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c +++ b/drivers/gpu/drm/aspeed/aspeed_gfx_drv.c @@ -291,7 +291,7 @@ vga_pw_show(struct device *dev, struct device_attribute *attr, char *buf) if (rc) return rc; - return sprintf(buf, "%u\n", reg & 1); + return sprintf(buf, "%u\n", reg); } static DEVICE_ATTR_RO(vga_pw); From 8599e15e508e5740b67eda3f0430a1756adf295f Mon Sep 17 00:00:00 2001 From: Volodymyr Mytnyk Date: Thu, 18 Nov 2021 21:48:03 +0200 Subject: [PATCH 093/192] net: marvell: prestera: fix brige port operation [ Upstream commit 253e9b4d11e577bb8cbc77ef68a9ff46438065ca ] Return NOTIFY_DONE (dont't care) for switchdev notifications that prestera driver don't know how to handle them. With introduction of SWITCHDEV_BRPORT_[UN]OFFLOADED switchdev events, the driver rejects adding swport to bridge operation which is handled by prestera_bridge_port_join() func. The root cause of this is that prestera driver returns error (EOPNOTSUPP) in prestera_switchdev_blk_event() handler for unknown swdev events. This causes switchdev_bridge_port_offload() to fail when adding port to bridge in prestera_bridge_port_join(). Fixes: 957e2235e526 ("net: make switchdev_bridge_port_{,unoffload} loosely coupled with the bridge") Signed-off-by: Volodymyr Mytnyk Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ethernet/marvell/prestera/prestera_switchdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c b/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c index 3ce6ccd0f53942..79f2fca0d412d0 100644 --- a/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c +++ b/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c @@ -1124,7 +1124,7 @@ static int prestera_switchdev_blk_event(struct notifier_block *unused, prestera_port_obj_attr_set); break; default: - err = -EOPNOTSUPP; + return NOTIFY_DONE; } return notifier_from_errno(err); From 03e5203d2161a00afe4d97d206d2293e40b2f253 Mon Sep 17 00:00:00 2001 From: Volodymyr Mytnyk Date: Thu, 18 Nov 2021 21:51:40 +0200 Subject: [PATCH 094/192] net: marvell: prestera: fix double free issue on err path [ Upstream commit e8d032507cb7912baf1d3e0af54516f823befefd ] fix error path handling in prestera_bridge_port_join() that cases prestera driver to crash (see below). Trace: Internal error: Oops: 96000044 [#1] SMP Modules linked in: prestera_pci prestera uio_pdrv_genirq CPU: 1 PID: 881 Comm: ip Not tainted 5.15.0 #1 pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : prestera_bridge_destroy+0x2c/0xb0 [prestera] lr : prestera_bridge_port_join+0x2cc/0x350 [prestera] sp : ffff800011a1b0f0 ... x2 : ffff000109ca6c80 x1 : dead000000000100 x0 : dead000000000122 Call trace: prestera_bridge_destroy+0x2c/0xb0 [prestera] prestera_bridge_port_join+0x2cc/0x350 [prestera] prestera_netdev_port_event.constprop.0+0x3c4/0x450 [prestera] prestera_netdev_event_handler+0xf4/0x110 [prestera] raw_notifier_call_chain+0x54/0x80 call_netdevice_notifiers_info+0x54/0xa0 __netdev_upper_dev_link+0x19c/0x380 Fixes: e1189d9a5fbe ("net: marvell: prestera: Add Switchdev driver implementation") Signed-off-by: Volodymyr Mytnyk Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ethernet/marvell/prestera/prestera_switchdev.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c b/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c index 79f2fca0d412d0..b4599fe4ca8da6 100644 --- a/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c +++ b/drivers/net/ethernet/marvell/prestera/prestera_switchdev.c @@ -497,8 +497,8 @@ int prestera_bridge_port_join(struct net_device *br_dev, br_port = prestera_bridge_port_add(bridge, port->dev); if (IS_ERR(br_port)) { - err = PTR_ERR(br_port); - goto err_brport_create; + prestera_bridge_put(bridge); + return PTR_ERR(br_port); } err = switchdev_bridge_port_offload(br_port->dev, port->dev, NULL, @@ -519,8 +519,6 @@ int prestera_bridge_port_join(struct net_device *br_dev, switchdev_bridge_port_unoffload(br_port->dev, NULL, NULL, NULL); err_switchdev_offload: prestera_bridge_port_put(br_port); -err_brport_create: - prestera_bridge_put(bridge); return err; } From 740dd84229a5c2430720f57348594bfef91eb606 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 28 Oct 2021 18:33:30 +0200 Subject: [PATCH 095/192] HID: input: Fix parsing of HID_CP_CONSUMER_CONTROL fields MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit 7fc48fd6b2c0acacd8130d83d2a037670d6192d2 ] Fix parsing of HID_CP_CONSUMER_CONTROL fields which are not in the HID_CP_PROGRAMMABLEBUTTONS collection. Fixes: bcfa8d14570d ("HID: input: Add support for Programmable Buttons") BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=2018096 Cc: Thomas Weißschuh Suggested-by: Benjamin Tissoires Signed-off-by: Hans de Goede Reviewed-By: Thomas Weißschuh Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/hid-input.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 4b5ebeacd28360..4b3f4a5e23058b 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c @@ -650,10 +650,9 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel code += KEY_MACRO1; else code += BTN_TRIGGER_HAPPY - 0x1e; - } else { - goto ignore; + break; } - break; + fallthrough; default: switch (field->physical) { case HID_GD_MOUSE: From 6341c9ccb29ab7ae41657dc59ff6760fbf68e7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= Date: Thu, 28 Oct 2021 22:55:42 +0200 Subject: [PATCH 096/192] HID: input: set usage type to key on keycode remap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit 3e6a950d98366f5e716904e9a7e8ffc7ed638bd6 ] When a scancode is manually remapped that previously was not handled as key, then the old usage type was incorrectly reused. This caused issues on a "04b3:301b IBM Corp. SK-8815 Keyboard" which has marked some of its keys with an invalid HID usage. These invalid usage keys are being ignored since support for USB programmable buttons was added. The scancodes are however remapped explicitly by the systemd hwdb to the keycodes that are printed on the physical buttons. During this mapping step the existing usage is retrieved which will be found with a default type of 0 (EV_SYN) instead of EV_KEY. The events with the correct code but EV_SYN type are not forwarded to userspace. This also leads to a kernel oops when trying to print the report descriptor via debugfs. hid_resolv_event() tries to resolve a EV_SYN event with an EV_KEY code which leads to an out-of-bounds access in the EV_SYN names array. Fixes: bcfa8d1457 ("HID: input: Add support for Programmable Buttons") Fixes: f5854fad39 ("Input: hid-input - allow mapping unknown usages") Reported-by: Brent Roman Tested-by: Brent Roman Signed-off-by: Thomas Weißschuh Reviewed-by: Dmitry Torokhov Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/hid-input.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 4b3f4a5e23058b..6561770f1af55c 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c @@ -160,6 +160,7 @@ static int hidinput_setkeycode(struct input_dev *dev, if (usage) { *old_keycode = usage->type == EV_KEY ? usage->code : KEY_RESERVED; + usage->type = EV_KEY; usage->code = ke->keycode; clear_bit(*old_keycode, dev->keybit); From 25bbaa3ae179a3001228b8dcab88135ae97b7911 Mon Sep 17 00:00:00 2001 From: Claudia Pellegrino Date: Sun, 14 Nov 2021 03:53:27 +0100 Subject: [PATCH 097/192] HID: magicmouse: prevent division by 0 on scroll MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit a1091118e0d6d84c2fdb94e6c397ac790bfb9dd6 ] In hid_magicmouse, if the user has set scroll_speed to a value between 55 and 63 and scrolls seven times in quick succession, the step_hr variable in the magicmouse_emit_touch function becomes 0. That causes a division by zero further down in the function when it does `step_x_hr /= step_hr`. To reproduce, create `/etc/modprobe.d/hid_magicmouse.conf` with the following content: ``` options hid_magicmouse scroll_acceleration=1 scroll_speed=55 ``` Then reboot, connect a Magic Mouse and scroll seven times quickly. The system will freeze for a minute, and after that `dmesg` will confirm that a division by zero occurred. Enforce a minimum of 1 for the variable so the high resolution step count can never reach 0 even at maximum scroll acceleration. Fixes: d4b9f10a0eb6 ("HID: magicmouse: enable high-resolution scroll") Signed-off-by: Claudia Pellegrino Tested-by: José Expósito Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/hid-magicmouse.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c index 686788ebf3e1e7..d7687ce706144a 100644 --- a/drivers/hid/hid-magicmouse.c +++ b/drivers/hid/hid-magicmouse.c @@ -256,8 +256,11 @@ static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tda unsigned long now = jiffies; int step_x = msc->touches[id].scroll_x - x; int step_y = msc->touches[id].scroll_y - y; - int step_hr = ((64 - (int)scroll_speed) * msc->scroll_accel) / - SCROLL_HR_STEPS; + int step_hr = + max_t(int, + ((64 - (int)scroll_speed) * msc->scroll_accel) / + SCROLL_HR_STEPS, + 1); int step_x_hr = msc->touches[id].scroll_x_hr - x; int step_y_hr = msc->touches[id].scroll_y_hr - y; From e4031c048f4806bee6c869b89582709e62d7739a Mon Sep 17 00:00:00 2001 From: Nitesh B Venkatesh Date: Fri, 4 Jun 2021 09:53:31 -0700 Subject: [PATCH 098/192] iavf: Prevent changing static ITR values if adaptive moderation is on [ Upstream commit e792779e6b639c182df91b46ac1e5803460b0b15 ] Resolve being able to change static values on VF when adaptive interrupt moderation is enabled. This problem is fixed by checking the interrupt settings is not a combination of change of static value while adaptive interrupt moderation is turned on. Without this fix, the user would be able to change static values on VF with adaptive moderation enabled. Fixes: 65e87c0398f5 ("i40evf: support queue-specific settings for interrupt moderation") Signed-off-by: Nitesh B Venkatesh Tested-by: George Kuruvinakunnel Signed-off-by: Tony Nguyen Signed-off-by: Sasha Levin --- .../net/ethernet/intel/iavf/iavf_ethtool.c | 30 ++++++++++++++++--- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/drivers/net/ethernet/intel/iavf/iavf_ethtool.c b/drivers/net/ethernet/intel/iavf/iavf_ethtool.c index 144a776793597f..71b23922089fbb 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_ethtool.c +++ b/drivers/net/ethernet/intel/iavf/iavf_ethtool.c @@ -723,12 +723,31 @@ static int iavf_get_per_queue_coalesce(struct net_device *netdev, u32 queue, * * Change the ITR settings for a specific queue. **/ -static void iavf_set_itr_per_queue(struct iavf_adapter *adapter, - struct ethtool_coalesce *ec, int queue) +static int iavf_set_itr_per_queue(struct iavf_adapter *adapter, + struct ethtool_coalesce *ec, int queue) { struct iavf_ring *rx_ring = &adapter->rx_rings[queue]; struct iavf_ring *tx_ring = &adapter->tx_rings[queue]; struct iavf_q_vector *q_vector; + u16 itr_setting; + + itr_setting = rx_ring->itr_setting & ~IAVF_ITR_DYNAMIC; + + if (ec->rx_coalesce_usecs != itr_setting && + ec->use_adaptive_rx_coalesce) { + netif_info(adapter, drv, adapter->netdev, + "Rx interrupt throttling cannot be changed if adaptive-rx is enabled\n"); + return -EINVAL; + } + + itr_setting = tx_ring->itr_setting & ~IAVF_ITR_DYNAMIC; + + if (ec->tx_coalesce_usecs != itr_setting && + ec->use_adaptive_tx_coalesce) { + netif_info(adapter, drv, adapter->netdev, + "Tx interrupt throttling cannot be changed if adaptive-tx is enabled\n"); + return -EINVAL; + } rx_ring->itr_setting = ITR_REG_ALIGN(ec->rx_coalesce_usecs); tx_ring->itr_setting = ITR_REG_ALIGN(ec->tx_coalesce_usecs); @@ -751,6 +770,7 @@ static void iavf_set_itr_per_queue(struct iavf_adapter *adapter, * the Tx and Rx ITR values based on the values we have entered * into the q_vector, no need to write the values now. */ + return 0; } /** @@ -792,9 +812,11 @@ static int __iavf_set_coalesce(struct net_device *netdev, */ if (queue < 0) { for (i = 0; i < adapter->num_active_queues; i++) - iavf_set_itr_per_queue(adapter, ec, i); + if (iavf_set_itr_per_queue(adapter, ec, i)) + return -EINVAL; } else if (queue < adapter->num_active_queues) { - iavf_set_itr_per_queue(adapter, ec, queue); + if (iavf_set_itr_per_queue(adapter, ec, queue)) + return -EINVAL; } else { netif_info(adapter, drv, netdev, "Invalid queue value, queue range is 0 - %d\n", adapter->num_active_queues - 1); From 8d4b4e0f011479c17d588edbbba7b2a6de320ec6 Mon Sep 17 00:00:00 2001 From: Jedrzej Jagielski Date: Wed, 15 Sep 2021 09:01:00 +0000 Subject: [PATCH 099/192] iavf: Fix refreshing iavf adapter stats on ethtool request [ Upstream commit 3b5bdd18eb76e7570d9bacbcab6828a9b26ae121 ] Currently iavf adapter statistics are refreshed only in a watchdog task, triggered approximately every two seconds, which causes some ethtool requests to return outdated values. Add explicit statistics refresh when requested by ethtool -S. Fixes: b476b0030e61 ("iavf: Move commands processing to the separate function") Signed-off-by: Jan Sokolowski Signed-off-by: Jedrzej Jagielski Tested-by: Konrad Jankowski Signed-off-by: Tony Nguyen Signed-off-by: Sasha Levin --- drivers/net/ethernet/intel/iavf/iavf.h | 2 ++ drivers/net/ethernet/intel/iavf/iavf_ethtool.c | 3 +++ drivers/net/ethernet/intel/iavf/iavf_main.c | 18 ++++++++++++++++++ .../net/ethernet/intel/iavf/iavf_virtchnl.c | 2 ++ 4 files changed, 25 insertions(+) diff --git a/drivers/net/ethernet/intel/iavf/iavf.h b/drivers/net/ethernet/intel/iavf/iavf.h index 46312a4415baf7..dd81698f0d596a 100644 --- a/drivers/net/ethernet/intel/iavf/iavf.h +++ b/drivers/net/ethernet/intel/iavf/iavf.h @@ -305,6 +305,7 @@ struct iavf_adapter { #define IAVF_FLAG_AQ_DEL_FDIR_FILTER BIT(26) #define IAVF_FLAG_AQ_ADD_ADV_RSS_CFG BIT(27) #define IAVF_FLAG_AQ_DEL_ADV_RSS_CFG BIT(28) +#define IAVF_FLAG_AQ_REQUEST_STATS BIT(29) /* OS defined structs */ struct net_device *netdev; @@ -398,6 +399,7 @@ int iavf_up(struct iavf_adapter *adapter); void iavf_down(struct iavf_adapter *adapter); int iavf_process_config(struct iavf_adapter *adapter); void iavf_schedule_reset(struct iavf_adapter *adapter); +void iavf_schedule_request_stats(struct iavf_adapter *adapter); void iavf_reset(struct iavf_adapter *adapter); void iavf_set_ethtool_ops(struct net_device *netdev); void iavf_update_stats(struct iavf_adapter *adapter); diff --git a/drivers/net/ethernet/intel/iavf/iavf_ethtool.c b/drivers/net/ethernet/intel/iavf/iavf_ethtool.c index 71b23922089fbb..0cecaff38d0427 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_ethtool.c +++ b/drivers/net/ethernet/intel/iavf/iavf_ethtool.c @@ -354,6 +354,9 @@ static void iavf_get_ethtool_stats(struct net_device *netdev, struct iavf_adapter *adapter = netdev_priv(netdev); unsigned int i; + /* Explicitly request stats refresh */ + iavf_schedule_request_stats(adapter); + iavf_add_ethtool_stats(&data, adapter, iavf_gstrings_stats); rcu_read_lock(); diff --git a/drivers/net/ethernet/intel/iavf/iavf_main.c b/drivers/net/ethernet/intel/iavf/iavf_main.c index aaf8a2f396e46d..5173b6293c6d97 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_main.c +++ b/drivers/net/ethernet/intel/iavf/iavf_main.c @@ -165,6 +165,19 @@ void iavf_schedule_reset(struct iavf_adapter *adapter) } } +/** + * iavf_schedule_request_stats - Set the flags and schedule statistics request + * @adapter: board private structure + * + * Sets IAVF_FLAG_AQ_REQUEST_STATS flag so iavf_watchdog_task() will explicitly + * request and refresh ethtool stats + **/ +void iavf_schedule_request_stats(struct iavf_adapter *adapter) +{ + adapter->aq_required |= IAVF_FLAG_AQ_REQUEST_STATS; + mod_delayed_work(iavf_wq, &adapter->watchdog_task, 0); +} + /** * iavf_tx_timeout - Respond to a Tx Hang * @netdev: network interface device structure @@ -1700,6 +1713,11 @@ static int iavf_process_aq_command(struct iavf_adapter *adapter) iavf_del_adv_rss_cfg(adapter); return 0; } + if (adapter->aq_required & IAVF_FLAG_AQ_REQUEST_STATS) { + iavf_request_stats(adapter); + return 0; + } + return -EAGAIN; } diff --git a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c index 3c735968e1b852..33bde032ca37e1 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c +++ b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c @@ -784,6 +784,8 @@ void iavf_request_stats(struct iavf_adapter *adapter) /* no error message, this isn't crucial */ return; } + + adapter->aq_required &= ~IAVF_FLAG_AQ_REQUEST_STATS; adapter->current_op = VIRTCHNL_OP_GET_STATS; vqs.vsi_id = adapter->vsi_res->vsi_id; /* queue maps are ignored for this message - only the vsi is used */ From 229e70bf02d54b6c7bab1f18244c16c41dfae093 Mon Sep 17 00:00:00 2001 From: Brett Creeley Date: Fri, 5 Nov 2021 09:20:25 -0700 Subject: [PATCH 100/192] iavf: Fix VLAN feature flags after VFR [ Upstream commit 5951a2b9812d8227d33f20d1899fae60e4f72c04 ] When a VF goes through a reset, it's possible for the VF's feature set to change. For example it may lose the VIRTCHNL_VF_OFFLOAD_VLAN capability after VF reset. Unfortunately, the driver doesn't correctly deal with this situation and errors are seen from downing/upping the interface and/or moving the interface in/out of a network namespace. When setting the interface down/up we see the following errors after the VIRTCHNL_VF_OFFLOAD_VLAN capability was taken away from the VF: ice 0000:51:00.1: VF 1 failed opcode 12, retval: -64 iavf 0000:51:09.1: Failed to add VLAN filter, error IAVF_NOT_SUPPORTED ice 0000:51:00.1: VF 1 failed opcode 13, retval: -64 iavf 0000:51:09.1: Failed to delete VLAN filter, error IAVF_NOT_SUPPORTED These add/delete errors are happening because the VLAN filters are tracked internally to the driver and regardless of the VLAN_ALLOWED() setting the driver tries to delete/re-add them over virtchnl. Fix the delete failure by making sure to delete any VLAN filter tracking in the driver when a removal request is made, while preventing the virtchnl request. This makes it so the driver's VLAN list is up to date and the errors are Fix the add failure by making sure the check for VLAN_ALLOWED() during reset is done after the VF receives its capability list from the PF via VIRTCHNL_OP_GET_VF_RESOURCES. If VLAN functionality is not allowed, then prevent requesting re-adding the filters over virtchnl. When moving the interface into a network namespace we see the following errors after the VIRTCHNL_VF_OFFLOAD_VLAN capability was taken away from the VF: iavf 0000:51:09.1 enp81s0f1v1: NIC Link is Up Speed is 25 Gbps Full Duplex iavf 0000:51:09.1 temp_27: renamed from enp81s0f1v1 iavf 0000:51:09.1 mgmt: renamed from temp_27 iavf 0000:51:09.1 dev27: set_features() failed (-22); wanted 0x020190001fd54833, left 0x020190001fd54bb3 These errors are happening because we aren't correctly updating the netdev capabilities and dealing with ndo_fix_features() and ndo_set_features() correctly. Fix this by only reporting errors in the driver's ndo_set_features() callback when VIRTCHNL_VF_OFFLOAD_VLAN is not allowed and any attempt to enable the VLAN features is made. Also, make sure to disable VLAN insertion, filtering, and stripping since the VIRTCHNL_VF_OFFLOAD_VLAN flag applies to all of them and not just VLAN stripping. Also, after we process the capabilities in the VF reset path, make sure to call netdev_update_features() in case the capabilities have changed in order to update the netdev's feature set to match the VF's actual capabilities. Lastly, make sure to always report success on VLAN filter delete when VIRTCHNL_VF_OFFLOAD_VLAN is not supported. The changed flow in iavf_del_vlans() allows the stack to delete previosly existing VLAN filters even if VLAN filtering is not allowed. This makes it so the VLAN filter list is up to date. Fixes: 8774370d268f ("i40e/i40evf: support for VF VLAN tag stripping control") Signed-off-by: Brett Creeley Tested-by: Konrad Jankowski Signed-off-by: Tony Nguyen Signed-off-by: Sasha Levin --- drivers/net/ethernet/intel/iavf/iavf.h | 1 + drivers/net/ethernet/intel/iavf/iavf_main.c | 33 ++++++-------- .../net/ethernet/intel/iavf/iavf_virtchnl.c | 45 +++++++++++++++++-- 3 files changed, 56 insertions(+), 23 deletions(-) diff --git a/drivers/net/ethernet/intel/iavf/iavf.h b/drivers/net/ethernet/intel/iavf/iavf.h index dd81698f0d596a..0ae6da2992d018 100644 --- a/drivers/net/ethernet/intel/iavf/iavf.h +++ b/drivers/net/ethernet/intel/iavf/iavf.h @@ -457,4 +457,5 @@ void iavf_add_adv_rss_cfg(struct iavf_adapter *adapter); void iavf_del_adv_rss_cfg(struct iavf_adapter *adapter); struct iavf_mac_filter *iavf_add_filter(struct iavf_adapter *adapter, const u8 *macaddr); +int iavf_lock_timeout(struct mutex *lock, unsigned int msecs); #endif /* _IAVF_H_ */ diff --git a/drivers/net/ethernet/intel/iavf/iavf_main.c b/drivers/net/ethernet/intel/iavf/iavf_main.c index 5173b6293c6d97..fd3717ae70ab12 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_main.c +++ b/drivers/net/ethernet/intel/iavf/iavf_main.c @@ -138,7 +138,7 @@ enum iavf_status iavf_free_virt_mem_d(struct iavf_hw *hw, * * Returns 0 on success, negative on failure **/ -static int iavf_lock_timeout(struct mutex *lock, unsigned int msecs) +int iavf_lock_timeout(struct mutex *lock, unsigned int msecs) { unsigned int wait, delay = 10; @@ -708,13 +708,11 @@ static void iavf_del_vlan(struct iavf_adapter *adapter, u16 vlan) **/ static void iavf_restore_filters(struct iavf_adapter *adapter) { - /* re-add all VLAN filters */ - if (VLAN_ALLOWED(adapter)) { - u16 vid; + u16 vid; - for_each_set_bit(vid, adapter->vsi.active_vlans, VLAN_N_VID) - iavf_add_vlan(adapter, vid); - } + /* re-add all VLAN filters */ + for_each_set_bit(vid, adapter->vsi.active_vlans, VLAN_N_VID) + iavf_add_vlan(adapter, vid); } /** @@ -749,9 +747,6 @@ static int iavf_vlan_rx_kill_vid(struct net_device *netdev, { struct iavf_adapter *adapter = netdev_priv(netdev); - if (!VLAN_ALLOWED(adapter)) - return -EIO; - iavf_del_vlan(adapter, vid); clear_bit(vid, adapter->vsi.active_vlans); @@ -2142,7 +2137,6 @@ static void iavf_reset_task(struct work_struct *work) struct net_device *netdev = adapter->netdev; struct iavf_hw *hw = &adapter->hw; struct iavf_mac_filter *f, *ftmp; - struct iavf_vlan_filter *vlf; struct iavf_cloud_filter *cf; u32 reg_val; int i = 0, err; @@ -2282,11 +2276,6 @@ static void iavf_reset_task(struct work_struct *work) list_for_each_entry(f, &adapter->mac_filter_list, list) { f->add = true; } - /* re-add all VLAN filters */ - list_for_each_entry(vlf, &adapter->vlan_filter_list, list) { - vlf->add = true; - } - spin_unlock_bh(&adapter->mac_vlan_list_lock); /* check if TCs are running and re-add all cloud filters */ @@ -2300,7 +2289,6 @@ static void iavf_reset_task(struct work_struct *work) spin_unlock_bh(&adapter->cloud_filter_list_lock); adapter->aq_required |= IAVF_FLAG_AQ_ADD_MAC_FILTER; - adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER; adapter->aq_required |= IAVF_FLAG_AQ_ADD_CLOUD_FILTER; iavf_misc_irq_enable(adapter); @@ -3398,11 +3386,16 @@ static int iavf_set_features(struct net_device *netdev, { struct iavf_adapter *adapter = netdev_priv(netdev); - /* Don't allow changing VLAN_RX flag when adapter is not capable - * of VLAN offload + /* Don't allow enabling VLAN features when adapter is not capable + * of VLAN offload/filtering */ if (!VLAN_ALLOWED(adapter)) { - if ((netdev->features ^ features) & NETIF_F_HW_VLAN_CTAG_RX) + netdev->hw_features &= ~(NETIF_F_HW_VLAN_CTAG_RX | + NETIF_F_HW_VLAN_CTAG_TX | + NETIF_F_HW_VLAN_CTAG_FILTER); + if (features & (NETIF_F_HW_VLAN_CTAG_RX | + NETIF_F_HW_VLAN_CTAG_TX | + NETIF_F_HW_VLAN_CTAG_FILTER)) return -EINVAL; } else if ((netdev->features ^ features) & NETIF_F_HW_VLAN_CTAG_RX) { if (features & NETIF_F_HW_VLAN_CTAG_RX) diff --git a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c index 33bde032ca37e1..08302ab35d6876 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c +++ b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c @@ -607,7 +607,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter) if (f->add) count++; } - if (!count) { + if (!count || !VLAN_ALLOWED(adapter)) { adapter->aq_required &= ~IAVF_FLAG_AQ_ADD_VLAN_FILTER; spin_unlock_bh(&adapter->mac_vlan_list_lock); return; @@ -673,9 +673,19 @@ void iavf_del_vlans(struct iavf_adapter *adapter) spin_lock_bh(&adapter->mac_vlan_list_lock); - list_for_each_entry(f, &adapter->vlan_filter_list, list) { - if (f->remove) + list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) { + /* since VLAN capabilities are not allowed, we dont want to send + * a VLAN delete request because it will most likely fail and + * create unnecessary errors/noise, so just free the VLAN + * filters marked for removal to enable bailing out before + * sending a virtchnl message + */ + if (f->remove && !VLAN_ALLOWED(adapter)) { + list_del(&f->list); + kfree(f); + } else if (f->remove) { count++; + } } if (!count) { adapter->aq_required &= ~IAVF_FLAG_AQ_DEL_VLAN_FILTER; @@ -1724,8 +1734,37 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter, } spin_lock_bh(&adapter->mac_vlan_list_lock); iavf_add_filter(adapter, adapter->hw.mac.addr); + + if (VLAN_ALLOWED(adapter)) { + if (!list_empty(&adapter->vlan_filter_list)) { + struct iavf_vlan_filter *vlf; + + /* re-add all VLAN filters over virtchnl */ + list_for_each_entry(vlf, + &adapter->vlan_filter_list, + list) + vlf->add = true; + + adapter->aq_required |= + IAVF_FLAG_AQ_ADD_VLAN_FILTER; + } + } + spin_unlock_bh(&adapter->mac_vlan_list_lock); iavf_process_config(adapter); + + /* unlock crit_lock before acquiring rtnl_lock as other + * processes holding rtnl_lock could be waiting for the same + * crit_lock + */ + mutex_unlock(&adapter->crit_lock); + rtnl_lock(); + netdev_update_features(adapter->netdev); + rtnl_unlock(); + if (iavf_lock_timeout(&adapter->crit_lock, 10000)) + dev_warn(&adapter->pdev->dev, "failed to acquire crit_lock in %s\n", + __FUNCTION__); + } break; case VIRTCHNL_OP_ENABLE_QUEUES: From 7c7cfc9da0267ffa397a3242fe0d00b5d5f01408 Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Wed, 6 Oct 2021 08:19:50 +0200 Subject: [PATCH 101/192] x86/pvh: add prototype for xen_pvh_init() [ Upstream commit 767216796cb9ae7f1e3bdf43a7b13b2bf100c2d2 ] xen_pvh_init() is lacking a prototype in a header, add it. Reported-by: kernel test robot Signed-off-by: Juergen Gross Link: https://lore.kernel.org/r/20211006061950.9227-1-jgross@suse.com Reviewed-by: Boris Ostrovsky Signed-off-by: Boris Ostrovsky Signed-off-by: Sasha Levin --- arch/x86/include/asm/xen/hypervisor.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h index ff4b52e37e60da..4957f59deb40bd 100644 --- a/arch/x86/include/asm/xen/hypervisor.h +++ b/arch/x86/include/asm/xen/hypervisor.h @@ -62,4 +62,8 @@ void xen_arch_register_cpu(int num); void xen_arch_unregister_cpu(int num); #endif +#ifdef CONFIG_PVH +void __init xen_pvh_init(struct boot_params *boot_params); +#endif + #endif /* _ASM_X86_XEN_HYPERVISOR_H */ From c6db0b15ced03150640b375e5192a7c136542fcc Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Fri, 19 Nov 2021 16:39:13 +0100 Subject: [PATCH 102/192] xen/pvh: add missing prototype to header [ Upstream commit 2a0991929aba0a3dd6fe51d1daba06a93a96a021 ] The prototype of mem_map_via_hcall() is missing in its header, so add it. Reported-by: kernel test robot Fixes: a43fb7da53007e67ad ("xen/pvh: Move Xen code for getting mem map via hcall out of common file") Signed-off-by: Juergen Gross Link: https://lore.kernel.org/r/20211119153913.21678-1-jgross@suse.com Reviewed-by: Boris Ostrovsky Signed-off-by: Boris Ostrovsky Signed-off-by: Sasha Levin --- arch/x86/include/asm/xen/hypervisor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h index 4957f59deb40bd..5adab895127e19 100644 --- a/arch/x86/include/asm/xen/hypervisor.h +++ b/arch/x86/include/asm/xen/hypervisor.h @@ -64,6 +64,7 @@ void xen_arch_unregister_cpu(int num); #ifdef CONFIG_PVH void __init xen_pvh_init(struct boot_params *boot_params); +void __init mem_map_via_hcall(struct boot_params *boot_params_p); #endif #endif /* _ASM_X86_XEN_HYPERVISOR_H */ From 26c3603a2a885cfd0b717788cd2342f085026bec Mon Sep 17 00:00:00 2001 From: Pierre-Louis Bossart Date: Wed, 27 Oct 2021 10:32:54 +0800 Subject: [PATCH 103/192] ALSA: intel-dsp-config: add quirk for JSL devices based on ES8336 codec [ Upstream commit fa9730b4f28b7bd183d28a0bf636ab7108de35d7 ] These devices are based on an I2C/I2S device, we need to force the use of the SOF driver otherwise the legacy HDaudio driver will be loaded - only HDMI will be supported. We previously added support for other Intel platforms but missed JasperLake. BugLink: https://github.com/thesofproject/linux/issues/3210 Fixes: 9d36ceab9415 ('ALSA: intel-dsp-config: add quirk for APL/GLK/TGL devices based on ES8336 codec') Signed-off-by: Pierre-Louis Bossart Reviewed-by: Kai Vehmanen Signed-off-by: Bard Liao Link: https://lore.kernel.org/r/20211027023254.24955-1-yung-chuan.liao@linux.intel.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/hda/intel-dsp-config.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c index b9ac9e9e45a484..10a0bffc3cf6c2 100644 --- a/sound/hda/intel-dsp-config.c +++ b/sound/hda/intel-dsp-config.c @@ -299,6 +299,15 @@ static const struct config_entry config_table[] = { }, #endif +/* JasperLake */ +#if IS_ENABLED(CONFIG_SND_SOC_SOF_JASPERLAKE) + { + .flags = FLAG_SOF, + .device = 0x4dc8, + .codec_hid = "ESSX8336", + }, +#endif + /* Tigerlake */ #if IS_ENABLED(CONFIG_SND_SOC_SOF_TIGERLAKE) { From 10ef3a1c9377e2d1e38697a954788402e06b8ef0 Mon Sep 17 00:00:00 2001 From: Eric Dumazet Date: Fri, 19 Nov 2021 15:27:54 +0100 Subject: [PATCH 104/192] mptcp: fix delack timer [ Upstream commit ee50e67ba0e17b1a1a8d76691d02eadf9e0f392c ] To compute the rtx timeout schedule_3rdack_retransmission() does multiple things in the wrong way: srtt_us is measured in usec/8 and the timeout itself is an absolute value. Fixes: ec3edaa7ca6ce02f ("mptcp: Add handling of outgoing MP_JOIN requests") Acked-by: Paolo Abeni Reviewed-by: Mat Martineau @linux.intel.com> Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/mptcp/options.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/mptcp/options.c b/net/mptcp/options.c index 350348f070700d..3fcc2e0c8a5dfb 100644 --- a/net/mptcp/options.c +++ b/net/mptcp/options.c @@ -434,9 +434,10 @@ static void schedule_3rdack_retransmission(struct sock *sk) /* reschedule with a timeout above RTT, as we must look only for drop */ if (tp->srtt_us) - timeout = tp->srtt_us << 1; + timeout = usecs_to_jiffies(tp->srtt_us >> (3 - 1)); else timeout = TCP_TIMEOUT_INIT; + timeout += jiffies; WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER); icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER; From 97e5d85030c5544e704d5367414b5aca846581e7 Mon Sep 17 00:00:00 2001 From: Paolo Abeni Date: Fri, 19 Nov 2021 15:27:55 +0100 Subject: [PATCH 105/192] mptcp: use delegate action to schedule 3rd ack retrans [ Upstream commit bcd97734318d1d87bb237dbc0a60c81237b0ac50 ] Scheduling a delack in mptcp_established_options_mp() is not a good idea: such function is called by tcp_send_ack() and the pending delayed ack will be cleared shortly after by the tcp_event_ack_sent() call in __tcp_transmit_skb(). Instead use the mptcp delegated action infrastructure to schedule the delayed ack after the current bh processing completes. Additionally moves the schedule_3rdack_retransmission() helper into protocol.c to avoid making it visible in a different compilation unit. Fixes: ec3edaa7ca6ce02f ("mptcp: Add handling of outgoing MP_JOIN requests") Reviewed-by: Mat Martineau @linux.intel.com> Signed-off-by: Paolo Abeni Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/mptcp/options.c | 33 ++++++++-------------------- net/mptcp/protocol.c | 51 ++++++++++++++++++++++++++++++++++++-------- net/mptcp/protocol.h | 17 ++++++++------- 3 files changed, 60 insertions(+), 41 deletions(-) diff --git a/net/mptcp/options.c b/net/mptcp/options.c index 3fcc2e0c8a5dfb..0966855a7c251c 100644 --- a/net/mptcp/options.c +++ b/net/mptcp/options.c @@ -422,29 +422,6 @@ bool mptcp_syn_options(struct sock *sk, const struct sk_buff *skb, return false; } -/* MP_JOIN client subflow must wait for 4th ack before sending any data: - * TCP can't schedule delack timer before the subflow is fully established. - * MPTCP uses the delack timer to do 3rd ack retransmissions - */ -static void schedule_3rdack_retransmission(struct sock *sk) -{ - struct inet_connection_sock *icsk = inet_csk(sk); - struct tcp_sock *tp = tcp_sk(sk); - unsigned long timeout; - - /* reschedule with a timeout above RTT, as we must look only for drop */ - if (tp->srtt_us) - timeout = usecs_to_jiffies(tp->srtt_us >> (3 - 1)); - else - timeout = TCP_TIMEOUT_INIT; - timeout += jiffies; - - WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER); - icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER; - icsk->icsk_ack.timeout = timeout; - sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout); -} - static void clear_3rdack_retransmission(struct sock *sk) { struct inet_connection_sock *icsk = inet_csk(sk); @@ -527,7 +504,15 @@ static bool mptcp_established_options_mp(struct sock *sk, struct sk_buff *skb, *size = TCPOLEN_MPTCP_MPJ_ACK; pr_debug("subflow=%p", subflow); - schedule_3rdack_retransmission(sk); + /* we can use the full delegate action helper only from BH context + * If we are in process context - sk is flushing the backlog at + * socket lock release time - just set the appropriate flag, will + * be handled by the release callback + */ + if (sock_owned_by_user(sk)) + set_bit(MPTCP_DELEGATE_ACK, &subflow->delegated_status); + else + mptcp_subflow_delegate(subflow, MPTCP_DELEGATE_ACK); return true; } return false; diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c index 4379d69aead7eb..421fa62ce5cdf4 100644 --- a/net/mptcp/protocol.c +++ b/net/mptcp/protocol.c @@ -1621,7 +1621,8 @@ static void __mptcp_subflow_push_pending(struct sock *sk, struct sock *ssk) if (!xmit_ssk) goto out; if (xmit_ssk != ssk) { - mptcp_subflow_delegate(mptcp_subflow_ctx(xmit_ssk)); + mptcp_subflow_delegate(mptcp_subflow_ctx(xmit_ssk), + MPTCP_DELEGATE_SEND); goto out; } @@ -2959,7 +2960,7 @@ void __mptcp_check_push(struct sock *sk, struct sock *ssk) if (xmit_ssk == ssk) __mptcp_subflow_push_pending(sk, ssk); else if (xmit_ssk) - mptcp_subflow_delegate(mptcp_subflow_ctx(xmit_ssk)); + mptcp_subflow_delegate(mptcp_subflow_ctx(xmit_ssk), MPTCP_DELEGATE_SEND); } else { set_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->flags); } @@ -3013,18 +3014,50 @@ static void mptcp_release_cb(struct sock *sk) __mptcp_update_rmem(sk); } +/* MP_JOIN client subflow must wait for 4th ack before sending any data: + * TCP can't schedule delack timer before the subflow is fully established. + * MPTCP uses the delack timer to do 3rd ack retransmissions + */ +static void schedule_3rdack_retransmission(struct sock *ssk) +{ + struct inet_connection_sock *icsk = inet_csk(ssk); + struct tcp_sock *tp = tcp_sk(ssk); + unsigned long timeout; + + if (mptcp_subflow_ctx(ssk)->fully_established) + return; + + /* reschedule with a timeout above RTT, as we must look only for drop */ + if (tp->srtt_us) + timeout = usecs_to_jiffies(tp->srtt_us >> (3 - 1)); + else + timeout = TCP_TIMEOUT_INIT; + timeout += jiffies; + + WARN_ON_ONCE(icsk->icsk_ack.pending & ICSK_ACK_TIMER); + icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER; + icsk->icsk_ack.timeout = timeout; + sk_reset_timer(ssk, &icsk->icsk_delack_timer, timeout); +} + void mptcp_subflow_process_delegated(struct sock *ssk) { struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); struct sock *sk = subflow->conn; - mptcp_data_lock(sk); - if (!sock_owned_by_user(sk)) - __mptcp_subflow_push_pending(sk, ssk); - else - set_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->flags); - mptcp_data_unlock(sk); - mptcp_subflow_delegated_done(subflow); + if (test_bit(MPTCP_DELEGATE_SEND, &subflow->delegated_status)) { + mptcp_data_lock(sk); + if (!sock_owned_by_user(sk)) + __mptcp_subflow_push_pending(sk, ssk); + else + set_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->flags); + mptcp_data_unlock(sk); + mptcp_subflow_delegated_done(subflow, MPTCP_DELEGATE_SEND); + } + if (test_bit(MPTCP_DELEGATE_ACK, &subflow->delegated_status)) { + schedule_3rdack_retransmission(ssk); + mptcp_subflow_delegated_done(subflow, MPTCP_DELEGATE_ACK); + } } static int mptcp_hash(struct sock *sk) diff --git a/net/mptcp/protocol.h b/net/mptcp/protocol.h index dc984676c5eb15..82c5dc4d6b49d8 100644 --- a/net/mptcp/protocol.h +++ b/net/mptcp/protocol.h @@ -401,6 +401,7 @@ struct mptcp_delegated_action { DECLARE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions); #define MPTCP_DELEGATE_SEND 0 +#define MPTCP_DELEGATE_ACK 1 /* MPTCP subflow context */ struct mptcp_subflow_context { @@ -506,23 +507,23 @@ static inline void mptcp_add_pending_subflow(struct mptcp_sock *msk, void mptcp_subflow_process_delegated(struct sock *ssk); -static inline void mptcp_subflow_delegate(struct mptcp_subflow_context *subflow) +static inline void mptcp_subflow_delegate(struct mptcp_subflow_context *subflow, int action) { struct mptcp_delegated_action *delegated; bool schedule; + /* the caller held the subflow bh socket lock */ + lockdep_assert_in_softirq(); + /* The implied barrier pairs with mptcp_subflow_delegated_done(), and * ensures the below list check sees list updates done prior to status * bit changes */ - if (!test_and_set_bit(MPTCP_DELEGATE_SEND, &subflow->delegated_status)) { + if (!test_and_set_bit(action, &subflow->delegated_status)) { /* still on delegated list from previous scheduling */ if (!list_empty(&subflow->delegated_node)) return; - /* the caller held the subflow bh socket lock */ - lockdep_assert_in_softirq(); - delegated = this_cpu_ptr(&mptcp_delegated_actions); schedule = list_empty(&delegated->head); list_add_tail(&subflow->delegated_node, &delegated->head); @@ -547,16 +548,16 @@ mptcp_subflow_delegated_next(struct mptcp_delegated_action *delegated) static inline bool mptcp_subflow_has_delegated_action(const struct mptcp_subflow_context *subflow) { - return test_bit(MPTCP_DELEGATE_SEND, &subflow->delegated_status); + return !!READ_ONCE(subflow->delegated_status); } -static inline void mptcp_subflow_delegated_done(struct mptcp_subflow_context *subflow) +static inline void mptcp_subflow_delegated_done(struct mptcp_subflow_context *subflow, int action) { /* pairs with mptcp_subflow_delegate, ensures delegate_node is updated before * touching the status bit */ smp_wmb(); - clear_bit(MPTCP_DELEGATE_SEND, &subflow->delegated_status); + clear_bit(action, &subflow->delegated_status); } int mptcp_is_enabled(const struct net *net); From 80d709875d920f7ca959040457b7393df706fe44 Mon Sep 17 00:00:00 2001 From: Vincent Whitchurch Date: Fri, 19 Nov 2021 13:05:21 +0100 Subject: [PATCH 106/192] af_unix: fix regression in read after shutdown [ Upstream commit f9390b249c90a15a4d9e69fbfb7a53c860b1fcaf ] On kernels before v5.15, calling read() on a unix socket after shutdown(SHUT_RD) or shutdown(SHUT_RDWR) would return the data previously written or EOF. But now, while read() after shutdown(SHUT_RD) still behaves the same way, read() after shutdown(SHUT_RDWR) always fails with -EINVAL. This behaviour change was apparently inadvertently introduced as part of a bug fix for a different regression caused by the commit adding sockmap support to af_unix, commit 94531cfcbe79c359 ("af_unix: Add unix_stream_proto for sockmap"). Those commits, for unclear reasons, started setting the socket state to TCP_CLOSE on shutdown(SHUT_RDWR), while this state change had previously only been done in unix_release_sock(). Restore the original behaviour. The sockmap tests in tests/selftests/bpf continue to pass after this patch. Fixes: d0c6416bd7091647f60 ("unix: Fix an issue in unix_shutdown causing the other end read/write failures") Link: https://lore.kernel.org/lkml/20211111140000.GA10779@axis.com/ Signed-off-by: Vincent Whitchurch Tested-by: Casey Schaufler Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/unix/af_unix.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 78e08e82c08c42..b0bfc78e421cee 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -2882,9 +2882,6 @@ static int unix_shutdown(struct socket *sock, int mode) unix_state_lock(sk); sk->sk_shutdown |= mode; - if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) && - mode == SHUTDOWN_MASK) - sk->sk_state = TCP_CLOSE; other = unix_peer(sk); if (other) sock_hold(other); From 88f6b5f10fd199f3dc2c5362e6e8507fb24fce0e Mon Sep 17 00:00:00 2001 From: Michael Kelley Date: Fri, 19 Nov 2021 15:39:01 -0800 Subject: [PATCH 107/192] firmware: smccc: Fix check for ARCH_SOC_ID not implemented [ Upstream commit e95d8eaee21cd0d117d34125d4cdc97489c1ab82 ] The ARCH_FEATURES function ID is a 32-bit SMC call, which returns a 32-bit result per the SMCCC spec. Current code is doing a 64-bit comparison against -1 (SMCCC_RET_NOT_SUPPORTED) to detect that the feature is unimplemented. That check doesn't work in a Hyper-V VM, where the upper 32-bits are zero as allowed by the spec. Cast the result as an 'int' so the comparison works. The change also makes the code consistent with other similar checks in this file. Fixes: 821b67fa4639 ("firmware: smccc: Add ARCH_SOC_ID support") Signed-off-by: Michael Kelley Reviewed-by: Sudeep Holla Signed-off-by: Arnd Bergmann Signed-off-by: Sasha Levin --- drivers/firmware/smccc/soc_id.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/firmware/smccc/soc_id.c b/drivers/firmware/smccc/soc_id.c index 581aa5e9b0778b..dd7c3d5e8b0bba 100644 --- a/drivers/firmware/smccc/soc_id.c +++ b/drivers/firmware/smccc/soc_id.c @@ -50,7 +50,7 @@ static int __init smccc_soc_init(void) arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_FEATURES_FUNC_ID, ARM_SMCCC_ARCH_SOC_ID, &res); - if (res.a0 == SMCCC_RET_NOT_SUPPORTED) { + if ((int)res.a0 == SMCCC_RET_NOT_SUPPORTED) { pr_info("ARCH_SOC_ID not implemented, skipping ....\n"); return 0; } From f1f243c06675914ed5f50fea813c9620dae68dd2 Mon Sep 17 00:00:00 2001 From: Eric Dumazet Date: Thu, 18 Nov 2021 17:37:58 -0800 Subject: [PATCH 108/192] ipv6: fix typos in __ip6_finish_output() [ Upstream commit 19d36c5f294879949c9d6f57cb61d39cc4c48553 ] We deal with IPv6 packets, so we need to use IP6CB(skb)->flags and IP6SKB_REROUTED, instead of IPCB(skb)->flags and IPSKB_REROUTED Found by code inspection, please double check that fixing this bug does not surface other bugs. Fixes: 09ee9dba9611 ("ipv6: Reinject IPv6 packets if IPsec policy matches after SNAT") Signed-off-by: Eric Dumazet Cc: Tobias Brunner Cc: Steffen Klassert Cc: David Ahern Reviewed-by: David Ahern Tested-by: Tobias Brunner Acked-by: Tobias Brunner Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/ipv6/ip6_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 2f044a49afa8cf..ff4e83e2a50683 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -174,7 +174,7 @@ static int __ip6_finish_output(struct net *net, struct sock *sk, struct sk_buff #if defined(CONFIG_NETFILTER) && defined(CONFIG_XFRM) /* Policy lookup after SNAT yielded a new policy */ if (skb_dst(skb)->xfrm) { - IPCB(skb)->flags |= IPSKB_REROUTED; + IP6CB(skb)->flags |= IP6SKB_REROUTED; return dst_output(net, sk, skb); } #endif From f6cd576855671ff94f62c57f3d8ecf5fa09b1e30 Mon Sep 17 00:00:00 2001 From: Diana Wang Date: Fri, 19 Nov 2021 14:38:03 +0100 Subject: [PATCH 109/192] nfp: checking parameter process for rx-usecs/tx-usecs is invalid [ Upstream commit 3bd6b2a838ba6a3b86d41b077f570b1b61174def ] Use nn->tlv_caps.me_freq_mhz instead of nn->me_freq_mhz to check whether rx-usecs/tx-usecs is valid. This is because nn->tlv_caps.me_freq_mhz represents the clock_freq (MHz) of the flow processing cores (FPC) on the NIC. While nn->me_freq_mhz is not be set. Fixes: ce991ab6662a ("nfp: read ME frequency from vNIC ctrl memory") Signed-off-by: Diana Wang Signed-off-by: Simon Horman Reviewed-by: Jakub Kicinski Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ethernet/netronome/nfp/nfp_net.h | 3 --- drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net.h b/drivers/net/ethernet/netronome/nfp/nfp_net.h index df203738511bfd..0b1865e9f0b596 100644 --- a/drivers/net/ethernet/netronome/nfp/nfp_net.h +++ b/drivers/net/ethernet/netronome/nfp/nfp_net.h @@ -565,7 +565,6 @@ struct nfp_net_dp { * @exn_name: Name for Exception interrupt * @shared_handler: Handler for shared interrupts * @shared_name: Name for shared interrupt - * @me_freq_mhz: ME clock_freq (MHz) * @reconfig_lock: Protects @reconfig_posted, @reconfig_timer_active, * @reconfig_sync_present and HW reconfiguration request * regs/machinery from async requests (sync must take @@ -650,8 +649,6 @@ struct nfp_net { irq_handler_t shared_handler; char shared_name[IFNAMSIZ + 8]; - u32 me_freq_mhz; - bool link_up; spinlock_t link_status_lock; diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c b/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c index 0685ece1f155d9..be1a358baadb92 100644 --- a/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c +++ b/drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c @@ -1343,7 +1343,7 @@ static int nfp_net_set_coalesce(struct net_device *netdev, * ME timestamp ticks. There are 16 ME clock cycles for each timestamp * count. */ - factor = nn->me_freq_mhz / 16; + factor = nn->tlv_caps.me_freq_mhz / 16; /* Each pair of (usecs, max_frames) fields specifies that interrupts * should be coalesced until From 8d196fa5a901239693bfcc119791cb8c3e18fa98 Mon Sep 17 00:00:00 2001 From: Holger Assmann Date: Sun, 21 Nov 2021 19:57:04 +0200 Subject: [PATCH 110/192] net: stmmac: retain PTP clock time during SIOCSHWTSTAMP ioctls [ Upstream commit a6da2bbb0005e6b4909472962c9d0af29e75dd06 ] Currently, when user space emits SIOCSHWTSTAMP ioctl calls such as enabling/disabling timestamping or changing filter settings, the driver reads the current CLOCK_REALTIME value and programming this into the NIC's hardware clock. This might be necessary during system initialization, but at runtime, when the PTP clock has already been synchronized to a grandmaster, a reset of the timestamp settings might result in a clock jump. Furthermore, if the clock is also controlled by phc2sys in automatic mode (where the UTC offset is queried from ptp4l), that UTC-to-TAI offset (currently 37 seconds in 2021) would be temporarily reset to 0, and it would take a long time for phc2sys to readjust so that CLOCK_REALTIME and the PHC are apart by 37 seconds again. To address the issue, we introduce a new function called stmmac_init_tstamp_counter(), which gets called during ndo_open(). It contains the code snippet moved from stmmac_hwtstamp_set() that manages the time synchronization. Besides, the sub second increment configuration is also moved here since the related values are hardware dependent and runtime invariant. Furthermore, the hardware clock must be kept running even when no time stamping mode is selected in order to retain the synchronized time base. That way, timestamping can be enabled again at any time only with the need to compensate the clock's natural drifting. As a side effect, this patch fixes the issue that ptp_clock_info::enable can be called before SIOCSHWTSTAMP and the driver (which looks at priv->systime_flags) was not prepared to handle that ordering. Fixes: 92ba6888510c ("stmmac: add the support for PTP hw clock driver") Reported-by: Michael Olbrich Signed-off-by: Ahmad Fatoum Signed-off-by: Holger Assmann Signed-off-by: Vladimir Oltean Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ethernet/stmicro/stmmac/stmmac.h | 1 + .../net/ethernet/stmicro/stmmac/stmmac_main.c | 125 +++++++++++------- .../ethernet/stmicro/stmmac/stmmac_platform.c | 2 +- 3 files changed, 81 insertions(+), 47 deletions(-) diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac.h b/drivers/net/ethernet/stmicro/stmmac/stmmac.h index 43eead726886a0..5f129733aabd2e 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac.h +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac.h @@ -314,6 +314,7 @@ int stmmac_mdio_reset(struct mii_bus *mii); int stmmac_xpcs_setup(struct mii_bus *mii); void stmmac_set_ethtool_ops(struct net_device *netdev); +int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags); void stmmac_ptp_register(struct stmmac_priv *priv); void stmmac_ptp_unregister(struct stmmac_priv *priv); int stmmac_open(struct net_device *dev); diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index 0ab20e2f984b9a..c18c05f78c2089 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -50,6 +50,13 @@ #include "dwxgmac2.h" #include "hwif.h" +/* As long as the interface is active, we keep the timestamping counter enabled + * with fine resolution and binary rollover. This avoid non-monotonic behavior + * (clock jumps) when changing timestamping settings at runtime. + */ +#define STMMAC_HWTS_ACTIVE (PTP_TCR_TSENA | PTP_TCR_TSCFUPDT | \ + PTP_TCR_TSCTRLSSR) + #define STMMAC_ALIGN(x) ALIGN(ALIGN(x, SMP_CACHE_BYTES), 16) #define TSO_MAX_BUFF_SIZE (SZ_16K - 1) @@ -613,8 +620,6 @@ static int stmmac_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) { struct stmmac_priv *priv = netdev_priv(dev); struct hwtstamp_config config; - struct timespec64 now; - u64 temp = 0; u32 ptp_v2 = 0; u32 tstamp_all = 0; u32 ptp_over_ipv4_udp = 0; @@ -623,11 +628,6 @@ static int stmmac_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) u32 snap_type_sel = 0; u32 ts_master_en = 0; u32 ts_event_en = 0; - u32 sec_inc = 0; - u32 value = 0; - bool xmac; - - xmac = priv->plat->has_gmac4 || priv->plat->has_xgmac; if (!(priv->dma_cap.time_stamp || priv->adv_ts)) { netdev_alert(priv->dev, "No support for HW time stamping\n"); @@ -789,42 +789,17 @@ static int stmmac_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) priv->hwts_rx_en = ((config.rx_filter == HWTSTAMP_FILTER_NONE) ? 0 : 1); priv->hwts_tx_en = config.tx_type == HWTSTAMP_TX_ON; - if (!priv->hwts_tx_en && !priv->hwts_rx_en) - stmmac_config_hw_tstamping(priv, priv->ptpaddr, 0); - else { - value = (PTP_TCR_TSENA | PTP_TCR_TSCFUPDT | PTP_TCR_TSCTRLSSR | - tstamp_all | ptp_v2 | ptp_over_ethernet | - ptp_over_ipv6_udp | ptp_over_ipv4_udp | ts_event_en | - ts_master_en | snap_type_sel); - stmmac_config_hw_tstamping(priv, priv->ptpaddr, value); - - /* program Sub Second Increment reg */ - stmmac_config_sub_second_increment(priv, - priv->ptpaddr, priv->plat->clk_ptp_rate, - xmac, &sec_inc); - temp = div_u64(1000000000ULL, sec_inc); - - /* Store sub second increment and flags for later use */ - priv->sub_second_inc = sec_inc; - priv->systime_flags = value; - - /* calculate default added value: - * formula is : - * addend = (2^32)/freq_div_ratio; - * where, freq_div_ratio = 1e9ns/sec_inc - */ - temp = (u64)(temp << 32); - priv->default_addend = div_u64(temp, priv->plat->clk_ptp_rate); - stmmac_config_addend(priv, priv->ptpaddr, priv->default_addend); - - /* initialize system time */ - ktime_get_real_ts64(&now); + priv->systime_flags = STMMAC_HWTS_ACTIVE; - /* lower 32 bits of tv_sec are safe until y2106 */ - stmmac_init_systime(priv, priv->ptpaddr, - (u32)now.tv_sec, now.tv_nsec); + if (priv->hwts_tx_en || priv->hwts_rx_en) { + priv->systime_flags |= tstamp_all | ptp_v2 | + ptp_over_ethernet | ptp_over_ipv6_udp | + ptp_over_ipv4_udp | ts_event_en | + ts_master_en | snap_type_sel; } + stmmac_config_hw_tstamping(priv, priv->ptpaddr, priv->systime_flags); + memcpy(&priv->tstamp_config, &config, sizeof(config)); return copy_to_user(ifr->ifr_data, &config, @@ -852,6 +827,66 @@ static int stmmac_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) sizeof(*config)) ? -EFAULT : 0; } +/** + * stmmac_init_tstamp_counter - init hardware timestamping counter + * @priv: driver private structure + * @systime_flags: timestamping flags + * Description: + * Initialize hardware counter for packet timestamping. + * This is valid as long as the interface is open and not suspended. + * Will be rerun after resuming from suspend, case in which the timestamping + * flags updated by stmmac_hwtstamp_set() also need to be restored. + */ +int stmmac_init_tstamp_counter(struct stmmac_priv *priv, u32 systime_flags) +{ + bool xmac = priv->plat->has_gmac4 || priv->plat->has_xgmac; + struct timespec64 now; + u32 sec_inc = 0; + u64 temp = 0; + int ret; + + if (!(priv->dma_cap.time_stamp || priv->dma_cap.atime_stamp)) + return -EOPNOTSUPP; + + ret = clk_prepare_enable(priv->plat->clk_ptp_ref); + if (ret < 0) { + netdev_warn(priv->dev, + "failed to enable PTP reference clock: %pe\n", + ERR_PTR(ret)); + return ret; + } + + stmmac_config_hw_tstamping(priv, priv->ptpaddr, systime_flags); + priv->systime_flags = systime_flags; + + /* program Sub Second Increment reg */ + stmmac_config_sub_second_increment(priv, priv->ptpaddr, + priv->plat->clk_ptp_rate, + xmac, &sec_inc); + temp = div_u64(1000000000ULL, sec_inc); + + /* Store sub second increment for later use */ + priv->sub_second_inc = sec_inc; + + /* calculate default added value: + * formula is : + * addend = (2^32)/freq_div_ratio; + * where, freq_div_ratio = 1e9ns/sec_inc + */ + temp = (u64)(temp << 32); + priv->default_addend = div_u64(temp, priv->plat->clk_ptp_rate); + stmmac_config_addend(priv, priv->ptpaddr, priv->default_addend); + + /* initialize system time */ + ktime_get_real_ts64(&now); + + /* lower 32 bits of tv_sec are safe until y2106 */ + stmmac_init_systime(priv, priv->ptpaddr, (u32)now.tv_sec, now.tv_nsec); + + return 0; +} +EXPORT_SYMBOL_GPL(stmmac_init_tstamp_counter); + /** * stmmac_init_ptp - init PTP * @priv: driver private structure @@ -862,9 +897,11 @@ static int stmmac_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) static int stmmac_init_ptp(struct stmmac_priv *priv) { bool xmac = priv->plat->has_gmac4 || priv->plat->has_xgmac; + int ret; - if (!(priv->dma_cap.time_stamp || priv->dma_cap.atime_stamp)) - return -EOPNOTSUPP; + ret = stmmac_init_tstamp_counter(priv, STMMAC_HWTS_ACTIVE); + if (ret) + return ret; priv->adv_ts = 0; /* Check if adv_ts can be enabled for dwmac 4.x / xgmac core */ @@ -3268,10 +3305,6 @@ static int stmmac_hw_setup(struct net_device *dev, bool init_ptp) stmmac_mmc_setup(priv); if (init_ptp) { - ret = clk_prepare_enable(priv->plat->clk_ptp_ref); - if (ret < 0) - netdev_warn(priv->dev, "failed to enable PTP reference clock: %d\n", ret); - ret = stmmac_init_ptp(priv); if (ret == -EOPNOTSUPP) netdev_warn(priv->dev, "PTP not supported by HW\n"); diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c index 232ac98943cd08..5d29f336315b79 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c @@ -816,7 +816,7 @@ static int __maybe_unused stmmac_pltfr_noirq_resume(struct device *dev) if (ret) return ret; - clk_prepare_enable(priv->plat->clk_ptp_ref); + stmmac_init_tstamp_counter(priv, priv->systime_flags); } return 0; From e085ae661afe423068228374dadd01a2e2f33887 Mon Sep 17 00:00:00 2001 From: Nikolay Aleksandrov Date: Mon, 22 Nov 2021 17:15:12 +0200 Subject: [PATCH 111/192] net: ipv6: add fib6_nh_release_dsts stub [ Upstream commit 8837cbbf854246f5f4d565f21e6baa945d37aded ] We need a way to release a fib6_nh's per-cpu dsts when replacing nexthops otherwise we can end up with stale per-cpu dsts which hold net device references, so add a new IPv6 stub called fib6_nh_release_dsts. It must be used after an RCU grace period, so no new dsts can be created through a group's nexthop entry. Similar to fib6_nh_release it shouldn't be used if fib6_nh_init has failed so it doesn't need a dummy stub when IPv6 is not enabled. Fixes: 7bf4796dd099 ("nexthops: add support for replace") Signed-off-by: Nikolay Aleksandrov Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- include/net/ip6_fib.h | 1 + include/net/ipv6_stubs.h | 1 + net/ipv6/af_inet6.c | 1 + net/ipv6/route.c | 19 +++++++++++++++++++ 4 files changed, 22 insertions(+) diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index c412dde4d67dca..83b8070d1cc93a 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h @@ -485,6 +485,7 @@ int fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh, struct fib6_config *cfg, gfp_t gfp_flags, struct netlink_ext_ack *extack); void fib6_nh_release(struct fib6_nh *fib6_nh); +void fib6_nh_release_dsts(struct fib6_nh *fib6_nh); int call_fib6_entry_notifiers(struct net *net, enum fib_event_type event_type, diff --git a/include/net/ipv6_stubs.h b/include/net/ipv6_stubs.h index afbce90c44808a..45e0339be6fa4a 100644 --- a/include/net/ipv6_stubs.h +++ b/include/net/ipv6_stubs.h @@ -47,6 +47,7 @@ struct ipv6_stub { struct fib6_config *cfg, gfp_t gfp_flags, struct netlink_ext_ack *extack); void (*fib6_nh_release)(struct fib6_nh *fib6_nh); + void (*fib6_nh_release_dsts)(struct fib6_nh *fib6_nh); void (*fib6_update_sernum)(struct net *net, struct fib6_info *rt); int (*ip6_del_rt)(struct net *net, struct fib6_info *rt, bool skip_notify); void (*fib6_rt_update)(struct net *net, struct fib6_info *rt, diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index 0c4da163535ad9..dab4a047590b73 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -1026,6 +1026,7 @@ static const struct ipv6_stub ipv6_stub_impl = { .ip6_mtu_from_fib6 = ip6_mtu_from_fib6, .fib6_nh_init = fib6_nh_init, .fib6_nh_release = fib6_nh_release, + .fib6_nh_release_dsts = fib6_nh_release_dsts, .fib6_update_sernum = fib6_update_sernum_stub, .fib6_rt_update = fib6_rt_update, .ip6_del_rt = ip6_del_rt, diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 9b9ef09382ab91..79cb5e5a4948b9 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -3680,6 +3680,25 @@ void fib6_nh_release(struct fib6_nh *fib6_nh) fib_nh_common_release(&fib6_nh->nh_common); } +void fib6_nh_release_dsts(struct fib6_nh *fib6_nh) +{ + int cpu; + + if (!fib6_nh->rt6i_pcpu) + return; + + for_each_possible_cpu(cpu) { + struct rt6_info *pcpu_rt, **ppcpu_rt; + + ppcpu_rt = per_cpu_ptr(fib6_nh->rt6i_pcpu, cpu); + pcpu_rt = xchg(ppcpu_rt, NULL); + if (pcpu_rt) { + dst_dev_put(&pcpu_rt->dst); + dst_release(&pcpu_rt->dst); + } + } +} + static struct fib6_info *ip6_route_info_create(struct fib6_config *cfg, gfp_t gfp_flags, struct netlink_ext_ack *extack) From 6652101175c524f0dca7cb2ee63ae2df3a4c03dd Mon Sep 17 00:00:00 2001 From: Nikolay Aleksandrov Date: Mon, 22 Nov 2021 17:15:13 +0200 Subject: [PATCH 112/192] net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group [ Upstream commit 1005f19b9357b81aa64e1decd08d6e332caaa284 ] When replacing a nexthop group, we must release the IPv6 per-cpu dsts of the removed nexthop entries after an RCU grace period because they contain references to the nexthop's net device and to the fib6 info. With specific series of events[1] we can reach net device refcount imbalance which is unrecoverable. IPv4 is not affected because dsts don't take a refcount on the route. [1] $ ip nexthop list id 200 via 2002:db8::2 dev bridge.10 scope link onlink id 201 via 2002:db8::3 dev bridge scope link onlink id 203 group 201/200 $ ip -6 route 2001:db8::10 nhid 203 metric 1024 pref medium nexthop via 2002:db8::3 dev bridge weight 1 onlink nexthop via 2002:db8::2 dev bridge.10 weight 1 onlink Create rt6_info through one of the multipath legs, e.g.: $ taskset -a -c 1 ./pkt_inj 24 bridge.10 2001:db8::10 (pkt_inj is just a custom packet generator, nothing special) Then remove that leg from the group by replace (let's assume it is id 200 in this case): $ ip nexthop replace id 203 group 201 Now remove the IPv6 route: $ ip -6 route del 2001:db8::10/128 The route won't be really deleted due to the stale rt6_info holding 1 refcnt in nexthop id 200. At this point we have the following reference count dependency: (deleted) IPv6 route holds 1 reference over nhid 203 nh 203 holds 1 ref over id 201 nh 200 holds 1 ref over the net device and the route due to the stale rt6_info Now to create circular dependency between nh 200 and the IPv6 route, and also to get a reference over nh 200, restore nhid 200 in the group: $ ip nexthop replace id 203 group 201/200 And now we have a permanent circular dependncy because nhid 203 holds a reference over nh 200 and 201, but the route holds a ref over nh 203 and is deleted. To trigger the bug just delete the group (nhid 203): $ ip nexthop del id 203 It won't really be deleted due to the IPv6 route dependency, and now we have 2 unlinked and deleted objects that reference each other: the group and the IPv6 route. Since the group drops the reference it holds over its entries at free time (i.e. its own refcount needs to drop to 0) that will never happen and we get a permanent ref on them, since one of the entries holds a reference over the IPv6 route it will also never be released. At this point the dependencies are: (deleted, only unlinked) IPv6 route holds reference over group nh 203 (deleted, only unlinked) group nh 203 holds reference over nh 201 and 200 nh 200 holds 1 ref over the net device and the route due to the stale rt6_info This is the last point where it can be fixed by running traffic through nh 200, and specifically through the same CPU so the rt6_info (dst) will get released due to the IPv6 genid, that in turn will free the IPv6 route, which in turn will free the ref count over the group nh 203. If nh 200 is deleted at this point, it will never be released due to the ref from the unlinked group 203, it will only be unlinked: $ ip nexthop del id 200 $ ip nexthop $ Now we can never release that stale rt6_info, we have IPv6 route with ref over group nh 203, group nh 203 with ref over nh 200 and 201, nh 200 with rt6_info (dst) with ref over the net device and the IPv6 route. All of these objects are only unlinked, and cannot be released, thus they can't release their ref counts. Message from syslogd@dev at Nov 19 14:04:10 ... kernel:[73501.828730] unregister_netdevice: waiting for bridge.10 to become free. Usage count = 3 Message from syslogd@dev at Nov 19 14:04:20 ... kernel:[73512.068811] unregister_netdevice: waiting for bridge.10 to become free. Usage count = 3 Fixes: 7bf4796dd099 ("nexthops: add support for replace") Signed-off-by: Nikolay Aleksandrov Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/ipv4/nexthop.c | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/net/ipv4/nexthop.c b/net/ipv4/nexthop.c index 2cc7a7a864c6b4..5dbd4b5505ebaa 100644 --- a/net/ipv4/nexthop.c +++ b/net/ipv4/nexthop.c @@ -1899,15 +1899,36 @@ static void remove_nexthop(struct net *net, struct nexthop *nh, /* if any FIB entries reference this nexthop, any dst entries * need to be regenerated */ -static void nh_rt_cache_flush(struct net *net, struct nexthop *nh) +static void nh_rt_cache_flush(struct net *net, struct nexthop *nh, + struct nexthop *replaced_nh) { struct fib6_info *f6i; + struct nh_group *nhg; + int i; if (!list_empty(&nh->fi_list)) rt_cache_flush(net); list_for_each_entry(f6i, &nh->f6i_list, nh_list) ipv6_stub->fib6_update_sernum(net, f6i); + + /* if an IPv6 group was replaced, we have to release all old + * dsts to make sure all refcounts are released + */ + if (!replaced_nh->is_group) + return; + + /* new dsts must use only the new nexthop group */ + synchronize_net(); + + nhg = rtnl_dereference(replaced_nh->nh_grp); + for (i = 0; i < nhg->num_nh; i++) { + struct nh_grp_entry *nhge = &nhg->nh_entries[i]; + struct nh_info *nhi = rtnl_dereference(nhge->nh->nh_info); + + if (nhi->family == AF_INET6) + ipv6_stub->fib6_nh_release_dsts(&nhi->fib6_nh); + } } static int replace_nexthop_grp(struct net *net, struct nexthop *old, @@ -2247,7 +2268,7 @@ static int replace_nexthop(struct net *net, struct nexthop *old, err = replace_nexthop_single(net, old, new, extack); if (!err) { - nh_rt_cache_flush(net, old); + nh_rt_cache_flush(net, old, new); __remove_nexthop(net, new, NULL); nexthop_put(new); From 992ba40a67638dfe2772b84dfc8168dc328d5c4c Mon Sep 17 00:00:00 2001 From: Maciej Fijalkowski Date: Tue, 26 Oct 2021 18:47:18 +0200 Subject: [PATCH 113/192] ice: fix vsi->txq_map sizing [ Upstream commit 792b2086584f25d84081a526beee80d103c2a913 ] The approach of having XDP queue per CPU regardless of user's setting exposed a hidden bug that could occur in case when Rx queue count differ from Tx queue count. Currently vsi->txq_map's size is equal to the doubled vsi->alloc_txq, which is not correct due to the fact that XDP rings were previously based on the Rx queue count. Below splat can be seen when ethtool -L is used and XDP rings are configured: [ 682.875339] BUG: kernel NULL pointer dereference, address: 000000000000000f [ 682.883403] #PF: supervisor read access in kernel mode [ 682.889345] #PF: error_code(0x0000) - not-present page [ 682.895289] PGD 0 P4D 0 [ 682.898218] Oops: 0000 [#1] PREEMPT SMP PTI [ 682.903055] CPU: 42 PID: 2878 Comm: ethtool Tainted: G OE 5.15.0-rc5+ #1 [ 682.912214] Hardware name: Intel Corp. GRANTLEY/GRANTLEY, BIOS GRRFCRB1.86B.0276.D07.1605190235 05/19/2016 [ 682.923380] RIP: 0010:devres_remove+0x44/0x130 [ 682.928527] Code: 49 89 f4 55 48 89 fd 4c 89 ff 53 48 83 ec 10 e8 92 b9 49 00 48 8b 9d a8 02 00 00 48 8d 8d a0 02 00 00 49 89 c2 48 39 cb 74 0f <4c> 3b 63 10 74 25 48 8b 5b 08 48 39 cb 75 f1 4c 89 ff 4c 89 d6 e8 [ 682.950237] RSP: 0018:ffffc90006a679f0 EFLAGS: 00010002 [ 682.956285] RAX: 0000000000000286 RBX: ffffffffffffffff RCX: ffff88908343a370 [ 682.964538] RDX: 0000000000000001 RSI: ffffffff81690d60 RDI: 0000000000000000 [ 682.972789] RBP: ffff88908343a0d0 R08: 0000000000000000 R09: 0000000000000000 [ 682.981040] R10: 0000000000000286 R11: 3fffffffffffffff R12: ffffffff81690d60 [ 682.989282] R13: ffffffff81690a00 R14: ffff8890819807a8 R15: ffff88908343a36c [ 682.997535] FS: 00007f08c7bfa740(0000) GS:ffff88a03fd00000(0000) knlGS:0000000000000000 [ 683.006910] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 683.013557] CR2: 000000000000000f CR3: 0000001080a66003 CR4: 00000000003706e0 [ 683.021819] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 683.030075] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 683.038336] Call Trace: [ 683.041167] devm_kfree+0x33/0x50 [ 683.045004] ice_vsi_free_arrays+0x5e/0xc0 [ice] [ 683.050380] ice_vsi_rebuild+0x4c8/0x750 [ice] [ 683.055543] ice_vsi_recfg_qs+0x9a/0x110 [ice] [ 683.060697] ice_set_channels+0x14f/0x290 [ice] [ 683.065962] ethnl_set_channels+0x333/0x3f0 [ 683.070807] genl_family_rcv_msg_doit+0xea/0x150 [ 683.076152] genl_rcv_msg+0xde/0x1d0 [ 683.080289] ? channels_prepare_data+0x60/0x60 [ 683.085432] ? genl_get_cmd+0xd0/0xd0 [ 683.089667] netlink_rcv_skb+0x50/0xf0 [ 683.094006] genl_rcv+0x24/0x40 [ 683.097638] netlink_unicast+0x239/0x340 [ 683.102177] netlink_sendmsg+0x22e/0x470 [ 683.106717] sock_sendmsg+0x5e/0x60 [ 683.110756] __sys_sendto+0xee/0x150 [ 683.114894] ? handle_mm_fault+0xd0/0x2a0 [ 683.119535] ? do_user_addr_fault+0x1f3/0x690 [ 683.134173] __x64_sys_sendto+0x25/0x30 [ 683.148231] do_syscall_64+0x3b/0xc0 [ 683.161992] entry_SYSCALL_64_after_hwframe+0x44/0xae Fix this by taking into account the value that num_possible_cpus() yields in addition to vsi->alloc_txq instead of doubling the latter. Fixes: efc2214b6047 ("ice: Add support for XDP") Fixes: 22bf877e528f ("ice: introduce XDP_TX fallback path") Reviewed-by: Alexander Lobakin Signed-off-by: Maciej Fijalkowski Tested-by: Kiran Bhandare Signed-off-by: Tony Nguyen Signed-off-by: Sasha Levin --- drivers/net/ethernet/intel/ice/ice_lib.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/intel/ice/ice_lib.c b/drivers/net/ethernet/intel/ice/ice_lib.c index e47920fe73b884..62bf879dc62323 100644 --- a/drivers/net/ethernet/intel/ice/ice_lib.c +++ b/drivers/net/ethernet/intel/ice/ice_lib.c @@ -83,8 +83,13 @@ static int ice_vsi_alloc_arrays(struct ice_vsi *vsi) if (!vsi->rx_rings) goto err_rings; - /* XDP will have vsi->alloc_txq Tx queues as well, so double the size */ - vsi->txq_map = devm_kcalloc(dev, (2 * vsi->alloc_txq), + /* txq_map needs to have enough space to track both Tx (stack) rings + * and XDP rings; at this point vsi->num_xdp_txq might not be set, + * so use num_possible_cpus() as we want to always provide XDP ring + * per CPU, regardless of queue count settings from user that might + * have come from ethtool's set_channels() callback; + */ + vsi->txq_map = devm_kcalloc(dev, (vsi->alloc_txq + num_possible_cpus()), sizeof(*vsi->txq_map), GFP_KERNEL); if (!vsi->txq_map) From 1f10b09ccc832698ef4624a6ab9a213b6ccbda76 Mon Sep 17 00:00:00 2001 From: Marta Plantykow Date: Tue, 26 Oct 2021 18:47:19 +0200 Subject: [PATCH 114/192] ice: avoid bpf_prog refcount underflow [ Upstream commit f65ee535df775a13a1046c0a0b2d72db342f8a5b ] Ice driver has the routines for managing XDP resources that are shared between ndo_bpf op and VSI rebuild flow. The latter takes place for example when user changes queue count on an interface via ethtool's set_channels(). There is an issue around the bpf_prog refcounting when VSI is being rebuilt - since ice_prepare_xdp_rings() is called with vsi->xdp_prog as an argument that is used later on by ice_vsi_assign_bpf_prog(), same bpf_prog pointers are swapped with each other. Then it is also interpreted as an 'old_prog' which in turn causes us to call bpf_prog_put on it that will decrement its refcount. Below splat can be interpreted in a way that due to zero refcount of a bpf_prog it is wiped out from the system while kernel still tries to refer to it: [ 481.069429] BUG: unable to handle page fault for address: ffffc9000640f038 [ 481.077390] #PF: supervisor read access in kernel mode [ 481.083335] #PF: error_code(0x0000) - not-present page [ 481.089276] PGD 100000067 P4D 100000067 PUD 1001cb067 PMD 106d2b067 PTE 0 [ 481.097141] Oops: 0000 [#1] PREEMPT SMP PTI [ 481.101980] CPU: 12 PID: 3339 Comm: sudo Tainted: G OE 5.15.0-rc5+ #1 [ 481.110840] Hardware name: Intel Corp. GRANTLEY/GRANTLEY, BIOS GRRFCRB1.86B.0276.D07.1605190235 05/19/2016 [ 481.122021] RIP: 0010:dev_xdp_prog_id+0x25/0x40 [ 481.127265] Code: 80 00 00 00 00 0f 1f 44 00 00 89 f6 48 c1 e6 04 48 01 fe 48 8b 86 98 08 00 00 48 85 c0 74 13 48 8b 50 18 31 c0 48 85 d2 74 07 <48> 8b 42 38 8b 40 20 c3 48 8b 96 90 08 00 00 eb e8 66 2e 0f 1f 84 [ 481.148991] RSP: 0018:ffffc90007b63868 EFLAGS: 00010286 [ 481.155034] RAX: 0000000000000000 RBX: ffff889080824000 RCX: 0000000000000000 [ 481.163278] RDX: ffffc9000640f000 RSI: ffff889080824010 RDI: ffff889080824000 [ 481.171527] RBP: ffff888107af7d00 R08: 0000000000000000 R09: ffff88810db5f6e0 [ 481.179776] R10: 0000000000000000 R11: ffff8890885b9988 R12: ffff88810db5f4bc [ 481.188026] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000 [ 481.196276] FS: 00007f5466d5bec0(0000) GS:ffff88903fb00000(0000) knlGS:0000000000000000 [ 481.205633] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 481.212279] CR2: ffffc9000640f038 CR3: 000000014429c006 CR4: 00000000003706e0 [ 481.220530] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 481.228771] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 481.237029] Call Trace: [ 481.239856] rtnl_fill_ifinfo+0x768/0x12e0 [ 481.244602] rtnl_dump_ifinfo+0x525/0x650 [ 481.249246] ? __alloc_skb+0xa5/0x280 [ 481.253484] netlink_dump+0x168/0x3c0 [ 481.257725] netlink_recvmsg+0x21e/0x3e0 [ 481.262263] ____sys_recvmsg+0x87/0x170 [ 481.266707] ? __might_fault+0x20/0x30 [ 481.271046] ? _copy_from_user+0x66/0xa0 [ 481.275591] ? iovec_from_user+0xf6/0x1c0 [ 481.280226] ___sys_recvmsg+0x82/0x100 [ 481.284566] ? sock_sendmsg+0x5e/0x60 [ 481.288791] ? __sys_sendto+0xee/0x150 [ 481.293129] __sys_recvmsg+0x56/0xa0 [ 481.297267] do_syscall_64+0x3b/0xc0 [ 481.301395] entry_SYSCALL_64_after_hwframe+0x44/0xae [ 481.307238] RIP: 0033:0x7f5466f39617 [ 481.311373] Code: 0c 00 f7 d8 64 89 02 48 c7 c0 ff ff ff ff eb bd 0f 1f 00 f3 0f 1e fa 64 8b 04 25 18 00 00 00 85 c0 75 10 b8 2f 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 51 c3 48 83 ec 28 89 54 24 1c 48 89 74 24 10 [ 481.342944] RSP: 002b:00007ffedc7f4308 EFLAGS: 00000246 ORIG_RAX: 000000000000002f [ 481.361783] RAX: ffffffffffffffda RBX: 00007ffedc7f5460 RCX: 00007f5466f39617 [ 481.380278] RDX: 0000000000000000 RSI: 00007ffedc7f5360 RDI: 0000000000000003 [ 481.398500] RBP: 00007ffedc7f53f0 R08: 0000000000000000 R09: 000055d556f04d50 [ 481.416463] R10: 0000000000000077 R11: 0000000000000246 R12: 00007ffedc7f5360 [ 481.434131] R13: 00007ffedc7f5350 R14: 00007ffedc7f5344 R15: 0000000000000e98 [ 481.451520] Modules linked in: ice(OE) af_packet binfmt_misc nls_iso8859_1 ipmi_ssif intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal intel_powerclamp mxm_wmi mei_me coretemp mei ipmi_si ipmi_msghandler wmi acpi_pad acpi_power_meter ip_tables x_tables autofs4 crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel ahci crypto_simd cryptd libahci lpc_ich [last unloaded: ice] [ 481.528558] CR2: ffffc9000640f038 [ 481.542041] ---[ end trace d1f24c9ecf5b61c1 ]--- Fix this by only calling ice_vsi_assign_bpf_prog() inside ice_prepare_xdp_rings() when current vsi->xdp_prog pointer is NULL. This way set_channels() flow will not attempt to swap the vsi->xdp_prog pointers with itself. Also, sprinkle around some comments that provide a reasoning about correlation between driver and kernel in terms of bpf_prog refcount. Fixes: efc2214b6047 ("ice: Add support for XDP") Reviewed-by: Alexander Lobakin Signed-off-by: Marta Plantykow Co-developed-by: Maciej Fijalkowski Signed-off-by: Maciej Fijalkowski Tested-by: Kiran Bhandare Signed-off-by: Tony Nguyen Signed-off-by: Sasha Levin --- drivers/net/ethernet/intel/ice/ice_main.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c index a39136b0bd16ae..f622ee20ac40d8 100644 --- a/drivers/net/ethernet/intel/ice/ice_main.c +++ b/drivers/net/ethernet/intel/ice/ice_main.c @@ -2497,7 +2497,18 @@ int ice_prepare_xdp_rings(struct ice_vsi *vsi, struct bpf_prog *prog) ice_stat_str(status)); goto clear_xdp_rings; } - ice_vsi_assign_bpf_prog(vsi, prog); + + /* assign the prog only when it's not already present on VSI; + * this flow is a subject of both ethtool -L and ndo_bpf flows; + * VSI rebuild that happens under ethtool -L can expose us to + * the bpf_prog refcount issues as we would be swapping same + * bpf_prog pointers from vsi->xdp_prog and calling bpf_prog_put + * on it as it would be treated as an 'old_prog'; for ndo_bpf + * this is not harmful as dev_xdp_install bumps the refcount + * before calling the op exposed by the driver; + */ + if (!ice_is_xdp_ena_vsi(vsi)) + ice_vsi_assign_bpf_prog(vsi, prog); return 0; clear_xdp_rings: @@ -2643,6 +2654,11 @@ ice_xdp_setup_prog(struct ice_vsi *vsi, struct bpf_prog *prog, if (xdp_ring_err) NL_SET_ERR_MSG_MOD(extack, "Freeing XDP Tx resources failed"); } else { + /* safe to call even when prog == vsi->xdp_prog as + * dev_xdp_install in net/core/dev.c incremented prog's + * refcount so corresponding bpf_prog_put won't cause + * underflow + */ ice_vsi_assign_bpf_prog(vsi, prog); } From a67c045b555887a4fc3ef8f03708c63c95ccbf1e Mon Sep 17 00:00:00 2001 From: Mike Christie Date: Sat, 20 Nov 2021 10:49:17 -0600 Subject: [PATCH 115/192] scsi: core: sysfs: Fix setting device state to SDEV_RUNNING [ Upstream commit eb97545d6264b341b06ba7603f52ff6c0b2af6ea ] This fixes an issue added in commit 4edd8cd4e86d ("scsi: core: sysfs: Fix hang when device state is set via sysfs") where if userspace is requesting to set the device state to SDEV_RUNNING when the state is already SDEV_RUNNING, we return -EINVAL instead of count. The commmit above set ret to count for this case, when it should have set it to 0. Link: https://lore.kernel.org/r/20211120164917.4924-1-michael.christie@oracle.com Fixes: 4edd8cd4e86d ("scsi: core: sysfs: Fix hang when device state is set via sysfs") Reviewed-by: Lee Duncan Signed-off-by: Mike Christie Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- drivers/scsi/scsi_sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c index 9527e734a999a8..920aae661c5b21 100644 --- a/drivers/scsi/scsi_sysfs.c +++ b/drivers/scsi/scsi_sysfs.c @@ -817,7 +817,7 @@ store_state_field(struct device *dev, struct device_attribute *attr, mutex_lock(&sdev->state_mutex); if (sdev->sdev_state == SDEV_RUNNING && state == SDEV_RUNNING) { - ret = count; + ret = 0; } else { ret = scsi_device_set_state(sdev, state); if (ret == 0 && state == SDEV_RUNNING) From 8b3b9aaada48297d4a1b10b248cbace3c973601e Mon Sep 17 00:00:00 2001 From: Shin'ichiro Kawasaki Date: Mon, 22 Nov 2021 15:12:23 +0900 Subject: [PATCH 116/192] scsi: scsi_debug: Zero clear zones at reset write pointer [ Upstream commit 2d62253eb1b60f4ce8b39125eee282739b519297 ] When a reset is requested the position of the write pointer is updated but the data in the corresponding zone is not cleared. Instead scsi_debug returns any data written before the write pointer was reset. This is an error and prevents using scsi_debug for stale page cache testing of the BLKRESETZONE ioctl. Zero written data in the zone when resetting the write pointer. Link: https://lore.kernel.org/r/20211122061223.298890-1-shinichiro.kawasaki@wdc.com Fixes: f0d1cf9378bd ("scsi: scsi_debug: Add ZBC zone commands") Reviewed-by: Damien Le Moal Acked-by: Douglas Gilbert Signed-off-by: Shin'ichiro Kawasaki Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- drivers/scsi/scsi_debug.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c index ead65cdfb522ea..1b1a63a4678167 100644 --- a/drivers/scsi/scsi_debug.c +++ b/drivers/scsi/scsi_debug.c @@ -4649,6 +4649,7 @@ static void zbc_rwp_zone(struct sdebug_dev_info *devip, struct sdeb_zone_state *zsp) { enum sdebug_z_cond zc; + struct sdeb_store_info *sip = devip2sip(devip, false); if (zbc_zone_is_conv(zsp)) return; @@ -4660,6 +4661,10 @@ static void zbc_rwp_zone(struct sdebug_dev_info *devip, if (zsp->z_cond == ZC4_CLOSED) devip->nr_closed--; + if (zsp->z_wp > zsp->z_start) + memset(sip->storep + zsp->z_start * sdebug_sector_size, 0, + (zsp->z_wp - zsp->z_start) * sdebug_sector_size); + zsp->z_non_seq_resource = false; zsp->z_wp = zsp->z_start; zsp->z_cond = ZC1_EMPTY; From 4339cd0825946b6695a7c403dd48df14e9f66512 Mon Sep 17 00:00:00 2001 From: Huang Jianan Date: Thu, 18 Nov 2021 21:58:44 +0800 Subject: [PATCH 117/192] erofs: fix deadlock when shrink erofs slab [ Upstream commit 57bbeacdbee72a54eb97d56b876cf9c94059fc34 ] We observed the following deadlock in the stress test under low memory scenario: Thread A Thread B - erofs_shrink_scan - erofs_try_to_release_workgroup - erofs_workgroup_try_to_freeze -- A - z_erofs_do_read_page - z_erofs_collection_begin - z_erofs_register_collection - erofs_insert_workgroup - xa_lock(&sbi->managed_pslots) -- B - erofs_workgroup_get - erofs_wait_on_workgroup_freezed -- A - xa_erase - xa_lock(&sbi->managed_pslots) -- B To fix this, it needs to hold xa_lock before freezing the workgroup since xarray will be touched then. So let's hold the lock before accessing each workgroup, just like what we did with the radix tree before. [ Gao Xiang: Jianhua Hao also reports this issue at https://lore.kernel.org/r/b10b85df30694bac8aadfe43537c897a@xiaomi.com ] Link: https://lore.kernel.org/r/20211118135844.3559-1-huangjianan@oppo.com Fixes: 64094a04414f ("erofs: convert workstn to XArray") Reviewed-by: Chao Yu Reviewed-by: Gao Xiang Signed-off-by: Huang Jianan Reported-by: Jianhua Hao Signed-off-by: Gao Xiang Signed-off-by: Sasha Levin --- fs/erofs/utils.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/fs/erofs/utils.c b/fs/erofs/utils.c index bd86067a63f7fc..3ca703cd5b24a5 100644 --- a/fs/erofs/utils.c +++ b/fs/erofs/utils.c @@ -141,7 +141,7 @@ static bool erofs_try_to_release_workgroup(struct erofs_sb_info *sbi, * however in order to avoid some race conditions, add a * DBG_BUGON to observe this in advance. */ - DBG_BUGON(xa_erase(&sbi->managed_pslots, grp->index) != grp); + DBG_BUGON(__xa_erase(&sbi->managed_pslots, grp->index) != grp); /* last refcount should be connected with its managed pslot. */ erofs_workgroup_unfreeze(grp, 0); @@ -156,15 +156,19 @@ static unsigned long erofs_shrink_workstation(struct erofs_sb_info *sbi, unsigned int freed = 0; unsigned long index; + xa_lock(&sbi->managed_pslots); xa_for_each(&sbi->managed_pslots, index, grp) { /* try to shrink each valid workgroup */ if (!erofs_try_to_release_workgroup(sbi, grp)) continue; + xa_unlock(&sbi->managed_pslots); ++freed; if (!--nr_shrink) - break; + return freed; + xa_lock(&sbi->managed_pslots); } + xa_unlock(&sbi->managed_pslots); return freed; } From cc432b0727ce404cc13e8f6b5ce29f412c3f9f1f Mon Sep 17 00:00:00 2001 From: Vincent Whitchurch Date: Thu, 11 Nov 2021 17:04:11 +0100 Subject: [PATCH 118/192] i2c: virtio: disable timeout handling [ Upstream commit 84e1d0bf1d7121759622dabf8fbef4c99ad597c5 ] If a timeout is hit, it can result is incorrect data on the I2C bus and/or memory corruptions in the guest since the device can still be operating on the buffers it was given while the guest has freed them. Here is, for example, the start of a slub_debug splat which was triggered on the next transfer after one transfer was forced to timeout by setting a breakpoint in the backend (rust-vmm/vhost-device): BUG kmalloc-1k (Not tainted): Poison overwritten First byte 0x1 instead of 0x6b Allocated in virtio_i2c_xfer+0x65/0x35c age=350 cpu=0 pid=29 __kmalloc+0xc2/0x1c9 virtio_i2c_xfer+0x65/0x35c __i2c_transfer+0x429/0x57d i2c_transfer+0x115/0x134 i2cdev_ioctl_rdwr+0x16a/0x1de i2cdev_ioctl+0x247/0x2ed vfs_ioctl+0x21/0x30 sys_ioctl+0xb18/0xb41 Freed in virtio_i2c_xfer+0x32e/0x35c age=244 cpu=0 pid=29 kfree+0x1bd/0x1cc virtio_i2c_xfer+0x32e/0x35c __i2c_transfer+0x429/0x57d i2c_transfer+0x115/0x134 i2cdev_ioctl_rdwr+0x16a/0x1de i2cdev_ioctl+0x247/0x2ed vfs_ioctl+0x21/0x30 sys_ioctl+0xb18/0xb41 There is no simple fix for this (the driver would have to always create bounce buffers and hold on to them until the device eventually returns the buffers), so just disable the timeout support for now. Fixes: 3cfc88380413d20f ("i2c: virtio: add a virtio i2c frontend driver") Acked-by: Jie Deng Signed-off-by: Vincent Whitchurch Acked-by: Michael S. Tsirkin Reviewed-by: Viresh Kumar Signed-off-by: Wolfram Sang Signed-off-by: Sasha Levin --- drivers/i2c/busses/i2c-virtio.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/drivers/i2c/busses/i2c-virtio.c b/drivers/i2c/busses/i2c-virtio.c index f10a603b13fb02..7b2474e6876f45 100644 --- a/drivers/i2c/busses/i2c-virtio.c +++ b/drivers/i2c/busses/i2c-virtio.c @@ -106,11 +106,10 @@ static int virtio_i2c_prepare_reqs(struct virtqueue *vq, static int virtio_i2c_complete_reqs(struct virtqueue *vq, struct virtio_i2c_req *reqs, - struct i2c_msg *msgs, int num, - bool timedout) + struct i2c_msg *msgs, int num) { struct virtio_i2c_req *req; - bool failed = timedout; + bool failed = false; unsigned int len; int i, j = 0; @@ -132,7 +131,7 @@ static int virtio_i2c_complete_reqs(struct virtqueue *vq, j++; } - return timedout ? -ETIMEDOUT : j; + return j; } static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, @@ -141,7 +140,6 @@ static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, struct virtio_i2c *vi = i2c_get_adapdata(adap); struct virtqueue *vq = vi->vq; struct virtio_i2c_req *reqs; - unsigned long time_left; int count; reqs = kcalloc(num, sizeof(*reqs), GFP_KERNEL); @@ -164,11 +162,9 @@ static int virtio_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, reinit_completion(&vi->completion); virtqueue_kick(vq); - time_left = wait_for_completion_timeout(&vi->completion, adap->timeout); - if (!time_left) - dev_err(&adap->dev, "virtio i2c backend timeout.\n"); + wait_for_completion(&vi->completion); - count = virtio_i2c_complete_reqs(vq, reqs, msgs, count, !time_left); + count = virtio_i2c_complete_reqs(vq, reqs, msgs, count); err_free: kfree(reqs); From 12dea26c05cd5b2dc70fa1ca8c4dc3c630879481 Mon Sep 17 00:00:00 2001 From: Tony Lu Date: Tue, 23 Nov 2021 16:25:18 +0800 Subject: [PATCH 119/192] net/smc: Ensure the active closing peer first closes clcsock [ Upstream commit 606a63c9783a32a45bd2ef0eee393711d75b3284 ] The side that actively closed socket, it's clcsock doesn't enter TIME_WAIT state, but the passive side does it. It should show the same behavior as TCP sockets. Consider this, when client actively closes the socket, the clcsock in server enters TIME_WAIT state, which means the address is occupied and won't be reused before TIME_WAIT dismissing. If we restarted server, the service would be unavailable for a long time. To solve this issue, shutdown the clcsock in [A], perform the TCP active close progress first, before the passive closed side closing it. So that the actively closed side enters TIME_WAIT, not the passive one. Client | Server close() // client actively close | smc_release() | smc_close_active() // PEERCLOSEWAIT1 | smc_close_final() // abort or closed = 1| smc_cdc_get_slot_and_msg_send() | [A] | |smc_cdc_msg_recv_action() // ACTIVE | queue_work(smc_close_wq, &conn->close_work) | smc_close_passive_work() // PROCESSABORT or APPCLOSEWAIT1 | smc_close_passive_abort_received() // only in abort | |close() // server recv zero, close | smc_release() // PROCESSABORT or APPCLOSEWAIT1 | smc_close_active() | smc_close_abort() or smc_close_final() // CLOSED | smc_cdc_get_slot_and_msg_send() // abort or closed = 1 smc_cdc_msg_recv_action() | smc_clcsock_release() queue_work(smc_close_wq, &conn->close_work) | sock_release(tcp) // actively close clc, enter TIME_WAIT smc_close_passive_work() // PEERCLOSEWAIT1 | smc_conn_free() smc_close_passive_abort_received() // CLOSED| smc_conn_free() | smc_clcsock_release() | sock_release(tcp) // passive close clc | Link: https://www.spinics.net/lists/netdev/msg780407.html Fixes: b38d732477e4 ("smc: socket closing and linkgroup cleanup") Signed-off-by: Tony Lu Reviewed-by: Wen Gu Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/smc/smc_close.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net/smc/smc_close.c b/net/smc/smc_close.c index 0f9ffba07d2685..04620b53b74a79 100644 --- a/net/smc/smc_close.c +++ b/net/smc/smc_close.c @@ -228,6 +228,12 @@ int smc_close_active(struct smc_sock *smc) /* send close request */ rc = smc_close_final(conn); sk->sk_state = SMC_PEERCLOSEWAIT1; + + /* actively shutdown clcsock before peer close it, + * prevent peer from entering TIME_WAIT state. + */ + if (smc->clcsock && smc->clcsock->sk) + rc = kernel_sock_shutdown(smc->clcsock, SHUT_RDWR); } else { /* peer event has changed the state */ goto again; From da4d70199e5d82da664a80077508d6c18f5e76df Mon Sep 17 00:00:00 2001 From: Amit Cohen Date: Tue, 23 Nov 2021 09:52:56 +0200 Subject: [PATCH 120/192] mlxsw: spectrum: Protect driver from buggy firmware [ Upstream commit 63b08b1f6834bbb0b4f7783bf63b80c8c8e9a047 ] When processing port up/down events generated by the device's firmware, the driver protects itself from events reported for non-existent local ports, but not the CPU port (local port 0), which exists, but lacks a netdev. This can result in a NULL pointer dereference when calling netif_carrier_{on,off}(). Fix this by bailing early when processing an event reported for the CPU port. Problem was only observed when running on top of a buggy emulator. Fixes: 28b1987ef506 ("mlxsw: spectrum: Register CPU port with devlink") Signed-off-by: Amit Cohen Signed-off-by: Ido Schimmel Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ethernet/mellanox/mlxsw/spectrum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum.c index 250c5a24264dcc..edfdd44de579c6 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/spectrum.c +++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum.c @@ -2131,7 +2131,7 @@ static void mlxsw_sp_pude_event_func(const struct mlxsw_reg_info *reg, max_ports = mlxsw_core_max_ports(mlxsw_sp->core); local_port = mlxsw_reg_pude_local_port_get(pude_pl); - if (WARN_ON_ONCE(local_port >= max_ports)) + if (WARN_ON_ONCE(!local_port || local_port >= max_ports)) return; mlxsw_sp_port = mlxsw_sp->ports[local_port]; if (!mlxsw_sp_port) From f38aa5cfadf17fd7d67403d274faa00bb4a639ae Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Mon, 22 Nov 2021 18:15:54 -0600 Subject: [PATCH 121/192] net: ipa: directly disable ipa-setup-ready interrupt [ Upstream commit 33a153100bb3459479bd95d3259c2915b53fefa8 ] We currently maintain a "disabled" Boolean flag to determine whether the "ipa-setup-ready" SMP2P IRQ handler does anything. That flag must be accessed under protection of a mutex. Instead, disable the SMP2P interrupt when requested, which prevents the interrupt handler from ever being called. More importantly, it synchronizes a thread disabling the interrupt with the completion of the interrupt handler in case they run concurrently. Use the IPA setup_complete flag rather than the disabled flag in the handler to determine whether to ignore any interrupts arriving after the first. Rename the "disabled" flag to be "setup_disabled", to be specific about its purpose. Fixes: 530f9216a953 ("soc: qcom: ipa: AP/modem communications") Signed-off-by: Alex Elder Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ipa/ipa_smp2p.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/drivers/net/ipa/ipa_smp2p.c b/drivers/net/ipa/ipa_smp2p.c index df7639c39d7160..24bc112a072c60 100644 --- a/drivers/net/ipa/ipa_smp2p.c +++ b/drivers/net/ipa/ipa_smp2p.c @@ -53,7 +53,7 @@ * @setup_ready_irq: IPA interrupt triggered by modem to signal GSI ready * @power_on: Whether IPA power is on * @notified: Whether modem has been notified of power state - * @disabled: Whether setup ready interrupt handling is disabled + * @setup_disabled: Whether setup ready interrupt handler is disabled * @mutex: Mutex protecting ready-interrupt/shutdown interlock * @panic_notifier: Panic notifier structure */ @@ -67,7 +67,7 @@ struct ipa_smp2p { u32 setup_ready_irq; bool power_on; bool notified; - bool disabled; + bool setup_disabled; struct mutex mutex; struct notifier_block panic_notifier; }; @@ -155,11 +155,9 @@ static irqreturn_t ipa_smp2p_modem_setup_ready_isr(int irq, void *dev_id) struct device *dev; int ret; - mutex_lock(&smp2p->mutex); - - if (smp2p->disabled) - goto out_mutex_unlock; - smp2p->disabled = true; /* If any others arrive, ignore them */ + /* Ignore any (spurious) interrupts received after the first */ + if (smp2p->ipa->setup_complete) + return IRQ_HANDLED; /* Power needs to be active for setup */ dev = &smp2p->ipa->pdev->dev; @@ -176,8 +174,6 @@ static irqreturn_t ipa_smp2p_modem_setup_ready_isr(int irq, void *dev_id) out_power_put: pm_runtime_mark_last_busy(dev); (void)pm_runtime_put_autosuspend(dev); -out_mutex_unlock: - mutex_unlock(&smp2p->mutex); return IRQ_HANDLED; } @@ -322,7 +318,10 @@ void ipa_smp2p_disable(struct ipa *ipa) mutex_lock(&smp2p->mutex); - smp2p->disabled = true; + if (!smp2p->setup_disabled) { + disable_irq(smp2p->setup_ready_irq); + smp2p->setup_disabled = true; + } mutex_unlock(&smp2p->mutex); } From 740c461a7340130a8339ee0ebf398a423fb8101c Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Mon, 22 Nov 2021 18:15:55 -0600 Subject: [PATCH 122/192] net: ipa: separate disabling setup from modem stop [ Upstream commit 8afc7e471ad3c92a9c96adc62d1b67de77378bb6 ] The IPA setup_complete flag is set at the end of ipa_setup(), when the setup phase of initialization has completed successfully. This occurs as part of driver probe processing, or (if "modem-init" is specified in the DTS file) it is triggered by the "ipa-setup-ready" SMP2P interrupt generated by the modem. In the latter case, it's possible for driver shutdown (or remove) to begin while setup processing is underway, and this can't be allowed. The problem is that the setup_complete flag is not adequate to signal that setup is underway. If setup_complete is set, it will never be un-set, so that case is not a problem. But if setup_complete is false, there's a chance setup is underway. Because setup is triggered by an interrupt on a "modem-init" system, there is a simple way to ensure the value of setup_complete is safe to read. The threaded handler--if it is executing--will complete as part of a request to disable the "ipa-modem-ready" interrupt. This means that ipa_setup() (which is called from the handler) will run to completion if it was underway, or will never be called otherwise. The request to disable the "ipa-setup-ready" interrupt is currently made within ipa_modem_stop(). Instead, disable the interrupt outside that function in the two places it's called. In the case of ipa_remove(), this ensures the setup_complete flag is safe to read before we read it. Rename ipa_smp2p_disable() to be ipa_smp2p_irq_disable_setup(), to be more specific about its effect. Fixes: 530f9216a953 ("soc: qcom: ipa: AP/modem communications") Signed-off-by: Alex Elder Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ipa/ipa_main.c | 6 ++++++ drivers/net/ipa/ipa_modem.c | 6 +++--- drivers/net/ipa/ipa_smp2p.c | 2 +- drivers/net/ipa/ipa_smp2p.h | 7 +++---- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/drivers/net/ipa/ipa_main.c b/drivers/net/ipa/ipa_main.c index cdfa98a76e1f4a..a448ec198bee18 100644 --- a/drivers/net/ipa/ipa_main.c +++ b/drivers/net/ipa/ipa_main.c @@ -28,6 +28,7 @@ #include "ipa_reg.h" #include "ipa_mem.h" #include "ipa_table.h" +#include "ipa_smp2p.h" #include "ipa_modem.h" #include "ipa_uc.h" #include "ipa_interrupt.h" @@ -801,6 +802,11 @@ static int ipa_remove(struct platform_device *pdev) struct device *dev = &pdev->dev; int ret; + /* Prevent the modem from triggering a call to ipa_setup(). This + * also ensures a modem-initiated setup that's underway completes. + */ + ipa_smp2p_irq_disable_setup(ipa); + ret = pm_runtime_get_sync(dev); if (WARN_ON(ret < 0)) goto out_power_put; diff --git a/drivers/net/ipa/ipa_modem.c b/drivers/net/ipa/ipa_modem.c index ad116bcc0580e8..d0ab4d70c303b0 100644 --- a/drivers/net/ipa/ipa_modem.c +++ b/drivers/net/ipa/ipa_modem.c @@ -339,9 +339,6 @@ int ipa_modem_stop(struct ipa *ipa) if (state != IPA_MODEM_STATE_RUNNING) return -EBUSY; - /* Prevent the modem from triggering a call to ipa_setup() */ - ipa_smp2p_disable(ipa); - /* Clean up the netdev and endpoints if it was started */ if (netdev) { struct ipa_priv *priv = netdev_priv(netdev); @@ -369,6 +366,9 @@ static void ipa_modem_crashed(struct ipa *ipa) struct device *dev = &ipa->pdev->dev; int ret; + /* Prevent the modem from triggering a call to ipa_setup() */ + ipa_smp2p_irq_disable_setup(ipa); + ret = pm_runtime_get_sync(dev); if (ret < 0) { dev_err(dev, "error %d getting power to handle crash\n", ret); diff --git a/drivers/net/ipa/ipa_smp2p.c b/drivers/net/ipa/ipa_smp2p.c index 24bc112a072c60..2112336120391c 100644 --- a/drivers/net/ipa/ipa_smp2p.c +++ b/drivers/net/ipa/ipa_smp2p.c @@ -309,7 +309,7 @@ void ipa_smp2p_exit(struct ipa *ipa) kfree(smp2p); } -void ipa_smp2p_disable(struct ipa *ipa) +void ipa_smp2p_irq_disable_setup(struct ipa *ipa) { struct ipa_smp2p *smp2p = ipa->smp2p; diff --git a/drivers/net/ipa/ipa_smp2p.h b/drivers/net/ipa/ipa_smp2p.h index 99a9567896388b..59cee31a738365 100644 --- a/drivers/net/ipa/ipa_smp2p.h +++ b/drivers/net/ipa/ipa_smp2p.h @@ -27,13 +27,12 @@ int ipa_smp2p_init(struct ipa *ipa, bool modem_init); void ipa_smp2p_exit(struct ipa *ipa); /** - * ipa_smp2p_disable() - Prevent "ipa-setup-ready" interrupt handling + * ipa_smp2p_irq_disable_setup() - Disable the "setup ready" interrupt * @ipa: IPA pointer * - * Prevent handling of the "setup ready" interrupt from the modem. - * This is used before initiating shutdown of the driver. + * Disable the "ipa-setup-ready" interrupt from the modem. */ -void ipa_smp2p_disable(struct ipa *ipa); +void ipa_smp2p_irq_disable_setup(struct ipa *ipa); /** * ipa_smp2p_notify_reset() - Reset modem notification state From d815f7ca8bd7fb67a77916c922113fad9c3e82e4 Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Mon, 22 Nov 2021 19:16:40 -0600 Subject: [PATCH 123/192] net: ipa: kill ipa_cmd_pipeline_clear() [ Upstream commit e4e9bfb7c93d7e78aa4ad7e1c411a8df15386062 ] Calling ipa_cmd_pipeline_clear() after stopping the channel underlying the AP<-modem RX endpoint can lead to a deadlock. This occurs in the ->runtime_suspend device power operation for the IPA driver. While this callback is in progress, any other requests for power will block until the callback returns. Stopping the AP<-modem RX channel does not prevent the modem from sending another packet to this endpoint. If a packet arrives for an RX channel when the channel is stopped, an SUSPEND IPA interrupt condition will be pending. Handling an IPA interrupt requires power, so ipa_isr_thread() calls pm_runtime_get_sync() first thing. The problem occurs because a "pipeline clear" command will not complete while such a SUSPEND interrupt condition exists. So the SUSPEND IPA interrupt handler won't proceed until it gets power; that won't happen until the ->runtime_suspend callback (and its "pipeline clear" command) completes; and that can't happen while the SUSPEND interrupt condition exists. It turns out that in this case there is no need to use the "pipeline clear" command. There are scenarios in which clearing the pipeline is required while suspending, but those are not (yet) supported upstream. So a simple fix, avoiding the potential deadlock, is to stop calling ipa_cmd_pipeline_clear() in ipa_endpoint_suspend(). This removes the only user of ipa_cmd_pipeline_clear(), so get rid of that function. It can be restored again whenever it's needed. This is basically a manual revert along with an explanation for commit 6cb63ea6a39ea ("net: ipa: introduce ipa_cmd_tag_process()"). Fixes: 6cb63ea6a39ea ("net: ipa: introduce ipa_cmd_tag_process()") Signed-off-by: Alex Elder Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ipa/ipa_cmd.c | 16 ---------------- drivers/net/ipa/ipa_cmd.h | 6 ------ drivers/net/ipa/ipa_endpoint.c | 2 -- 3 files changed, 24 deletions(-) diff --git a/drivers/net/ipa/ipa_cmd.c b/drivers/net/ipa/ipa_cmd.c index cff51731195aa4..d57472ea077f2d 100644 --- a/drivers/net/ipa/ipa_cmd.c +++ b/drivers/net/ipa/ipa_cmd.c @@ -661,22 +661,6 @@ void ipa_cmd_pipeline_clear_wait(struct ipa *ipa) wait_for_completion(&ipa->completion); } -void ipa_cmd_pipeline_clear(struct ipa *ipa) -{ - u32 count = ipa_cmd_pipeline_clear_count(); - struct gsi_trans *trans; - - trans = ipa_cmd_trans_alloc(ipa, count); - if (trans) { - ipa_cmd_pipeline_clear_add(trans); - gsi_trans_commit_wait(trans); - ipa_cmd_pipeline_clear_wait(ipa); - } else { - dev_err(&ipa->pdev->dev, - "error allocating %u entry tag transaction\n", count); - } -} - static struct ipa_cmd_info * ipa_cmd_info_alloc(struct ipa_endpoint *endpoint, u32 tre_count) { diff --git a/drivers/net/ipa/ipa_cmd.h b/drivers/net/ipa/ipa_cmd.h index 69cd085d427dbf..05ed7e42e18420 100644 --- a/drivers/net/ipa/ipa_cmd.h +++ b/drivers/net/ipa/ipa_cmd.h @@ -163,12 +163,6 @@ u32 ipa_cmd_pipeline_clear_count(void); */ void ipa_cmd_pipeline_clear_wait(struct ipa *ipa); -/** - * ipa_cmd_pipeline_clear() - Clear the hardware pipeline - * @ipa: - IPA pointer - */ -void ipa_cmd_pipeline_clear(struct ipa *ipa); - /** * ipa_cmd_trans_alloc() - Allocate a transaction for the command TX endpoint * @ipa: IPA pointer diff --git a/drivers/net/ipa/ipa_endpoint.c b/drivers/net/ipa/ipa_endpoint.c index ef790fd0ab56a7..03a17099342087 100644 --- a/drivers/net/ipa/ipa_endpoint.c +++ b/drivers/net/ipa/ipa_endpoint.c @@ -1636,8 +1636,6 @@ void ipa_endpoint_suspend(struct ipa *ipa) if (ipa->modem_netdev) ipa_modem_suspend(ipa->modem_netdev); - ipa_cmd_pipeline_clear(ipa); - ipa_endpoint_suspend_one(ipa->name_map[IPA_ENDPOINT_AP_LAN_RX]); ipa_endpoint_suspend_one(ipa->name_map[IPA_ENDPOINT_AP_COMMAND_TX]); } From 57e91396455e7c06012ecde014b4dca3d3393008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Beh=C3=BAn?= Date: Mon, 22 Nov 2021 21:08:34 +0100 Subject: [PATCH 124/192] net: marvell: mvpp2: increase MTU limit when XDP enabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit 7b1b62bc1e6a7b2fd5ee7a4296268eb291d23aeb ] Currently mvpp2_xdp_setup won't allow attaching XDP program if mtu > ETH_DATA_LEN (1500). The mvpp2_change_mtu on the other hand checks whether MVPP2_RX_PKT_SIZE(mtu) > MVPP2_BM_LONG_PKT_SIZE. These two checks are semantically different. Moreover this limit can be increased to MVPP2_MAX_RX_BUF_SIZE, since in mvpp2_rx we have xdp.data = data + MVPP2_MH_SIZE + MVPP2_SKB_HEADROOM; xdp.frame_sz = PAGE_SIZE; Change the checks to check whether mtu > MVPP2_MAX_RX_BUF_SIZE Fixes: 07dd0a7aae7f ("mvpp2: add basic XDP support") Signed-off-by: Marek Behún Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c index d74d4966b13fcb..ed6d0c019573b6 100644 --- a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c +++ b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c @@ -5017,11 +5017,13 @@ static int mvpp2_change_mtu(struct net_device *dev, int mtu) mtu = ALIGN(MVPP2_RX_PKT_SIZE(mtu), 8); } + if (port->xdp_prog && mtu > MVPP2_MAX_RX_BUF_SIZE) { + netdev_err(dev, "Illegal MTU value %d (> %d) for XDP mode\n", + mtu, (int)MVPP2_MAX_RX_BUF_SIZE); + return -EINVAL; + } + if (MVPP2_RX_PKT_SIZE(mtu) > MVPP2_BM_LONG_PKT_SIZE) { - if (port->xdp_prog) { - netdev_err(dev, "Jumbo frames are not supported with XDP\n"); - return -EINVAL; - } if (priv->percpu_pools) { netdev_warn(dev, "mtu %d too high, switching to shared buffers", mtu); mvpp2_bm_switch_buffers(priv, false); @@ -5307,8 +5309,8 @@ static int mvpp2_xdp_setup(struct mvpp2_port *port, struct netdev_bpf *bpf) bool running = netif_running(port->dev); bool reset = !prog != !port->xdp_prog; - if (port->dev->mtu > ETH_DATA_LEN) { - NL_SET_ERR_MSG_MOD(bpf->extack, "XDP is not supported with jumbo frames enabled"); + if (port->dev->mtu > MVPP2_MAX_RX_BUF_SIZE) { + NL_SET_ERR_MSG_MOD(bpf->extack, "MTU too large for XDP"); return -EOPNOTSUPP; } From d10ecfd9518e35eb33ab42531cb4fb41809db8d9 Mon Sep 17 00:00:00 2001 From: Adamos Ttofari Date: Fri, 12 Nov 2021 09:16:57 +0000 Subject: [PATCH 125/192] cpufreq: intel_pstate: Add Ice Lake server to out-of-band IDs [ Upstream commit cd23f02f166892603eb9f2d488152b975872b682 ] Commit fbdc21e9b038 ("cpufreq: intel_pstate: Add Icelake servers support in no-HWP mode") enabled the use of Intel P-State driver for Ice Lake servers. But it doesn't cover the case when OS can't control P-States. Therefore, for Ice Lake server, if MSR_MISC_PWR_MGMT bits 8 or 18 are enabled, then the Intel P-State driver should exit as OS can't control P-States. Fixes: fbdc21e9b038 ("cpufreq: intel_pstate: Add Icelake servers support in no-HWP mode") Signed-off-by: Adamos Ttofari Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- drivers/cpufreq/intel_pstate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index 3e56a4a1d1d3a1..e15c3bc17a55ce 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c @@ -2255,6 +2255,7 @@ static const struct x86_cpu_id intel_pstate_cpu_oob_ids[] __initconst = { X86_MATCH(BROADWELL_D, core_funcs), X86_MATCH(BROADWELL_X, core_funcs), X86_MATCH(SKYLAKE_X, core_funcs), + X86_MATCH(ICELAKE_X, core_funcs), {} }; From 63a68f37718294ab0c1d07699845b4c88f6d5f00 Mon Sep 17 00:00:00 2001 From: Varun Prakash Date: Mon, 22 Nov 2021 15:38:41 +0530 Subject: [PATCH 126/192] nvmet-tcp: fix incomplete data digest send [ Upstream commit 102110efdff6beedece6ab9b51664c32ac01e2db ] Current nvmet_try_send_ddgst() code does not check whether all data digest bytes are transmitted, fix this by returning -EAGAIN if all data digest bytes are not transmitted. Fixes: 872d26a391da ("nvmet-tcp: add NVMe over TCP target driver") Signed-off-by: Varun Prakash Reviewed-by: Sagi Grimberg Signed-off-by: Christoph Hellwig Signed-off-by: Sasha Levin --- drivers/nvme/target/tcp.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/nvme/target/tcp.c b/drivers/nvme/target/tcp.c index 84c387e4bf4314..2b8bab28417b87 100644 --- a/drivers/nvme/target/tcp.c +++ b/drivers/nvme/target/tcp.c @@ -700,10 +700,11 @@ static int nvmet_try_send_r2t(struct nvmet_tcp_cmd *cmd, bool last_in_batch) static int nvmet_try_send_ddgst(struct nvmet_tcp_cmd *cmd, bool last_in_batch) { struct nvmet_tcp_queue *queue = cmd->queue; + int left = NVME_TCP_DIGEST_LENGTH - cmd->offset; struct msghdr msg = { .msg_flags = MSG_DONTWAIT }; struct kvec iov = { .iov_base = (u8 *)&cmd->exp_ddgst + cmd->offset, - .iov_len = NVME_TCP_DIGEST_LENGTH - cmd->offset + .iov_len = left }; int ret; @@ -717,6 +718,10 @@ static int nvmet_try_send_ddgst(struct nvmet_tcp_cmd *cmd, bool last_in_batch) return ret; cmd->offset += ret; + left -= ret; + + if (left) + return -EAGAIN; if (queue->nvme_sq.sqhd_disabled) { cmd->queue->snd_cmd = NULL; From 85851d9ff790509a42aa12a770ead6e84e427eeb Mon Sep 17 00:00:00 2001 From: Mohammed Gamal Date: Fri, 19 Nov 2021 12:29:00 +0100 Subject: [PATCH 127/192] drm/hyperv: Fix device removal on Gen1 VMs [ Upstream commit e048834c209a02e3776bcc47d43c6d863e3a67ca ] The Hyper-V DRM driver tries to free MMIO region on removing the device regardless of VM type, while Gen1 VMs don't use MMIO and hence causing the kernel to crash on a NULL pointer dereference. Fix this by making deallocating MMIO only on Gen2 machines and implement removal for Gen1 Fixes: 76c56a5affeb ("drm/hyperv: Add DRM driver for hyperv synthetic video device") Signed-off-by: Mohammed Gamal Reviewed-by: Deepak Rawat Signed-off-by: Deepak Rawat Link: https://patchwork.freedesktop.org/patch/msgid/20211119112900.300537-1-mgamal@redhat.com Signed-off-by: Sasha Levin --- drivers/gpu/drm/hyperv/hyperv_drm_drv.c | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c index cd818a6291835d..00e53de4812bb5 100644 --- a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c +++ b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c @@ -225,12 +225,29 @@ static int hyperv_vmbus_remove(struct hv_device *hdev) { struct drm_device *dev = hv_get_drvdata(hdev); struct hyperv_drm_device *hv = to_hv(dev); + struct pci_dev *pdev; drm_dev_unplug(dev); drm_atomic_helper_shutdown(dev); vmbus_close(hdev->channel); hv_set_drvdata(hdev, NULL); - vmbus_free_mmio(hv->mem->start, hv->fb_size); + + /* + * Free allocated MMIO memory only on Gen2 VMs. + * On Gen1 VMs, release the PCI device + */ + if (efi_enabled(EFI_BOOT)) { + vmbus_free_mmio(hv->mem->start, hv->fb_size); + } else { + pdev = pci_get_device(PCI_VENDOR_ID_MICROSOFT, + PCI_DEVICE_ID_HYPERV_VIDEO, NULL); + if (!pdev) { + drm_err(dev, "Unable to find PCI Hyper-V video\n"); + return -ENODEV; + } + pci_release_region(pdev, 0); + pci_dev_put(pdev); + } return 0; } From ff1a30740f7aa78699cea964640df6ff4f034bb5 Mon Sep 17 00:00:00 2001 From: Mark Rutland Date: Mon, 22 Nov 2021 12:58:20 +0000 Subject: [PATCH 128/192] arm64: uaccess: avoid blocking within critical sections [ Upstream commit 94902d849e85093aafcdbea2be8e2beff47233e6 ] As Vincent reports in: https://lore.kernel.org/r/20211118163417.21617-1-vincent.whitchurch@axis.com The put_user() in schedule_tail() can get stuck in a livelock, similar to a problem recently fixed on riscv in commit: 285a76bb2cf51b0c ("riscv: evaluate put_user() arg before enabling user access") In __raw_put_user() we have a critical section between uaccess_ttbr0_enable() and uaccess_ttbr0_disable() where we cannot safely call into the scheduler without having taken an exception, as schedule() and other scheduling functions will not save/restore the TTBR0 state. If either of the `x` or `ptr` arguments to __raw_put_user() contain a blocking call, we may call into the scheduler within the critical section. This can result in two problems: 1) The access within the critical section will occur without the required TTBR0 tables installed. This will fault, and where the required tables permit access, the access will be retried without the required tables, resulting in a livelock. 2) When TTBR0 SW PAN is in use, check_and_switch_context() does not modify TTBR0, leaving a stale value installed. The mappings of the blocked task will erroneously be accessible to regular accesses in the context of the new task. Additionally, if the tables are subsequently freed, local TLB maintenance required to reuse the ASID may be lost, potentially resulting in TLB corruption (e.g. in the presence of CnP). The same issue exists for __raw_get_user() in the critical section between uaccess_ttbr0_enable() and uaccess_ttbr0_disable(). A similar issue exists for __get_kernel_nofault() and __put_kernel_nofault() for the critical section between __uaccess_enable_tco_async() and __uaccess_disable_tco_async(), as the TCO state is not context-switched by direct calls into the scheduler. Here the TCO state may be lost from the context of the current task, resulting in unexpected asynchronous tag check faults. It may also be leaked to another task, suppressing expected tag check faults. To fix all of these cases, we must ensure that we do not directly call into the scheduler in their respective critical sections. This patch reworks __raw_put_user(), __raw_get_user(), __get_kernel_nofault(), and __put_kernel_nofault(), ensuring that parameters are evaluated outside of the critical sections. To make this requirement clear, comments are added describing the problem, and line spaces added to separate the critical sections from other portions of the macros. For __raw_get_user() and __raw_put_user() the `err` parameter is conditionally assigned to, and we must currently evaluate this in the critical section. This behaviour is relied upon by the signal code, which uses chains of put_user_error() and get_user_error(), checking the return value at the end. In all cases, the `err` parameter is a plain int rather than a more complex expression with a blocking call, so this is safe. In future we should try to clean up the `err` usage to remove the potential for this to be a problem. Aside from the changes to time of evaluation, there should be no functional change as a result of this patch. Reported-by: Vincent Whitchurch Link: https://lore.kernel.org/r/20211118163417.21617-1-vincent.whitchurch@axis.com Fixes: f253d827f33c ("arm64: uaccess: refactor __{get,put}_user") Signed-off-by: Mark Rutland Cc: Will Deacon Cc: Catalin Marinas Link: https://lore.kernel.org/r/20211122125820.55286-1-mark.rutland@arm.com Signed-off-by: Will Deacon Signed-off-by: Sasha Levin --- arch/arm64/include/asm/uaccess.h | 48 +++++++++++++++++++++++++++----- 1 file changed, 41 insertions(+), 7 deletions(-) diff --git a/arch/arm64/include/asm/uaccess.h b/arch/arm64/include/asm/uaccess.h index 190b494e22ab91..0fd6056ba412bb 100644 --- a/arch/arm64/include/asm/uaccess.h +++ b/arch/arm64/include/asm/uaccess.h @@ -292,12 +292,22 @@ do { \ (x) = (__force __typeof__(*(ptr)))__gu_val; \ } while (0) +/* + * We must not call into the scheduler between uaccess_ttbr0_enable() and + * uaccess_ttbr0_disable(). As `x` and `ptr` could contain blocking functions, + * we must evaluate these outside of the critical section. + */ #define __raw_get_user(x, ptr, err) \ do { \ + __typeof__(*(ptr)) __user *__rgu_ptr = (ptr); \ + __typeof__(x) __rgu_val; \ __chk_user_ptr(ptr); \ + \ uaccess_ttbr0_enable(); \ - __raw_get_mem("ldtr", x, ptr, err); \ + __raw_get_mem("ldtr", __rgu_val, __rgu_ptr, err); \ uaccess_ttbr0_disable(); \ + \ + (x) = __rgu_val; \ } while (0) #define __get_user_error(x, ptr, err) \ @@ -321,14 +331,22 @@ do { \ #define get_user __get_user +/* + * We must not call into the scheduler between __uaccess_enable_tco_async() and + * __uaccess_disable_tco_async(). As `dst` and `src` may contain blocking + * functions, we must evaluate these outside of the critical section. + */ #define __get_kernel_nofault(dst, src, type, err_label) \ do { \ + __typeof__(dst) __gkn_dst = (dst); \ + __typeof__(src) __gkn_src = (src); \ int __gkn_err = 0; \ \ __uaccess_enable_tco_async(); \ - __raw_get_mem("ldr", *((type *)(dst)), \ - (__force type *)(src), __gkn_err); \ + __raw_get_mem("ldr", *((type *)(__gkn_dst)), \ + (__force type *)(__gkn_src), __gkn_err); \ __uaccess_disable_tco_async(); \ + \ if (unlikely(__gkn_err)) \ goto err_label; \ } while (0) @@ -367,11 +385,19 @@ do { \ } \ } while (0) +/* + * We must not call into the scheduler between uaccess_ttbr0_enable() and + * uaccess_ttbr0_disable(). As `x` and `ptr` could contain blocking functions, + * we must evaluate these outside of the critical section. + */ #define __raw_put_user(x, ptr, err) \ do { \ - __chk_user_ptr(ptr); \ + __typeof__(*(ptr)) __user *__rpu_ptr = (ptr); \ + __typeof__(*(ptr)) __rpu_val = (x); \ + __chk_user_ptr(__rpu_ptr); \ + \ uaccess_ttbr0_enable(); \ - __raw_put_mem("sttr", x, ptr, err); \ + __raw_put_mem("sttr", __rpu_val, __rpu_ptr, err); \ uaccess_ttbr0_disable(); \ } while (0) @@ -396,14 +422,22 @@ do { \ #define put_user __put_user +/* + * We must not call into the scheduler between __uaccess_enable_tco_async() and + * __uaccess_disable_tco_async(). As `dst` and `src` may contain blocking + * functions, we must evaluate these outside of the critical section. + */ #define __put_kernel_nofault(dst, src, type, err_label) \ do { \ + __typeof__(dst) __pkn_dst = (dst); \ + __typeof__(src) __pkn_src = (src); \ int __pkn_err = 0; \ \ __uaccess_enable_tco_async(); \ - __raw_put_mem("str", *((type *)(src)), \ - (__force type *)(dst), __pkn_err); \ + __raw_put_mem("str", *((type *)(__pkn_src)), \ + (__force type *)(__pkn_dst), __pkn_err); \ __uaccess_disable_tco_async(); \ + \ if (unlikely(__pkn_err)) \ goto err_label; \ } while(0) From fd49f1f5945a9eb59384b643282fae0da6fe0914 Mon Sep 17 00:00:00 2001 From: Kumar Thangavel Date: Mon, 22 Nov 2021 22:08:18 +0530 Subject: [PATCH 129/192] net/ncsi : Add payload to be 32-bit aligned to fix dropped packets [ Upstream commit ac132852147ad303a938dda318970dd1bbdfda4e ] Update NC-SI command handler (both standard and OEM) to take into account of payload paddings in allocating skb (in case of payload size is not 32-bit aligned). The checksum field follows payload field, without taking payload padding into account can cause checksum being truncated, leading to dropped packets. Fixes: fb4ee67529ff ("net/ncsi: Add NCSI OEM command support") Signed-off-by: Kumar Thangavel Acked-by: Samuel Mendoza-Jonas Reviewed-by: Paul Menzel Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- net/ncsi/ncsi-cmd.c | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/net/ncsi/ncsi-cmd.c b/net/ncsi/ncsi-cmd.c index ba9ae482141b0f..dda8b76b77988a 100644 --- a/net/ncsi/ncsi-cmd.c +++ b/net/ncsi/ncsi-cmd.c @@ -18,6 +18,8 @@ #include "internal.h" #include "ncsi-pkt.h" +static const int padding_bytes = 26; + u32 ncsi_calculate_checksum(unsigned char *data, int len) { u32 checksum = 0; @@ -213,12 +215,17 @@ static int ncsi_cmd_handler_oem(struct sk_buff *skb, { struct ncsi_cmd_oem_pkt *cmd; unsigned int len; + int payload; + /* NC-SI spec DSP_0222_1.2.0, section 8.2.2.2 + * requires payload to be padded with 0 to + * 32-bit boundary before the checksum field. + * Ensure the padding bytes are accounted for in + * skb allocation + */ + payload = ALIGN(nca->payload, 4); len = sizeof(struct ncsi_cmd_pkt_hdr) + 4; - if (nca->payload < 26) - len += 26; - else - len += nca->payload; + len += max(payload, padding_bytes); cmd = skb_put_zero(skb, len); memcpy(&cmd->mfr_id, nca->data, nca->payload); @@ -272,6 +279,7 @@ static struct ncsi_request *ncsi_alloc_command(struct ncsi_cmd_arg *nca) struct net_device *dev = nd->dev; int hlen = LL_RESERVED_SPACE(dev); int tlen = dev->needed_tailroom; + int payload; int len = hlen + tlen; struct sk_buff *skb; struct ncsi_request *nr; @@ -281,14 +289,14 @@ static struct ncsi_request *ncsi_alloc_command(struct ncsi_cmd_arg *nca) return NULL; /* NCSI command packet has 16-bytes header, payload, 4 bytes checksum. + * Payload needs padding so that the checksum field following payload is + * aligned to 32-bit boundary. * The packet needs padding if its payload is less than 26 bytes to * meet 64 bytes minimal ethernet frame length. */ len += sizeof(struct ncsi_cmd_pkt_hdr) + 4; - if (nca->payload < 26) - len += 26; - else - len += nca->payload; + payload = ALIGN(nca->payload, 4); + len += max(payload, padding_bytes); /* Allocate skb */ skb = alloc_skb(len, GFP_ATOMIC); From c83f27576c46bc8071141a67aa8adb471ec9bac5 Mon Sep 17 00:00:00 2001 From: Thomas Zeitlhofer Date: Tue, 23 Nov 2021 20:18:43 +0100 Subject: [PATCH 130/192] PM: hibernate: use correct mode for swsusp_close() [ Upstream commit cefcf24b4d351daf70ecd945324e200d3736821e ] Commit 39fbef4b0f77 ("PM: hibernate: Get block device exclusively in swsusp_check()") changed the opening mode of the block device to (FMODE_READ | FMODE_EXCL). In the corresponding calls to swsusp_close(), the mode is still just FMODE_READ which triggers the warning in blkdev_flush_mapping() on resume from hibernate. So, use the mode (FMODE_READ | FMODE_EXCL) also when closing the device. Fixes: 39fbef4b0f77 ("PM: hibernate: Get block device exclusively in swsusp_check()") Signed-off-by: Thomas Zeitlhofer Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- kernel/power/hibernate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index 559acef3fddb89..b0888e9224da3b 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c @@ -691,7 +691,7 @@ static int load_image_and_restore(void) goto Unlock; error = swsusp_read(&flags); - swsusp_close(FMODE_READ); + swsusp_close(FMODE_READ | FMODE_EXCL); if (!error) error = hibernation_restore(flags & SF_PLATFORM_MODE); @@ -981,7 +981,7 @@ static int software_resume(void) /* The snapshot device should not be opened while we're running */ if (!hibernate_acquire()) { error = -EBUSY; - swsusp_close(FMODE_READ); + swsusp_close(FMODE_READ | FMODE_EXCL); goto Unlock; } @@ -1016,7 +1016,7 @@ static int software_resume(void) pm_pr_dbg("Hibernation image not present or could not be loaded.\n"); return error; Close_Finish: - swsusp_close(FMODE_READ); + swsusp_close(FMODE_READ | FMODE_EXCL); goto Finish; } From 4da564004a73601e67ea609fed760f00d0682210 Mon Sep 17 00:00:00 2001 From: Nicholas Kazlauskas Date: Mon, 8 Nov 2021 16:49:48 -0500 Subject: [PATCH 131/192] drm/amd/display: Fix DPIA outbox timeout after GPU reset [ Upstream commit 6eff272dbee7ad444c491c9a96d49e78e91e2161 ] [Why] The HW interrupt gets disabled after GPU reset so we don't receive notifications for HPD or AUX from DMUB - leading to timeout and black screen with (or without) DPIA links connected. [How] Re-enable the interrupt after GPU reset like we do for the other DC interrupts. Fixes: 81927e2808be ("drm/amd/display: Support for DMUB AUX") Reviewed-by: Jude Shih Acked-by: Qingqing Zhuo Signed-off-by: Nicholas Kazlauskas Tested-by: Daniel Wheeler Signed-off-by: Alex Deucher Signed-off-by: Sasha Levin --- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c index d15967239474ec..56f4569da2f7d0 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -2213,6 +2213,8 @@ static int dm_resume(void *handle) if (amdgpu_in_reset(adev)) { dc_state = dm->cached_dc_state; + amdgpu_dm_outbox_init(adev); + r = dm_dmub_hw_init(adev); if (r) DRM_ERROR("DMUB interface failed to initialize: status=%d\n", r); From 7b904ba3568dab19699948dc56728793d3e1814e Mon Sep 17 00:00:00 2001 From: Nicholas Kazlauskas Date: Tue, 9 Nov 2021 11:24:10 -0500 Subject: [PATCH 132/192] drm/amd/display: Set plane update flags for all planes in reset [ Upstream commit 21431f70f6014f81b0d118ff4fcee12b00b9dd70 ] [Why] We're only setting the flags on stream[0]'s planes so this logic fails if we have more than one stream in the state. This can cause a page flip timeout with multiple displays in the configuration. [How] Index into the stream_status array using the stream index - it's a 1:1 mapping. Fixes: cdaae8371aa9 ("drm/amd/display: Handle GPU reset for DC block") Reviewed-by: Harry Wentland Acked-by: Qingqing Zhuo Signed-off-by: Nicholas Kazlauskas Tested-by: Daniel Wheeler Signed-off-by: Alex Deucher Signed-off-by: Sasha Levin --- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c index 56f4569da2f7d0..dc995ce52eff22 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -2226,8 +2226,8 @@ static int dm_resume(void *handle) for (i = 0; i < dc_state->stream_count; i++) { dc_state->streams[i]->mode_changed = true; - for (j = 0; j < dc_state->stream_status->plane_count; j++) { - dc_state->stream_status->plane_states[j]->update_flags.raw + for (j = 0; j < dc_state->stream_status[i].plane_count; j++) { + dc_state->stream_status[i].plane_states[j]->update_flags.raw = 0xffffffff; } } From 8165a96f6b7122f25bf809aecf06f17b0ec37b58 Mon Sep 17 00:00:00 2001 From: Eric Dumazet Date: Tue, 23 Nov 2021 12:25:35 -0800 Subject: [PATCH 133/192] tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited flows [ Upstream commit 4e1fddc98d2585ddd4792b5e44433dcee7ece001 ] While testing BIG TCP patch series, I was expecting that TCP_RR workloads with 80KB requests/answers would send one 80KB TSO packet, then being received as a single GRO packet. It turns out this was not happening, and the root cause was that cubic Hystart ACK train was triggering after a few (2 or 3) rounds of RPC. Hystart was wrongly setting CWND/SSTHRESH to 30, while my RPC needed a budget of ~20 segments. Ideally these TCP_RR flows should not exit slow start. Cubic Hystart should reset itself at each round, instead of assuming every TCP flow is a bulk one. Note that even after this patch, Hystart can still trigger, depending on scheduling artifacts, but at a higher CWND/SSTHRESH threshold, keeping optimal TSO packet sizes. Tested: ip link set dev eth0 gro_ipv6_max_size 131072 gso_ipv6_max_size 131072 nstat -n; netperf -H ... -t TCP_RR -l 5 -- -r 80000,80000 -K cubic; nstat|egrep "Ip6InReceives|Hystart|Ip6OutRequests" Before: 8605 Ip6InReceives 87541 0.0 Ip6OutRequests 129496 0.0 TcpExtTCPHystartTrainDetect 1 0.0 TcpExtTCPHystartTrainCwnd 30 0.0 After: 8760 Ip6InReceives 88514 0.0 Ip6OutRequests 87975 0.0 Fixes: ae27e98a5152 ("[TCP] CUBIC v2.3") Co-developed-by: Neal Cardwell Signed-off-by: Neal Cardwell Signed-off-by: Eric Dumazet Cc: Stephen Hemminger Cc: Yuchung Cheng Cc: Soheil Hassas Yeganeh Link: https://lore.kernel.org/r/20211123202535.1843771-1-eric.dumazet@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/ipv4/tcp_cubic.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net/ipv4/tcp_cubic.c b/net/ipv4/tcp_cubic.c index 4a30deaa9a37f4..8d2d4d652f6d40 100644 --- a/net/ipv4/tcp_cubic.c +++ b/net/ipv4/tcp_cubic.c @@ -328,8 +328,6 @@ static void cubictcp_cong_avoid(struct sock *sk, u32 ack, u32 acked) return; if (tcp_in_slow_start(tp)) { - if (hystart && after(ack, ca->end_seq)) - bictcp_hystart_reset(sk); acked = tcp_slow_start(tp, acked); if (!acked) return; @@ -389,6 +387,9 @@ static void hystart_update(struct sock *sk, u32 delay) struct bictcp *ca = inet_csk_ca(sk); u32 threshold; + if (after(tp->snd_una, ca->end_seq)) + bictcp_hystart_reset(sk); + if (hystart_detect & HYSTART_ACK_TRAIN) { u32 now = bictcp_clock_us(sk); From cc1645427a0f258467de1fa9ebfc293344c1a719 Mon Sep 17 00:00:00 2001 From: Heiner Kallweit Date: Wed, 24 Nov 2021 08:16:25 +0100 Subject: [PATCH 134/192] lan743x: fix deadlock in lan743x_phy_link_status_change() [ Upstream commit ddb826c2c92d461f290a7bab89e7c28696191875 ] Usage of phy_ethtool_get_link_ksettings() in the link status change handler isn't needed, and in combination with the referenced change it results in a deadlock. Simply remove the call and replace it with direct access to phydev->speed. The duplex argument of lan743x_phy_update_flowcontrol() isn't used and can be removed. Fixes: c10a485c3de5 ("phy: phy_ethtool_ksettings_get: Lock the phy for consistency") Reported-by: Alessandro B Maurici Tested-by: Alessandro B Maurici Signed-off-by: Heiner Kallweit Reviewed-by: Andrew Lunn Link: https://lore.kernel.org/r/40e27f76-0ba3-dcef-ee32-a78b9df38b0f@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/microchip/lan743x_main.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/drivers/net/ethernet/microchip/lan743x_main.c b/drivers/net/ethernet/microchip/lan743x_main.c index 4d5a5d6595b3bb..d64ce65a3c1743 100644 --- a/drivers/net/ethernet/microchip/lan743x_main.c +++ b/drivers/net/ethernet/microchip/lan743x_main.c @@ -914,8 +914,7 @@ static int lan743x_phy_reset(struct lan743x_adapter *adapter) } static void lan743x_phy_update_flowcontrol(struct lan743x_adapter *adapter, - u8 duplex, u16 local_adv, - u16 remote_adv) + u16 local_adv, u16 remote_adv) { struct lan743x_phy *phy = &adapter->phy; u8 cap; @@ -943,7 +942,6 @@ static void lan743x_phy_link_status_change(struct net_device *netdev) phy_print_status(phydev); if (phydev->state == PHY_RUNNING) { - struct ethtool_link_ksettings ksettings; int remote_advertisement = 0; int local_advertisement = 0; @@ -980,18 +978,14 @@ static void lan743x_phy_link_status_change(struct net_device *netdev) } lan743x_csr_write(adapter, MAC_CR, data); - memset(&ksettings, 0, sizeof(ksettings)); - phy_ethtool_get_link_ksettings(netdev, &ksettings); local_advertisement = linkmode_adv_to_mii_adv_t(phydev->advertising); remote_advertisement = linkmode_adv_to_mii_adv_t(phydev->lp_advertising); - lan743x_phy_update_flowcontrol(adapter, - ksettings.base.duplex, - local_advertisement, + lan743x_phy_update_flowcontrol(adapter, local_advertisement, remote_advertisement); - lan743x_ptp_update_latency(adapter, ksettings.base.speed); + lan743x_ptp_update_latency(adapter, phydev->speed); } } From d6525de28dfeefb30e8487f83d62b38ab840344a Mon Sep 17 00:00:00 2001 From: "Russell King (Oracle)" Date: Tue, 23 Nov 2021 16:44:02 +0100 Subject: [PATCH 135/192] net: phylink: Force link down and retrigger resolve on interface change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit 80662f4fd4771bc9c7cc4abdfbe866ebd1179621 ] On PHY state change the phylink_resolve() function can read stale information from the MAC and report incorrect link speed and duplex to the kernel message log. Example with a Marvell 88X3310 PHY connected to a SerDes port on Marvell 88E6393X switch: - PHY driver triggers state change due to PHY interface mode being changed from 10gbase-r to 2500base-x due to copper change in speed from 10Gbps to 2.5Gbps, but the PHY itself either hasn't yet changed its interface to the host, or the interrupt about loss of SerDes link hadn't arrived yet (there can be a delay of several milliseconds for this), so we still think that the 10gbase-r mode is up - phylink_resolve() - phylink_mac_pcs_get_state() - this fills in speed=10g link=up - interface mode is updated to 2500base-x but speed is left at 10Gbps - phylink_major_config() - interface is changed to 2500base-x - phylink_link_up() - mv88e6xxx_mac_link_up() - .port_set_speed_duplex() - speed is set to 10Gbps - reports "Link is Up - 10Gbps/Full" to dmesg Afterwards when the interrupt finally arrives for mv88e6xxx, another resolve is forced in which we get the correct speed from phylink_mac_pcs_get_state(), but since the interface is not being changed anymore, we don't call phylink_major_config() but only phylink_mac_config(), which does not set speed/duplex anymore. To fix this, we need to force the link down and trigger another resolve on PHY interface change event. Fixes: 9525ae83959b ("phylink: add phylink infrastructure") Signed-off-by: Russell King (Oracle) Signed-off-by: Marek Behún Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/phy/phylink.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c index 7ec3105010ac1e..59ee87df5746e3 100644 --- a/drivers/net/phy/phylink.c +++ b/drivers/net/phy/phylink.c @@ -657,6 +657,7 @@ static void phylink_resolve(struct work_struct *w) struct phylink_link_state link_state; struct net_device *ndev = pl->netdev; bool mac_config = false; + bool retrigger = false; bool cur_link_state; mutex_lock(&pl->state_mutex); @@ -670,6 +671,7 @@ static void phylink_resolve(struct work_struct *w) link_state.link = false; } else if (pl->mac_link_dropped) { link_state.link = false; + retrigger = true; } else { switch (pl->cur_link_an_mode) { case MLO_AN_PHY: @@ -694,6 +696,15 @@ static void phylink_resolve(struct work_struct *w) /* Only update if the PHY link is up */ if (pl->phydev && pl->phy_state.link) { + /* If the interface has changed, force a + * link down event if the link isn't already + * down, and re-resolve. + */ + if (link_state.interface != + pl->phy_state.interface) { + retrigger = true; + link_state.link = false; + } link_state.interface = pl->phy_state.interface; /* If we have a PHY, we need to update with @@ -736,7 +747,7 @@ static void phylink_resolve(struct work_struct *w) else phylink_link_up(pl, link_state); } - if (!link_state.link && pl->mac_link_dropped) { + if (!link_state.link && retrigger) { pl->mac_link_dropped = false; queue_work(system_power_efficient_wq, &pl->resolve); } From e85d50c4d85ef302ffb1a331b00648d52387fb23 Mon Sep 17 00:00:00 2001 From: "Russell King (Oracle)" Date: Tue, 23 Nov 2021 16:44:03 +0100 Subject: [PATCH 136/192] net: phylink: Force retrigger in case of latched link-fail indicator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ Upstream commit dbae3388ea9ca33bd1d5eabc3b0ef17e69c74677 ] On mv88e6xxx 1G/2.5G PCS, the SerDes register 4.2001.2 has the following description: This register bit indicates when link was lost since the last read. For the current link status, read this register back-to-back. Thus to get current link state, we need to read the register twice. But doing that in the link change interrupt handler would lead to potentially ignoring link down events, which we really want to avoid. Thus this needs to be solved in phylink's resolve, by retriggering another resolve in the event when PCS reports link down and previous link was up, and by re-reading PCS state if the previous link was down. The wrong value is read when phylink requests change from sgmii to 2500base-x mode, and link won't come up. This fixes the bug. Fixes: 9525ae83959b ("phylink: add phylink infrastructure") Signed-off-by: Russell King (Oracle) Signed-off-by: Marek Behún Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/phy/phylink.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c index 59ee87df5746e3..fef1416dcee4cc 100644 --- a/drivers/net/phy/phylink.c +++ b/drivers/net/phy/phylink.c @@ -688,6 +688,19 @@ static void phylink_resolve(struct work_struct *w) case MLO_AN_INBAND: phylink_mac_pcs_get_state(pl, &link_state); + /* The PCS may have a latching link-fail indicator. + * If the link was up, bring the link down and + * re-trigger the resolve. Otherwise, re-read the + * PCS state to get the current status of the link. + */ + if (!link_state.link) { + if (cur_link_state) + retrigger = true; + else + phylink_mac_pcs_get_state(pl, + &link_state); + } + /* If we have a phy, the "up" state is the union of * both the PHY and the MAC */ From bb851d0fb02547d03cd40106b5f2391c4fed6ed1 Mon Sep 17 00:00:00 2001 From: Karsten Graul Date: Wed, 24 Nov 2021 13:32:37 +0100 Subject: [PATCH 137/192] net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() [ Upstream commit 587acad41f1bc48e16f42bb2aca63bf323380be8 ] Coverity reports a possible NULL dereferencing problem: in smc_vlan_by_tcpsk(): 6. returned_null: netdev_lower_get_next returns NULL (checked 29 out of 30 times). 7. var_assigned: Assigning: ndev = NULL return value from netdev_lower_get_next. 1623 ndev = (struct net_device *)netdev_lower_get_next(ndev, &lower); CID 1468509 (#1 of 1): Dereference null return value (NULL_RETURNS) 8. dereference: Dereferencing a pointer that might be NULL ndev when calling is_vlan_dev. 1624 if (is_vlan_dev(ndev)) { Remove the manual implementation and use netdev_walk_all_lower_dev() to iterate over the lower devices. While on it remove an obsolete function parameter comment. Fixes: cb9d43f67754 ("net/smc: determine vlan_id of stacked net_device") Suggested-by: Julian Wiedmann Signed-off-by: Karsten Graul Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/smc/smc_core.c | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/net/smc/smc_core.c b/net/smc/smc_core.c index d672c0f0e247f6..508a14fc4f5871 100644 --- a/net/smc/smc_core.c +++ b/net/smc/smc_core.c @@ -1596,14 +1596,26 @@ static void smc_link_down_work(struct work_struct *work) mutex_unlock(&lgr->llc_conf_mutex); } -/* Determine vlan of internal TCP socket. - * @vlan_id: address to store the determined vlan id into - */ +static int smc_vlan_by_tcpsk_walk(struct net_device *lower_dev, + struct netdev_nested_priv *priv) +{ + unsigned short *vlan_id = (unsigned short *)priv->data; + + if (is_vlan_dev(lower_dev)) { + *vlan_id = vlan_dev_vlan_id(lower_dev); + return 1; + } + + return 0; +} + +/* Determine vlan of internal TCP socket. */ int smc_vlan_by_tcpsk(struct socket *clcsock, struct smc_init_info *ini) { struct dst_entry *dst = sk_dst_get(clcsock->sk); + struct netdev_nested_priv priv; struct net_device *ndev; - int i, nest_lvl, rc = 0; + int rc = 0; ini->vlan_id = 0; if (!dst) { @@ -1621,20 +1633,9 @@ int smc_vlan_by_tcpsk(struct socket *clcsock, struct smc_init_info *ini) goto out_rel; } + priv.data = (void *)&ini->vlan_id; rtnl_lock(); - nest_lvl = ndev->lower_level; - for (i = 0; i < nest_lvl; i++) { - struct list_head *lower = &ndev->adj_list.lower; - - if (list_empty(lower)) - break; - lower = lower->next; - ndev = (struct net_device *)netdev_lower_get_next(ndev, &lower); - if (is_vlan_dev(ndev)) { - ini->vlan_id = vlan_dev_vlan_id(ndev); - break; - } - } + netdev_walk_all_lower_dev(ndev, smc_vlan_by_tcpsk_walk, &priv); rtnl_unlock(); out_rel: From a93af38c9f47df2109dfda94b8b66b49c14a94ef Mon Sep 17 00:00:00 2001 From: Guo DaXing Date: Wed, 24 Nov 2021 13:32:38 +0100 Subject: [PATCH 138/192] net/smc: Fix loop in smc_listen [ Upstream commit 9ebb0c4b27a6158303b791b5b91e66d7665ee30e ] The kernel_listen function in smc_listen will fail when all the available ports are occupied. At this point smc->clcsock->sk->sk_data_ready has been changed to smc_clcsock_data_ready. When we call smc_listen again, now both smc->clcsock->sk->sk_data_ready and smc->clcsk_data_ready point to the smc_clcsock_data_ready function. The smc_clcsock_data_ready() function calls lsmc->clcsk_data_ready which now points to itself resulting in an infinite loop. This patch restores smc->clcsock->sk->sk_data_ready with the old value. Fixes: a60a2b1e0af1 ("net/smc: reduce active tcp_listen workers") Signed-off-by: Guo DaXing Acked-by: Tony Lu Signed-off-by: Karsten Graul Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/smc/af_smc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index 32c1c7ce856d39..4f1fa1bcb03165 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -1918,8 +1918,10 @@ static int smc_listen(struct socket *sock, int backlog) smc->clcsock->sk->sk_user_data = (void *)((uintptr_t)smc | SK_USER_DATA_NOCOPY); rc = kernel_listen(smc->clcsock, backlog); - if (rc) + if (rc) { + smc->clcsock->sk->sk_data_ready = smc->clcsk_data_ready; goto out; + } sk->sk_max_ack_backlog = backlog; sk->sk_ack_backlog = 0; sk->sk_state = SMC_LISTEN; From 5585036815e54e380293b73050262cb62ec10d0c Mon Sep 17 00:00:00 2001 From: Maurizio Lombardi Date: Mon, 22 Nov 2021 11:08:27 +0100 Subject: [PATCH 139/192] nvmet: use IOCB_NOWAIT only if the filesystem supports it [ Upstream commit c024b226a417c4eb9353ff500b1c823165d4d508 ] Submit I/O requests with the IOCB_NOWAIT flag set only if the underlying filesystem supports it. Fixes: 50a909db36f2 ("nvmet: use IOCB_NOWAIT for file-ns buffered I/O") Signed-off-by: Maurizio Lombardi Reviewed-by: Chaitanya Kulkarni Signed-off-by: Christoph Hellwig Signed-off-by: Sasha Levin --- drivers/nvme/target/io-cmd-file.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/nvme/target/io-cmd-file.c b/drivers/nvme/target/io-cmd-file.c index 1dd1a0fe2e819d..df7e033dd2732a 100644 --- a/drivers/nvme/target/io-cmd-file.c +++ b/drivers/nvme/target/io-cmd-file.c @@ -8,6 +8,7 @@ #include #include #include +#include #include "nvmet.h" #define NVMET_MAX_MPOOL_BVEC 16 @@ -266,7 +267,8 @@ static void nvmet_file_execute_rw(struct nvmet_req *req) if (req->ns->buffered_io) { if (likely(!req->f.mpool_alloc) && - nvmet_file_execute_io(req, IOCB_NOWAIT)) + (req->ns->file->f_mode & FMODE_NOWAIT) && + nvmet_file_execute_io(req, IOCB_NOWAIT)) return; nvmet_file_submit_buffered_io(req); } else From 1685d6669a847f5c9316dabb6bed1347d0b6bcfb Mon Sep 17 00:00:00 2001 From: Jesse Brandeburg Date: Tue, 23 Nov 2021 12:40:00 -0800 Subject: [PATCH 140/192] igb: fix netpoll exit with traffic [ Upstream commit eaeace60778e524a2820d0c0ad60bf80289e292c ] Oleksandr brought a bug report where netpoll causes trace messages in the log on igb. Danielle brought this back up as still occurring, so we'll try again. [22038.710800] ------------[ cut here ]------------ [22038.710801] igb_poll+0x0/0x1440 [igb] exceeded budget in poll [22038.710802] WARNING: CPU: 12 PID: 40362 at net/core/netpoll.c:155 netpoll_poll_dev+0x18a/0x1a0 As Alex suggested, change the driver to return work_done at the exit of napi_poll, which should be safe to do in this driver because it is not polling multiple queues in this single napi context (multiple queues attached to one MSI-X vector). Several other drivers contain the same simple sequence, so I hope this will not create new problems. Fixes: 16eb8815c235 ("igb: Refactor clean_rx_irq to reduce overhead and improve performance") Reported-by: Oleksandr Natalenko Reported-by: Danielle Ratson Suggested-by: Alexander Duyck Signed-off-by: Jesse Brandeburg Tested-by: Oleksandr Natalenko Tested-by: Danielle Ratson Link: https://lore.kernel.org/r/20211123204000.1597971-1-jesse.brandeburg@intel.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/intel/igb/igb_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c index 751de06019a0e8..8f30577386b6f0 100644 --- a/drivers/net/ethernet/intel/igb/igb_main.c +++ b/drivers/net/ethernet/intel/igb/igb_main.c @@ -8019,7 +8019,7 @@ static int igb_poll(struct napi_struct *napi, int budget) if (likely(napi_complete_done(napi, work_done))) igb_ring_irq_enable(q_vector); - return min(work_done, budget - 1); + return work_done; } /** From ea3c7588e16f62080d20fa067cfa9188d37dd329 Mon Sep 17 00:00:00 2001 From: Huang Pei Date: Thu, 25 Nov 2021 18:59:49 +0800 Subject: [PATCH 141/192] MIPS: loongson64: fix FTLB configuration [ Upstream commit 7db5e9e9e5e6c10d7d26f8df7f8fd8841cb15ee7 ] It turns out that 'decode_configs' -> 'set_ftlb_enable' is called under c->cputype unset, which leaves FTLB disabled on BOTH 3A2000 and 3A3000 Fix it by calling "decode_configs" after c->cputype is initialized Fixes: da1bd29742b1 ("MIPS: Loongson64: Probe CPU features via CPUCFG") Signed-off-by: Huang Pei Signed-off-by: Thomas Bogendoerfer Signed-off-by: Sasha Levin --- arch/mips/kernel/cpu-probe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 630fcb4cb30e73..7c861e6a89529c 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -1734,8 +1734,6 @@ static inline void decode_cpucfg(struct cpuinfo_mips *c) static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) { - decode_configs(c); - /* All Loongson processors covered here define ExcCode 16 as GSExc. */ c->options |= MIPS_CPU_GSEXCEX; @@ -1796,6 +1794,8 @@ static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) panic("Unknown Loongson Processor ID!"); break; } + + decode_configs(c); } #else static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) { } From a6a75b537a4f612bf51ac40d86ce652d42fc2f4b Mon Sep 17 00:00:00 2001 From: Huang Pei Date: Thu, 25 Nov 2021 18:59:48 +0800 Subject: [PATCH 142/192] MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 [ Upstream commit 41ce097f714401e6ad8f3f5eb30d7f91b0b5e495 ] It hangup when booting Loongson 3A1000 with BOTH CONFIG_PAGE_SIZE_64KB and CONFIG_MIPS_VA_BITS_48, that it turn out to use 2-level pgtable instead of 3-level. 64KB page size with 2-level pgtable only cover 42 bits VA, use 3-level pgtable to cover all 48 bits VA(55 bits) Fixes: 1e321fa917fb ("MIPS64: Support of at least 48 bits of SEGBITS) Signed-off-by: Huang Pei Signed-off-by: Thomas Bogendoerfer Signed-off-by: Sasha Levin --- arch/mips/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index a917d408d27d8f..23654ccdbfb121 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -3189,7 +3189,7 @@ config STACKTRACE_SUPPORT config PGTABLE_LEVELS int default 4 if PAGE_SIZE_4KB && MIPS_VA_BITS_48 - default 3 if 64BIT && !PAGE_SIZE_64KB + default 3 if 64BIT && (!PAGE_SIZE_64KB || MIPS_VA_BITS_48) default 2 config MIPS_AUTO_PFN_OFFSET From befe4e2915943a086ec3c65dbfe536de674f21a4 Mon Sep 17 00:00:00 2001 From: Jakub Kicinski Date: Wed, 24 Nov 2021 15:25:52 -0800 Subject: [PATCH 143/192] tls: splice_read: fix record type check [ Upstream commit 520493f66f6822551aef2879cd40207074fe6980 ] We don't support splicing control records. TLS 1.3 changes moved the record type check into the decrypt if(). The skb may already be decrypted and still be an alert. Note that decrypt_skb_update() is idempotent and updates ctx->decrypted so the if() is pointless. Reorder the check for decryption errors with the content type check while touching them. This part is not really a bug, because if decryption failed in TLS 1.3 content type will be DATA, and for TLS 1.2 it will be correct. Nevertheless its strange to touch output before checking if the function has failed. Fixes: fedf201e1296 ("net: tls: Refactor control message handling on recv") Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/tls/tls_sw.c | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c index 1b08b877a89000..1715e793c04ba1 100644 --- a/net/tls/tls_sw.c +++ b/net/tls/tls_sw.c @@ -2006,21 +2006,18 @@ ssize_t tls_sw_splice_read(struct socket *sock, loff_t *ppos, if (!skb) goto splice_read_end; - if (!ctx->decrypted) { - err = decrypt_skb_update(sk, skb, NULL, &chunk, &zc, false); - - /* splice does not support reading control messages */ - if (ctx->control != TLS_RECORD_TYPE_DATA) { - err = -EINVAL; - goto splice_read_end; - } + err = decrypt_skb_update(sk, skb, NULL, &chunk, &zc, false); + if (err < 0) { + tls_err_abort(sk, -EBADMSG); + goto splice_read_end; + } - if (err < 0) { - tls_err_abort(sk, -EBADMSG); - goto splice_read_end; - } - ctx->decrypted = 1; + /* splice does not support reading control messages */ + if (ctx->control != TLS_RECORD_TYPE_DATA) { + err = -EINVAL; + goto splice_read_end; } + rxm = strp_msg(skb); chunk = min_t(unsigned int, rxm->full_len, len); From 6a012337bc701f347b7eac7e5e2584348debf83f Mon Sep 17 00:00:00 2001 From: Jakub Kicinski Date: Wed, 24 Nov 2021 15:25:54 -0800 Subject: [PATCH 144/192] tls: splice_read: fix accessing pre-processed records [ Upstream commit e062fe99cccd9ff9f232e593d163ecabd244fae8 ] recvmsg() will put peek()ed and partially read records onto the rx_list. splice_read() needs to consult that list otherwise it may miss data. Align with recvmsg() and also put partially-read records onto rx_list. tls_sw_advance_skb() is pretty pointless now and will be removed in net-next. Fixes: 692d7b5d1f91 ("tls: Fix recvmsg() to be able to peek across multiple records") Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/tls/tls_sw.c | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c index 1715e793c04ba1..b0cdcea1018066 100644 --- a/net/tls/tls_sw.c +++ b/net/tls/tls_sw.c @@ -1993,6 +1993,7 @@ ssize_t tls_sw_splice_read(struct socket *sock, loff_t *ppos, struct sock *sk = sock->sk; struct sk_buff *skb; ssize_t copied = 0; + bool from_queue; int err = 0; long timeo; int chunk; @@ -2002,14 +2003,20 @@ ssize_t tls_sw_splice_read(struct socket *sock, loff_t *ppos, timeo = sock_rcvtimeo(sk, flags & SPLICE_F_NONBLOCK); - skb = tls_wait_data(sk, NULL, flags & SPLICE_F_NONBLOCK, timeo, &err); - if (!skb) - goto splice_read_end; + from_queue = !skb_queue_empty(&ctx->rx_list); + if (from_queue) { + skb = __skb_dequeue(&ctx->rx_list); + } else { + skb = tls_wait_data(sk, NULL, flags & SPLICE_F_NONBLOCK, timeo, + &err); + if (!skb) + goto splice_read_end; - err = decrypt_skb_update(sk, skb, NULL, &chunk, &zc, false); - if (err < 0) { - tls_err_abort(sk, -EBADMSG); - goto splice_read_end; + err = decrypt_skb_update(sk, skb, NULL, &chunk, &zc, false); + if (err < 0) { + tls_err_abort(sk, -EBADMSG); + goto splice_read_end; + } } /* splice does not support reading control messages */ @@ -2025,7 +2032,17 @@ ssize_t tls_sw_splice_read(struct socket *sock, loff_t *ppos, if (copied < 0) goto splice_read_end; - tls_sw_advance_skb(sk, skb, copied); + if (!from_queue) { + ctx->recv_pkt = NULL; + __strp_unpause(&ctx->strp); + } + if (chunk < rxm->full_len) { + __skb_queue_head(&ctx->rx_list, skb); + rxm->offset += len; + rxm->full_len -= len; + } else { + consume_skb(skb); + } splice_read_end: release_sock(sk); From b3c37092378befe90e4bb9d1a7fb308ccc5c6f90 Mon Sep 17 00:00:00 2001 From: Jakub Kicinski Date: Wed, 24 Nov 2021 15:25:56 -0800 Subject: [PATCH 145/192] tls: fix replacing proto_ops [ Upstream commit f3911f73f51d1534f4db70b516cc1fcb6be05bae ] We replace proto_ops whenever TLS is configured for RX. But our replacement also overrides sendpage_locked, which will crash unless TX is also configured. Similarly we plug both of those in for TLS_HW (NIC crypto offload) even tho TLS_HW has a completely different implementation for TX. Last but not least we always plug in something based on inet_stream_ops even though a few of the callbacks differ for IPv6 (getname, release, bind). Use a callback building method similar to what we do for struct proto. Fixes: c46234ebb4d1 ("tls: RX path for ktls") Fixes: d4ffb02dee2f ("net/tls: enable sk_msg redirect to tls socket egress") Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/tls/tls_main.c | 47 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c index 9ab81db8a65453..9aac9c60d786db 100644 --- a/net/tls/tls_main.c +++ b/net/tls/tls_main.c @@ -61,7 +61,7 @@ static DEFINE_MUTEX(tcpv6_prot_mutex); static const struct proto *saved_tcpv4_prot; static DEFINE_MUTEX(tcpv4_prot_mutex); static struct proto tls_prots[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG]; -static struct proto_ops tls_sw_proto_ops; +static struct proto_ops tls_proto_ops[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG]; static void build_protos(struct proto prot[TLS_NUM_CONFIG][TLS_NUM_CONFIG], const struct proto *base); @@ -71,6 +71,8 @@ void update_sk_prot(struct sock *sk, struct tls_context *ctx) WRITE_ONCE(sk->sk_prot, &tls_prots[ip_ver][ctx->tx_conf][ctx->rx_conf]); + WRITE_ONCE(sk->sk_socket->ops, + &tls_proto_ops[ip_ver][ctx->tx_conf][ctx->rx_conf]); } int wait_on_pending_writer(struct sock *sk, long *timeo) @@ -581,8 +583,6 @@ static int do_tls_setsockopt_conf(struct sock *sk, sockptr_t optval, if (tx) { ctx->sk_write_space = sk->sk_write_space; sk->sk_write_space = tls_write_space; - } else { - sk->sk_socket->ops = &tls_sw_proto_ops; } goto out; @@ -640,6 +640,39 @@ struct tls_context *tls_ctx_create(struct sock *sk) return ctx; } +static void build_proto_ops(struct proto_ops ops[TLS_NUM_CONFIG][TLS_NUM_CONFIG], + const struct proto_ops *base) +{ + ops[TLS_BASE][TLS_BASE] = *base; + + ops[TLS_SW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE]; + ops[TLS_SW ][TLS_BASE].sendpage_locked = tls_sw_sendpage_locked; + + ops[TLS_BASE][TLS_SW ] = ops[TLS_BASE][TLS_BASE]; + ops[TLS_BASE][TLS_SW ].splice_read = tls_sw_splice_read; + + ops[TLS_SW ][TLS_SW ] = ops[TLS_SW ][TLS_BASE]; + ops[TLS_SW ][TLS_SW ].splice_read = tls_sw_splice_read; + +#ifdef CONFIG_TLS_DEVICE + ops[TLS_HW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE]; + ops[TLS_HW ][TLS_BASE].sendpage_locked = NULL; + + ops[TLS_HW ][TLS_SW ] = ops[TLS_BASE][TLS_SW ]; + ops[TLS_HW ][TLS_SW ].sendpage_locked = NULL; + + ops[TLS_BASE][TLS_HW ] = ops[TLS_BASE][TLS_SW ]; + + ops[TLS_SW ][TLS_HW ] = ops[TLS_SW ][TLS_SW ]; + + ops[TLS_HW ][TLS_HW ] = ops[TLS_HW ][TLS_SW ]; + ops[TLS_HW ][TLS_HW ].sendpage_locked = NULL; +#endif +#ifdef CONFIG_TLS_TOE + ops[TLS_HW_RECORD][TLS_HW_RECORD] = *base; +#endif +} + static void tls_build_proto(struct sock *sk) { int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4; @@ -651,6 +684,8 @@ static void tls_build_proto(struct sock *sk) mutex_lock(&tcpv6_prot_mutex); if (likely(prot != saved_tcpv6_prot)) { build_protos(tls_prots[TLSV6], prot); + build_proto_ops(tls_proto_ops[TLSV6], + sk->sk_socket->ops); smp_store_release(&saved_tcpv6_prot, prot); } mutex_unlock(&tcpv6_prot_mutex); @@ -661,6 +696,8 @@ static void tls_build_proto(struct sock *sk) mutex_lock(&tcpv4_prot_mutex); if (likely(prot != saved_tcpv4_prot)) { build_protos(tls_prots[TLSV4], prot); + build_proto_ops(tls_proto_ops[TLSV4], + sk->sk_socket->ops); smp_store_release(&saved_tcpv4_prot, prot); } mutex_unlock(&tcpv4_prot_mutex); @@ -871,10 +908,6 @@ static int __init tls_register(void) if (err) return err; - tls_sw_proto_ops = inet_stream_ops; - tls_sw_proto_ops.splice_read = tls_sw_splice_read; - tls_sw_proto_ops.sendpage_locked = tls_sw_sendpage_locked; - tls_device_init(); tcp_register_ulp(&tcp_tls_ulp_ops); From a92f0eebb8dc008b9e8c51c6f7b8c93b27a29a43 Mon Sep 17 00:00:00 2001 From: Yannick Vignon Date: Wed, 24 Nov 2021 16:47:31 +0100 Subject: [PATCH 146/192] net: stmmac: Disable Tx queues when reconfiguring the interface [ Upstream commit b270bfe697367776eca2e6759a71d700fb8d82a2 ] The Tx queues were not disabled in situations where the driver needed to stop the interface to apply a new configuration. This could result in a kernel panic when doing any of the 3 following actions: * reconfiguring the number of queues (ethtool -L) * reconfiguring the size of the ring buffers (ethtool -G) * installing/removing an XDP program (ip l set dev ethX xdp) Prevent the panic by making sure netif_tx_disable is called when stopping an interface. Without this patch, the following kernel panic can be observed when doing any of the actions above: Unable to handle kernel paging request at virtual address ffff80001238d040 [....] Call trace: dwmac4_set_addr+0x8/0x10 dev_hard_start_xmit+0xe4/0x1ac sch_direct_xmit+0xe8/0x39c __dev_queue_xmit+0x3ec/0xaf0 dev_queue_xmit+0x14/0x20 [...] [ end trace 0000000000000002 ]--- Fixes: 5fabb01207a2d ("net: stmmac: Add initial XDP support") Fixes: aa042f60e4961 ("net: stmmac: Add support to Ethtool get/set ring parameters") Fixes: 0366f7e06a6be ("net: stmmac: add ethtool support for get/set channels") Signed-off-by: Yannick Vignon Link: https://lore.kernel.org/r/20211124154731.1676949-1-yannick.vignon@oss.nxp.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index c18c05f78c2089..1cf94248c22170 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -3794,6 +3794,8 @@ int stmmac_release(struct net_device *dev) struct stmmac_priv *priv = netdev_priv(dev); u32 chan; + netif_tx_disable(dev); + if (device_may_wakeup(priv->device)) phylink_speed_down(priv->phylink, false); /* Stop and disconnect the PHY */ From e25bdbc7e951ae5728fee1f4c09485df113d013c Mon Sep 17 00:00:00 2001 From: Davide Caratti Date: Wed, 24 Nov 2021 17:14:40 +0100 Subject: [PATCH 147/192] net/sched: sch_ets: don't peek at classes beyond 'nbands' [ Upstream commit de6d25924c2a8c2988c6a385990cafbe742061bf ] when the number of DRR classes decreases, the round-robin active list can contain elements that have already been freed in ets_qdisc_change(). As a consequence, it's possible to see a NULL dereference crash, caused by the attempt to call cl->qdisc->ops->peek(cl->qdisc) when cl->qdisc is NULL: BUG: kernel NULL pointer dereference, address: 0000000000000018 #PF: supervisor read access in kernel mode #PF: error_code(0x0000) - not-present page PGD 0 P4D 0 Oops: 0000 [#1] PREEMPT SMP NOPTI CPU: 1 PID: 910 Comm: mausezahn Not tainted 5.16.0-rc1+ #475 Hardware name: Red Hat KVM, BIOS 1.11.1-4.module+el8.1.0+4066+0f1aadab 04/01/2014 RIP: 0010:ets_qdisc_dequeue+0x129/0x2c0 [sch_ets] Code: c5 01 41 39 ad e4 02 00 00 0f 87 18 ff ff ff 49 8b 85 c0 02 00 00 49 39 c4 0f 84 ba 00 00 00 49 8b ad c0 02 00 00 48 8b 7d 10 <48> 8b 47 18 48 8b 40 38 0f ae e8 ff d0 48 89 c3 48 85 c0 0f 84 9d RSP: 0000:ffffbb36c0b5fdd8 EFLAGS: 00010287 RAX: ffff956678efed30 RBX: 0000000000000000 RCX: 0000000000000000 RDX: 0000000000000002 RSI: ffffffff9b938dc9 RDI: 0000000000000000 RBP: ffff956678efed30 R08: e2f3207fe360129c R09: 0000000000000000 R10: 0000000000000001 R11: 0000000000000001 R12: ffff956678efeac0 R13: ffff956678efe800 R14: ffff956611545000 R15: ffff95667ac8f100 FS: 00007f2aa9120740(0000) GS:ffff95667b800000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000018 CR3: 000000011070c000 CR4: 0000000000350ee0 Call Trace: qdisc_peek_dequeued+0x29/0x70 [sch_ets] tbf_dequeue+0x22/0x260 [sch_tbf] __qdisc_run+0x7f/0x630 net_tx_action+0x290/0x4c0 __do_softirq+0xee/0x4f8 irq_exit_rcu+0xf4/0x130 sysvec_apic_timer_interrupt+0x52/0xc0 asm_sysvec_apic_timer_interrupt+0x12/0x20 RIP: 0033:0x7f2aa7fc9ad4 Code: b9 ff ff 48 8b 54 24 18 48 83 c4 08 48 89 ee 48 89 df 5b 5d e9 ed fc ff ff 0f 1f 00 66 2e 0f 1f 84 00 00 00 00 00 f3 0f 1e fa <53> 48 83 ec 10 48 8b 05 10 64 33 00 48 8b 00 48 85 c0 0f 85 84 00 RSP: 002b:00007ffe5d33fab8 EFLAGS: 00000202 RAX: 0000000000000002 RBX: 0000561f72c31460 RCX: 0000561f72c31720 RDX: 0000000000000002 RSI: 0000561f72c31722 RDI: 0000561f72c31720 RBP: 000000000000002a R08: 00007ffe5d33fa40 R09: 0000000000000014 R10: 0000000000000000 R11: 0000000000000246 R12: 0000561f7187e380 R13: 0000000000000000 R14: 0000000000000000 R15: 0000561f72c31460 Modules linked in: sch_ets sch_tbf dummy rfkill iTCO_wdt intel_rapl_msr iTCO_vendor_support intel_rapl_common joydev virtio_balloon lpc_ich i2c_i801 i2c_smbus pcspkr ip_tables xfs libcrc32c crct10dif_pclmul crc32_pclmul crc32c_intel ahci libahci ghash_clmulni_intel serio_raw libata virtio_blk virtio_console virtio_net net_failover failover sunrpc dm_mirror dm_region_hash dm_log dm_mod CR2: 0000000000000018 Ensuring that 'alist' was never zeroed [1] was not sufficient, we need to remove from the active list those elements that are no more SP nor DRR. [1] https://lore.kernel.org/netdev/60d274838bf09777f0371253416e8af71360bc08.1633609148.git.dcaratti@redhat.com/ v3: fix race between ets_qdisc_change() and ets_qdisc_dequeue() delisting DRR classes beyond 'nbands' in ets_qdisc_change() with the qdisc lock acquired, thanks to Cong Wang. v2: when a NULL qdisc is found in the DRR active list, try to dequeue skb from the next list item. Reported-by: Hangbin Liu Fixes: dcc68b4d8084 ("net: sch_ets: Add a new Qdisc") Signed-off-by: Davide Caratti Link: https://lore.kernel.org/r/7a5c496eed2d62241620bdbb83eb03fb9d571c99.1637762721.git.dcaratti@redhat.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/sched/sch_ets.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/net/sched/sch_ets.c b/net/sched/sch_ets.c index 1f857ffd1ac238..92a686807971b3 100644 --- a/net/sched/sch_ets.c +++ b/net/sched/sch_ets.c @@ -667,12 +667,14 @@ static int ets_qdisc_change(struct Qdisc *sch, struct nlattr *opt, q->classes[i].deficit = quanta[i]; } } + for (i = q->nbands; i < oldbands; i++) { + qdisc_tree_flush_backlog(q->classes[i].qdisc); + if (i >= q->nstrict) + list_del(&q->classes[i].alist); + } q->nstrict = nstrict; memcpy(q->prio2band, priomap, sizeof(priomap)); - for (i = q->nbands; i < oldbands; i++) - qdisc_tree_flush_backlog(q->classes[i].qdisc); - for (i = 0; i < q->nbands; i++) q->classes[i].quantum = quanta[i]; From abfdd9e2f0f9699015d72317f74154d3e53664e6 Mon Sep 17 00:00:00 2001 From: Julian Wiedmann Date: Fri, 26 Nov 2021 18:55:43 +0100 Subject: [PATCH 148/192] ethtool: ioctl: fix potential NULL deref in ethtool_set_coalesce() [ Upstream commit 0276af2176c78771da7f311621a25d7608045827 ] ethtool_set_coalesce() now uses both the .get_coalesce() and .set_coalesce() callbacks. But the check for their availability is buggy, so changing the coalesce settings on a device where the driver provides only _one_ of the callbacks results in a NULL pointer dereference instead of an -EOPNOTSUPP. Fix the condition so that the availability of both callbacks is ensured. This also matches the netlink code. Note that reproducing this requires some effort - it only affects the legacy ioctl path, and needs a specific combination of driver options: - have .get_coalesce() and .coalesce_supported but no .set_coalesce(), or - have .set_coalesce() but no .get_coalesce(). Here eg. ethtool doesn't cause the crash as it first attempts to call ethtool_get_coalesce() and bails out on error. Fixes: f3ccfda19319 ("ethtool: extend coalesce setting uAPI with CQE mode") Cc: Yufeng Mo Cc: Huazhong Tan Cc: Andrew Lunn Cc: Heiner Kallweit Signed-off-by: Julian Wiedmann Link: https://lore.kernel.org/r/20211126175543.28000-1-jwi@linux.ibm.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/ethtool/ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ethtool/ioctl.c b/net/ethtool/ioctl.c index f2abc315288839..e4983f473a3c5d 100644 --- a/net/ethtool/ioctl.c +++ b/net/ethtool/ioctl.c @@ -1697,7 +1697,7 @@ static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev, struct ethtool_coalesce coalesce; int ret; - if (!dev->ethtool_ops->set_coalesce && !dev->ethtool_ops->get_coalesce) + if (!dev->ethtool_ops->set_coalesce || !dev->ethtool_ops->get_coalesce) return -EOPNOTSUPP; ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, From f7fc72a508cf115c273a7a29350069def1041890 Mon Sep 17 00:00:00 2001 From: Ziyang Xuan Date: Fri, 26 Nov 2021 09:59:42 +0800 Subject: [PATCH 149/192] net: vlan: fix underflow for the real_dev refcnt [ Upstream commit 01d9cc2dea3fde3bad6d27f464eff463496e2b00 ] Inject error before dev_hold(real_dev) in register_vlan_dev(), and execute the following testcase: ip link add dev dummy1 type dummy ip link add name dummy1.100 link dummy1 type vlan id 100 ip link del dev dummy1 When the dummy netdevice is removed, we will get a WARNING as following: ======================================================================= refcount_t: decrement hit 0; leaking memory. WARNING: CPU: 2 PID: 0 at lib/refcount.c:31 refcount_warn_saturate+0xbf/0x1e0 and an endless loop of: ======================================================================= unregister_netdevice: waiting for dummy1 to become free. Usage count = -1073741824 That is because dev_put(real_dev) in vlan_dev_free() be called without dev_hold(real_dev) in register_vlan_dev(). It makes the refcnt of real_dev underflow. Move the dev_hold(real_dev) to vlan_dev_init() which is the call-back of ndo_init(). That makes dev_hold() and dev_put() for vlan's real_dev symmetrical. Fixes: 563bcbae3ba2 ("net: vlan: fix a UAF in vlan_dev_real_dev()") Reported-by: Petr Machata Suggested-by: Jakub Kicinski Signed-off-by: Ziyang Xuan Link: https://lore.kernel.org/r/20211126015942.2918542-1-william.xuanziyang@huawei.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/8021q/vlan.c | 3 --- net/8021q/vlan_dev.c | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index a3a0a5e994f5ae..abaa5d96ded245 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c @@ -184,9 +184,6 @@ int register_vlan_dev(struct net_device *dev, struct netlink_ext_ack *extack) if (err) goto out_unregister_netdev; - /* Account for reference in struct vlan_dev_priv */ - dev_hold(real_dev); - vlan_stacked_transfer_operstate(real_dev, dev, vlan); linkwatch_fire_event(dev); /* _MUST_ call rfc2863_policy() */ diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index aeeb5f90417b5d..8602885c8a8e06 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c @@ -615,6 +615,9 @@ static int vlan_dev_init(struct net_device *dev) if (!vlan->vlan_pcpu_stats) return -ENOMEM; + /* Get vlan's reference to real_dev */ + dev_hold(real_dev); + return 0; } From 724c50cac0d5063ab514fd7ea41e57ba4e093d10 Mon Sep 17 00:00:00 2001 From: Tony Lu Date: Fri, 26 Nov 2021 10:41:35 +0800 Subject: [PATCH 150/192] net/smc: Don't call clcsock shutdown twice when smc shutdown [ Upstream commit bacb6c1e47691cda4a95056c21b5487fb7199fcc ] When applications call shutdown() with SHUT_RDWR in userspace, smc_close_active() calls kernel_sock_shutdown(), and it is called twice in smc_shutdown(). This fixes this by checking sk_state before do clcsock shutdown, and avoids missing the application's call of smc_shutdown(). Link: https://lore.kernel.org/linux-s390/1f67548e-cbf6-0dce-82b5-10288a4583bd@linux.ibm.com/ Fixes: 606a63c9783a ("net/smc: Ensure the active closing peer first closes clcsock") Signed-off-by: Tony Lu Reviewed-by: Wen Gu Acked-by: Karsten Graul Link: https://lore.kernel.org/r/20211126024134.45693-1-tonylu@linux.alibaba.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/smc/af_smc.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index 4f1fa1bcb03165..3d8219e3b02649 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -2154,8 +2154,10 @@ static __poll_t smc_poll(struct file *file, struct socket *sock, static int smc_shutdown(struct socket *sock, int how) { struct sock *sk = sock->sk; + bool do_shutdown = true; struct smc_sock *smc; int rc = -EINVAL; + int old_state; int rc1 = 0; smc = smc_sk(sk); @@ -2182,7 +2184,11 @@ static int smc_shutdown(struct socket *sock, int how) } switch (how) { case SHUT_RDWR: /* shutdown in both directions */ + old_state = sk->sk_state; rc = smc_close_active(smc); + if (old_state == SMC_ACTIVE && + sk->sk_state == SMC_PEERCLOSEWAIT1) + do_shutdown = false; break; case SHUT_WR: rc = smc_close_shutdown_write(smc); @@ -2192,7 +2198,7 @@ static int smc_shutdown(struct socket *sock, int how) /* nothing more to do because peer is not involved */ break; } - if (smc->clcsock) + if (do_shutdown && smc->clcsock) rc1 = kernel_sock_shutdown(smc->clcsock, how); /* map sock_shutdown_cmd constants to sk_shutdown value range */ sk->sk_shutdown |= how + 1; From 41f967a247bf48cfc7284e2cb5bc260ee9fb47d5 Mon Sep 17 00:00:00 2001 From: Guangbin Huang Date: Fri, 26 Nov 2021 20:03:15 +0800 Subject: [PATCH 151/192] net: hns3: fix VF RSS failed problem after PF enable multi-TCs [ Upstream commit 8d2ad993aa05c0768f00c886c9d369cd97a337ac ] When PF is set to multi-TCs and configured mapping relationship between priorities and TCs, the hardware will active these settings for this PF and its VFs. In this case when VF just uses one TC and its rx packets contain priority, and if the priority is not mapped to TC0, as other TCs of VF is not valid, hardware always put this kind of packets to the queue 0. It cause this kind of packets of VF can not be used RSS function. To fix this problem, set tc mode of all unused TCs of VF to the setting of TC0, then rx packet with priority which map to unused TC will be direct to TC0. Fixes: e2cb1dec9779 ("net: hns3: Add HNS3 VF HCL(Hardware Compatibility Layer) Support") Signed-off-by: Guangbin Huang Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c index 3b8bde58613a89..fee7d9e79f8c3c 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -703,9 +703,9 @@ static int hclgevf_set_rss_tc_mode(struct hclgevf_dev *hdev, u16 rss_size) roundup_size = ilog2(roundup_size); for (i = 0; i < HCLGEVF_MAX_TC_NUM; i++) { - tc_valid[i] = !!(hdev->hw_tc_map & BIT(i)); + tc_valid[i] = 1; tc_size[i] = roundup_size; - tc_offset[i] = rss_size * i; + tc_offset[i] = (hdev->hw_tc_map & BIT(i)) ? rss_size * i : 0; } hclgevf_cmd_setup_basic_desc(&desc, HCLGEVF_OPC_RSS_TC_MODE, false); From d1e71d7d22820052ea7172bc7cc0603af6db8399 Mon Sep 17 00:00:00 2001 From: Jie Wang Date: Fri, 26 Nov 2021 20:03:18 +0800 Subject: [PATCH 152/192] net: hns3: fix incorrect components info of ethtool --reset command [ Upstream commit 82229c4dbb8a2780f05fa1bab29c97ef7bcd21bb ] Currently, HNS3 driver doesn't clear the reset flags of components after successfully executing reset, it causes userspace info of "Components reset" and "Components not reset" is incorrect. So fix this problem by clear corresponding reset flag after reset process. Fixes: ddccc5e368a3 ("net: hns3: add support for triggering reset by ethtool") Signed-off-by: Jie Wang Signed-off-by: Guangbin Huang Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c b/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c index 5ebd96f6833d6e..526fb56c84f242 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c @@ -985,6 +985,7 @@ static int hns3_set_reset(struct net_device *netdev, u32 *flags) struct hnae3_ae_dev *ae_dev = pci_get_drvdata(h->pdev); const struct hnae3_ae_ops *ops = h->ae_algo->ops; const struct hns3_reset_type_map *rst_type_map; + enum ethtool_reset_flags rst_flags; u32 i, size; if (ops->ae_dev_resetting && ops->ae_dev_resetting(h)) @@ -1004,6 +1005,7 @@ static int hns3_set_reset(struct net_device *netdev, u32 *flags) for (i = 0; i < size; i++) { if (rst_type_map[i].rst_flags == *flags) { rst_type = rst_type_map[i].rst_type; + rst_flags = rst_type_map[i].rst_flags; break; } } @@ -1019,6 +1021,8 @@ static int hns3_set_reset(struct net_device *netdev, u32 *flags) ops->reset_event(h->pdev, h); + *flags &= ~rst_flags; + return 0; } From 93945f2c10bc9d69743f16ad8a71600310e09f37 Mon Sep 17 00:00:00 2001 From: Vladimir Oltean Date: Fri, 26 Nov 2021 19:28:41 +0200 Subject: [PATCH 153/192] net: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP [ Upstream commit 8a075464d1e9317ffae0973dfe538a7511291a06 ] The ocelot driver, when asked to timestamp all receiving packets, 1588 v1 or NTP, says "nah, here's 1588 v2 for you". According to this discussion: https://patchwork.kernel.org/project/netdevbpf/patch/20211104133204.19757-8-martin.kaistra@linutronix.de/#24577647 drivers that downgrade from a wider request to a narrower response (or even a response where the intersection with the request is empty) are buggy, and should return -ERANGE instead. This patch fixes that. Fixes: 4e3b0468e6d7 ("net: mscc: PTP Hardware Clock (PHC) support") Suggested-by: Richard Cochran Signed-off-by: Vladimir Oltean Acked-by: Richard Cochran Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/mscc/ocelot.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/net/ethernet/mscc/ocelot.c b/drivers/net/ethernet/mscc/ocelot.c index a08e4f530c1c11..08fafc4a7e813a 100644 --- a/drivers/net/ethernet/mscc/ocelot.c +++ b/drivers/net/ethernet/mscc/ocelot.c @@ -1175,12 +1175,6 @@ int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr) switch (cfg.rx_filter) { case HWTSTAMP_FILTER_NONE: break; - case HWTSTAMP_FILTER_ALL: - case HWTSTAMP_FILTER_SOME: - case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: - case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: - case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: - case HWTSTAMP_FILTER_NTP_ALL: case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: From 7b9237a8ef194c5c20c3c4fba2486422ac96b1a8 Mon Sep 17 00:00:00 2001 From: Vladimir Oltean Date: Fri, 26 Nov 2021 19:28:45 +0200 Subject: [PATCH 154/192] net: mscc: ocelot: correctly report the timestamping RX filters in ethtool [ Upstream commit c49a35eedfef08bffd46b53c25dbf9d6016a86ff ] The driver doesn't support RX timestamping for non-PTP packets, but it declares that it does. Restrict the reported RX filters to PTP v2 over L2 and over L4. Fixes: 4e3b0468e6d7 ("net: mscc: PTP Hardware Clock (PHC) support") Signed-off-by: Vladimir Oltean Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/mscc/ocelot.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/net/ethernet/mscc/ocelot.c b/drivers/net/ethernet/mscc/ocelot.c index 08fafc4a7e813a..00b5e6860bf69c 100644 --- a/drivers/net/ethernet/mscc/ocelot.c +++ b/drivers/net/ethernet/mscc/ocelot.c @@ -1293,7 +1293,10 @@ int ocelot_get_ts_info(struct ocelot *ocelot, int port, SOF_TIMESTAMPING_RAW_HARDWARE; info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) | BIT(HWTSTAMP_TX_ONESTEP_SYNC); - info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | BIT(HWTSTAMP_FILTER_ALL); + info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) | + BIT(HWTSTAMP_FILTER_PTP_V2_EVENT) | + BIT(HWTSTAMP_FILTER_PTP_V2_L2_EVENT) | + BIT(HWTSTAMP_FILTER_PTP_V2_L4_EVENT); return 0; } From 76723ed1fb8922ee94089e7432b8a262e3a06ed7 Mon Sep 17 00:00:00 2001 From: Waiman Long Date: Mon, 15 Nov 2021 20:29:12 -0500 Subject: [PATCH 155/192] locking/rwsem: Make handoff bit handling more consistent [ Upstream commit d257cc8cb8d5355ffc43a96bab94db7b5a324803 ] There are some inconsistency in the way that the handoff bit is being handled in readers and writers that lead to a race condition. Firstly, when a queue head writer set the handoff bit, it will clear it when the writer is being killed or interrupted on its way out without acquiring the lock. That is not the case for a queue head reader. The handoff bit will simply be inherited by the next waiter. Secondly, in the out_nolock path of rwsem_down_read_slowpath(), both the waiter and handoff bits are cleared if the wait queue becomes empty. For rwsem_down_write_slowpath(), however, the handoff bit is not checked and cleared if the wait queue is empty. This can potentially make the handoff bit set with empty wait queue. Worse, the situation in rwsem_down_write_slowpath() relies on wstate, a variable set outside of the critical section containing the ->count manipulation, this leads to race condition where RWSEM_FLAG_HANDOFF can be double subtracted, corrupting ->count. To make the handoff bit handling more consistent and robust, extract out handoff bit clearing code into the new rwsem_del_waiter() helper function. Also, completely eradicate wstate; always evaluate everything inside the same critical section. The common function will only use atomic_long_andnot() to clear bits when the wait queue is empty to avoid possible race condition. If the first waiter with handoff bit set is killed or interrupted to exit the slowpath without acquiring the lock, the next waiter will inherit the handoff bit. While at it, simplify the trylock for loop in rwsem_down_write_slowpath() to make it easier to read. Fixes: 4f23dbc1e657 ("locking/rwsem: Implement lock handoff to prevent lock starvation") Reported-by: Zhenhua Ma Suggested-by: Peter Zijlstra Signed-off-by: Waiman Long Signed-off-by: Peter Zijlstra (Intel) Link: https://lkml.kernel.org/r/20211116012912.723980-1-longman@redhat.com Signed-off-by: Sasha Levin --- kernel/locking/rwsem.c | 171 ++++++++++++++++++++--------------------- 1 file changed, 85 insertions(+), 86 deletions(-) diff --git a/kernel/locking/rwsem.c b/kernel/locking/rwsem.c index 29eea50a3e6782..e63f740c2cc840 100644 --- a/kernel/locking/rwsem.c +++ b/kernel/locking/rwsem.c @@ -106,9 +106,9 @@ * atomic_long_cmpxchg() will be used to obtain writer lock. * * There are three places where the lock handoff bit may be set or cleared. - * 1) rwsem_mark_wake() for readers. - * 2) rwsem_try_write_lock() for writers. - * 3) Error path of rwsem_down_write_slowpath(). + * 1) rwsem_mark_wake() for readers -- set, clear + * 2) rwsem_try_write_lock() for writers -- set, clear + * 3) rwsem_del_waiter() -- clear * * For all the above cases, wait_lock will be held. A writer must also * be the first one in the wait_list to be eligible for setting the handoff @@ -335,6 +335,9 @@ struct rwsem_waiter { struct task_struct *task; enum rwsem_waiter_type type; unsigned long timeout; + + /* Writer only, not initialized in reader */ + bool handoff_set; }; #define rwsem_first_waiter(sem) \ list_first_entry(&sem->wait_list, struct rwsem_waiter, list) @@ -345,12 +348,6 @@ enum rwsem_wake_type { RWSEM_WAKE_READ_OWNED /* Waker thread holds the read lock */ }; -enum writer_wait_state { - WRITER_NOT_FIRST, /* Writer is not first in wait list */ - WRITER_FIRST, /* Writer is first in wait list */ - WRITER_HANDOFF /* Writer is first & handoff needed */ -}; - /* * The typical HZ value is either 250 or 1000. So set the minimum waiting * time to at least 4ms or 1 jiffy (if it is higher than 4ms) in the wait @@ -366,6 +363,31 @@ enum writer_wait_state { */ #define MAX_READERS_WAKEUP 0x100 +static inline void +rwsem_add_waiter(struct rw_semaphore *sem, struct rwsem_waiter *waiter) +{ + lockdep_assert_held(&sem->wait_lock); + list_add_tail(&waiter->list, &sem->wait_list); + /* caller will set RWSEM_FLAG_WAITERS */ +} + +/* + * Remove a waiter from the wait_list and clear flags. + * + * Both rwsem_mark_wake() and rwsem_try_write_lock() contain a full 'copy' of + * this function. Modify with care. + */ +static inline void +rwsem_del_waiter(struct rw_semaphore *sem, struct rwsem_waiter *waiter) +{ + lockdep_assert_held(&sem->wait_lock); + list_del(&waiter->list); + if (likely(!list_empty(&sem->wait_list))) + return; + + atomic_long_andnot(RWSEM_FLAG_HANDOFF | RWSEM_FLAG_WAITERS, &sem->count); +} + /* * handle the lock release when processes blocked on it that can now run * - if we come here from up_xxxx(), then the RWSEM_FLAG_WAITERS bit must @@ -377,6 +399,8 @@ enum writer_wait_state { * preferably when the wait_lock is released * - woken process blocks are discarded from the list after having task zeroed * - writers are only marked woken if downgrading is false + * + * Implies rwsem_del_waiter() for all woken readers. */ static void rwsem_mark_wake(struct rw_semaphore *sem, enum rwsem_wake_type wake_type, @@ -491,18 +515,25 @@ static void rwsem_mark_wake(struct rw_semaphore *sem, adjustment = woken * RWSEM_READER_BIAS - adjustment; lockevent_cond_inc(rwsem_wake_reader, woken); + + oldcount = atomic_long_read(&sem->count); if (list_empty(&sem->wait_list)) { - /* hit end of list above */ + /* + * Combined with list_move_tail() above, this implies + * rwsem_del_waiter(). + */ adjustment -= RWSEM_FLAG_WAITERS; + if (oldcount & RWSEM_FLAG_HANDOFF) + adjustment -= RWSEM_FLAG_HANDOFF; + } else if (woken) { + /* + * When we've woken a reader, we no longer need to force + * writers to give up the lock and we can clear HANDOFF. + */ + if (oldcount & RWSEM_FLAG_HANDOFF) + adjustment -= RWSEM_FLAG_HANDOFF; } - /* - * When we've woken a reader, we no longer need to force writers - * to give up the lock and we can clear HANDOFF. - */ - if (woken && (atomic_long_read(&sem->count) & RWSEM_FLAG_HANDOFF)) - adjustment -= RWSEM_FLAG_HANDOFF; - if (adjustment) atomic_long_add(adjustment, &sem->count); @@ -533,12 +564,12 @@ static void rwsem_mark_wake(struct rw_semaphore *sem, * race conditions between checking the rwsem wait list and setting the * sem->count accordingly. * - * If wstate is WRITER_HANDOFF, it will make sure that either the handoff - * bit is set or the lock is acquired with handoff bit cleared. + * Implies rwsem_del_waiter() on success. */ static inline bool rwsem_try_write_lock(struct rw_semaphore *sem, - enum writer_wait_state wstate) + struct rwsem_waiter *waiter) { + bool first = rwsem_first_waiter(sem) == waiter; long count, new; lockdep_assert_held(&sem->wait_lock); @@ -547,13 +578,19 @@ static inline bool rwsem_try_write_lock(struct rw_semaphore *sem, do { bool has_handoff = !!(count & RWSEM_FLAG_HANDOFF); - if (has_handoff && wstate == WRITER_NOT_FIRST) - return false; + if (has_handoff) { + if (!first) + return false; + + /* First waiter inherits a previously set handoff bit */ + waiter->handoff_set = true; + } new = count; if (count & RWSEM_LOCK_MASK) { - if (has_handoff || (wstate != WRITER_HANDOFF)) + if (has_handoff || (!rt_task(waiter->task) && + !time_after(jiffies, waiter->timeout))) return false; new |= RWSEM_FLAG_HANDOFF; @@ -570,9 +607,17 @@ static inline bool rwsem_try_write_lock(struct rw_semaphore *sem, * We have either acquired the lock with handoff bit cleared or * set the handoff bit. */ - if (new & RWSEM_FLAG_HANDOFF) + if (new & RWSEM_FLAG_HANDOFF) { + waiter->handoff_set = true; + lockevent_inc(rwsem_wlock_handoff); return false; + } + /* + * Have rwsem_try_write_lock() fully imply rwsem_del_waiter() on + * success. + */ + list_del(&waiter->list); rwsem_set_owner(sem); return true; } @@ -953,7 +998,7 @@ rwsem_down_read_slowpath(struct rw_semaphore *sem, long count, unsigned int stat } adjustment += RWSEM_FLAG_WAITERS; } - list_add_tail(&waiter.list, &sem->wait_list); + rwsem_add_waiter(sem, &waiter); /* we're now waiting on the lock, but no longer actively locking */ count = atomic_long_add_return(adjustment, &sem->count); @@ -999,11 +1044,7 @@ rwsem_down_read_slowpath(struct rw_semaphore *sem, long count, unsigned int stat return sem; out_nolock: - list_del(&waiter.list); - if (list_empty(&sem->wait_list)) { - atomic_long_andnot(RWSEM_FLAG_WAITERS|RWSEM_FLAG_HANDOFF, - &sem->count); - } + rwsem_del_waiter(sem, &waiter); raw_spin_unlock_irq(&sem->wait_lock); __set_current_state(TASK_RUNNING); lockevent_inc(rwsem_rlock_fail); @@ -1017,9 +1058,7 @@ static struct rw_semaphore * rwsem_down_write_slowpath(struct rw_semaphore *sem, int state) { long count; - enum writer_wait_state wstate; struct rwsem_waiter waiter; - struct rw_semaphore *ret = sem; DEFINE_WAKE_Q(wake_q); /* do optimistic spinning and steal lock if possible */ @@ -1035,16 +1074,13 @@ rwsem_down_write_slowpath(struct rw_semaphore *sem, int state) waiter.task = current; waiter.type = RWSEM_WAITING_FOR_WRITE; waiter.timeout = jiffies + RWSEM_WAIT_TIMEOUT; + waiter.handoff_set = false; raw_spin_lock_irq(&sem->wait_lock); - - /* account for this before adding a new element to the list */ - wstate = list_empty(&sem->wait_list) ? WRITER_FIRST : WRITER_NOT_FIRST; - - list_add_tail(&waiter.list, &sem->wait_list); + rwsem_add_waiter(sem, &waiter); /* we're now waiting on the lock */ - if (wstate == WRITER_NOT_FIRST) { + if (rwsem_first_waiter(sem) != &waiter) { count = atomic_long_read(&sem->count); /* @@ -1080,13 +1116,16 @@ rwsem_down_write_slowpath(struct rw_semaphore *sem, int state) /* wait until we successfully acquire the lock */ set_current_state(state); for (;;) { - if (rwsem_try_write_lock(sem, wstate)) { + if (rwsem_try_write_lock(sem, &waiter)) { /* rwsem_try_write_lock() implies ACQUIRE on success */ break; } raw_spin_unlock_irq(&sem->wait_lock); + if (signal_pending_state(state, current)) + goto out_nolock; + /* * After setting the handoff bit and failing to acquire * the lock, attempt to spin on owner to accelerate lock @@ -1095,7 +1134,7 @@ rwsem_down_write_slowpath(struct rw_semaphore *sem, int state) * In this case, we attempt to acquire the lock again * without sleeping. */ - if (wstate == WRITER_HANDOFF) { + if (waiter.handoff_set) { enum owner_state owner_state; preempt_disable(); @@ -1106,66 +1145,26 @@ rwsem_down_write_slowpath(struct rw_semaphore *sem, int state) goto trylock_again; } - /* Block until there are no active lockers. */ - for (;;) { - if (signal_pending_state(state, current)) - goto out_nolock; - - schedule(); - lockevent_inc(rwsem_sleep_writer); - set_current_state(state); - /* - * If HANDOFF bit is set, unconditionally do - * a trylock. - */ - if (wstate == WRITER_HANDOFF) - break; - - if ((wstate == WRITER_NOT_FIRST) && - (rwsem_first_waiter(sem) == &waiter)) - wstate = WRITER_FIRST; - - count = atomic_long_read(&sem->count); - if (!(count & RWSEM_LOCK_MASK)) - break; - - /* - * The setting of the handoff bit is deferred - * until rwsem_try_write_lock() is called. - */ - if ((wstate == WRITER_FIRST) && (rt_task(current) || - time_after(jiffies, waiter.timeout))) { - wstate = WRITER_HANDOFF; - lockevent_inc(rwsem_wlock_handoff); - break; - } - } + schedule(); + lockevent_inc(rwsem_sleep_writer); + set_current_state(state); trylock_again: raw_spin_lock_irq(&sem->wait_lock); } __set_current_state(TASK_RUNNING); - list_del(&waiter.list); raw_spin_unlock_irq(&sem->wait_lock); lockevent_inc(rwsem_wlock); - - return ret; + return sem; out_nolock: __set_current_state(TASK_RUNNING); raw_spin_lock_irq(&sem->wait_lock); - list_del(&waiter.list); - - if (unlikely(wstate == WRITER_HANDOFF)) - atomic_long_add(-RWSEM_FLAG_HANDOFF, &sem->count); - - if (list_empty(&sem->wait_list)) - atomic_long_andnot(RWSEM_FLAG_WAITERS, &sem->count); - else + rwsem_del_waiter(sem, &waiter); + if (!list_empty(&sem->wait_list)) rwsem_mark_wake(sem, RWSEM_WAKE_ANY, &wake_q); raw_spin_unlock_irq(&sem->wait_lock); wake_up_q(&wake_q); lockevent_inc(rwsem_wlock_fail); - return ERR_PTR(-EINTR); } From 5f8c2755f85014b5c43787b199c3aaca6f47fdcd Mon Sep 17 00:00:00 2001 From: Marco Elver Date: Tue, 9 Nov 2021 13:22:32 +0100 Subject: [PATCH 156/192] perf: Ignore sigtrap for tracepoints destined for other tasks [ Upstream commit 73743c3b092277febbf69b250ce8ebbca0525aa2 ] syzbot reported that the warning in perf_sigtrap() fires, saying that the event's task does not match current: | WARNING: CPU: 0 PID: 9090 at kernel/events/core.c:6446 perf_pending_event+0x40d/0x4b0 kernel/events/core.c:6513 | Modules linked in: | CPU: 0 PID: 9090 Comm: syz-executor.1 Not tainted 5.15.0-syzkaller #0 | Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011 | RIP: 0010:perf_sigtrap kernel/events/core.c:6446 [inline] | RIP: 0010:perf_pending_event_disable kernel/events/core.c:6470 [inline] | RIP: 0010:perf_pending_event+0x40d/0x4b0 kernel/events/core.c:6513 | ... | Call Trace: | | irq_work_single+0x106/0x220 kernel/irq_work.c:211 | irq_work_run_list+0x6a/0x90 kernel/irq_work.c:242 | irq_work_run+0x4f/0xd0 kernel/irq_work.c:251 | __sysvec_irq_work+0x95/0x3d0 arch/x86/kernel/irq_work.c:22 | sysvec_irq_work+0x8e/0xc0 arch/x86/kernel/irq_work.c:17 | | | asm_sysvec_irq_work+0x12/0x20 arch/x86/include/asm/idtentry.h:664 | RIP: 0010:__raw_spin_unlock_irqrestore include/linux/spinlock_api_smp.h:152 [inline] | RIP: 0010:_raw_spin_unlock_irqrestore+0x38/0x70 kernel/locking/spinlock.c:194 | ... | coredump_task_exit kernel/exit.c:371 [inline] | do_exit+0x1865/0x25c0 kernel/exit.c:771 | do_group_exit+0xe7/0x290 kernel/exit.c:929 | get_signal+0x3b0/0x1ce0 kernel/signal.c:2820 | arch_do_signal_or_restart+0x2a9/0x1c40 arch/x86/kernel/signal.c:868 | handle_signal_work kernel/entry/common.c:148 [inline] | exit_to_user_mode_loop kernel/entry/common.c:172 [inline] | exit_to_user_mode_prepare+0x17d/0x290 kernel/entry/common.c:207 | __syscall_exit_to_user_mode_work kernel/entry/common.c:289 [inline] | syscall_exit_to_user_mode+0x19/0x60 kernel/entry/common.c:300 | do_syscall_64+0x42/0xb0 arch/x86/entry/common.c:86 | entry_SYSCALL_64_after_hwframe+0x44/0xae On x86 this shouldn't happen, which has arch_irq_work_raise(). The test program sets up a perf event with sigtrap set to fire on the 'sched_wakeup' tracepoint, which fired in ttwu_do_wakeup(). This happened because the 'sched_wakeup' tracepoint also takes a task argument passed on to perf_tp_event(), which is used to deliver the event to that other task. Since we cannot deliver synchronous signals to other tasks, skip an event if perf_tp_event() is targeted at another task and perf_event_attr::sigtrap is set, which will avoid ever entering perf_sigtrap() for such events. Fixes: 97ba62b27867 ("perf: Add support for SIGTRAP on perf events") Reported-by: syzbot+663359e32ce6f1a305ad@syzkaller.appspotmail.com Signed-off-by: Marco Elver Signed-off-by: Peter Zijlstra (Intel) Link: https://lkml.kernel.org/r/YYpoCOBmC/kJWfmI@elver.google.com Signed-off-by: Sasha Levin --- kernel/events/core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/events/core.c b/kernel/events/core.c index 7162b600e7eaae..2931faf92a76ff 100644 --- a/kernel/events/core.c +++ b/kernel/events/core.c @@ -9729,6 +9729,9 @@ void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size, continue; if (event->attr.config != entry->type) continue; + /* Cannot deliver synchronous signal to other task. */ + if (event->attr.sigtrap) + continue; if (perf_tp_event_match(event, &data, regs)) perf_swevent_event(event, count, &data, regs); } From 229c555260cb9c1ccdab861e16f0410f1718f302 Mon Sep 17 00:00:00 2001 From: Mark Rutland Date: Tue, 23 Nov 2021 11:40:47 +0000 Subject: [PATCH 157/192] sched/scs: Reset task stack state in bringup_cpu() [ Upstream commit dce1ca0525bfdc8a69a9343bc714fbc19a2f04b3 ] To hot unplug a CPU, the idle task on that CPU calls a few layers of C code before finally leaving the kernel. When KASAN is in use, poisoned shadow is left around for each of the active stack frames, and when shadow call stacks are in use. When shadow call stacks (SCS) are in use the task's saved SCS SP is left pointing at an arbitrary point within the task's shadow call stack. When a CPU is offlined than onlined back into the kernel, this stale state can adversely affect execution. Stale KASAN shadow can alias new stackframes and result in bogus KASAN warnings. A stale SCS SP is effectively a memory leak, and prevents a portion of the shadow call stack being used. Across a number of hotplug cycles the idle task's entire shadow call stack can become unusable. We previously fixed the KASAN issue in commit: e1b77c92981a5222 ("sched/kasan: remove stale KASAN poison after hotplug") ... by removing any stale KASAN stack poison immediately prior to onlining a CPU. Subsequently in commit: f1a0a376ca0c4ef1 ("sched/core: Initialize the idle task with preemption disabled") ... the refactoring left the KASAN and SCS cleanup in one-time idle thread initialization code rather than something invoked prior to each CPU being onlined, breaking both as above. We fixed SCS (but not KASAN) in commit: 63acd42c0d4942f7 ("sched/scs: Reset the shadow stack when idle_task_exit") ... but as this runs in the context of the idle task being offlined it's potentially fragile. To fix these consistently and more robustly, reset the SCS SP and KASAN shadow of a CPU's idle task immediately before we online that CPU in bringup_cpu(). This ensures the idle task always has a consistent state when it is running, and removes the need to so so when exiting an idle task. Whenever any thread is created, dup_task_struct() will give the task a stack which is free of KASAN shadow, and initialize the task's SCS SP, so there's no need to specially initialize either for idle thread within init_idle(), as this was only necessary to handle hotplug cycles. I've tested this on arm64 with: * gcc 11.1.0, defconfig +KASAN_INLINE, KASAN_STACK * clang 12.0.0, defconfig +KASAN_INLINE, KASAN_STACK, SHADOW_CALL_STACK ... offlining and onlining CPUS with: | while true; do | for C in /sys/devices/system/cpu/cpu*/online; do | echo 0 > $C; | echo 1 > $C; | done | done Fixes: f1a0a376ca0c4ef1 ("sched/core: Initialize the idle task with preemption disabled") Reported-by: Qian Cai Signed-off-by: Mark Rutland Signed-off-by: Peter Zijlstra (Intel) Reviewed-by: Valentin Schneider Tested-by: Qian Cai Link: https://lore.kernel.org/lkml/20211115113310.35693-1-mark.rutland@arm.com/ Signed-off-by: Sasha Levin --- kernel/cpu.c | 7 +++++++ kernel/sched/core.c | 4 ---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/kernel/cpu.c b/kernel/cpu.c index 192e43a874076d..407a2568f35ebb 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include @@ -587,6 +588,12 @@ static int bringup_cpu(unsigned int cpu) struct task_struct *idle = idle_thread_get(cpu); int ret; + /* + * Reset stale stack state from the last time this CPU was online. + */ + scs_task_reset(idle); + kasan_unpoison_task_stack(idle); + /* * Some architectures have to walk the irq descriptors to * setup the vector space for the cpu which comes online. diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 779f27a4b46ac2..6f4625f8276f13 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -8641,9 +8641,6 @@ void __init init_idle(struct task_struct *idle, int cpu) idle->flags |= PF_IDLE | PF_KTHREAD | PF_NO_SETAFFINITY; kthread_set_per_cpu(idle, cpu); - scs_task_reset(idle); - kasan_unpoison_task_stack(idle); - #ifdef CONFIG_SMP /* * It's possible that init_idle() gets called multiple times on a task, @@ -8799,7 +8796,6 @@ void idle_task_exit(void) finish_arch_post_lock_switch(); } - scs_task_reset(current); /* finish_cpu(), as ran on the BP, will clean up the active_mm state */ } From 88fc40a33ff3d5ef6a3ec5a8489036867644e256 Mon Sep 17 00:00:00 2001 From: Alex Bee Date: Wed, 24 Nov 2021 03:13:25 +0100 Subject: [PATCH 158/192] iommu/rockchip: Fix PAGE_DESC_HI_MASKs for RK3568 [ Upstream commit f7ff3cff3527ff1e70cad8d2fe7c0c7b6f83120a ] With the submission of iommu driver for RK3568 a subtle bug was introduced: PAGE_DESC_HI_MASK1 and PAGE_DESC_HI_MASK2 have to be the other way arround - that leads to random errors, especially when addresses beyond 32 bit are used. Fix it. Fixes: c55356c534aa ("iommu: rockchip: Add support for iommu v2") Signed-off-by: Alex Bee Tested-by: Peter Geis Reviewed-by: Heiko Stuebner Tested-by: Dan Johansen Reviewed-by: Benjamin Gaignard Link: https://lore.kernel.org/r/20211124021325.858139-1-knaerzche@gmail.com Signed-off-by: Joerg Roedel Signed-off-by: Sasha Levin --- drivers/iommu/rockchip-iommu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/iommu/rockchip-iommu.c b/drivers/iommu/rockchip-iommu.c index 5cb260820eda6a..7f23ad61c094fb 100644 --- a/drivers/iommu/rockchip-iommu.c +++ b/drivers/iommu/rockchip-iommu.c @@ -200,8 +200,8 @@ static inline phys_addr_t rk_dte_pt_address(u32 dte) #define DTE_HI_MASK2 GENMASK(7, 4) #define DTE_HI_SHIFT1 24 /* shift bit 8 to bit 32 */ #define DTE_HI_SHIFT2 32 /* shift bit 4 to bit 36 */ -#define PAGE_DESC_HI_MASK1 GENMASK_ULL(39, 36) -#define PAGE_DESC_HI_MASK2 GENMASK_ULL(35, 32) +#define PAGE_DESC_HI_MASK1 GENMASK_ULL(35, 32) +#define PAGE_DESC_HI_MASK2 GENMASK_ULL(39, 36) static inline phys_addr_t rk_dte_pt_address_v2(u32 dte) { From 724ee060d0aba28f072fc7357a20366b0a519593 Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Fri, 26 Nov 2021 21:55:56 +0800 Subject: [PATCH 159/192] iommu/vt-d: Fix unmap_pages support [ Upstream commit 86dc40c7ea9c22f64571e0e45f695de73a0e2644 ] When supporting only the .map and .unmap callbacks of iommu_ops, the IOMMU driver can make assumptions about the size and alignment used for mappings based on the driver provided pgsize_bitmap. VT-d previously used essentially PAGE_MASK for this bitmap as any power of two mapping was acceptably filled by native page sizes. However, with the .map_pages and .unmap_pages interface we're now getting page-size and count arguments. If we simply combine these as (page-size * count) and make use of the previous map/unmap functions internally, any size and alignment assumptions are very different. As an example, a given vfio device assignment VM will often create a 4MB mapping at IOVA pfn [0x3fe00 - 0x401ff]. On a system that does not support IOMMU super pages, the unmap_pages interface will ask to unmap 1024 4KB pages at the base IOVA. dma_pte_clear_level() will recurse down to level 2 of the page table where the first half of the pfn range exactly matches the entire pte level. We clear the pte, increment the pfn by the level size, but (oops) the next pte is on a new page, so we exit the loop an pop back up a level. When we then update the pfn based on that higher level, we seem to assume that the previous pfn value was at the start of the level. In this case the level size is 256K pfns, which we add to the base pfn and get a results of 0x7fe00, which is clearly greater than 0x401ff, so we're done. Meanwhile we never cleared the ptes for the remainder of the range. When the VM remaps this range, we're overwriting valid ptes and the VT-d driver complains loudly, as reported by the user report linked below. The fix for this seems relatively simple, if each iteration of the loop in dma_pte_clear_level() is assumed to clear to the end of the level pte page, then our next pfn should be calculated from level_pfn rather than our working pfn. Fixes: 3f34f1259776 ("iommu/vt-d: Implement map/unmap_pages() iommu_ops callback") Reported-by: Ajay Garg Signed-off-by: Alex Williamson Tested-by: Giovanni Cabiddu Link: https://lore.kernel.org/all/20211002124012.18186-1-ajaygargnsit@gmail.com/ Link: https://lore.kernel.org/r/163659074748.1617923.12716161410774184024.stgit@omen Signed-off-by: Lu Baolu Link: https://lore.kernel.org/r/20211126135556.397932-3-baolu.lu@linux.intel.com Signed-off-by: Joerg Roedel Signed-off-by: Sasha Levin --- drivers/iommu/intel/iommu.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c index 9a356075d34507..78f8c8e6803e97 100644 --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c @@ -1226,13 +1226,11 @@ static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level, pte = &pte[pfn_level_offset(pfn, level)]; do { - unsigned long level_pfn; + unsigned long level_pfn = pfn & level_mask(level); if (!dma_pte_present(pte)) goto next; - level_pfn = pfn & level_mask(level); - /* If range covers entire pagetable, free it */ if (start_pfn <= level_pfn && last_pfn >= level_pfn + level_size(level) - 1) { @@ -1253,7 +1251,7 @@ static struct page *dma_pte_clear_level(struct dmar_domain *domain, int level, freelist); } next: - pfn += level_size(level); + pfn = level_pfn + level_size(level); } while (!first_pte_in_page(++pte) && pfn <= last_pfn); if (first_pte) From fb89bcbfbf373524afa2dd54e339dc45404c0176 Mon Sep 17 00:00:00 2001 From: Chao Yu Date: Fri, 3 Sep 2021 10:38:11 +0800 Subject: [PATCH 160/192] f2fs: quota: fix potential deadlock [ Upstream commit a5c0042200b28fff3bde6fa128ddeaef97990f8d ] As Yi Zhuang reported in bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=214299 There is potential deadlock during quota data flush as below: Thread A: Thread B: f2fs_dquot_acquire down_read(&sbi->quota_sem) f2fs_write_checkpoint block_operations f2fs_look_all down_write(&sbi->cp_rwsem) f2fs_quota_write f2fs_write_begin __do_map_lock f2fs_lock_op down_read(&sbi->cp_rwsem) __need_flush_qutoa down_write(&sbi->quota_sem) This patch changes block_operations() to use trylock, if it fails, it means there is potential quota data updater, in this condition, let's flush quota data first and then trylock again to check dirty status of quota data. The side effect is: in heavy race condition (e.g. multi quota data upaters vs quota data flusher), it may decrease the probability of synchronizing quota data successfully in checkpoint() due to limited retry time of quota flush. Reported-by: Yi Zhuang Signed-off-by: Chao Yu Signed-off-by: Jaegeuk Kim Signed-off-by: Sasha Levin --- fs/f2fs/checkpoint.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 83e9bc0f91ffd7..7b02827242312d 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -1162,7 +1162,8 @@ static bool __need_flush_quota(struct f2fs_sb_info *sbi) if (!is_journalled_quota(sbi)) return false; - down_write(&sbi->quota_sem); + if (!down_write_trylock(&sbi->quota_sem)) + return true; if (is_sbi_flag_set(sbi, SBI_QUOTA_SKIP_FLUSH)) { ret = false; } else if (is_sbi_flag_set(sbi, SBI_QUOTA_NEED_REPAIR)) { From 8984bba3b4c0b36be6cbcd7ac4a8779a045bd670 Mon Sep 17 00:00:00 2001 From: Weichao Guo Date: Sat, 18 Sep 2021 20:46:36 +0800 Subject: [PATCH 161/192] f2fs: set SBI_NEED_FSCK flag when inconsistent node block found [ Upstream commit 6663b138ded1a59e630c9e605e42aa7fde490cdc ] Inconsistent node block will cause a file fail to open or read, which could make the user process crashes or stucks. Let's mark SBI_NEED_FSCK flag to trigger a fix at next fsck time. After unlinking the corrupted file, the user process could regenerate a new one and work correctly. Signed-off-by: Weichao Guo Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim Signed-off-by: Sasha Levin --- fs/f2fs/node.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index e863136081b47f..556fcd8457f3f2 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -1443,6 +1443,7 @@ static struct page *__get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid, nid, nid_of_node(page), ino_of_node(page), ofs_of_node(page), cpver_of_node(page), next_blkaddr_of_node(page)); + set_sbi_flag(sbi, SBI_NEED_FSCK); err = -EINVAL; out_err: ClearPageUptodate(page); From fda0d131c0a4e6e1c86da2369291430bd9dff9cf Mon Sep 17 00:00:00 2001 From: Krzysztof Kozlowski Date: Mon, 27 Sep 2021 14:50:41 +0200 Subject: [PATCH 162/192] riscv: dts: microchip: fix board compatible [ Upstream commit fd86dd2a5dc5ff1044423c19fef3907862f591c4 ] According to bindings, the compatible must include microchip,mpfs. This fixes dtbs_check warning: arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dt.yaml: /: compatible: ['microchip,mpfs-icicle-kit'] is too short Signed-off-by: Krzysztof Kozlowski Reviewed-by: Conor Dooley Reviewed-by: Geert Uytterhoeven Signed-off-by: Palmer Dabbelt Signed-off-by: Sasha Levin --- arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts | 2 +- arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts b/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts index b254c60589a1cc..be0d77624cf534 100644 --- a/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts +++ b/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts @@ -12,7 +12,7 @@ #address-cells = <2>; #size-cells = <2>; model = "Microchip PolarFire-SoC Icicle Kit"; - compatible = "microchip,mpfs-icicle-kit"; + compatible = "microchip,mpfs-icicle-kit", "microchip,mpfs"; aliases { ethernet0 = &emac1; diff --git a/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi b/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi index 9d2fbbc1f7778f..446f41d6a87e91 100644 --- a/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi +++ b/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi @@ -6,8 +6,8 @@ / { #address-cells = <2>; #size-cells = <2>; - model = "Microchip MPFS Icicle Kit"; - compatible = "microchip,mpfs-icicle-kit"; + model = "Microchip PolarFire SoC"; + compatible = "microchip,mpfs"; chosen { }; From 98805da98d93e6cf4e96d2f2aa5eaecc730722b9 Mon Sep 17 00:00:00 2001 From: Krzysztof Kozlowski Date: Mon, 27 Sep 2021 14:50:42 +0200 Subject: [PATCH 163/192] riscv: dts: microchip: drop duplicated MMC/SDHC node [ Upstream commit 42a57a47bb0c0f531321a7001972a3ca121409bd ] Devicetree source is a description of hardware and hardware has only one block @20008000 which can be configured either as eMMC or SDHC. Having two node for different modes is an obscure, unusual and confusing way to configure it. Instead the board file is supposed to customize the block to its needs, e.g. to SDHC mode. This fixes dtbs_check warning: arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dt.yaml: sdhc@20008000: $nodename:0: 'sdhc@20008000' does not match '^mmc(@.*)?$' Signed-off-by: Krzysztof Kozlowski Signed-off-by: Palmer Dabbelt Signed-off-by: Sasha Levin --- .../microchip/microchip-mpfs-icicle-kit.dts | 11 ++++++- .../boot/dts/microchip/microchip-mpfs.dtsi | 29 ++----------------- 2 files changed, 12 insertions(+), 28 deletions(-) diff --git a/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts b/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts index be0d77624cf534..cce5eca31f2577 100644 --- a/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts +++ b/arch/riscv/boot/dts/microchip/microchip-mpfs-icicle-kit.dts @@ -56,8 +56,17 @@ status = "okay"; }; -&sdcard { +&mmc { status = "okay"; + + bus-width = <4>; + disable-wp; + cap-sd-highspeed; + card-detect-delay = <200>; + sd-uhs-sdr12; + sd-uhs-sdr25; + sd-uhs-sdr50; + sd-uhs-sdr104; }; &emac0 { diff --git a/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi b/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi index 446f41d6a87e91..b12fd594e7172d 100644 --- a/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi +++ b/arch/riscv/boot/dts/microchip/microchip-mpfs.dtsi @@ -262,39 +262,14 @@ status = "disabled"; }; - emmc: mmc@20008000 { + /* Common node entry for emmc/sd */ + mmc: mmc@20008000 { compatible = "cdns,sd4hc"; reg = <0x0 0x20008000 0x0 0x1000>; interrupt-parent = <&plic>; interrupts = <88 89>; pinctrl-names = "default"; clocks = <&clkcfg 6>; - bus-width = <4>; - cap-mmc-highspeed; - mmc-ddr-3_3v; - max-frequency = <200000000>; - non-removable; - no-sd; - no-sdio; - voltage-ranges = <3300 3300>; - status = "disabled"; - }; - - sdcard: sdhc@20008000 { - compatible = "cdns,sd4hc"; - reg = <0x0 0x20008000 0x0 0x1000>; - interrupt-parent = <&plic>; - interrupts = <88>; - pinctrl-names = "default"; - clocks = <&clkcfg 6>; - bus-width = <4>; - disable-wp; - cap-sd-highspeed; - card-detect-delay = <200>; - sd-uhs-sdr12; - sd-uhs-sdr25; - sd-uhs-sdr50; - sd-uhs-sdr104; max-frequency = <200000000>; status = "disabled"; }; From a96c6f0bbba6272f0e85e8748c0ee4522d026f3b Mon Sep 17 00:00:00 2001 From: Shyam Prasad N Date: Sat, 6 Nov 2021 11:31:53 +0000 Subject: [PATCH 164/192] cifs: nosharesock should not share socket with future sessions [ Upstream commit c9f1c19cf7c50949885fa5afdb2cb242d61a7fac ] Today, when a new mount is done with nosharesock, we ensure that we don't select an existing matching session. However, we don't mark the connection as nosharesock, which means that those could be shared with future sessions. Fixed it with this commit. Also printing this info in DebugData. Signed-off-by: Shyam Prasad N Reviewed-by: Paulo Alcantara (SUSE) Signed-off-by: Steve French Signed-off-by: Sasha Levin --- fs/cifs/cifs_debug.c | 2 ++ fs/cifs/cifsglob.h | 1 + fs/cifs/connect.c | 8 +++++++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index de2c12bcfa4bc6..905a901f7f80b9 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -358,6 +358,8 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) seq_printf(m, " signed"); if (server->posix_ext_supported) seq_printf(m, " posix"); + if (server->nosharesock) + seq_printf(m, " nosharesock"); if (server->rdma) seq_printf(m, "\nRDMA "); diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index dea4c929d3f46e..3e5b8e177cfa78 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -592,6 +592,7 @@ struct TCP_Server_Info { struct list_head pending_mid_q; bool noblocksnd; /* use blocking sendmsg */ bool noautotune; /* do not autotune send buf sizes */ + bool nosharesock; bool tcp_nodelay; unsigned int credits; /* send no more requests at once */ unsigned int max_credits; /* can override large 32000 default at mnt */ diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index e757ee52cc7777..d26703a05c6b44 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1217,7 +1217,13 @@ static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context * { struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr; - if (ctx->nosharesock) + if (ctx->nosharesock) { + server->nosharesock = true; + return 0; + } + + /* this server does not share socket */ + if (server->nosharesock) return 0; /* If multidialect negotiation see if existing sessions match one */ From 68883f17798c12123da870eb1e418aeb3c6da3b3 Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Tue, 5 Oct 2021 11:12:58 -0400 Subject: [PATCH 165/192] ceph: properly handle statfs on multifs setups [ Upstream commit 8cfc0c7ed34f7929ce7e5d7c6eecf4d01ba89a84 ] ceph_statfs currently stuffs the cluster fsid into the f_fsid field. This was fine when we only had a single filesystem per cluster, but now that we have multiples we need to use something that will vary between them. Change ceph_statfs to xor each 32-bit chunk of the fsid (aka cluster id) into the lower bits of the statfs->f_fsid. Change the lower bits to hold the fscid (filesystem ID within the cluster). That should give us a value that is guaranteed to be unique between filesystems within a cluster, and should minimize the chance of collisions between mounts of different clusters. URL: https://tracker.ceph.com/issues/52812 Reported-by: Sachin Prabhu Signed-off-by: Jeff Layton Reviewed-by: Xiubo Li Signed-off-by: Ilya Dryomov Signed-off-by: Sasha Levin --- fs/ceph/super.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/fs/ceph/super.c b/fs/ceph/super.c index fd8742bae84715..202ddde3d62ad1 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -52,8 +52,7 @@ static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf) struct ceph_fs_client *fsc = ceph_inode_to_client(d_inode(dentry)); struct ceph_mon_client *monc = &fsc->client->monc; struct ceph_statfs st; - u64 fsid; - int err; + int i, err; u64 data_pool; if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) { @@ -99,12 +98,14 @@ static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf) buf->f_namelen = NAME_MAX; /* Must convert the fsid, for consistent values across arches */ + buf->f_fsid.val[0] = 0; mutex_lock(&monc->mutex); - fsid = le64_to_cpu(*(__le64 *)(&monc->monmap->fsid)) ^ - le64_to_cpu(*((__le64 *)&monc->monmap->fsid + 1)); + for (i = 0 ; i < sizeof(monc->monmap->fsid) / sizeof(__le32) ; ++i) + buf->f_fsid.val[0] ^= le32_to_cpu(((__le32 *)&monc->monmap->fsid)[i]); mutex_unlock(&monc->mutex); - buf->f_fsid = u64_to_fsid(fsid); + /* fold the fs_cluster_id into the upper bits */ + buf->f_fsid.val[1] = monc->fs_cluster_id; return 0; } From e2c8ed0de4ab215cdb21e7952062db3ee2a8291a Mon Sep 17 00:00:00 2001 From: Joerg Roedel Date: Tue, 23 Nov 2021 11:55:07 +0100 Subject: [PATCH 166/192] iommu/amd: Clarify AMD IOMMUv2 initialization messages commit 717e88aad37befedfd531378b632e794e24e9afb upstream. The messages printed on the initialization of the AMD IOMMUv2 driver have caused some confusion in the past. Clarify the messages to lower the confusion in the future. Cc: stable@vger.kernel.org Signed-off-by: Joerg Roedel Link: https://lore.kernel.org/r/20211123105507.7654-3-joro@8bytes.org Signed-off-by: Greg Kroah-Hartman --- drivers/iommu/amd/iommu_v2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/iommu/amd/iommu_v2.c b/drivers/iommu/amd/iommu_v2.c index a9e568276c99f2..a45c5536d25060 100644 --- a/drivers/iommu/amd/iommu_v2.c +++ b/drivers/iommu/amd/iommu_v2.c @@ -928,10 +928,8 @@ static int __init amd_iommu_v2_init(void) { int ret; - pr_info("AMD IOMMUv2 driver by Joerg Roedel \n"); - if (!amd_iommu_v2_supported()) { - pr_info("AMD IOMMUv2 functionality not available on this system\n"); + pr_info("AMD IOMMUv2 functionality not available on this system - This is not a bug.\n"); /* * Load anyway to provide the symbols to other modules * which may use AMD IOMMUv2 optionally. @@ -946,6 +944,8 @@ static int __init amd_iommu_v2_init(void) amd_iommu_register_ppr_notifier(&ppr_nb); + pr_info("AMD IOMMUv2 loaded and initialized\n"); + return 0; out: From e4d58ac67e63727aa45a4a26185876f598e8b3dd Mon Sep 17 00:00:00 2001 From: Longpeng Date: Wed, 24 Nov 2021 09:52:15 +0800 Subject: [PATCH 167/192] vdpa_sim: avoid putting an uninitialized iova_domain commit bb93ce4b150dde79f58e34103cbd1fe829796649 upstream. The system will crash if we put an uninitialized iova_domain, this could happen when an error occurs before initializing the iova_domain in vdpasim_create(). BUG: kernel NULL pointer dereference, address: 0000000000000000 ... RIP: 0010:__cpuhp_state_remove_instance+0x96/0x1c0 ... Call Trace: put_iova_domain+0x29/0x220 vdpasim_free+0xd1/0x120 [vdpa_sim] vdpa_release_dev+0x21/0x40 [vdpa] device_release+0x33/0x90 kobject_release+0x63/0x160 vdpasim_create+0x127/0x2a0 [vdpa_sim] vdpasim_net_dev_add+0x7d/0xfe [vdpa_sim_net] vdpa_nl_cmd_dev_add_set_doit+0xe1/0x1a0 [vdpa] genl_family_rcv_msg_doit+0x112/0x140 genl_rcv_msg+0xdf/0x1d0 ... So we must make sure the iova_domain is already initialized before put it. In addition, we may get the following warning in this case: WARNING: ... drivers/iommu/iova.c:344 iova_cache_put+0x58/0x70 So we must make sure the iova_cache_put() is invoked only if the iova_cache_get() is already invoked. Let's fix it together. Cc: stable@vger.kernel.org Fixes: 4080fc106750 ("vdpa_sim: use iova module to allocate IOVA addresses") Signed-off-by: Longpeng Acked-by: Jason Wang Reviewed-by: Stefano Garzarella Link: https://lore.kernel.org/r/20211124015215.119-1-longpeng2@huawei.com Signed-off-by: Michael S. Tsirkin Signed-off-by: Greg Kroah-Hartman --- drivers/vdpa/vdpa_sim/vdpa_sim.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/vdpa/vdpa_sim/vdpa_sim.c b/drivers/vdpa/vdpa_sim/vdpa_sim.c index 5f484fff8dbecb..41b0cd17fcbac1 100644 --- a/drivers/vdpa/vdpa_sim/vdpa_sim.c +++ b/drivers/vdpa/vdpa_sim/vdpa_sim.c @@ -591,8 +591,11 @@ static void vdpasim_free(struct vdpa_device *vdpa) vringh_kiov_cleanup(&vdpasim->vqs[i].in_iov); } - put_iova_domain(&vdpasim->iova); - iova_cache_put(); + if (vdpa_get_dma_dev(vdpa)) { + put_iova_domain(&vdpasim->iova); + iova_cache_put(); + } + kvfree(vdpasim->buffer); if (vdpasim->iommu) vhost_iotlb_free(vdpasim->iommu); From 278f72e8eb572a5f392cb291566b9d4c9ea68dc8 Mon Sep 17 00:00:00 2001 From: Stefano Garzarella Date: Mon, 22 Nov 2021 17:35:24 +0100 Subject: [PATCH 168/192] vhost/vsock: fix incorrect used length reported to the guest commit 49d8c5ffad07ca014cfae72a1b9b8c52b6ad9cb8 upstream. The "used length" reported by calling vhost_add_used() must be the number of bytes written by the device (using "in" buffers). In vhost_vsock_handle_tx_kick() the device only reads the guest buffers (they are all "out" buffers), without writing anything, so we must pass 0 as "used length" to comply virtio spec. Fixes: 433fc58e6bf2 ("VSOCK: Introduce vhost_vsock.ko") Cc: stable@vger.kernel.org Reported-by: Halil Pasic Suggested-by: Jason Wang Signed-off-by: Stefano Garzarella Link: https://lore.kernel.org/r/20211122163525.294024-2-sgarzare@redhat.com Signed-off-by: Michael S. Tsirkin Reviewed-by: Stefan Hajnoczi Reviewed-by: Halil Pasic Signed-off-by: Greg Kroah-Hartman --- drivers/vhost/vsock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c index 938aefbc75ecc2..4e3b95af7ee4d4 100644 --- a/drivers/vhost/vsock.c +++ b/drivers/vhost/vsock.c @@ -554,7 +554,7 @@ static void vhost_vsock_handle_tx_kick(struct vhost_work *work) virtio_transport_free_pkt(pkt); len += sizeof(pkt->hdr); - vhost_add_used(vq, head, len); + vhost_add_used(vq, head, 0); total_len += len; added = true; } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len))); From 6e56e87f43e26047f936152c0e3fb0f9f7bc4327 Mon Sep 17 00:00:00 2001 From: Christophe JAILLET Date: Sun, 7 Nov 2021 16:22:57 +0100 Subject: [PATCH 169/192] ksmbd: Fix an error handling path in 'smb2_sess_setup()' commit f8fbfd85f5c95fff477a7c19f576725945891d0c upstream. All the error handling paths of 'smb2_sess_setup()' end to 'out_err'. All but the new error handling path added by the commit given in the Fixes tag below. Fix this error handling path and branch to 'out_err' as well. Fixes: 0d994cd482ee ("ksmbd: add buffer validation in session setup") Cc: stable@vger.kernel.org # v5.15 Acked-by: Namjae Jeon Signed-off-by: Christophe JAILLET Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- fs/ksmbd/smb2pdu.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 691c861e41a2e1..ad0ea5d36f2eeb 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -1700,8 +1700,10 @@ int smb2_sess_setup(struct ksmbd_work *work) negblob_off = le16_to_cpu(req->SecurityBufferOffset); negblob_len = le16_to_cpu(req->SecurityBufferLength); if (negblob_off < (offsetof(struct smb2_sess_setup_req, Buffer) - 4) || - negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) - return -EINVAL; + negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) { + rc = -EINVAL; + goto out_err; + } negblob = (struct negotiate_message *)((char *)&req->hdr.ProtocolId + negblob_off); From c9c8c054a01ca6259cd380641cd21bfce791d124 Mon Sep 17 00:00:00 2001 From: "Steven Rostedt (VMware)" Date: Fri, 26 Nov 2021 13:35:26 -0500 Subject: [PATCH 170/192] tracing: Check pid filtering when creating events commit 6cb206508b621a9a0a2c35b60540e399225c8243 upstream. When pid filtering is activated in an instance, all of the events trace files for that instance has the PID_FILTER flag set. This determines whether or not pid filtering needs to be done on the event, otherwise the event is executed as normal. If pid filtering is enabled when an event is created (via a dynamic event or modules), its flag is not updated to reflect the current state, and the events are not filtered properly. Cc: stable@vger.kernel.org Fixes: 3fdaf80f4a836 ("tracing: Implement event pid filtering") Signed-off-by: Steven Rostedt (VMware) Signed-off-by: Greg Kroah-Hartman --- kernel/trace/trace_events.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c index bb1123ef2a0210..44d031ffe51125 100644 --- a/kernel/trace/trace_events.c +++ b/kernel/trace/trace_events.c @@ -2678,12 +2678,22 @@ static struct trace_event_file * trace_create_new_event(struct trace_event_call *call, struct trace_array *tr) { + struct trace_pid_list *no_pid_list; + struct trace_pid_list *pid_list; struct trace_event_file *file; file = kmem_cache_alloc(file_cachep, GFP_TRACE); if (!file) return NULL; + pid_list = rcu_dereference_protected(tr->filtered_pids, + lockdep_is_held(&event_mutex)); + no_pid_list = rcu_dereference_protected(tr->filtered_no_pids, + lockdep_is_held(&event_mutex)); + + if (pid_list || no_pid_list) + file->flags |= EVENT_FILE_FL_PID_FILTER; + file->event_call = call; file->tr = tr; atomic_set(&file->sm_ref, 0); From d841c6720fb24dda402d3fcc08eda6ad4efa457c Mon Sep 17 00:00:00 2001 From: Shyam Prasad N Date: Sun, 21 Nov 2021 16:45:44 +0000 Subject: [PATCH 171/192] cifs: nosharesock should be set on new server commit b9ad6b5b687e798746024e5fc4574d8fa8bdfade upstream. Recent fix to maintain a nosharesock state on the server struct caused a regression. It updated this field in the old tcp session, and not the new one. This caused the multichannel scenario to misbehave. Fixes: c9f1c19cf7c5 (cifs: nosharesock should not share socket with future sessions) Signed-off-by: Shyam Prasad N Reviewed-by: Paulo Alcantara (SUSE) Signed-off-by: Steve French Signed-off-by: Greg Kroah-Hartman --- fs/cifs/connect.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index d26703a05c6b44..439f02f1886c18 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1217,10 +1217,8 @@ static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context * { struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr; - if (ctx->nosharesock) { - server->nosharesock = true; + if (ctx->nosharesock) return 0; - } /* this server does not share socket */ if (server->nosharesock) @@ -1376,6 +1374,9 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) goto out_err; } + if (ctx->nosharesock) + tcp_ses->nosharesock = true; + tcp_ses->ops = ctx->ops; tcp_ses->vals = ctx->vals; cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns)); From 2d447d318b76252154f5eec34646f767de2bf500 Mon Sep 17 00:00:00 2001 From: Ye Bin Date: Mon, 22 Nov 2021 10:47:37 +0800 Subject: [PATCH 172/192] io_uring: fix soft lockup when call __io_remove_buffers commit 1d0254e6b47e73222fd3d6ae95cccbaafe5b3ecf upstream. I got issue as follows: [ 567.094140] __io_remove_buffers: [1]start ctx=0xffff8881067bf000 bgid=65533 buf=0xffff8881fefe1680 [ 594.360799] watchdog: BUG: soft lockup - CPU#2 stuck for 26s! [kworker/u32:5:108] [ 594.364987] Modules linked in: [ 594.365405] irq event stamp: 604180238 [ 594.365906] hardirqs last enabled at (604180237): [] _raw_spin_unlock_irqrestore+0x2d/0x50 [ 594.367181] hardirqs last disabled at (604180238): [] sysvec_apic_timer_interrupt+0xb/0xc0 [ 594.368420] softirqs last enabled at (569080666): [] __do_softirq+0x654/0xa9e [ 594.369551] softirqs last disabled at (569080575): [] irq_exit_rcu+0x1ca/0x250 [ 594.370692] CPU: 2 PID: 108 Comm: kworker/u32:5 Tainted: G L 5.15.0-next-20211112+ #88 [ 594.371891] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS ?-20190727_073836-buildvm-ppc64le-16.ppc.fedoraproject.org-3.fc31 04/01/2014 [ 594.373604] Workqueue: events_unbound io_ring_exit_work [ 594.374303] RIP: 0010:_raw_spin_unlock_irqrestore+0x33/0x50 [ 594.375037] Code: 48 83 c7 18 53 48 89 f3 48 8b 74 24 10 e8 55 f5 55 fd 48 89 ef e8 ed a7 56 fd 80 e7 02 74 06 e8 43 13 7b fd fb bf 01 00 00 00 f8 78 474 [ 594.377433] RSP: 0018:ffff888101587a70 EFLAGS: 00000202 [ 594.378120] RAX: 0000000024030f0d RBX: 0000000000000246 RCX: 1ffffffff2f09106 [ 594.379053] RDX: 0000000000000000 RSI: ffffffff9449f0e0 RDI: 0000000000000001 [ 594.379991] RBP: ffffffff9586cdc0 R08: 0000000000000001 R09: fffffbfff2effcab [ 594.380923] R10: ffffffff977fe557 R11: fffffbfff2effcaa R12: ffff8881b8f3def0 [ 594.381858] R13: 0000000000000246 R14: ffff888153a8b070 R15: 0000000000000000 [ 594.382787] FS: 0000000000000000(0000) GS:ffff888399c00000(0000) knlGS:0000000000000000 [ 594.383851] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 594.384602] CR2: 00007fcbe71d2000 CR3: 00000000b4216000 CR4: 00000000000006e0 [ 594.385540] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 594.386474] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 594.387403] Call Trace: [ 594.387738] [ 594.388042] find_and_remove_object+0x118/0x160 [ 594.389321] delete_object_full+0xc/0x20 [ 594.389852] kfree+0x193/0x470 [ 594.390275] __io_remove_buffers.part.0+0xed/0x147 [ 594.390931] io_ring_ctx_free+0x342/0x6a2 [ 594.392159] io_ring_exit_work+0x41e/0x486 [ 594.396419] process_one_work+0x906/0x15a0 [ 594.399185] worker_thread+0x8b/0xd80 [ 594.400259] kthread+0x3bf/0x4a0 [ 594.401847] ret_from_fork+0x22/0x30 [ 594.402343] Message from syslogd@localhost at Nov 13 09:09:54 ... kernel:watchdog: BUG: soft lockup - CPU#2 stuck for 26s! [kworker/u32:5:108] [ 596.793660] __io_remove_buffers: [2099199]start ctx=0xffff8881067bf000 bgid=65533 buf=0xffff8881fefe1680 We can reproduce this issue by follow syzkaller log: r0 = syz_io_uring_setup(0x401, &(0x7f0000000300), &(0x7f0000003000/0x2000)=nil, &(0x7f0000ff8000/0x4000)=nil, &(0x7f0000000280)=0x0, &(0x7f0000000380)=0x0) sendmsg$ETHTOOL_MSG_FEATURES_SET(0xffffffffffffffff, &(0x7f0000003080)={0x0, 0x0, &(0x7f0000003040)={&(0x7f0000000040)=ANY=[], 0x18}}, 0x0) syz_io_uring_submit(r1, r2, &(0x7f0000000240)=@IORING_OP_PROVIDE_BUFFERS={0x1f, 0x5, 0x0, 0x401, 0x1, 0x0, 0x100, 0x0, 0x1, {0xfffd}}, 0x0) io_uring_enter(r0, 0x3a2d, 0x0, 0x0, 0x0, 0x0) The reason above issue is 'buf->list' has 2,100,000 nodes, occupied cpu lead to soft lockup. To solve this issue, we need add schedule point when do while loop in '__io_remove_buffers'. After add schedule point we do regression, get follow data. [ 240.141864] __io_remove_buffers: [1]start ctx=0xffff888170603000 bgid=65533 buf=0xffff8881116fcb00 [ 268.408260] __io_remove_buffers: [1]start ctx=0xffff8881b92d2000 bgid=65533 buf=0xffff888130c83180 [ 275.899234] __io_remove_buffers: [2099199]start ctx=0xffff888170603000 bgid=65533 buf=0xffff8881116fcb00 [ 296.741404] __io_remove_buffers: [1]start ctx=0xffff8881b659c000 bgid=65533 buf=0xffff8881010fe380 [ 305.090059] __io_remove_buffers: [2099199]start ctx=0xffff8881b92d2000 bgid=65533 buf=0xffff888130c83180 [ 325.415746] __io_remove_buffers: [1]start ctx=0xffff8881b92d1000 bgid=65533 buf=0xffff8881a17d8f00 [ 333.160318] __io_remove_buffers: [2099199]start ctx=0xffff8881b659c000 bgid=65533 buf=0xffff8881010fe380 ... Fixes:8bab4c09f24e("io_uring: allow conditional reschedule for intensive iterators") Signed-off-by: Ye Bin Link: https://lore.kernel.org/r/20211122024737.2198530-1-yebin10@huawei.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- fs/io_uring.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 074718333b1053..f8ceddafb6fc47 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -4343,6 +4343,7 @@ static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf, kfree(nxt); if (++i == nbufs) return i; + cond_resched(); } i++; kfree(buf); @@ -9249,10 +9250,8 @@ static void io_destroy_buffers(struct io_ring_ctx *ctx) struct io_buffer *buf; unsigned long index; - xa_for_each(&ctx->io_buffers, index, buf) { + xa_for_each(&ctx->io_buffers, index, buf) __io_remove_buffers(ctx, buf, index, -1U); - cond_resched(); - } } static void io_req_cache_free(struct list_head *list) From 4cbe2531efebcd2ae5f98ed2d8d8cdacc5423d7f Mon Sep 17 00:00:00 2001 From: Cristian Marussi Date: Mon, 15 Nov 2021 15:40:42 +0000 Subject: [PATCH 173/192] firmware: arm_scmi: Fix type error assignment in voltage protocol commit 026d9835b62bba34b7e657a0bfb76717822f9319 upstream. Fix incorrect type assignment error reported by sparse as: drivers/firmware/arm_scmi/voltage.c:159:42: warning: incorrect type in assignment (different base types) drivers/firmware/arm_scmi/voltage.c:159:42: expected restricted __le32 [usertype] level_index drivers/firmware/arm_scmi/voltage.c:159:42: got unsigned int [usertype] desc_index Link: https://lore.kernel.org/r/20211115154043.49284-1-cristian.marussi@arm.com Fixes: 2add5cacff353 ("firmware: arm_scmi: Add voltage domain management protocol support") Reported-by: kernel test robot Signed-off-by: Cristian Marussi Signed-off-by: Sudeep Holla Signed-off-by: Greg Kroah-Hartman --- drivers/firmware/arm_scmi/voltage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/firmware/arm_scmi/voltage.c b/drivers/firmware/arm_scmi/voltage.c index a5048956a0be94..ac08e819088bba 100644 --- a/drivers/firmware/arm_scmi/voltage.c +++ b/drivers/firmware/arm_scmi/voltage.c @@ -156,7 +156,7 @@ static int scmi_voltage_descriptors_get(const struct scmi_protocol_handle *ph, int cnt; cmd->domain_id = cpu_to_le32(v->id); - cmd->level_index = desc_index; + cmd->level_index = cpu_to_le32(desc_index); ret = ph->xops->do_xfer(ph, tl); if (ret) break; From ec8848ab5ebc706a24be85f9c9e92f846d6266cd Mon Sep 17 00:00:00 2001 From: Cristian Marussi Date: Mon, 15 Nov 2021 15:40:43 +0000 Subject: [PATCH 174/192] firmware: arm_scmi: Fix type error in sensor protocol commit bd074e5039ee16d71833a67337e2f6bf5d106b3a upstream. Fix incorrect type error reported by sparse as: drivers/firmware/arm_scmi/sensors.c:640:28: warning: incorrect type in argument 1 (different base types) drivers/firmware/arm_scmi/sensors.c:640:28: expected unsigned int [usertype] val drivers/firmware/arm_scmi/sensors.c:640:28: got restricted __le32 [usertype] Link: https://lore.kernel.org/r/20211115154043.49284-2-cristian.marussi@arm.com Fixes: 7b83c5f410889 ("firmware: arm_scmi: Add SCMI v3.0 sensor configuration support") Signed-off-by: Cristian Marussi Signed-off-by: Sudeep Holla Signed-off-by: Greg Kroah-Hartman --- drivers/firmware/arm_scmi/sensors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/firmware/arm_scmi/sensors.c b/drivers/firmware/arm_scmi/sensors.c index 308471586381f4..cdbb287bd8bcd4 100644 --- a/drivers/firmware/arm_scmi/sensors.c +++ b/drivers/firmware/arm_scmi/sensors.c @@ -637,7 +637,7 @@ static int scmi_sensor_config_get(const struct scmi_protocol_handle *ph, if (ret) return ret; - put_unaligned_le32(cpu_to_le32(sensor_id), t->tx.buf); + put_unaligned_le32(sensor_id, t->tx.buf); ret = ph->xops->do_xfer(ph, t); if (!ret) { struct sensors_info *si = ph->get_priv(ph); From d9262cc886e2e144840226a31e40a36f25c6579f Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Tue, 16 Nov 2021 12:11:21 +0000 Subject: [PATCH 175/192] docs: accounting: update delay-accounting.rst reference commit 0f60a29c52b515532e6b11dc6b3c9e5b5f7ff2b4 upstream. The file name: accounting/delay-accounting.rst should be, instead: Documentation/accounting/delay-accounting.rst. Also, there's no need to use doc:`foo`, as automarkup.py will automatically handle plain text mentions to Documentation/ files. So, update its cross-reference accordingly. Fixes: fcb501704554 ("delayacct: Document task_delayacct sysctl") Fixes: c3123552aad3 ("docs: accounting: convert to ReST") Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Jonathan Corbet Signed-off-by: Greg Kroah-Hartman --- Documentation/admin-guide/sysctl/kernel.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/admin-guide/sysctl/kernel.rst b/Documentation/admin-guide/sysctl/kernel.rst index 426162009ce998..0e486f41185ef3 100644 --- a/Documentation/admin-guide/sysctl/kernel.rst +++ b/Documentation/admin-guide/sysctl/kernel.rst @@ -1099,7 +1099,7 @@ task_delayacct =============== Enables/disables task delay accounting (see -:doc:`accounting/delay-accounting.rst`). Enabling this feature incurs +Documentation/accounting/delay-accounting.rst. Enabling this feature incurs a small amount of overhead in the scheduler but is useful for debugging and performance tuning. It is required by some tools such as iotop. From e03513f58919d9e2bc6df765ca2c9da863d03d90 Mon Sep 17 00:00:00 2001 From: Ming Lei Date: Tue, 16 Nov 2021 09:43:43 +0800 Subject: [PATCH 176/192] blk-mq: cancel blk-mq dispatch work in both blk_cleanup_queue and disk_release() commit 2a19b28f7929866e1cec92a3619f4de9f2d20005 upstream. For avoiding to slow down queue destroy, we don't call blk_mq_quiesce_queue() in blk_cleanup_queue(), instead of delaying to cancel dispatch work in blk_release_queue(). However, this way has caused kernel oops[1], reported by Changhui. The log shows that scsi_device can be freed before running blk_release_queue(), which is expected too since scsi_device is released after the scsi disk is closed and the scsi_device is removed. Fixes the issue by canceling blk-mq dispatch work in both blk_cleanup_queue() and disk_release(): 1) when disk_release() is run, the disk has been closed, and any sync dispatch activities have been done, so canceling dispatch work is enough to quiesce filesystem I/O dispatch activity. 2) in blk_cleanup_queue(), we only focus on passthrough request, and passthrough request is always explicitly allocated & freed by its caller, so once queue is frozen, all sync dispatch activity for passthrough request has been done, then it is enough to just cancel dispatch work for avoiding any dispatch activity. [1] kernel panic log [12622.769416] BUG: kernel NULL pointer dereference, address: 0000000000000300 [12622.777186] #PF: supervisor read access in kernel mode [12622.782918] #PF: error_code(0x0000) - not-present page [12622.788649] PGD 0 P4D 0 [12622.791474] Oops: 0000 [#1] PREEMPT SMP PTI [12622.796138] CPU: 10 PID: 744 Comm: kworker/10:1H Kdump: loaded Not tainted 5.15.0+ #1 [12622.804877] Hardware name: Dell Inc. PowerEdge R730/0H21J3, BIOS 1.5.4 10/002/2015 [12622.813321] Workqueue: kblockd blk_mq_run_work_fn [12622.818572] RIP: 0010:sbitmap_get+0x75/0x190 [12622.823336] Code: 85 80 00 00 00 41 8b 57 08 85 d2 0f 84 b1 00 00 00 45 31 e4 48 63 cd 48 8d 1c 49 48 c1 e3 06 49 03 5f 10 4c 8d 6b 40 83 f0 01 <48> 8b 33 44 89 f2 4c 89 ef 0f b6 c8 e8 fa f3 ff ff 83 f8 ff 75 58 [12622.844290] RSP: 0018:ffffb00a446dbd40 EFLAGS: 00010202 [12622.850120] RAX: 0000000000000001 RBX: 0000000000000300 RCX: 0000000000000004 [12622.858082] RDX: 0000000000000006 RSI: 0000000000000082 RDI: ffffa0b7a2dfe030 [12622.866042] RBP: 0000000000000004 R08: 0000000000000001 R09: ffffa0b742721334 [12622.874003] R10: 0000000000000008 R11: 0000000000000008 R12: 0000000000000000 [12622.881964] R13: 0000000000000340 R14: 0000000000000000 R15: ffffa0b7a2dfe030 [12622.889926] FS: 0000000000000000(0000) GS:ffffa0baafb40000(0000) knlGS:0000000000000000 [12622.898956] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [12622.905367] CR2: 0000000000000300 CR3: 0000000641210001 CR4: 00000000001706e0 [12622.913328] Call Trace: [12622.916055] [12622.918394] scsi_mq_get_budget+0x1a/0x110 [12622.922969] __blk_mq_do_dispatch_sched+0x1d4/0x320 [12622.928404] ? pick_next_task_fair+0x39/0x390 [12622.933268] __blk_mq_sched_dispatch_requests+0xf4/0x140 [12622.939194] blk_mq_sched_dispatch_requests+0x30/0x60 [12622.944829] __blk_mq_run_hw_queue+0x30/0xa0 [12622.949593] process_one_work+0x1e8/0x3c0 [12622.954059] worker_thread+0x50/0x3b0 [12622.958144] ? rescuer_thread+0x370/0x370 [12622.962616] kthread+0x158/0x180 [12622.966218] ? set_kthread_struct+0x40/0x40 [12622.970884] ret_from_fork+0x22/0x30 [12622.974875] [12622.977309] Modules linked in: scsi_debug rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd grace fscache netfs sunrpc dm_multipath intel_rapl_msr intel_rapl_common dell_wmi_descriptor sb_edac rfkill video x86_pkg_temp_thermal intel_powerclamp dcdbas coretemp kvm_intel kvm mgag200 irqbypass i2c_algo_bit rapl drm_kms_helper ipmi_ssif intel_cstate intel_uncore syscopyarea sysfillrect sysimgblt fb_sys_fops pcspkr cec mei_me lpc_ich mei ipmi_si ipmi_devintf ipmi_msghandler acpi_power_meter drm fuse xfs libcrc32c sr_mod cdrom sd_mod t10_pi sg ixgbe ahci libahci crct10dif_pclmul crc32_pclmul crc32c_intel libata megaraid_sas ghash_clmulni_intel tg3 wdat_wdt mdio dca wmi dm_mirror dm_region_hash dm_log dm_mod [last unloaded: scsi_debug] Reported-by: ChanghuiZhong Cc: Christoph Hellwig Cc: "Martin K. Petersen" Cc: Bart Van Assche Cc: linux-scsi@vger.kernel.org Signed-off-by: Ming Lei Link: https://lore.kernel.org/r/20211116014343.610501-1-ming.lei@redhat.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- block/blk-core.c | 4 +++- block/blk-mq.c | 13 +++++++++++++ block/blk-mq.h | 2 ++ block/blk-sysfs.c | 10 ---------- block/genhd.c | 2 ++ 5 files changed, 20 insertions(+), 11 deletions(-) diff --git a/block/blk-core.c b/block/blk-core.c index 12aa8c1da60031..c2d912d0c976c0 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -389,8 +389,10 @@ void blk_cleanup_queue(struct request_queue *q) blk_queue_flag_set(QUEUE_FLAG_DEAD, q); blk_sync_queue(q); - if (queue_is_mq(q)) + if (queue_is_mq(q)) { + blk_mq_cancel_work_sync(q); blk_mq_exit_queue(q); + } /* * In theory, request pool of sched_tags belongs to request queue. diff --git a/block/blk-mq.c b/block/blk-mq.c index c8a9d10f7c18b5..82de39926a9f6e 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -4018,6 +4018,19 @@ unsigned int blk_mq_rq_cpu(struct request *rq) } EXPORT_SYMBOL(blk_mq_rq_cpu); +void blk_mq_cancel_work_sync(struct request_queue *q) +{ + if (queue_is_mq(q)) { + struct blk_mq_hw_ctx *hctx; + int i; + + cancel_delayed_work_sync(&q->requeue_work); + + queue_for_each_hw_ctx(q, hctx, i) + cancel_delayed_work_sync(&hctx->run_work); + } +} + static int __init blk_mq_init(void) { int i; diff --git a/block/blk-mq.h b/block/blk-mq.h index d08779f77a2650..7cdca23b6263d8 100644 --- a/block/blk-mq.h +++ b/block/blk-mq.h @@ -129,6 +129,8 @@ extern int blk_mq_sysfs_register(struct request_queue *q); extern void blk_mq_sysfs_unregister(struct request_queue *q); extern void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx); +void blk_mq_cancel_work_sync(struct request_queue *q); + void blk_mq_release(struct request_queue *q); static inline struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q, diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c index 614d9d47de36b0..4737ec024ee9b6 100644 --- a/block/blk-sysfs.c +++ b/block/blk-sysfs.c @@ -805,16 +805,6 @@ static void blk_release_queue(struct kobject *kobj) blk_free_queue_stats(q->stats); - if (queue_is_mq(q)) { - struct blk_mq_hw_ctx *hctx; - int i; - - cancel_delayed_work_sync(&q->requeue_work); - - queue_for_each_hw_ctx(q, hctx, i) - cancel_delayed_work_sync(&hctx->run_work); - } - blk_exit_queue(q); blk_queue_free_zone_bitmaps(q); diff --git a/block/genhd.c b/block/genhd.c index 6accd0b185e9e9..f091a60dcf1eac 100644 --- a/block/genhd.c +++ b/block/genhd.c @@ -1086,6 +1086,8 @@ static void disk_release(struct device *dev) might_sleep(); WARN_ON_ONCE(disk_live(disk)); + blk_mq_cancel_work_sync(disk->queue); + disk_release_events(disk); kfree(disk->random); xa_destroy(&disk->part_tbl); From db8ed1e61b4922b841b47c989a0000e06acac0fe Mon Sep 17 00:00:00 2001 From: Ming Lei Date: Wed, 17 Nov 2021 19:55:02 +0800 Subject: [PATCH 177/192] block: avoid to quiesce queue in elevator_init_mq commit 245a489e81e13dd55ae46d27becf6d5901eb7828 upstream. elevator_init_mq() is only called before adding disk, when there isn't any FS I/O, only passthrough requests can be queued, so freezing queue plus canceling dispatch work is enough to drain any dispatch activities, then we can avoid synchronize_srcu() in blk_mq_quiesce_queue(). Long boot latency issue can be fixed in case of lots of disks added during booting. Fixes: 737eb78e82d5 ("block: Delay default elevator initialization") Reported-by: yangerkun Cc: Damien Le Moal Signed-off-by: Ming Lei Link: https://lore.kernel.org/r/20211117115502.1600950-1-ming.lei@redhat.com Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- block/elevator.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/block/elevator.c b/block/elevator.c index ff45d8388f4877..cd02ae332c4eb8 100644 --- a/block/elevator.c +++ b/block/elevator.c @@ -694,12 +694,18 @@ void elevator_init_mq(struct request_queue *q) if (!e) return; + /* + * We are called before adding disk, when there isn't any FS I/O, + * so freezing queue plus canceling dispatch work is enough to + * drain any dispatch activities originated from passthrough + * requests, then no need to quiesce queue which may add long boot + * latency, especially when lots of disks are involved. + */ blk_mq_freeze_queue(q); - blk_mq_quiesce_queue(q); + blk_mq_cancel_work_sync(q); err = blk_mq_init_sched(q, e); - blk_mq_unquiesce_queue(q); blk_mq_unfreeze_queue(q); if (err) { From 8c501d9cf1229fe9676da75f3c1f77c61ccffe22 Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Thu, 18 Nov 2021 14:33:23 -0500 Subject: [PATCH 178/192] drm/amdgpu/gfx10: add wraparound gpu counter check for APUs as well commit 244ee398855df2adc7d3ac5702b58424a5f684cc upstream. Apply the same check we do for dGPUs for APUs as well. Acked-by: Luben Tuikov Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c index 16dbe593cba2e6..970d59a21005a7 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c @@ -7729,8 +7729,19 @@ static uint64_t gfx_v10_0_get_gpu_clock_counter(struct amdgpu_device *adev) switch (adev->asic_type) { case CHIP_VANGOGH: case CHIP_YELLOW_CARP: - clock = (uint64_t)RREG32_SOC15(SMUIO, 0, mmGOLDEN_TSC_COUNT_LOWER_Vangogh) | - ((uint64_t)RREG32_SOC15(SMUIO, 0, mmGOLDEN_TSC_COUNT_UPPER_Vangogh) << 32ULL); + preempt_disable(); + clock_hi = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_UPPER_Vangogh); + clock_lo = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_LOWER_Vangogh); + hi_check = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_UPPER_Vangogh); + /* The SMUIO TSC clock frequency is 100MHz, which sets 32-bit carry over + * roughly every 42 seconds. + */ + if (hi_check != clock_hi) { + clock_lo = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_LOWER_Vangogh); + clock_hi = hi_check; + } + preempt_enable(); + clock = clock_lo | (clock_hi << 32ULL); break; default: preempt_disable(); From 4268e8325d63c63c424640e58da0ce6bad6344e0 Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Thu, 18 Nov 2021 14:50:37 -0500 Subject: [PATCH 179/192] drm/amdgpu/gfx9: switch to golden tsc registers for renoir+ commit 53af98c091bc42fd9ec64cfabc40da4e5f3aae93 upstream. Renoir and newer gfx9 APUs have new TSC register that is not part of the gfxoff tile, so it can be read without needing to disable gfx off. Acked-by: Luben Tuikov Signed-off-by: Alex Deucher Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 46 ++++++++++++++++++++------- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c index 025184a556ee6a..55f8dd6e56b48f 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -140,6 +140,11 @@ MODULE_FIRMWARE("amdgpu/aldebaran_rlc.bin"); #define mmTCP_CHAN_STEER_5_ARCT 0x0b0c #define mmTCP_CHAN_STEER_5_ARCT_BASE_IDX 0 +#define mmGOLDEN_TSC_COUNT_UPPER_Renoir 0x0025 +#define mmGOLDEN_TSC_COUNT_UPPER_Renoir_BASE_IDX 1 +#define mmGOLDEN_TSC_COUNT_LOWER_Renoir 0x0026 +#define mmGOLDEN_TSC_COUNT_LOWER_Renoir_BASE_IDX 1 + enum ta_ras_gfx_subblock { /*CPC*/ TA_RAS_BLOCK__GFX_CPC_INDEX_START = 0, @@ -4228,19 +4233,38 @@ static uint64_t gfx_v9_0_kiq_read_clock(struct amdgpu_device *adev) static uint64_t gfx_v9_0_get_gpu_clock_counter(struct amdgpu_device *adev) { - uint64_t clock; + uint64_t clock, clock_lo, clock_hi, hi_check; - amdgpu_gfx_off_ctrl(adev, false); - mutex_lock(&adev->gfx.gpu_clock_mutex); - if (adev->asic_type == CHIP_VEGA10 && amdgpu_sriov_runtime(adev)) { - clock = gfx_v9_0_kiq_read_clock(adev); - } else { - WREG32_SOC15(GC, 0, mmRLC_CAPTURE_GPU_CLOCK_COUNT, 1); - clock = (uint64_t)RREG32_SOC15(GC, 0, mmRLC_GPU_CLOCK_COUNT_LSB) | - ((uint64_t)RREG32_SOC15(GC, 0, mmRLC_GPU_CLOCK_COUNT_MSB) << 32ULL); + switch (adev->asic_type) { + case CHIP_RENOIR: + preempt_disable(); + clock_hi = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_UPPER_Renoir); + clock_lo = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_LOWER_Renoir); + hi_check = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_UPPER_Renoir); + /* The SMUIO TSC clock frequency is 100MHz, which sets 32-bit carry over + * roughly every 42 seconds. + */ + if (hi_check != clock_hi) { + clock_lo = RREG32_SOC15_NO_KIQ(SMUIO, 0, mmGOLDEN_TSC_COUNT_LOWER_Renoir); + clock_hi = hi_check; + } + preempt_enable(); + clock = clock_lo | (clock_hi << 32ULL); + break; + default: + amdgpu_gfx_off_ctrl(adev, false); + mutex_lock(&adev->gfx.gpu_clock_mutex); + if (adev->asic_type == CHIP_VEGA10 && amdgpu_sriov_runtime(adev)) { + clock = gfx_v9_0_kiq_read_clock(adev); + } else { + WREG32_SOC15(GC, 0, mmRLC_CAPTURE_GPU_CLOCK_COUNT, 1); + clock = (uint64_t)RREG32_SOC15(GC, 0, mmRLC_GPU_CLOCK_COUNT_LSB) | + ((uint64_t)RREG32_SOC15(GC, 0, mmRLC_GPU_CLOCK_COUNT_MSB) << 32ULL); + } + mutex_unlock(&adev->gfx.gpu_clock_mutex); + amdgpu_gfx_off_ctrl(adev, true); + break; } - mutex_unlock(&adev->gfx.gpu_clock_mutex); - amdgpu_gfx_off_ctrl(adev, true); return clock; } From a2547651bc896f95a3680a6a0a27401e7c7a1080 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 1 Dec 2021 09:04:57 +0100 Subject: [PATCH 180/192] Linux 5.15.6 Link: https://lore.kernel.org/r/20211129181718.913038547@linuxfoundation.org Tested-by: Shuah Khan Tested-by: Fox Chen Tested-by: Ronald Warsow Tested-by: Florian Fainelli Tested-by: Linux Kernel Functional Testing Tested-by: Jon Hunter Tested-by: Guenter Roeck Tested-by: Justin M. Forbes Signed-off-by: Greg Kroah-Hartman --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 820ccbe7586fe2..0faa6473328168 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 15 -SUBLEVEL = 5 +SUBLEVEL = 6 EXTRAVERSION = NAME = Trick or Treat From e72fdf0d55c80b538ad1522279a316298cd4cac7 Mon Sep 17 00:00:00 2001 From: "Kernel Builder (gloin)" Date: Wed, 1 Dec 2021 04:37:54 -0500 Subject: [PATCH 181/192] base packaging --- debian.master/abi/abiname | 1 + debian.master/abi/amd64/generic | 26131 +++++++++++++++ debian.master/abi/amd64/generic.compiler | 1 + debian.master/abi/amd64/generic.modules | 5998 ++++ debian.master/abi/amd64/generic.retpoline | 1 + debian.master/abi/amd64/lowlatency | 26150 +++++++++++++++ debian.master/abi/amd64/lowlatency.compiler | 1 + debian.master/abi/amd64/lowlatency.modules | 5998 ++++ debian.master/abi/amd64/lowlatency.retpoline | 1 + debian.master/abi/arm64/generic | 26281 ++++++++++++++++ debian.master/abi/arm64/generic-64k | 26277 +++++++++++++++ debian.master/abi/arm64/generic-64k.compiler | 1 + debian.master/abi/arm64/generic-64k.modules | 6866 ++++ debian.master/abi/arm64/generic-64k.retpoline | 1 + debian.master/abi/arm64/generic.compiler | 1 + debian.master/abi/arm64/generic.modules | 6869 ++++ debian.master/abi/arm64/generic.retpoline | 1 + debian.master/abi/armhf/generic | 25133 +++++++++++++++ debian.master/abi/armhf/generic-lpae | 24961 +++++++++++++++ debian.master/abi/armhf/generic-lpae.compiler | 1 + debian.master/abi/armhf/generic-lpae.modules | 6470 ++++ .../abi/armhf/generic-lpae.retpoline | 1 + debian.master/abi/armhf/generic.compiler | 1 + debian.master/abi/armhf/generic.modules | 6612 ++++ debian.master/abi/armhf/generic.retpoline | 1 + debian.master/abi/fwinfo | 1948 ++ debian.master/abi/ppc64el/generic | 24492 ++++++++++++++ debian.master/abi/ppc64el/generic.compiler | 1 + debian.master/abi/ppc64el/generic.modules | 5700 ++++ debian.master/abi/ppc64el/generic.retpoline | 1 + debian.master/abi/s390x/generic | 13731 ++++++++ debian.master/abi/s390x/generic.compiler | 1 + debian.master/abi/s390x/generic.modules | 983 + debian.master/abi/s390x/generic.retpoline | 1 + debian.master/abi/version | 1 + debian.master/changelog | 13440 ++++++++ .../config/amd64/config.common.amd64 | 686 + .../config/amd64/config.flavour.generic | 12 + .../config/amd64/config.flavour.lowlatency | 12 + debian.master/config/annotations | 14501 +++++++++ .../config/arm64/config.common.arm64 | 726 + .../config/arm64/config.flavour.generic | 13 + .../config/arm64/config.flavour.generic-64k | 13 + .../config/armhf/config.common.armhf | 698 + .../config/armhf/config.flavour.generic | 23 + .../config/armhf/config.flavour.generic-lpae | 23 + debian.master/config/config.common.ubuntu | 12765 ++++++++ .../config/ppc64el/config.common.ppc64el | 695 + .../config/ppc64el/config.flavour.generic | 3 + .../config/s390x/config.common.s390x | 619 + .../config/s390x/config.flavour.generic | 3 + debian.master/control.d/flavour-control.stub | 142 + .../control.d/generic.inclusion-list | 298 + debian.master/control.d/linux-doc.stub | 12 + debian.master/control.d/linux-libc-dev.stub | 12 + debian.master/control.d/vars.generic | 6 + debian.master/control.d/vars.generic-64k | 6 + debian.master/control.d/vars.generic-lpae | 6 + debian.master/control.d/vars.lowlatency | 6 + debian.master/control.stub.in | 155 + debian.master/copyright | 29 + debian.master/etc/getabis | 18 + debian.master/etc/kernelconfig | 2 + debian.master/modprobe.d/common.conf | 3 + debian.master/reconstruct | 2 + debian.master/rules.d/amd64.mk | 24 + debian.master/rules.d/arm64.mk | 22 + debian.master/rules.d/armhf.mk | 17 + debian.master/rules.d/hooks.mk | 3 + debian.master/rules.d/i386.mk | 18 + debian.master/rules.d/ppc64el.mk | 19 + debian.master/rules.d/riscv64.mk | 20 + debian.master/rules.d/s390x.mk | 21 + debian.master/rules.d/x32.mk | 13 + debian.master/tracking-bug | 1 + debian.master/variants | 3 + debian/certs/canonical-livepatch-all.pem | 121 + debian/certs/ubuntu-drivers-all.pem | 125 + debian/cloud-tools/hv_get_dhcp_info | 55 + debian/cloud-tools/hv_get_dns_info | 13 + debian/cloud-tools/hv_set_ifconfig | 288 + debian/commit-templates/bumpabi | 3 + debian/commit-templates/config-updates | 15 + debian/commit-templates/external-driver | 20 + debian/commit-templates/missing-modules | 3 + debian/commit-templates/newrelease | 3 + debian/commit-templates/sauce-patch | 40 + debian/commit-templates/upstream-patch | 27 + debian/control.d/flavour-buildinfo.stub | 14 + debian/debian.env | 1 + debian/dkms-versions | 1 + debian/docs/README.inclusion-list | 51 + debian/gbp.conf | 2 + ...cloud-tools-common.hv-fcopy-daemon.service | 14 + ...ux-cloud-tools-common.hv-fcopy-daemon.udev | 1 + ...cloud-tools-common.hv-fcopy-daemon.upstart | 22 + ...x-cloud-tools-common.hv-kvp-daemon.service | 19 + ...inux-cloud-tools-common.hv-kvp-daemon.udev | 1 + ...x-cloud-tools-common.hv-kvp-daemon.upstart | 22 + ...x-cloud-tools-common.hv-vss-daemon.service | 14 + ...inux-cloud-tools-common.hv-vss-daemon.udev | 1 + ...x-cloud-tools-common.hv-vss-daemon.upstart | 22 + ...tools-common.intel-sgx-load-module.service | 13 + .../revoked-certs/canonical-uefi-2012-all.pem | 86 + debian/rules | 227 + debian/rules.d/0-common-vars.mk | 287 + debian/rules.d/1-maintainer.mk | 173 + debian/rules.d/2-binary-arch.mk | 805 + debian/rules.d/3-binary-indep.mk | 232 + debian/rules.d/4-checks.mk | 28 + debian/scripts/abi-check | 2 + debian/scripts/config-check | 2 + debian/scripts/control-create | 40 + debian/scripts/dkms-build | 261 + debian/scripts/dkms-build--nvidia-N | 108 + debian/scripts/dkms-build-configure--zfs | 23 + debian/scripts/file-downloader | 34 + debian/scripts/fix-filenames.c | 80 + debian/scripts/helpers/close | 195 + debian/scripts/helpers/open | 233 + debian/scripts/helpers/rebase | 141 + debian/scripts/link-headers | 42 + debian/scripts/misc/arch-has-odm-enabled.sh | 30 + debian/scripts/misc/final-checks | 92 + debian/scripts/misc/find-missing-sauce.sh | 15 + debian/scripts/misc/fw-to-ihex.sh | 18 + debian/scripts/misc/gen-auto-reconstruct | 84 + debian/scripts/misc/getabis | 211 + debian/scripts/misc/git-ubuntu-log | 166 + debian/scripts/misc/insert-changes | 42 + debian/scripts/misc/insert-mainline-changes | 42 + debian/scripts/misc/insert-ubuntu-changes | 83 + debian/scripts/misc/kernelconfig | 207 + debian/scripts/misc/retag | 34 + debian/scripts/misc/splitconfig.pl | 107 + debian/scripts/misc/tristate.sh | 26 + debian/scripts/misc/update-aufs.sh | 50 + debian/scripts/module-check | 2 + debian/scripts/module-inclusion | 104 + debian/scripts/retpoline-check | 2 + debian/scripts/retpoline-extract | 23 + debian/scripts/retpoline-extract-one | 270 + debian/scripts/sub-flavour | 69 + debian/snapcraft.mk | 11 + debian/source/format | 1 + debian/source/options | 8 + debian/stamps/keep-dir | 1 + debian/templates/extra.postinst.in | 20 + debian/templates/extra.postrm.in | 31 + debian/templates/headers.postinst.in | 15 + debian/templates/image.postinst.in | 62 + debian/templates/image.postrm.in | 40 + debian/templates/image.preinst.in | 22 + debian/templates/image.prerm.in | 18 + debian/tests-build/README | 21 + debian/tests-build/check-aliases | 26 + debian/tests/control | 7 + debian/tests/rebuild | 20 + debian/tests/ubuntu-regression-suite | 45 + debian/tools/generic | 60 + debian/wireguard-modules.ignore | 1 + debian/zfs-modules.ignore | 11 + 162 files changed, 291715 insertions(+) create mode 100644 debian.master/abi/abiname create mode 100644 debian.master/abi/amd64/generic create mode 100644 debian.master/abi/amd64/generic.compiler create mode 100644 debian.master/abi/amd64/generic.modules create mode 100644 debian.master/abi/amd64/generic.retpoline create mode 100644 debian.master/abi/amd64/lowlatency create mode 100644 debian.master/abi/amd64/lowlatency.compiler create mode 100644 debian.master/abi/amd64/lowlatency.modules create mode 100644 debian.master/abi/amd64/lowlatency.retpoline create mode 100644 debian.master/abi/arm64/generic create mode 100644 debian.master/abi/arm64/generic-64k create mode 100644 debian.master/abi/arm64/generic-64k.compiler create mode 100644 debian.master/abi/arm64/generic-64k.modules create mode 100644 debian.master/abi/arm64/generic-64k.retpoline create mode 100644 debian.master/abi/arm64/generic.compiler create mode 100644 debian.master/abi/arm64/generic.modules create mode 100644 debian.master/abi/arm64/generic.retpoline create mode 100644 debian.master/abi/armhf/generic create mode 100644 debian.master/abi/armhf/generic-lpae create mode 100644 debian.master/abi/armhf/generic-lpae.compiler create mode 100644 debian.master/abi/armhf/generic-lpae.modules create mode 100644 debian.master/abi/armhf/generic-lpae.retpoline create mode 100644 debian.master/abi/armhf/generic.compiler create mode 100644 debian.master/abi/armhf/generic.modules create mode 100644 debian.master/abi/armhf/generic.retpoline create mode 100644 debian.master/abi/fwinfo create mode 100644 debian.master/abi/ppc64el/generic create mode 100644 debian.master/abi/ppc64el/generic.compiler create mode 100644 debian.master/abi/ppc64el/generic.modules create mode 100644 debian.master/abi/ppc64el/generic.retpoline create mode 100644 debian.master/abi/s390x/generic create mode 100644 debian.master/abi/s390x/generic.compiler create mode 100644 debian.master/abi/s390x/generic.modules create mode 100644 debian.master/abi/s390x/generic.retpoline create mode 100644 debian.master/abi/version create mode 100644 debian.master/changelog create mode 100644 debian.master/config/amd64/config.common.amd64 create mode 100644 debian.master/config/amd64/config.flavour.generic create mode 100644 debian.master/config/amd64/config.flavour.lowlatency create mode 100644 debian.master/config/annotations create mode 100644 debian.master/config/arm64/config.common.arm64 create mode 100644 debian.master/config/arm64/config.flavour.generic create mode 100644 debian.master/config/arm64/config.flavour.generic-64k create mode 100644 debian.master/config/armhf/config.common.armhf create mode 100644 debian.master/config/armhf/config.flavour.generic create mode 100644 debian.master/config/armhf/config.flavour.generic-lpae create mode 100644 debian.master/config/config.common.ubuntu create mode 100644 debian.master/config/ppc64el/config.common.ppc64el create mode 100644 debian.master/config/ppc64el/config.flavour.generic create mode 100644 debian.master/config/s390x/config.common.s390x create mode 100644 debian.master/config/s390x/config.flavour.generic create mode 100644 debian.master/control.d/flavour-control.stub create mode 100644 debian.master/control.d/generic.inclusion-list create mode 100644 debian.master/control.d/linux-doc.stub create mode 100644 debian.master/control.d/linux-libc-dev.stub create mode 100644 debian.master/control.d/vars.generic create mode 100644 debian.master/control.d/vars.generic-64k create mode 100644 debian.master/control.d/vars.generic-lpae create mode 100644 debian.master/control.d/vars.lowlatency create mode 100644 debian.master/control.stub.in create mode 100644 debian.master/copyright create mode 100644 debian.master/etc/getabis create mode 100644 debian.master/etc/kernelconfig create mode 100644 debian.master/modprobe.d/common.conf create mode 100755 debian.master/reconstruct create mode 100644 debian.master/rules.d/amd64.mk create mode 100644 debian.master/rules.d/arm64.mk create mode 100644 debian.master/rules.d/armhf.mk create mode 100644 debian.master/rules.d/hooks.mk create mode 100644 debian.master/rules.d/i386.mk create mode 100644 debian.master/rules.d/ppc64el.mk create mode 100644 debian.master/rules.d/riscv64.mk create mode 100644 debian.master/rules.d/s390x.mk create mode 100644 debian.master/rules.d/x32.mk create mode 100644 debian.master/tracking-bug create mode 100644 debian.master/variants create mode 100644 debian/certs/canonical-livepatch-all.pem create mode 100644 debian/certs/ubuntu-drivers-all.pem create mode 100755 debian/cloud-tools/hv_get_dhcp_info create mode 100755 debian/cloud-tools/hv_get_dns_info create mode 100755 debian/cloud-tools/hv_set_ifconfig create mode 100644 debian/commit-templates/bumpabi create mode 100644 debian/commit-templates/config-updates create mode 100644 debian/commit-templates/external-driver create mode 100644 debian/commit-templates/missing-modules create mode 100644 debian/commit-templates/newrelease create mode 100644 debian/commit-templates/sauce-patch create mode 100644 debian/commit-templates/upstream-patch create mode 100644 debian/control.d/flavour-buildinfo.stub create mode 100644 debian/debian.env create mode 100644 debian/dkms-versions create mode 100644 debian/docs/README.inclusion-list create mode 100644 debian/gbp.conf create mode 100644 debian/linux-cloud-tools-common.hv-fcopy-daemon.service create mode 100644 debian/linux-cloud-tools-common.hv-fcopy-daemon.udev create mode 100644 debian/linux-cloud-tools-common.hv-fcopy-daemon.upstart create mode 100644 debian/linux-cloud-tools-common.hv-kvp-daemon.service create mode 100644 debian/linux-cloud-tools-common.hv-kvp-daemon.udev create mode 100644 debian/linux-cloud-tools-common.hv-kvp-daemon.upstart create mode 100644 debian/linux-cloud-tools-common.hv-vss-daemon.service create mode 100644 debian/linux-cloud-tools-common.hv-vss-daemon.udev create mode 100644 debian/linux-cloud-tools-common.hv-vss-daemon.upstart create mode 100644 debian/linux-cloud-tools-common.intel-sgx-load-module.service create mode 100644 debian/revoked-certs/canonical-uefi-2012-all.pem create mode 100755 debian/rules create mode 100644 debian/rules.d/0-common-vars.mk create mode 100644 debian/rules.d/1-maintainer.mk create mode 100644 debian/rules.d/2-binary-arch.mk create mode 100644 debian/rules.d/3-binary-indep.mk create mode 100644 debian/rules.d/4-checks.mk create mode 100755 debian/scripts/abi-check create mode 100755 debian/scripts/config-check create mode 100755 debian/scripts/control-create create mode 100755 debian/scripts/dkms-build create mode 100755 debian/scripts/dkms-build--nvidia-N create mode 100644 debian/scripts/dkms-build-configure--zfs create mode 100755 debian/scripts/file-downloader create mode 100644 debian/scripts/fix-filenames.c create mode 100755 debian/scripts/helpers/close create mode 100755 debian/scripts/helpers/open create mode 100755 debian/scripts/helpers/rebase create mode 100755 debian/scripts/link-headers create mode 100755 debian/scripts/misc/arch-has-odm-enabled.sh create mode 100755 debian/scripts/misc/final-checks create mode 100755 debian/scripts/misc/find-missing-sauce.sh create mode 100755 debian/scripts/misc/fw-to-ihex.sh create mode 100755 debian/scripts/misc/gen-auto-reconstruct create mode 100755 debian/scripts/misc/getabis create mode 100755 debian/scripts/misc/git-ubuntu-log create mode 100755 debian/scripts/misc/insert-changes create mode 100755 debian/scripts/misc/insert-mainline-changes create mode 100755 debian/scripts/misc/insert-ubuntu-changes create mode 100755 debian/scripts/misc/kernelconfig create mode 100755 debian/scripts/misc/retag create mode 100755 debian/scripts/misc/splitconfig.pl create mode 100755 debian/scripts/misc/tristate.sh create mode 100755 debian/scripts/misc/update-aufs.sh create mode 100755 debian/scripts/module-check create mode 100755 debian/scripts/module-inclusion create mode 100755 debian/scripts/retpoline-check create mode 100755 debian/scripts/retpoline-extract create mode 100755 debian/scripts/retpoline-extract-one create mode 100644 debian/scripts/sub-flavour create mode 100644 debian/snapcraft.mk create mode 100644 debian/source/format create mode 100644 debian/source/options create mode 100644 debian/stamps/keep-dir create mode 100755 debian/templates/extra.postinst.in create mode 100755 debian/templates/extra.postrm.in create mode 100755 debian/templates/headers.postinst.in create mode 100755 debian/templates/image.postinst.in create mode 100755 debian/templates/image.postrm.in create mode 100755 debian/templates/image.preinst.in create mode 100755 debian/templates/image.prerm.in create mode 100644 debian/tests-build/README create mode 100755 debian/tests-build/check-aliases create mode 100644 debian/tests/control create mode 100755 debian/tests/rebuild create mode 100755 debian/tests/ubuntu-regression-suite create mode 100644 debian/tools/generic create mode 100644 debian/wireguard-modules.ignore create mode 100644 debian/zfs-modules.ignore diff --git a/debian.master/abi/abiname b/debian.master/abi/abiname new file mode 100644 index 00000000000000..48082f72f087ce --- /dev/null +++ b/debian.master/abi/abiname @@ -0,0 +1 @@ +12 diff --git a/debian.master/abi/amd64/generic b/debian.master/abi/amd64/generic new file mode 100644 index 00000000000000..9171fb20b804a0 --- /dev/null +++ b/debian.master/abi/amd64/generic @@ -0,0 +1,26131 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4cd667d3 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7a54da80 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xc8ebfead crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x1620d197 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1bfcbbf6 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2789525a is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4c49d2bd cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x533007d7 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5748ba49 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57bd316a cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9c64e84f __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab93c038 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf2fc5ce devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbe837098 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc7a550a0 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd3022572 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc970b6f devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1a8daaa cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe7423c26 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe7aea783 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xff6ac489 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/x86/crypto/blake2s-x86_64 0x23aa18fe blake2s_compress_arch +EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0xc832c670 curve25519_arch +EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xd9ec23eb poly1305_update_arch +EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xe1df0e1b poly1305_init_arch +EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xfaeb41b2 poly1305_final_arch +EXPORT_SYMBOL arch/x86/kvm/kvm 0x8079c7b2 kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x3a8db16c crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x3e1f7db1 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x78c20f52 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xa439872c crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xb6efc104 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xe979a47c crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x45930a9e crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x5dfdbcc3 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xa49399b7 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x6728349b sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x290837a1 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x599f650f crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x869a41fc crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x18dc43dd acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xd5ec6f2b acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x415de0ab suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xd584f91c uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x37aa65d4 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x82bdd7ce bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x06f8a675 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x0931e54e paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x11a111d9 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x14df3560 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x69374e5b pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xaffccc2c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb0ee264f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb96c0025 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc39efd02 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xe4de3d84 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xf2ed71c5 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xf8a3c084 paride_unregister +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x2c5a0cb6 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x2b864a27 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x32d78428 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x102fb9b2 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x46c41546 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaedebded ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe04f849c ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x38f45677 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x64f9b75c st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9dd0ff60 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaa2d2d80 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x23c4b069 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa4fec1a9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe3afb6bf xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3ee37960 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdd0c2118 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf8009cc0 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x14112fa9 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x471114ce atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x64790aff atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x47d3c97f psp_check_tee_status +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x065f5a74 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a743e44 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c1b789b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x21b080cb fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x232146cd fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a25d5ac fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3486f996 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4663ea44 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d7a4849 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x55b5c79e fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5ec546d5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x612ca252 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x662fe50e fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x706310a5 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a633a3b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x80bf2b8e fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x81470844 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86c51877 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95f75f86 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc489ee8d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd198d96a fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd4be128e fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8000afe fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8182bd6 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf485ac7e fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe635672 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/fpga/dfl 0x1a34f9b7 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x1b5b6b2c __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000804d8 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0012c2b7 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00380fb5 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bddf6f drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0242c64c drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x039e047e drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x040dac0d drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ae8541 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0504fa58 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056a2110 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ceb3e6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x064bd827 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0746e3e2 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0827bb87 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088014f2 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09124b74 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c3d30c1 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cd56d12 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ecb8e93 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6a6d26 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f980906 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11de761c drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123f6673 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x135fffae drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13966434 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1454539c drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c1065d drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16a2c5e2 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a797f0 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3eafce drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa56a07 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1af120ec drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b3ec8da drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b4e2cd3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b7ff865 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d02af8b drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da54129 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e352985 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x226b3bff drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229a141e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25550121 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c9c7d0 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e99e98 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260e830d drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2656d9b6 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27bfb69d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a86416d drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db69792 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e0710fd drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4ebff3 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e6724db drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f65c581 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9d51b5 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c0b9fb drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326caa31 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d89235 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33076224 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3312ea4b __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a96f95 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3453f432 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34892d43 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34bec5a9 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35878098 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x367fcaf5 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a95f6e drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a7af4e drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38c8c6a8 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f6bccf drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x391c5614 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3972c660 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39aae1a4 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c5ab5b drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a1e036c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b17f68b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6f8625 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9cfe46 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4109a11f drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41efffbf drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42351b25 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42408759 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f20e7f drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45937563 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46ce39e9 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a08842 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483ce239 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49fba597 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a01902b drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a620cd8 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9438a0 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae45e74 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b51eaa8 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3780bb drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d449d32 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f227cc1 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6560cf drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f851316 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x516fd93f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519f702a drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b4e5c7 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53131500 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549c2339 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54fee0d1 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55592699 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ddf7c3 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57015c3b drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57ab6e9e drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d14048 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585ca6ae drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5870fe04 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5902789f drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598a6819 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a24665f drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa475fa drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0061e8 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d869b2e drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9c4c9b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db6ad26 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f05c42c drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb6db83 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd12eec drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff7da62 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60867e04 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x612a6f35 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x616c5cab drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621b0b7a drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622970aa drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x628b81ba drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x630f0346 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b0cae2 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ff915f drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6504d7de drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d341b1 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6694d20c drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67156f62 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x676ff55d drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692d5611 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6952fe0e drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b26af8 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1236f6 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6af1c1bf drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b01b87e drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ebe6b11 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed38b11 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700a4ee3 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x705ea079 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70be7ef1 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7170fbeb drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71bb3c79 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d0fdcd drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x728c7873 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x739c69fc drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73df7134 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a03df7 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74e2a1de drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ab11d1 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75fafff7 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7811a1a1 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78287d1f drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x784a5cdc drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7973d07c drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a6e99f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d220a6 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a2f8b3c drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5aaa17 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8ca2d9 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0d6191 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d580907 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dba1c23 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e81bc1d drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e93b90a drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2d997f drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbf05c2 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x805b2195 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824a7cff drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x830df372 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x833150fc drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b94d0c drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83fb7563 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840c0ed9 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84d3dc4d drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85508c09 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85542a61 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a3af84 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85abb9fe drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f969f7 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8705c1ff drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x883b66d2 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b0f573 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89321456 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89ac1274 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89ac6f5d drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a86b0c7 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa96a46 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c336bef drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d036014 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d06e3ca drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e87a649 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ebe0fe6 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed743eb drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b7eb67 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9169af28 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91d23769 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92397035 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9332fed6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93475477 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93a164b8 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f561b4 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9424dfa6 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x960a4d89 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x993cec8e drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9947adde drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7f3e7e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a87e229 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad7d901 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1647b8 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3520ec drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c4ae159 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ceb6ce0 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d977419 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9db0a303 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e4d63bf drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa088f87c drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17c1f5f drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1fc193f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e7971d drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa32e3461 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33b89b4 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3760f0d drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d03405 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f7fa13 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5c062e1 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa60b49f2 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa654f803 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e6b16a drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa84f2faf drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a231f8 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa321e99 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac3b04f8 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca847e2 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbb596e drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad0073ff drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3cd3e3 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf8b27d9 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb01e1b31 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb02b1e72 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb096e7c5 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18506ed drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b78142 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e44b44 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2306ebd drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3993d18 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b82e6b drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb410ef81 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb448cf5a drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb49a97e6 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb54a77ae drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e811e7 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f05e1e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68ac536 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb708d7b4 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72db8fa drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72dcde4 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb737038e drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7859a43 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb815f102 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba60abb8 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbacdc9b0 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbee458e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc37f124 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc7d7537 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdb7ed4 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc0b731 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0217a29 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc065187d drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0904761 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1523dc1 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a35f30 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d8c31b drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22823b9 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2be718e drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc316b8bd drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc362fe8f drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c2e825 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc640497e drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6947a4e drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72fc5ff drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc874a9f6 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8adf11f drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9fc949a drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3d9822 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca826426 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb193491 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc66fbaf drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbdb34e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd6c7c1c drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce584507 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceae8056 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcecffbe8 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04f3219 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd078fe48 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd17138d1 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21d2ac1 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd231b2fd drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3097d17 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3547bb9 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd425c00d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42bea59 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d9ef3b drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57f2b9d drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd608cea9 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88f7875 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e9787f drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9688205 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcca151e drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf7e48b drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd388c75 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde407333 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde421fa9 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde5c5916 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdecb0be6 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf99e548 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa37b68 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe16699a3 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe16d7a54 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1cdc6e5 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ed0128 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22b0161 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe240a699 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e1399b drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3108bd7 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe53fe7c8 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe558d5e5 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe58b7dc4 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b42e1a drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c03bef drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe690d157 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe805aa86 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe850a8cb drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe908584a drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4fbd1e __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec80500b drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecbcfe24 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0d635c drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed727831 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee695d80 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee99a294 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb82b5b drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeffe9b34 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a1e8bb drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14fd9d9 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b15892 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf297eb22 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a9ae00 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ca842d drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57f9dbf drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6281e69 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a51ab6 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ce97d9 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7259999 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8416750 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaebce11 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb26ee45 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb304dae __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf331ed drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf8204e drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfce63007 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd671341 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff07c4bd drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff24cb1c drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6444f8 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x009f7490 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0223388a drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03e9ef2a drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04bc1ed7 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05dab9f3 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0605db57 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0636b997 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x086da9f5 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a24ddf drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a3b25ab drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b86dfa3 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bca9910 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c305501 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1a2f38 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d778542 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e8d7186 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe322a4 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13ab9e55 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13c8ed56 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1497f19f drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15570785 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15b95f9d drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17e6e1f7 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1913508d drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x192bd707 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bc7f4a0 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cb0d9ee drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ceb4023 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d19217d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1df40dde drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f26d915 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f43ca4d drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f543838 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fcd43a7 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fdd7280 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22041595 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22271de6 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x222fa8ce drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22ab7634 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x232aa52c drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2417d9e6 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x242d4041 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24c80050 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26154217 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26a96349 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299b32ca drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aec3cff __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b952ae9 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d318c6d drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dcbd679 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x317ba9e7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31c39221 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x326cf1fd drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33818124 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34f52868 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3574509a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3695b5b9 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36a04e1b drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3755fc17 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39a9b8ff drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39bd871c __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b8217f9 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ba6c5c3 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bf07e76 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bfff070 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c023614 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c2cbddf drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c46bd57 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c7ceaec drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d7ab137 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e755fa9 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x408a4637 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c8ab3d drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4406a1c8 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b01346 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454573ca drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x455d06b8 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a66582 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45f55469 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4925791b drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4946733c drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c07403a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc8478e drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d11fdef drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fed47c4 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50462907 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x523f1313 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53609bbe drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x541c5d42 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54207252 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543123e1 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b2776a drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56981382 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5698f0be drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56dbd411 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56ef7227 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x596ce2ac drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59cec3c7 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5af9b9a8 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c6467e5 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d848a06 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ef06c02 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6051f1d2 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60874db1 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x623ec65b drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62529176 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65de079d drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66feb1a4 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67cb6940 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67f89149 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688ac347 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x691a703d drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69ac9ec0 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7ca97d drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b7bf1eb drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c0df6b6 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d6a334b drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6df97723 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e934d02 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ed6229d drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70062472 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70e6109a drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71274261 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71345c4e drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71de308d drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72268ee3 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a84613 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72ed60f6 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x740208c7 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74b1b9dc __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x758e177a drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76e2a03b drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7821dc66 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a78f297 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b61b812 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7da04264 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc9944c drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df96c9c drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f3f4059 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f5fdd4b drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x804b3273 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80f191a8 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x834093c2 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83bd6566 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e86c39 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8658356a drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86f1dd5b drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f0f2d8 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a3d5b12 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c3f9019 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cb6df48 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ccc0360 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e14ebef drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f3ef75f drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x911c196a drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9131cbcb drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x921dff38 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925fe4a4 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x934927f6 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d9c697 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x965b6e76 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96a15079 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98a455a2 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99013b05 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x992f39fb drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x996332b6 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99ab1e3d __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a34bcf6 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a4d7093 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bb13785 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cd58ee1 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ce349ed drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d2c67b9 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dba8a59 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eae7293 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb57d82 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0359271 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa17a5910 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa28782e9 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3009a3b drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3145c57 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa32a7e56 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa46fdefa drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4aaaa0b drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa594ed05 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa72c83ce __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab038ff0 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6d761d drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafad04af drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafc5a775 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1b6ca5e drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4aff579 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5322f1e drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb53fcea5 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5a48b1d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6869451 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb895272e drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9407616 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbab18fe1 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbace541d drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaecec70 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcbc0071 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfda1fff drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1908fa4 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc23f9989 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3da9630 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5f867ba drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6149925 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6e3d1f0 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc76fea32 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7873843 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84ceed5 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd13d0b47 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a92167 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1f51391 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd23e9ce1 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3c4f608 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3f3fb7c drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3fc7482 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd561f4f8 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73eb286 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf6bbfa drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb69677a drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbddcbbf drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd46e22c __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddf8da0b drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfca85c8 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe175a961 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2f580e7 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3105436 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe31740b5 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3750c59 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe37f0574 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeac6f45a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef23ad83 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef98fa68 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd8975a drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefdc5a14 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf255d2f6 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3829eb7 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4c70e1c drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4e83752 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f917ff drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9b2f72a drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9c80941 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9f0f7bb drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9586c1 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf1ff3a drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb34fb5e drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb9b5489 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf90459 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcf67129 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12b609 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe448c93 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7736eb __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff5231ea drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x19b703d3 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x360163f9 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37e96b80 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e0bb0ab mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x46cf0732 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b731b14 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6f68f557 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78c45185 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x81908be5 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbb34bc1c mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc624d1ab mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc84dbf43 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcfda8398 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6de7c46 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd78bb1ae mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd83fbe2b mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe880ac06 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x269c24a9 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x27ae1e3e drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7d0a358b drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc2400b41 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xfd2ddd97 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x22ddece8 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x385a216d drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x55f7a079 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5cfa4ddc drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x63895358 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f98d0f7 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x86bfc1f0 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa3d9153e drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc67b2193 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc9d7caff drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd36399b1 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xee738bf8 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xef19548d drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf2d85c87 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf5daa0f9 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfdad82e9 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0449f06b drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d00d6c5 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1023de54 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x10acbda0 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x14362082 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x15e2481d drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b87b9c3 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1bd6902f drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ea28282 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22b03b29 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ddba60a drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ccca9a0 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x487f91f0 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f312a74 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x65fa63d5 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x684a69a8 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9a730580 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcc87c4c9 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf85c481 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd07bf7c1 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd42db204 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe8970ae3 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf12e4ce9 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfd7021c7 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a05acce ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10b58775 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20358b4a ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25c2d1f6 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x361d6c0a ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3db8bb2f ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40ec4720 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44de4516 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x456bd4f7 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4831466f ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c0be30d ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5225769b ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56531d08 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x576c2541 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x593078f2 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5efc1998 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67abf2be ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70d7743e ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71d9645d ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76b9f66d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bf3cf14 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c4ab78d ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e6c66c1 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fe21aa3 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8120463e ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bb15c58 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9eca606f ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ee7e3d5 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f3cbb91 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa157736e ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6b415cb ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa737c291 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaed3c351 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb09303b0 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0fcaf59 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb51f2f53 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6744cd6 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb713eeca ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9567f61 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc4a58dc ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd3c4ce7 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf26cc55 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2c80ddc ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc57fcb30 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccf33ce6 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2ea6274 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd727abf8 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf641630 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe44465e6 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4a8e545 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7f2fd16 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb412e52 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec4c6df0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeff1b324 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf36ccbf9 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb274168 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfdef060a ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x2e9d317b ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x8d2266c3 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xee38cb3d ttm_mem_glob +EXPORT_SYMBOL drivers/hid/hid 0xc66c2313 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x08546b00 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0940b2ad ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0e72ff78 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x13890573 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x233b503a ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x29dd9157 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2ed19ecb ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2f56f0e8 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x41286985 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4217fedb ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4f4c6a7f ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5018dfbe ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5704bba8 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5e3b7c58 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x612bc578 ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x67f9bf41 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6840a97c ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x73c9691f ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x77b02c39 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7dc6fad5 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8122cd44 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8adfc3f4 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8bb6ee8c ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x91511f2d ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x94fb6a23 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9a6eda8d ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9a71ab01 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9b40f0a8 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xacefc943 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb107316c ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbcde573b ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbe93b8b1 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcfc9f991 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd8d4f2cf ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd95d1b1d ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe69bc0ab ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe71a7235 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe9e5c015 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef9abaee ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf23ca8ef ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xff571bc5 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xffd6b76b ishtp_send_resume +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4f3c86f2 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfc3bba6b vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xf442db43 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x703e7596 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x756c7a69 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf78b12eb i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2ebbda37 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb61c738c i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x834ec94c amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xc4ceaf27 bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xe3b5430d bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf9a13681 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x05dce170 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x2639d2ed kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc9a4f1e5 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x118e2c13 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b411403 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1df39d55 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x25a2ee64 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49b26de8 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4e2a9236 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4fd8e9dc mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x82145b28 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x88286434 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a7be0ba mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x919cae3a mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9dc9291c mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa9e8d9f7 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb71bdd73 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea02d3f4 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf17dc471 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x42daab88 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x83c8fb0d st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xf9b47638 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x733b63ef iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9138d3df iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0c46e4aa iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd1164e5c iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x064a1868 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x4c40ac4f scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x7f35d84e scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xc228b302 scd30_suspend +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x14e58730 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3a2d2e5e ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3fc9f120 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7414f11f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x74c88aa3 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9d75be38 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaf80cd9c ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe6cc13f9 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf2a49aef ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x842ecdf4 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xaa1cb725 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbb0b7276 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xed686e8d ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfd9b1c47 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0c464016 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4da28b51 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x66c5d444 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0447e0af st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1f5461d9 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2b119dd7 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3d69a90e st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3f99d808 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x424f638f st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b0087a1 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8d455e5f st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8f2239c6 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa3d89357 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe744657 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8ca1f4e st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd2b19582 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd3b12f54 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd6060dc2 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe6c5592e st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf696e163 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd1dac4b st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd856e1cc st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x234b4619 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x6882a765 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9a858110 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xbe7764e7 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0d58c685 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc1fe708b st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc87cd532 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x5fcd0b9f hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xdf603548 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9c6b1b1c adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xbd82a84e adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x0d2d04a2 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xe2e2ba25 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x27739b00 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xdaa8b24f st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x04a5bf61 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x17a66d26 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x1d809592 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x2b05b58b iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2f467aa6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x472334b3 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x584e9078 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5cbd7cb6 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5deb0baa iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x6301263c iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x6ac90570 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x7675a05f iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x771cb9f0 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x7837a916 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x805d0eb6 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x963e81a4 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9662b30f __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xa51a1f07 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xae022d7a iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc081c7af iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc8d7ed56 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xd7d2a519 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdaf34e93 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x9db544fb iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2a07a91b iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa228a1e7 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa3625a29 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xebc25e7f iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x129bd401 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x1fa89bf3 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x58e60687 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6ce5a33e iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8747df25 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdda59987 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xa602d66e st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xab7e05c3 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x29300aef bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x37d8643b bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xeaeacfba bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xfcf00b61 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2e176fb0 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x70c12c6d hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa9bb3639 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc6fecaca hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x48282381 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x59881e93 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xed04f9c8 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x68a18846 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x802f42a1 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x82275524 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x99f45dc7 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x9a3111d1 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xab50f9f2 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xba6e204a st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe7b22e6b st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xffd05c76 st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06d70fe5 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13be6e7c ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x353b689a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4ab4fd0b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6c4146f6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x750d5570 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x777f67eb ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x78dd3bf6 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a2d13a4 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bc27b41 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa720a25 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb31f9673 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcba966ae ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd33f43ea ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe90162cb ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03bd95fa rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0503bcf4 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x055b13ef __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05bc7207 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05be2261 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x066000a4 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06ba3fdd rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0800b1c9 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x097dc561 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c4d0e99 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e14b3fd ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ec85b06 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbabef5 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ff5cb07 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13189f0c ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147423f9 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x153eda57 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f01ebf ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1929ac35 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19455e72 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aabee14 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bbabc4f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c3e7e6c rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d19fd8b rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x203669cb _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20f0e592 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a81f3b rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24f16796 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x255613da rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b14462 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28393000 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x284085a8 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28f56a08 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29691a98 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c482582 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2defd379 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30d9efb6 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30e07d9c ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3113a699 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f8bc0c rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36b91c07 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37926b1c ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37aa6f97 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ad3552 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a5ece23 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a6d4107 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b575e77 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b58a323 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc33002 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c384c1e ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e347703 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x444ebc61 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45a212c2 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47423204 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48164fc2 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4925cb3c ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b226868 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ba5d765 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bea6c49 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fe19e77 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53586c7d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54e33597 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55dfd1a4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5674ffd5 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58eea27d ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x597692d0 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c19f70d ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cc4a8cc ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6093b8d7 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61f391e3 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x635ec917 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63ba1d7c ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65a8b405 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65c51ebb rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66775f09 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6922d5e6 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69e39586 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a670711 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x711851d7 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c33eb4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71ca5b81 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x723ac1db ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72b65b00 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d1019a rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7792a314 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d1fc18 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79f584d3 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aca92bd ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad40166 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c872280 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cb15115 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d231bba ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da03122 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ee3a617 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ff4fe4c rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81fda8a2 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82fa133e ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x830ce1bb ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85344f4e ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88fcc0fd ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8965889b ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89ee58d4 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b151fa8 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90f9ff56 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x941add4b ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x941eb64b ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96993e06 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98237664 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98905910 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99372009 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aaefdba ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c3baedd ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0a9ebc6 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f4c2d2 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa33a7750 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5d4bf16 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5f4c59f rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5fd94de ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6cbd95f rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8134cd9 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8236f17 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac357c3b ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadd440f8 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae509cdb rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaef4e0a1 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa6d4dc ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafe1a590 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb08688b9 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0e54c2a ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2848d93 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5ee87c1 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8ecbd9e ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9f0aba0 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba246557 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc449d5e rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd4ab7e1 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf6618a4 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc074bf5c rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc11e433c rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc173cf61 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc264d372 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b06dfc ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc45cfc03 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc712fee1 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7c1d26c ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc92759a7 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcac7a0a9 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb76ad06 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc26b04f ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccb92524 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0980062 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4261705 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd432842f ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4da93aa __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5673926 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd657132e ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6606685 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6b8ebac rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e05e63 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa2ad33 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbc45c70 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde2984c5 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1d7dac7 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2a322b9 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe43f0ed4 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe467d40a ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5ad6066 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8ba9a12 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe93de76b rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb9ceaf6 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed46e57e ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed4b06f7 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd58538 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede4f12a rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeedc4814 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01344f3 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf310c2e0 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf318e7b5 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf37b0664 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5846567 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5fbf51d ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf93334b4 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96bb8fc rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb41c52e rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc8306ab ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdac7f14 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00d66cdf uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x011833c2 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b3962e9 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15ba07ca ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23aacc9e ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x245b91cb ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x271d29f5 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29243964 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3777a65f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43b96202 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4537a490 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47a580b4 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4829d813 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b464d0d ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ba0b160 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7baa8acf flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7bb0056d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa7cb962b ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa98d4d45 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb89648d6 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb922b2ef uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc26b7bbd flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8bdcd1f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce2aa3f4 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7f446e7 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbbc7376 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0ceee5d _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xede845d9 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf16ba856 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3c66a2a uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf45bdd9f uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff2a74d7 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0245cc75 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x09b7b612 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f50d37f iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4320cdd9 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5f26b480 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x73ca48b2 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb9554d79 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb29010e iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22175176 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33fa2d4a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a23e3ad rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x433d6b85 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47e5909f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5768a9a2 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x620dc3c6 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b4b86d1 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e24aca9 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71870913 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73fdcc89 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74928897 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74e3f1e9 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80770488 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x813e99e0 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c51dc92 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96d0c8fe rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa26a348e rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa602000 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3edb39a rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0319251 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc6943773 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc32cfd0 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce77a4d9 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd59f81cf rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd80649b3 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcc9d35d rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde622894 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf09a9f6 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf659e6d rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe71b7b04 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeba8c45a rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf47694da rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa7d1da6 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x067ecb44 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x06e69fdd rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1c927fb4 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x218ba762 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x27b54053 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x36f37cac rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x374856bd rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x45753566 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x47e29859 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5e21d224 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x65781b2e rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6bd7e2fa rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x78bcacc4 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7bc22ad0 rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7db43e0b rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x82d2a818 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa2e09497 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa530a5c5 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa92764c3 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaaf896ad rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb0ad5969 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb2e15e89 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb91a2e8d rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbc9f766e rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbe8d0e2a rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbea2ee6d rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc5fa3d2b rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc843f607 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf73b8c18 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x85c5c107 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x91c499e6 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9b1b020d rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xacd6ef0c rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb782dd3c rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xebaa3ed7 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf60075a8 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1330a964 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x33c8b785 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf5764211 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb1b5f72 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2df1377d rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x70405674 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7b120b2b rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa0865c85 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa1c01817 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe7e72513 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x18254490 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x635de85d gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7883f1b1 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x84c78ffb gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9c99709c gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbd53ddc4 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc3b6c1a9 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd1cbfea6 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xec875cbf __gameport_register_driver +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x38ddf600 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8c87baa2 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfa1f59b3 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x32042bb5 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x123efd2a ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x13a2b4be ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1755357f ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x279aa514 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x8fdb7e29 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2bae737c sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x58d91829 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x70df7e48 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fe3c5c9 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc47b7f73 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x716d642a ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x8a13951b ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x3a7d2d6d amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x665ac454 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x8b4e08c4 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x9cb09540 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xe7be3679 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf5ac267c amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x35926116 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5e85fb65 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8d96e804 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x90aa8ae2 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9c877422 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x15323018 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x57b7ee7b mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7af8e94b mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc5a7ae05 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0099e414 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdc46dcf1 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06633501 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x08522f65 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bf1179e queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e7c1177 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28eff2e3 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x367b4faf mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b3243d2 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x425116d9 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x543f2f76 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5492a799 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x69196120 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cc5d3b8 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6df513bd mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74377c58 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83639aee dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x88bc317a mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2d079e0 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa5b684d5 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb048e84d bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc62ba029 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd06e5d15 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdad5ee5a bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9bd1486 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x159ddd5a ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc5af0c4c ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x0eb7c7b8 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x31a88358 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x4cff7677 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x59865dbe dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x459ac9f5 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4a6e9ed1 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9fea87ca dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaa577505 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc7e76fc5 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdc5db24a dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x0315c522 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x39769dc3 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0808c185 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x26917971 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b95a012 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x58a5e7f4 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x655afdc8 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7d15a58f flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x83903d33 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8f0d6c1b flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbb23f043 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3f435c7 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc12a859 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xda8b636e flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfcca5a72 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x09b202a7 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x137202c8 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x44905dc2 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcbb3cd79 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x4574149a cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x64f4ba51 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xeb439538 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x3b713a0d vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xb20d1dfe vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x49aa6a23 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5e0aebac vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7e324db3 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9b4ab8c3 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf087e9a3 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfe3539e6 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xa54ba540 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24634f67 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2fabb4b2 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3360c8e6 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34e0c924 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d7c564 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a7a708d dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4eee7a9b dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x585883ea dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5eb8a8fa dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x60348847 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68f5186f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6db2b218 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e9f2e27 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f063c2d dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71c88a23 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x799107b3 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7be94ed5 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8229c176 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9eb6cd48 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9c35b45 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab4e873f dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfab7cc3 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee4b9967 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf956f867 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x30d47449 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xcec263ad atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x05af4740 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f258e77 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x42e2888a au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x54c46a25 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5b7c044a au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8cc9b9a2 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x99e20f16 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd60f33f1 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xff928ed3 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7b61f084 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xac535c38 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x7a37f1af cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x271c550e cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xde396600 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5d1d48bb cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x73ce540b cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xdac9908d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xb79a7285 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x03c4ad5e cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x923ff440 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x99e1f21b cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0115ff28 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd4359eaa cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x130cc67e cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x145f628a dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x149842c3 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x24e641e2 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2f533d64 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x739ac4d4 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x130ac02a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30177559 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x322ea3a3 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32da600c dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x50fa93df dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x85756955 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a5902b0 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa76c8d37 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xac6f1ddb dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc38c7dd3 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd6d590c9 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3201e4d dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeda89131 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf65b9458 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf6bd0781 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x41f82016 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0ffe6db9 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x51c4d561 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9e9896af dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9f3772c4 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbfb55760 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd7037ce3 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x02682080 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x03f01009 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0c16c4bf dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa4f7e0e6 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x376209e0 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x4c6859b3 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x12319774 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1951e427 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x35268804 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6748d149 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x72fcd721 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x74ca88c7 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x874f80d7 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x98bd0965 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc64a3e64 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc8f42d8f dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd2595818 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe51c9229 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe8aeb2f4 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x29936125 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6820330e dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x78edce0a dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xac0e17d3 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfdc41685 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5acea050 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xe2a4b58f drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x21cdad9d drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xfc2c88f5 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xa2235ce3 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0b264980 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa0e86de8 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa84e4c77 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xaf6aa985 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x28bbb475 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7f666dec helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb5578301 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2c7b1931 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xbfe42ed6 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x2f9f0537 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9fc85143 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x894616c9 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x85b442fd l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x1edf3c2c lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x57bca353 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xa0260f17 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x9e9c0043 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x309f7ad5 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc620869b lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xf060b078 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x01094064 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa8752638 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe0e1fd11 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x7d7d5b48 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x09e10a60 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb91b3d36 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xd29598b2 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xa9ec81b5 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd9b16095 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x140fcab6 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xfec6eeab mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xdc71ea8e nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x9d8be4ad nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x2afd2258 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x74d3eb44 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x78218d2c s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xb029e037 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4b4198c7 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfe8ee40c s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x3e2baca8 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x0500ca0f s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x265108de si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xcf091637 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xbefd1ee5 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x88a517de stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x726a9329 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd50a6263 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2d3004d1 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xc2226dae stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x30e47d33 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x43902e56 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe458c871 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x6d3480d1 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x73428f00 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x2d6d44a8 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x56b2a920 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x4280b494 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xd5bfad31 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xcf539e91 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x46beb6ea tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb2dd60b0 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x66cf6748 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xb2ecdbb4 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x6546297e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xddd9986c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe6edef0c tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xd31737b1 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x2e9fe2bb tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x1c2df15a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x916a9ef7 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3dc1b4e8 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9e59eec8 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1deac6bd zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xcf9fe1d8 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x34179881 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x044c7a05 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0c0ddea4 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1472c6b6 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1f8e8470 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x71f11f37 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x85e5a99b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe3cf8358 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6ce6bfb5 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb5f8fe5e bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcf8e6ffe bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe26b057b bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6755db1e bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x861c9b3f bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe4ddd377 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0b89bc6a dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4508713d dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x76e04231 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x95d6c286 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9f1bb4ca rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa8ea77f5 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb61cd626 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xca5eb352 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfcada42a read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x16daffe2 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0cc011e6 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0f0da753 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd29dbb5d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xde690e13 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe428bd52 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x029e01a3 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x115ffe6b cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x424ad4db cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8e0577f3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdd76c36f cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe1ccf976 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeb8713de cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x115e8c8b vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1b24ebdd vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4bcfde9a cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd1de3e54 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd998bc45 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf36dc75d cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x141f7cfe cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4ecb3ac0 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4f8d984b cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7ed27eca cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb4adadfe cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc893467d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdbeb7fe9 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01d104b1 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0499985b cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a7f452b cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c4b5bc0 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2386f9f4 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x285740bc cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5eb231f7 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x66c0f8e4 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x841cf143 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86e92ca5 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d77a702 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9072c194 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9eed3c33 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7a82b01 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xabe3b79e cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe46f16f cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd424f297 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdfe7be4a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4fe4489 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe80de89 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x9136cd14 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0e206137 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1fe2f93a ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2611752d ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x406b6f6e ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x43333c50 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6f8805ae ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7f457cce ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86467613 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8d688a54 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x92a981b4 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa666005e ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaf173b74 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb9027d74 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd34f935 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe60d7742 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf0a75a80 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8f87904 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x18d5b852 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1b2037c3 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c5c5ac0 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e8c51a4 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4ea8b73a saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x645ed52b saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6a8a99d4 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x71bfd872 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x770c3692 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe7c634eb saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfc8a4ec5 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/radio/tea575x 0x08ed761f snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x285d17b2 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x335d8ebd snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x365418d1 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5df11f61 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbb3f505f snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd28cbeb3 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x709b3e2c ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x931b7698 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x07549f5f fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xcd4a2114 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc39ae9c3 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdf4c204c fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf1947ef1 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x37ad7937 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x9464a57d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x6909e5c2 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xe6c6846b mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xce21cd62 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xeaf60649 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xe38b0812 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xc0646969 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xaa0e455c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xf3f2bdb2 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x66190418 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1789ce9d cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3475d3fb cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x20eee693 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4ed9b1ad dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x56c4048a dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6fa7b532 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x95e9bf87 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9bd37f2e dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa114ca3e dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa8390166 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc4dc1bc0 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b30d535 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x632f09bf dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa1ec0292 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaa21c170 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc28c2e6d dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe0c8d87d usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x19c828e0 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x22b28a28 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x418aa333 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53b97014 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x86a1c8cb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9b34dca4 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9dffb984 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcde370bb dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdda54556 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe3564a91 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x166e1c9f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x90e2c693 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2d51943e em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9593610e em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1b8bcef1 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x358ac0ec go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb572dd30 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb99d728c go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb9ef9852 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd346d42a go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd37e7a31 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf1cd6f0e go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf9b8be3c go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x42fda04e gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4bb86e05 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5cdf68c3 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9be5d2ed gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa2cfcf11 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3d5cd25 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc267a2ca gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xeffa88d1 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x28f7ae09 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7f09a375 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x8a8fa9d1 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4e5903f5 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x659e023f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0b0e25ed v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x36c281b1 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x60613399 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xafb22d36 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xce51240a v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf23c26ae v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x11f1570c v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x71f5ffda v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x814b1471 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8b5da74d v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05cd7fbf v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b94a443 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e53a8eb v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fc6e026 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x109b77b2 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11403559 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12446889 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x147ada39 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x158818f1 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x168a7b52 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x179165ab video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x226199ba video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bbae471 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d4537b1 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32c580de v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x462da504 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bcda830 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54bd94c9 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6046f90f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e480ac9 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6facff94 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72c4bd40 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x731731de __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x756f7bca v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e176093 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b372043 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x919b93f4 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a8f9bb4 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d620803 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f148cee v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa72c5d96 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8d693af v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac710a84 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb15321c7 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb450b27b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8526f23 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc89b9a0c v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdf8836b v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd543ab50 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda0466f8 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda2938ee __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc55f272 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddaf27d9 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf28f0f8 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf749c62 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe22aa9c7 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe46a84a1 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8e4cf4c v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeab93736 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedd6f151 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb87bef4 video_unregister_device +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6fd6655a memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7364dfe8 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7c822ad7 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3729f0d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc6309033 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7112eb6 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc87d2875 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcaa10504 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd91d1fcb memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda90b5e3 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe614bc63 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfacf8f96 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0269fa83 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14b84d50 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17f28f32 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21c7ecba mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x245a9865 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2460fdac mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2576dba9 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33d8f9a4 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36ce7af6 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b985761 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41fa5f1c mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bef16f7 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61b5ff5a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x65a2d277 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a968c0c mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8279fcca mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85275b7c mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85b75d0c mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89df5065 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cf734f2 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae9eeb4f mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaeb71882 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc46b4032 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6536f24 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb554aa0 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcbd02be7 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf90658b8 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc81f553 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe7371ca mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02eb2b6a mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03eed659 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1247cbfa mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1bb05774 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f594168 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b793078 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e9f43f2 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32ca9968 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b2be88e mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x49fae224 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5be2e62c mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6619aa45 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68b8161f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x696d5e13 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b0a8a51 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9347da9d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x965108c3 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7ec7b29 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8829bfe mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9f1eb1f mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa8b0a19 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd6835f0 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf4bc2ea0 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7f8b430 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf87a1a52 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb651d87 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff0e20aa mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/axp20x 0x6cb0948f axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x9c419582 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xda89d3e6 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0xaf6439d7 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbc839e40 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xfdb5a60e dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4983779b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5de9c432 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0ad79b69 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3b412f6e mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x55946ced mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6867dc95 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81dca58f mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x88a873e1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x904e0df7 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06e714 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb6f7d47a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe9b2070e mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf211a18d mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x090acfad wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x1c113f68 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3b307434 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x49559057 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xa4527619 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe02da308 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdacc9fe1 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xec19d3e3 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x32466a0b c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x6a48210e c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x165da2a9 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x242e600b __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x518aab31 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x6fd7300c __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x8b801398 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xae4105f7 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc1a2bede __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xd2e0cb55 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdeb6d553 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x11381d04 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x130bd2b0 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1bd3e59a tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4565267d tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x68c2b13a tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x745dc3ea tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa59ff336 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xad101965 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xb36adc26 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xc6907853 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xeaf7cec3 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf866c6ed tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x23582325 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5fefc6b2 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaeb50f55 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb2fe4358 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xcdf85e23 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x02de4161 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb462f2cc mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x11be4ed8 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x53e38a77 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6bc080b6 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7a912cc5 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x85a46e03 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8b9373e3 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9dab18aa cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x203ffdd0 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3e6dfa32 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaababa8e unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb225610d map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xfc6d2ac6 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb8d46aeb lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc79b50c5 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xc3ed37e4 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xcf24dfdf mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2c48b404 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4e0414a6 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x651facf8 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6836aaa3 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x74588d78 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x785f5dab nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7d764a01 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9653798b nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x989a3df7 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9ab25d4c nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa8d45e0f nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xccc84ee9 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xce8a30e2 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd065ebf0 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd9d01622 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdf140f18 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe79106b0 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe880b8ac nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x58f69edd onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x80e64067 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x018d956d denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc113c4ee denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1711ca43 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1d5d21fd nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x348ff965 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x39df509f rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x448be51f rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5ab2ffeb nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5afcd8f9 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x62f889c2 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x77008a1c rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9a2b754a rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaa86c531 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaceecf59 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbc2d6719 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd4d52fc3 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd727688a rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0231368 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf2398cbd nand_scan_with_ids +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0a535af9 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0b005060 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15c11b39 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1d8e4a60 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2682fafc arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x270b61aa free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x566cff19 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b0e39ed arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6b196d06 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8602a4b arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcb393809 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa4777c2a com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb5dbf21d com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbc28c6f9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21d9fcdd b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2266a0bf b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x287e2eda b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x28f07032 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2cedf26d b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3021bc54 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30805c28 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x36fd0849 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f6b443c b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52056c95 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54ca963f b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5fc64927 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x656d9b9c b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d695a2c b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6fd2a00e b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7443b9e4 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74f1a520 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x761947fc b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7adf4a05 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e65aeff b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f498e30 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f6af3d4 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8080992c b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84553292 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dfa5a3f b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x93f5b66a b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96f8d0a7 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f995d65 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab238718 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb48f5b48 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbea7b1cd b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2b4e3ee b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0338674 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd06262ff b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6b3274b b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd94f37b5 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xda24b4a5 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe21fe423 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xead5f6e4 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xecd7606e b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe602969 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1aa893d7 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1d99d229 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x43b680be b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4c4b86b8 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8175e288 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x84d0eea7 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x188161bb lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x34c1aa21 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5ad7f584 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xb97fc264 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xa185b816 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x10e7abd4 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x58f229a2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x89505989 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1faee7e6 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x25ffd866 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xab0551a3 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3435c9c8 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7e65deb3 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xeb301113 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf00cd39d xrs700x_switch_register +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17beb7d8 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x23962e68 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2760178f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3a40c6ff ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x75f3ea71 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8115a015 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f673dfb __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x97caa369 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc63e943a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf848a6ea ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xf06dd38c bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x25d50763 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x802ed489 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x994bfa61 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x11666874 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b71a161 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f37ca65 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f6dcd9a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d9d8549 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x873ab6b4 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x93ef8821 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94017d33 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0ef6d4a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1f980ca dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa7b93faa t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1a857f4 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb5b7b3c5 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1369451 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc3a82916 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdbf1808d cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02b5f48e cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x081f9b6f cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x147923d6 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x190638ee cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20be8437 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ec07955 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fc6d5bd cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37d4c392 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39157f33 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dd019c6 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4010fa78 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4101edf4 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x418f014b cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46a01039 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47d6f250 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56261cb7 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b901ffb cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70bd194f cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7492bb8b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e9be7ff cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x801bf65f cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81520e4b cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9704908c cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa7f8d93 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac38faaf cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae737cae cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6440fd4 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba07b6a4 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd2fe7f4 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc64603e6 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcccb7172 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2ea1309 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd30affb1 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3d57323 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4ea5ecd cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7224496 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd971c1c2 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9a3e86a cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdea2cac3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf76903a cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe77b6df8 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9975ad6 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeaf9125d cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeec0745a cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf105d17e cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe9dab23 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x162ae3c4 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3100f430 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8f49895a cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc462d537 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xce7d3db4 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe035d8f7 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe6c055c4 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x241bf1b4 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6b89d072 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa953365f vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa9d22814 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc8536c3c vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf74b756f vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x38a63455 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x8ab9897b be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x6c52b9a8 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa239e26e iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x376d4622 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xbd7dfd9b prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x076b1f2d mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b3a9c4 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x095629ad mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10786579 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2905b02e mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bc67521 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c4b4ead mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30a94e8a mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x344acfe9 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39997747 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b2bc608 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x495687fb mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d2e1664 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a49d9b0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c11e52a mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e5799da mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62f48ded mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e6cbc38 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76aa8ce1 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab9095c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80a805de mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87847a8e mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88412ed9 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a8cc0b2 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91654ba1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9446af2b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada34447 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb214e690 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb05d822 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2942f2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2e6c1f6 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd187d96 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd480d694 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd545f918 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6b9b73e mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfc85615 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13f8e3c mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a60c4c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe91c44fc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecba2c86 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed0908de mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc6fb52 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeab4032 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c94829 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x006dfbe6 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0182165d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03bd3c9e mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x048c7311 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0689aa16 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07d582e9 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09007dd9 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0981ea51 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a91482f mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bf5f0a2 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f166c19 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11d6887c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c7f99c mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d5869f mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1929b2af mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19559796 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bc52ca4 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cd11309 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cd2aee6 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ee4cf08 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fe9e16d mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21a3250a mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x230155c4 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24708ab0 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24cc9724 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c4cf5a4 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x337cd451 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34c95e76 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x372410d0 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37a54129 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3934958d mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e2c1a5 __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bc2d230 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d2166bd mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f0d9239 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x424ba0ff mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42ee1456 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x457c644e __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bdef44f __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cae580f mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x508334a0 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5084d648 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51535d90 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5241a0e7 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52cd4eb9 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x551183bf mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559c2aa8 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x580d8037 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58dda293 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d8dfce4 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60396356 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x605d2237 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x617e9e7e mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61b3cb3d __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645d2589 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a57c98d mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7e8871 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d48040a mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ddaebd5 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74cdacdf mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a6013e5 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b6eed76 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bb232f7 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bbe4efa mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e0bdda mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x817a488b mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82745742 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f61b66 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84801480 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x886a954d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e6a4fc __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a106ca4 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a15e207 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90502c68 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f67666 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9320f91a mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x984e826e mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99419aad __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b028710 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5e9262 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c81d9ec mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa420ab1f mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa1d0201 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb26968cc mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4fbc909 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb56dffc4 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5b69d36 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7a807d7 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb850ee24 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a75e6b mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac8dc20 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc40a716 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd1f9609 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7f66eb mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbddbb508 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1249a97 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26943d5 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6ebadd3 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b951ae mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8714fec mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb585ca3 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc2dc5b5 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc7ccec0 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc7d7308 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd567ce mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd4e94bf mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdc27d5e __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce688b19 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16ae8d4 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1dd4071 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd43676ea mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc87dc8a __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdd0477 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe001cb1e mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe10df696 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe147aa2b mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea90f141 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeac58034 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebfaa395 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec4689f2 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf11937f4 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf19cc46c mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c1b3da mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32776c5 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf460a7b5 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6d52e2f mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf775f000 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf786b2f8 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7962e1d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf84873f9 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf95a2f51 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcbbd404 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf67c24 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe0cfff9 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe79d3a8 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x6b586eb1 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x06bad153 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x08f180b8 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c597fa9 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f78f3d3 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3121062b mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c5dd1d9 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3ef096ef mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x426e20e5 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x496c03d4 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f2f27e7 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fc4369f mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x82530c04 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9606cd1e mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc3a8ac29 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xce527bc3 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf51c4195 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4210a4cd mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x44b2d6df mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8723b835 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe7770fcf mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00fd0743 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0291e73c ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03dc6033 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x069218f2 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a62dbd5 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a78f932 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ae9697e ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d7bb371 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a49cbe6 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26c24157 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27c65415 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29aa175a ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a79c57b ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x343b2d62 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x354f1f02 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e651434 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fc65f3c ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47bf1386 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bcedb5f ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c34aa78 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5919d108 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dbc5d0f ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68b39707 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x752db560 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78afb732 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a205f91 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7dc6a76b ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e8b8fd5 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a4c382 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d133638 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91d30b6e ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92d7d4a7 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9530f39b ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96cb7db0 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99c4a7ac ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a84e427 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b6754f8 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d7a0e9c ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa03a0c4c ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa11f90fb ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad56e04f ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2d2f40f ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2e9bd50 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb83c552c ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0240a39 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc296cffd ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6d9783b ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc789e746 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8657b87 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8726318 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8d0edf0 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc94dc9cc ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc0c0aa2 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf85331d ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd37ee8e1 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd671ff2a ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9f0126c ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfc407ac ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0b38933 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe11597db ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4da19bf ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb2dc43c ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeda3df06 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeda99883 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedd0bbfc ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf066bbc8 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc4f8669 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x06a56baa qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x59834e9e qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5dfeb0e6 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xed9e35bf qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x990b3597 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc7a58757 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1aa91bf0 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8506f573 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa989c7a4 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe43c00f2 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeced59cf hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1ec47aa1 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x37cd121e mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x58be7e69 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfd791be5 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xe7e9c603 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xeefb7c7c cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mii 0x19e2242c mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x3ad71b96 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x3d47c7dc mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x3d894db2 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x4e93b640 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x73c7842d mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x99abbeea mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xcf80b7da generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xf053e6f7 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xf0ab3e2c mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x4153197f lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x61ead48e lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x0a1c8e68 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9ea18f43 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc7c25b8e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf4755246 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xff2348e3 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x2f0e6354 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x09010dd7 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x5707a762 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x5dcfa5b5 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x60fdd225 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xcc59149f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xce98ac5a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xed485831 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf74ce14f team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x37d18789 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x43b05d71 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd84e6605 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x23ed0cdb register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x28da2191 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x475708e7 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x506da30c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8409e5b0 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9ba1af8e hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb2c1981e unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc8e591c alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb6ca946 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xecd12c85 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b0415c0 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x272fac78 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4a8e4db0 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x52521408 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5f4d63e3 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x752c2ede ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf67ce9c ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc31f1605 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd4708f47 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdb206a8e ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xea8af301 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf435b5ef ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe018b85 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x043fdc6e ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0af5cc54 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ee24939 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f32f1af ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11b6929a ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x130e053c ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x150926fb ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19f3303b ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1aa8f893 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d7900b5 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f37deba ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2673433c ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x282d98f1 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3358bc58 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35bc171a ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x364e544a ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f88b275 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x523fb095 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54d8b365 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ade874f ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d2dbddd ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dace175 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63b09ac4 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70f54e15 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x760ae01b ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b9f381e ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81879fc7 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82165e80 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84445f4d ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f4b2af3 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91322ee9 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9600b79a ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97e9374d ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b2beb2c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa05f44f9 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa14a0e26 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa302b310 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9099ca5 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab07b7ad ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad35ed24 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb86eced4 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe50e547 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf2f16e4 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6688ee3 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7b58c5d __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8a01f9b ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1fc4609 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd7d15d8 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xded9aac0 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdfa81282 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec5f80dd ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedc76a48 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2936d7d ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2df074e ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbee7855 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcbeca46 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcce92e8 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0319508e ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0f5441eb ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a2162fa ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1cea03d1 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f3f0dbc ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f55026d ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2456a5f5 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x321f0972 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x35f92ac2 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x65e976e2 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e2d8df4 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x799fd4c3 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x81fd6c8d ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83a2ffd3 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95392a9f ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb90c0f14 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcbc95621 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd76d2cd6 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xddcbdba0 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf5007e4 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe0c73c71 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb258302 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x58fdaaf8 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5ae91f32 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x614158f7 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x67da6dc9 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x716e91cc ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x797b667e ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x824ef167 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x88724b81 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf0be56c3 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf0fc9295 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf818cca0 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0252d269 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x029810e7 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13427792 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1388b3bd ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x216f776b ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d6ff868 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40c64a69 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4dde76cc ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e43099b ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x518c6449 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x52034f4c ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b85495c ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63ac4ff4 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb150f571 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6158ed9 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc0c8b0a ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0842dc6 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcd702eec ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0e4f9f0 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd95ba329 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd95e578 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe619b702 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea2bc02c ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00826183 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00d28f38 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0354a95e ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x065190bc ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a1105a6 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a2d008b ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ae5c0b6 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d1cd046 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0eec0c9d ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x119287af ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1209ad65 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x135079e8 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18e0e8dc ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d5e7244 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2243d1b3 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23fd6144 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2432f51b ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x255ff3e4 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x258e91bc ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x263a6b84 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2accfa42 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b9aeea7 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bf4ecd8 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cdd4b76 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x342b9ab0 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3796fca1 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3914b2c4 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a26e461 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42f72bda ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44761d48 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x474db65e ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4812cec3 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48b2b861 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d9865e6 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fa47d21 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x501aac4f ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51c8cda6 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x536e5bb1 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53d442f0 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5599c608 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a905606 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5be45de2 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c3cd163 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc44ee6 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x622e873e ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6547d4a5 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x657cbc08 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65dfb917 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67f489b1 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x697b1078 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d5ee1f9 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73bdd238 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76e8c107 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77dcd49e ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7da833c8 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82471bfb ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x865f5fb4 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x878398f5 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d574b6f ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e4f1725 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91261729 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ebe381 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b42d1cb ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d44908d ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e8b2f8c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f8ac5d1 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0091484 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa16e7b97 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa192672f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5824c58 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7134857 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad6a0212 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb692de32 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6b3df79 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb05fe43 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb5e8ecb ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbf8f7b5 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf837bdc ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc34c44a9 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5a3c948 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8a59ad5 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdaa3c8a ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcde05e58 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf3c9430 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0174bb5 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd10d1a7d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2f38443 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd72ef64a ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda03f710 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0f1c7d1 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1e5e8c4 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3841ad3 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3ff55c1 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe43eaf0e ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe91182b1 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe985e99b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea9a3b04 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeae92657 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf07c4d11 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1df7f9c ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf302594c ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf41b6f18 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf537f9b2 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf658b804 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb385684 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe54b98a ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff191f17 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x92fb813a atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa5190387 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd1b13470 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x013d321f brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x03180c3b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1db204bf brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x21e87b5c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x25e8e7ac brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x34281983 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x343d0067 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47a2ad2f brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47f83f05 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5080367e brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x630f8c8c brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9fb632a1 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe52260b5 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x1005372d init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4ad5ab1e stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x92cf47db reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0fa9d576 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1d87b168 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x30279503 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x32caabeb alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36975fbb libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3fa8eeb6 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x409f2554 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4c23ddbd libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4f24446c libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b5692b5 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5ccf0bb8 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6e56caf2 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8af5eb12 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa019d754 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb5e49ee2 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb65d2bcf libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeae9cdb0 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecbc8533 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeef547a7 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf0d02ade libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x004ffbb3 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0876dd55 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09a23d64 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a68f188 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b5da8ba il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c3ad1cc il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cf285b7 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0edc565a il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x183f589a il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18735210 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1969ca14 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b87e495 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f92e26c il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22e63055 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2363916d il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2421dd56 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2674b7fd il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27f0abaf il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29ace145 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ddc7a96 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30c5aef6 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3121542e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3582c2af il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3774e827 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37f8de62 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c032b03 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40621804 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4082bafd il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40d2da94 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x442900de il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a98d813 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c289030 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a2b65ff il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e6da107 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60418692 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61c00edd il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65c1ee97 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68639225 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dca0327 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fc30bca il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7223cb8a il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73aa3ae3 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73b47edb il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76c329d0 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76f4f609 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7725e183 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x789ee654 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79af37b2 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a98bbe8 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cba943a il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x859668b9 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x880cbac3 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b91c4a6 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c81d751 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91d980c7 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b4eec8e il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d2df52d il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa10d2cb6 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5e15999 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa730ee39 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8654078 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa871ada7 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9e0515f il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad9156b8 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaebf913e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf750cff il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2132969 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb723082 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbba5d786 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd4a257e il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc19c6f2b il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc22431d8 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4ddacdd il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5425260 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7ba2e31 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7bf1b66 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9f1e2c3 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcca57c15 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccfb965c il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd22a1f9 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce56e450 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf5fe2dc _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd16c86b9 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5a8ca36 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe377c7bb il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4cd5598 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4d67203 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xedfe0700 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf049738c il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1e05c93 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2bb2aa0 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf41ac4a8 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7590d28 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf78e161f il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf81608f9 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfae87f93 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb323ce2 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb75bf35 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10ddd349 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5229db9c __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x557ede05 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x710e9362 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa576912c __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2f2a23f __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc5a5a7a6 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc98b9859 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe8a2f0b5 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1856e1fd hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cb8c979 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x221cd754 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x25b7fdfb hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x28ba2cc2 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2f1afb9b hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x49cfa220 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x56b74ad9 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5b333f56 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e9c1e85 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e488a99 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8002cc91 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x82be82a8 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87a834f3 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x89becaf0 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d481652 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9138265e hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x942ce794 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9f912b29 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa01af8ac hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7b3d73b hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc20a95a3 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3223fff hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeb5e47df hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf291b126 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x07be6a79 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0df7a118 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2baa4be3 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x35df89d0 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ff55d46 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4bd89bc3 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4c2727ab orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5b652501 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7d06f488 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7da1b6a6 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x821a7d9d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x86fb8312 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa3634e28 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbb15270a orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd4c865aa free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xc4888c72 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x02bf833b rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08de4b02 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b072fa1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1808d9fe rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2859c399 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3386e26a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3541d88b rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x354813d0 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35cf503e rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3836ac36 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f513b10 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42d8a705 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43bf2b0d rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ea83ddc _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56852cf2 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56bdc75d rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59c85a50 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fc7cf76 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61a7128f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x755f9fd4 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x794acf86 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8069fe1f _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84d43d0e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x850ae825 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98574b3a rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b1f651d _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa01471ef _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa574647a rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa77ccc77 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa93f3b32 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad156a72 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf4a8b05 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcdc95cc2 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2796b02 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3b453cf rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd44fa8dd rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb83a6b2 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2e9139c rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4e7820b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7458093 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb8d33ec rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebaf96bc rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x36a881c9 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3b1b8423 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x81a23742 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe703a965 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x030c93a4 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x119d3956 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6702eeef rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xec06fa9e rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08931a8a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21e1076f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37a171b4 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39a13b34 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40304f9e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x487e5ba1 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5069d439 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a535454 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c914168 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d577a3a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8910dfbe rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b59577d rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90245ec0 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x902fb4e8 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x945876f6 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fb21639 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0d738a1 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4b24ea8 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5533b78 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc000bbce rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc05173ee efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfa4cb62 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2519cda rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd335472b rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc1c17f7 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdce11b9c rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4567a1d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf82dc38e rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf903ce98 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfddbdc6f rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xb7c45dd5 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x2a042a58 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x5c242767 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xb3e64c59 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0307c899 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06b84662 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08581665 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c08e904 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e5a18b6 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1370b1fb rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14e3e829 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17fc7d94 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c374d40 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f328f15 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21b19954 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22aea2f8 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23413225 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27b72f36 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28ec881e rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f960e2a rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30089907 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x34452ba1 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3847ce7a rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38bff0b5 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4130d029 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4225ed47 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5002ea2b rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53575b54 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x626ad638 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65d8886a rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65e3ff19 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65f0b47f rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67715f65 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x69debdb0 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f67ecbe rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79c75954 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7bc400d4 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ccfb658 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80f5b02c rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8405a81a rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a9be0c0 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93e881de rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9640bafa rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96d44984 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x984c5431 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x999837f1 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa092c82b rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0d1304f rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf602428 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc087c96c rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0fa9a71 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb6ff432 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdff99483 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe170825e rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe339f917 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeac7ee6f __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb9a29c2 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xedd21eb5 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef2bac9a rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf81c9feb rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9c0490d rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x25cce3b5 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2d2105cf rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x451858c7 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc3dccf35 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0404b08c rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0688c556 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13eb1402 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x29fedcb3 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b15ebc7 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4e0d91f8 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x51b3be75 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f86b499 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63bfe795 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x713a02ba rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x80dddb46 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8999d920 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b5d015e rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x923b04b2 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x930c85c3 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbad85d52 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb2a889d rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbbaca890 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf05eac13 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc083c71 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1929bc98 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x1a281b15 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x571f6171 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6c212b73 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7b2bcf45 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8bb8fec1 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5be1ac19 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x77693ff5 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x0cb3b2cc microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x732b4d00 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x03bef675 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4d0417db nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd4a06293 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x4eefe673 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x642b0d2c pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb99ca05d pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4fe50494 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5c842e3c s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbff42e00 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd227b10d s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e0cacb2 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x38618f69 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x598f3f28 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5f7db2ce ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6319dd4c ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65d9c37f st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x67408ef5 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x784fbf0e ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa51f110b ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe819286 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00566eba st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x12f5fd11 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1fd6a0c0 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x32d2571c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x692eccda st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76352aca st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x820299d6 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8bcac4a8 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x908df735 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9819d2b8 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa18a368d st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa27d080e st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb83500fc st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbb7d253d st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbe1f3cff st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc5939104 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc29b379 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6a5b332 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x0cb808ec ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x0d95260e ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x13668cd5 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x19452f10 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1eba7b4f ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x2199c4df ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x2202abb8 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x38b740c9 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x432ef2bf ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4c32818f ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x5063da18 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x5d69b4d1 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7cb398f1 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x8f494555 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa721769d ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xa89b4b8c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xae1f974d ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb666210e ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe6866842 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfcd550e3 ntb_register_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0b952524 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5a661eef nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0714e546 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x0e295c53 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x0f256f09 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x10ef131d parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x12c815e3 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x14eb84d3 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x18efa479 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1ad06d82 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x23d8a4f0 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x26058a87 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x261079bc parport_read +EXPORT_SYMBOL drivers/parport/parport 0x28ce85a5 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x2b5bb85e parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x4a1590bf parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4dea7a0a parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6ea8cde0 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x75e5d17c parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x77332cd6 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7de56618 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8a169aae parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x8c628dfa parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x8ef9467a parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xa27e54cc parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xa6013217 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb025cad4 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xb20b1714 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xbac4b26e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xc33dce67 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xc3ca3c65 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xe24da28b parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf4a1e14b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport_pc 0x08009998 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x58ce1fd5 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0d552f8b pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2138d0a5 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2bea89ea pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3c52d1b9 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3e3b17fa pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4d4c58ca pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x58ff6c6c pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5d1106ce pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x706e5f6e pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x79a5ad07 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x82bf61d4 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9cca9952 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa08c46bb pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xca25c6cf pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd5842c87 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdfdfce9b pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf21fba6d pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfa47125f pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x236ef6d9 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a8b620c pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47cf9754 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4f08e1a7 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4ffb0492 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x682ca735 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa301851c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbde74b46 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd72fa36a pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf73f9fee pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x2984d2af pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xbf740d6c pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x04e8677a cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5cacf62c cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x68647a57 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf7a3190b cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy +EXPORT_SYMBOL drivers/platform/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0x31327657 wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0x7c74a518 __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1d4b302e rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3103fb49 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x32601b17 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x35ec8bad rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3f9530d1 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5f285ad3 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x85c1b64f rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9ad7fd2c __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8737a48 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaa5f653b unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbd5475cb rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc03a37f0 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdbd7c291 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe6f41991 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xefa866f0 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfdd5d2b5 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xddb8432e rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x1be3386b ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x641cfff8 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xf0e647bc NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x244fbefd scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2c5c9120 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb287070a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc1ae2f27 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0cfbb71a fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1400fb99 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x378c2c5b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x662a135e fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8dd282fe fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5326156 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb9ced549 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6919a6a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xea3b2993 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeabfdcac fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb6a0378 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04f9e9c0 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12e4cbeb fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1652f677 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1874f6df fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1dcf72bd fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1df88192 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e768491 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fb2a76a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fc43ec0 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2041a584 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22779f5b fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bcce26c fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31c5e597 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x384f0c83 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c4753ba fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44be179f fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e14ea1b fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52ff082e fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54dec2ce fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55dc6abc fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5dd96617 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60c0a855 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63d121bc fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64ba5a02 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x690e3bfb fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e614985 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74217a68 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75fb23a7 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x774e0988 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c0ee363 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d04b255 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eb15c3c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85100d1b fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86f9b470 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8be76423 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91ba19fa fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98031e70 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x991ad900 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a87401b fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d61903a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaab660a3 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3a8a642 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd8bf094 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf69f556 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb1fad73 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd4c7c9d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda33815f fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa63fd00 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe92e479 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfebb2631 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6350bdf1 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7d4ac4d6 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe9d8d279 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xf56ecf54 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1748f366 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1fca737d qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x35de70d1 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37a23afc qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x832480f3 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8e401cc7 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9298a050 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc06d4990 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd2be091d qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe0ab75e5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeacfa0a8 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb13a2fa qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x35ab0488 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x91352312 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x99bd00f4 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa552c148 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa71253cf qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf4da1f11 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/raid_class 0x2d7e8452 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x79da1110 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xceaa70ac raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e88538a fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2b6371d2 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x393c79bd fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5d428507 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x680a808b fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7060210c fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76b5284b fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x82a9c314 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x85e12208 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8666a004 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x979f669a fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ae38f63 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa618e477 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb191c232 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb744e1df fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd12833f4 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdeb3edf0 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05591064 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0cfea95e sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x115b0d2a sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b0b1908 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2609edb1 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x30c8c635 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x346394bc scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x361ed2c9 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45163c6d sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x453cda7f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52dee0e5 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a17de28 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69b6d85a sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bac49fe sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8892e6fd sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x939152ae sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ee576ab sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa23abf3b sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa76ca65d sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2e00075 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5bcc018 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9a32247 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbc0e0ae sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd52399c sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0222940 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4e88923 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe51483ee sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf283cf9d sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf593aa95 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2bbd85ae spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5a44cc81 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6d9f629a spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc965b78c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfafca6de spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0bb8d840 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x19a6a812 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x30be7f24 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x97e8376b srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x98138f65 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x4ed9f95d tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc1a2e630 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x42090527 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4b4323a8 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6b7c8675 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x77cf4e89 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa31bc9f9 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc597a909 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc7d428bc ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfb5d2f9a ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x05d65727 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x1eb50a26 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0c9f1b38 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3840191b qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3d9eb5ef qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7e7a5ac8 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x815a269a qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9072055d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x940bdef5 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x97222484 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb91235c2 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe7bd5083 qmi_txn_cancel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0051819c sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e78f016 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x143117a0 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x225b6fc1 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x333c94fc sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x36ea0341 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e1c2b6b sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f4cc20d sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5d9d2625 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x621ca240 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x682821de sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x896a50b5 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x927d4805 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9ba52f1e sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa72c0788 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc3a421e0 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc567c496 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc685856b sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc99dcb74 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcf1380f9 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0054783 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdb37e3b1 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xebf25fd6 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf094a029 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf2fe1270 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf8a53271 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2c134010 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x38aae5d8 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4b58a13b sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4c2fd1f3 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x506a67e3 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x79d73cc2 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7cc62af2 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8e92ea81 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9f7c5027 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb461420b cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbca92c7a cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc43667e3 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe34b9505 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe488d565 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe84d25da sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf30053c6 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x37de4809 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x10cc17a0 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x12a25928 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x16198a27 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1ad48adc ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x30599980 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x32ebf6a3 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x3b1c28a8 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3e340112 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x494c350a ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x4cc4149b ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x519ba8c3 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x58fb50ce ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x5d20691d ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7aa737e5 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x904c05f1 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x9a7b41cd ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc61c87c6 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd205a0e9 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe3cd8475 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf3561298 ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0573c89a fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0bc0f0dd fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0fb01fac fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e82c6d2 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57cb29ed fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b6ac262 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6bfaf0cd fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x726ee3dc fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83884668 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84574fc8 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d1c3af4 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb51c9b40 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb98849c2 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc4746c9 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbcedf7be fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1afcdcc fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5c7f1cc fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc8c01f67 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce6dc875 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd9e794c fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xedcc5429 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef76b289 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4a8985c fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf85f6d00 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffab54f2 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x10ac35b8 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6faf6fe4 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xcc2f060b gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x610cee60 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb36d71b0 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xa9a666f7 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x493cac63 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9f80bf33 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd0dfa2b7 videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd1095cea videocodec_register +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0279a03b rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14312c5d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1531b689 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x196f9220 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x239b1ece rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x252b8491 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29e2b722 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3426d5b0 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34c7ec47 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34d3087c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35fdf155 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3acecef8 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x400f91c9 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x467516d4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bb44ff6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ef7a7ca rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50e85fe0 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x512aa1c2 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56d94334 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5747877b rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60656e92 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6413e495 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x735bf227 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7447ab40 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8bef5ade rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d534b0b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fc11ac7 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99895db9 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a5ab899 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5092490 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa73a5149 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7a90631 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae82505c rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf9c1e7e rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb7cf012 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbae339a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf22222f rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5e6f2b9 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc60564c5 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc77731ff rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcaf5ef10 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcbdecdc5 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccda2de7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1e395b6 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea7a826e rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb1faf81 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeba6cf48 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef8d75a6 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfad3157d dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041a992c ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0742cc01 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a50dbcb ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1410341b ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15937862 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x178ba283 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x180c7a72 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18b6b53e ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b3ea7b8 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f0ec5ae ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2062cadf ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x288ab605 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39e60773 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bfa9097 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42705a93 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45b379d4 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c527e1e ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5288ec1b ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x553450e3 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5dd922db ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62d2ce72 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65bbd181 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6777d49e ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6783ca8f ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ba1eb9f ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x761b65e8 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f613409 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x908ca8eb ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91b181df ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb169bac3 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1db1e06 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4ca0fb5 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc784d88 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc830294 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdd574d1 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8e2146b ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcaf53b0d ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd4b560a ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce41f405 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcee526ad dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5e693c8 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb9abe26 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdccb3688 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfa64b93 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe464dd79 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea0e34d3 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea5bdc58 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed0b38b2 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeff8692e ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf09fbbf2 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3a9e1ec ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf523d0ee ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe87c5c9 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01b21e16 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x064c1f49 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c83bdea iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15290c8a iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18775717 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24d995d1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25b172e0 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33ebf19c iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x354c1973 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35f41ef4 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a1bd9bc iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43de5c14 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45e3bd4f iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47eed4d9 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51127a78 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53224f25 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54491c98 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54e51f53 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59f22bd7 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e53fad1 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e69785b iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65e85046 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79d370cd iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b0ba541 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81c33717 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x886f1b31 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98e97d22 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b67bb27 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f02fc30 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa532be77 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab25c223 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcf8ae7e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbed579e7 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc899123e iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbf1b892 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd9c68d5 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd06c941d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2dcd820 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd780ea98 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2160e8d iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee422abc iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf91fc97b iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9bdcda9 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc8eaefe iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x03447847 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x05e7f5a9 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x061c1d7c sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0881a3df target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1297f207 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x191768e6 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f2e0584 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x21d14fac core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c3b4c2c target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x33752317 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3515447a target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x358fbac5 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bd667f0 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d753302 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x40deac24 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x42c805e3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x47fcd164 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4adc6c32 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b7f6e3c target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bf03b3e core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x594ddca8 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d6e37af target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x61111e9a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x64db9081 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b55c736 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c2a226d target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x707b123e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x73c96fc1 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x760d1c78 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x77781478 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x78afe57c target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c726520 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dc62542 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x8393ee10 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x84b82fda target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x87bffe09 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c30ab88 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d5a2d99 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x91f2efb0 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x921da13e target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x95205339 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x95ebaf4e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9677ff78 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e8a2cd0 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0f35f2f target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa251bf1c target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4c2862a sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xab10a8f1 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb263110a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb512595e sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6220940 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf412833 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc25acf50 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6eea5fb passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd087fdac core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd09de548 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd44bb5aa transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6df0665 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xdccc3310 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xdce6f159 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xde1bf97f target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe02c0167 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0af740b target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5a104ec target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7bf04d3 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8bb450e transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb9ada3a target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xeeeee22d transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xef16113f target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf122f84c transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf490b942 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbd7c728 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc444e9f target_put_nacl +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x509954c0 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x9e397d21 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x064cd97a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1a447a11 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1cd7ec0f usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2014bd07 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5307d1ef usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5dbabda0 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x78f3d5f0 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c78dc00 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9ab39f81 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb998e072 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed8caaf9 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfd23ccfc usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6a465945 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf86e629b usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0f4369bf mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x23c6e3cb mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x39cc90ad mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6186caaf mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7b19d32c mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8264bbb9 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x89646c50 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd56c50de mdev_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x7dd076d1 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xdf9bf190 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8e400658 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x96387418 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa1e10c44 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdcc4d3fd lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x00519434 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0e97c741 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5b5c0b3d svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6c620d27 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd27726e8 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdc70055c svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef3ea852 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xf9ae246f sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x14244e53 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x76077c09 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xacb0447c cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x15401ad8 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x19dcfb88 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4514cdf1 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x8762060b matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7877397c DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8fa5856c matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbf21405b DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe20e867a matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x82d77b26 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x22600651 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0506207e matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0dd84a7b matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x578c9ebb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbce5d233 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x42b8b48c matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xaca42fd5 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0d246ea8 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6e0babc0 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9939b138 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9c6a44a8 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xba08b342 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x71435b0a vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9ffc79f8 vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xb242638b vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xbe891b13 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xc46f21a8 vbg_get_gdev +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x50081432 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x68fd9006 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb5acc544 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf4eaf623 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x84c57e73 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe5f40076 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x108754c0 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x3c0a167a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x157b8f10 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x2154cbc2 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x3ed31a46 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x57ba1e5a w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport +EXPORT_SYMBOL fs/fscache/fscache 0x026e08ae fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0c870025 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x32ae0246 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x3337dbb1 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x374535be __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x3f499c89 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x43d7d88b __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x45a2fa93 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4a08b9ec __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4c59cada fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x4d1530ae fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x50a4c844 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x546e70c1 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6066e4e1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x657ec6e9 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x6899fc63 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6e97e810 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x78d4370f __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x7921b343 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x7a6363f4 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x7dc4ad6d __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x844ba06d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x87912389 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x880381f3 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x89792f2a fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x98d52b8b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x9dfd6b99 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaabcd8d7 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb67a25ba fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xc6440521 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xc7296664 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xcbbf21d3 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xd0f496bb __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xdab2388d __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdc0f6a54 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xe38ca15b __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe58f5d0f fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe95a4702 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xebde9163 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xfddceefd fscache_object_mark_killed +EXPORT_SYMBOL fs/netfs/netfs 0x26bcd88a netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x30b67654 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x6ac8ac83 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x76807279 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x8538ca2c netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0a695758 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1a70effc qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x39b56354 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4c97763e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x7264837e qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc3c3b4c3 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x1abc304c lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xa56bb901 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x008f53e5 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x12162ca6 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4611b49a lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6bf3f883 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x74b884fe lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x77ca851e lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x1bf15f39 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe9aa41f0 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x422aa048 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x7e964102 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x022829d0 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x09c33781 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x12492be4 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x1d2914b1 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x35cc6005 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x460be577 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x4c5f9f14 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x51029577 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x5396ad98 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5514e62f p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x569878fb p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x5d17a7b4 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x66c6bcf9 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x68cbd2cf p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6955bcc5 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6b7541e8 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x79053713 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8586ddbf p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x89552a3f p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9438de46 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xa1816667 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa3785f24 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa469af62 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xa6c74252 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xa76365ed p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xab7aaeb7 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb4a58b3f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbc9a7055 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc4e47ed9 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xc7d34beb p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc8402fb5 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xcd718f1b p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd9278524 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdfcf603d v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xe1ad27aa p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xe3fdd8cc p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe82a8d18 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xede0598e p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf1eba631 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf52663b7 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf5ab069e p9_client_clunk +EXPORT_SYMBOL net/appletalk/appletalk 0x1e11daf9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7f84b21f aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa193c980 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xa31bffd5 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x14308c5b register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x18761c88 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x31cf6431 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x403781d7 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x49c73a6f atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x543c7497 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7df7b3ba atm_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa063239e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xa1bb6306 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xd17f72b0 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xd281a69a vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xe3b8bcb1 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xef2a7f8a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x139707fc ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1abe035d ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3f73d685 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x4043fdf6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x64cdef51 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7c1aa74 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xb784656d ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xda0c829b ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x031bc900 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0555c9f9 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a2e7169 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a47c538 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f72fbb __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18525086 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x248c67a7 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b9a69d0 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fb8f138 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x313329d4 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37ee679b hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37ff2583 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b0337da hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e1da2a7 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x435c809c hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43b2de36 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b045f85 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d72125a l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x532d5a3b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b97b368 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cc1bc6c hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f2ff9b7 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ff0d31b hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f81d5a4 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6feff3f8 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85451531 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e279eff hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2783507 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4b4b092 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8d5e9a5 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xabbee954 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafdf260d bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3130cfa hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc965fcd4 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4be98c1 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7c05402 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdddd7e1c bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe03e928e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe293ffe1 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9dccee1 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed854cd9 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf61648e9 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd09ed02 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd5c1709 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfea6db2a hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2143c540 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6221117e ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x71bf75fe ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8289de4c ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa26658f3 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd1da05bb ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x03a9e8c1 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x65ba4824 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6e0291e4 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x810dc8bb caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xac5f2345 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x00fec8f3 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x2e2dd20a can_send +EXPORT_SYMBOL net/can/can 0x4f9582e9 can_rx_register +EXPORT_SYMBOL net/can/can 0x7ef342c5 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xb0290e55 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xf90f8091 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x0193abca osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x03a8d134 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x058a2d8a ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x06461cb8 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x0b2484e9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x0ba63add ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0bf01e24 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x0e7f6422 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x0e995571 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x10307fb0 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x15330341 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x219c4025 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x226d45a1 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x26391b3b ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2faedb71 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x34ef725d ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x37e79536 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x393159d6 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x3c520104 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3def586b ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47085de1 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x4b8e6cdd ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x4bff9e02 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x4ef22b8b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x511ca590 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x533bdab0 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x57200d81 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5837cd07 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x58875046 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x620c2a10 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64d8615c ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x66a5a23e osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x66b513ef ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x686bb9a8 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x70a252df ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7448bf9d ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x74cc730a ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x79b77062 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x7bb4be1e osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x7be8e42c ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x7f2fe2f0 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x813d89f2 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x81e739b5 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8312eb63 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x84af176f osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8ba365dc ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x8d8835ab ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x8ed726b0 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x92750a84 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x93dbc3b7 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9a231066 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x9aa05d9a ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9b34a129 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa0264a77 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xa3fca828 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa9df2722 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaf0e5b32 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb4cfbaf2 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb8968569 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xb8ef2d22 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xb94b810f ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc0b86c2c ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xc29c05d8 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc4a804a4 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xc67e10ad osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc6bca3f0 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xc8247147 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc8450a8d ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xc8bb8d5f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xc9463067 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xca25f9fc ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcad5589f ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xcd82b5a1 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xd18021f6 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd617474e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xd63ab358 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd83c09d2 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xd8a1eceb ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xdb619481 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xddcb134a osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe1353b5b ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe1c7d243 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe22f6a99 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xe248bbac ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe51634f3 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xe64b690f osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe888097c ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xe914a93d ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe92e3d5a ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xec51e822 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf022a217 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf0407567 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf096f00a ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xf485b7d6 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf4ced8e8 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xf71d7c66 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xf82afada ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xf86379e1 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xf905228c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xfcc84540 ceph_msg_put +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2c9a4077 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x33428599 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x3e9c4733 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x962dc941 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x115c89cf wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x430412f1 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x68cff859 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0644ad0 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd93450f2 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf1f9699a wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x6ef3b5fb __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd2bc93fd __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xb842b1f0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x240b38a4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x64493b38 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd852e948 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xee40ca31 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x303cf284 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd2b11a22 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xeecb382c arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfac7bcd4 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7cb07296 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xafd2f4e9 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb4132cfc ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe86a702e ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x2d3d62bb xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x82db8938 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x8dec91de udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1883deb1 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c529ad8 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x61f150ed ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67fc748f ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e4aadc4 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e7ecd69 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8ef4e9a0 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9467e769 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcc42d179 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0b23f522 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x263923f2 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa349af58 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xccaaeaf2 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x1c0bff2b xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x3d8d1380 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1a9722f8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x98ad8038 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x1cc2b756 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x402af907 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x536a514b lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x6f9d463c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x8fb9bf65 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xa194f9cb lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb6b89d6a lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xbe48732b lapb_data_received +EXPORT_SYMBOL net/llc/llc 0x062f6060 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x08234220 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x0bb1e537 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x16441e0a llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x8ba81ac0 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa7aac4f8 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xd0f9daa6 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x0082f224 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0097ac69 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x023f4543 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x04e3a28e ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x055de2b0 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x07044aeb ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x074f1101 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x077646c7 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x07e16c89 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x09bebd3e ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x12145425 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x13e47ec6 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x182cda7f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x194a9fbe ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1d276f3d ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x1d75d018 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x22b26346 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x269fc042 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x2dfca4c3 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x3269cffe ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x36619ef8 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3833878c ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3b16f23d ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x3d08fd29 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x3e7422b7 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x408e8316 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x42459c35 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x4488936a ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x4fe1183c ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x510c429f ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x515c7f50 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x553769dc ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x56353b84 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x58fcc80f ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x5a327f3c ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x5c8c8516 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x5e2f1a55 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x608946aa ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6188e20c ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x62962901 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x62c597ed ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x66fad6a4 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x683b3fce ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6a1a0d83 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6a84fa54 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x6bec0584 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x6f6c2229 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6fc76c46 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x719db9f9 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7478dc5a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x74fd4e24 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x79ad2cc2 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x7a986070 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x7c739745 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x7c816bb1 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7d064220 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x84e052b1 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x85b01851 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x899c2b08 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8d99121c ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8f82d99c ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x9399d196 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x97acd875 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x97d81bb0 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9ee92f0c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9fabb684 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa703e916 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xa79da9cf ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa918c7b9 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xabed6933 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xb1d15fdb __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xbba49001 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbd6379e3 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbe16c4df ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xc2bbcb3c ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc404af52 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xc567d4ac ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc9ace0ac ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcf86601d ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xd016c1e6 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xd0397763 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd1cf13eb ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xd467b218 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xd924a4bb ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe1856f30 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xe1adf1d8 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe462188b ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xe4d59e8c ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe637a2a1 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe767adfd ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe9ea51a6 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xea5a6021 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xedcab6b6 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xf453d9f8 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xf4adbbd2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xfa40bb41 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xfb65d491 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfdcc3323 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xff104a6c ieee80211_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3450b8d9 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x3933d8e1 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x468728f1 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x5df5b8a7 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x67f85523 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa8d890bb ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb9ec0746 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xd43b05a0 ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0391a663 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10d5c7ef ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24b5ef4d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x566a399f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5dc86edc ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x687935d4 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a6f9c96 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2f344df register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb15c1c2d ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6565e41 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbb3d469a ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc6f4ccef ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7ec302e unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc0cda14 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfdad7564 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xfa6bcadc nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x04c29970 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5760ede6 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x78cdc8eb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xad182806 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x160e536a xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x35f29d3a xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x41f128e6 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x48af2e09 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x649805f7 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xc6fbb219 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xe7934e43 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xe86d0448 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xea3b5654 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf195144f xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x06c821a7 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x082c5428 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x0a78a2fd nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x21dcb1fd nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x2d269918 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x3fee6f72 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x53a60419 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x75f8c4dc nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x89509be3 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8dca3e17 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xa5365ac4 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb613002d nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xbedbf070 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xc648d7b6 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xcdb52741 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xd5e1f2ad nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xd8f9e083 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xdd95ef1f nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe2f85473 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xf05b5c4e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf60a3593 nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x064dd105 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x250f204f nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3132d60b nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x3b10192b nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3b50ee23 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x4148ae51 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4ac49393 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x4b74aef6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x4eb40307 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x53a5bd19 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x5d0e0db5 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5fcab5a6 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x66bc2ba8 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x6ec9d1ee nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x78de2f24 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7b48b515 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8f29e48a nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x924228dc nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x92d85a59 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x97491de7 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xa0794c6c nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xaac0f8bc nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xb04b1c21 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb1c4d73b nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xca83ec4a nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xd1bf2f14 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd92ca3ef nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe24476e1 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf98ca821 nci_core_init +EXPORT_SYMBOL net/nfc/nfc 0x019a72a9 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x0733ead8 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x0ea76cf3 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x11ee010b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x1d165b6d nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x3841ba93 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x39951a20 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x41b64dce nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x4f6ac13a nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x58f83deb nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x724223db nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x74d9d9ca nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x82ea2c59 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x8947671b nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x9ce0b14f __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x9fd0ab9d nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa5a21327 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xace9c011 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xbbcdbab1 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xbf4b40e5 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xe1d673a1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xe5bf98a1 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xf59aaebb nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xf9fccab1 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xfc3a3b06 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x46c217d8 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x981b8bbe nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9cce0295 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa8f6b40e nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x11205023 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x26c55e47 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x2d0167df phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x48a4851e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x925116d7 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xa2c3a123 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xaaa61b68 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xda0037d0 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0e96a51c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x124849cc key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1802bb7d rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x21dae3f9 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b31da9c rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3711dacf rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x50ba6ffb rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e6788ea rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7c32992c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x81f85400 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x86f83dcf rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bf9459f rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaea32a7e rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbce317d4 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd6a27fe rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf859530 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf0e8b14a rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7607cd9 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0xe72c6710 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2f111f9f gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x522501ee gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb37131fa gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x00fa63bb xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x54ff6355 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9e11675b svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd6d796da xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x81fbc75b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xb2b60098 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xb96173d8 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xe15ac2c7 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x40d57d0a tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x05f0c1cc cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x07c98cfe cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x0ada0209 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x0ceaac13 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x0d7c2a45 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1019ae8e cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x1132dcde cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1278c14b cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x12bb35c7 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x12eaccd8 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x164f0d77 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1896faa2 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x18d5094b cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1b8568a4 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1df96289 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x1fcef1b0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x25bc28ec cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x29651ed7 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2d0f9083 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x338debcd cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x38a99e41 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x3a837b42 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3bc68476 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e0bc4ba wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x3f3f9832 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x406c2482 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x40de3df4 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x41288969 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x419ba67a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x41d2f532 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x42291ee0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x487d78bf ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x49f4cb40 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x4d3b01da cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x4d865b55 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x4de810f9 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4f34573c cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x51703e5c cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x51b28fb6 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x57433397 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5b014c3a cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5ba56cae wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5c0a1732 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x5cc826f7 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5cd1df27 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x60e02835 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x694a4b92 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a32594b cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6f69e6dc cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x70b90fbf cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x70fb9699 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x711f0e43 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x74436e89 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x75950a1b cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7d8dd7cf cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x82c8e5f9 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8379a950 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x85c72afa cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x8b2de6af cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8cfc97a1 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x8d40b68d cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8ea4c63f __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9348cdcd cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x950acb53 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x96988048 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x96b4a1cc ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa069d300 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xaad37823 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xaea4c252 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb370c4c4 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xb4d80fe4 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xb55174f0 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xb5872cfe cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb9c2b13d get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xc1674a43 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc4a7f90d cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc4c83275 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc8b0c3f0 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xd3670b22 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd40b468e cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc10dcb1 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xdec734f9 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xe1cccdf9 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe49fb4db regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe5e03095 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe6c9e9c5 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xec35b67b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xedc6dcad cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf09144ac cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf1e83141 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xf24b35b4 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf4e65cbe regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5e29832 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf75d1eba cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf9915e4e wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfdb1cbd3 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xffc366ef cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/lib80211 0x2842caa9 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4aeb2c31 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x75e45914 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd948cd85 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xfb5efb86 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xff978cab lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x460cd407 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x27bf514a snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x86ba26dd snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa8dfe60e snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe8c64951 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xf129a376 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x03f4d65d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x002479d0 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x017ce21c snd_info_register +EXPORT_SYMBOL sound/core/snd 0x01ee6469 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x05b64c48 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x08a03e43 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x0943e59c snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x0d591511 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x15b27f62 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x17cb3a8f snd_device_free +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2552ea5a snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x26e6bb92 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x2c69893d snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x38ac0c2c snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3ca887b4 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x476fa102 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4c70aff8 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x4d8b616e snd_card_register +EXPORT_SYMBOL sound/core/snd 0x52077000 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x534d49c8 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x640ae8d0 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x68da7974 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x705c881c snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x78b17af1 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x8c94ee4b snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x8d8127bf snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x90702592 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x94338d1f _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x9aa720df snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x9da197eb snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9fce1c78 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xa3dd2757 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xa69dbde4 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xa8e2b865 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xab4364b5 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xb04bccd7 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xb0d8dbe9 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb315c0a4 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xb638913e snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd377ceb0 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xd6b1a674 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xda71c155 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xda997bf4 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xe203d1f0 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xeb14b401 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xeba73455 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xf332041a snd_device_new +EXPORT_SYMBOL sound/core/snd 0xf55d66db snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xfe3be672 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0xb4b37b21 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xd3b651e1 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xab5ead02 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x094ef477 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x12ae2095 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x13bef9c9 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x13c7326e snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x1a28898e __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x1b9f89c0 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x213d1cda snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x21e7abbf snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2341dd8b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x24e4aa99 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x2ab74e84 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x2ca33582 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x2ea4d2e0 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x2fcc2a3f snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x303cf0ea snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x381b2e5e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3abce488 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x3c662918 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x4bffffef snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x529ccf0f snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5b64d68b snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x5cb10041 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x62fb352e snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6b3b54f5 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x71f5df8e snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x75451d81 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x90c09dac snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x996d3c5e snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa0a96f6c snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xab655433 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xab958d5b snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb13e5fb4 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xb1937e8f snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xb1c41bcd snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xb5c1cb80 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb71dc858 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc0764ede snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xc17ff8a4 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xc3336ae4 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc6b5465e snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc9a3bbcb snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xda2cb669 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe0a5904c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xe3c716dc snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe7fe653c snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xebfdb314 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xf090991b snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf4eae0f1 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xf70bb333 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0459e0ea snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c38b803 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e65047e snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f223aea __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3afff9b0 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3bc7323d snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x590c4b41 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5ac15dfb snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5cce659a snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x72c0d44e snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x79d00a3a snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f1e4b12 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x844ade12 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4d6a7be snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6132d3f snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbe63747 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc695d55c snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1576e7a __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe4e82c5c snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdc8a675 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xc6c2b1f5 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x103d8dac snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x24de8e4b snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x4229954a snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x44298df5 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x58edcca7 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x5ce34d04 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x70ef0e74 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x731e5ef2 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x95e51418 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x9a997e3a snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x9df90590 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xba1f484f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xe27c5e01 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xe54df299 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xfb0b5c89 snd_timer_global_free +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf0c2b0cd snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x040b8614 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x758533d1 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8fc645bc snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa94558f0 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc44e2c98 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd0516442 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe510cd1a snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb5275cb snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb6ea90b snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x039e7398 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0a304bac snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x25d774b8 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbfd0bf93 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc68966df snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdd6d9fa9 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe0421e9a snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe6ae286f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf83519b3 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0149ad66 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0959c311 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f21aff4 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10557bac fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11fdb655 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c5502dc amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e8de303 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26c1e790 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2abb2bed amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b202f31 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33cedb34 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41d24eef amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45eecaf4 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x507d67d2 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x554f0a45 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5738ad77 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b919d16 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78c1fddc cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79e846c3 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7acdecca amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91438305 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97f12e46 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb584d466 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8890746 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc98a9307 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca186018 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbca2d0c fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcfaedaf5 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7a6e9db cmp_connection_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x1518e82a snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5a9e2923 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1af0b9c1 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2aeabc3a snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x522e14bd snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6e3fc4de snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x74a2e85f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa2375325 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcc925da6 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe261bcea snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0b57cd71 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x15eae2b3 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3fd0e49e snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x88e34b67 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa6812f15 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf0bbb55d snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0331d8e1 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5d68df5e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8974249f snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdfdda5f9 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x2ef2d367 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc58e0304 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x06765e24 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x67322307 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7add51e2 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8ca16847 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8d132b31 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeb4638eb snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x038a8514 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3723f22e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x45d2e4b5 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4c24b698 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8ba59318 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa2d8c9ee snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2a2f203f snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x42d8df6e snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4b09a7d9 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6b562dea snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8590d212 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x993b9692 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaa3b5365 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb80b2ddb snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf3512681 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf538f8d8 snd_sbdsp_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0aa850c6 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0c6d5897 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x14641b71 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x23965392 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f9cce5e snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x430090f9 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45ae65a2 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47e5b55e snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82f7a04f snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8c996433 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa151b850 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa912dbda snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa9c21e96 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf244ec2 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbfb59682 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc189bfee snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc48519bb snd_ac97_suspend +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x78158be8 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x034f47f1 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x181591c9 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4d95e060 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x595dd639 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9a69b00f snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc3a3beb4 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xeff4a1bb snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf33ed0e3 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfe45b28e snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x249c18f6 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa91b68b6 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf1d0577f snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x00fc7a53 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x049fec6f oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13338e15 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15bee779 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x293709d3 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33491f3a oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a06c71d oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x51ba2aec oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53036d10 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x61d13032 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7bb83d2b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c435772 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c85d9cb oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80468613 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95505a26 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9afeadbb oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaf3c79c6 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc88e7fb7 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd1f0447 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfff059a0 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0395d9d5 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2f926d68 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3559b717 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xac368b7b snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf0e3a605 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xd72e5342 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x15a74a03 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xaf5d3649 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xb4a43ad1 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x801441b8 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf5a74891 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x12a857c9 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x1f736d00 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe6a64ebb aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x719b8794 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xa4b5c5bb aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x229871d3 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x54c662df wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9e0c3a90 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/snd-soc-core 0x83596e2b snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x053fb193 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ed7881b sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x147a1827 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18072c50 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20b2a77b sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23409679 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23d25d74 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2649d7a8 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a0f18f2 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c08f9c1 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x311d47a9 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3548bb68 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36aecafc snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b2b440e snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4038322f snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43652b72 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x47463620 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4810b3af snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x558e4734 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a00db09 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a3bbbe7 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a94a720 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61a60683 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x633beedc sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a6daf31 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6bc48004 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f52f492 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x720f6c42 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x786acac2 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f54f745 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x810f61f3 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82ed8ca2 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x945a8211 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9837c99a snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f981d43 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f98c452 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa1eb39b5 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa26c990 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab60a848 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2a762ce snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4925bb0 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb83383a4 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf5c6664 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccbdb299 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfc5e3b5 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1f2e396 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3c9a558 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4f974d5 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd59fdf86 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7645eea sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda1c7b87 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdde90764 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeba4314e snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee7170ab snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1a57899 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8c23fc4 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd39f389 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff515104 sof_machine_register +EXPORT_SYMBOL sound/soundcore 0x11f72452 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x660129a3 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x9811e5a9 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd615e573 sound_class +EXPORT_SYMBOL sound/soundcore 0xfaed835d register_sound_special_device +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4ef46148 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x87d36908 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb41e11ad snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd7a33e92 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe19205ce snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeaa9b7ff snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xe5f8cc50 __snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x000a92ea agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x0034b44e __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x00415211 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x0048ac88 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x0067bf67 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x008f9152 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x0096958b rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00a72ffe linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e01f97 udp_read_sock +EXPORT_SYMBOL vmlinux 0x00fb8239 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01118d8b deactivate_super +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x013f48c9 __x86_indirect_alt_call_r12 +EXPORT_SYMBOL vmlinux 0x01477b79 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x015b431b sockfd_lookup +EXPORT_SYMBOL vmlinux 0x0163d35d pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x01674a6c block_read_full_page +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017d6d51 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017ebe64 sget +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018dbd48 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x0192931d ptp_clock_register +EXPORT_SYMBOL vmlinux 0x01989192 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x019e4dd2 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x01b47da9 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01be5bae fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d91824 input_register_device +EXPORT_SYMBOL vmlinux 0x01f13d9b nf_reinject +EXPORT_SYMBOL vmlinux 0x01f3e1be __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x0200391b elevator_alloc +EXPORT_SYMBOL vmlinux 0x0200fcd8 dput +EXPORT_SYMBOL vmlinux 0x0207d60a dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023bbf71 d_find_alias +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x025474cf vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027fc68a flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x02887c1c elv_rb_del +EXPORT_SYMBOL vmlinux 0x028a1820 freeze_bdev +EXPORT_SYMBOL vmlinux 0x028fc2c0 inode_init_always +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a2bb40 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x02a8e212 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x02b71944 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02c8d567 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x02eb4a7b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x030feaa1 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x0325c353 genphy_update_link +EXPORT_SYMBOL vmlinux 0x032d5319 single_release +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034541ad seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x036122c9 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0363acf4 mmc_get_card +EXPORT_SYMBOL vmlinux 0x0365231c page_pool_destroy +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036db95d vfs_mknod +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037e769e reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397060e ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03ba547b filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c231e0 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x03cea3e9 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x03da7543 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x03db95a9 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03ffe3b0 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x040648b5 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x0424fecb sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x04251db7 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x042daad5 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x0438b51e dev_set_group +EXPORT_SYMBOL vmlinux 0x04438a3b simple_rmdir +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045c714f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04a89d93 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x04a954ca sock_no_linger +EXPORT_SYMBOL vmlinux 0x04b1225b serio_open +EXPORT_SYMBOL vmlinux 0x04b62190 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x04c57b51 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04cf20db __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04db42f7 __x86_indirect_alt_jmp_r10 +EXPORT_SYMBOL vmlinux 0x04dbaeec md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04effa8c phy_stop +EXPORT_SYMBOL vmlinux 0x04f98abc iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x04fdc23f nd_device_unregister +EXPORT_SYMBOL vmlinux 0x0503df3f i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052d99a5 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x053be34c skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05526083 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0562b10d mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0566040e i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x05718363 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x058e7ed8 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05b7bd10 locks_free_lock +EXPORT_SYMBOL vmlinux 0x05b9715b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x05d6f30c peernet2id +EXPORT_SYMBOL vmlinux 0x05dce0d7 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x05ebd62c rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x05fba5b6 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060c5168 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06273a9f ps2_begin_command +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063dcd93 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x0664fe76 seq_putc +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06bc848d init_task +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06bef38d __alloc_skb +EXPORT_SYMBOL vmlinux 0x06c70c70 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x071f93c8 phy_device_free +EXPORT_SYMBOL vmlinux 0x0727956c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x072f51b6 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x075cb72f tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x0778c168 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x077d7002 block_write_full_page +EXPORT_SYMBOL vmlinux 0x078d6bf0 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x07a73b47 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b49b36 inet_release +EXPORT_SYMBOL vmlinux 0x07c7a0b2 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d1dd06 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f67ad5 phy_suspend +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081bebb6 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x0826fb56 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0851b608 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x08549784 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x0855ed39 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x08756226 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08a1bf8b ip_frag_next +EXPORT_SYMBOL vmlinux 0x08a358c2 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x08b2b8c3 register_netdevice +EXPORT_SYMBOL vmlinux 0x08c120ea scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x08f3f080 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x09169171 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x094669b6 I_BDEV +EXPORT_SYMBOL vmlinux 0x095548e3 skb_copy +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a353ae __x86_indirect_alt_call_rax +EXPORT_SYMBOL vmlinux 0x09d2fd8f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e7131d sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x09ed1847 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a27da30 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append +EXPORT_SYMBOL vmlinux 0x0a2fee5b napi_enable +EXPORT_SYMBOL vmlinux 0x0a30f853 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0a36fb41 bio_reset +EXPORT_SYMBOL vmlinux 0x0a419da6 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a92ec74 boot_cpu_data +EXPORT_SYMBOL vmlinux 0x0aa20310 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abd7ed1 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adbfb0d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x0af5fa61 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x0b09b194 dev_addr_add +EXPORT_SYMBOL vmlinux 0x0b0be8c7 sock_i_ino +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b22ad38 __page_symlink +EXPORT_SYMBOL vmlinux 0x0b246d2d bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b27f390 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b29dee3 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b3b8afa blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x0b3d9a62 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b85746b __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x0b8986ee param_ops_charp +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba66b47 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x0bbd875b generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc67f1f touch_buffer +EXPORT_SYMBOL vmlinux 0x0be48b74 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x0bf0756e security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0bf6acae set_disk_ro +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0bff897f skb_find_text +EXPORT_SYMBOL vmlinux 0x0c081e8f skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2c2ecf mpage_readahead +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c70aa9a ps2_drain +EXPORT_SYMBOL vmlinux 0x0c7b042e register_console +EXPORT_SYMBOL vmlinux 0x0c955221 key_link +EXPORT_SYMBOL vmlinux 0x0cbc7287 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x0cbc9935 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x0cc0e72f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cccf90d zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdcfa95 arp_send +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ce20d59 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d2b30b1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0d3d8346 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x0d3fc13d inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d80545f dup_iter +EXPORT_SYMBOL vmlinux 0x0dab4027 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x0dada150 vfs_llseek +EXPORT_SYMBOL vmlinux 0x0daf05c4 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x0dbcb664 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x0dd57b02 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x0e012985 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c9785 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e400d25 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x0e50b482 dm_get_device +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e768e11 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x0e876d8b clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x0e9cd4cf devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed66472 devm_iounmap +EXPORT_SYMBOL vmlinux 0x0eefee9c __netif_napi_del +EXPORT_SYMBOL vmlinux 0x0efb9c83 neigh_table_init +EXPORT_SYMBOL vmlinux 0x0eff0b3d tcf_idr_create +EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x0f05f2d4 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0b56be clk_add_alias +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f39a117 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x0f62fdb5 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x0f7acc8e __ip_options_compile +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f97a7a2 tcp_req_err +EXPORT_SYMBOL vmlinux 0x0f9c55ed xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0fa1e741 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fae80f2 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbd1660 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdf23ab key_revoke +EXPORT_SYMBOL vmlinux 0x0ff04790 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x0ff0b222 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100ca376 genphy_suspend +EXPORT_SYMBOL vmlinux 0x1027d7e5 seq_release_private +EXPORT_SYMBOL vmlinux 0x10335b32 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1035d7f9 d_invalidate +EXPORT_SYMBOL vmlinux 0x103b8725 unlock_buffer +EXPORT_SYMBOL vmlinux 0x10516698 input_set_capability +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105f8441 d_path +EXPORT_SYMBOL vmlinux 0x1066bd03 tcp_filter +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1077f592 bdi_alloc +EXPORT_SYMBOL vmlinux 0x10793701 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x109d6484 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x10a137e3 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x10a1905f phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x10a2b813 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x10aa498b max8998_update_reg +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10cb90a0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x10cde3c3 tty_lock +EXPORT_SYMBOL vmlinux 0x10d6d400 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ee1dba to_nd_dax +EXPORT_SYMBOL vmlinux 0x10f08c8d alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11191f94 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x111c8cbc fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x11274681 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x11590d39 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x116034a1 dev_open +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11c01996 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x121f8545 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x12244347 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x122ad285 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x125a0be5 bdev_read_only +EXPORT_SYMBOL vmlinux 0x126b71e6 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x1283522b mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12e12c72 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x12e7773d proc_create_data +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fea6d8 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131e3007 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13280d7d inet6_getname +EXPORT_SYMBOL vmlinux 0x132d0963 udplite_prot +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x1346de14 unregister_netdev +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x13595e25 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x13644493 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x13784f13 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x137a8b9f nf_ct_attach +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x138a9545 vfs_setpos +EXPORT_SYMBOL vmlinux 0x138a9fc5 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x138d0dd4 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x13928853 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x13937b81 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x139563f9 pci_find_bus +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x139f5fc6 inet_shutdown +EXPORT_SYMBOL vmlinux 0x13a10ea4 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x13a31cfa md_integrity_register +EXPORT_SYMBOL vmlinux 0x13be548f vfs_unlink +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13c660a2 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13de2de1 cdev_add +EXPORT_SYMBOL vmlinux 0x13e9c000 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x13f238d1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1409244f tty_port_put +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x144a2bab kernel_sendpage +EXPORT_SYMBOL vmlinux 0x145c01bd nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147803e7 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x1480ddb9 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148b97eb ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14c9085e skb_unlink +EXPORT_SYMBOL vmlinux 0x14d66c7d set_bh_page +EXPORT_SYMBOL vmlinux 0x14e55ae9 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x14fe024f component_match_add_typed +EXPORT_SYMBOL vmlinux 0x1516be6a blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x151a5796 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1522a856 dst_alloc +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1528b6f5 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x1536e07c param_ops_long +EXPORT_SYMBOL vmlinux 0x153ce8e9 phy_read_paged +EXPORT_SYMBOL vmlinux 0x153ed4f6 input_register_handler +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155c9f5e simple_link +EXPORT_SYMBOL vmlinux 0x15694eee d_move +EXPORT_SYMBOL vmlinux 0x15b1f049 genphy_loopback +EXPORT_SYMBOL vmlinux 0x15b2ebc9 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c16827 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15e26937 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x1617ed9e simple_open +EXPORT_SYMBOL vmlinux 0x161e2fd7 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16307ff9 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163a627b tty_port_close +EXPORT_SYMBOL vmlinux 0x163b215c jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x164cc03d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x164f4d8c key_move +EXPORT_SYMBOL vmlinux 0x166dc152 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1680c9de tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x168c142a scsi_device_get +EXPORT_SYMBOL vmlinux 0x1698bbbd pci_get_slot +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169ff83f sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x16a869f9 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x16b1cf1f t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x16b6eb9f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x16c007dc scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x16c1b487 vme_master_request +EXPORT_SYMBOL vmlinux 0x16ca96d3 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d170b6 sock_edemux +EXPORT_SYMBOL vmlinux 0x16d8e000 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ea8868 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x16eb3123 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x16f0c63c seq_lseek +EXPORT_SYMBOL vmlinux 0x16f18d62 lease_modify +EXPORT_SYMBOL vmlinux 0x16fbfeef nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x16ff3e24 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17127e4e stop_tty +EXPORT_SYMBOL vmlinux 0x17224980 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x172630e4 pci_get_class +EXPORT_SYMBOL vmlinux 0x173947e3 backlight_force_update +EXPORT_SYMBOL vmlinux 0x174ac5b1 napi_get_frags +EXPORT_SYMBOL vmlinux 0x174f7636 kern_path_create +EXPORT_SYMBOL vmlinux 0x175cef93 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1761989e mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x176d8c8a pnp_get_resource +EXPORT_SYMBOL vmlinux 0x17948771 skb_store_bits +EXPORT_SYMBOL vmlinux 0x179f50f8 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x17a18ff6 cdrom_release +EXPORT_SYMBOL vmlinux 0x17b70537 build_skb_around +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17e25ae2 seq_read +EXPORT_SYMBOL vmlinux 0x17e72f7c serio_rescan +EXPORT_SYMBOL vmlinux 0x17f0948d sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x180d7fd2 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x1831c36f devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x18321301 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x183e81db mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x184a947a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x185c44c0 inet_accept +EXPORT_SYMBOL vmlinux 0x18714fcc xsk_tx_release +EXPORT_SYMBOL vmlinux 0x1880d588 file_update_time +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1897d68d uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x18a8014e xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x18a93b6e input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x18b4ae2a dma_supported +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18d3fb31 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x18d5a7a4 generic_permission +EXPORT_SYMBOL vmlinux 0x18dae041 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ff8e3c vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x19065306 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1906e621 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x19088fe8 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x190d1d52 simple_get_link +EXPORT_SYMBOL vmlinux 0x1923ce2d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x193c4b54 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198587a0 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199654f6 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x199759ce audit_log_start +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199effab input_unregister_handler +EXPORT_SYMBOL vmlinux 0x199f9465 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c0854d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x1a0863b7 dst_release +EXPORT_SYMBOL vmlinux 0x1a089b7e dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a263196 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x1a2ae7b0 sock_pfree +EXPORT_SYMBOL vmlinux 0x1a3d0725 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1a442834 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a54690a __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a821a00 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x1a8a4c7b kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9ba2ab neigh_app_ns +EXPORT_SYMBOL vmlinux 0x1a9d7425 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1ac33cb9 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ae2d038 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b053dd7 cdev_alloc +EXPORT_SYMBOL vmlinux 0x1b3346c3 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x1b3e0b7e wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6e7cb4 key_put +EXPORT_SYMBOL vmlinux 0x1b754d63 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7cee8f touch_atime +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8c2182 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x1b973246 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1ba9c53f jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bc1afc2 register_md_personality +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1be110f1 xp_dma_map +EXPORT_SYMBOL vmlinux 0x1bebd942 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x1c094458 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1c0c818e generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x1c1b5b2b scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1c1e4a1c security_unix_may_send +EXPORT_SYMBOL vmlinux 0x1c243c8a single_open +EXPORT_SYMBOL vmlinux 0x1c4f0530 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c67d124 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x1c84994a __mdiobus_register +EXPORT_SYMBOL vmlinux 0x1c8b8ff4 param_get_byte +EXPORT_SYMBOL vmlinux 0x1c9c0173 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1caccb12 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x1cb0d016 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb3c8bb netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1cb44ddb tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x1cb5f78e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1d03ede8 __x86_indirect_alt_call_r8 +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d098beb __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d20e5cb init_net +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d36c9a2 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x1d381c84 dev_uc_add +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d447c13 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x1d6d30ed __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x1d9d224d dquot_get_state +EXPORT_SYMBOL vmlinux 0x1d9ea933 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x1da24bd8 skb_push +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbb54eb neigh_lookup +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc83216 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd773be config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e3a3923 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x1e52f26f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6ec0cf flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x1e964184 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb1ad6c fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef9e057 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1f151e47 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f7f6681 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x1f927367 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1f9850a6 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdb066c pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x1fdc04f3 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200020e4 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x20066eac vfs_link +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200cc102 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x2019b5f2 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x20289152 arp_tbl +EXPORT_SYMBOL vmlinux 0x203e83bd dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x204f1008 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x204fb5ad request_key_rcu +EXPORT_SYMBOL vmlinux 0x20505bd9 kthread_bind +EXPORT_SYMBOL vmlinux 0x206854ae mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x207c9e4a serio_bus +EXPORT_SYMBOL vmlinux 0x20808109 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x2094b4b1 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x20a4d872 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20c8c865 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d9f0f2 __bread_gfp +EXPORT_SYMBOL vmlinux 0x20e405e3 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x21048475 processors +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x21361a85 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x21366626 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213caf40 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21408aea ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x21425205 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x21469974 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x214ea67d __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x215efcb5 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x215fc7ca phy_init_eee +EXPORT_SYMBOL vmlinux 0x216e81f4 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x21802d36 clear_nlink +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x2191df23 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x21ac8f65 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x21b28309 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21bf7039 __scm_destroy +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x22218578 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x2223cd66 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x222c9394 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x223f4d05 sock_rfree +EXPORT_SYMBOL vmlinux 0x22692274 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x228be3f9 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b78983 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x22c04f62 write_cache_pages +EXPORT_SYMBOL vmlinux 0x22c1aa21 __f_setown +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22e2bc5b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x22f6eb4a mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x22fc9d81 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x231c63c1 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x2320ec44 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x2341801b vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x234950f3 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x2351b79b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x236482ad tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2367b830 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x236feea3 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x2371e3dc ll_rw_block +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23815316 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x2385efc7 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23ac90ff ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x23b532a1 __x86_indirect_alt_jmp_rbx +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d055e0 blk_put_queue +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e98e26 rproc_add +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401d8c5 netlink_capable +EXPORT_SYMBOL vmlinux 0x24065461 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x240d9876 dm_io +EXPORT_SYMBOL vmlinux 0x2413505f vme_irq_generate +EXPORT_SYMBOL vmlinux 0x241a0093 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x241d0564 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24244bf2 __pagevec_release +EXPORT_SYMBOL vmlinux 0x242da3ee dma_async_device_register +EXPORT_SYMBOL vmlinux 0x243976f3 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245e7e73 sock_no_accept +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248a8ef3 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e24932 proto_register +EXPORT_SYMBOL vmlinux 0x24f42352 netif_device_detach +EXPORT_SYMBOL vmlinux 0x24f7a509 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2523abc7 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x2523fcd6 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x252667f9 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x253caa17 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x254f621c uart_add_one_port +EXPORT_SYMBOL vmlinux 0x25501ac3 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x25686909 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x257a105e try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x257c2f1e from_kgid +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x259a7672 sk_dst_check +EXPORT_SYMBOL vmlinux 0x25bf64b7 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x25d095e0 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x25d3d4e9 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25dfcdf3 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x25e48d7d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x25e539db ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25efed77 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x260a0252 ipv4_specific +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260b4921 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x26106791 posix_test_lock +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263cba69 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x2653a1a7 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x265dcdc9 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x26664314 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26a2d16a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x26c953c2 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e72104 param_set_short +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x26f9b6f2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2740c842 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x2745cd81 pci_release_region +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274afbfb __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x275b5c75 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276a4d0f inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277fae7f tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27a6264f __serio_register_driver +EXPORT_SYMBOL vmlinux 0x27a93e93 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd6a71 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e3fb19 udp_prot +EXPORT_SYMBOL vmlinux 0x27f00d5e iget5_locked +EXPORT_SYMBOL vmlinux 0x27ffefa1 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x28045d4a __x86_indirect_alt_call_r15 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28187b9a release_sock +EXPORT_SYMBOL vmlinux 0x283aecb9 igrab +EXPORT_SYMBOL vmlinux 0x28424b54 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x28425523 icmp6_send +EXPORT_SYMBOL vmlinux 0x2856ea36 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x2859e88e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x285d1a6c ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x285d2bdd nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x285f353c ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x285fe93e security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x2865c67b ip6_frag_next +EXPORT_SYMBOL vmlinux 0x2871ed7b blk_get_queue +EXPORT_SYMBOL vmlinux 0x2872477c get_acl +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28796f0f security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x287a4f75 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x2880f129 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x288ae50e xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x28a42ab1 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x28b29404 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x28b56c1d qdisc_put +EXPORT_SYMBOL vmlinux 0x28bd6847 rt6_lookup +EXPORT_SYMBOL vmlinux 0x28cca729 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x28dac1dd neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e84752 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x28ea0e87 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x28f8baf9 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x290d86cf param_set_bint +EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x2922e8a5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x292f831c pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x2932ea85 phy_device_create +EXPORT_SYMBOL vmlinux 0x2937bb2c km_query +EXPORT_SYMBOL vmlinux 0x2948b856 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x294df998 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x29589508 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x295d8079 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29675a0c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x29684d0e task_work_add +EXPORT_SYMBOL vmlinux 0x29688e81 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x298e7eb0 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x29a5729c fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x29a87ef4 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29cb6832 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x29db9ffb netif_receive_skb +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e7dcca vma_set_file +EXPORT_SYMBOL vmlinux 0x29fa3a13 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x2a1312b4 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x2a24b5d3 fput +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a415066 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x2a4b3359 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x2a5164b8 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2a6556e3 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a7a70ba skb_tx_error +EXPORT_SYMBOL vmlinux 0x2a9357e2 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa43a63 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2aafb0a6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x2aba599c agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x2aba6555 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x2ac5d668 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x2adb76b3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2b0ddab4 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x2b1c59a3 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x2b3824dd netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x2b421bd7 proc_set_user +EXPORT_SYMBOL vmlinux 0x2b511220 security_path_rename +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b59e2ab scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x2b67f747 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b6fb039 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x2b73ce6a block_invalidatepage +EXPORT_SYMBOL vmlinux 0x2b75126c uart_update_timeout +EXPORT_SYMBOL vmlinux 0x2b96ae23 pci_dev_put +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba5744d nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x2ba7d7c4 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb81dd5 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x2bbae338 d_exact_alias +EXPORT_SYMBOL vmlinux 0x2bc64a3c vfs_statfs +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdb8e9c nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x2bdfa5ce kobject_add +EXPORT_SYMBOL vmlinux 0x2be66026 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2d48fc noop_llseek +EXPORT_SYMBOL vmlinux 0x2c32ff09 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x2c334252 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c6a4569 cdev_init +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c74b054 arp_create +EXPORT_SYMBOL vmlinux 0x2c84b544 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x2c9d472d pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cb4bc60 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x2cb73d5d pci_get_subsys +EXPORT_SYMBOL vmlinux 0x2cbfa100 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd3178c netdev_alert +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ceda237 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x2d08993b inode_init_owner +EXPORT_SYMBOL vmlinux 0x2d0d53d2 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3bdff6 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d749105 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x2d798c13 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x2d8df7db dcache_dir_open +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9a7161 migrate_page +EXPORT_SYMBOL vmlinux 0x2da269a0 load_nls +EXPORT_SYMBOL vmlinux 0x2da2ed33 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x2da5397a gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x2dc80fc7 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x2dccf056 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd5fbc8 drop_super +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de267f2 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df102bb netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x2e01f27e dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c1258 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e43f8e6 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x2e4bde2d __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e7a7c78 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x2e7d51ee d_set_d_op +EXPORT_SYMBOL vmlinux 0x2e9075bb blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2eb3a49a posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x2ec4a35f do_clone_file_range +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2edbede6 _dev_alert +EXPORT_SYMBOL vmlinux 0x2edd8724 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1b9273 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x2f1e06d4 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x2f269bf8 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x2f2a3999 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f48cf46 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x2f616a30 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f880ed2 __neigh_create +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbc6d9d pci_clear_master +EXPORT_SYMBOL vmlinux 0x2fd0d42b dqget +EXPORT_SYMBOL vmlinux 0x2fd6b7cc phy_error +EXPORT_SYMBOL vmlinux 0x2fd85adc kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2feb8ab6 vfs_create +EXPORT_SYMBOL vmlinux 0x3002178d input_inject_event +EXPORT_SYMBOL vmlinux 0x3002ea56 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x3010d526 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x30135d23 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x301b3d29 no_llseek +EXPORT_SYMBOL vmlinux 0x3020881f generic_fadvise +EXPORT_SYMBOL vmlinux 0x3032c593 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x303d2ac0 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x303fd77d __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x306c24ae __frontswap_store +EXPORT_SYMBOL vmlinux 0x30742bc3 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x3087264d input_allocate_device +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30975801 tty_unlock +EXPORT_SYMBOL vmlinux 0x309999e4 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x30a7bf25 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ac1c67 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b46da4 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x30b8e622 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x30c84b3e key_alloc +EXPORT_SYMBOL vmlinux 0x30d81b3a __fs_parse +EXPORT_SYMBOL vmlinux 0x30dc0ea5 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x30dcdca4 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30eca09f mmc_request_done +EXPORT_SYMBOL vmlinux 0x30fa4921 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x311163b0 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x3114ca5c mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31293dfd bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x31407526 phy_attach +EXPORT_SYMBOL vmlinux 0x3151adae mmc_put_card +EXPORT_SYMBOL vmlinux 0x316ba78c flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x317c13eb sg_miter_next +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b2055b dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x31b8af25 pci_free_irq +EXPORT_SYMBOL vmlinux 0x31ef5e2d flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x31f636cf jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x322f2187 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x323c949d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x32507f5c dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32706aa7 iget_locked +EXPORT_SYMBOL vmlinux 0x3275b3d7 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32928e94 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x32a1ada9 vme_lm_request +EXPORT_SYMBOL vmlinux 0x32a8eefb bioset_exit +EXPORT_SYMBOL vmlinux 0x32ca64b5 truncate_setsize +EXPORT_SYMBOL vmlinux 0x32cbfddf param_ops_hexint +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e98e81 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x3307e91a tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x330f28c6 uart_register_driver +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x3360328e sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x336042c6 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x336dc9a4 bio_devname +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33762b64 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x337b47fe devm_ioport_map +EXPORT_SYMBOL vmlinux 0x33810f94 set_anon_super +EXPORT_SYMBOL vmlinux 0x338353b8 dquot_transfer +EXPORT_SYMBOL vmlinux 0x33842de5 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x3399ee86 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x33a6958e pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33cc1411 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x33da3b88 scsi_device_put +EXPORT_SYMBOL vmlinux 0x33dcb457 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x33dfb8ad skb_copy_expand +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fa8ae2 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x3404000d __scsi_execute +EXPORT_SYMBOL vmlinux 0x340fccba devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3419192a __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x341a3352 read_cache_page +EXPORT_SYMBOL vmlinux 0x3421d2cf cont_write_begin +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34334090 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x3452be73 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x34560d63 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x346604f0 get_tree_single +EXPORT_SYMBOL vmlinux 0x34760046 pci_find_capability +EXPORT_SYMBOL vmlinux 0x347c6bd4 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x34838331 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34af4d3c page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x34ba11d9 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34dcaa19 param_set_int +EXPORT_SYMBOL vmlinux 0x34dccfb2 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x34e2f147 simple_rename +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x3502d0aa mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x350782b3 eth_header +EXPORT_SYMBOL vmlinux 0x3507d91b dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351ed50e blk_rq_init +EXPORT_SYMBOL vmlinux 0x352c5b15 _dev_warn +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353d97d5 scsi_add_device +EXPORT_SYMBOL vmlinux 0x35497f3a pmem_sector_size +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35799ac6 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x359b34ab netdev_info +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35a93dff scm_fp_dup +EXPORT_SYMBOL vmlinux 0x35b5c531 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x35cd142c tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x35e1781d phy_start +EXPORT_SYMBOL vmlinux 0x35e97733 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x35f6bd16 tty_register_device +EXPORT_SYMBOL vmlinux 0x35f7409f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x36084c6f md_cluster_ops +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36132b29 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x36403855 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365b34e7 param_set_ullong +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3674b57b __do_once_done +EXPORT_SYMBOL vmlinux 0x369720df tty_hangup +EXPORT_SYMBOL vmlinux 0x36a35c35 generic_update_time +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36b82da5 netif_napi_add +EXPORT_SYMBOL vmlinux 0x36c32282 may_umount +EXPORT_SYMBOL vmlinux 0x36cbe0b8 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x36e33186 vfs_get_link +EXPORT_SYMBOL vmlinux 0x36e5de2e fb_find_mode +EXPORT_SYMBOL vmlinux 0x370cab9e tcf_idr_search +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3725a315 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x372c551b tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x372ce978 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374dd6f9 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37744840 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x377e70f1 kset_unregister +EXPORT_SYMBOL vmlinux 0x37ae8d03 gro_cells_init +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d1820f blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x37d5784c clk_get +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f5be97 __sock_create +EXPORT_SYMBOL vmlinux 0x37fe6a77 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3835246f kthread_stop +EXPORT_SYMBOL vmlinux 0x384a7146 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38787de6 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x387dbee0 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388a55e5 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389e8c02 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c4a54d skb_trim +EXPORT_SYMBOL vmlinux 0x38d080db input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x38d369b0 nobh_writepage +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391a67bc i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393ce975 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x3941e881 padata_free_shell +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394f8c04 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3952e031 sock_i_uid +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3965e63b tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x3974cdc8 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x397d762e register_cdrom +EXPORT_SYMBOL vmlinux 0x3981217d mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x3982ea9f ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39abc78a bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x39ac2c4b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x39ac3ee7 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39dc6b50 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e713b8 lookup_one_len +EXPORT_SYMBOL vmlinux 0x39ecc027 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x39f28fcf skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a139529 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1d6926 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x3a1f2d78 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a3ecef7 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a583b23 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x3a6ba445 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x3a729d08 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x3a7d6754 mdiobus_write +EXPORT_SYMBOL vmlinux 0x3a93463a tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3a9cfc06 zap_page_range +EXPORT_SYMBOL vmlinux 0x3aabfed1 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3afce24e sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b11670a configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b230530 devm_clk_put +EXPORT_SYMBOL vmlinux 0x3b2cc46e dec_node_page_state +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b33d551 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6cad09 inode_permission +EXPORT_SYMBOL vmlinux 0x3b732d25 pci_iomap +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b878b29 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9a8e26 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x3ba11576 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x3bbe6a02 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x3bccb2a5 dump_align +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf06809 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x3bf2bb99 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3bf91152 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c25cfd2 __x86_indirect_alt_jmp_r9 +EXPORT_SYMBOL vmlinux 0x3c396d3d phy_register_fixup +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c420bc1 param_ops_uint +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c54ed75 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x3c57b8bd set_pages_uc +EXPORT_SYMBOL vmlinux 0x3c5ae4bd pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x3c60feb6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3ca13086 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x3cbfe823 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x3cc7d7d8 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ced2cc3 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x3cf0c03b mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3cf44a45 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d18bed7 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3d1baf56 dev_deactivate +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d29516c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x3d3b19c0 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x3d46492a fb_blank +EXPORT_SYMBOL vmlinux 0x3d4b202e vme_init_bridge +EXPORT_SYMBOL vmlinux 0x3d4bdb42 dentry_open +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d58a3f6 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x3d617156 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x3d9623c2 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3daae35b thread_group_exited +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3daceddf mmput_async +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dbc7d6d twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3dc56114 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd4e7ab jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3de85eaf secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e16bca8 path_has_submounts +EXPORT_SYMBOL vmlinux 0x3e17e2b6 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x3e353904 pci_get_device +EXPORT_SYMBOL vmlinux 0x3e35cf3a dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e40079c netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x3e49cd13 set_cached_acl +EXPORT_SYMBOL vmlinux 0x3e4e64b1 tcp_close +EXPORT_SYMBOL vmlinux 0x3e64011c __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x3e83150e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x3e832dda inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3eb0dee1 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x3eb2480c mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3ede3d6b fiemap_prep +EXPORT_SYMBOL vmlinux 0x3ee9c0ec pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3eee57cd sock_alloc +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0d8258 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f36e250 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47e2c2 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x3f4b4509 begin_new_exec +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f4fe4be inet_add_protocol +EXPORT_SYMBOL vmlinux 0x3f7801fe mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fa17aac mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc29174 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd88f95 write_inode_now +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff1108d xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x40082c63 is_nd_btt +EXPORT_SYMBOL vmlinux 0x40228e26 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x4039be17 fsync_bdev +EXPORT_SYMBOL vmlinux 0x403f83f6 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x405722b7 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x40835ef5 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x40839d49 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40986d71 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a2aba0 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b52fad __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x40b6a72c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x40b84628 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40f24c21 pci_release_resource +EXPORT_SYMBOL vmlinux 0x410a57d4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x410f3ee3 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x411e02d8 sock_set_mark +EXPORT_SYMBOL vmlinux 0x41282cc2 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41407e1a xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414e8dd7 proc_symlink +EXPORT_SYMBOL vmlinux 0x4169b3b8 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x416e2953 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4190d5a8 netdev_update_features +EXPORT_SYMBOL vmlinux 0x41b4505c sock_wake_async +EXPORT_SYMBOL vmlinux 0x41b60179 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x41bd5bf2 dqput +EXPORT_SYMBOL vmlinux 0x41cb9514 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x41cf495d udp_gro_receive +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fd460c alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42181d5f page_pool_release_page +EXPORT_SYMBOL vmlinux 0x42288c52 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x422a08de pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4230b7c6 __inet_hash +EXPORT_SYMBOL vmlinux 0x423be2fc zero_fill_bio +EXPORT_SYMBOL vmlinux 0x4240a653 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x42464d03 md_write_inc +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x428780ed ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x42ba62ef devm_of_iomap +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42cf4cf8 sk_wait_data +EXPORT_SYMBOL vmlinux 0x42e92e10 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x42f08a01 kobject_init +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f22a1b mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4303f04f reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x430c9b3d key_validate +EXPORT_SYMBOL vmlinux 0x4311e78a qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4321e7eb phy_print_status +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4347d759 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435705cf fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x4373e092 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439a6bea get_tz_trend +EXPORT_SYMBOL vmlinux 0x439dfa48 skb_seq_read +EXPORT_SYMBOL vmlinux 0x43aac8f6 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x43b396db flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e0ec2a jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x43fbc215 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x43fbd198 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x4401d167 to_ndd +EXPORT_SYMBOL vmlinux 0x441d83f6 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x4424e522 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x44367c1d devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x44401034 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x4441dd23 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x44662931 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x448c109f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b95f22 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x44bd98c2 release_pages +EXPORT_SYMBOL vmlinux 0x44da4b64 skb_eth_push +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450a7a57 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x450d447c blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x45190081 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x452202d1 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x45250d16 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452be89e __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x45301c25 nf_log_set +EXPORT_SYMBOL vmlinux 0x4531228c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x45371e34 pci_dev_get +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454a0336 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455640d3 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x455b31e6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x455e4d62 simple_unlink +EXPORT_SYMBOL vmlinux 0x456aa65b skb_pull +EXPORT_SYMBOL vmlinux 0x456e6822 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x4578d929 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45ac5705 readahead_expand +EXPORT_SYMBOL vmlinux 0x45b44972 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x45bc3426 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45d851bf consume_skb +EXPORT_SYMBOL vmlinux 0x45e71a2b console_start +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45e93ff2 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x460f4176 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4627de4d fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46612696 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466e29ac dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x466e618a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x467b2c35 device_add_disk +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4681104e bdevname +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a3667d phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x46aafaa6 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46dd9f00 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x46f8b1c3 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x46fb1819 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x470e845d module_refcount +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47178bbf jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x47354777 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x474af23d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x475309f4 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x4756915c blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x475c67cf kernel_getsockname +EXPORT_SYMBOL vmlinux 0x4763b47d phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4772e030 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479a50c8 irq_set_chip +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47bc864d pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c2b28d mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47de2e4b d_alloc_anon +EXPORT_SYMBOL vmlinux 0x47de5a3f agp_put_bridge +EXPORT_SYMBOL vmlinux 0x47e3eae4 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x47f9fdec sock_init_data +EXPORT_SYMBOL vmlinux 0x480421a1 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482aee4b mpage_writepages +EXPORT_SYMBOL vmlinux 0x4830ede1 param_ops_bool +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x48551a5b devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x48772923 redraw_screen +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c3f1dc flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48e22b61 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x48ea80bb skb_split +EXPORT_SYMBOL vmlinux 0x48ec8866 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4929de09 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x492b2dd1 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x492e2887 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x4933b172 kill_pgrp +EXPORT_SYMBOL vmlinux 0x494371e5 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x494e9db9 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x49541632 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x495c85a8 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x4977e849 vme_register_driver +EXPORT_SYMBOL vmlinux 0x497f0969 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x49874ca0 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499098d8 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a28096 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d4c3c2 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x49d8d3ff __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x49d92017 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x49fcc36f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x49ff3eea iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x4a0a7150 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x4a14abe1 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x4a223ead pin_user_pages +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a421fe2 genl_notify +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a47bd6c tso_start +EXPORT_SYMBOL vmlinux 0x4a48e93d register_netdev +EXPORT_SYMBOL vmlinux 0x4a4b3101 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x4a54de2b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x4a75866b ps2_init +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9cfc76 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x4aa4a68a blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x4ab0ede1 pid_task +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4accc4b8 kernel_write +EXPORT_SYMBOL vmlinux 0x4ae363a3 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x4ae72081 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6abd6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b10db55 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x4b23f90d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x4b2b53a3 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x4b32759b __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4b57c3e2 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0x4b5e4a38 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b858b29 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x4b95cd55 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x4baa1fdc mount_single +EXPORT_SYMBOL vmlinux 0x4bac5fa8 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x4bb597b5 file_open_root +EXPORT_SYMBOL vmlinux 0x4bb7df53 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x4bbeb13b tcp_seq_next +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4be09844 is_bad_inode +EXPORT_SYMBOL vmlinux 0x4be73394 netlink_set_err +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c00175b sk_common_release +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0800e3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4c0acb44 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x4c0c543d vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x4c1962c7 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x4c1d218f fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x4c32e26c devm_release_resource +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c63192d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x4c642334 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x4c69e645 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x4c6a1316 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x4c75a1f0 km_state_expired +EXPORT_SYMBOL vmlinux 0x4c8ff820 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca12854 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4ccf08de rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x4cd14937 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x4cd2fec3 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x4cff749b dev_get_by_name +EXPORT_SYMBOL vmlinux 0x4d04dd24 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x4d2835f0 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d2e89b2 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x4d388d26 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x4d38b7f0 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4d63dfde filemap_check_errors +EXPORT_SYMBOL vmlinux 0x4d6d5841 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x4d6f446d seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x4d7d9234 is_subdir +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d959739 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da8c87b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4da9b6d3 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dcc8e28 do_splice_direct +EXPORT_SYMBOL vmlinux 0x4dcff800 pci_save_state +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e87c412 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecaa254 phy_connect +EXPORT_SYMBOL vmlinux 0x4ed559f2 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4ede0a7e add_watch_to_object +EXPORT_SYMBOL vmlinux 0x4f0773af pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1ff794 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f36066a __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x4f3b2162 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f76b1f7 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x4f898bbf mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x4f90d074 dev_mc_add +EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff33100 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x4ffad4e9 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4ffeb2f2 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x50005dfe mdio_find_bus +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500a6c1c pci_read_config_word +EXPORT_SYMBOL vmlinux 0x500f7b18 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x502baa90 simple_fill_super +EXPORT_SYMBOL vmlinux 0x504c8263 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5077805e da903x_query_status +EXPORT_SYMBOL vmlinux 0x507e785a __ip_dev_find +EXPORT_SYMBOL vmlinux 0x5082d197 register_quota_format +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509e1f58 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a9f2d5 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x50aeed74 param_get_ullong +EXPORT_SYMBOL vmlinux 0x50b3010b sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c03d25 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x50c52f41 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51097530 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x5122e4cb __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x51316d4d blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x513f4aad dev_get_by_index +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51542740 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x5157804d xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x515a48e0 simple_write_begin +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516ec6b3 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x517afaff __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x517be1c0 nd_btt_version +EXPORT_SYMBOL vmlinux 0x51853741 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51b4207a dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x51b8d790 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x51c9abcc pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ea8c91 inet_del_offload +EXPORT_SYMBOL vmlinux 0x51eaf901 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51f9720e tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x5209ce9a d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x520e80bc __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x52212d90 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x522f402e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x524fa941 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x5252b91e pci_request_region +EXPORT_SYMBOL vmlinux 0x526e23fa tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52757545 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x52930777 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a1da22 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52c97553 __skb_checksum +EXPORT_SYMBOL vmlinux 0x52caf7b9 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x52cdbc9a netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52fcd7d5 agp_copy_info +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5326d8ff __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53429bf2 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x53429f39 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535e6f21 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x5360923a fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x536141ee pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x5366ff7b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x53676e28 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x53728a1f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x537bddac fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x53831e34 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x53a5070c register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53b9e93d vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x53c69faf inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x53c6d1c3 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x53c85430 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x53e3ea48 follow_up +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x53fe95a8 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x5404d6a3 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x54159825 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x542be051 __x86_indirect_alt_jmp_rax +EXPORT_SYMBOL vmlinux 0x54325b7c pci_read_vpd +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5444da72 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5459007a filemap_fault +EXPORT_SYMBOL vmlinux 0x545e9e9b __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x5462894f __d_lookup_done +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54cc3b3f padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x54cec64b kthread_create_worker +EXPORT_SYMBOL vmlinux 0x54df4805 ppp_input_error +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e72f07 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54f0c8bf dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x54f7c088 ata_print_version +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550c7ace posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5513de36 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x5518a7fd tcp_check_req +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55549be8 __serio_register_port +EXPORT_SYMBOL vmlinux 0x5557306a blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x555c3a1a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556bc630 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x55728f0c pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x557e2def qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55b5950f qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x55d00824 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e76dd4 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x55faf5ac sock_alloc_file +EXPORT_SYMBOL vmlinux 0x5606c37f mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x5618f66d mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x562162ff dmam_pool_create +EXPORT_SYMBOL vmlinux 0x5625867b iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x563341a6 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x56343e0c generic_writepages +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5645865c dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x56584dce __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x566a7321 blk_get_request +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5681eb85 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x568a0f6b xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x569a5957 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x56a5e4da agp_generic_enable +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d681e9 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56eb4fff acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x56f27517 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x56fba765 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x5706eee6 ata_port_printk +EXPORT_SYMBOL vmlinux 0x572dd6bb rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x5742f43f blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x577ae9bd acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x5782ba84 secpath_set +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x578da3a4 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x578e68cf ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x57903255 con_is_bound +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a86774 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57c08397 kset_register +EXPORT_SYMBOL vmlinux 0x57c47303 make_kgid +EXPORT_SYMBOL vmlinux 0x57d12906 agp_enable +EXPORT_SYMBOL vmlinux 0x57e7e0bd bmap +EXPORT_SYMBOL vmlinux 0x57eec087 sock_release +EXPORT_SYMBOL vmlinux 0x57f4e41f eth_header_cache +EXPORT_SYMBOL vmlinux 0x57f952a5 vm_insert_page +EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5814ef89 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5824f6b0 setattr_prepare +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582c1937 d_rehash +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x585365cc bio_clone_fast +EXPORT_SYMBOL vmlinux 0x585828ab devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5869bd08 mdiobus_read +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587c2e78 __alloc_pages +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5899b941 sock_create +EXPORT_SYMBOL vmlinux 0x589a7535 thaw_super +EXPORT_SYMBOL vmlinux 0x589bd6e0 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58afce0f padata_free +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e720af read_cache_pages +EXPORT_SYMBOL vmlinux 0x58f7e4e6 bh_submit_read +EXPORT_SYMBOL vmlinux 0x59339b5a jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x593537a9 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x5941c851 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5953f108 __x86_indirect_alt_call_r10 +EXPORT_SYMBOL vmlinux 0x595922e1 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5964ec7d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x5994a776 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x599973d6 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c75b4a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x59eba08c __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a215e57 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a305fe0 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a52432c vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a606c1d nd_btt_probe +EXPORT_SYMBOL vmlinux 0x5a87d975 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9ad46e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x5aa68827 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x5aa7ea4b rio_query_mport +EXPORT_SYMBOL vmlinux 0x5abd0215 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5aee1761 thaw_bdev +EXPORT_SYMBOL vmlinux 0x5b05eaa6 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x5b15f865 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5b1d1206 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b329b7e tcf_em_register +EXPORT_SYMBOL vmlinux 0x5b35866b __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3a495f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x5b3e19d1 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b4c5fbe sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b7f5875 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x5b9f59c2 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x5ba71014 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x5bb6dd8c ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x5bcfc35b ip_options_compile +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bec9317 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x5bf1918e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x5bf9f0a0 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5c1239a6 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5c1ddc43 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c32f68a devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c417f87 sget_fc +EXPORT_SYMBOL vmlinux 0x5c697f7f bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x5c7156a3 finalize_exec +EXPORT_SYMBOL vmlinux 0x5c7c326a security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x5c9ffb7b eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x5cb3b189 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x5cb7fb36 __x86_indirect_alt_jmp_r12 +EXPORT_SYMBOL vmlinux 0x5cbd5867 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x5cc30d5b vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x5cc3def8 _dev_notice +EXPORT_SYMBOL vmlinux 0x5ce0eaf5 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x5ce97e6b fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfcacac dma_resv_init +EXPORT_SYMBOL vmlinux 0x5d096842 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x5d1866a8 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x5d28e010 poll_freewait +EXPORT_SYMBOL vmlinux 0x5d2adef1 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x5d35ae67 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4c5531 sk_free +EXPORT_SYMBOL vmlinux 0x5d6134b2 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5d685224 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x5d6b2b38 to_nd_btt +EXPORT_SYMBOL vmlinux 0x5d6e0e8b simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x5d794ae0 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5d8d2777 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x5da1020d vfs_fsync +EXPORT_SYMBOL vmlinux 0x5db1c9ac fb_show_logo +EXPORT_SYMBOL vmlinux 0x5db36a81 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x5de9c9fe xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1d8792 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3f9fa1 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x5e4ca794 lookup_one +EXPORT_SYMBOL vmlinux 0x5e5e30bd agp_find_bridge +EXPORT_SYMBOL vmlinux 0x5e790c60 sk_error_report +EXPORT_SYMBOL vmlinux 0x5e83c45e set_create_files_as +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e872ee6 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9632f0 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x5eac1130 mount_nodev +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb2e075 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x5ebb3d3a block_write_end +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edd052e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x5edfa159 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ee35609 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x5eeba996 kill_block_super +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f498acc jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x5f5077c9 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f76d9b9 param_set_ushort +EXPORT_SYMBOL vmlinux 0x5f786c03 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5f9babb2 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x5fb30289 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x5fb9b188 ip_defrag +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd3e45a vme_bus_type +EXPORT_SYMBOL vmlinux 0x5fdfa22e __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fe779a6 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x5fea98cd pci_set_power_state +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6007e475 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604b64eb sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60592901 regset_get +EXPORT_SYMBOL vmlinux 0x605f2459 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x60677d23 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x606cab87 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x60874f4c __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a00a51 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b53688 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x60b8cb1c __mdiobus_write +EXPORT_SYMBOL vmlinux 0x60d00153 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e6b744 unregister_nls +EXPORT_SYMBOL vmlinux 0x60f7cdd1 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x6100645e pv_ops +EXPORT_SYMBOL vmlinux 0x61071188 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6118365a tty_kref_put +EXPORT_SYMBOL vmlinux 0x61219f17 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6122b0a8 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x613d7946 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x61437f2d inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6170277e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619343ba rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c2a42c get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x61db36cc pci_write_vpd +EXPORT_SYMBOL vmlinux 0x61dddec4 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x61df13a5 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62194cbc writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6231ef45 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6249364a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x625dc5ea kernel_connect +EXPORT_SYMBOL vmlinux 0x626d7e96 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627bf873 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62a6ddab md_write_start +EXPORT_SYMBOL vmlinux 0x62aa03fc mmc_remove_host +EXPORT_SYMBOL vmlinux 0x62b71516 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x62bdab40 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d7f641 dev_close +EXPORT_SYMBOL vmlinux 0x62e5198a vm_insert_pages +EXPORT_SYMBOL vmlinux 0x62e526e0 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62f7edca phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x62f8800a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x63122dd9 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632b222d max8925_reg_write +EXPORT_SYMBOL vmlinux 0x63597482 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x635dcb37 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x635fc27b phy_detach +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6364ff1c vmap +EXPORT_SYMBOL vmlinux 0x6380bab7 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x638595be seq_bprintf +EXPORT_SYMBOL vmlinux 0x63935830 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x63945b95 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aa9f16 generic_write_end +EXPORT_SYMBOL vmlinux 0x63aafbd0 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x63b93d51 elv_rb_find +EXPORT_SYMBOL vmlinux 0x63beb137 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63da97e9 config_group_find_item +EXPORT_SYMBOL vmlinux 0x63de5a2c dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64061ae0 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6413af4a unlock_page +EXPORT_SYMBOL vmlinux 0x641660b2 vme_irq_request +EXPORT_SYMBOL vmlinux 0x64263163 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643561c5 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x64645f58 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x6465e440 blk_queue_split +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648ccbff napi_complete_done +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6497da09 genphy_read_status +EXPORT_SYMBOL vmlinux 0x6498b888 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a3754d dev_load +EXPORT_SYMBOL vmlinux 0x64a40e91 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x64a5e2c5 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64af5918 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c7e319 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x64f83665 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65185691 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6518dbf6 request_key_tag +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651fd909 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6528a6f8 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6537a021 set_capacity +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6544f87a dev_addr_init +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x6550fc75 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x6563dd7c netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65798811 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659c4b84 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65b39b84 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x65b7ed3b submit_bh +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e6e63d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x65f20305 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x65f698d9 config_item_put +EXPORT_SYMBOL vmlinux 0x65fd42f4 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x65ff83b0 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x66141a00 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x661fcab0 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6629166e agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x663c5a13 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666a7753 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x667124a0 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66807be0 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x6697187e dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6698ed38 proc_remove +EXPORT_SYMBOL vmlinux 0x66a16b27 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66d76418 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x66db98a4 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x66ea1f65 key_task_permission +EXPORT_SYMBOL vmlinux 0x66ea3293 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672cce98 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x67313e73 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x67345095 mmc_free_host +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6756631a devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x67630182 dm_put_device +EXPORT_SYMBOL vmlinux 0x6763b713 input_flush_device +EXPORT_SYMBOL vmlinux 0x6775e5b5 tcf_register_action +EXPORT_SYMBOL vmlinux 0x678ad95f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bad7ff do_SAK +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c87bfd generic_file_fsync +EXPORT_SYMBOL vmlinux 0x67e217a7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x67f6e02f tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x67fcd09d pci_scan_bus +EXPORT_SYMBOL vmlinux 0x680c244f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x683351e1 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x68336f84 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6834f9a3 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x683f6e9c pci_dev_driver +EXPORT_SYMBOL vmlinux 0x68412ef9 tty_vhangup +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x686b95f4 serio_reconnect +EXPORT_SYMBOL vmlinux 0x6872cbfd d_make_root +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687f2359 submit_bio +EXPORT_SYMBOL vmlinux 0x688701d9 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x68946ba4 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x68c167ff bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68f40f1d vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6911e8d1 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6919abe2 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x691c20fb filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x69317f0f vfs_rename +EXPORT_SYMBOL vmlinux 0x69365dcf finish_no_open +EXPORT_SYMBOL vmlinux 0x693c103d bio_uninit +EXPORT_SYMBOL vmlinux 0x69411c2e tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x694796af xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x694a6e94 d_tmpfile +EXPORT_SYMBOL vmlinux 0x694e91cc fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69622c6f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x69645d2c dev_uc_flush +EXPORT_SYMBOL vmlinux 0x6965f755 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696ea811 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697c61e1 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x697ffb82 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698b853d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69add18a pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x69c8935c netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x69cd4478 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e1275d phy_loopback +EXPORT_SYMBOL vmlinux 0x69ff8a0a netlink_unicast +EXPORT_SYMBOL vmlinux 0x69ff92be brioctl_set +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a075ccc pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x6a0abc22 seq_printf +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a3dbb2c udp_seq_next +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a5b64e5 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5e128f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60b886 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a8ce547 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x6a938b64 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x6a95ebc7 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ace355b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x6ad99f30 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae0b898 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x6ae7f643 locks_init_lock +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af048df dquot_acquire +EXPORT_SYMBOL vmlinux 0x6af4fef3 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6b05126a file_ns_capable +EXPORT_SYMBOL vmlinux 0x6b0f2463 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b27995f __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3cffed __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b6bddd1 __find_get_block +EXPORT_SYMBOL vmlinux 0x6b7ce054 softnet_data +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6b9d7dde pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x6b9f4b3a netdev_printk +EXPORT_SYMBOL vmlinux 0x6ba78307 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcaafa4 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be94d8d tcp_child_process +EXPORT_SYMBOL vmlinux 0x6bf36e96 fget_raw +EXPORT_SYMBOL vmlinux 0x6c18b184 kobject_set_name +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c40977f configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x6c49ffde scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6294f4 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x6c719c7f t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x6c959353 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x6c95bd6a param_set_copystring +EXPORT_SYMBOL vmlinux 0x6c991b38 neigh_for_each +EXPORT_SYMBOL vmlinux 0x6c9bab4a rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x6ca79151 free_buffer_head +EXPORT_SYMBOL vmlinux 0x6cb24fd3 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbed20f poll_initwait +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cd1d5fa sock_sendmsg +EXPORT_SYMBOL vmlinux 0x6cd51f04 pci_find_resource +EXPORT_SYMBOL vmlinux 0x6ce705c5 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6cf032f9 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6cf32829 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x6cf7eeb8 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x6cfeca9c dquot_commit_info +EXPORT_SYMBOL vmlinux 0x6d0bcd3e netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d2860ec mmc_add_host +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3b4368 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6d4ccb19 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x6d4e9f97 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x6d5244f5 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5aabd4 ip_frag_init +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d7ddd79 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x6d7fa6b0 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6da78503 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd089f3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6ded6028 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e41ee18 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x6e4c6b29 agp_bridge +EXPORT_SYMBOL vmlinux 0x6e554e5b empty_aops +EXPORT_SYMBOL vmlinux 0x6e564a63 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5b94cc blkdev_put +EXPORT_SYMBOL vmlinux 0x6e5df7dc tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x6e63aac4 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6e6e7bcf set_pages_wb +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e841389 cpu_info +EXPORT_SYMBOL vmlinux 0x6e865e02 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x6e87520d mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x6e8d10c2 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x6e95ca50 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x6e9bba22 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eabd47f fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x6eb9e61a __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x6ece9e16 udp_seq_start +EXPORT_SYMBOL vmlinux 0x6f1c58fe d_instantiate +EXPORT_SYMBOL vmlinux 0x6f30114b pps_register_source +EXPORT_SYMBOL vmlinux 0x6f3290f9 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0x6f37f912 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4dacbe skb_checksum +EXPORT_SYMBOL vmlinux 0x6f525970 kill_litter_super +EXPORT_SYMBOL vmlinux 0x6f5ab096 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f74ab25 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x6f772dd4 nf_log_packet +EXPORT_SYMBOL vmlinux 0x6f79c0e6 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x6f8044e6 md_done_sync +EXPORT_SYMBOL vmlinux 0x6f82cb7c dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x6f8eda52 inet_ioctl +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc41547 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd11977 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x6fd658ea vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x6fd917b2 param_get_invbool +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdd6a19 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x6ff1ab46 tcp_connect +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70123832 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x70357599 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x70482887 param_set_byte +EXPORT_SYMBOL vmlinux 0x704983c3 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70610719 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x70620f70 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x707ffaee jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x709d3a14 inet_getname +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b74110 param_set_hexint +EXPORT_SYMBOL vmlinux 0x70e43e28 put_watch_queue +EXPORT_SYMBOL vmlinux 0x70ef2627 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x70f06bc9 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x70f07e72 block_write_begin +EXPORT_SYMBOL vmlinux 0x7110c295 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713343ac fs_param_is_string +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71882255 inet6_protos +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x718aed7c del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bf6763 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x71dab2e8 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71ee07ad may_setattr +EXPORT_SYMBOL vmlinux 0x71f9c047 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72103d9a ip6_mtu +EXPORT_SYMBOL vmlinux 0x721e3930 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7220c8df pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x72210096 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x726548ca pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x726da6ab pci_reenable_device +EXPORT_SYMBOL vmlinux 0x72a1d4e0 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c10643 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x72c532b3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x72d3c314 node_data +EXPORT_SYMBOL vmlinux 0x72d58ded neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72e9d423 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x730d56c6 pci_bus_type +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x7321622c sock_setsockopt +EXPORT_SYMBOL vmlinux 0x73274dc1 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x7329b524 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x732a208e dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7333b51b page_readlink +EXPORT_SYMBOL vmlinux 0x7359ec57 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736f455e pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x737d50a2 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738af5a5 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x738e59d1 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x739af0e1 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73d43aae setattr_copy +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73edaacf __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742ab11a skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x743fa35d mmc_can_trim +EXPORT_SYMBOL vmlinux 0x7449e9c7 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7450bc7a input_match_device_id +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x746e4aa8 single_open_size +EXPORT_SYMBOL vmlinux 0x7473988c mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7479156a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x747f6e37 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74b373a6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x74b7834d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c99b27 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x74d0d84a eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x7503aa96 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x750e859c cdrom_check_events +EXPORT_SYMBOL vmlinux 0x7517ca5d flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x751c604b dquot_free_inode +EXPORT_SYMBOL vmlinux 0x751dd85e tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x752d4827 ram_aops +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x7550483f pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x755e827e ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x75629a07 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x7564137b tty_register_driver +EXPORT_SYMBOL vmlinux 0x757f7f18 scsi_print_result +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758ceeb5 __x86_indirect_alt_jmp_r15 +EXPORT_SYMBOL vmlinux 0x75901c04 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75b1a0c8 kobject_del +EXPORT_SYMBOL vmlinux 0x75b242a6 devm_clk_get +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c7bdd9 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d52d69 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x75ddf686 skb_copy_header +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760d52f4 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x760dba3a vfs_get_super +EXPORT_SYMBOL vmlinux 0x7611af2d clear_inode +EXPORT_SYMBOL vmlinux 0x76179811 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7621deef pcim_pin_device +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76502491 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x765168b9 unregister_console +EXPORT_SYMBOL vmlinux 0x765a5ad6 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7667e1bf __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767af5bf param_array_ops +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7695d8aa config_group_init +EXPORT_SYMBOL vmlinux 0x769961f3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a37e70 param_get_bool +EXPORT_SYMBOL vmlinux 0x76aeef4f fddi_type_trans +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76f559d1 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x76f6ce41 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x76fab431 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x77057867 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7707335f kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x7708bce4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x770d1176 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x770e2f22 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x7737ab6b fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x775c264e netif_skb_features +EXPORT_SYMBOL vmlinux 0x7761afc0 devm_request_resource +EXPORT_SYMBOL vmlinux 0x776660a9 param_get_ushort +EXPORT_SYMBOL vmlinux 0x776c9d94 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x777b2b44 rproc_alloc +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77ada6d5 _dev_crit +EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in +EXPORT_SYMBOL vmlinux 0x77b6f651 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d69134 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x77dbeec1 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x78102a7e __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x781ace3b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x7820af9c scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x783a01be vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7854248b __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7868caf6 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x787685ae dquot_operations +EXPORT_SYMBOL vmlinux 0x787c1385 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x78807bef pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c54322 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x78d95813 bioset_init +EXPORT_SYMBOL vmlinux 0x78ddcd4c lock_page_memcg +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f15998 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x79048a77 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x79069e2d pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x79264154 i2c_transfer +EXPORT_SYMBOL vmlinux 0x7936d927 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x793c1c33 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x7956e09e pnp_device_attach +EXPORT_SYMBOL vmlinux 0x795994f9 _dev_err +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x797c578d md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79aee973 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x79af4645 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x79b3ca7a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x79ba3035 mdio_device_register +EXPORT_SYMBOL vmlinux 0x79bfe414 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79e1143e vme_slave_request +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79ecee90 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x79ef9550 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x79f6e02a msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7a027317 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a232c42 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x7a23742c xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7a27a546 input_close_device +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2cfebd key_type_keyring +EXPORT_SYMBOL vmlinux 0x7a302edd bdi_register +EXPORT_SYMBOL vmlinux 0x7a3ae106 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7a478976 phy_attached_print +EXPORT_SYMBOL vmlinux 0x7a52a5d2 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7a5d15bf flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x7a5fb203 stream_open +EXPORT_SYMBOL vmlinux 0x7a625dea agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x7a6b4105 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a8a1e02 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7a916baa scsi_register_driver +EXPORT_SYMBOL vmlinux 0x7a94d074 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7accd3ee inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b040d92 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x7b245547 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3be055 dquot_resume +EXPORT_SYMBOL vmlinux 0x7b494579 misc_register +EXPORT_SYMBOL vmlinux 0x7b4d3629 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b551f9e input_grab_device +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b670cbf tty_port_destroy +EXPORT_SYMBOL vmlinux 0x7b7734c0 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7b7f312d sock_no_listen +EXPORT_SYMBOL vmlinux 0x7b812686 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b8e1b45 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc2cfa3 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x7bc7051b dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x7bca968f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x7bceeb8f inet6_del_offload +EXPORT_SYMBOL vmlinux 0x7bd40324 ip6_dst_check +EXPORT_SYMBOL vmlinux 0x7be1211c xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2f147d netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c486acf dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x7c6ed926 dev_add_offload +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9e36f6 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x7cacd58c phy_modify_paged +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cbb93ed nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x7cc6d247 param_set_charp +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf22904 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf8fb71 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0d70f2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d27c147 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x7d2b80ee disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d824c2f phy_get_pause +EXPORT_SYMBOL vmlinux 0x7d8726f2 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x7d9f9a8f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x7da217c4 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddea4f4 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7de73b3b first_ec +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e228d51 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3d815e __x86_indirect_alt_call_rbx +EXPORT_SYMBOL vmlinux 0x7e426456 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7e43bf6d __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7e45b598 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x7e5279a0 dquot_initialize +EXPORT_SYMBOL vmlinux 0x7e5a35e7 follow_pfn +EXPORT_SYMBOL vmlinux 0x7e5a4db8 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7e6303da param_set_invbool +EXPORT_SYMBOL vmlinux 0x7e6329a2 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7e698589 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7e767154 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x7e77662f save_fpregs_to_fpstate +EXPORT_SYMBOL vmlinux 0x7e79387b ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e928a6a jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x7e9dca78 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x7eb25431 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7ec656ac vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x7ed24545 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x7ed4cf30 mdio_device_create +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f641e96 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x7f73d48f ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7f741f2c seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x7f79d4a7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7f7a40ae iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f802166 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7f8991f4 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7fcc1ff0 xfrm_input +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff7f4e1 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x7ffd1c08 alloc_pages +EXPORT_SYMBOL vmlinux 0x800b448a configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x801e4384 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x801e4694 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8030010e param_get_string +EXPORT_SYMBOL vmlinux 0x803bfcb4 get_vm_area +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80464eb9 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x8068f2e1 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x806fb749 sock_efree +EXPORT_SYMBOL vmlinux 0x808c0c70 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x80927841 ethtool_notify +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a3f0ef invalidate_bdev +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ac46c8 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x80c91979 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d95e51 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ee035a iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x80f7446f sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x80fde675 ping_prot +EXPORT_SYMBOL vmlinux 0x8105442c filp_close +EXPORT_SYMBOL vmlinux 0x8109e0b5 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x81210ac7 unix_get_socket +EXPORT_SYMBOL vmlinux 0x813127f1 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x81507448 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815ba5ae md_check_recovery +EXPORT_SYMBOL vmlinux 0x815f1a2a cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x8172c19b security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818a25ea pskb_expand_head +EXPORT_SYMBOL vmlinux 0x81abda95 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x81ac14d7 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81bbdbb6 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ea9fdb vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x82027d61 d_drop +EXPORT_SYMBOL vmlinux 0x8209ec79 unlock_rename +EXPORT_SYMBOL vmlinux 0x823759ff tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x823b42e0 devm_free_irq +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x82420b4f skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x825aae76 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82935009 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x8294c4ed dm_table_event +EXPORT_SYMBOL vmlinux 0x82a311a2 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x82ba29c2 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82da4576 vfs_readlink +EXPORT_SYMBOL vmlinux 0x82dc01e4 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x83045f36 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x83079320 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x83336383 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x83423bb4 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b4831 dquot_disable +EXPORT_SYMBOL vmlinux 0x835f0013 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8362461a unregister_qdisc +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x83811d20 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x8385c67a devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x838cdb6a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x8398ef26 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x83b55b69 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c9d849 phy_device_register +EXPORT_SYMBOL vmlinux 0x83d787aa seq_write +EXPORT_SYMBOL vmlinux 0x83ee1cf3 kern_unmount +EXPORT_SYMBOL vmlinux 0x83ff0ccb devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8420054d netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8420d634 netdev_state_change +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x844427e3 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x845a02c0 current_time +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84a41724 md_write_end +EXPORT_SYMBOL vmlinux 0x84ab26ac set_page_dirty +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c23ff0 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x84c2f34c mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84d1760c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8507e873 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851e9015 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8552e027 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x855950bb skb_copy_bits +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857f0898 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85951a39 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x859894e0 xp_alloc +EXPORT_SYMBOL vmlinux 0x85a71902 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x85add5ee simple_pin_fs +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c016d7 scsi_host_put +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x860bc238 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x860fc6a5 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x8626a948 get_user_pages +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86401628 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x864a7191 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x864caa05 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x86617046 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x867bcb7e flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868e1086 proto_unregister +EXPORT_SYMBOL vmlinux 0x8695db2f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x869b28da netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x86bf61b3 locks_delete_block +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86f0fcd0 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f3e27a inc_nlink +EXPORT_SYMBOL vmlinux 0x86f83bc6 __x86_indirect_alt_call_rsi +EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x87255cda bio_free_pages +EXPORT_SYMBOL vmlinux 0x8729ba1e proc_mkdir +EXPORT_SYMBOL vmlinux 0x872c2466 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x872ee6aa inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x873ae3d2 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x87487c13 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x874b3993 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x875f9425 migrate_page_states +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8762efcc dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x876a3ce5 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x876c34ad bprm_change_interp +EXPORT_SYMBOL vmlinux 0x876fa382 md_reload_sb +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8776ee97 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x8778069a mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x878233e7 file_modified +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x878ad4b3 dquot_release +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87bae3a8 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x87d3c0d8 dquot_file_open +EXPORT_SYMBOL vmlinux 0x87d8fba8 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x880400fd genlmsg_put +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8811b490 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8822db0e finish_swait +EXPORT_SYMBOL vmlinux 0x883cbcbb __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x8846e405 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x8861db30 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x8866a966 _dev_emerg +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888dba16 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x888f3802 init_pseudo +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x889d9ab3 dcb_setapp +EXPORT_SYMBOL vmlinux 0x889e7cbb udp_disconnect +EXPORT_SYMBOL vmlinux 0x88a4388b dev_alloc_name +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88b9920b simple_transaction_set +EXPORT_SYMBOL vmlinux 0x88c21d8a dquot_scan_active +EXPORT_SYMBOL vmlinux 0x88c27c3d scsi_register_interface +EXPORT_SYMBOL vmlinux 0x88ce0903 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e89562 rproc_put +EXPORT_SYMBOL vmlinux 0x8917350a dma_resv_fini +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89470103 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x894d51e0 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x896ad7be submit_bio_wait +EXPORT_SYMBOL vmlinux 0x897e329f __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x898c5a36 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x899a0bb0 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x899ca6f0 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x89cdd3c1 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x89dba51a bio_endio +EXPORT_SYMBOL vmlinux 0x89e2c5c9 devm_memunmap +EXPORT_SYMBOL vmlinux 0x8a25b56e i8042_install_filter +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5d474e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7babbf copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a944456 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x8a945459 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x8a95270d __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab29862 key_invalidate +EXPORT_SYMBOL vmlinux 0x8abcbfa4 complete_request_key +EXPORT_SYMBOL vmlinux 0x8abe0c76 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8af0477d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x8af142fb shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0386b1 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b169eac blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x8b601694 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6c2d2b hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x8b71ad91 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x8b7c71c0 rtnl_notify +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bd6518c nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x8bd6ba35 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x8be3b3b7 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x8bf3d620 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x8bfa8ee7 dev_get_stats +EXPORT_SYMBOL vmlinux 0x8c019890 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x8c1ad158 param_set_ulong +EXPORT_SYMBOL vmlinux 0x8c1b812c mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x8c233255 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8c2613bc devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c277e81 dump_page +EXPORT_SYMBOL vmlinux 0x8c3d5db0 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x8c428d44 config_item_get +EXPORT_SYMBOL vmlinux 0x8c4bb2ab remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c8230c3 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8db11a __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x8c9ac1b0 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca524a2 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x8cabff80 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cec3642 param_ops_short +EXPORT_SYMBOL vmlinux 0x8cfdde6c unregister_quota_format +EXPORT_SYMBOL vmlinux 0x8d003d08 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x8d1399be elv_rb_add +EXPORT_SYMBOL vmlinux 0x8d2cb650 __netif_schedule +EXPORT_SYMBOL vmlinux 0x8d2ef1b6 param_ops_int +EXPORT_SYMBOL vmlinux 0x8d33a09e netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x8d3470a5 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x8d363ae9 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8d36641e blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x8d413b4a amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x8d422af2 kernel_bind +EXPORT_SYMBOL vmlinux 0x8d486d73 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d55e16e xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7757d0 bio_put +EXPORT_SYMBOL vmlinux 0x8d8f1eea fb_class +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8dc2ff09 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x8dc4c2db vfs_rmdir +EXPORT_SYMBOL vmlinux 0x8dd53941 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x8ddbca74 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de0c56e seq_open +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e211c82 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e24b350 vme_slot_num +EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x8e509633 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x8e638aac devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e8409d7 path_is_under +EXPORT_SYMBOL vmlinux 0x8e89c88b tty_write_room +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9e0b39 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ec4b583 vga_get +EXPORT_SYMBOL vmlinux 0x8ed0a1c5 __devm_release_region +EXPORT_SYMBOL vmlinux 0x8ed60056 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8ee57de6 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f2789eb phy_aneg_done +EXPORT_SYMBOL vmlinux 0x8f30ed8f security_sk_clone +EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default +EXPORT_SYMBOL vmlinux 0x8f689269 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x8f743bce twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f9853b0 generic_setlease +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fa6c415 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffbd4cc tty_port_open +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x90325d81 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x9033067e write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9050f066 simple_setattr +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905c9a69 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x90740570 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x90779ebe alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x90780528 pci_choose_state +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x90851ae6 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9098b702 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x909a0cd7 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x90a3ad15 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x90dcd968 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x910024be __x86_indirect_alt_call_rdx +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917a63a4 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x918edaaa rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91ae3811 registered_fb +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92384a61 __seq_open_private +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925f99e7 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x926f13a6 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x9270fb50 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b0ea50 seq_read_iter +EXPORT_SYMBOL vmlinux 0x92b8d6bc jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f8ee96 shmem_aops +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9316fba7 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x9334ce2d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x93692812 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9384c11d tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x939f4e05 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cce862 sock_bind_add +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93f12561 nla_put +EXPORT_SYMBOL vmlinux 0x93f1696d genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x94220533 netdev_crit +EXPORT_SYMBOL vmlinux 0x9423578b skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9435f5c4 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x943f3228 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9454aa37 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x945cd5e7 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x946ab7a3 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948c47f2 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94992a72 ip6_output +EXPORT_SYMBOL vmlinux 0x94bb0cf0 file_remove_privs +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cea166 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x95065e21 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9524ec4c flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x952f15ad blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x953cd556 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x9540a42a neigh_parms_release +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9552a776 address_space_init_once +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95b9b6ad pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x95df8dcb param_get_int +EXPORT_SYMBOL vmlinux 0x95ebdf07 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x96041db1 genl_register_family +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962af404 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x96398d02 make_bad_inode +EXPORT_SYMBOL vmlinux 0x963bec85 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x966b77b5 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x9670be92 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x967bc30d pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96877f7f genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x9690ee0d page_mapped +EXPORT_SYMBOL vmlinux 0x96a25792 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x96a3726c dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b6c911 fasync_helper +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c4ce78 trace_event_printf +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d6d193 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e61309 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96edcf6b tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x96f9da19 key_unlink +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970801df bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x97182511 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x971aa348 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x97218f16 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x97380312 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974d9009 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9764faba fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x97778e8c set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x977f3629 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x97827e52 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a71a97 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x97ac3bb8 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c69ad5 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97fee46a module_put +EXPORT_SYMBOL vmlinux 0x9803aa93 vc_cons +EXPORT_SYMBOL vmlinux 0x9807e426 mdio_device_free +EXPORT_SYMBOL vmlinux 0x9810eae5 page_pool_create +EXPORT_SYMBOL vmlinux 0x9824d827 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x98291966 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9844f2d8 __breadahead +EXPORT_SYMBOL vmlinux 0x98737b8a tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x989bce4c close_fd_get_file +EXPORT_SYMBOL vmlinux 0x98b0e89e netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x98b104b8 dns_query +EXPORT_SYMBOL vmlinux 0x98bebdcf open_with_fake_path +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c08aa5 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98ce4bfa nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x98d91672 proc_create +EXPORT_SYMBOL vmlinux 0x98dd2ec8 __x86_indirect_alt_call_r11 +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f20ae1 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x98f3586d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x98fb683f eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9934a981 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99542b09 skb_dump +EXPORT_SYMBOL vmlinux 0x99667255 kill_pid +EXPORT_SYMBOL vmlinux 0x9967e3d9 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x9967f7c5 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9976d3e4 __x86_indirect_alt_jmp_rbp +EXPORT_SYMBOL vmlinux 0x99803ccc crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x99995073 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a0e1a1 input_release_device +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e4b714 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a09357f rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a10dc03 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2e9524 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x9a33b483 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x9a3e744a pci_set_master +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a780e8d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x9a7b8fb1 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x9a809e39 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x9a81c478 km_report +EXPORT_SYMBOL vmlinux 0x9a9e7af4 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x9aa9010e param_get_charp +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9acb1d2f set_nlink +EXPORT_SYMBOL vmlinux 0x9ad033a6 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b0596be seq_puts +EXPORT_SYMBOL vmlinux 0x9b071510 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x9b09b6fe eth_type_trans +EXPORT_SYMBOL vmlinux 0x9b0eb086 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x9b187a7c inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2b61c7 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b42fd6e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x9b44c7e8 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x9b461713 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b5062ac __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x9b57f633 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x9b5e818f tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x9b70b520 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b7eba9d __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x9bab1fa3 dst_destroy +EXPORT_SYMBOL vmlinux 0x9bade40a phy_resume +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bc6e520 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x9bd7eb68 skb_put +EXPORT_SYMBOL vmlinux 0x9bf1280e jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c6198b7 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x9c62eee5 textsearch_register +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c78690c vfs_getattr +EXPORT_SYMBOL vmlinux 0x9c7bab9e module_layout +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c87c5ba skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x9c9251e8 block_commit_write +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cabf521 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc86d1d seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d13b836 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x9d188b5a __brelse +EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3924f6 __x86_indirect_alt_jmp_r13 +EXPORT_SYMBOL vmlinux 0x9d3e78c4 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d64def5 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d8a86b4 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9da7babb inet6_add_offload +EXPORT_SYMBOL vmlinux 0x9daf43d3 mmc_release_host +EXPORT_SYMBOL vmlinux 0x9db87651 set_trace_device +EXPORT_SYMBOL vmlinux 0x9de8b3d4 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x9df4bce2 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x9e00858b tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e161dfa _dev_printk +EXPORT_SYMBOL vmlinux 0x9e18a7e2 dev_add_pack +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e40b366 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e6c8e08 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x9e6ea5c7 km_state_notify +EXPORT_SYMBOL vmlinux 0x9e6f0d7f mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x9e6f9a98 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9e7d04f9 generic_perform_write +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8c872c unix_detach_fds +EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eabdde3 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eaef36f seq_vprintf +EXPORT_SYMBOL vmlinux 0x9eb24123 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x9eb8f443 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed7fab8 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eda2a67 netpoll_setup +EXPORT_SYMBOL vmlinux 0x9eda70b5 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9ef6d68c try_to_release_page +EXPORT_SYMBOL vmlinux 0x9f031ab2 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x9f120b39 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x9f125b87 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4742ff thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f661d91 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x9f6a2fd7 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x9f7b4dd4 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f996334 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x9fa224e2 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fc8ead4 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa019ea76 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02c3ef5 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xa031fc63 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0560a28 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05c04dd __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xa060232a simple_getattr +EXPORT_SYMBOL vmlinux 0xa066b869 km_new_mapping +EXPORT_SYMBOL vmlinux 0xa0713fe9 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xa072bbef pci_release_regions +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa0840f1f amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09775ef start_tty +EXPORT_SYMBOL vmlinux 0xa0acb9c6 tcf_block_get +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bae8a7 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa0c6f0de netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xa0cd1646 agp_create_memory +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fbce83 param_set_bool +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10a71cb security_sock_graft +EXPORT_SYMBOL vmlinux 0xa116e993 iov_iter_init +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa1595153 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xa1599fe1 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xa16a3509 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xa1721417 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa1853568 get_watch_queue +EXPORT_SYMBOL vmlinux 0xa1977924 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xa1983993 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xa1a81ac5 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xa1b6ab4b tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1c2451a netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xa1cb6e45 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa1e6bbc5 datagram_poll +EXPORT_SYMBOL vmlinux 0xa1eeaf06 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20e2880 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xa21f6a85 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa2389a48 pci_map_rom +EXPORT_SYMBOL vmlinux 0xa23ee872 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa253b8fc neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xa25b1de4 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa278d3e4 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa286bdc6 dev_uc_del +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2b6dcba phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xa2b95cf9 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xa2c4795c devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xa2d70bc0 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xa2e51f7c ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xa2fe05a9 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa315bc05 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xa32193ab xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xa3387038 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xa3394bc2 __ps2_command +EXPORT_SYMBOL vmlinux 0xa3569d13 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xa36036a8 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa364911d skb_ext_add +EXPORT_SYMBOL vmlinux 0xa370c3e5 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa39a1cb7 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xa3a64e15 sock_wfree +EXPORT_SYMBOL vmlinux 0xa3aba264 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa3b8764a max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xa3d030e5 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xa3d87451 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3f08c4a __x86_indirect_alt_jmp_rdi +EXPORT_SYMBOL vmlinux 0xa3f907dd skb_dequeue +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa417061e __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa42458b3 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xa42696e8 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xa438dfad rproc_free +EXPORT_SYMBOL vmlinux 0xa440a953 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa445564d mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xa448ce22 seq_dentry +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f552f0 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa4f8dba9 get_task_cred +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa517d604 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5533d10 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xa5675d15 __block_write_begin +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5990266 misc_deregister +EXPORT_SYMBOL vmlinux 0xa59b6e79 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b3d282 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xa5c26c88 mmc_erase +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa60bada4 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa62eb335 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa659dbc7 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xa67eacb9 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68e1c05 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa68fca70 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xa6df681e i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xa6efc9ae tcp_prot +EXPORT_SYMBOL vmlinux 0xa70d8727 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71090ae phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xa71c46ed blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa73b98a2 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xa7454206 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74f7928 vm_mmap +EXPORT_SYMBOL vmlinux 0xa75cd4aa phy_driver_register +EXPORT_SYMBOL vmlinux 0xa764e5bd dev_activate +EXPORT_SYMBOL vmlinux 0xa76908a6 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xa776f8d5 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7844214 neigh_update +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa797f3a4 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xa7b1b012 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xa7b40bd1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e0dd0b tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f5357b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xa8054d87 pci_match_id +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa80dde94 mntget +EXPORT_SYMBOL vmlinux 0xa80f9f44 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85d3c82 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa877f02c skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xa884b2d1 iterate_dir +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8bcea64 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d844fe sk_net_capable +EXPORT_SYMBOL vmlinux 0xa8e2f4d0 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8fb68d8 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa910e781 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa93a6268 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa93f7ae6 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa9803150 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xa983a0bf proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xa998933c udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9abb2be blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xa9abd2d4 filp_open +EXPORT_SYMBOL vmlinux 0xa9c18252 kernel_read +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9c8101f kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xa9dafa96 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xa9e52430 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa2a1767 finish_open +EXPORT_SYMBOL vmlinux 0xaa2f2752 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa450b19 d_splice_alias +EXPORT_SYMBOL vmlinux 0xaa49f6df set_user_nice +EXPORT_SYMBOL vmlinux 0xaa4d1007 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xaa5b907a pci_disable_device +EXPORT_SYMBOL vmlinux 0xaa623f85 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa71af49 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xaa7dfa9b dump_skip +EXPORT_SYMBOL vmlinux 0xaa87681f i2c_clients_command +EXPORT_SYMBOL vmlinux 0xaa9dd153 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xaaa32265 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xaaa471de security_inode_init_security +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa5ed78 kfree_skb +EXPORT_SYMBOL vmlinux 0xaacf22a5 uart_match_port +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad83409 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae65219 noop_qdisc +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafd4cdd textsearch_prepare +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0277be sk_capable +EXPORT_SYMBOL vmlinux 0xab0dad75 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xab2393e6 ilookup5 +EXPORT_SYMBOL vmlinux 0xab3236f9 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab36e994 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3e56dd inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xab4de44f console_stop +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab637941 udp_poll +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xabb36729 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xabbccdf8 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xabbf82a2 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xabc0ec17 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xabd767fb ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabfd9ae4 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xac0e4d6c generic_block_bmap +EXPORT_SYMBOL vmlinux 0xac12b469 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xac15822b vfs_mkdir +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1a83ca pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac398f65 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xac40a728 nobh_write_end +EXPORT_SYMBOL vmlinux 0xac53043e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac56bdaf nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xac5ce0fe nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6dd7ca devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xac70df26 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xac804487 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac8cd913 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc37440 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xacce4bc6 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xacd275e5 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdb06dc vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad01d0de skb_queue_purge +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad28b54b configfs_depend_item +EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad38b718 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad837bc0 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xad8ae307 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad992892 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad9b4c29 put_cmsg +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada4d06f get_tree_keyed +EXPORT_SYMBOL vmlinux 0xadaa38a2 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xadbc117e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc40ea8 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xadc57ffe dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd6f261 param_get_long +EXPORT_SYMBOL vmlinux 0xadd80df3 add_to_pipe +EXPORT_SYMBOL vmlinux 0xadd8431a devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xaddb2760 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xaddf9a74 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xadecff33 rproc_del +EXPORT_SYMBOL vmlinux 0xadf1db91 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0410c8 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xae1a59b1 mr_table_dump +EXPORT_SYMBOL vmlinux 0xae20d012 iterate_fd +EXPORT_SYMBOL vmlinux 0xae275ead ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae45165f udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xae55eafb jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xae583601 set_binfmt +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae71a8fa blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xae89ce18 __invalidate_device +EXPORT_SYMBOL vmlinux 0xae8e1359 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xaea1e19e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xaea7ed18 tty_check_change +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaed371dc bio_split +EXPORT_SYMBOL vmlinux 0xaef0738a sock_no_connect +EXPORT_SYMBOL vmlinux 0xaef9528d __frontswap_load +EXPORT_SYMBOL vmlinux 0xaef9db57 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xaf0457a5 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf365974 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf79992f security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xaf7f1bed netpoll_print_options +EXPORT_SYMBOL vmlinux 0xaf846701 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xafa0bee1 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xafa94a3e page_mapping +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafcc8a8a tty_port_hangup +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafdb47fd pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xafed47da blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xaff1fc27 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01de31c page_symlink +EXPORT_SYMBOL vmlinux 0xb02ce543 is_nd_dax +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb03bd4c1 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb05095ce ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0614537 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xb09328c2 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xb09bfd88 register_qdisc +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a44280 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xb0af86a8 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xb0baf9bb phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0dbe66a unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0eb780d dma_ops +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0fd781f nf_log_trace +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11b7a82 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb138f636 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xb1396009 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb151577a sock_create_lite +EXPORT_SYMBOL vmlinux 0xb15a58d9 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xb168508a nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xb16eab7a blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xb1719e28 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb189723b __udp_disconnect +EXPORT_SYMBOL vmlinux 0xb1900e2a blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xb196a633 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1a7abe9 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb1ac665a jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xb1aca857 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1dd6c33 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1f70f72 vme_bus_num +EXPORT_SYMBOL vmlinux 0xb1fa731d param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb1fb8037 dget_parent +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21b7360 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xb2221e66 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb2285987 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb236be57 rproc_boot +EXPORT_SYMBOL vmlinux 0xb2385f65 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xb24c96ad __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xb2520c44 dquot_destroy +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb2630853 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xb27cda7a netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xb280ecda md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xb2838052 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xb288df00 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xb29317bb blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c68816 security_path_mknod +EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb2d6ce4e nobh_write_begin +EXPORT_SYMBOL vmlinux 0xb2df8564 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fabf63 efi +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb2fdb9db ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31d5e76 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32e2e18 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xb3316b97 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xb34cea3d ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xb34fe322 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xb3615cde wake_up_process +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3692dd6 get_agp_version +EXPORT_SYMBOL vmlinux 0xb36c0301 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a46cd4 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xb3bc63a1 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3c3fcf2 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xb3c51caf devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xb3c5496e mr_dump +EXPORT_SYMBOL vmlinux 0xb3cafa6d netdev_notice +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb3fc19f2 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xb4023175 __x86_indirect_alt_jmp_r14 +EXPORT_SYMBOL vmlinux 0xb402ffb0 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb4072fd6 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42c36d1 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xb4437583 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb46227b2 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xb467ca09 napi_build_skb +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49e36ad phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xb4ad9a77 phy_find_first +EXPORT_SYMBOL vmlinux 0xb4b31a4f nlmsg_notify +EXPORT_SYMBOL vmlinux 0xb4c16f28 skb_queue_head +EXPORT_SYMBOL vmlinux 0xb4c7bde6 param_ops_string +EXPORT_SYMBOL vmlinux 0xb4cf737a inode_init_once +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53b3473 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb544078f generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xb561f462 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58e77c3 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xb5900cc9 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a5fdad reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5ad9bf0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xb5b408da dev_disable_lro +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bee144 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xb5d68180 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5fb05b6 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0xb603da5b migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xb616b430 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb61a8317 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb61cb08f param_get_uint +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb61e3aeb get_tree_bdev +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63de0d6 skb_expand_head +EXPORT_SYMBOL vmlinux 0xb6475d49 done_path_create +EXPORT_SYMBOL vmlinux 0xb64c8ba7 filemap_flush +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65b2173 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb66aa4b0 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xb673c237 dma_set_mask +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb67548cb amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb678c0f5 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69939e6 dquot_alloc +EXPORT_SYMBOL vmlinux 0xb69be03c noop_fsync +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b17422 PDE_DATA +EXPORT_SYMBOL vmlinux 0xb6b9b7a8 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xb6be20d1 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xb6c4cb60 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xb6e4a12f page_get_link +EXPORT_SYMBOL vmlinux 0xb6e57f0e pipe_unlock +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72e690d ip_output +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb75dff7b clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xb783dda5 inet_add_offload +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78daf75 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb795cb35 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xb7a636de qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xb7af0763 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb7b32989 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xb7b3cc04 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xb7b88711 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c2cbf1 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d47134 phy_init_hw +EXPORT_SYMBOL vmlinux 0xb8107ece __x86_indirect_alt_jmp_rcx +EXPORT_SYMBOL vmlinux 0xb81b5397 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xb82be77b filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xb8302443 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb8326455 inet6_release +EXPORT_SYMBOL vmlinux 0xb84f071b skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xb862116d __put_page +EXPORT_SYMBOL vmlinux 0xb866527a wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb87530ff __d_drop +EXPORT_SYMBOL vmlinux 0xb87f8614 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89fcf18 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb8a7d102 dquot_commit +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8d11dcf simple_release_fs +EXPORT_SYMBOL vmlinux 0xb8d16736 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xb8d3ee96 register_key_type +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8ebdd55 dquot_drop +EXPORT_SYMBOL vmlinux 0xb8f2216e flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb8f4f580 cdrom_open +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9196a6d md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xb92109c6 generic_read_dir +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9438663 current_in_userns +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9580ec3 ihold +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb977467d block_truncate_page +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb983af29 free_netdev +EXPORT_SYMBOL vmlinux 0xb9a55d00 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xb9a84f78 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b7c7f5 xp_free +EXPORT_SYMBOL vmlinux 0xb9c6c4cc serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb9c7bad4 kobject_get +EXPORT_SYMBOL vmlinux 0xb9d02527 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xb9d7cd24 rtc_add_group +EXPORT_SYMBOL vmlinux 0xb9e007a9 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xb9e00d75 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e39e07 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba48a0be security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4c44a8 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5b6ce5 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xba73a17d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xba7498ee xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xba766011 logfc +EXPORT_SYMBOL vmlinux 0xba79245e __scsi_add_device +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba9c7c5e crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xba9d0ab4 mntput +EXPORT_SYMBOL vmlinux 0xbaa6d471 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xbad5bdae pipe_lock +EXPORT_SYMBOL vmlinux 0xbad7d94f ip6_xmit +EXPORT_SYMBOL vmlinux 0xbadf3e3c __check_sticky +EXPORT_SYMBOL vmlinux 0xbae5c313 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xbaef7df7 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xbafc79e5 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xbb004072 kill_anon_super +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb17d7b8 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xbb1b857a param_get_short +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb43ff9e udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xbb4d2313 __napi_schedule +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5bd4c9 ppp_input +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb6fe1c6 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xbb845f81 md_flush_request +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc0178da acpi_register_debugger +EXPORT_SYMBOL vmlinux 0xbc03aa39 param_get_hexint +EXPORT_SYMBOL vmlinux 0xbc0c3106 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xbc1dd634 d_alloc_name +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc289acd netdev_change_features +EXPORT_SYMBOL vmlinux 0xbc373727 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xbc432c6c vga_client_register +EXPORT_SYMBOL vmlinux 0xbc5b0bb7 __devm_request_region +EXPORT_SYMBOL vmlinux 0xbc60368a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xbc611051 dev_get_flags +EXPORT_SYMBOL vmlinux 0xbc935bd9 may_umount_tree +EXPORT_SYMBOL vmlinux 0xbc9f0e99 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcf575b5 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xbcfa7596 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xbcfe0889 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xbcffa4a1 dev_change_flags +EXPORT_SYMBOL vmlinux 0xbd0f8f90 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xbd23a5ab flush_signals +EXPORT_SYMBOL vmlinux 0xbd36770d dm_table_get_size +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd43a4d4 ipv4_mtu +EXPORT_SYMBOL vmlinux 0xbd43c244 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd578248 tty_do_resize +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd8f832d skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xbd9b5969 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xbda1c5f6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbda3d125 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xbda4f54f __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbdce4de9 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xbdd4ce8f __destroy_inode +EXPORT_SYMBOL vmlinux 0xbde39f44 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xbde443a8 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xbdf7532b pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xbdf7feb4 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe17a298 skb_clone +EXPORT_SYMBOL vmlinux 0xbe30faa4 get_fs_type +EXPORT_SYMBOL vmlinux 0xbe33941b dev_addr_del +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe63a044 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6f61e7 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xbe7ba110 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe821349 tcf_block_put +EXPORT_SYMBOL vmlinux 0xbea38f07 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xbed23705 security_path_unlink +EXPORT_SYMBOL vmlinux 0xbedbca70 input_open_device +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf15bcd0 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xbf26fac4 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf44d9e5 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xbf5496d4 rproc_detach +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf8de8f7 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xbf92ace4 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfaced95 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xbfb40e30 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xbfb637f2 dev_trans_start +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc7c848 devm_ioremap +EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0xbfea806e sock_from_file +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff08e7e i2c_verify_client +EXPORT_SYMBOL vmlinux 0xbffe304c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc010690b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc024f883 tcp_mmap +EXPORT_SYMBOL vmlinux 0xc02ea585 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xc0485ab6 bio_copy_data +EXPORT_SYMBOL vmlinux 0xc04b8532 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xc04fe596 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xc0599eeb crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xc06e13c0 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc07c93c9 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc07e05cf dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xc0abd02b path_get +EXPORT_SYMBOL vmlinux 0xc0af3a60 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0afc60c nf_log_register +EXPORT_SYMBOL vmlinux 0xc0b19709 __x86_indirect_alt_call_r13 +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c1f130 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc0db2197 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc0e3e3c0 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc0e9c6a3 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc10edb7d posix_lock_file +EXPORT_SYMBOL vmlinux 0xc1111848 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc11899d1 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xc11d7bd4 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xc12b095a cdev_device_del +EXPORT_SYMBOL vmlinux 0xc130c784 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc13fdc57 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15ac851 param_set_long +EXPORT_SYMBOL vmlinux 0xc15af300 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1ddd6fc dst_dev_put +EXPORT_SYMBOL vmlinux 0xc1df7fc7 inet_frag_find +EXPORT_SYMBOL vmlinux 0xc1e8aaae inet_del_protocol +EXPORT_SYMBOL vmlinux 0xc1f2b497 discard_new_inode +EXPORT_SYMBOL vmlinux 0xc1f498be __skb_ext_del +EXPORT_SYMBOL vmlinux 0xc215a797 tso_count_descs +EXPORT_SYMBOL vmlinux 0xc21e2696 agp_free_memory +EXPORT_SYMBOL vmlinux 0xc21e79c0 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xc22582b5 inet_sendpage +EXPORT_SYMBOL vmlinux 0xc227e14b filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xc2297e15 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2439cb8 scsi_partsize +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc27f069b d_add +EXPORT_SYMBOL vmlinux 0xc284e4e6 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2a74028 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xc2b43b0d put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xc2c4bdc2 con_is_visible +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e86d94 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xc2faec4c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc3001675 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xc305ae66 ps2_end_command +EXPORT_SYMBOL vmlinux 0xc306d4c5 d_alloc +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3157b30 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc323a099 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xc3284e02 fb_get_mode +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3405d4c pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xc35f2b01 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3708007 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38a458c agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc392b3fa ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b7596f __break_lease +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3d45a57 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xc3e8b315 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xc3fcd199 km_policy_notify +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc414926d udp_gro_complete +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42443c9 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xc42d95ee page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc45e8ce3 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xc461fd0a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xc467609a clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xc475faa8 edac_mc_find +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc477b7fd fqdir_init +EXPORT_SYMBOL vmlinux 0xc4852d1b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xc48d1108 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc4a324cf tcp_peek_len +EXPORT_SYMBOL vmlinux 0xc4ab9a41 make_kprojid +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b330b4 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xc4bb8aa1 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xc4bc6b6a fd_install +EXPORT_SYMBOL vmlinux 0xc4c329f0 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xc4da582e input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xc4f5c4f6 file_path +EXPORT_SYMBOL vmlinux 0xc4fe601b __x86_indirect_alt_call_rbp +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc53eef1e devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xc5559d37 __x86_indirect_alt_jmp_r11 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc559addd cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xc578fd57 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc585b9b0 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e412d skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xc5ad6a50 fs_bio_set +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bb7b60 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xc5cb89e4 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e75b1b input_setup_polling +EXPORT_SYMBOL vmlinux 0xc5f7c2af iunique +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fda13b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xc60330f5 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc605ae5c ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc615c9d1 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63c065c dst_init +EXPORT_SYMBOL vmlinux 0xc645b229 would_dump +EXPORT_SYMBOL vmlinux 0xc64c902d skb_append +EXPORT_SYMBOL vmlinux 0xc64d3807 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6718f9c qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xc68196ab _dev_info +EXPORT_SYMBOL vmlinux 0xc6868be8 PageMovable +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc69ef38b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xc6a4fb79 param_set_uint +EXPORT_SYMBOL vmlinux 0xc6ad2a9a flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xc6aff247 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce7e24 passthru_features_check +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6ef76d7 vlan_for_each +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6fdd063 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xc70592f4 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc709c4d7 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xc716b5af scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xc7205896 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc737d1d4 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xc7467b05 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc74e10fb security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc76f7067 end_page_writeback +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7901ec0 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xc79a87b8 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a7179c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xc7ab32b1 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xc7b749f6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xc7b9ec41 fb_pan_display +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81b33bc inet_bind +EXPORT_SYMBOL vmlinux 0xc827c31d __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xc82e95ee in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc830d9d8 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc831e485 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc845a2aa pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc891c84c mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xc8920952 input_register_handle +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c100e0 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xc8c38041 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xc8d6d3a2 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xc8d9e3a3 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8dea93f jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xc8f51269 dma_find_channel +EXPORT_SYMBOL vmlinux 0xc91f75d8 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc94c2413 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xc955ee03 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc9589cfe eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc9906c35 scsi_host_get +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a1c7f9 inet_select_addr +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9b7151b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xc9c39589 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc9c40ad4 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xc9dad148 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xc9db6432 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e34f9e fqdir_exit +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xca02564b ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xca101451 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca646b64 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xca7081b0 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xca7a1fb7 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xca7cfbd4 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xca80ff25 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xca8662ca security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xca9263c6 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca93c9e2 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9d0cf5 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xcaa7869c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xcabbcf6a try_module_get +EXPORT_SYMBOL vmlinux 0xcac29b08 vm_map_pages +EXPORT_SYMBOL vmlinux 0xcad08299 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb16464b md_update_sb +EXPORT_SYMBOL vmlinux 0xcb23362c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xcb3ab9a2 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb41259c pci_select_bars +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8250cb ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xcb8aec10 neigh_xmit +EXPORT_SYMBOL vmlinux 0xcbabe5e4 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xcbb91d11 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xcbe71b9a udp_ioctl +EXPORT_SYMBOL vmlinux 0xcbe77916 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xcbee3364 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc018d87 new_inode +EXPORT_SYMBOL vmlinux 0xcc13218a generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1e74a5 __register_nls +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc3d951e skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5f8522 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xcc68e029 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xcc771ad2 current_task +EXPORT_SYMBOL vmlinux 0xcc82bf6d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xcc889741 __x86_indirect_alt_jmp_rdx +EXPORT_SYMBOL vmlinux 0xcc8f5d78 write_one_page +EXPORT_SYMBOL vmlinux 0xcc956600 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xcc9e98be cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca86e4e scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xccad668c vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xccb81946 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xccbc73f1 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xccccebba netdev_err +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd69503 d_genocide +EXPORT_SYMBOL vmlinux 0xccdc0926 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xccedcb85 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf432cf xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd05a15b vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2a4e2c truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xcd3161e2 request_firmware +EXPORT_SYMBOL vmlinux 0xcd626ff1 simple_lookup +EXPORT_SYMBOL vmlinux 0xcd734015 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xcd7583e6 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xcd778c28 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xcd8bb39c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd95ec90 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xcd969390 f_setown +EXPORT_SYMBOL vmlinux 0xcda272c7 setup_new_exec +EXPORT_SYMBOL vmlinux 0xcda2956c uart_get_divisor +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf29cf6 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce32bb26 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5930f2 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce63c97c dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xce6931ee jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xce6aff7c xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xce7613be ata_dev_printk +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0xce8ffa42 make_kuid +EXPORT_SYMBOL vmlinux 0xce91c46a dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xce981025 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xce9ff13e remap_pfn_range +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xcea76e1b input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceabe5e3 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xceb1fc37 register_shrinker +EXPORT_SYMBOL vmlinux 0xceb58c5e audit_log +EXPORT_SYMBOL vmlinux 0xcec74e21 devm_memremap +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced1e0b4 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xcee4ae84 netdev_features_change +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0677e1 tcp_poll +EXPORT_SYMBOL vmlinux 0xcf0c0b18 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xcf0e2614 mpage_writepage +EXPORT_SYMBOL vmlinux 0xcf0facf1 get_phy_device +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf380e78 give_up_console +EXPORT_SYMBOL vmlinux 0xcf3853ee acpi_device_hid +EXPORT_SYMBOL vmlinux 0xcf45c616 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf53c50b dst_release_immediate +EXPORT_SYMBOL vmlinux 0xcf6f46f2 cad_pid +EXPORT_SYMBOL vmlinux 0xcf7c24ad sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xcf7de4f2 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xcf8169b2 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xcf8484a4 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb326ac dcb_getapp +EXPORT_SYMBOL vmlinux 0xcfc3644b update_devfreq +EXPORT_SYMBOL vmlinux 0xcfc62a20 d_delete +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfcbc986 mmc_command_done +EXPORT_SYMBOL vmlinux 0xcfdc372d textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcffd5f09 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xd0389211 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd059777b vif_device_init +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06a1b07 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd08dd2a7 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd0a3881a pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd0a88063 vme_dma_request +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0d3f3d6 follow_down +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f3c200 sync_filesystem +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10064d0 build_skb +EXPORT_SYMBOL vmlinux 0xd132f69d dma_sync_wait +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13b39d1 __kfree_skb +EXPORT_SYMBOL vmlinux 0xd13c6fe7 sync_file_create +EXPORT_SYMBOL vmlinux 0xd14d3919 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xd1524926 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xd155c64a __quota_error +EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd188092a pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xd1947275 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1ab8661 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xd1b5bd43 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xd1b7a8db ata_link_printk +EXPORT_SYMBOL vmlinux 0xd1b9d045 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dc3f4c padata_alloc +EXPORT_SYMBOL vmlinux 0xd1e85dc0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xd1eba8bb phy_validate_pause +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd226bb3c netdev_warn +EXPORT_SYMBOL vmlinux 0xd22783e0 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd23a775f skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xd24d7629 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xd25520a2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xd2593841 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25ea932 tty_name +EXPORT_SYMBOL vmlinux 0xd2672bee sg_miter_start +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd291a175 __module_get +EXPORT_SYMBOL vmlinux 0xd2a17d64 import_single_range +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2bd9ed6 fb_set_var +EXPORT_SYMBOL vmlinux 0xd2c18c13 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e09e8a dcache_readdir +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2fad688 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd2fb2c24 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xd3041810 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd30f06bf napi_gro_receive +EXPORT_SYMBOL vmlinux 0xd310b085 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd313ab52 __scm_send +EXPORT_SYMBOL vmlinux 0xd31541f2 __register_chrdev +EXPORT_SYMBOL vmlinux 0xd31d80fa register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xd31f5bb3 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xd32c972f mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd346b35c __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0xd3489298 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd35012ca fb_validate_mode +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3754dae ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xd37d31c7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd39dedf5 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xd3b6d2e0 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xd3bdd757 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xd3c54ab2 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xd3e9d006 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3ef8764 __bforget +EXPORT_SYMBOL vmlinux 0xd3f34b13 user_revoke +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd412d428 pci_restore_state +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd463d878 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd46d3a2a pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd46dc19b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xd475ecbd dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48f789c netlink_ack +EXPORT_SYMBOL vmlinux 0xd4945561 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0xd4953e7f sg_miter_stop +EXPORT_SYMBOL vmlinux 0xd4ae2c53 d_add_ci +EXPORT_SYMBOL vmlinux 0xd4b665d9 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cfc8b2 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd4d17295 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d257ce filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xd4e18a11 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xd4e8258a generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xd4f86677 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd50710c1 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd53e320c sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xd547a7f5 seq_open_private +EXPORT_SYMBOL vmlinux 0xd54fd7c4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd555331a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xd5559f6d devfreq_update_status +EXPORT_SYMBOL vmlinux 0xd55704dd xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd5711f9f mmc_start_request +EXPORT_SYMBOL vmlinux 0xd57fe030 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd5965a43 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xd59bdd79 netif_device_attach +EXPORT_SYMBOL vmlinux 0xd5a16ae3 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5ba3d7a dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xd5bf54ed is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd615c7e9 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd634f9f2 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xd63e284f compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd6530083 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xd66b882a mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd68d0b54 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a6fc04 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6aabc33 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c5e1fb put_disk +EXPORT_SYMBOL vmlinux 0xd6ca0494 genphy_resume +EXPORT_SYMBOL vmlinux 0xd6d160d7 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xd6d7398d put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xd6dc6564 mdiobus_free +EXPORT_SYMBOL vmlinux 0xd6e0f296 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xd6e644f7 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd700fdd9 padata_do_serial +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73afebe blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd76ebbf1 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xd77a2d6d __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xd7c6b73d forget_cached_acl +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d2f327 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd7d30739 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd80a532d get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xd82b03e1 freeze_super +EXPORT_SYMBOL vmlinux 0xd83428ac pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd84f39b9 generic_listxattr +EXPORT_SYMBOL vmlinux 0xd8552973 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd856aa0f mark_info_dirty +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8bc79bc unload_nls +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d4d868 dump_skip_to +EXPORT_SYMBOL vmlinux 0xd8dc4ef3 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e0933c cdev_del +EXPORT_SYMBOL vmlinux 0xd8e97cf8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xd8f80139 generic_file_open +EXPORT_SYMBOL vmlinux 0xd8fae41c ps2_command +EXPORT_SYMBOL vmlinux 0xd8ffbd6a ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xd905fab0 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xd91eb3c1 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9318905 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd95205c7 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xd961e820 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd96d4787 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd976ad46 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99ebaec notify_change +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9a99a73 bio_chain +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9baa815 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xd9bbaee1 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xd9cbe136 path_put +EXPORT_SYMBOL vmlinux 0xd9cd1156 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e1c7cf __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xd9f2da2f inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd9f72122 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda2a1825 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xda3bf278 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3da2d8 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xda5cf6b7 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xda6e6541 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xda70ba0e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7a4735 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xda7bf3d3 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xda811744 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xda89aa70 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda91b1c6 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xdac3ea55 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdadba506 mpage_readpage +EXPORT_SYMBOL vmlinux 0xdaf7ca71 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1e9658 dst_discard_out +EXPORT_SYMBOL vmlinux 0xdb386785 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xdb3fe383 ether_setup +EXPORT_SYMBOL vmlinux 0xdb47efef nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xdb4ea9d3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xdb6424fa hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6b2111 dm_register_target +EXPORT_SYMBOL vmlinux 0xdb708839 __x86_indirect_alt_jmp_rsi +EXPORT_SYMBOL vmlinux 0xdb7533c9 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8342ea skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xdb843005 user_path_create +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdbaf9274 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xdbb04336 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xdbbf9fbf lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xdbc123ce sock_set_priority +EXPORT_SYMBOL vmlinux 0xdbcb2d22 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe66819 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdbf9bb72 tty_port_init +EXPORT_SYMBOL vmlinux 0xdbfd2ec0 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc36fb8e netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xdc44b4d5 param_get_ulong +EXPORT_SYMBOL vmlinux 0xdc48783a sk_reset_timer +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc726f70 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xdc81a309 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xdc8d3228 __x86_indirect_alt_call_r9 +EXPORT_SYMBOL vmlinux 0xdc971f1f kernel_accept +EXPORT_SYMBOL vmlinux 0xdcc69b9c mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xdcd100ea __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xdcd3896e agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xdce303d0 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xdce435c5 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xdcf5817a config_item_set_name +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd0dc25d __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xdd189238 bio_add_page +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd370078 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xdd3970bd eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xdd60a7d5 input_event +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd66fda0 pps_event +EXPORT_SYMBOL vmlinux 0xdd70231d cfb_fillrect +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdda572d4 dump_emit +EXPORT_SYMBOL vmlinux 0xdda76c6d kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdda8d3f4 md_handle_request +EXPORT_SYMBOL vmlinux 0xddad68c5 unregister_key_type +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd83f7b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xddde616f input_get_keycode +EXPORT_SYMBOL vmlinux 0xddeaa9a3 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfb115a truncate_pagecache +EXPORT_SYMBOL vmlinux 0xddfc0c31 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xde01d25f __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xde18eb79 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2b6bb1 seq_pad +EXPORT_SYMBOL vmlinux 0xde47b39c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde8c2cd0 ilookup +EXPORT_SYMBOL vmlinux 0xde929d86 pskb_extract +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9bf46f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xde9d05b9 dev_driver_string +EXPORT_SYMBOL vmlinux 0xdec38b56 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xdec99e63 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdedc4d12 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdefd2a55 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdf12c83e devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xdf25082a md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf41c87c fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xdf42cee9 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xdf5ba825 generic_write_checks +EXPORT_SYMBOL vmlinux 0xdf65a071 tcf_classify +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf708ada iptun_encaps +EXPORT_SYMBOL vmlinux 0xdf803e27 generic_fillattr +EXPORT_SYMBOL vmlinux 0xdf847416 input_reset_device +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9556e2 __skb_pad +EXPORT_SYMBOL vmlinux 0xdfa044ca eth_header_parse +EXPORT_SYMBOL vmlinux 0xdfb3351a devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xdfc22ddb mdio_device_remove +EXPORT_SYMBOL vmlinux 0xdfc5ca1d page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe018f104 __frontswap_test +EXPORT_SYMBOL vmlinux 0xe01bffc4 mount_subtree +EXPORT_SYMBOL vmlinux 0xe0203787 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe0368ed5 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe03a4c00 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04e3b81 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xe052e91f tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xe063ea1c max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe0751943 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe08a0b95 vme_irq_free +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe095952a skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xe09a16d1 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b68a43 follow_down_one +EXPORT_SYMBOL vmlinux 0xe0bd1e4c rtnl_unicast +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0ceed06 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xe0d12d41 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1186673 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1280c12 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1556eb5 load_nls_default +EXPORT_SYMBOL vmlinux 0xe18e04e1 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xe19f1657 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xe1a276a0 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe1a42e74 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1aa74e1 legacy_pic +EXPORT_SYMBOL vmlinux 0xe1b5176a default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1cd3805 phy_write_paged +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e9b7e5 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xe21bc16e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe21fefee file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xe248d134 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe24f2f8c configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe2558172 send_sig +EXPORT_SYMBOL vmlinux 0xe2659c69 del_gendisk +EXPORT_SYMBOL vmlinux 0xe27321ae xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27b1985 serio_close +EXPORT_SYMBOL vmlinux 0xe298276c __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xe29c286b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xe29f38ab pci_enable_msi +EXPORT_SYMBOL vmlinux 0xe2a6240d udp_set_csum +EXPORT_SYMBOL vmlinux 0xe2b9d38a xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xe2d019a3 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2ef0891 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe2f07e16 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe2f50e1a __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xe2f92bb2 agp_backend_release +EXPORT_SYMBOL vmlinux 0xe2fb9ae9 seq_escape +EXPORT_SYMBOL vmlinux 0xe318652f __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32c5a4c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xe32e2ced netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xe32e7aa8 account_page_redirty +EXPORT_SYMBOL vmlinux 0xe380c64c fget +EXPORT_SYMBOL vmlinux 0xe3874a25 seq_file_path +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a16dc4 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xe3ce6e77 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f0c773 inet6_bind +EXPORT_SYMBOL vmlinux 0xe3f61014 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xe3f8d2be acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe40daa3b twl6040_power +EXPORT_SYMBOL vmlinux 0xe41994fe __free_pages +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe432a4cf pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe43ac3e7 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xe44968fc input_unregister_device +EXPORT_SYMBOL vmlinux 0xe45f6424 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe471d251 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xe47f3299 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xe4803865 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xe48656ac jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xe4914180 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xe4afc7ce __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe4bc1a87 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c0e58b pci_iounmap +EXPORT_SYMBOL vmlinux 0xe4c3524f __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4dd5b63 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xe4ddff54 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xe4e0cef9 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xe4e4011e scsi_ioctl +EXPORT_SYMBOL vmlinux 0xe504b2f5 sync_blockdev +EXPORT_SYMBOL vmlinux 0xe50bf351 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xe511494c rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe541adda pci_enable_device +EXPORT_SYMBOL vmlinux 0xe5462e68 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xe5574b7f md_register_thread +EXPORT_SYMBOL vmlinux 0xe55fc9d6 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xe57b5df9 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xe57ee657 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5843050 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0xe58ae3fd sock_register +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe593f622 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xe598cd31 __x86_indirect_alt_call_rcx +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5bdf088 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xe5c3bf38 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe600a6c0 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6196465 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe61bfba9 fc_mount +EXPORT_SYMBOL vmlinux 0xe62e2869 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xe634de46 iget_failed +EXPORT_SYMBOL vmlinux 0xe638f07d mmc_can_erase +EXPORT_SYMBOL vmlinux 0xe64c65a1 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xe64fcad2 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xe65fb100 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xe674ce8b arp_xmit +EXPORT_SYMBOL vmlinux 0xe676067e netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe67a4d92 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6bbeb3f inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6f1ca2b sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe7197710 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72f7d5f iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe73db739 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe75ac6f5 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xe7697116 netdev_emerg +EXPORT_SYMBOL vmlinux 0xe76cd830 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xe7851644 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe79ab0a3 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0xe7c7e6d1 vm_map_ram +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e16107 nd_device_notify +EXPORT_SYMBOL vmlinux 0xe7e57319 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xe7ecc48d mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xe7faad25 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe7fc5c50 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xe80c8f49 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe80ecb0c seq_release +EXPORT_SYMBOL vmlinux 0xe814f091 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe845d70b dev_mc_init +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe87640d5 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xe892cef3 default_llseek +EXPORT_SYMBOL vmlinux 0xe8aa2c17 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xe8b031f2 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xe8c866a4 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xe8cdcc54 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xe8d4d4ea tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe8dd7ef2 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xe8e995e9 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xe8fa3cb2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8ff789c pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xe9059463 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xe9081b57 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90cb040 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe917cf89 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xe92334c7 pci_pme_active +EXPORT_SYMBOL vmlinux 0xe9306522 pci_request_regions +EXPORT_SYMBOL vmlinux 0xe9313930 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xe93b6831 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xe953aa85 phy_disconnect +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9578595 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xe95817ab ex_handler_copy +EXPORT_SYMBOL vmlinux 0xe95b1f3a xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xe9814ca6 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xe98a828a __x86_indirect_alt_call_r14 +EXPORT_SYMBOL vmlinux 0xe9919a7b __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states +EXPORT_SYMBOL vmlinux 0xe9ac25bf __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b5d956 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe9ccd6d5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xe9db0282 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xe9db6a07 unpin_user_page +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea0f9ae2 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xea2346f7 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xea2c0c35 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xea2d91fa pcie_set_mps +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4c573e tcp_splice_read +EXPORT_SYMBOL vmlinux 0xea63265f mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea82ebc9 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xea86f23f get_cached_acl +EXPORT_SYMBOL vmlinux 0xea8a7c1e netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xea90e7c9 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xea9e9dad ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xeaa18650 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xeaaa287f md_error +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeacbaa91 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf2bec0 vga_con +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb0125ad pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb353a4a acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3bc84c mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb784c7f scsi_dma_map +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb87a2cb jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebbd6844 set_posix_acl +EXPORT_SYMBOL vmlinux 0xebdbf9d1 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xebef2472 sock_create_kern +EXPORT_SYMBOL vmlinux 0xebf19952 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xec0566bc find_vma +EXPORT_SYMBOL vmlinux 0xec0947ce from_kprojid +EXPORT_SYMBOL vmlinux 0xec0e648d blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xec1c5bbc phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec37e793 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec92e6a4 put_fs_context +EXPORT_SYMBOL vmlinux 0xec9d41c0 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecbcf394 kern_path +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xecddd3a4 component_match_add_release +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceeb22c pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xeceeece0 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xecf04373 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xecf2bdf3 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed07be40 netif_rx +EXPORT_SYMBOL vmlinux 0xed08e0ab mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xed131606 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed24df2e of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xed2c0da6 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed3d6b34 sk_alloc +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed795cdb napi_disable +EXPORT_SYMBOL vmlinux 0xed7b360c textsearch_unregister +EXPORT_SYMBOL vmlinux 0xeda706a5 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xedb61a7e xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbf230f mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedee74db nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xee2065f9 inet_frags_init +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2ef29a netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xee36077a page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xee4198c2 security_sb_remount +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5d6273 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xee606f2a send_sig_info +EXPORT_SYMBOL vmlinux 0xee778f45 __lock_page +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee808817 neigh_destroy +EXPORT_SYMBOL vmlinux 0xee824053 param_ops_bint +EXPORT_SYMBOL vmlinux 0xee8b3ff9 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xee8b861b ppp_dev_name +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee8f72a6 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9c0760 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeabf2ea dev_uc_init +EXPORT_SYMBOL vmlinux 0xeeabfe85 blk_put_request +EXPORT_SYMBOL vmlinux 0xeec4df09 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xeec9b335 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xeedf5532 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xeee16153 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xeefca698 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xef263db2 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xef3f1084 free_task +EXPORT_SYMBOL vmlinux 0xef60d4af netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xef77d563 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9decee phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xefa71d61 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefbd115b kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xefc5e218 configfs_register_group +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefef0aa6 __icmp_send +EXPORT_SYMBOL vmlinux 0xeff0c563 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xeffcf795 pcim_iomap +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00223e0 uart_resume_port +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf02e7136 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf03049ed vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xf031bc1e seq_path +EXPORT_SYMBOL vmlinux 0xf04b73b8 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xf04dc512 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf0629f4a __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf065c28f __phy_resume +EXPORT_SYMBOL vmlinux 0xf0711342 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0b24ee5 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf0bdb566 pci_request_irq +EXPORT_SYMBOL vmlinux 0xf0e30de4 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xf0e8bada jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf165d331 set_blocksize +EXPORT_SYMBOL vmlinux 0xf17b504f phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xf17c9206 kill_fasync +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a2c444 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf1a5c6bf scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1c1f6ef kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xf1c6b3ca fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xf1c75983 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf1ccedb4 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dc9575 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e49ebd iput +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f6b116 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xf1fd7446 import_iovec +EXPORT_SYMBOL vmlinux 0xf20175d4 kernel_listen +EXPORT_SYMBOL vmlinux 0xf2035438 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xf224a553 __register_binfmt +EXPORT_SYMBOL vmlinux 0xf23f8ffa seq_escape_mem +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf251cce4 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28a0ea4 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d51334 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf2d646fe pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xf2e38462 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf309a5ab bio_advance +EXPORT_SYMBOL vmlinux 0xf30b2978 scmd_printk +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf32e7c67 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xf336ac3c mount_bdev +EXPORT_SYMBOL vmlinux 0xf344eaac mmc_retune_release +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf347b309 vfs_symlink +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35db58d skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xf35fe8d5 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xf3718ab0 simple_statfs +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3973209 inet6_offloads +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a5da03 keyring_alloc +EXPORT_SYMBOL vmlinux 0xf3a9190c vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ef6b67 simple_empty +EXPORT_SYMBOL vmlinux 0xf3eff98b __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xf3f190d0 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xf3f27fd2 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf3feb1ee nd_dax_probe +EXPORT_SYMBOL vmlinux 0xf3ffcd2b pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf4047d88 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xf417169f inet_protos +EXPORT_SYMBOL vmlinux 0xf42cfc3e nd_device_register +EXPORT_SYMBOL vmlinux 0xf43007c4 wireless_send_event +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf43fbdf2 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44cc02f inode_insert5 +EXPORT_SYMBOL vmlinux 0xf460b404 register_filesystem +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48930bd input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf4916a93 sk_stream_error +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b6895b backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4b8b3a6 d_lookup +EXPORT_SYMBOL vmlinux 0xf4b9b8b2 inet_put_port +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4de388f phy_device_remove +EXPORT_SYMBOL vmlinux 0xf4de92d7 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50d7a00 drop_nlink +EXPORT_SYMBOL vmlinux 0xf513389e kobject_put +EXPORT_SYMBOL vmlinux 0xf51758e4 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf518a19e tso_build_data +EXPORT_SYMBOL vmlinux 0xf5222dff serio_interrupt +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5513a83 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf553155d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf55d8cb2 bio_init +EXPORT_SYMBOL vmlinux 0xf576f3b6 input_free_device +EXPORT_SYMBOL vmlinux 0xf578aaab fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xf585a29f ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5b4ce14 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf5b4e495 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf5b544ce devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xf5c93a06 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xf5cb1a9d vga_put +EXPORT_SYMBOL vmlinux 0xf5cc524f sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f09a79 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xf5f61831 framebuffer_release +EXPORT_SYMBOL vmlinux 0xf6093aea key_payload_reserve +EXPORT_SYMBOL vmlinux 0xf609a364 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf6303476 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf6321913 vc_resize +EXPORT_SYMBOL vmlinux 0xf63655dc scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64b01c5 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xf6625129 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67ac688 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf690656d netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xf6c01da0 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xf6c11e63 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xf6ca8bf4 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf6d12970 tty_devnum +EXPORT_SYMBOL vmlinux 0xf6e93bde sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf6e9407c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fcdca8 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf712e838 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xf71d96f9 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xf72f2a17 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7679d75 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77608ab fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xf77a8aa8 qdisc_reset +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7b3ffdb mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf7b7d55b can_nice +EXPORT_SYMBOL vmlinux 0xf7c55727 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e619b3 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf7eac627 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7fe4748 from_kuid +EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf80f6a67 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82afc53 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf82c0d9b dma_free_attrs +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83644c2 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf84aca71 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf84f73ff flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xf84f7b00 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xf8616343 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xf87bce20 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xf87d69db ptp_clock_index +EXPORT_SYMBOL vmlinux 0xf87fca4d jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xf883e216 bdi_put +EXPORT_SYMBOL vmlinux 0xf887c938 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88ac7c4 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve +EXPORT_SYMBOL vmlinux 0xf8b0a5f5 scsi_print_command +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8cc6eb3 input_set_keycode +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8e1214c lock_rename +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf949e769 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xf951bc11 lru_cache_add +EXPORT_SYMBOL vmlinux 0xf9584410 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9774fbe km_policy_expired +EXPORT_SYMBOL vmlinux 0xf991c42e cdev_device_add +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aeb245 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf9af4ae4 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf9b12c2f jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf9bbb12e sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c61402 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9e8a4c4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf9f22f88 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9fc8e77 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xfa01b836 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa2e614f pagecache_get_page +EXPORT_SYMBOL vmlinux 0xfa2e671c tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xfa3588d2 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xfa4c6830 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xfa4e2fb4 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5a84f2 has_capability +EXPORT_SYMBOL vmlinux 0xfa61e095 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xfa786fe7 update_region +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfaa5a80e blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaf97a16 __put_user_ns +EXPORT_SYMBOL vmlinux 0xfb280872 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb435acb xp_can_alloc +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb833189 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xfb867cf3 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbb1447 init_special_inode +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcdef69 phy_attached_info +EXPORT_SYMBOL vmlinux 0xfbce0f06 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xfbd6648b tso_build_hdr +EXPORT_SYMBOL vmlinux 0xfbda068a dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbfbbfdf skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xfc130860 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xfc1351c9 dma_pool_create +EXPORT_SYMBOL vmlinux 0xfc287422 keyring_clear +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc36562d inet_register_protosw +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc71ba1e backlight_device_register +EXPORT_SYMBOL vmlinux 0xfc73dde4 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xfc889bc0 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfc9f07c8 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xfcc0a0af dev_set_alias +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcda5fe8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf3127a param_ops_byte +EXPORT_SYMBOL vmlinux 0xfd47dc36 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xfd663f40 should_remove_suid +EXPORT_SYMBOL vmlinux 0xfd77a4c2 dma_map_resource +EXPORT_SYMBOL vmlinux 0xfd829447 inet_listen +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfda5fb2b simple_transaction_release +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdab1012 __x86_indirect_alt_jmp_r8 +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc6c9a7 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfddaba58 proc_set_size +EXPORT_SYMBOL vmlinux 0xfde5d782 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xfde9ad80 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xfdedc79e inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xfdf9d88f find_inode_rcu +EXPORT_SYMBOL vmlinux 0xfdfb7378 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe068398 open_exec +EXPORT_SYMBOL vmlinux 0xfe0e665a inet_offloads +EXPORT_SYMBOL vmlinux 0xfe132927 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xfe138be0 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xfe1b8529 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe3826be i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xfe3bca8b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xfe4221af register_framebuffer +EXPORT_SYMBOL vmlinux 0xfe4456cf sock_kmalloc +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4eb798 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe783fb5 __x86_indirect_alt_call_rdi +EXPORT_SYMBOL vmlinux 0xfe818d67 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe92b424 keyring_search +EXPORT_SYMBOL vmlinux 0xfe99b482 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfedb7ff3 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeeb71a1 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff01a3c2 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xff110c6a lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff42a40b phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xff43a986 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff54a251 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xff646c93 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xff6857be i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff74291c sock_no_bind +EXPORT_SYMBOL vmlinux 0xff7d3ca7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff94f079 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xff9c5095 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffba8666 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffec386d phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xffede6d2 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d725052 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfe729ed6 __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xff09bd65 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x25a406cc sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x316f08f0 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x3688e115 sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x70edf0ca sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xeb1c5109 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xefd25935 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xfb24644d sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02245d62 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02cdf68a kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x032c4325 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0378877f kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0429eb83 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0551cb2f kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x065dbd0a kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0816bfae kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08bbf2b5 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x095d92e4 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x096669ea __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c13aa85 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ce1c6db kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dad579e kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e452036 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ef7fa23 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ffe12da kvm_free_guest_fpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10e214bd kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12df6b65 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1328589c kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14059beb __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x143fdaa7 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1456e148 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x162f439a kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16c5b8a1 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19e53e8f __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a2cd090 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b3a45b3 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b3e4a21 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e04a352 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e263613 kvm_vcpu_gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e8ef457 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ea83623 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f69f408 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24ac3b63 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2612ae81 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27825d91 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27da7fb7 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28212db9 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x289fbea3 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x292485f6 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29297d39 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29ace158 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a664d8e kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c154698 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dacb862 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f535019 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f70c320 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30713951 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30ad8e36 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31fc7264 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32185e26 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33d7ac18 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33fb5388 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34a8f4de kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36d32474 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x379cabc7 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38a5210e __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38b3e885 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38f6539c kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b0bcd0b __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fdabfb7 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42906c6c kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x433e10c8 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43991481 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45284524 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x458ab545 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45b984b6 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4648f22d hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4748cb81 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47f9cf11 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4910bd3d kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x495bf0f7 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a026bcb kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ae4ec68 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b535ba5 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bb39e81 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4be5cafb reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4caa6c25 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cab244f __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cc8af3b __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f60a31c kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ff4f292 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50489bd0 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50e5aa58 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51ef995e kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52d20831 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52da1722 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5333c5b5 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536db87c kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536ef7af __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x538ef7f4 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53afb2ff kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58ea5b3a __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59bfca6e __SCK__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b2c9bf9 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ba3698a kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c9241b7 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d938013 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dbf601c kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5de11358 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f2e02b0 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6124795f kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6307d7af kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x632d0de5 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63337c43 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x634a4d42 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63598a18 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63c8f0d4 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63f1d805 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ef3305 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65fd1e83 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x667ab2d1 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x674de942 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ae1a996 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c878be2 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d9eeda3 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eaae70f kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f615bf6 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fbd8e4f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7171a6f0 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73c5e5f6 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73cb3907 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75080086 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x758aa10e __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76c426be __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77fa8d5b gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78890d8f __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79453e96 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7be19b68 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ec7b557 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f5cc676 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe2369d __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x828c737c kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831bedf6 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x835f5a35 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x836ed0f9 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b5e411 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87243cfc __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87494632 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8796da11 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x889d5017 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8adb1542 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b80cf33 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c08a52f kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c7e7547 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d993311 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8db8143c kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cb784 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ffb3e2d reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90118272 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x911d10e3 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9270a931 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92b83507 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93018c1d kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94d29c88 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x952494d1 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95e31407 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97990f81 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97eed743 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x987b500e kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98c520b7 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ae22659 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b783b8a __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9be22b77 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c12eeac kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cfdf680 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9efa9e73 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa004fd8d mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1f692aa kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3f23a50 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa403f0ef __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41c247d file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa49732e8 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4a1d633 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5441926 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5caea53 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7fd85cf __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8840a3c __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa47b206 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa5c9749 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa5f816d kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaca11dec kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacac03ab __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad20ffda kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf71570d kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb03590da kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb07863d7 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0ed118e __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb29680bf __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb31fec61 __SCK__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb38e586e kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb472903e kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6ce9f3c __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8699e1b kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8998a4b kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbed4a1f6 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfbd1273 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1f8f37b kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc21f9179 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2352b8d kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc403ca1d __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8aca010 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc91cdf34 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9e7c51a kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca0945cb kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca099472 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca9eeb5a mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbb8dee2 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc27b491 __tracepoint_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcee852bd kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf4b735b kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf6446ea kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf689a4d kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfd77a29 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd033362d kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd289b4f9 kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3a54e66 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd41369e0 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd578a9bc kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6565c92 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6aefe9e kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7a1fddd __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8dbecda kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda60677e kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaade916 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcfeb77a kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd30414e kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdda309af kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddb244a4 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddb7988e __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0fc2b3b kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1508bf3 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1b9308e kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe20d4696 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3452de4 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe49bd470 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4e27d1b kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6862dba kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe78aba8b kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe85fffe9 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8b99b59 kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8cce2f1 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8e88f35 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93b9e38 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaebdd4b __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb23ac07 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xebc2d8d6 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xebd7c587 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed125a36 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef35e58e kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0e66cc4 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2631bad kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf28d34c5 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf387edb6 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf469eac3 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf63db1e5 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf66b0184 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7b5a45a kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf94d4563 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9c16472 __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa5317ef kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb12489c __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb8f45c9 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb953e80 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc404dc0 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd3e9870 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL crypto/af_alg 0x03a07feb af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0a40a9df af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x116d4257 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x1bdadad4 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x2d00ebec af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x32c6d48e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x3ec5318a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4a805b3d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x52f35bab af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x6e9cc96a af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x857d2c2e af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x9df2af8b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xbc9224e9 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xc91477de af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd6d1c4e7 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7edb7a0 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xe5ed3c96 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xffba6438 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x8e7cc1d5 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x75632ca9 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x135a8850 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4aca7f28 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0cd5e7f7 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xa8f24b1c async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3bf87762 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x61fe6f48 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb6f9ae23 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbed39937 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x53de84ed async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7bd3e76c async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x901b0fad async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xba0807e9 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xfe1f2097 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe17a3d46 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc9d72afb cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x15df1649 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x27704090 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x49a18733 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6a24315c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x9e605865 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa02818a3 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa2a30157 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb1afbf08 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbd55d1cf cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd31f2a5b cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe68c628d cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xef2cb46a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf2973fc1 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0624ff82 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1aba4ed5 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1bf25c7d crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2598d1bc crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x46daffd1 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x47f51b45 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x56b6bf11 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x57c1bfef crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb524015d crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbdd2d4c0 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdd64a23c crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe0aea576 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe15ed78e crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2fd54296 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5899f40c simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9bf79dde simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbf16d63d simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8f16f606 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8764d430 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2f99a70a __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x40442f26 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5ad9ffbe acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x8a79a666 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe227a60c __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x4f6c2360 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x96eb492d acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01944480 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x03c5edea ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0594815a ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x07d512c5 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e38569a ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x21488110 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25076179 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x414dbe60 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x62e413c2 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x65ff6cab ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6d557431 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x73681d2e ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8138192e ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x81757b0e ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e3b4eab ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x99fa02fb ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa0b0804b ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa8f7f4e ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc57bf512 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcc1cb55d ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xccb8453d ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd6043976 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe879a175 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf44e3f47 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x137c4da3 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x27e10879 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x39d09a29 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a23976e ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4e891594 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f328630 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa2089209 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9b1f28f ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc1ebd8a0 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcde23bcc ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdb07e7f5 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xddc1b169 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec7952a1 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef53ee96 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfb80912b ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff6a8b37 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x55312c42 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x2032475f __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc60c30ae __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd8b02208 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa0241d70 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xd599a72a __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x4c7b7ead __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x5106bfeb __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x34b0e710 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xdb54f699 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x4fdee473 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xe2b184a7 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x19f64a24 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8b5be74e __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb2a6c6ff __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe76439c7 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x340e532b __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbc790d4a __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ae78ecd bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16fadfd8 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x191fa6a3 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b522091 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2bc831fe bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c741037 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x601ba72c bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62574e6f bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68d0e06f bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6efa6d0d bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ff48ba5 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85bcd194 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x898dde72 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2236749 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc534138 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc9dd445 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcf953d61 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd308da96 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda69acc4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb0fc8a9 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdea7d598 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe39f9bd3 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe713b1ab bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec447f34 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x04504774 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1b3958a8 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1d2a94bd btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3aad80c8 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e2ba39f btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x73d5f258 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7cb555e3 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd31204f4 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1bceb4d9 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x20566065 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x33cb1d0d btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3596368a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3c5ab74e btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e944b5f btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x622a25a0 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67983fdf btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6bc1514d btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7be68941 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xae9b80e5 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb192615e btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb3c395ad btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb6f205e8 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe13c622f btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfc3661e7 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x01a3680b btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x04893df4 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x24e1e5a9 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c08e973 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x703d52f1 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8032338f btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x95584b72 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x96e57976 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe8c0d018 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeec46561 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfda087b7 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x32398166 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x43c97b3c qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x57c802cb qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6e8e9815 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb251b4a6 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0c75f1c5 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3d25d175 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6e765c59 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9bed7555 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9f64454a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbfbac6f5 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x20c7d255 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x31931930 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe09201b8 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf8cf50e2 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x07efd80e mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x097c9118 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0d68f522 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x36638f05 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x38b4cc55 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3e7a994c mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3ec04e16 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x443fb11b mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5291cd9e mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x54abe84d mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x57a19c72 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5ea5ff56 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x622d8aa0 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7dbda894 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x89a4dfab mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8d56dffd mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9121c21d mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9eb3ac23 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f3680b9 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa9a2b31b mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb33d4c05 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc218f9ee mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc9be927a mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd014f921 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd589ce37 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd9f60445 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe04003bb mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xec146275 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfafa8da5 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1097be92 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x11be0a82 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x19dc7144 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1a3d1bde comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f358299 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x201d6170 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x20a0e160 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21fe3ade comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b8a029f comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f7ec2a3 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x50948ddb comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5c400e46 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64c582b1 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x69508e8e comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6b36b272 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6cbba8e3 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72935b1e comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78cf72cd comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7abff654 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b56cb52 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7bbfba61 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83fdb925 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x89850b50 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x916c06eb comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa1466617 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa23ab2d0 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb06ed80e comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb6b90848 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb96f42ad comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc47e1970 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4f0fd21 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd5198b7d comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7a66a6c comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe852bcbb comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2d89d91 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xffc13de7 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x14b941d3 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x21c2e98a comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3d3b9861 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5605b529 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x75b39274 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9ccde70d comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa1daa8e8 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xacb5c221 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x14a6ec35 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x31d83fec comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x44190e61 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x75ad9c72 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xb29fffb4 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xdff468cd comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xe3e5ae99 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x376dcd72 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x532b663d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5af482ca comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6931c518 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa1463fa6 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc29ba967 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x743fb110 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xbdbb8824 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xfba6a4c2 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x4261050d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x37da3562 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4b0bb8d4 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5001770f comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7a1ba6fa comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x97eebdd7 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa601af1e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc46155d4 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcde0502b comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd5ed9b5e comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd8bf4c5d comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe308083f comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf5de836b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfb172195 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x11a7b1fa subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7d9988aa subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xba5d3cac subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xa44fb2b3 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xef7ccee7 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xfac910df comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xe44e2e5b das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x04609014 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0bf7986d mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x154ef0fb mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x156d5464 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2f72f0ef mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3c92c946 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x58d3ff0b mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6d05158a mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x77fc7258 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x88f2513e mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9eee0fd7 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa8220215 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb5caac41 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbd16611b mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcaad1ada mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xff5db367 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x1ec8b68f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xdecb7bed labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x0d461000 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x17bb4065 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x49fc8646 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xcd9f91cc labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe221d1b3 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0fd6dcbc ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x132a3f3b ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x262125fe ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2b598134 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x347f6d34 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x38a8aa8b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3cea0d27 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x660603f7 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6ef54eeb ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7ca5550d ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa7b2af41 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xac6714eb ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc5809869 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcf112ea2 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd5b3ecfd ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe9b1d7de ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x061ce466 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6248b8a7 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x680f18cf ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa824cf5a ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb83085fe ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf116db59 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2ffcfaf7 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5f467631 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x65883243 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9e697259 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc8a58b54 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdcecb765 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf917ed1b comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x33919a3c counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3ad0987f counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x420ac1f6 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4ec14eda devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x502f4355 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7540f11b counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8fc43685 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa592fbb0 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb1e72579 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd1213d99 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd84e6751 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xea11abc6 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xec461147 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x94d87d52 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xbd0cad49 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09df6e49 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0ebe8793 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0fba6dfe adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2a4bdaea adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2da8f283 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30921b71 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33575252 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33f851ae adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34ba2d36 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x37cee08f adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a0d5392 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fbf7ed3 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x406fb13e adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x505c9164 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x579881bd adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a632a3d adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5b21b8ca adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x612b5e80 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67fc3406 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68532082 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x715b582d adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7a59c5cc adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f8af4b8 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ffe6442 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91d68cc0 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9cc69ab4 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa2c4f13d adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa3999c13 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa3d22bce adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad519f74 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb106d3d8 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb925fa4 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc09f0ced adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc18735df adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd309202f adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd8ebfa71 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdc45cf7e adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe36aa1a5 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe3852e97 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe3c7c09e adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1d65d64 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf5d6f84c adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf62c27da adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf8702019 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xf61974d7 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xee297049 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x0d3ae579 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x146d267c dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x17ac9000 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2c667c3f free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x4994133c dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x64d8eabe register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x7b86cac5 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4e6afe65 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x740e117b dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x70c8103f idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x843b0a74 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8be37be1 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8ce02672 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x98a35ee4 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbecce8e1 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcb561d9f idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd5b0c685 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xee41a71a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3c7996b2 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4beaf744 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8bf378e2 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9bfbd218 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x50451d9c hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb0df64a8 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0be1a4d8 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x8592d892 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x40087cee alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x09bcb8a9 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x116fec38 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18fe94e8 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24558e7a dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x328a8b29 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f426e8f dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x550588f3 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x55656677 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61ea1109 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6437b382 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7373e2dd dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7d960a2c dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7df9d821 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x80b0d555 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8956e691 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90faa11c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa0e324a5 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaaae20f6 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xba529d57 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xba646b31 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbfeb420e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdea2ccc3 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc5d562b dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x02ae4523 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x02ccdbf2 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1d95fc4b fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3036afc8 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3aef6282 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4fe2171b fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5c70dd4f fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6547bb19 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x68dd45d3 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8fb3b3bc devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xce4d7361 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf5be4181 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0565306f fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1bf185c8 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x33f224fc fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3f82270a fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4a817839 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x71b6a63e fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x74a2ebf7 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0052938 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb5854665 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcd518ae9 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcdc9486f fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd1dd8d38 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe62ed149 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf39f9672 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0a8ee5be fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0c06e278 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x353364c6 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3b65590d devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x95561485 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9bb41662 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xdf719d56 fpga_region_create +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x118290af gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3a95efb6 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7a88b6c0 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb8caf88d gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfa89545a gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x15e1d8ab gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x43e5338d gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5cf03b73 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb8d0382e gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe1115085 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x1136f244 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa0b43475 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa414ca71 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x07d1151a analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x38570615 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x40a69828 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa9ef206f analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc8df093e analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xdc8c6a82 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe357aa5a analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfe6e6937 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02241586 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x04e5f07b drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f529b82 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1289c8df drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ecd5dc0 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x214fb570 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ba5c0bd drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3d814fc3 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x424a3012 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x44b89040 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b9d8143 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59da3695 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67cb841e drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6bc2a229 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d4647ca drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6fbfb67c drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77beafbd drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x78d149af drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7b5c4e40 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7e215210 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7e375de7 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8fe6068e drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x94568d9e drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9fbdb734 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa66dcbf4 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa1aa0d6 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbaf72d0e drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc06eafd3 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd4afe60b drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2a26765 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x17bb5313 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2252a389 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x36e1c113 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4e6f102d drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x672b9bca drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8b2f11aa drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8b333524 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9a8cf6c8 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa13678fc drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa2b69222 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbb93a7cd drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd45e7577 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf98a0cac drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x161571c9 intel_gvt_register_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03d36730 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04843e77 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b18805f gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b51a288 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0bcc301c gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c46c5b2 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15da0403 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b4b59a7 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d06cb43 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x21a122a6 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2356c30a gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23fa89fb __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24ca03f4 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x296ec0dd __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d87f198 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ef9510a gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37247da8 __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c340832 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d2e09c4 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d3e272e __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x416d467c gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50f47f37 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54ab5108 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e036247 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64f65aa1 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x674aa74f gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7697fdd1 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77e71556 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b3bf36c gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x820b4a8b gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87af1c56 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87b34800 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c3dde86 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xacc0d401 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb413b84f __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4ee5f21 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xba8771b8 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0fccf39 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2f1183f __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc48fd575 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc64f885f __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7143ce8 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7abd0d0 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8c3429c __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdba26d44 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc6b118e gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe03b9279 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3f1a548 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe94bc86e gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb654742 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef72c897 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf705edca gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf73c5919 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9c26cf2 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfae50c16 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0625850d hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x067d8463 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a036e20 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c862f0e hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1dba17ce hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2aa15cb9 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39785db5 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39cf68df __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cb02cab hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3dfd068e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x435ebea8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x455d6b31 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dfc2dc1 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5435cc05 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5456755e hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x546b57f9 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66141968 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d9e2bfb __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71047e6f hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73e3ecb0 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b64ec0c hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c099c9e hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82800732 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8670fa62 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88301f84 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x947c1200 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96ed1d7e hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98e5b40c hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b3f06fe hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa626d99f hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa71740d6 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1093ff5 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb81411e2 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9682178 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0d36bb9 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca04445c hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfe66e03 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd03dafac hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd166cc09 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1c6acd7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6a0cc02 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde720741 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6dc19f2 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5bc8465 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x9e498d99 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2df66769 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4cf50b67 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x54d8f3bf roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xceafc3e4 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xee26a1aa roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf24c4228 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x199ad889 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x449efb85 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a0b2dd5 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a27238e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4ba7612c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5f1801ca sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6b54272c sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x76d50773 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9c9af2b0 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0645a7cb i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x880e5328 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd753ee72 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdc5f54f4 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf154698c i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x024795eb ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x8a4a196e surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd2b79bf5 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfeceb005 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x520dc2e5 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x21400f54 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5f7cfe04 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x04c160e5 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1aab6f73 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3322795c hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35f1e4ca hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x410ef2a3 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5d19f41e hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61159196 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x66f72dd4 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f58d98c hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x92a75267 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa056755a hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc7328c8f hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd5cba54 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xde33d7df hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe519ddc2 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf61c6542 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe7882cd hsi_new_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x033ac714 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1d923619 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x273ce919 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x383ac048 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x39053c15 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3b208c8a vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4306e77b vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a515548 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x50b0b969 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5942655b vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x68f65a3f vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x782cbb3c __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x794a0c27 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8131f4aa vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8556029d vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8d5bba57 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x90ab8baa hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x91ddc9a4 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x96b29069 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9b4cceec vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f703a74 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa4416919 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb3ab08c3 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc7eb5607 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb2766b1 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd5dc5bda hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xebc76b38 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xec000f79 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x71a3bbd9 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x788fae85 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbd34f8ca adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xddfd1055 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x019a84fd intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x02a7133d intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x68079dd8 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x716c01db intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7ff39812 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x803ab410 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb0aa039b intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd215982d intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe43c4205 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x061de4b0 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x67b5566b intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x86499cc8 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0a37968f to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x246943a0 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2e939668 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x56050d44 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6ebcf846 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x986b8463 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xccd8ec40 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd15ffd89 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xec4b6b68 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x231a980f amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x2be7a79c amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x6bac5ead amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x71b32437 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x97b08cdc amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x9f8bf9c2 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf22fa19a amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x444e1347 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x75d7aaf2 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8d7f3984 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd0d7f89f i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe270e912 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x07e9583c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd6e677eb i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07696022 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0d2df51a i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1452b8e5 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1eddc309 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x33e1d818 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x38245bbc i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3dd3669b i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3f5ccd46 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x486ddb3e i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x488c8fa1 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5a194cf0 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a39939e i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6d04167c i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7dad1d6a dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa4f0059e i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc59f774b i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd405713a i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd5d97865 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda191400 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdb1afaeb i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdec7e3e1 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe745ed42 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb4ff489 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeed83dbb i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf988245c i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x183ff7bb adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x638c08e7 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x04d4bac9 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2432c9d0 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xbf2e8486 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf825e2f6 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x44202148 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x92c79d9a bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd7253bf2 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xdbb27059 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x58790a13 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x81a12e5c fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xfd56fedf fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x54b8218f mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x580fa490 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x8e16c429 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x48156928 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x7a2a8be6 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x26192e2b ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x62046e76 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2ce05d49 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4b4c335c ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x58c5c14b ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7468fc2a devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x75ae6f52 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa39e5034 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcf2170ea ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcf7b79b2 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xeb2d345d ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xed3d8650 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0aefeaa2 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf9e69d82 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xffba8099 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x36945d56 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3a5e38dc iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3a896415 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3fe80d60 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x470de2bb iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x50109af0 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x83bddbd9 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x99d48aa9 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9da77a7e iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa1bfe738 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc0f6eb96 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcfa755f6 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xe79db311 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbab88675 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xdccb0c71 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xdf7c7715 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x5b64987e devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x26e6a748 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xc078f979 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5205881f cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x64a3135f cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x68ef9905 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7551d7e3 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x88f885df cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcebf2840 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0bc0c92 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd17256ff cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd8c2d671 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfab725e4 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x48a5f802 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6a99e228 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x7333e47e ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x931bc6ad ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3602e1c2 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6dc788ef bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe569daf6 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x76e22599 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x8ecb96d0 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xbe6d64bd fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0069948c devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x07ee786e adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3d1d9b2e devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x74ccb144 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x97958eb1 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbb5f2aef adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc6a4373a adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcc20c1b4 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe09276c4 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeee67cef __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xff9fa487 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xb94adbc3 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x75e565f1 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x6b12449b inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x90177b13 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf36d340d inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe63d6962 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xfb6319bc inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x2c44a345 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x62204a3b st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0255bf6a iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03398674 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09e99f58 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b507362 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cfcfc73 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x145c604d iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x197e3ad6 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x241d91fe iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x285bd339 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d45ed04 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32a78db6 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x338ed09d iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35a598d9 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36aac4dc iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f55a6e4 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x436695a1 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4416936f iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b69b8ef iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d02e030 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e739ba6 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x504ac51c iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x506ef034 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x509842ef iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66f7df71 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69c3c6c3 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6dad0b10 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ab5f76f iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x890d63c7 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e029af4 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92bd8201 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x959d2f43 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96b4bcc1 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9eb4756d iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae86163e iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3b66f82 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb70fb417 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb41d904 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcf7a551 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2f5a403 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4368217 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbc3f10e devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd9171a5 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdffe1057 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2fac1c8 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeafd433e iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef86b3cc devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xe836ea29 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xaeef4e27 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3fb8e369 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x490269f6 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x52cd5e58 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x950f270e zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x9e7986a1 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb891dbef zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x04686a08 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x057e0b7e rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x10c14f50 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x341abe00 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x44d05c1f rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x875b0987 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd9ba25bd rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdb6fa850 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe35d2943 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf4c22f25 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf76a00ed rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf93ad224 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa41c35af input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6655f1f4 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x3eca9d07 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x101b53e8 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2005c319 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3ad1c724 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3e5eec8f rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6ae1ccfe rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8533b76b rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xad014e77 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb539b1d3 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc09d007e rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc7a432ad rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcd215ba0 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe60d04da rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf3b683d2 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1a85e1ec cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x670ba31c cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf128ace8 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc0810cdc cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd215498a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5ac89eb8 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xdfe6563c cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4c96afa7 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x649ad6a2 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xae1f22ca tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe838bb3a tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x06daca91 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1b64d7cb wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f8abe57 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28e2d792 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x316000bb wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7f5de83b wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8a3ac39d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8a639217 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x90fafde6 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xccd4a23c wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd7ced755 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdec22e9f wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0fd6e96c ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x272fd2e4 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5c5eb62c ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7c3dac82 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x81b1956f ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xab7671df ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xca20f1b1 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xce695a4c ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfdf1767b ipack_get_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x146ebc8c led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1a95cfa1 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x78bca01f devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa897424a devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb0c4d398 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbba85f4a led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcf339094 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xff88ce8b led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x234696f3 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x35901cea led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x79b3d146 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x84a5d997 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe8c30e32 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00a1da93 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0180fa41 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x022a3fdc __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x03eff5fd __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b3a37fd __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0c48ae1e __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0c49983f __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d0c0f61 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1691cb76 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x175c310c __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18a07f6f __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19f0a3f7 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x215dae0d __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23b22663 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x262bb298 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28ef72dc __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b5ef428 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fd8912c __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31aa19d6 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x324dd970 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x334899f5 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33db9424 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43a1fbe4 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x468c7212 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49b2b6af __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b95c9f1 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ecb6050 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x565b51a5 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x608108ed __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x62bb6e4e __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x63712557 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e31e86 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65ef2f4c __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6944af1b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a1f0996 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d479876 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71c018a7 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71c1f838 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x725e5640 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cbdacdc __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f2202a4 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8205a5b5 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82cf2be7 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86677e49 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86c21af2 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87c06244 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b6ad035 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902a08c1 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90576fac __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9677880b __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9847f568 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9bc03990 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d542213 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ded280a __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e8fded6 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ff80d79 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3b29798 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae052603 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf4441db __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb23f7184 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb2f99f1e __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb39c6f55 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4806235 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb33c56e __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcbfae5e5 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcc02d881 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce595b48 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4f5d4da __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6cdc16d __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7b0cd4a __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8ea9298 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde797407 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfb5218d __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfc91ab2 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2b9f992 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2e8f90d __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec818a20 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf624b230 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6307c43 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8a1a8be __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8fe1ec2 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf9f784f0 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa017bfa __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd4303ea __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfec70806 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffe115c6 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0557ec81 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x127ac2fa dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f3dcdae dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a4aabb5 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2c2b0f8c dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31c70fa7 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x36e81ad9 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c7206fa dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5b2a9f1c dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6eca2304 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x845533f9 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa636303d dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb09dad19 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbd8c39cf dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc5d4c582 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe9ab5223 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xecf25048 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7087ec0f dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x551fdf20 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7f2f9089 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x838f2749 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb5344a9f dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x072bd0ae dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x765e3e30 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x823d161b dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xaaf418fe dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdb49081f dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdbf079a7 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfda137a5 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x178d6edb cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x25de029a cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x308a0f0b cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x38c42c86 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4dc91cb6 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4e2d7765 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x539a9946 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x62645c46 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x640beaf8 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6e48397c cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x73d5564a cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x78e9c429 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x803ee93c cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x82785c09 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x847b84d9 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8482693a cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9530489c cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc5381d42 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd9d8d68a cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9c45fe6 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3ab86976 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x461e94b7 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x66f10517 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6d4e4e90 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x985780fc saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x992df048 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa9f6499b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdba16dba saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe7d7d4a7 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe8cf4b62 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c28a6a8 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x539d47ce saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5c3dd72f saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7544f375 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x80f137e2 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe32acea8 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xee488e1c saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x154036dd smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2301a41c smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2bf86b02 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3593466f smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x44dbfddd smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4f6aa808 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x60494f4b sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b2003ab smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x726bb9d9 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x94ec0346 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa2bb45ea smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1b9fd81 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd13facf5 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xead4240e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf67fda1f sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc774501 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfed0bca0 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0925a156 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0933c2c9 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x189b0d81 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1998035e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b5551d5 __SCT__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ea6a1c4 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2eaec5f3 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3ac6fc66 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b120612 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e7de02c vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x40517c35 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed3fb1b __SCT__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x525c3fd0 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52aac800 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x554e12be __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f33212a vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6db26b19 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e3cb2f0 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e5fa132 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f5b8037 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90c8f5a6 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9138be3f vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x93ae309c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f43cff7 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xab423fc1 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xada83fe0 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb4c2b5e9 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6929451 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbbcb558d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc32916d4 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc436fb2a __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd48262d __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce116f90 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4b76afb vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd834691a __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xda42fd14 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe347d3f8 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf0103142 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf361ef90 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x79a036d6 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xda854e32 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xf493af09 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xcb213b8e vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02a287e9 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28ea31fd vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32dea2c3 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x42d74739 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x44ffcf33 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4b77f696 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x543f4826 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x69c1ec29 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c292134 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c77d40c vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6df3dbf7 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7d285a2a vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e543706 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e9f7132 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x822b872a vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ed8516b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fcc9b3d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x909b7865 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x94e0674a vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9723fe04 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9cc6a6b4 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4b37cca vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa940f0a5 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab329af8 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf23fb92 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca2a9b05 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd24bcdc6 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe09f2af4 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4329670 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeec2f3c3 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf12b81f7 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2dc0f89 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf45ffb09 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff8ab906 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x00f55136 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x1be3c490 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5d209a80 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x941a76ef dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x01474e32 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x3549e207 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x50eceebd gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xae7a96ba mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xd5e6fb80 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xfc3536e7 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x954821ed tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x13696b4d aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xceb067be ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x15c36272 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1b8d0370 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x206faeba max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4bd57863 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x661dbc31 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x66ca99fd max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6fb9f895 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8b035b71 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x99180026 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9c1553e2 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb7b7ebfb max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe03b073c max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe1f8ed1b max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02bd294c media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x187eb94d media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b53c0aa media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c3a7cb7 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c7dcbf9 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25b4513f media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3843dca3 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x399cac21 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a7566b4 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d325113 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56e42d77 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a786606 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61b2c94d __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d47db16 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6dc6b578 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73d68cf7 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73e7aced media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75af97d7 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x795286b9 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84485a7f media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84d1bd88 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8d8e2725 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8dcdb8a1 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8eff0260 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93ebb7fa media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94348dab media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x97f4a241 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa30258a7 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa35da3fd media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac2d32eb media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9e3262e media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbec700d4 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbec733af __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc23c30b4 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc82dd416 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xce469f82 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf810285 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd310bb6b media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6fb6ee0 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8eb04c5 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0c019cb media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb32a0bd media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee33bcb4 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeed2b56f media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefe38bf9 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8fba83b media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5ca1310a cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x098c8975 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1cd99e52 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d101219 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x25434137 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3835052f mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4edfe182 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x527f9a01 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a7221b1 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78e79def mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a95c805 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7da7a64d mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8329a351 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9a12487f mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa17f0ac2 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3670c31 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa603916d mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb6dd803d mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef995f6e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf18ee8ca mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08d648e5 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0bdea41c saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11972db7 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31fb627c saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33726ff1 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4da39bf0 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54c7b0e0 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59a2d18a saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x93ebf8f9 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb50c2e06 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb9ce7713 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc19cc079 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcda0c67f saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4bb9bc9 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4efe138 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd5879dbe saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb5aa1bc saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6652572 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb5375e4 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2f0913b8 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3ed29588 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8d58dc07 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xafb4bd1d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb75a7843 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xba5bf030 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf543f28e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x71c11a04 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x7c503a19 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x807fb374 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x93ae66d5 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xba6b1939 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x714504af radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8b66531c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5b9e2e00 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x74fd00a8 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe8e4ed3c si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf88c0696 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfda26607 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x024ead5b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0bfb4a25 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x151a49fe rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1c90edb0 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2034f4a2 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x253ad954 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49e41cff rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5fa5b01a ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x690dc327 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6cdaa02a devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e2a2edd ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74a35bb1 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f606b06 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa4da0bbf devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa65563e2 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd14b576b rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9e3536b rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb3bbdab rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x3d546cae mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xf871d6d1 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x1a4814be mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x618b685b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xefc8d4ab tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9c452f31 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5f8d502c tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xee479c45 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x339e1c4a tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x02925d1a tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x157f1a85 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5dc21b02 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8303089f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x4bdb3584 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03a44697 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e9bb8bf cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a604dde cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ec3c6c9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b4dcb56 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59ff6dfe cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5bed7bcc cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62bd5267 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76deb9ae cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78118e91 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95640ce3 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x99de69b1 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b406b40 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0941bb9 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa0ec339d cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb055ca3a cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3040435 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1eb156a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd38ce9f5 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3effc4f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe14f7090 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x59813791 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x27df9ba3 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32c17c9f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3befe65f em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x46ee05bb em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a41b42d em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x51396643 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70d4617b em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ff19ceb em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x834b5088 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8dbdf438 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9daaae5c em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xac193c45 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbecbb187 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc259cb4 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe43abfa7 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf06085c1 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf9fdcaee em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe199449 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x04700ae4 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x12ff9839 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8cc963ce tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd72e2747 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x28dc708e __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3932ab1d v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x447530a0 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4aecd613 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xee17f4bf __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0ac2971a v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6220a66b v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc15efd0f v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2192006f v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x39d47edd v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3abc0d89 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x509b576e v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5dd55af9 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x62550867 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ee3fabe v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa6d89b59 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe004bbf4 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb90e0c9 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0821f685 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0bb0b865 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14062f45 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17a315d8 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1840161c v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19aa04ef v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b33af36 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30718e2f v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x334ceb62 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36380894 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a9bdff3 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b91b88d v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4114c06a v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42f04822 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49935e61 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ddaac58 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x564d84ee v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x565553d1 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57b0dc7d v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6429491f v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x698493e9 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b6ca752 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79675259 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9110da58 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91fcef96 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94e9f357 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b689644 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4d763f7 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa76cfe44 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac2046a7 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadea26c8 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafd0c6e2 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb301ea94 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb184dbb v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbcbbd70b v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc18ab766 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd2bccca v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9772c01 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda5cd529 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1ede51b v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3e217a3 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5861119 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf46e8c23 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5b780ce v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0346f1ae videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x08af0a68 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e28cd38 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37cbfbb0 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d012f03 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46b21704 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52a400a7 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64b061fb videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x670ca371 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b8976e2 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ffa8b70 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8006607d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8552c685 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x975e837f videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa22632f7 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3951133 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb40391ea videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8348cf9 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcaa44714 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd246d876 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd68c0291 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdbd9e3d7 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8285ca6 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe1d0959 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2bed8cac videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6935709b videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd1d4f034 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xea029aa4 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9419cf14 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb91e4e29 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf8bfc7dd videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x016f9b60 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0819c6d6 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08aebb9e __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0991f36a v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09ccddc5 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d5e04ca v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b653976 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b6924ed __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20452516 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x274476ef v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28a2d313 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29d6e3fc v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2fbb6823 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30dbaf17 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bce5f7c v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x466a69ae __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x496a3b3b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ec15d7e v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52fdbf9f v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55122d0d v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56b25af0 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58bcdfe1 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59957626 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5be44b2e v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x683af5a7 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72c3fe46 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73271728 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7352a661 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74ec8125 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7800b1c2 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7847c55c __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c79ea94 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d101355 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x855d4d12 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86f3a290 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87024594 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89708cbf v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a0e3fc6 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e27b8df __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9101e973 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92a63078 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x953461ca v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9630f4d2 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9748a3df v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4b0dd87 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa75aaded v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad06ebb4 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad12196e v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad53c477 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadcf8bfe v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb88bf0b2 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc931128 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe0258cb __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf50c652 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc30cf052 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd72f917 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd12e387d v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2fb3681 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9f36446 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddd490c8 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde476b28 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf875932 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf898b4d v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3ae963c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf40b51f7 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe58c34e __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4743e28b pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x72e6f235 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd33ae9ea pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02287f29 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x03b34cf5 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x132749a8 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x14eb62cc arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2f4b7629 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3729e19d cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x421ab793 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5e75057a arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6c73b765 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x80d235ac wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9120e358 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9f3a6051 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa0720671 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa7a2e099 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xadefc47c arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3f9a5ee wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcd25df40 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd2182214 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x965b65a9 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xdf1a3ee9 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6f97776f da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7d95426c da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x90f30497 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa626194a da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa6e33d4d da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xba311312 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xccf406c2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x4897308c intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb21ca353 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd461bd7a intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xeeb52c60 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xf1b52c29 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x345a08ce intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x79115d2c intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x9cede696 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0518771e kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x53d451c7 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8e2b68a1 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa64d0bac kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc6f852be kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe6a707a7 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xedfff573 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfc7c7981 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xafcf7dc1 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd4d22ab8 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd96c66dd lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x422098e2 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4771ed83 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x57255a8c lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5cb42295 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb44cb430 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xda0424a2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xda6b2dc8 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x24da6649 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa45590ba lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb032881c lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a43cd98 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a4e11d8 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0aaed770 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13af1694 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17653aad cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1768e6ed cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2517a1d5 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x251a7d95 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3dc2d665 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3dcf0a25 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4976d094 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x497b0cd4 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x545027a1 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x545dfbe1 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5d2d167d cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6622bcd9 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x662f6099 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7a85813f cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7ef7cb69 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7efa1729 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x86a4d18b madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9e938d6d cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9e9e512d cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc093a246 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdd5fa482 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdda69061 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xddab4c21 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe85a0369 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x27e9f553 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x35e6003b mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x44ebafaf mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6753be73 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x97246f2d mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea7a20c8 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01749613 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2250120e pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3080f201 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36947395 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4a5701d5 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91208e99 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaca42646 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc32b14a9 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc7696b9e pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfa95ff59 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfdedf0c1 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa994bd97 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc1e355a7 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2a5b7603 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5f473af9 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x69cbf3ec pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa11c0d99 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb9c66a5d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x9b7aea99 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01b7a25b si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x055653e4 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09e6d2b6 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11778531 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1dcd02d6 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26f193e4 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bb1d2dc si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f792ea0 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2faf4b6c si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31f048e7 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38f36bbe si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ce1f40d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d5766f2 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5210e484 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x664e70ba si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f2efb40 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73f72111 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76d1473b si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x77e754ea si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78f785e0 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c694834 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88372133 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89906edb si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x930764f4 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3b84eb9 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8d74afe si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbad93efb si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe882a78 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc14cabcd devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3c36c0a si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcbda1951 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1ff9751 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd629b18f si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee60d42f si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1c58a855 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x630df35d sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcb442649 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd673a5aa sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe582c195 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x18ffab23 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x443525a7 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8d7a6573 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc2230821 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x715e68e5 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0d374614 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x135637bc alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x15406b25 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2afc7ec3 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x53d84168 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbe5c2f9b alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd3c3d5fd alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0cd2010e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0e0e6b2c rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17da1738 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x353f9e0f rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x44510172 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4a34ec30 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57f01fff rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x622709ba rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6933db4e rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f0ccd7a rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x711e16ae rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x76a5c392 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b39eb3e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4e5eed5 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xafbafc2b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc14d3628 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1f1fc37 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc27b694a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd569f32d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd5860c51 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdd695af7 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe9480b3b rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf0c0277d rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf861689c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x05fdaa57 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x16dcb6ba rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d8899e6 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x399f74a3 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3c91d033 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3fcb3664 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x44a890f3 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x55571874 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6c9ac7ab rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa867214d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaf2ba4ff rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe55fc8b0 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf6ee76a0 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x79632faf cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb40f4bb7 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc27b9b5f cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xca1d1ec3 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x19240ce4 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4a63991b enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x63f4c7be enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6442b42e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9a05e7c2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe25d5b99 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe7bb9b69 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf54a11bb enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1ac3b63a lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x31c69586 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x63d6374d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x87a87f20 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xad7f3f67 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe0046c21 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xee6c97e3 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfdc03b88 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b52a5b7 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x10425453 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x106dea5e mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x16eb9d45 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1b51b792 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x346d6dac mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a99b3d4 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3acbdd1f mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4c9f28b4 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5c32ada2 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x620db92c mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7b61cde5 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7efdfc0e mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x85431c39 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x86f99d9e mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9096b8be mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e58a034 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaac220dc mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb276b0c4 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb6d9b835 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbac2ea03 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xca02fcd1 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd303cb1 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf7b6f4b mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe25c0678 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe4e671d0 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf0e5317d mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf15349a5 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf3881e5c mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf8d0c22f mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xffc83134 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x9a293af5 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x5b8bb699 gru_get_next_message +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x8dc51bdd gru_create_message_queue +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x9c7283a1 gru_copy_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xd3d2bf04 gru_free_message +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xde08c325 gru_read_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xeed7d505 gru_send_message_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x1018eee0 xp_restrict_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x12333991 xpc_set_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x345c9217 xpc_disconnect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x39046c7a xpc_clear_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x48e62c9f xp_region_size +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x6285dfe8 xp_cpu_to_nasid +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x64ba5017 xp_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68d27065 xp_expand_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68fa7d28 xp_remote_memcpy +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x8d146cd0 xpc_registrations +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xc04c7267 xpc_connect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xe68acd6c xpc_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xead4f7fe xp_max_npartitions +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xed1d3813 xp_socket_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x73f446bc uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8425afd3 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe82a6d6c uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fc8c8f7 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x9af5145d vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe9838b49 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x042ed77e sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0794b510 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b3c96b3 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14d637c1 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x170e6efa sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c62f5c9 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1d468afc sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3296c9e0 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x34056cf9 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35dfae77 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46483f25 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d5fd4f5 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4e057729 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x684a4650 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x69c611d3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e459e80 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e678acf sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x714d7896 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7200c6fa sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75b79bbc sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7f2ba84c sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8478f2ee sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x95bd680d sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa9aa9fbb sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xad81854b sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb50bc166 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb7d038e4 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb989102a sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd4e63cf sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc00d8ec8 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2949d85 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc796d4af sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca43263d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd001f5f7 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd944ea03 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9d1b973 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6f9f5dd sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7b72ed5 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf171a02f sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfae7606a sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd34383f sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x64dcfde8 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8f80fc43 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9469e50a sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbd7eff17 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbfc1d9c8 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc4515448 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcd35bc63 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5453d1b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xecc22460 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0040e66e most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x031363ba most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x23c68fc3 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x460a42ff most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x55edbf96 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x59f7e16a most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x696b77bb channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6acc9caf most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7af9147a most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b1b8c5a most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8dbe30b9 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9405704f most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xaffbaedc most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd4e49d87 most_get_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1312282a cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd1252854 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xee0c0dbc cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x026150ce cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8fcad498 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf1989f48 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x605ff9cf cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7260977e cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xacd4fd65 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdefa6e45 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x96f6664d hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x9d471064 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00555f59 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06a34dea mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x089c5dca unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a1ac570 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c1b86e6 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d2fdf1f get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e2c492d register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ec946a7 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x100ebc5c mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11a19340 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x144dac55 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a5db39d __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ff8836f mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2dcbb25d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f367692 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x334660fa mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x397c3320 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3aa7eb99 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e4dc7fe mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e5064b4 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4167ff13 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4343be17 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x446262af mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4952bd66 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fe773cc mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54a5a5c6 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5794e4c0 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fd4fce1 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65dc7a30 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68e0535e __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e397d27 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f746c6b mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8dceeddd mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9747b02e mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99d4ec3d get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e7ff905 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa19eb318 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xace09f3d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5317923 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc30d983f mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc0ff6d0 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccdaab5d mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd29cd297 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5d53e8f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7afb35b mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda9ea8b8 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8b9bcdb mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xece9e4f3 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf36c72e4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3b78906 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf612c630 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9f50c63 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbf7c02d mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x23662d43 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3d366c5e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x485426b2 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5d82196c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa03d3c89 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x03a4a8d3 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1b4f22b6 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ac1439a nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x440e99ff nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4d265a46 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x509ceae9 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x595dc95e nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x69c4456f nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7ee5fe10 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x86c47329 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x88093e62 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8bf3b196 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e93ffe8 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9ec41c28 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa04c74cd nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb1c35880 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbef559d7 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc8d4b1c9 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd28ec631 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe277bd5c nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeae1d5ec nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfb0fa144 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x74f21270 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdd3faac6 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8e300095 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x006ac25e nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0fe83ad6 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1ac5a3fa nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x24913c32 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2dbc88b8 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x54952e0e nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x549e5121 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x56fc1491 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5dbbc1c3 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x61b5e68a nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x69952209 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6cf3c9bb nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x75969b13 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x759f9308 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b4f0fcf nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7d1aee19 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9f072285 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa4346fb2 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa6b2ee02 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb516c623 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb7d29727 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc4f225d3 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdc0fdf2d nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x77f9cb9d sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xda18651e spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xfe01856d spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x019c33c7 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x19337c64 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2b879626 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x52809829 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6552d244 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x671c98cb ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6e2aca82 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x86287261 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8cc71ef0 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xabb27d9f ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb44b92a5 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd66b7e26 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xea81f162 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfffacc20 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x23c7fde3 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3b83873b mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x40a832f3 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8ba9e996 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x90741e87 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9dad5c2a devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa101c47a mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb352d1ca devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb4d38b2e mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc2d533de mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc78d518b mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xca935b69 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xec7f834b mux_control_get +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1a0a2253 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x96124891 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x41d58989 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x54a18b36 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5d346608 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x65e7a0ee c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b74682e free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1cc5ce1 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe79b8e2b register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x298dbbca register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x57f881e6 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6a42050a free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd1598d27 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1bce4948 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e237c8e can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2130eaa5 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2502f6e0 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x292e8bc5 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33b0a46c free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b63efb3 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x48b0bac1 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d49950a can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5228f6dc unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x524de53d can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x52f2e0c6 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65221a07 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65b45f8e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6642789a alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x705987e6 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8eca732d can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa81f932e can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8d40c4b alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaac80114 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab3a6ba0 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae40138b can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8896ab5 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe1a16fe can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xccef8cea can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe1e8fd68 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xecde42e1 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf16b25e2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2da5401 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x050fe867 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1caa4223 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4065d35d m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x428cc08e m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4c634cdd m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x527949fd m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa9a3c2c2 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcb481b94 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2736ca94 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3f280cf7 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x78c26c6b alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc015c09e register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x64dc75b9 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x06b99bf8 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0f8c8122 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x11546549 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x145e42cc ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x150a2087 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x168db1fc ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3aec18d4 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x673b9eff ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8d615b32 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc8ff8ca1 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcfff75ff ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd38393ce ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd5fdcfd7 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe6dc474c ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0b32ce9e rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0bb415bc rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0d2d4b68 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x12cedf2f rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x38293fe0 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6ced5bab rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x873bf1ab rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xab2a5dec rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbc3afef2 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbce55200 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc0d06bd2 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd60c1646 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe9c52ead rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xed4a7c1e realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf1b1306b rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x8f60313c i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc9a671a8 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2bca0305 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x40e8f44e ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x55c0a94d ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x81f11241 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8753adb0 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00caddb5 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01c973dc mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ac285d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07e17f6d mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08265a22 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b61135d mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b956e8a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d642a8 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16336efe mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16b50a0c mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16d89b8a mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x185a2079 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18e1f26c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b80850e mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e51e638 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa3e1fb mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a56840 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23c0c5ba mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26673ded mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29f113aa mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b41fcb5 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c4bf078 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c62b693 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35f6ddf2 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36bee2c3 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36dddda6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c20fcbb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x415c6c6b mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41dd9bdc mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4402f166 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x441c4b33 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b92c4ac mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ecd83be mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fa1a556 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5042f2ed mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x504921ad mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x565e358a __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56664e53 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x568a391f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ebc73c mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b786137 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bcb37ed mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c885ac7 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d9ada00 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60903447 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x619e6db0 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a7f281 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66766ead mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66c1fc59 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6775ced5 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68550934 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6875722e mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69ed96d6 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ce8c7bb mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71474d32 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71aa4956 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7326bda1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7347f4d1 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7617b850 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78234a6d mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea7083b mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80b90555 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x834b20ea mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac1fe78 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b259fe7 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c2c3d68 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f019770 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c85d04 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a79e2a5 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c937e37 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d96816f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1baf6fe mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa68df4e8 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8fa5d45 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba57d74 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad492378 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad8779f3 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad957fab mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf2255ec mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1ac9c02 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a65d27 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9dc06da mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd3634fe mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06cecb1 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ae6416 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6cbc968 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc75dd610 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7f30ef9 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce3e43fb mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceab69dd mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d6dfaa __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd51a2e7f mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd622fb42 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6f1e70b mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd88ce65c mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd98f7f22 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb215035 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf22bbe mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd11b1bd mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde05ae30 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe01ee8ed mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe08ed687 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe20928e2 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2182110 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe301c766 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4edcd7f mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ad4c83 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84ae5a0 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9ceb2fd mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeac8bcc6 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb596525 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee270477 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee3fde53 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1465632 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1a448c1 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf621eab1 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf758114a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfac00527 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb635566 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff523d52 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffa2385f mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03963d9b mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x041629b1 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07bbb8e0 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f45311 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x093d30c5 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09720a28 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0af0bb7a mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1da24798 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213cd7a2 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3baa910f mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ea3a59e mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a2a2d6 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a04cfc9 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6f6c2f mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d349be4 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d53b008 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d7660b3 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5091f173 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x566ff604 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e89c39 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a4b97d4 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cfc4f41 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f3b9e0a mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6040b672 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6592b54e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x674325f6 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a5fe711 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d9cab82 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e05bd4c mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e61c899 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71304160 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7392d864 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78701bdc mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aa5f158 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da01853 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e1cae34 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ffba70d mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88020f26 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a8d1df8 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0248bd mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0a13bf mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c172873 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d2c472c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x971c0190 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1b8080 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c6c1ecf mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f3e7389 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa05f037f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa14d1124 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4b051c2 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa54eb5d8 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa630c188 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaadafed3 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7663e7 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadb7326d mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadecf491 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae275457 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf041c00 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb14ba8d6 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb508ac57 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaf7d9b5 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb36f254 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee7233e mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf0ef372 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ff48ac mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3d53c32 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda8f6a46 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd569484 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe697ebae mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf760c8b5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff429025 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0a348336 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x30dea17c ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x73516ecf ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xad22250b ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2fdf12f6 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0da658d3 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1072fcde ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12f90cd8 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c74b196 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f8af50e __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70613deb ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7aea647b ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x851d9de3 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85695ca4 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb35c4971 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedc0f07a __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf31c0e1d ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf46816d4 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x073eeec8 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x19098051 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd69e0fd8 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd79a2224 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf2974eba stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4124b623 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x66c78fe5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6c55fe5c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8233ae24 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc3fa1221 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x36161bb2 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x484393e2 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9841bf23 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbc7c249f w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x5e4a6bc8 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x128ab0e5 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb43c471e ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe0f0f27b ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf32d2ed4 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfdcb9535 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x8d7f5a49 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x283fcb4e macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5c03ae8c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x71e3a6cf macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x933a28f2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x4f8b7108 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x2b6c1a59 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd05c47e4 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2e7718a4 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x53cd070b xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5766ced5 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x71b89e7f xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xab20bf45 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcf5083fa xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x026fa6a5 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b9c62ab __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1031e034 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2971958d bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ddefb05 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e03eddd bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32bf6927 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x340379d9 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4372a4bf __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a369575 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4eaa69ff bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x516b21ef bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5411a1e8 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5737a2bd bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d8b6b66 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x69a2a6f3 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a1489e1 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x71201df2 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x734572ce __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76c3a3ba bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76e87aa8 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x805d95ce __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89ae51c0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d805371 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8ff0aa8a bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x90ebf32c bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97956a81 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8a2ac65 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb71c9492 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2cecb19 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7448704 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe72e2f20 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7d28d36 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeba8e647 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x26a06abb phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2ab50c3a phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5c307a8e phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0e4d09 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7d6d9ac5 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa4084220 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbccce0b4 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcaeaf586 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde5d01fe phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x3cda1c85 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8a251ab1 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x980b1e42 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xa42cedec tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xa6146ff0 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xabdf6e50 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xb8b54542 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xca94410c tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xf360ac56 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x201aa13b usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6949964f usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc6c37e65 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdbdb04c7 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf7fac06a usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfecd979f usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x071331a0 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0e9913cb cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1b2af87b cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b8d0443 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3ac97b6d cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x40c5a8f1 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x42e3f4d7 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5cd3f247 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7a093a5d cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7f427cc2 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe4c4090 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb7013b4d rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1250ea31 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cfb3473 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8b890041 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa8fc1428 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaf13ba7b rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd8993044 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x047106b9 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x079b83d8 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x097fc5e7 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x104f1bb6 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11e12c1b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a63f2fa usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20ea0f09 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28de5409 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c8e00fc usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x328f54ea usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x485f30e2 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x522cb419 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x639a2f43 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d0002a8 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e98f3de usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f94236d usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85a1b003 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x904c4645 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9913bff1 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c43eb9a usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9cf4271c usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d960619 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbc47dd6 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4d9ea18 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcfe96044 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd0e60c20 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd0fef7b usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd4eaacd usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddf47167 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe457f22c usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea2bcfa5 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf021a74b usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3a0ecb3 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf86ba568 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x41398ea0 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa110eccc vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcbf050f7 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe467d5f4 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xd43b3202 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13646d72 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5352e560 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8dc91bdb il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae9fc46a _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6fb9d99 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05de9dac iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07d02a9d iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a3c4b1a iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d220a19 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x144b127d iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17dcb26f iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17f4433b iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x18b2c4e8 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fff9d57 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x21ccb1db iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a7a24e2 iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c1e9bed iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3780e157 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37d9e2cb iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38c94656 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51357dca iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53cb0174 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55f2f960 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x562b4b0f __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x570d9bcc iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6002002f iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60532aaa iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6131c856 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62c4d880 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x648e8813 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6be00e74 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6cc511a2 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d202eb0 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d89e40e iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a7c1b71 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7bb3fa57 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c794f95 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d8d9d3c iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80a5f0fe iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80fedbb1 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8115288a iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8470832a iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x866f5fea iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87d5922c iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x886e7853 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x899a8ad5 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90157c0a iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9292f6c4 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9522c637 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a4b5d7d iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b8b2a1e _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bcee8c1 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bd7bf2c iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c4b4d32 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f91e22a iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5454ec1 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb735942c iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb749f77 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc46bc1dd iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc9b25614 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf6edea3 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1083c5d iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9dd6627 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb1d1b74 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf88484d iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4586631 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe985fb1c iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea44f641 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb006696 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf55618d4 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8b0d896 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc58c76f iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe725b85 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff3b2d73 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff93afce iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1035fb36 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x13d26d9f p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x36acaf5d p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x709e8232 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7f72bca3 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x83b50b2a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x93a08e08 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9e2af1d4 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa81de2d4 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x00567fbb lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x11296272 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x206a7dcc lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x41c3022e lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x43db1a77 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x68e2409c lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x93353f15 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97437581 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9a202839 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa2b00e9c lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaa5643ef lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaae4ca9a lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb20f3a1b __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdde41f52 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfa8e42e4 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfd81f9f6 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x125c97e3 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x125e4f47 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x13af8d30 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x52c14749 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x55f8cff8 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8ccd9a69 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x980f69fc lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd92b57b3 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1cc47950 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x373989b7 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x38e16cc1 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a2cab20 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3dd90f93 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5341c9a0 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x54bc826e mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f2d1db4 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f3358b6 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x691c74c7 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70857596 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x761b3abc mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x78f20cac mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x981b1f64 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9a4e1cc7 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9d505c56 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa189cfee mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa6e5b2ef mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa9279603 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe0719646 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe0e81a15 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe45de7a8 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xecebea1f mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfb18f5c1 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0409c2a9 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04668359 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a3abf04 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a493b98 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0aba16d8 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1200200e mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16bf4b39 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1711909e mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x195d0edb mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e1e546e mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21341a40 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x252eb5f8 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2691701d __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27fb14ad __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28fcac30 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2be23835 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x325a5c2d mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x346df6f8 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34da3008 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35e77802 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a0dfcea mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3adb3633 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b1edaa5 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5073f20b mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54319b1f mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54f8f941 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56d544b3 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5742b8ef mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x591435e3 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b24c983 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dd20900 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f665496 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61fc5afc mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63df5c6d mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6468394e mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x646e5239 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x647bccf7 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6712fa37 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bd66995 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7247f0c4 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79b03e4f mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b0ba35d mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b1c6070 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bc92f1f mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d21eee0 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e5ff268 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84ffeaf1 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88d2caa4 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89831aab mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f6ae3e5 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f7c762d mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c6b1f03 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1c72f28 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa42a1877 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5f1cc8e mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xada8c148 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0924c22 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb36172e6 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5e26743 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9174de1 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9bf0f1a mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb3e113f mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc15803a2 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc47615d9 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5386be1 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0d1a5b0 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd138751a __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb669ec6 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb933ada __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd45bb2b mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe015fecf mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea95ee25 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec1e4f16 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef43acd0 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf322cbca mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf55d67a1 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6f7d0dc mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfed80447 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff5c40a6 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x120625d9 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x162c4c04 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a7bab30 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1af2269c mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20019d9e mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x244d04b7 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25f5b89e mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25f7f2b1 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2baa575d mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2debb526 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a250b09 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b2edfa3 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c1043c1 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46aec823 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c2a3fc5 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64bb7c37 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78c84509 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b21f9c6 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7dd1c9f9 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f5f37f1 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x805e8837 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x859e3f0a mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87d062a4 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9329cc30 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x948e7e91 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x972f931e mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9942eaa1 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9aaf7030 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb289924e mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb5c5a822 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7831f01 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc487aee7 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd99d0fb3 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbc25eac mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd06d7a8 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6f27524 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeaece732 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xecddf307 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedd840fe mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6ad558d mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb7a5b4d mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbe2428b mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc8a09ca mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x62eaab51 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x876d317c mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xecd4f06a mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2a6eaa75 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x30b35008 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x83aebb90 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8ef61c7e mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa499dbca mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa6a95441 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa8429aee mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb21155d2 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfa4663c7 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d9e0833 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15f958b6 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x17d64eec mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x30cf4d4c mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x331d50a4 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x393311eb mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b8f11f8 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x42aa98e3 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4509a4e1 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x51bba222 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x670efcfb mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x68f0bc02 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6aeb475c mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x74f5306b mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7af68031 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ea0f484 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c646473 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9c605917 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9da26d89 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e779527 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa13add4a __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb3b35b56 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd01edacf mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd8132134 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdb5ad6ba mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe2a2eed6 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6cac2ee mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeedaccae mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe6a8e26 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xfae94b93 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1f34e93b mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x660ce4b1 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x79317a62 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x889c6ce1 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4419f921 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4f5f79d0 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x92e87a4b mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa246a10b mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xaca3171a mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd1b6a6fb mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0001d70b mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01b07efb mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06395961 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x067c937a mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08a0e61d mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d6cbfb0 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d9ed280 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12c7a5c0 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x160b5e4d mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18f53b9d mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20bbbe9a mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2142d5af mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x290a2160 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29c4d3f9 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31b7adda mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32cc5936 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cfc67f7 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47913edf mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48ee2e3e mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4effca39 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f6707b8 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aa73ec5 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61638137 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x657c2900 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fc72748 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8004086b mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80a5aa02 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82ade056 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83337b75 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8581119f mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87209ccd mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d91f594 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f4b0eda mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9031133e mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90f00deb mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9739d015 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97ee059e mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x992d5f91 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f8f2d38 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1f7db17 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3ea9c38 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa82968bb mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac7a4afb mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaeaad63a mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1960302 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7a9272e mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7d35dab mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc39739e0 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb1739ab mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd06f063 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdb854b9 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd426aadf mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb647b12 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe02287b9 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3673fcf mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3c0e131 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe46d724e mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed7ec664 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee9e10e9 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0be77b3 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf385810c mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf99941b7 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfaf54d18 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbe18076 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe3163ec mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe68f52c mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x04a334c4 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x21b1cc8b mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b41d7ab mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x715a7fbd mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7dd42ec1 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd067b0db mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe84c9030 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf2a3d824 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x19b0412c mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2ba878fe mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3b0f968b mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3c0eb54e mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4fcf5751 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x621f7fb9 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x676a97d0 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6e0ecfc1 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7342740b mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x76ffb416 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7e24de05 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x977d093f mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa84b0539 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac14bd66 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc61aec3b mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcbe0dd20 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcc2eaef3 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd298a20a mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc5b48c5 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x22964686 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7eb24b37 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xaa91b4ac host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc26c915b wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd7812f80 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe059ed03 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe6d31e30 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x533d75e2 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6c236636 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x821abda7 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x84f6e90d qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x888a67bf qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe5da867c qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04a1bdc1 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x070d7ed7 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b6416ef rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15fd51fe rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bd59131 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bed183a rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1df946e1 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x243c3c97 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x250e8bfa rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x338386a0 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x370b2370 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37750203 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38fc24fc rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a2e6b44 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49e0120b rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50b71029 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5410386d rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5482939a rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59cc4da9 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67377e38 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77c39ae1 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e4568a6 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x816dc922 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x837ac455 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8807346b rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a5f5387 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b1927c5 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c19c7f8 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x985e7133 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x99e33a34 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d239685 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa37598e4 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5eff064 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa7ce2c0 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb2330fbd rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb52ad7a6 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbab1ba16 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7c0fda4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd342893 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1863881 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2575b40 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe490d214 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf93c3c07 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd2b6830 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x00ba89d6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3b234392 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4ccd520a rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x59b990a1 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5e510ebf rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67836f74 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x69994bc4 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x734630fc rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x75adb3ba rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88927ae7 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x95ddfda5 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbc8bae18 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcfc1a00d rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd79dbee6 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf5df1c88 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf65b60b0 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x030ecc48 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09425b14 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fe4454a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x15fca5c8 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18e86ce4 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e6af13f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x207712f4 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22049162 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26a737f2 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2877cd59 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b393f28 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b8fd545 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x355f5d80 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bc194ef rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4277236c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49e2db3e rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49f8bc26 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e40016b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f56afb3 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x531e1a10 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x577a52b2 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59d2eaba rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5dbd9dbf rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e6a7d66 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67a4aa0b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6978c6e6 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b8327a6 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bf428dc rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7dd4599a rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8919c71d rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8dd5d801 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ec9f4a0 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x922be38b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa72f4617 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf644bbc rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbac3f89c rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd469c9d rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe882b83 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1a70446 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4cc4157 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7eab508 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2ed4249 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7c05518 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb36a43c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedbe1c0c rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf606f46a rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe40ca8a rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x079e5b98 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0b6d0640 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x709662ab rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xee96ef49 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfa879c9c rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x484d287e rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5cf6a605 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x69ed5077 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x063fa6ea rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ac04c4f rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ae5b292 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x105b0504 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x42744ab2 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x45f8e7ee rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x488521ea rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4c2fa1dc rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x756c558f rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x911bcbcd rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x91aa18a2 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x95ddec4a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb31f6dd8 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbc110ba9 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca7b4767 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb1335dd rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0266fac5 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e1f5cf2 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f91ec79 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84e42679 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ff77cf2 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a2f7a8a rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e6be177 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1fba86c3 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2750c5b0 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29a285a7 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a1669e3 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b67bc8e rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a4490cd rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bc69321 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a5553ba rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9110c953 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91805959 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1a7e8ce rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa8b0dca2 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa5e3e55 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad580c9e rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3f8d246 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbecded7e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe316ea04 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7b70d99 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebbf70c3 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf014d2e2 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfae5cbeb rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc891f07 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35c0c7a6 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ad37c0d rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64ae083e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7414d41b rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bbc353c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e5acfab rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x865430cc rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88234e4b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e335b8c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9192158f rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa38cb554 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xade95fb9 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc504d00 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd837104 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc36d9ff3 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc914e828 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd075b5af rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdafeef9c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddd326f8 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0a829c2 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe282f3eb rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf11fcaf0 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3ce6917 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8be00b6 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfdabe4ea rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x22cf1893 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4e96fd2c rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x547b748e rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7c71e69f rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x89e040b8 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x56bbfca6 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6ddf0836 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaf52e0b9 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd1fa9616 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4bce1f8b wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6d91e37e wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xfcf6d8d2 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00f2f9db wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06616a6f wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x096a2699 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bcdb5f1 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11c09d39 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x139134c2 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b72abdd wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2055d732 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22ba80fd wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2602c685 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x288ca575 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28f5f88b wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x362e8c72 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b4776f4 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3be2a4fe wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ca7fe16 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42d98098 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5685b3e3 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fca13a3 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ff24bd5 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68d0c034 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76d90844 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7706c09c wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7bd147a3 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7dd12d48 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x857c3545 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ea04d51 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x901bda80 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90709a07 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4970b41 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa71cf639 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9b900fb wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc44eb8bc wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc83b2477 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd12e6663 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe75b01ae wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9f9f942 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea859247 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee355cc9 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeecc9423 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2efccbd wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3377667 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe9398f9 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x14575c46 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xb72caabe nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xe600064f nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x319cbb1c nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x68bd8db9 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb95e4ad5 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf098dd75 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x261f5e5b pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3d913257 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x79303f9d pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x948c94d7 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa866ec6a pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb5c590c2 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe3d3fdba pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x407e25a4 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4fb1d59b st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6405434c st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x69bdc21e st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd99381fb st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdae34d22 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe6d5e072 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf8837c8b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x180b5b48 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xec15ade3 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf76fbb58 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0ff69038 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x485580fb ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc56b3935 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x0d1786e9 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x530b8f2f async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ac0d1e5 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b9e038c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10be223d nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2232bebe nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34054048 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a96348a nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41b658f7 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4551feca nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x478ba597 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47d51d4e nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48046cd3 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48e9fd26 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ef4620f nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53cc398b nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57e52621 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5db43be5 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6347d7d6 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6cc7aef2 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ebae0a0 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72a7d86a nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c7a39fc nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d47c5cb nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b291ae9 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ea0384c nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91bfaf7c __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x981fe869 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9906966d nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x992ee27f __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa13c709f nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5ce495d nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaaae2def nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2822b3a nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe3dfb1b nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc72ac51 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf867273 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3ed9c94 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9f4b191 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed5e20d1 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee913938 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6807354 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdd9af8e nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a9e40d3 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14f2204a nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4e39e765 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x67d28cae nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x93007870 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa3b78e4f nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd0f4729 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc08be690 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdc1d6f13 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfb166ca7 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xddde5c84 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x24dc586f nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4f51ce26 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x66b4ff90 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8417bb59 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xada46900 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb207bfa5 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb6f4d911 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc6659dc8 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdfd3e4e5 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xea0274f2 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf9d61aa4 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7b0d9328 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x68d1af82 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xca82d9ac mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xee7fd810 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xfaf97d43 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x6c46f840 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x9c69b6db cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xb97ce637 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0452fcc8 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0521b0fd ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x064fa732 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x08c8b347 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x218d5c6f ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x304adc89 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x350036bf ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x46a92b47 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x70d32495 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x80c85c1b ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x83efa98a ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8e94800a __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9389828b ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d982abd ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9e98fccc ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa466a331 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaae9ed52 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xab1c5594 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb19251ec ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb32e2623 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb8d02e04 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbde10b38 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc1bd22e8 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6893772 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcfbf1dd0 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd260364d ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd71a2a2e ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xddd362f4 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe4bf69a8 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xed4193b1 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x743d4789 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x05f61ec9 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x7a516bef asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x327cfa63 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xef9fa9c1 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xf074ad5f dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xca7ab006 fw_attributes_class_get +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xe609be46 fw_attributes_class_put +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x607a3112 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x7667ccee intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x77538d3b intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x5e36a92c isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9585bd52 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x065b4695 wmi_get_acpi_device_uid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x1ff2e87f set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x264d48c3 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x71cb8e33 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0102032f bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xdf0afd83 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xfd676ef5 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0dcc5db8 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x442ea591 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4c1bee9f pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x08385ed4 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x0fb43a5e rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x11b89b68 rapl_add_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x42c5c6e2 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4340a689 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x47297c09 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1b6a6fd9 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x311e986e wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5921c7cf wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7ea86dc3 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa3b68a9b wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdab97e84 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x9d4b63c1 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x3c30ecb7 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x035c3935 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06ab80fc cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c4855ce cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e73bbec cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15682ebf cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d1d685b cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d2f767e cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d5855b2 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23dca4c3 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x248d1cea cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e84b10c cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3372d1cd cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33c2a2a4 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x359276aa cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38a1224b cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39588182 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f7c28ce cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b0f0902 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ea26ce7 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x535fdf87 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67e3817c cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c081be5 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f6f559c cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cb75f74 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82ccb3c3 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91bc2fc1 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4ed861c cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacec597c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafbca6cf cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3e632c1 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8c6eeb6 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd9ae077 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc328255d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3765613 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdb1b056 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce694744 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe30d56c8 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6fd2422 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe85aed5b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea7d1e13 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf19f1a6a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8c4bcc3 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb4ba025 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc41f044 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0685730c fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x070bc217 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08198484 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x285720e0 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3007380c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x316ea6b6 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x58747483 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x67ef9d21 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x682ba642 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x73632fec fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a429b4d fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b784aec fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7142ffd fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8155c21 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb7a612f fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe9306d89 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x25b3437b fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x88908792 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x412c5583 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ee96ee9 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x982daf2c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcff63f43 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd1d5923d iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd4a4a9ff iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xef7bae0c iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06fdd6d8 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x095c8375 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ebc7ab1 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20b41bd1 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a68eb15 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d9d3b74 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x379b1654 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44abf1c5 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4653028e __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5110eb29 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x515c86f3 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x525dd1e7 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x581e9fa1 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64c88619 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b1acac5 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f4924ac iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8086e6e4 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9483376e iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95a7c9ca __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a657f32 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa211077c iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7d4f0ba iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa83dce6d iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9ac0305 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xacc1650c iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadb4ef8a iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc171f365 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc17d3f2d iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1e1a6c4 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc35f094a iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc55ec316 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc70ba930 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfa61a33 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3463234 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6333b18 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd975ad4a iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9a2b6e0 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd46cb96 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9c62035 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xebd40e1f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4a967c0 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf61921d8 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf94715c9 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb477afd iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0912a2ac iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0c8f8364 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d6cf103 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3da513fb iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57b3d3a5 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6a9d45b7 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8e34694c iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x921ce8fd iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c8a7547 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3fac957 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa4b6f917 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaef4e030 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1a7b7ef iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcac561b0 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1830731 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea2b2f0d iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0b66e72 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04d38c1a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05976baa sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08e0bfea sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2889d4dd sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ba40e0f sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2daa23ff sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e403b2c sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32ef1c5c sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c42db23 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61043263 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66a3422f sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8facf573 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x912a49c3 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9384668a sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97b5eafb sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x991b3f0c sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b814ec5 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9cefad84 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa29f1e4f dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2aa8dfe sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6d49ee6 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9a52cc3 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5999443 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdec33f4c sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec3ea4ab sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6515b69 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7dc7fea sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x91fe24a2 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08f39a8c iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0fbf2faa __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20334b6e __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2122d057 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d3fad02 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x401d31b1 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x437c6a1c iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46412809 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x499144bb __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cf45e83 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54a97e48 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5609166b iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57e400a6 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5865b372 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68f09b6f __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x731ad845 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76c963a9 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b3d15ee __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85c73ac9 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86a125d1 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a57dce5 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b8609d6 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90acd265 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x971c86ce __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98c523b6 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99f7b533 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9da69d94 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ee54e35 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f240a32 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb028ba83 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb115ce6c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1324e7a iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb739a6ac __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb98097ec iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbdc893a9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe08e85c iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc04bba09 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0e73c6e iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3be92e8 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5bcb56b iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1b9a910 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd45d5bcc __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6aba4bd iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd979a462 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb89dcfe __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2c8c45a iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe51facbf iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe72c390c iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec009088 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeceae128 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedf91bcd __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4a20b23 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6d192e7 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9a8062e iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb06cce2 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb52c884 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe7fb701 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x152ac248 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2e477e02 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x645e3a45 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9bd5c69e sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa916a0b5 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x048f2b5a srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0a547894 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1a5a3d44 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x25f6da6e srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb8dca744 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe6bdee7f srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2f9b1656 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3c08914f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x44d41104 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x58855a00 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5a2c4646 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5fee7c7d ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x641889e6 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6a5e0331 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x725825fc ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x796e19bf ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa3a487aa ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa9b395cc ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xab897188 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xac330d19 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbad9e948 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd3dd5e09 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd4c363a3 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdda0e933 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe92d5aa7 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf1f89f64 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8c1689fa ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbed7ad50 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2c6c00af __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3555b4cb siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x51205dfd siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x57f4b8f2 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7decb7e4 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xce9a2c67 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0222e5bf slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c231419 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27a9a20a slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x324610e4 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x34892294 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x47704522 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x62be7b66 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64aaccae __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e78e9a2 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x813aa182 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8808246f slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x91e250e4 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x99998150 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa88a4370 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbccd3710 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc294b417 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2f95ebd slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc84457d8 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd789bfcc slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xddf24af5 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe8cd761b slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb69b77e slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef0ef24c slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3c413e0 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa853000 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xff8f9ddf slimbus_bus +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7127a8a5 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x729e4b9a sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe114cda4 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xc20700b1 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x4f444cfe altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2e41bb9f spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x57fb7ac8 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbd116f72 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe14d0e7a spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeb00167e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf7f967f9 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0306e78e dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3305089f dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3f3b45be dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb0050c61 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb947d0ad dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbb3203f9 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xda7ce1c1 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdb87e781 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe5748f7a dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x14dfc4b5 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x79d640e2 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa9358730 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x08814bf7 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0bf827c7 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0fc74009 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x27a06e3f spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x531b5bc1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x56b3d5ee spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x573724d8 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x73e26745 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7bec4891 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7db684b1 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a03a633 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa8f7d8e9 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa920f073 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd8c841e spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdde38c33 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde8a38c1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9e4709d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xffd1dd24 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x00815d3c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x48247204 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5d776592 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7169bf11 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc8524898 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x111cf3cf gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2e965fc7 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36340481 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x48865785 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x49ed5c96 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6eef7379 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x709bed0e gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7ebee9fb gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x87a820e3 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9607f9e3 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaf71487b gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcef656ba gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdb0d877d gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0931f718 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x146b9b92 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x20b2a352 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x264eb703 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x276b6063 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4a996cbf gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x55de38af gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x64ea949b gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7aa178b4 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbaa80639 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcf02a032 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd7817282 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe495c77f gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xc4839c86 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xd9326cd4 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x1cdc4773 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x9f65251f gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x635238ae gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xefce9932 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x90b5f2d5 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x5df202ca load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x9706dc19 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xd8576c4b apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x355179ec atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x3b9c649f atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x6eaf3538 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x8879c626 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xa9f28a05 atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xb59b50af atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xbae0e12f atomisp_get_default_camera_caps +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xcce3a090 camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xdd008339 gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0459e3a1 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9c79fc7a target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd286c0a1 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe2932507 target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0399d53a tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x096a8f5d tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3556aa67 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3adbf6bd tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b6652e2 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x528f0cdd tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5b904903 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x61b0c4b2 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x62abadc8 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x658a3a78 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7ecdb04d tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x81c7c511 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b63fec5 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x98e5a683 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9ddd9fdc tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa70beca8 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb489e629 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9cf00dc tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc0cd5fb tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc04e9a01 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc6cc8837 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc8b8988f tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcd9afb1d tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda747a77 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xeca331ef tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x347f7752 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x4dca86c9 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x8a67abd8 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x30494244 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x59b0bbc1 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc48fe383 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xdf36af2f proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xee22084f proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x14246d92 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf2769178 proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf5dc8f5e processor_thermal_send_mbox_cmd +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0xc9d14e9e proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x0a9f7fa8 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xc3f25bd4 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x01f11bc1 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x92d01e97 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xaaf862d5 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xcaee3832 intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0817db75 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x18188c18 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1e2cb369 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x27adef78 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x43526963 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x49fcee5e tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x501938ca tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64e0e042 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78377a40 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7a6fb377 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7c93ca24 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7febd042 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8857dd90 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x88955a63 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8abf0a77 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8f983c52 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x918805ae tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x958e0420 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc399dc03 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc8e88d65 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd051a6dc tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdbc5344f tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf2d3743f tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf812245a tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0df843ed __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2475d611 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5bbd4380 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd5622595 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa0483b66 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa7f266c9 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x16d594a5 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3940b5d9 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8debe969 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x90b8951f cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x91539e3d cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9973b83b cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xca1b3676 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcf6edb52 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdab15cad cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0161a0b0 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x84b884cf ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc88a49d9 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf4110396 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3a73c22d ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3edd3ce9 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x863b09a1 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x88f69b6d ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e81b598 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xeae54fcd ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x14c35c51 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x18363e95 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x29ef393c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x51d3eaf5 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6ceb8ec7 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x730bcdd5 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x76996f28 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc9090326 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc9fdcd30 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf3c97ff5 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02f86957 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1f76f316 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e1cb962 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3595181a gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5f79ae4c gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x68c1b2df gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6982ad29 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6e28599c gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f35b09d gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb30b629d gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc0e0059c gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3bf3abf gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd693be24 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0adb33f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf2be0cd9 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff02b457 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5c48ffe3 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd46a68ef gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd9674e42 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe2543aa1 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x0ccf3d5c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xefab0840 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2cae343c fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x36d74361 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x37e73373 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3a9e752f fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x43ffc7e1 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x79c86f05 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7d226e43 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x833308ae fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x88bceb36 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa6ab0fed fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb11a1931 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb5868260 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xba2e414b fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd4272033 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd51335d6 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5e81777 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffa11671 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x220b9e13 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d413ed8 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5cf591be rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d92899a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60e99a06 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62a677d6 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6fee0f3d rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7a90e24e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb2ac2dba rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb316b5c8 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe196b26a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe9fd190c rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec22e3ea rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xecb1d972 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfee6a4f7 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02002582 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08d27738 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b64d00a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x12b04982 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1af00844 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c215b55 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d02989a usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50ce8d06 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b440730 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fdac534 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85a001ea usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x88692be5 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cc2b5b4 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99375f16 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e237aca usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac030309 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb11d1223 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc8e8e66c usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd7a6a27 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8ddb46c usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde57139d usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe07b0059 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2014b05 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8585297 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb8c9f94 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebe9f8b5 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeeae7b1f usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8fbf460 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfabf9792 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfca6d677 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe51e6ca usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x260c1427 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x26a60969 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4334a01d udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6247d17b init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x70fcb145 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9ae233a5 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa55ceeda free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc362b9e8 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf2aded74 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0b7628d6 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x13c91b56 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1cf1c940 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x224a306b usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3037ba5e usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3181c481 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b5456ee usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4c84c2b2 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fb593b1 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5456f3fd gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x569860b7 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x585a300e usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f5f72a0 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x644a3c5f usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x69e1a0a6 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fc76731 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x707136cc usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9418571b usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x991b6626 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9dd02d6d usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa8dd7da8 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb194e62f usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb474f6b2 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd23bc9f9 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef06accd usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xefa2d349 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf30536a8 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf74f359b usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfb3689bd usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x2e55bcdb renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x189b8e52 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x85d80d98 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x15cca505 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x31301061 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x34eccbf3 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4c85a4bf usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5ba5baaf usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6e2fff28 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x77b7a84a ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa44f95a0 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbbe867d0 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x260df60d musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2d679117 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6cca6a7f musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbd3259c3 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbdeac6c1 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xde462a29 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x153d58f9 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3215da3c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3c8cdfa0 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x79a68403 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe1dd006f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x63ca934c isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x336b01cc usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x119009ea usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x14671570 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x14b46cbd usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b1b80b7 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x20516f16 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x381a487e usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bed74ca usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x546e73a1 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55b9f639 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58b2acf7 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x775f814f usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x787577e5 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa128c8a7 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac1ecbaf usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbeddc57c usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc83ff611 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4fc65aa usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdcc64b2b usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf0f7c1a5 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf801a147 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x07152e42 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xbf8f0744 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xb01c8608 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xba5cdeb8 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03cdf207 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x043118db typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05a51866 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x06d90aca typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e6e3593 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x193c3f02 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x193e88a8 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a708d3c typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1cb720be typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d5fc98f typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1e7cd2c0 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2788dba2 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x286d1447 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2899a782 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29d79209 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b0f9017 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2ea4420c typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f6b2eb5 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32876bf1 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41312863 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x456859bd typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4679a6d8 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5262c17e typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x566ba1a2 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f483d2c __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60be15af typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63ec5727 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6673cae9 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6771402f typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x73549a46 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79a54ca1 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a6b0864 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a788ba8 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b9b8c27 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80f89b63 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81dd9a42 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8288c7e2 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90cc0bbd typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x982d141b typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4685682 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb03b22e5 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1270b56 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb404bde0 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc12c4b7d typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2b7410f typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc6df70d4 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2c2c0ce typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd60e8d61 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd88b0250 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd9a90748 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd8dff88 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe02b0283 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe41d2d4a typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8a1f9d7 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8f2944c typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf04a28e4 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6f2b837 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8d3513f typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfabb5226 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfefc6a17 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0c11f825 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0c5e2777 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1373056f ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x580533c6 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9f362367 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa6cd6e02 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb91ac519 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbc35a36d ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xcab6aee5 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x19625ce3 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c0a462c usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x25967a7d usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x287573b5 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ff99095 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57f21681 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5d419aec usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70d4fd1b usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8788c8d9 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb72e2198 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe6cb1002 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe9a1a662 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfeda26db dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0a6807b6 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x49f2b989 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x724d0087 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x771871ee __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9c666bd1 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9fa3522f _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb7304a28 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd3c5e859 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf45c40c8 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xeb6699d9 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x23f5aeba mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02dc77ac vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x040a6ed8 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x044bcd44 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0458cb31 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d2589b6 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d6f628b vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14243eb9 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15cf716b vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18e45c97 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fd2e9fb vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x393e0fbc vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cc6bf3f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4646b23d vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c75c545 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c875a2b vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x517a57dd vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5347d0a2 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x562dfbec vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5814f463 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x606003ef vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60703caa vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68db80cc vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b230db2 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x869c79a0 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x897e9e53 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c39935c vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5fe5b64 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8f99752 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf9fe240 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbda7f020 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca59f9fb vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd887b126 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb05d6eb vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdbc23640 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe07dd602 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe48ad0ab vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8cdf44b vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe96b2500 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc68052b vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdcdbbe1 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x109154a4 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4027a2e0 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x435d0b62 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5a2b18d8 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe1646ea4 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe26c6225 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf6276fd2 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5aac3f58 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xefd2c7e9 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf9e98bf2 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3251cb24 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf26b3dd8 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x98d563c2 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x145f77bd visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x42d5cef3 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x51ae0b88 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x819658dc visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc85f8e3c visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xe6f273e0 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/w1/wire 0x10aeb006 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4669df6d w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x65811c0c w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c58a029 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa7bb4968 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc879a241 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd319d5df w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd45ec64f w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe2433156 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xea3d28b1 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfc3a248c w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x3406b4b3 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4ba354e1 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x577575d3 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x97d2c374 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf6b49285 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x19fc75a1 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xcc0c74c0 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x769a223a dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9e265bbf dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb27c23c0 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4483bc51 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x56fc0315 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x58800a74 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6fc7c7bf nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaeb33f52 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc0792d8d nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcd2562d7 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x003b25b7 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01867ece nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022758b0 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0477c51d nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05499f3a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x056f3380 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x067bc025 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x070f1b36 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x096902aa nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee546ee nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef03034 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13b2126a nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18bffa5d nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1ffd01 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b5436b7 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c47d93d nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21845d45 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x244d9438 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c3664f3 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c770237 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d3ffdc1 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2deac812 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f160a85 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32b5e852 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3632466e nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37105f31 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b42a2f9 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c8d0564 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3df9466a nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f92dc35 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x404f9012 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4222e4fa nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x469ea98d __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46e2111b put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4832612a nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4975bde5 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49d608b8 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a711d64 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cc1cdc1 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf2d1a3 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f4daf01 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f7be593 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x501e0751 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5213abf3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52202c25 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52df4fae nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a0b0f3 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53af429f nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55bdcc18 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5745e3f4 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d3803a0 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f69f2b2 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x622178df nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x629933a4 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65e7a646 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66a47569 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6703859d nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6af084f7 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e5de7c1 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f09f27f nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f45d87a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x711c1fae nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71ea27d7 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72bc4220 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73b66a7e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76c12e14 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f168a2 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7728390c nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78420026 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79b2a554 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ab31e15 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c20fdbc nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83f66004 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8555201d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87967a21 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8940f616 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c614d05 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c720c87 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9200bd68 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9669f709 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d968c1 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97aa2797 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99f7a120 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b3a3a85 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c01a835 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e19cec9 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa17f550a __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa221bad8 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6643f62 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8b5bde7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa93ace6e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5356b0 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad2a933b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaede1c46 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3bb4d75 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d4e8e1 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f1c359 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb609ed4e nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb823df17 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba152e71 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba8b0438 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb89cee4 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef010f6 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc05a32f4 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc12c5992 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc26a276e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ad9079 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc52b725d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5601e29 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7112df4 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7a67a8a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb08ae9c nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc862050 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcce47aaa nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xced39911 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1546ac5 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3db7adc unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e969db nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8460fe2 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda184f54 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1e4b02 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda5c754e nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbc19388 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc209270 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc725d60 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe096c93b nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1145d83 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe29b0427 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5be746b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec2b7f5d nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec349546 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeed53241 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef6a36a3 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc53bfe nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0dd845d nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf473933c nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4b14a4a nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf58f72fe nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf853464c nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9695b64 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9b3b74e __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd6364a7 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x10544190 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x018ec965 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04ec15a1 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x050d0755 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c305de5 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fb56a0b __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15421cc6 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1582f390 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x216e09e0 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x229fb946 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x261809b3 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26fded44 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e9c0f9c nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x346bf2b7 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x362efba9 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x369152e9 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3736e839 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c514f05 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d8879ac pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dd4637e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x409a4ed0 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42a95ad6 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b648ca2 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d082dcf __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x502284b4 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5327c985 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53d484f2 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54b26a6a __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58146fa9 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cae4771 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dca6743 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e43a6fd pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e6909b8 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f6b193e pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6217e19c __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62d980bf nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6794a047 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6820706e nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ef2fda2 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70ed4dee nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77ac4521 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x781bb96c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b685f08 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ba6facb nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e93f004 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84dc68db nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a2e47c4 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ac70bb0 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c2985fe pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92ce1f97 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x952b0873 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x957a5f79 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x983cd91e pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99466d37 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b4ef6c8 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ccbd373 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ebed52b pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f398cbd pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa175f95e __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5284001 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6eb171c nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa96b8702 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9bef2ed nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab3cf680 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaede8c5a nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf9bfc84 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4636d2b __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6112247 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb97d5b42 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc90d2bf nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc00c4e84 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc19d6fef nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc364f0b2 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc37f1872 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc500513f __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc51d7c50 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5416967 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc55f36e0 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc885e10c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaadb0dc __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0cbf39d pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1d82331 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3cab519 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd59d3c2c pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda4518bb pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdef5d172 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdefef1da pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe359402b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5bebe72 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe82b1a5e pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8a48598 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9179737 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9ba06eb pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec47c48e __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec9753ce pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf249e71e __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf361e2d5 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5591184 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf93605dc pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf944d54d __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa1e8a87 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc19205b pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe260d60 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe452fe2 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfec5e0ee __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffbd9e24 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1873ef0a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5a46769b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa70728da locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0847abd4 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0d389828 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2e272625 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdabff7e5 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa76e4e90 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x182dae25 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3aa7d921 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9f8bd6a9 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa90505d6 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaa998bac o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd0f6d4e5 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd99214f4 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0539611b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5fdf97e2 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xac3c4159 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb45c41a0 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb6efe2bd dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf7adad10 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0d1e052c ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x277ac851 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa9a7d707 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe11f9cba ocfs2_kset +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4b45fb6e poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x7f376d08 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x05b001bf notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x957d7c40 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x3b91120b lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9eeefde2 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x266457e4 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3ddd1821 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5cf2cae5 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x6842e278 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x79087bd8 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xb08e7877 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x0d75b9f7 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x31474c09 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x46d48b13 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4e257c50 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x69380985 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x6f660e4d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x1c367b86 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7ec69927 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ea8e6d3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe261d806 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xea29bb5f ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3f586ab8 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5d1b33a2 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6284d666 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a22fbd9 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6c4a093a l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x705bd733 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x82cccc0a l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xedc0cfc3 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc4e8002 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x716caf70 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0506401e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1a5136a2 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b1d01d1 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x21a5ca42 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x29cf54f5 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2fa4fa9c br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3016d5e6 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45ef819d br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f78d0a0 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x656875a2 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x84f6f60f br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8bbe878c br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b60b391 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa02ebce9 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb5bea08 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbd9e4ea6 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc796234e br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbbc5dc6 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd476f5e6 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdaca0623 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf741c458 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xffc198be br_vlan_get_proto +EXPORT_SYMBOL_GPL net/core/failover 0x85801e75 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x93ba851c failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xc49f23d3 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06630195 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x12694a77 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17d61417 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1acf4547 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fc15570 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x389039bf dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3912a5e6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x39a70b2d dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cffb4fe dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5167a205 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d378570 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7062aa1a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x737655b6 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x76ca83e1 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78c84963 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79598f0e dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a6fbaac dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x886a24a2 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97479c78 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ded7822 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4d9bcdb inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8245e07 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf0815a0 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb598a5da dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5a30b97 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc70e334f dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9f4efdf dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf3b9c50 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf24912f6 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7500ec8 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7fbf6c2 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0827c94d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x896845bc dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x95034ad7 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb41fc77c dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc900ed92 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdd4e0cef dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x000d5a56 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x100ca6f7 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x198ca009 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x250646f3 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2af73776 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33584f3e dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x372b7071 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a41aa63 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42217030 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46b49546 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4804d3fd dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x542e401e dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x597e9df7 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6261f9fc dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64507c11 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7681daf3 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76d2e482 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d590787 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8884c7c3 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ce4deac dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c59f3eb dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f27f313 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8ace5d5 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad261779 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb30eba0d dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb4b2de64 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xba7842d9 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbbb4a4a7 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2de0df0 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb009cfe dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce1eb63a dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xef89799d dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9c7c097 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfae4f489 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x260a8e10 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5ad9aeba ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6a058263 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9dec1d85 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ife/ife 0x34660e31 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xad9d4988 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x022d7dc8 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xaffda472 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xec629b0d esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x5c541c69 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbddd8608 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x41bcf4c4 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44528a67 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f67eca9 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6b95ceb0 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6db72833 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb1cc85bc inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb658ff9 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xce284ef8 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd87f9cfa inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa8908df3 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02fa7171 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03ba9f23 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x196a494e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ef15a20 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36e18afe ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4c4ff3ea ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5484a2fb ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x589151f0 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6033979f ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8267ec03 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96b313e1 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9c295e96 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc2db2ccf ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc37f4852 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc69259d0 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf590c7c7 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9da9d90 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7750924f arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x3823a98e ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb32084f5 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb8175f8d nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x4566038e nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x238ab4f6 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3c0521a3 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a1b034a nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9b54288b nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb5156f9c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe5201f40 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xea2cfbc8 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x45b415fa nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2ee355f0 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x77f3abd9 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf19f6ff3 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x89f1428a nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xcd92b474 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0c8998b2 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x26e6aee3 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x38c46473 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5237550b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf778f292 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x04896a26 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0d1d48ef setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1901c239 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x30056908 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7528d7b1 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x926943ce udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd6c8f620 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf433522c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x38bf2297 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x53671fd5 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xbc2cc8f1 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x53997bd9 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa26caefd ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc222c21d ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x07471632 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0dec784e udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe210e350 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x03ce464e nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdff9f346 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe46edb3c nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5217e5d8 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3147f173 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5020d05b nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7302c6cc nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x799c4691 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7c29295f nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9664104b nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xce9fa7b1 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xc2d3b493 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x63f83dc2 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x815f6d08 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9f704bf8 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x65637d97 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x93579cdd nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d41c16d l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30c7934c l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x328f592e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x364495e2 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a7ca1e2 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b7c5e28 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87bbba0f l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f30f3e5 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9246dc67 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92915f6e l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x947d0452 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa090bd94 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafcc5a6f l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb26759f2 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb64b34a9 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf589386 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2243027 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe88935b4 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1a0fae8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf345463c l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8e6663a l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xd95e6866 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0362b4ec l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b82dd53 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d8fe86a ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x396eb580 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4097ea21 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x54f596d8 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6191c4a1 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x64a7f64b ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79823ebd ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x822cea64 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83b38aaa wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x855742a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89cfa166 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa745089b ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb38baea6 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc86e0e70 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcbbe50d2 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce7d1683 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd0ead186 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdab7a98e ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe50d1b5e ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4ad3c46b mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x77d56b87 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8993d300 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x92999cc6 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf95fb083 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x035c7d2f ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x13b50059 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19429499 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d24e124 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x567d77b9 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6dae3679 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x800b4215 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8604471e ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x957b6650 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9db3a80e ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xad99d14a ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xadcea3d2 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb1385c1d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbacdbd61 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2291379 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda52a2c9 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea3368d8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebc1a706 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3461a3f ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x758c90bc ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x94074e4f register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc8f67633 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdace4a3c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1f5b271d nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6dbc4f7f nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb3d1c644 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc22f0914 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd78dd63e nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00240c23 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x004466f2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0453349f nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04f3cabf nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06def870 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x084f53b1 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c67a15f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11529524 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14494fcf nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x164d637c nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x167da7b7 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d194e3e nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dac7ce9 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1dfb9d64 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20fb7cc0 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x249e30c3 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25904d6d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27bd8d57 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2df54faf nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f4d2ef8 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f98a9b4 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31d7c045 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3475a4bc nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x356739fc __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3597769b nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35c7cd3c nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a67d3f0 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c22a605 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d9115f9 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e15ab78 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x405119b2 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44aa7a71 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x484c82ca nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48e5115c nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b0a925c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4de6eba5 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ec8828f nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4edd643e nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x549516ba __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59f24ff6 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67606e81 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68110417 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x713dad8c nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7eef3c27 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84d28ea6 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85299419 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x858fc7fa nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86de8bb8 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x894e6089 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d24db41 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fa7efcf nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x963a46ac nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x971570a5 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97ade38b nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98cceceb nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0d8272f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa18a6cc2 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2737c65 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3815785 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb98047ad nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba0991bf nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba134384 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca93ff50 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdc2b09d nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6ee65c4 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd738b91b nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda16bd35 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4498998 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe592a9bd nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7800f1f nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed0aed52 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee7c64ac nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef1bc58c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf20ca389 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2c818a3 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf33df8bd nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf632aa7d nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf988f64f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfab17e87 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc6a9006 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf3664105 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x673d9c64 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x37be0907 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2a4c2834 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c328578 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5d9cb243 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x775de9a4 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7ae31d01 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89dbeee6 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa55b4193 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb64057f5 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe90f0578 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc60f1d4 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4d9b3554 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2bb4e4ef nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7e148754 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa4157858 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaead7725 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x192fcdbd ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x553ec076 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7062f8b5 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x763d92ad nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb3d22e1b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb975e0ec ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf37a6479 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xf7ba5a41 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xcf363eb4 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5cc67a57 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa0e26490 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf8315163 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x269f3f79 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x407d7fbc flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x741708a6 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x874a138a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x92b88843 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9548bdfd nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9851586c flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa567e1f0 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad01409a nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb87c1cf4 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6c9ec1d nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc8ab4347 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd5d94392 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd91be9d1 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xda84401a nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeea12926 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfb31bd2a flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x062f4a79 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1887495d nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2b7f1114 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x560e32a8 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x75fe4eec nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7a6ad3e9 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9255eb3c nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa7c85d65 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0330ebe nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc8a4a33c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd2c9bfa0 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd32bff34 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeff23930 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf03918dd nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1f45fee nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf923c964 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0884799b synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c06ce40 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6ab843b0 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x741d50b8 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7eddb204 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8015966e synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x95dbfd26 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9f1b1f9a nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xabfe020e ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd3f72f32 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe0805e90 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d5b8950 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16bda98e nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1979072a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d9c9bec nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f84e629 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x442db755 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52be981b nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x565bb8d2 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b32f081 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c60e53a nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x646500cf nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69616c02 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7eb526ac nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x883cba54 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cd17e80 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e146506 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa869c548 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0b73ba2 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb90d6d40 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbd896f9 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbce2c02d nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd9c56e7 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdea9003 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcefd10f5 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7765aad nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda881e0d __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda98f051 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe67ae9ac nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe98e256b nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee4b2c6f nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf198059f nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf487cfab nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf60ca0f8 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7b08456 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7c9c28f nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9fae595 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0c728ad8 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2a97855b nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x46259e46 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x616408c7 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb267fec4 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd74e079 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0db78a5 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1bd43f38 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x70b0f2b2 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb9e4e456 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7896c852 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xfd922140 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0914cf1b nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x99816d50 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb19ef978 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfdc61ecf nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0962e139 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x19aefe8a nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x36a1dd7f nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0033b2d3 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e274aa2 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2af76638 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ba82bad xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d62ff91 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2df70e1d xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3024ea09 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40113627 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4022a5db xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5b47e569 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e53bc61 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x859d2866 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9370bea9 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c2d365d xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xadbbd743 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xae39ea4e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5197c42 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc81a90d3 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd45e0e8b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdf852a53 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec5aa512 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5480ffc xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf9425d2a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x212f846d xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x6f9fb1e4 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x05719666 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x596fac4e nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc9431163 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x06b9cee2 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2289f261 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf75e1948 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x738d0bd4 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xac9fd7ce nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x63dd86cb __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6f2d10f2 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9d1c0b39 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6070f0e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd6da0ac5 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xea4de14f ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x1d11634b psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x6d8cd36d psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x73e63407 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xa48b8bb5 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x569a49a7 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9513ef67 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb98b4f28 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x091bcbb1 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x127f3043 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1c4446ef rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x28ce2c58 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f43a850 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3983c90e rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x3a4f3690 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x50c69785 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x77edaf7d rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x78b30d56 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7a73f46c rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x8227ec13 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8793c585 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x8851b18a rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x9633dc97 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa2fcfb8e rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xa48567c1 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa63c15cd rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xad99a447 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc7a69810 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xccc11f5b rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd82acc11 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xd951a159 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xef755d47 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf06777c4 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf378115b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf6134bfb rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xfe3c17d9 rds_message_addref +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbb2c2b33 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf90ae9f0 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1b16c2aa sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5772eceb sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5792dcaa sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x90265c2f sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x00323b1f smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x260d8b7b smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x273ef792 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x2f051267 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x86663d38 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8793be99 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xa8ce9d66 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xc4d962dc smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xda241643 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xee547c27 smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x006a9319 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa986e942 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc64a8ac1 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xffff54f5 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0011bfd2 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004efac1 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0061ce63 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0199d7bf rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026c2511 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02d12fa0 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03705082 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0495908c sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0502880a xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06759707 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x067d6990 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084d815c rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08e5ea4b rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091def64 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098fccbd cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e1ce83 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af2701a svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d10338c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e6c01b2 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea9254b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ece1196 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f293862 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10328e3c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11feb9f6 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x150b2442 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1673bea5 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16c808b0 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194fdee6 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a061a81 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1d0bd9 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d75adfd xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2093d4 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa6df46 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2076adaa rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x207d569f cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20a5cdf0 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21561c3f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x224e1673 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b9d612 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22e47b92 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25a4cf48 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25a7f8b0 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25aedf43 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2788b342 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28bc0f6d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29837027 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aed3ff6 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b1b64e9 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b551311 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bee7c18 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2de06793 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e3fa090 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34f7accd rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359246ec xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359392e9 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a971f3 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x388b82d5 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b66f8e8 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b88201b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b940c4c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4e541b rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ce9b33f svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d63bb7e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d9b3a01 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f1c73d7 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f72c5fc rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40bd8218 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41949b7a rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44be31ed rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456c8de7 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ef5e8c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47538f97 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ea2f16 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x481b3ec6 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc4022f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3ac78e rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da4e002 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4db7efb9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e821493 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f312074 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f39a7b3 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fbf2c42 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e5b043 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e0e615 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5603840b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56abd6be rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56de1bb3 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b66a763 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5baf1273 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfcbde9 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ceb8faf svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d97532d rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e7a7767 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x627b5d43 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b2431a xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63f97504 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658c32d1 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65d74016 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f05010 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a96772 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a766271 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7eece2 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc06579 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6beb9d3c svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c0ef106 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce3b84f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3cf03e xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70518386 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7504146a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x759042f7 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767b59dd xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b869ce svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f20d5c svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x783b7fed xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79801a6d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a11d9bb cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3c81af rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e126060 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e52bfb8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ed4f8d4 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80532291 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81105d25 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82bda4c6 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f084f0 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84c42f69 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x868dc0f6 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8967e102 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a3ae7ed svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a6fb630 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0486b0 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd10e76 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d6edc0a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dcceb4a svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e0f3928 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e51c009 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb1ba02 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91b032cc rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9214bbf7 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9276ba41 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e06725 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x945741a0 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94b1eba6 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c99221 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fb3726 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98383264 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98a2f562 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a8112bf put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b379f6f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b4933ea cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5ece7d rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e2a8693 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f7de322 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa089b5df xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa21306a7 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa459330f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4cf68ae cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6cac0e9 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa77cdbe1 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e8c49a xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa83a5f65 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa83c66ae svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa54cd68 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab0f6065 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc99a33 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc2ba91 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc6b294 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb111dabb rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1eca9b8 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2b17a52 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb466d711 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ffc2ae rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb90916eb rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba96dfe5 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbafc5ad2 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc0f4389 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc520497 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee01665 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9c4c97 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc17ae1a9 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2a08271 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ac8fef xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc41711a1 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc41a2b85 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52916af rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc531378a rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62bef99 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9858bbf svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca41f7a rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb8074d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcccd7f79 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccd64f2a svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceec1910 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf56de4e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09dde76 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd17f350d xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1cd76f5 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd220461c xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd496804f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a1f64a svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd518afbc xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb549b35 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc3c3bb7 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde97860b rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf906282 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfb10fc5 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2444cab rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a7c9fd __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3e80bda write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe42527bb rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe489412a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe590aca4 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5aef3bc cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95b6ee0 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e02a8a rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae79858 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee92f48c sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf15bda8c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3acf691 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5287f6a svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5bf7f84 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a91c87 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf77fc8e5 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8669cc3 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf98c7e77 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb1f58f3 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb7f84d7 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbab2cd5 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd98ae0 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd63e198 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdaa4d2f rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7fdb53 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/tls/tls 0x32bcbb7d tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x3bdf1470 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x3d876859 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xdf88bac2 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fd185f7 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x136e4d1d virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16feff51 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18570c71 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a085d93 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c297539 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x248b5aa5 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x36524ce5 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x419a4772 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x459a42ad virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4af47ab4 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60172d48 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60d61efc virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6fcd9268 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x759c4b13 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75b2109f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79054d37 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8574fe88 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8719ebd8 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89e736fd virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x926ce0bb virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1569e28 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0f4be95 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb54ddbd7 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe11c5c0 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2e32e86 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc933025f virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd573785b virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1f49298 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3106d49 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6bcea85 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6f72857 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeeb62d4f virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef05661b virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x06e4c4a9 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13843244 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e089e0c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d154d40 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4da68556 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x527f9f29 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5d2c5243 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6bd8e9c4 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7473257b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7d4f134b vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x848a9969 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87e5f31e vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8f8de047 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ea5ede9 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2ff8747 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3129e97 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf0d4d077 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4e29a2b vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf53e1784 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf742174f vsock_create_connected +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x159260f3 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2548093f cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x375961c0 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x440cca13 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x459cb8fe cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x51dea7bd cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63f65c67 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e763d9b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7ef8c2dc cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fbfe8af cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b216966 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa1737c41 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa408f013 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc19c6f1e cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdfbfc3fa cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf6161b73 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x84a51574 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd5340805 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdac60255 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdbfe9294 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x93b7063d snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd 0x36c7ed15 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x383d8af3 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x3c3e1e89 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x435bb4ec snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x48ad40f0 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x5c3b50a8 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x5fa5e58a snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x61f93f30 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x6ded9f74 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x7a39aaf8 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x8daaf07e snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x9066549b snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xb4d2011f snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xc0565507 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xcf21a55e snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xed9d6029 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xeec93055 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x2867576d snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa9a7ada8 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0da592d2 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x277dc6c3 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2d3165d6 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2d342710 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3c9273f6 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4be7e774 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4fbd2c7a snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x830d539c snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x95ef62ba snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9bee732f snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab5a14d1 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfb96c0a5 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x08c053e1 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3f6c8b09 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4725b035 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x52b66331 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5ebd2aae snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6f2b7be4 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbfe4fa4e snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcfb4827c snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4da979a snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf03c0cb3 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfc4b372e snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfee018e0 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x0acfec92 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x20cad033 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1aaac3f0 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1bcf73bb amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1d6f33ac amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x37363f6a amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x41bb2a87 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4d3b44b5 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6622375e amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x84583aec amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8ffb6bc6 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc4120e44 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc6c5080c amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd87c2ca3 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdc8b1212 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06351ff5 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x098d489e snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x211a08c1 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25836926 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x299a492a snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3abfe9a1 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e94a0a5 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x403de742 snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4a570819 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x508f38a1 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x529c2635 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52f5895a snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5cdbb88a snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x651786dc snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70911666 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77487284 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77ea3754 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7b99d390 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x83bede2a snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa1690e63 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa9274579 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4cc470a snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb917f421 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb986e0aa snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc7c844fe snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc85dcf87 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc85e350b snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc9df4fd9 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcd8a338d snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf534295 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd239c5d5 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe02b14ca snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xed49c72a snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xef9dc65c snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3c67d23 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf457473e snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4d18d30 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfdc785c7 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00977584 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bb6661b snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1177fb86 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11993cb8 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12b6b774 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16ef2d0b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x180ff1f9 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19fe2bac snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a5ca252 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b71fdf5 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21c8ee9c snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23725fdf snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24a4b50d snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f5f85c0 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30015196 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32a6380c snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3593ea89 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x361ec155 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x363afef5 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38b5d189 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3aead08b snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c8287d6 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3cbce664 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x418416eb snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4188cf19 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x428a4138 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47058025 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c0b44c8 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d4f7aeb snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e43eb3a snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f4a98f0 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x526653c1 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53f9c440 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54d21d50 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57d56b82 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58a0a7f9 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a0ea75f snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64f97bd8 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x650378d3 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x657ecf1c snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x679dd36a snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68967893 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7110c2f3 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x731136c3 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x736ecf43 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74c3f650 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c55c2d snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bf86edb snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x804c6e4b snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80acc3b3 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x822ed04d snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83e2a45a snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x870403a3 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c6d1e77 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9911b982 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x995a40e7 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a73b264 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bd33dab snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa026fb5e snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa48981a7 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabfd761a snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacabda99 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae2ec000 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1470388 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3a861f4 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5382bd8 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbaa51111 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb82bf1f snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc422bf7 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe9a57d2 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1e2624d snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2072861 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5edb112 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc717080b snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc5488a2 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccf9b86c snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce784709 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf8baea6 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd61ace26 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfb4ea2a snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1a96f14 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8c93dce snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefa9e61c snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0dc88d4 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb70ffde snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7963aef4 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xab56b8bd intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xce4654ed snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcf6a2d5c snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4158ccbc snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5cd76bea snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x75369b1e snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7581244f snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9967704f snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa5dc1607 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00014c28 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00284b64 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x036ef941 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bc106a7 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d2a956d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e67d6bc snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x158d3235 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x182e55cb snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19cbee60 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ca42bc9 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e610a71 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2226efa5 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ce0839 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2482eaa1 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25778437 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25a8c9ff snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26458c5d azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x298f8d57 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a1e247a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a6f3fc9 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2353ea snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30669707 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x318a2533 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35c9ed17 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3625237c snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c4463fd snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ea699f0 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x408d59d1 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45d4e70b snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46423df5 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49c4f3bc snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b054517 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c0304a0 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c2402e2 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c756406 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d27c2c3 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dd72bd3 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x502a399d snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50bba38e snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5288fa81 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54004de2 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x559490a4 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5596bb4a snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56900241 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57431381 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58786978 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6056e833 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6434d51d snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64671c84 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x661aecce snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66fb0f12 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69ed3169 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a46deef hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c678cf8 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70dd4763 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x712cb2ab snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x746e3dc9 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75953b06 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x774b931d snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x781d5a57 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ab236fb snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ba4f330 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e21a5fe snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f563988 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fa0d454 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801298c1 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81c30f65 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82279a75 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84684946 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x852697d7 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85423809 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88c62463 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88f9a9da snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c8c1e0b snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e008a99 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fbfe4cb snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90e22228 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927179d9 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93e34dd7 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x944a4822 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97f839e9 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98fb37cf snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a572f40 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cea9535 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa19611b9 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa459aa48 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaad3e4b9 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacbbc498 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaee18783 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf854d56 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb168792c azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2295118 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4adcca6 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9eccf27 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc39ee3c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2e4e42f azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3a9fc16 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4747b14 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc611c379 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc99e44af snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9de6211 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xceb30f8a snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfb1b114 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd44d261a snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd514331c __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd694ffe4 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6a2ac2b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd79d765f snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf1de794 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe14f5a9b snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe23c15ce snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37eab3c snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe44ab6c7 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8d0158d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe94a168c snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebf27a0f snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef80d910 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf01c9a56 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf21badff snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33b4201 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf52f0cd2 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf74196da snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa01bfde azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb9d759a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0130941d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x023c30ab snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d3aa9b9 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a3321b9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2fbf8cf2 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3aa64961 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46ade6f1 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b1b617b snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5684df7d snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68ac63d2 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6cf8096f snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f8cb484 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e65b112 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x93c5228b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x97c57d30 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa91da7ee snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb2a2f02b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb70c2bf8 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5810fe snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd24e9658 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe97ba5e7 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x725f663d adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x249fd037 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xc9af722b adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x09fcff85 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2d48f457 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4ba3fb3a adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x59784bef adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6b86795a adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6f02e2d5 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x80d19edf adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x977690fd adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9971e160 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd30a8c95 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x6094cfd0 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x09726b2c arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0a621c85 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d96343b arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0f7fb73d arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1075c9d1 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x126607b5 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1c7f1f3a arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x25b85b5e arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x26a63ff8 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28c87584 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3499aae8 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a3dd3a9 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3cd45e1e arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4adf68d7 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4b19d93c arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4f21d12d arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x554ecb28 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5c384bfc arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x67ce8a52 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6925b51a arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6c3ed2b1 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6ff0e2e3 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x717ca00c arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x742b3cca arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x77f118dd arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ab6c2c3 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x80db5958 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x89f745a3 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bc7db64 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8c2a6eef arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8edbae80 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9277a4ad arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x98951833 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9bb3a518 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fd8cd27 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa6d2217f arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa999ec3f arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb37893d9 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb682c92d arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb8f18f13 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbb210956 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc98d53c arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc05cadcb arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9076429 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xca49d905 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcfde3dff arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xedfd0f2f arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf613a9a5 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf66934d1 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfba1c398 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4bb2c249 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xcc6b10fe cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x486c1773 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4dee720c cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8b3a647e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9a73be8b cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe2537ea3 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x164841e1 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x365d218d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd30aacf cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4a6b935d da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb2b26c1a da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd94603ca da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe3b78750 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x9191b69c es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb706763a es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0xc1f1d308 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x106826fc hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x1de2083b hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x12ac11c6 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x06ec7cd1 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x997ae98b soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcc434562 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd5fd109a max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x1a507f59 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x62092051 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x735ccd3d pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xbb158af6 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd5ee857f pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x74ec6115 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc2c312b1 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x791ef869 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xee5cf397 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x07938dc3 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x67d41585 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7d629a70 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x977548bd pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x08be5de9 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa1792daa pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd2c9f08c pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfd5e8f33 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0xfe61e6b8 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x99d0c029 rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x095b40e7 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x14636cc7 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x905d8af2 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc080ec9a rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc2a960d7 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xda84e6c1 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x538962e8 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfdf52edb rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xb7e9ce58 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xd9fec9e1 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x696a0ea7 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa567a8fa rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xcab3ec49 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xceb0d6e9 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc2280c58 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x030857d4 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1105a6e1 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1f41927c rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x25763236 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x25d5eb11 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x40ba9dd3 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9ae18d61 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbed3359b rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc6898cf6 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd5139d7e rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf476297f rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x32d19daf sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x78a18a66 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa58a952f sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xec40dc6d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf9277bc1 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x1042cda7 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x33a21fac devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1ce380f8 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf10f26fa ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x8ef4f665 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xbe87ef25 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x21696289 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x13c227f0 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x37696af9 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x60048b1e wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcd414fad wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xdd011b58 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0382f2a7 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d0d9e20 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32f6218f wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3db0bf76 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3f7ba4bb wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x64d7e2e0 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6b561598 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7b2e32eb wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7b5b765e wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7d37d3a9 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x81a20565 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x89a76aaa wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9287a4bf wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x965cd505 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa48bdf7b wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa7f3a451 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xafd264c0 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb12a35d2 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb7919e7b wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6e2691a wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xce016767 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1bf71c4 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe0c49afa wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe1f538ee wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf15bddde wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4946752e wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4db77c9c wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7a0dddb0 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x85838ef2 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbb3b8b62 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5b602bbf wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x283bf2ae fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x038e6662 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x19f47a8d asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2873abd0 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2a415265 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4f71ec76 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x525d6a87 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x58f46f69 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x84d1d279 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x85def240 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x861c24ca asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x92ee487e asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9fbd7cfa asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa97dc30f asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb601e658 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcbbfcbe4 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcbf3647f asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xce19d55d asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdc8c7edd asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe8c8a608 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfd1b5a71 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x59265121 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x724cd460 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x41629c2d sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8e12092a intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8e230268 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xe5a117de sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xfc81367f sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0281834b snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x076f4a62 snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x482cc324 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4efd48b4 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x55eef082 snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5add5149 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7c617496 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7f0cf4cf snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80e36ae3 snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x813e0b58 snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa2f9478c snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa95e3688 snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xaee91d12 snd_soc_acpi_intel_adl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb291f19b snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb5e4a471 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xba589658 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc787c511 snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd59e492a snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd750d233 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe67811d5 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xef3f8fcc snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfb6a0a0e snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1192f591 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6d9d9c0f sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x728afcb8 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x88a20b2b sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8aef0f81 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8e9cbe82 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaac1ca26 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb3bc8fe sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbb7843de sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3042284 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3f297d1 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc446093a sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdf0f135a sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdf3906ba sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x075a6c38 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x101bd624 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x192d2dec sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x8b3e4eea sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc6e5e96c sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xea76eae0 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf050e505 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1354474e cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x157abee6 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x175719a9 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1aa1910a cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x43854842 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4446bc46 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4f81ce22 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x50b5a716 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x52cb6968 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5963beee skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5d15b8d7 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x608681e4 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x726ae5a4 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x749e985d skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x74d86b12 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7e5c937a skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x86bf029e skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x87f0d9e8 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x88273790 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9cb080bf skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa13d763e skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa5301731 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa69dd96f skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa8c885a4 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xaaa40a82 skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xac93867b bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xad596b9a cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb70441fc skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc126f281 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd573a534 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe8775600 cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe98b84b9 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xebc775ff skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xed734169 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xff86dd6d skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x508e2567 snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe3a526be snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0215d321 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03676ab3 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0497e6d7 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x061be75d snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06e4c4de snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0741dc08 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07bea04f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07e81a88 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c809794 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cff2f1d snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d183f70 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d193889 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dec8fdb snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fa01fb3 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10b960df snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ba2df7 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11a633b6 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13a33b96 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14fe6eb2 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x152a255e snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17050762 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19808885 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1adc5866 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b8169a4 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eb38d24 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ecae3e2 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x200b6671 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223a7350 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23f891d3 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24349216 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2518b994 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x251a5723 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27c1e2d0 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x282d8154 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a8cac90 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e7af332 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x301a7765 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34eaf603 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37354732 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b26cb2d snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c6e148e snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d427053 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d7f0b61 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x401471e5 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43ab3c4c snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ade77b snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46957ae6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472f9774 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4abbd677 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bb43de0 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e902f0c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f1537bf devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50515ea5 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50e0670f snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5199a85b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51edef32 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x532ee656 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541e2f75 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x561f9216 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5839e0ca snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591df107 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59470c84 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c1dbbf9 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c6ce529 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c898910 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e7608e6 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f3fe5e8 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8c50f1 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6199ed42 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x624e7c12 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62bfae9e snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x637145ec snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x638668eb snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63cc1a82 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64132b5a snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65146efd snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65ed7706 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66481f99 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67f9ab51 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a73565a snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6acce406 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6babfcb9 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d3cf60f snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d8e224a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6de0ee62 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5faeb5 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71fd2129 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7441b9ba snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74f17662 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x770caacb snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x789f6ebb snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d70dad1 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fb84aad snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806ee8dd snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80e36063 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83618dfe snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x845406ea snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85c426d7 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x863d342d snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87072f99 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88bc1f4d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ce5eef snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a25f37a snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c426bf0 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f259772 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901acad2 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x916c755f snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91b2634d snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92b29382 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x956fea56 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a384b7 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9763c3d6 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a555e56 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b9e7cb4 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cc7f9e7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e1296bc snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e60fd0b null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1f59e8 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f52be07 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f7d62bf snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1723f97 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa18fe209 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ea6da9 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1f35e23 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa24d44fe snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa306aa41 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa43b4367 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa536e031 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f7418e snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa84834f5 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8cc9641 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2687e4 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeed0de1 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb034c7bb snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb107617c snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1a43717 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3c4b7c1 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb41152a9 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4c3b83f snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb526767b snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb64f32b5 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9529633 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc20f241 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc26ea9 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef0388c snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf7e9124 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1dd749d snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2ce937e snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc38069d0 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc392335a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc41b28bd snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4585547 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc639081e snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7faf512 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc80bd66f snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd575cde snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee7c9ec snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfdf920e snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd04d198f snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0689f55 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0d6ca09 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd15c152c snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1c9891b snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd21b74b9 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3151c08 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd33a659e snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd39de645 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9559b65 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda896af2 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf07239 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb404801 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb4fe5a3 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbcb2387 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd1ef338 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddc7e8d8 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf3af355 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf3fe2bc snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1e19798 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2ec076a snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4fbe951 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6206b79 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6a24756 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xead19c2e snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec00047e snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec9e1213 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedafbd78 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeec4703 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf008f543 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf097dc8a snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1c10c2b snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1f3ae71 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2fffac3 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf390916f snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3fa3222 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf464e62b snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf480d935 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf920aef3 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfac2d0b3 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb810e00 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcf2b0c7 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe039487 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe464223 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe40bb6 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1dd101e3 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x31d990ea snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x41c61fa2 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x68d910be snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x86ecc7e6 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0239fe69 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35d1b89c line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x48eee4b4 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d96c9ca line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6fa7d1e8 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x823f36e3 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x82cdc91e line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9553fe68 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d7b03ac line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf279d07 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7d8ca81 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc4e9261e line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe582d1fe line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe6f2c0c6 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfafad5a0 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc37f55e line6_pcm_release +EXPORT_SYMBOL_GPL vmlinux 0x00136db5 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x002c9c9a nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x003494b8 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0036935f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x003fd7f4 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0049447a genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005cbea0 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x005d1705 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x00813241 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x008809a5 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00880e8b devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x0091f2bd blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x009d9128 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x00a51ca5 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x00b2d364 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x00babeaf xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x00c76c97 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x00d03098 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x00d0e584 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00de880e da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00ee714a ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x00f9363f badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x010fb92b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x011b7ffe dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x011f0c34 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x0127b866 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x012a563b regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x012b99ca vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0134e1bc __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x014536d4 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x014faac9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x0150e842 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x015a965c spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0169be27 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x016cbfb3 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x01761215 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0x01941dd5 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a0d60b bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x01a6b0b0 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x01ac2153 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x01b03d6d tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x01b323a7 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x01b82ebb xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01d295d7 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x01f2299a iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x01f79f00 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x020a7fc9 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x021776f8 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x02197861 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x022606c2 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x022d5261 __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x022f446c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x02560ae0 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x026aebaa ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x027aff88 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0289267d fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x0291dd36 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x02a7aa22 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x02ad3cdd tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x02c6e132 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x02ce94f3 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x02d71dc8 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x02d74425 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x02e29ba1 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x02f663db phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x030e846a nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03132f2b usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x03287161 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x032ab66e is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x032abca5 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0330f8da ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033f9d18 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x03419d21 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0348865d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x0349201f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x034e2262 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0372bbc3 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x037cb878 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a1f051 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c653e4 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d137ef usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x03ef256a crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x03f2cb20 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x03f2ef1e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040fccb8 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x0418ebba devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x0451416c peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x04623914 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0487bdfd phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04b10cce hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04c93bf9 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e2f367 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x04e73ac9 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x05038c46 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x05059e9d intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x05103eb4 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x0512f8c4 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0517b49e mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053fc27f blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x054812a6 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055e32a1 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x05677b3c skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x056b56d1 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0575f0cd icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x058458a6 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05b6861a iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x05b76e27 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x05bdd0db add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x05c0270e dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x05d050e8 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x05d3da9d relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x05e597eb acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x05f7a0a8 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x06025180 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x060ec854 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06298e4c clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x062d27cf pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x06404004 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x064359c4 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x0648eb9c devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065122fd _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x066941df __class_register +EXPORT_SYMBOL_GPL vmlinux 0x066fbe4b smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x0671dc59 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x06785dd7 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x06793170 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x0696b925 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x069cbdcf rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x069ce6c3 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x069e229d mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x06ade3aa tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x06be636e nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x06c336cd serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x06c85680 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d2ba11 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x06e00cdb bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x06eb8a10 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x06fcd66e nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x06fe94e2 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x071b3284 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x07224811 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07306fe9 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x074754bd kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x07684600 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c350c6 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x07c6056c devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x07d87ff7 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081a6ca6 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0833decb invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x083ce2f4 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0847eb70 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x084cd144 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0889fdf4 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x088f7d32 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x08a4fe11 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d73755 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x08df68b4 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x08e33b10 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x08e4cb2a crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x08ea3238 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0906bd47 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x09092de0 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x091977fb thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x09363a4f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x093c3504 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x093dd7e8 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x09443f66 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0968643d pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096d7f2f xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x09765f71 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x099f5754 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x09abe411 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x09abf173 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c2a77b genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x09c9ee3d fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09f1156b pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x09f35b01 led_put +EXPORT_SYMBOL_GPL vmlinux 0x0a169a53 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0a1778fc power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a28cdad modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0a2db6ae usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a4a4f39 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x0a4bf21c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a661647 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6f3c95 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x0a71f503 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0a772513 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0a79e632 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x0a810345 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x0aa57703 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x0aa637a5 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ac0ca05 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x0acc7e60 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0acefaf2 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0ad235dc dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0ad8414a fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x0ae753b6 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0afdc91e clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b210fb3 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b34b17e clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x0b50dba2 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b679ed2 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x0b6eb5c1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0b848c2e i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b864af1 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b940d53 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x0ba5b05a tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0bbcaa8f dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bc09fc3 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bc63c31 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0bc82c08 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfb0467 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x0c0baf4f wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x0c117e19 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c3093a2 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c5355a0 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x0c561653 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x0c60669d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x0c6e55e1 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x0c716639 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c924773 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc4100e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0ccc8d6e mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x0ce00916 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x0ce92ab7 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x0cf0db85 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x0cf7ffe0 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d1469bb bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0d1e2328 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0d22a559 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x0d261544 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d26de85 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0d333825 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x0d3d8200 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d45960b sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d59bec8 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d59fb36 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d7af61f dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x0d9ab130 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x0da152da __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df0f151 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x0df6562d securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1ae60c pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e2663b4 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x0e34a7a0 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x0e36c294 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x0e476d35 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x0e4b3581 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x0e4e702e serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x0e584e74 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0e673754 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7782bb xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0e7841e8 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x0e972f91 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0e99fcad umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eaaf507 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ed67665 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x0ed6a5aa __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0eda9781 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0eea6465 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0eef7def misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x0f07aded skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x0f08c7cc pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2f3d0d regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0f466a0a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x0f6d935a crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f840bef devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0f893b0b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0f95fce8 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0f9f3f0f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc32b34 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fcf79e4 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fe3fd10 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x0fe6bd7a blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x0ff013c7 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ff97c12 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x10086b40 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x100c3fb1 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x1047b4c8 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x106d2530 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x106fd034 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108dfbdb rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x10940e14 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x10ac55af tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x10ad324f acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x10b17a13 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x10b529af devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x10d3a298 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fc742b edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1101bc59 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x1115d6b4 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1130cb01 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x11363c7a gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x113ffbab fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x114efbdb gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x115e0926 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x118aa07a pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x119a022c sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x11a1ca43 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a5b7dd usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x11b89bc5 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x11c7a804 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11e111a6 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x11e3a6af rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x11f5437b usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x120ba12b trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123505b3 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1236021a nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x123d5656 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1271fe31 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12ad6f79 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x12c4f7b9 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x12c5a462 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x12d5069b wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x12d6bd0e sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13081769 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132b0832 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x132bdda6 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x132cea0d nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133ebcec serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x134981a7 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1367b209 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x13734838 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x13766e31 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x138a97c2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1394be75 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1394edb0 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x13a2173c elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x13a4e19b fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x13af6cdb gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13dc7e89 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f51af4 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fabe06 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x1401b25a rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14114582 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1427eba0 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x1438aa42 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x143b14fd genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x143b662e crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x145056b1 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146dc897 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x14815bc3 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x14924d31 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x14a15e8d ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x14b3ef1a perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x14bdbc38 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14da7c6a is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f93c43 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x14fdc2d8 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x150178a0 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x151de014 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x152064a8 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x152619ce pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1533300d ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x15355aaf __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153d28db crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x154796ee devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15573459 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x1557f2e4 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x155ef6aa usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15761021 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x157781d3 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x157b7492 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1596b6d8 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x1596fa87 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x15a6b48d ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x15b49758 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x15cae7d5 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ee7c5e fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x15f76234 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x161eed2c nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x161f0f53 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1632c49e transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1643106b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165541bb __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1657c119 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x165a8e4b dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x16659fbf clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x16662d9e clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x166ef877 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x167564eb pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x1679ea70 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x16841fa1 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16a4c866 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x16ae0c4f pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x16b83807 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x16c1951c driver_register +EXPORT_SYMBOL_GPL vmlinux 0x16c404b2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dae6a0 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17167d72 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x171b57ec fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x17299ebd crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x172ca71e dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x1739ae85 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x173ffc49 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178c894e i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17d35e34 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e6283d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x184395f4 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x184dc7c2 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x184e3138 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x185416d8 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1861f3dd dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x18629c50 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x1866203b handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x186983af crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x186ce31d wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x186d0c8e disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x186ed526 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x1882af95 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x1887a202 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x18903547 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x18925fa6 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x189faf0e gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x18aa17ba sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x18afa3c7 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x18afc2ba usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18b28b92 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18d9a6eb sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18de37f3 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x18df33d9 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x18e2ccf3 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18eee9e4 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x18f26442 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x18f4e6ff get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1917368d sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x1937e8b4 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x193df173 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x194ff609 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x19527ddb tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x195b31a9 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1969e2fe tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x19870061 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x199e55cb class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x199f8241 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a89231 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e80c27 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f74349 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x1a00071f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1a00c2 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1a28bb78 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1a309739 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x1a34e60f intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x1a3ccb64 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x1a5e7c6e pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a808de0 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x1a839c6a usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x1a8b36b2 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x1a964e12 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1aa7d97a gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1ac7b032 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1adf9047 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b094ad1 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x1b10ef80 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1b24cc75 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1b311827 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5067c4 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x1b58e60e clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x1b5d9c97 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b7d423e ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8d0592 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x1b912217 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b97f070 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba59e4c lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x1baac4c9 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1bbca006 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcc029c efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x1bd269d5 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x1be50ed0 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c0f3198 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1c1f2e5e regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1c451a2e cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x1c5380f9 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6a5f72 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c78d688 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c93bed1 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x1c94b802 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1c9e1990 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cb18dc3 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc25c91 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x1cd800ea nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x1cdb12e0 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x1cdd7823 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1cde5ce0 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x1cf3e910 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1cf994cd debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x1cfb5a56 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d252f1e serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x1d384c5d vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1d3854b4 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x1d4706e1 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d4bcc8f ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x1d55bff2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1d5cfbca gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x1d62d738 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d998902 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1dbb563d devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x1dc49eb7 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1dcc9ddc ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1df5c733 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfd6d25 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0a24b7 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1e2b0a0b irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x1e307770 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e49dc83 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e5062fa fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e68f72a pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8601a3 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x1e88ceae iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e91b8b0 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea15080 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x1eb2fc9a trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x1eb3e860 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecb31a0 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x1ecc019e ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x1ed0e9c5 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee2a623 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x1eea2a10 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1ef4332a shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x1ef93e62 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1f00659a apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1f03b8df platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f06678a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f23857a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f397e5c handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f45e928 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x1f4910bc crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1f52daf2 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f57e74a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f5fa304 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x1f6a4630 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x1f757b7a gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1f7cea8e synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x1f7f89ea power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x1f8321ba i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x1f84bc47 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f91434c fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x1f9e27f6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb6d500 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe951e4 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x1fedb8fb set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x1ff5ed40 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x1ffbda43 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2019ed69 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2025388e devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203cf604 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x204384f0 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x205b4d73 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2069d051 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x206add07 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x208a9b75 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x208fbd62 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209d4bfb __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x20ab1787 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x20cfcce6 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x20dd636c virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x20e54338 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x20f0446d vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x20fa456c dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x20fb187f blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x210019ea regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2138b730 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x2144b5b3 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x2144dc69 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x2146def7 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x215102db xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x21574528 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x2158ca35 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x2161b1a8 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x217351ac component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2196977a genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2198fed3 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x219a09ec device_attach +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21aa4b29 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b34d0c dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x21b6601f pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x21ba0f29 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x21c03c77 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21c77d51 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x21ccec52 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21d8f0b9 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x21dea0ae tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x21e149bc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x21e50df9 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x21eeeee4 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x21fc96ff irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x22030ded phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22189a3c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222408df devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2228e539 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2237556f usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x224c5f3a device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x22501706 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x225f4049 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x2266b14a nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x227ccc32 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x227fcd58 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x22834476 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x2284046e devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x22882dc3 __restore_fpregs_from_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x228ac6cf blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x22a93d54 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x22a9c26d check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x22aa7d55 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x22b1f676 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x22ca5b96 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x22d46cd2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d686bf virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x22d6bb02 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x22d79769 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e0ed3d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x22ea533b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2301133f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x230fa29b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2317c145 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2324a345 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x2327dfb7 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x23294092 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2342744d is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x23498e63 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2351a7ba gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x235553bf pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x23572f47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x2368aaaa devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x236ac3b0 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x236e3ceb iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x23704cd2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x23744532 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x23784e36 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x238d5841 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x238d9c4e debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x2391fec5 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239b692f mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x239dd725 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x23a6bee1 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23b9ba73 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x23e7c28c mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23fcb9e1 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x23fe162f gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x23feb680 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x24100aa0 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x241f537d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x241f9f92 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2422ed3a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x2429e6a9 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x242b6695 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x24306c32 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x24367372 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x243b9b0a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x243e2566 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x24535bc3 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x2459c7c0 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x245faaee shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x24709f02 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2470b6aa wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x2481c227 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2499ee3c xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b942d3 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x24d39bcc iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x24d58bf2 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e1f19a phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x24e23fc5 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x24e4f219 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2511b0b2 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2530f28f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253c6470 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x25416842 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x254fc8a7 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x255b5db2 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x255c6439 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x2583b5a5 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x25912bbb __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25951cce xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25bd227c devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x25c06eb7 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x25c1c7a3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25d57cd6 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f7af4f __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x26057c49 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x260bd11d bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2614de1e devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x263d55d0 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x263de230 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x2648ef48 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26631c98 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x26642d2a dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2665baa2 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x266810d6 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x2669d340 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266e03fc mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x2673c7cc i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x2675667b scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2689cb23 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b4ef95 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x26bb8c41 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x26c82c15 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cbeb90 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26d183af of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x26e5f43c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x26e91764 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x26ea7cce usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26effe71 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x26f19331 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x26fc8c68 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x26febd81 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2725d097 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x27301cf2 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x2739b7c1 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x273cff6b policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x276428f1 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2767453a pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x276ad56e elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27826912 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x27a372f0 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x27b3cb8c strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x27b7936e cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x27c61ad4 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f88a10 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280f4354 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28131cfd wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x2821775b device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283dd155 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2840b0a2 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x2847311f intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0x2861a089 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2871cd4b spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2886343e i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x2888fc65 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x288b4513 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28ca028c crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x28cf766b led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x28e0947e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x28e61d8d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28eb2858 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x28eb6cc1 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x28eeb2f9 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x28f6947b usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x28fd7994 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x28ff8018 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x290f3151 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29246719 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x29282eca regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x292fa0a7 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2940fbdd device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29410297 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x29459b4a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2946dd4f fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x2954dae4 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x29587a08 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x29636dc3 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x29675cfc uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x29a17cca __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x29ae1574 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x29b80c4e strp_init +EXPORT_SYMBOL_GPL vmlinux 0x29c2b4fd led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x29e33d21 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x29e7440f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f5753f ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x29f83323 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a3656b9 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x2a36bc1e led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a3d394e pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x2a41b913 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x2a449aff scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x2a583c54 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8aae1f regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2a949a2b replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x2aa27d0a __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2aa727a2 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab62c69 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2ac97104 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ad1d529 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x2ae16b39 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x2ae7b630 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x2ae909c5 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x2ae90b45 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x2aebfbea pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2afab36c pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b2a8e3d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b3e7181 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b54c2cd netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7eb93f led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource +EXPORT_SYMBOL_GPL vmlinux 0x2b833de0 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x2b875fdc skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x2b882fdc vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba9712e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x2baf0269 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x2bb67134 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2bbe9d33 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x2bd07973 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2bd25ae2 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2bd8756b pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x2bf705da devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x2bfa800d devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2bfce072 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x2bff1eda anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x2c0d0da7 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x2c1c434e crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2a6b8f spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c359d4e dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2c4728a7 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x2c4ace3c __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x2c4da387 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c62d74b xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7c79ce srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c818cf3 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x2c8671fa device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c9372dd pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2c9d302c led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2cb14e6d sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x2cc3381f user_update +EXPORT_SYMBOL_GPL vmlinux 0x2cd60573 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x2cd8a9c5 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x2cdbc024 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x2cdfd8b0 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ced5fa8 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2cef1a2b spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x2ceff091 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d322394 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d43c13b fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d517d00 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2d5c9e81 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6bdaed devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x2d73e50a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x2d778af3 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x2d7b9ef2 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d9a7744 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2db90d85 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x2dba0336 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x2dc3a62b __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a487 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x2dc750a3 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2de1002a dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2debd512 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x2deef892 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2df47aef nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e030910 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0e5b7f nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e10c498 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2e1b816a acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2998c4 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x2e2a30cb cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e2a8659 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e417622 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e6e0fe9 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x2e6e681a vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x2e6f99c6 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e7c1b48 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x2e89166f kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x2eaf25f0 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2edbe07c devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2ede69a8 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x2ee02243 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ee83e71 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x2ef04666 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x2f09ad98 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f11ae78 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2f151905 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2f22e3b1 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2f2b2ecb iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f343fec regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x2f44875d skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4ae159 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2f534255 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f67c654 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x2f6ab297 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2f74f3a5 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa00dd7 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x2faa6f2f inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd3d549 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x2fd5c85d phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x2fdd91c2 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2fdea65d component_add +EXPORT_SYMBOL_GPL vmlinux 0x2fe919e8 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x2fea7e8c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x300344b6 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x3021fddb __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x30224ac3 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x302f6db4 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x303b4428 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x3045a12d badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x305efb1e crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30642576 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x30653bc9 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30681cee unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x30753f19 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x3078ddf4 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x30821af2 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x309d2703 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x30aa905a crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x30b598a0 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x30c0d4b8 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x30c73e9b __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30dea3b1 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x30dfb849 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30ef3621 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x30fab2aa spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3107c609 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31289c64 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x312cd654 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x312d4b16 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x313cadec rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x315bd696 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x316e4f50 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x3173bc89 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x317ba982 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3191bf59 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3194e8ac isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x31a7d670 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b0fa0c devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x31c34738 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c7adf5 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x31ca300c dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x31cd16e0 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x31d4e6a8 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e11a0d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x31ed3649 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3202c0d5 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3203784e inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x32047654 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x320d0cdc spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3212c84f switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322edab2 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3232ed32 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x323d1406 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x3249e3ef extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bc7eac __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cf9da3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x32d46bd6 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x32d5b499 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x32db4b78 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x32df4a49 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x32f62ee7 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3301b0f5 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x3304ed01 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x33383e88 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x3343c782 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x33489805 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x33492154 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3361b18d kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x337505c3 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x3388729c __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x338bac3e devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x33c2f3ab regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x33decb55 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x33ed2f39 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x341ad4de xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x342530dd gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34364698 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x343953c4 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344db3e9 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x347941ab blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x347c3a0e cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x348196f5 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3483da69 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x3484fd48 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x34908cbd pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x3493aa07 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x34a06160 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x34aa0939 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x34b9e55d nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x34cc1b45 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f0991a dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x34f1509c iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x34f9026e fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3521352b regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3534c7cd thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x3535dfcb acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x354ff95e vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x3554e79a gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x357031db icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x357f746a bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x357ffe50 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x35849cb4 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x358680d2 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3590dc7d usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x35a19cdc cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x35aab7eb blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d9044f vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x35e12ef8 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x35edb568 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35fb32cc regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x35fcf7e1 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3604e0d4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3608991a xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x36295e98 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3654c842 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x365a51f9 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x3661dcb7 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3668a64c __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x3670e9ff xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36825aaf rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x3692e093 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36e7a52a __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x36f2954d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x36f32274 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x36f3c700 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x36f3d76b dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x36f605a2 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x37048b11 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x370e33a8 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x37116ca4 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3720705c crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x37318835 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x373cee71 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x377374a4 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x3789cc39 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x378ab983 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37a1fa67 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x37bd5b6b max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c3f2e7 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x37c50bf2 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x37ccc61e acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x37cd65d5 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x37d78f3c pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x37eb18a7 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x37fdecf0 lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3815c6fe pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3835ac62 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3841d702 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x384f2d22 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x38501b24 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x385564ca usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x3878011f bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x388627f4 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x388808c2 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389d2613 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x38a436cf exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38bcfc0c crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x38bd631b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c96755 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38d324db srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38e03584 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e9b514 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x38ea6f19 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x38f62b12 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x39001b11 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x39153e6c led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x3921597b clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x3930b848 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x39374b0f fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3944a2a4 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x39800ac2 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x398acb1d tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39ca3236 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x39cc7b0c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39dedc17 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x39e69d41 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x39fa9cc1 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x3a04b870 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3a11b4d0 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x3a1a5f84 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3a1d5432 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a20a49f sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a445f48 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8a27f1 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a8b46d5 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aae258f gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x3ab1a8be shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x3ac0a3c5 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad83101 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3ae48756 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x3aeafa82 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3b147f8a locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x3b22baf2 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x3b258e10 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x3b280d92 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x3b2e65e7 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x3b47ad9a serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3b4bd06b free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5d77bf iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x3b71628e unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x3b745fd2 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8e3837 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9995ef fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bd5f41d dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11812c pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x3c122ce6 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1ea80e powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3c1f2e1e shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3c49215f clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x3c57c8e8 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x3c5ca637 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c70a5dc crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3c73b7a1 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x3c775d12 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x3c7af907 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3c7b7255 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x3c7c3e87 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x3cb7799d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3cc4de4a watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3cc8ca61 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3d35943b percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d7e96cf devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dab265d xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3dd05598 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x3de54030 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dedef74 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3df9763c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3dfa0d06 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3dffbb01 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3e01aaee da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e0e0a10 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3e318727 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x3e583fab ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e791001 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3e79262f perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x3e7cf439 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3e7ea9bf adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ea24ded devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea79adb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3edb3a7c fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3ee751b0 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efbf65a devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f04d19f thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3f0845f9 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x3f0a7729 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x3f197aab rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4f36f9 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x3f5a27f0 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3f5d2c11 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x3f5e19d2 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f762c51 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f7e77ad extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fa1d401 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fd9ee93 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4017ff50 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403eddf0 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x40551f0a kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x405e591a bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406d6fe1 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40772310 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x407a7281 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4093a259 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40bbba1c efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x40bce71e __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x40c4bf11 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x40cc2f66 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40d595c4 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x40d94028 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f4e981 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x410ab030 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x410fa672 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x4114023c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413ff407 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x414b7173 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x41564d42 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x416bf34b irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x41734f43 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x417d65b5 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4181e52f phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a3937d pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x41a79003 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41bf7c07 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x41c45730 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x41c4d192 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x41c7c790 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x41d38bcc __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x41e2a224 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f40015 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x41fd96d6 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x41fdbbeb crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4224f0dd pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x42325147 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x42331913 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4233ccbf tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x4245a74c crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x424c5ef4 user_read +EXPORT_SYMBOL_GPL vmlinux 0x42536992 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x4268d7a8 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x427ffcbf regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42906bf2 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x42984da8 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x42a94fe4 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x42d6632a tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x42dabdc1 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x42de5b6b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e57990 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43074f2f uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x434dea5a get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x43520b35 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x435527d7 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4386f17a xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4397f5b6 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43bf7f2c blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x43c8d261 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x43f3b8ea pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43f94cde gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440722ca regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x44288ebb pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x442c54c6 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x443604c4 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x44470807 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x444a6a15 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x4472f9c7 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x447e2dcd __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4484f1b9 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x449b8d1c regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x44a3658d lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2faec pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44eb57f4 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x44ef807e usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x44f364c9 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4512cc19 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x451d2aa5 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4530834c blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x454fb3ca user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4578ca3b css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45b00735 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x45b0de98 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x45c9cdd2 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d7f70e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x45e4087a dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x45f10ba4 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x45f45333 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x45fa2ce9 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460497a8 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x460bbce3 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x4645930d devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x464d8396 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x4658a377 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x466f0f2a dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x4673f37e vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x467f23c8 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468a09f9 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x468bf240 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46abcebf devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x46be2903 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x46c49a35 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46f3daf8 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47064b5a int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x470b98c4 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x47180ecc badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47244fc6 device_del +EXPORT_SYMBOL_GPL vmlinux 0x474a1c82 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x4758c126 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x475c6bc2 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x475fe808 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4774de29 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x479a1584 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a8f3b1 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x47a952aa input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ab44de ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x47c73c40 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d5a92c md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x47d79265 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x47d7d31f filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x47dbe2a5 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e96519 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48049445 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x480b5feb bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x481c02f8 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x481dd965 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48208c96 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482beb28 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4831a53e devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4848ea55 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x484e8fa6 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x485de398 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x48915c55 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x4892a1d2 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a54e58 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x48ac62ed pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x48ad2ffa pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x48b40f83 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x48c0066c bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x48c4581a mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x48c81100 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x48d3ec28 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x48ec9035 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48fb2f17 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x48fe009c blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x4900b3ae tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x490d7950 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4928a8c5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x49573dc1 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x495c02b1 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4962b8fc usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x497003a7 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x497309ce device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4983cbb7 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x498a19d0 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x49b7d667 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x49bb8b3d sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d1738a acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49e2f5e7 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49e9726c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x49ef8cb6 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x49f37c68 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x4a0ed298 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a16dfb2 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1f797a device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a27e47b nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x4a2adc40 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x4a2b8acd acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a333b88 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x4a3d773b usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4a3fda9b wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a614d3f edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4aaa45b6 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x4aaa8997 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4aad32d1 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4aaf3a4f sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x4ab1561f thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x4add4f8f acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ae71cca lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4ae81ba5 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x4aeba44f bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4aefe009 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4b0cb614 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x4b283cbc fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4b39859b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b3afb34 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x4b421864 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b4d9e0a usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b4efe2e acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b6b35c2 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7dd6e8 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b8b5382 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x4b8f619a dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b915b08 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b9595ac tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x4b972ad6 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4baa0189 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd022b8 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x4bd3c613 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4be13dd2 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x4bec6a05 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x4bf30be9 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4bf5d58c thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x4bfe94ad __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4c0d012e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4c0f3bf7 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x4c175af5 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c3b3713 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x4c46c553 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c49fd4d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c54b020 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4c71c79a synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x4c75a708 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c810ff2 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x4c83b841 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8ae5e2 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4c8c920d sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4c91d387 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4caea381 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cc274ab sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x4cdc2641 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x4cdd33cc device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x4cdeee45 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x4ce2a695 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4cf1f1a0 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d059db8 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d1af4eb netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d32846b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x4d3a4c11 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4d4230ff dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x4d466dca phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5c203d devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x4d630cdf cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x4d698d63 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d706937 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d72ab37 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4d7847c1 device_create +EXPORT_SYMBOL_GPL vmlinux 0x4d7c17f6 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x4d863a0d pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d9cc3cf generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4dac4b3a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc2f60c __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x4dc55772 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df14213 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4df7ee2a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4df91fbf alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1e8ed0 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4e3483e4 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x4e3d3c06 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e5fc5e1 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4e759b34 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4e7cbf1d fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x4e8776a8 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x4e87982e dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb1a8b0 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4ebcce94 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x4ec623f9 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x4eca905b edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ee26ca3 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x4ef1b2b0 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x4ef5ba55 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0b74a5 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2b21f1 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f3145eb __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x4f47e13e sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f5bca30 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7126d4 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f764f90 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x4f7685fa dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f85bb45 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x4f8cbf65 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4f949d43 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x4f9c4cb6 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x4fa7c131 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4fab88df dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fee63bd iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4fefa8db sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x50074a0e blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x500c3862 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x501e0fe6 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5096f35a tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a1dbd1 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x50ad6c81 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b23771 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x50b84625 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x50bf034b iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e29cbc wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ea6bae virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x50fab07c dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51144eca fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x512299e8 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5127a374 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51400941 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x5147a640 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x51629ab7 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x516733c9 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x5170f5f3 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x5172548e blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x517615bd skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x517b3400 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a4feda msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x51b4a3a3 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x51c51f2c irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51dc39ae virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x51e4b422 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5202497a irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x5213081c dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52289626 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x523b958a irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52656f4d driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x528141b0 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x528f774f unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x5296d03e pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x52a11809 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x52b0dd88 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x52b0edf4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cd1813 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x52cd6957 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x52d25059 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52ddc796 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x52f275ac genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5302ba35 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x531ac7e5 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x53305492 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x533480a4 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x53569fdc pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5361049c extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536859f7 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x537fe7fa regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x5398e219 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53bc5681 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c19fa6 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53c83c25 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x53cd7886 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x53d42e53 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x53d6a6ee of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e6f79f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5407ec43 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x541932f2 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541d2c40 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x543d175c devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x544acc25 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x545ed618 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x5460efd1 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x547d4975 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x547d63b2 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a2bd88 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x54ba215c acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x54c1b10e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x54dd0771 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x54de50af fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x54ec9071 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x5500f610 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x550ac8ce regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551869bb clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x552bccf8 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x552cab38 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b43c1 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55484557 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x554a1c35 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x55586587 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x555ab93e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x555b36d9 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x555f53d2 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558457d0 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x558b26aa scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x5592ddba ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x55a60071 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x55ac31d6 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x55b5df03 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x55bf8779 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x55c20e3f devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c93737 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x55d8e659 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55ef472a virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56117d5e rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56201cd9 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562edfba ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x569e23e7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x56a8b924 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x56b3dbb2 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x56b719ea vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x56c50d71 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x56da87a6 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x56e3d13b fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x56f053f9 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x56fb7953 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5712632c mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x5718a8da regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x571c7672 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x57377046 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573c1ce4 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x574801dd usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x57529fef sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x5764ceaf sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x576ba4b8 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x5786175d acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x5787a272 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x578a7a32 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x578f7943 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b04bf9 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x57b98a48 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x57bcb322 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x57ca55af devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x57cb7115 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x57cd7419 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x57d2df2f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x5801d933 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x58020f75 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x58161bb1 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x58163d55 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x5822c26e irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583a9406 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x583cff1f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x584078ff pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x584141c1 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5842d028 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x5844f0a5 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5856aa20 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x585a813a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x5861f69c dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58879f71 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5890814d tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x58994e1c da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x589b6891 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x58a01fbc fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x58afaeaf sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x58c193aa tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x58ca7ec9 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e80acb key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x58fcd4c7 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x58fdccce devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x59170d5a ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x59177333 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x5939f165 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5950d538 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x597d6dbd sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x59824476 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x5982c725 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5988c97d xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x598b4849 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x599e1b7b xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x59a11e9f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b98706 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c4ead7 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59cae589 virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0x59e31f5f iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x59e8e563 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x59eb8105 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59faec24 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x5a06c415 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x5a07b755 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a07d648 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x5a162b9d devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2da38c devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x5a46165a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4e746c simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5a57b7fe da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a6a09b9 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7582c8 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x5a7b989e blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8b58b5 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x5a942edf vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x5a951abc regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aacce73 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac332fe dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x5ad27420 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x5ae91340 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b28b768 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x5b30a3bc ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b43fc7e reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x5b617410 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b7591e1 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5b804af0 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x5b8b7a89 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x5bb923e9 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc583ac iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be468dd dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5bea2a80 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x5bffa7fe devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5c06949e msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c19db0f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c1dc317 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c328543 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x5c4f4754 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x5c4fcd3c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c5180a1 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c7ec559 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x5c806c53 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x5c81d62a ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x5c90089c usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x5c9f1470 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ca09106 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ca36c48 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x5ca50f98 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5caefe6d intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5cbbd228 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x5cbc9d04 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5ce22281 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5ceea683 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x5cefc6ed page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x5cf4d49e dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x5d0fcd66 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2b5f03 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d5598c1 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x5d73a308 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5d7a3326 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x5d8416f4 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8639d1 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5ddd75f1 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5dedf319 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x5def5e44 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e303a6f sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x5e3b0c06 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x5e46a7fe platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x5e482c6f kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e68bb32 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x5e68d9a9 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5ebfd56d genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ec945af rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x5ecac50f devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x5ed4e265 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5edd3d2f rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5ee0c89a md_start +EXPORT_SYMBOL_GPL vmlinux 0x5ef30b01 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5ef3db65 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x5ef5b728 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x5f0b89eb alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f4ee712 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7fde31 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x5f96ecc5 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5fa589ab i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fbb4a2f pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5fbbb2d3 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x5fd3c8f0 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5fdec39c mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ffaab66 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x60053191 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600bdffc pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x601386c6 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6013e619 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x6014e037 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x60250eb0 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x603c3e8d cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60403d4f led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6058e563 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x605aa253 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x606ecb01 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6088fb14 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x6090d3cd gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60950dc5 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x609a0790 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b3802b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x60bfbcab eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x60c53400 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x60ce30d1 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x60e2df61 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60efe969 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x60f5f3ff ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x60f8535f __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x611019d6 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6129a1a3 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612dd920 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x6138c01c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x613e6e9b __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x6142d0e7 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x61554d20 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x615fc3f1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6171e19f blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x61812261 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x619edaa1 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x61a83ecb usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61ae7db8 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x61b75d26 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x61e78237 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x61f64625 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62056073 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x620b8215 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x620baed4 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x62155311 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6229119e sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623880b0 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x62414b88 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624d94a4 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x62509b87 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x628dc2e6 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x62af1960 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bb16f7 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x62bb9950 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x62dace08 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x62dc0d3f isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x632655ef mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x63448023 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x638232ca __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639f0153 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x63abd46d devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c3a389 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x63d1e7c2 perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0x63ea7640 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f94c37 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x64377823 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x644bb94d fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x64584a64 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x64637b4a balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x64769425 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6477ed75 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x647fdc0a pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x6487491f security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x648b9787 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64962b6d ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64c2e863 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ee0c45 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x64f29223 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f598c0 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6522fe28 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x6525fad2 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65449881 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x65570beb sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x655cfc9b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x657d99dc crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x658c7e1c vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x65b2416e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x65c3e521 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x65cb2ffe dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cf5a2f fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x65e76c13 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x65f39aae gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x65f59fe7 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x65f7404c sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x65fb2199 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x660aab0c usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x66144f6f fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6625b2b7 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x66284005 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66586bd8 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x665fccb2 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6687fa8c blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x668de361 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x6694a3fa unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x66acfae9 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bc526f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x66c0578e __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e08734 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x66efc020 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x66f15da4 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x66fc2adc clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x67239419 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x672767f6 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673c975c pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x67453cac blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x674c31cb nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x6779d012 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x678da94a xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67ab27a8 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x67c98520 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67e0b1a9 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x67e8733b blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x67e94e35 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x67fb4da6 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x682facd1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68352df9 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x685dd128 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x68676826 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x6874ecc9 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a31542 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x68a608ce trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x68b818f8 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x68def03f cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x68e5292e dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x69065507 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x69066cc6 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69117711 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x6923af7c dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x69328173 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x6957b0cc gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696aec0e __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x697a24ec od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697f572c pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x6983079b crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x698902c1 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x6999b219 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x69c7f154 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69f15d5b __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x69f63494 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0a7f59 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x6a0bf98c fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x6a0c162e generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a29af1e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a4325e0 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a5f5cad __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6a649c00 node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x6a6761d5 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6a694a38 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x6a69ef9f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a6d9ce7 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x6a6df9ba __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x6a74e1cd gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b3de9 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab07d1a __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ab3df2f genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x6acdda79 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x6ad5515a spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b039575 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b185dc7 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b5560a5 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x6b6515b5 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b82aed1 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6b850e12 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b8959d8 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x6b8b9113 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x6b8f2611 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6ba17b85 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba95cee __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdbb5cb of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be9df3e pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6bf6df84 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x6c025f36 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x6c0e09ea scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6c19c8a2 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6c1fafdb crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c261b9b clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x6c372cff __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x6c3759c3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3c4979 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c3ece51 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c471f5c generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c8d3531 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca977eb __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x6cb64605 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x6cbb592d scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x6cc5bb0a register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6cdcd423 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x6cf77db1 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x6cf869e5 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0b4655 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6d11024d scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x6d1f2e94 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6d28e28d vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x6d2d4119 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x6d2e2aed device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3e4ceb acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x6d5aa9c0 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x6d60b330 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x6d616a7d rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d77d092 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8d0f21 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x6d98d93b __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x6d9d3bac dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x6da13945 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x6da4152f crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6daa995a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6db6f822 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x6db7b5f2 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6ddfbc78 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x6dfaa5f8 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e0a123c xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6e239a8f gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x6e2b69fd mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x6e2c688f uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6e314a1e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e44f287 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e62d138 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x6e6ba387 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x6e6ca7b1 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e73ba14 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x6e75a9d2 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x6e78c5f4 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9649e9 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x6ea45bf6 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x6eb2f2e7 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ede4ba0 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eee5a33 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efa6a84 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f0674d9 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1742f5 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6f297d2b ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x6f2b9b81 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f3c6ffd devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f55bddd tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6f563069 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x6f615aa6 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x6f6970fb devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x6f76c91e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8b45d1 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f98572a anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa03aa4 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6fa171f9 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd0d628 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6fdd76fe relay_open +EXPORT_SYMBOL_GPL vmlinux 0x6fe7dc51 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x6fff39b0 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x702583f0 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x702ee948 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x70306ec9 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7047d3d5 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706c90f0 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7083907f devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7094a463 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x709a4596 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x709a94dd synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x709dabce blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x70a4b5e5 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x70aa643e dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x70ad9940 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x70b3204d __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c3794d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x70c40b56 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ce6078 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712bb878 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7139f61e pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x713ffde1 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x7154b243 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7173bf5e dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x718752c0 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b0ec86 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b44116 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x71b9885f addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c33118 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x71e7e36d iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x71fa4b06 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x72008fe8 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7246f278 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726d9756 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279e879 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x727e12d2 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72892fd6 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x729d2639 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x72a034ae tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x72b16676 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x72bc10d2 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x72c9a088 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x72cb7c3f gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d903c6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x72ed929a spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x72f63934 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x730867f4 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x7323ea82 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732a1530 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x732a6906 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x7331563a fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7333b9a8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7335a7ed devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x73481622 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x7352f1e2 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x735848db debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738487b3 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7387409c vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x7396cb70 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x73a01787 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a5b548 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x73a902ef debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x73b032ba rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c5bb71 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73cf8c2d trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x73e0958d __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x73f31e8c clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x73f5f448 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x741b3ff0 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x743237e4 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743ab715 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x743f8d91 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7445653e scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x74522ef9 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745cc0fe crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x748e1ad4 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x74949199 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x7498df4c virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x74a66063 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x74ab083a l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74af92fb key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bbff28 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74d2c764 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ec0742 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x74f0c0a2 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x74fd6f12 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522b245 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7524fa6e nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x7525fda3 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x752ffb10 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x753fc363 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x75470c1b gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x75519bfc debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x755742cb fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x75644dd0 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x757ae317 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x757b05eb regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7590130f device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x75946c74 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75b3a5d0 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x75ba967b __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x75c78da6 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cd25a3 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x75e336e5 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75eb2edd ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x75eed783 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x76054623 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x763def6f devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7640c965 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x76434499 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x764af81a sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7654b388 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7674ad26 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x767f19e3 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x767f5960 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7688a915 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a61112 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x76cbdc99 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76ee3d64 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7702102a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7715a2c1 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772ee4fd nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x77358a94 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7743719d tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7747cac4 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x77558768 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77670009 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7767b8a2 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x776a2dc5 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x776ce528 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x777eb31b acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x778de3ee lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779e71e7 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x77adfd16 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77cb20d2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x77cf2fb1 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x77d1075d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x7802305b fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x7820ced9 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78361eed usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x78492b26 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x784ed008 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78754e71 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7876331b alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789a9aa2 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a5d02d crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78d51e75 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78ec986a dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x78f3c59a tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x790514cd dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x79052d74 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x793c504c fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x793d1e6b da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7961ff62 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x796c31c9 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7972be6f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7980e116 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x7982fa79 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a834c5 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x79b9fd19 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79ccdca8 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79dd1c5a __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f68d74 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a075d4a vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x7a2941dc pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x7a29b66c dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7a310064 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a4b65ee udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x7a54f060 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a702d21 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a77516e i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a81bad5 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7a8a3194 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x7a902291 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9b846f uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x7a9d1c3f irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aaeec7d crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ada9b63 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7aed225b rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x7af91505 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1e5613 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b44f285 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b4ce20c posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b597a6c genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b633d6e call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b887f60 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b918586 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9922d7 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb9c2b2 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7bccf4b7 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x7bd11c16 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bd1b311 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x7bd9ce52 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7bdfc627 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x7bdfec7e ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x7bed8def vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7bf103ff iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x7c171c3b pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2fba22 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x7c315a0e dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x7c37d8e9 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c6099d7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7c620d03 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c71bf72 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x7c7abaa0 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca05a3f blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x7caa30ed bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdc0052 vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x7cde568a rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7ce9057b regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfa451b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d0072aa anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d02d996 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1aabc2 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d2be5ff pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d2cfdf1 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7d467f08 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d573972 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x7d57cdfc housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d755cdb debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x7d8a91b5 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7d96ae74 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x7da7dd15 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x7dade33c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7dd52fad __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7dd86b6f evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7de7e3e0 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x7df4aac1 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7e0fb68d __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x7e21f530 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7e2ac6e1 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e308fe8 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e855942 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eacdc5e anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ee00242 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eeff13f led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x7f1ab568 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x7f23174c xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x7f487233 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7f492830 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7f5907b8 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7f5dff17 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7485b2 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8b6c18 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7f9046d7 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb3dbe0 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fbe7f4e mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x7fd09c7d crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7ff0a152 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x80062801 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x800c4bb1 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x800fcd3f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x8014fad6 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x8019ebb7 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x80203cc4 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x80205a6f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x8025c3e7 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x80302e6b mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8054749a mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8059c97e regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80875cbf pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80bf2250 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cd1916 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x80ce07a1 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x80d0c337 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e95134 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x80efcce3 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x80f7ae74 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x80fb3f37 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8103a61b __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x810a8f96 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x810b8afc virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x8127e3eb wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x81546b23 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81620c36 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x8168c19a anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8170ca79 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x81759492 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x8175d468 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x817fe86a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81867fc1 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x818f1984 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8197ecf2 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x819e2d40 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x81a1aedc ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81ac456d acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x81ace80d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e12814 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x81ed80a7 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81fb38f4 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820c6f3f public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x820e76ef __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8249fa58 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x8257325c nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x827353a3 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828b7883 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82937950 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x82cb86cb __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x82d5a557 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ef50e4 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x830465bb fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8304cd81 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x83183a12 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x831d31f6 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x8321aa7d iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832af4c0 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b7042 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x833c27c9 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x833fc85c do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8349fb12 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8349fb18 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83713f04 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x837833bb ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8380662c pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x83951f13 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x839536a7 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x83986724 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x83a5c902 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x83babe21 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83bcc18b component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x83c18df1 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x83ccf61c fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83e10a2c wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84130dc4 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x84138af3 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x84203239 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x8425735b dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843423c3 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x8439dcc5 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844a401a dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x844fcd5d task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8452bd68 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x846e45bd find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x846fd6aa vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x84720a67 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x8474b793 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8476c48a perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x84978a24 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84d2946d shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x84d678ee power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f1673f driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x84fb0969 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x85259c74 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x852edfec blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x852ffcce subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855906cd clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x85651577 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858c6c4c iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x859ce3ce exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x85a2031e __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85db5025 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85ffa15a devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x861acdab tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862b5022 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862dc9d3 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x863cf709 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x864d7954 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x864e350e device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86613d43 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8688ae35 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8691fb68 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x86a811d5 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1a391 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b7614d cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x86bef8a8 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x86bfefda sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86eb537e device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86f3aba8 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86fee9a9 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x8709d48f pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871a17a9 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8732aa13 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x873935e1 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x87519551 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x8752d982 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x87573d9c auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x876cffad phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x876d20c1 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x8770967c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x87710a93 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x87be7a80 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x87c6412e dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87e590e0 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87e64c81 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x87f330be l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x87fb08af crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x881e91b7 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x88310b6c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x8848f6d5 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x884d1e43 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8860822c usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8860d281 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x886725db wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8888b5d0 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x888ab97f key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x8899e113 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x88a269f9 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88abe11c phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x88b2c00f akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88bac972 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x88bc0409 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x88decc60 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x88f9c369 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x88fce75b ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x890ed391 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893b1d92 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8949bc65 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x894a4a59 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x895240fa pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x895b7cf0 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x895d932d of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x89681cb6 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x896e6919 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x896f03c6 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x89741dce device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b861e9 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bef8e5 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x89dd450b platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x89e1cbf8 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89eb7bcc ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8a202438 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a25d5f2 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x8a33aed4 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a41fc28 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a523f57 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x8a57697c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a82f092 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a869f7f __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8a8a8245 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a8ad0a7 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8aa51234 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abe7562 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x8ac15f9b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ae9f7bc balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8af07d6b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x8af55c99 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8afac021 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x8b06f034 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x8b07d06f subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8b0a653b devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b247db2 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x8b34fcfb scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x8b3b250b thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b5785c6 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x8b707e72 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x8b78c4d9 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x8b7b3b31 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x8b810c7b dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8b87c9ec xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b8e495f gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8ba2a1a4 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x8bf32d20 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c237041 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c26ab92 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x8c28c86e fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c35a6ea usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x8c447d17 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c54396c acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x8c5e249b nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c625eaf nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8c6bf78a gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c6eb1a5 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x8c6ffa94 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8cb955 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8c9eac47 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x8ca127e2 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x8caec230 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x8cb71a2a fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x8cc62d5d devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8ce010c7 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x8cedd8fa irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x8d0f50ea regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d347ecf fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x8d4c1ccd vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x8d6ccc66 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d987adf dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x8da38c0e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db099f2 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x8db13d5a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8dbbc160 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8ded31eb __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x8e161f16 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x8e1676d5 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x8e167cae dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8e219c2c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x8e249fd4 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e3164a8 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x8e33ee2f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8e38ccc0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e61f4b9 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e82e6e2 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97b4ba device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8e9c5eea pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8ea2131c pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x8eab756b bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb97808 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8ed0dafd devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x8ed3c054 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x8ed9de79 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x8edb3993 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ee49bc1 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0ed96f xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8f12b292 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8f259fa3 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x8f27156c ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f3127ec gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8f342352 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8f3ef401 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8f4b105e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8f58466e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7229d4 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x8f745244 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x8f7460c7 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f75caa8 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f96585a wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8f9e26d3 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc73678 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x900fc989 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x90128c4d pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x90159645 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x90183bfb dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x90210ccc __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x9027d775 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x902abc35 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x90312f83 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904bdb31 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x9063f355 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x90705fd4 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x90881625 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x909aa24b fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x90a37a33 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90bed59f led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90ca5af6 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x90d0a58d power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x90d2659f nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x90d53809 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90e0a17b virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x90e80f77 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x90ef0267 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x90f1d2c8 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x9116599f crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x91327c54 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x91772f89 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9188aa26 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a9a6e9 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x91aa2794 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x91ac6645 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b82173 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91ba4e6a vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x91c0cda3 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x91c3966c pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x91c58163 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91db5ab7 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x91dfe9ba tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x920548cb rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x921c3449 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x9226f52d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x922e4eaf serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x92315df4 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x923fa24d skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92435538 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x924af1e6 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925c0d3f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x926fcff4 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x92747749 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x92789b84 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x927b4712 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x92abf09b ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c4359f device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x92c50422 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x92c6bf5b nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x92d05589 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d8302c hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dd2ea1 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f77b74 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x932145bf get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x932ed40a devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93455209 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9345d0d2 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9345d1e6 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x934b6e0a init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x93584288 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x936428aa sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x936efdc3 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x938133a2 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x938592d3 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x93906bf2 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x9399832b syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x939a13a1 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x939e82fe memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x939ef495 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x93be1a9a crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cdd7ee pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x93d0220a __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e5db42 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x93f9c804 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x941562da sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x941f5361 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9428ad2f unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x942db346 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943132cc gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9436f6aa put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94406942 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x946160df unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9475f4e6 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x9494f841 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949ba104 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a69aa3 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94aa2406 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x94af41c5 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x94b8e7ce netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x94c6b4ee skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x94ca607d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x94da7d14 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x94e6f9c9 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95184b9b gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952fb817 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95564f41 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955bb989 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x95688a89 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956fd0c4 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be9272 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x95cb9a47 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x95ce3844 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x95ce7032 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x95d1d194 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x95d2f0dd dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x95d660ae usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x96007c10 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x96175e2c ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x961bfe2f dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x964cc007 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x964eba1e vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966ef32b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x96738fdb crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x96743dd0 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x967535d7 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x9678e889 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x967f8b1c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x968df6a4 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96ae470c devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x96b30c80 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x96c18b3a hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x96cc2452 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x96ce1968 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x96cf1356 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x96d8029e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x96d861c1 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96db2d36 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x96deea8c devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x96e59141 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x970f90b4 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97151510 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9716962b regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x9740c19d gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97642475 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x9773897e iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x97832c3e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9791d3b3 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x979fe0f1 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x97c2710c account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x97cf88b9 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e14993 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x97e38828 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x97ee1f3b power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x97f41604 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x9812fc8a mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x98187ead netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x981add10 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x981bf685 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x982b4d39 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98341c96 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x9842796f xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9847cc50 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989644fa pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x98967078 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x98a922ad virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b391f4 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x98c085df fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x98c0a8ed dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x98e6c7f2 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x990c41df hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x990f77b4 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x99146e13 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x9934a0f0 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x993ea6eb pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x9954c47c hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9966e14e serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x997822f9 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x9986c9d6 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998feeec bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x9995e2d8 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x99a3a2fe usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x99b57d32 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x99c0e953 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x99c5530b sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x99cfd2dc vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x99dc6e1c fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99de8474 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x99eafa93 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x99efa881 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a44c0da ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x9a493749 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9a4b88ca regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a725e76 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x9a85e4ce ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9a860df8 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x9a96687b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9aa2bb62 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9aa3c2aa l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9aab75dd reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9abbd9c6 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x9abeb12a pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x9abfff20 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac59dd0 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x9ad13abd tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af4b1c5 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9b0866c4 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b11388d usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x9b17b4ce blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x9b1b7133 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x9b22464f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x9b2f2a26 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b3131b5 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9b3b9cca perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b43ab38 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x9b449f1a fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x9b4c8438 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x9b504cb3 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b696a1d crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8eb002 input_class +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9788b5 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba00cc3 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bcaa3be tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bdb3647 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be75bb1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bee64c6 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x9bf9b6ea xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x9c092cdb regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9c0aba5f regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x9c17cd57 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x9c32d5a1 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9c3be4ed tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9c469fa3 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9c554a57 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7f4cb6 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c85b486 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9c9ce115 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ca58ca3 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x9cb01ca4 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x9cbe12fa find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cccb85e iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cd8c641 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9cde2953 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf62240 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x9cfa892e regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9d02fdfa devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x9d07e72c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x9d0886eb __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0cf3e1 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d14887f xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9d176915 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x9d32570f tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x9d41f22e dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d79c4cd da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d8196bc usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9d81f43f platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x9d963646 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d98d9ca pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9d9b0698 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9da16c6a acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9da97fc6 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x9db89533 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x9dc92e8b max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x9def9dbe sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e0b524d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x9e1352dc pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x9e13829c iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x9e40b80c devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e49fc04 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x9e593456 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9e5f06e1 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x9e8d615e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x9ea1cac8 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x9ea4171a vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x9ebdff4f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x9ebea9a1 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x9ec95e5d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eccf0c0 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eda2e6c __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef4d0f4 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x9efaf1b7 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9f1cfe80 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x9f1f7031 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f345305 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f4c6e1b wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x9f5a6b9d usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9f6808c2 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f7667e7 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x9f97226b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x9f9b1e9b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x9fb5d4fe dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x9fb611aa xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe3adc4 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9fe56b04 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9feb9fe9 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xa00624b5 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa027191a unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0578344 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xa05f3e45 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08c4259 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access +EXPORT_SYMBOL_GPL vmlinux 0xa092755e __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xa09d30db fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa0a420fd devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa0b126a6 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xa0b4cbdb __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0b4d991 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0e1bede invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xa0e2bc99 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0e9711e icc_put +EXPORT_SYMBOL_GPL vmlinux 0xa103e715 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa1051d46 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1185f97 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa1246cae net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xa146a086 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa156e14f devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa17cd540 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xa17f7be1 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa18c7c9d espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xa19041c8 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xa19a6227 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa1a23ba2 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa1aaff85 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xa1c14c91 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xa1c9de3a pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f479dc __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa1ff2585 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xa1ffafc9 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xa201c795 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xa2060d37 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2175afd vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xa21ac07c rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa2331453 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa239f77b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xa24a0185 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa24c5405 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xa2543dfc seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xa2655154 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa28aebb4 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa2903fe4 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xa2924c9f serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa2adcfa1 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b91291 component_del +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e9a04f nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xa2f3b62f spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa307df69 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xa31f6dfb fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xa3302757 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa3353918 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa341c674 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xa3428a3f dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xa343cdfd mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xa35f09f8 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xa35f1364 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa3614970 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa369895b sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa36f7603 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3722c66 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa3774c6c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa37a9c9e pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa37d793f trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c9fdb __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa391b5a2 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xa393bfc9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b0b690 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3cd4e77 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xa3d30fb7 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xa3dd3dba device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f34a3e __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xa3fdf68b dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40fe7f5 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa415d68e md_run +EXPORT_SYMBOL_GPL vmlinux 0xa42bedeb bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xa446565d device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa454b565 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa46d95bf rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xa471ab6c __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4a6ce0d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa4a7b5fb rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b79e5d spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4ebf021 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xa50097c1 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa51837b7 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa5344536 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xa552378b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa571d29a devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa586ed31 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa587cfe5 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xa5a05631 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5b53794 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c1f425 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xa5c85c93 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xa5cbec16 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f7b0d9 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa621463d pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6218441 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa62584bc inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa63fa77e sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa658d77e vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xa67f4cc3 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xa6860c57 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xa68bdef9 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa68ec72e nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa69af12e kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa69fcc38 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a7aeca ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa6a9a55b platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c1cece pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xa6cda359 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f50057 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70c46e6 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa71bf449 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xa71c1918 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa74afd84 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa75f4d2a perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xa770b44d genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xa7735948 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa7872f22 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xa7919b52 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xa799fe92 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa7ac9023 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa7bbed0e pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa7bd26a1 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa7c0ea32 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xa7c8376c __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xa7cb9ba2 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7d3d8a9 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7d6f646 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xa7dcc137 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xa80e2d72 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa810fa15 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa828f7d5 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xa8318f9e ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xa8407bd2 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85de2f6 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa87f235f __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa88c5032 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa88fb8c9 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xa8a51e68 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xa8a53484 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xa8a99876 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa8aad4a7 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa8b2a52b crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xa8c3aa65 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xa8f10bde regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa91856ff devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa91fc116 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xa925acae xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94c0f1d iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xa952c68a __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xa959c4e0 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa96a90c6 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa96cd0ec devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa973d489 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa98d2bea param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9adde11 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xa9b820ed fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xa9bb3dac debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa9bc7404 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xa9c15fd0 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xa9c9d749 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa9d39f35 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e9c933 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xaa043b2f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xaa1d122c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa31a07a __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xaa35be04 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xaa588bb9 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7888da wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8dd5dd nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xaa972a2f screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xaa9be0a3 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab45a9e disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xaabd7425 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xaaca5f6f pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xaad6e86b wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaebe644 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xaaf41a2a fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab347030 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xab405128 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xab52bf55 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xab9f046a acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xabb70163 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda8767 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xabe9621a iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xabf62f8b fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xac16b477 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xac2009e2 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xac27c8bc dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xac2c04cb dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xac43b90f devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xac43e819 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xac508620 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xac671262 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xaca5bff3 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xaca85d7c sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xacae013e sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb8fc20 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0xacc603ae pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd81458 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xacef5e7b inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xacfbb503 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad1fd092 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xad277895 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xad2ab301 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6e0707 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xad79b5a6 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xad7be610 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xad8132fa clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xad816497 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xad88f4c6 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xada06e2a ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xada367bc led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb38e92 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xadb75240 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xadbd9e69 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xaddd9a1f dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xadf35c3e balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xadf9157f get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1708a6 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xae1af832 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xae1b7722 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xae284b71 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xae2d175d x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae692c07 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6a40a4 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xae74662b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7ff3e8 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xae819cfc phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xae84e2c6 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xae8758eb tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xae9a11a1 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaeb2de30 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xaecd85bd battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xaedf70f2 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaee36641 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xaef2f5fb bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xaf063c3d power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf228246 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0xaf266400 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4486f2 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xaf4f1a82 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xaf55cfd2 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf98f2b7 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xaf9d4afe usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xafa09897 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xafb261fc wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xafb41d45 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xafbaca69 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe0f14e pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xaff1b706 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xaff5d878 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xaffb83e7 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb00d71ce fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xb0140707 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb041660c usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb067ac84 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb086b5e6 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb0965c7c __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb0a1cded __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xb0a36cc7 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xb0aa7fda dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb0b6f058 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cd6677 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d0f9d2 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0de4ffb ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1025e86 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10e5e20 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xb10fb05f clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xb11c322a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xb11cc43b __SCT__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1232d4e usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xb12aae59 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb12cce6f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb131986d ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb132f39c blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xb158c1f2 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xb159a551 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb170f76f fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a1ab1c skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c2b913 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb1d8d678 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb1dc4961 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e5c327 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1ff06af pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xb2029ac0 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb21d9a8f __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2443be9 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xb24fc657 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb265b3f1 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xb268f94c mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb290dea3 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a396a4 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb2ba0367 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c34058 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xb2dc3676 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2df16d8 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f1da59 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3381920 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xb35645af get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xb3590a10 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xb35a51d7 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb35bb972 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xb3779b89 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xb3a8559f __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xb3ae82fb dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xb3b1f257 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xb3c055c5 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb3c96024 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xb3eabd42 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb3f32f4f devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb40347eb devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb4131024 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb413dc46 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xb416a333 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4176130 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xb41ff620 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb43a374e mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb443e670 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb446fabb bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb467d493 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb484d696 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb4895b44 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb496bf74 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xb497acb4 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb49f8117 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xb4aeec76 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c102a8 get_device +EXPORT_SYMBOL_GPL vmlinux 0xb4c994e1 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb4ccf726 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xb4d666a4 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb4e21cb8 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xb4e2a234 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50e3692 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb51af6be ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xb51c2b13 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52a3c92 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xb53c5ae1 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb55aa214 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb55ab779 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb565c4e1 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb566fdce get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xb575d4f6 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xb5949633 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xb5950c69 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb5a7e51b xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5fb8816 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xb6022434 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb61787cc dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xb61b6235 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62bdebb devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb62d245b xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xb63245e1 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63a9b5c __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb660cd84 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6644df3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xb66c40ec powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xb6701b9c tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67a5491 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb67f05b7 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xb6814a90 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb6a5efc8 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xb6b00f0d kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb6bbe3f0 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6c8e485 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb71c5d7b wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb722ee48 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73fa72e __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xb748563c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xb74c0775 device_register +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active +EXPORT_SYMBOL_GPL vmlinux 0xb7755216 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xb77f7bd4 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb79d008a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7aa6694 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d295a7 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7dd21dd blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fd295d blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb8048ac0 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xb809d9d5 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb80e1a5f cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xb810b46a __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb814467e sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8293145 mmput +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb86c850d devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xb870d629 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xb8803958 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89b4c18 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb89dc41a fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8af8a46 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b3ed93 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xb8c921da ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d47de1 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8d905d5 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb8e3bf7a auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb8e548f5 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb913cb0e device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb91d2b2e nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xb92bf590 events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xb93a5acc put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb93db9fe fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xb93e6ec4 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb93fbbed pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb949bd6f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xb94d7d00 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9568a75 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb95f8bab pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xb964742f vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9706d69 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xb9751ebc pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xb97a0a2a handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98a20d5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb98d7af9 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xb9929af4 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb9a39adf powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xb9b2bcc9 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xb9b4ce20 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c1bd94 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d96926 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9dbd290 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9dcff3b __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9e358fd bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xb9f54247 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba04e5a4 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0b085a nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2d1e00 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xba35c5dd usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xba44c73c skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xba4f183c __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xba5110f2 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xba5b7412 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xba6670d3 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xba6b2927 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xba6c3d1c ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xba81791e dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba9e4de0 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xbab5be39 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac10e87 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xbac1d3e8 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbacedd9c __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbad49fe1 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xbaeb305b gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xbaee4e08 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf07fca __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbafa5cd0 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xbafdb43a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xbb0751b1 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb0e68ac ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xbb10bcd9 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb31861b devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xbb3732c1 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbb3f4ab9 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xbb52a9e9 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb5d397e dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbb5d78ac devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xbb5dff8b tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xbb5e2b88 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6b48a9 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb74e4c4 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb95a1c4 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xbb9b84f4 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xbbac1cb8 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbb68e11 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbcd322 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xbbbe82ab lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xbbd4b0bd fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc0142c9 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xbc1b71c0 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbc1b831b pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xbc30dacd __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xbc38e9f1 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc3fa8ad __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6a7e93 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6d6348 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca23df2 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbcac5f85 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xbcb74a9f virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcb8a679 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xbcb962f8 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd343a5 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce682e3 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfa7bf2 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xbcffd4e5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xbd086d1a devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbd1c952c fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd443413 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xbd499d66 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xbd500af0 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8bb177 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbd9454fb pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbd9adafa unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbda7f500 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdba45a7 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xbdc1e6a8 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xbdc4192a hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbdc5ca6f __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xbdc64b97 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbddab160 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbde7568f badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xbdecbae5 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xbe06a3f4 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe0d5bc9 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xbe12820e __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xbe12c224 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe47fdea rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbe493f67 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0b51 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xbe62fe01 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe74c4a2 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xbe8365b8 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xbe866e99 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xbe925250 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xbe9899b2 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xbe98afb2 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9f4293 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbea1f86f usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb5d035 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbeb6dc3d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xbeb7029a spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbeca206a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xbed331fd dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xbee7f0a8 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xbeea8028 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf06b745 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf082f98 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xbf094d66 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf3fd2fd mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xbf7bde8f devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xbf81037c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xbf828d97 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xbf9b544a xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xbfa84fe7 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbfab2800 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc4f7e7 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbfd278bf __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff1a734 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbffc9906 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xc00127ce __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc030fe66 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xc0518816 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc0540f55 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0921bdf ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xc09ea7e1 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc0a37d2f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xc0a38cae debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0aceaac preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0afd693 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0b270e0 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xc0bbf7ea regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc0bd9e01 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xc0bf1cf8 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xc0d7779b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e3462b sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc0e976e9 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f9ab9f balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc0fee8a0 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc1045d6b PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11b76cc wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc12c6f7f devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xc1498f47 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc15c566e rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xc165e47a wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc1749bf0 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc178adb1 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xc17de69c ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc18e587b pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc195fd09 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc197c8f3 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xc1ab38f0 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xc1b13c4b rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc1b961d8 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc1c209f9 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc1c7586e usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xc1ce5862 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e21439 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xc1eb2b6f blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xc2016cbf bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc205bb88 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc21d17a0 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25c73f3 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xc261d732 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26e58c5 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc276a223 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29fef1f tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a361ad power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a4b782 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2acf669 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d49036 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2d66f60 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e82451 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc3044bc9 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic +EXPORT_SYMBOL_GPL vmlinux 0xc3387e7f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37dcb73 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xc37e44e6 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc382ebf0 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc3948891 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc39cc9d1 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xc3a7dffb dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc3b550ab pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xc3bbd8ab pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3c025ef adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d29a26 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xc3d3db17 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e9ab01 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc41190c1 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc4261e2c fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42bc8c7 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc470d387 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48f234a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc49a5d0d pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b2718c fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xc4c2643d pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc4c2f3d0 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4d7c2d7 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xc4dd753d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f22c2c watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc517da49 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc5398226 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc54414c0 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xc54bb51c __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xc55f5c5e io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc570abaa sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc571bd6e regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5760aaa acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57fd78a skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58bd8e5 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc58f0950 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc5997a16 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b2410a iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xc5b60e8e devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc5c9689c spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5d2a893 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc5d36d82 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xc5f04d99 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xc5f4011b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6250465 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xc640480d usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xc64320dd ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xc645ceeb vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc64e7629 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc681bec0 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc68b8fb7 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6951bfe regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a70879 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore +EXPORT_SYMBOL_GPL vmlinux 0xc6b78260 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc6d9dcc1 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e0f8cb ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc6e238da regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6f1b255 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6f82af3 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc703a418 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7091bd1 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xc709233c acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc70d66b5 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc7271a46 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xc731ea14 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc7349f7d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xc742e200 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc7457253 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7476371 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xc7478168 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc76654ae bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc77765df devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc77a0a01 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc7949756 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b72689 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7be8abc fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7d0ae81 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc820eb3a of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc82258c7 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc824fbf6 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc837e942 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc8490f38 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc849e350 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc84ccf62 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc84fd3f7 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xc8568ccc devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc867aa57 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc869e75e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc877dd00 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc89bd660 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc89f8152 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc8bdd5f6 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xc8c352f0 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xc8cbb5e9 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc8cbbfb6 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc8d330b6 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc90b9631 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc9120743 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9697113 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xc96db1b5 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xc96fddf2 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98ca43e __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc99fd3ac regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9b20ba5 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc9bfb4d0 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c5c5b5 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9edbedb linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xc9f3e530 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca01ffeb gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xca174105 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xca22272d dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xca291589 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xca303dac firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xca39c4d5 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xca3a2aa1 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca56d718 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xca65684e wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xca6cee63 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca87ee20 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xca986a33 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xca990ced ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa4a094 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe3f3b fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xcac29fb0 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xcac2ff63 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcae1da2f xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xcaed3e58 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb06e8bc spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xcb090828 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcb157e9b vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb267444 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2ca9ec pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcb369bc4 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xcb3b9e2d bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xcb432c3d fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb66549f sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xcb66a172 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xcb6c9949 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb810bac dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb8feb5a pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9bc5e4 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xcb9ec82f devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xcba959f3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbaf7dbd devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xcbb20f08 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbc7784a regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xcbca18dd phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf9e7d9 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbfc1831 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcc12777c iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xcc1c4031 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3cbf57 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xcc47f81c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9dabb9 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xccaa3766 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xccb50d02 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xccc0254e nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xcccc364c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccd9bd70 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xccde6d64 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0af8c7 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd14bad7 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd21f178 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2ccc15 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcd2f9759 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd402b24 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd4d519f param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xcd51a838 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd5b5bf5 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xcd610bd2 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcd6394bd pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xcd64b19b acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd71374b page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd889a22 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9c07d4 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb3bb84 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde942b0 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xcdf60b4c raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xcdff0a60 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0c6248 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xce138de6 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xce1c3374 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xce3c7dc9 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xce4b3829 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xce5230cf phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xce575bdc cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce81a300 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xce91656c sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xce9e8a92 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xceac2a5e led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xceaf6260 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xceb8c4ed ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xcecf45c1 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee2d411 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xceef789a efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf03a391 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf116e3e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xcf125d13 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf3189d1 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf4bae79 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xcf4f6f34 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf6603c1 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xcf68ba65 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcf71e73f power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xcf746183 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xcf7b4931 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xcf8d4681 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xcf8d5025 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xcf8f05aa synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xcf9ebc5b crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcf8dc6 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfe1dd89 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xcfe32ebf rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xcfe66b86 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xcff46ad3 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcff96eb6 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd0090d36 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0148f44 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd017ad68 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd01e85a5 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xd0289fae tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd028a5a3 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd03833de adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd03ec468 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04a85e1 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd04b753a spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xd051d489 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd05734e0 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xd0574913 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd05b229d cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0754ebc fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xd08bd670 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd08df278 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd09052ab xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd097c55e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09d9bbd encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xd0ad144a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cd3312 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d949f1 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0db2a8e vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0f5c556 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd0fa7268 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xd109874b fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xd1319313 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd1340b58 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd13fc1a3 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xd1421294 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14bad90 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd14f14af blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd14f8a89 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd150a195 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1615b6b iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xd16b5d31 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xd175b7c3 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd17b4f85 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd180d954 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xd1b9b0f2 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1dd1292 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd1ddb261 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1eef069 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd209cba0 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21cb140 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd232cdf5 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd25642da fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xd25b6ea4 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd25d9e74 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2792abc sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd288ad6e inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xd2a5375d crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b60153 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xd2d652df shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xd2d83108 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd2dae332 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2e33e1a fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xd2e8779d kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xd2f16159 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xd2fe7f45 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd301ae16 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd314b957 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31a432c mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xd31c059e serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd33373cb switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xd33ab1ad __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd33ab9d4 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd341f3b8 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd35971b6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd3637ee2 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd3639af4 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37ebfac pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd3855d34 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xd38bb3ce spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xd38c6a20 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd394ea19 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3c7c8d1 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xd3df3c58 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xd3e3e155 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3e64df2 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xd3ea9e8f led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3ef7cd1 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4246d18 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd440ca5d __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xd444edf0 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd473f3c6 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xd478b659 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd47ff8d0 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xd48e9841 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd4921a6f pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cadf45 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd4d72a78 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd4d7b1fa __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd50e4907 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd548f1d2 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd5598610 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5606df0 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd56c2e57 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd58ba462 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xd5979fd2 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a8b037 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd5ab6094 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xd5b2fd26 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xd5b41bd2 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5b8129b ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd5c4e16b dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xd5c5938b virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xd5cc3390 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd5ce5610 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd6076017 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xd622a187 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xd63dee78 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd6687eda sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xd66b0c53 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67a3b0e phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xd6852f40 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd688f6b7 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd6943780 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd6a607ad pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xd6ba2231 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xd6bd0071 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd6c2399d dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7286076 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72a4649 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd732535d usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd7378100 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73a2b27 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd7450509 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd74a3462 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xd7553b06 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd7572e1a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xd75a3868 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd7615f81 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd769c075 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7975def scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd7a71436 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7b9c2a7 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7ce0c5f icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d119cc devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7db023a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xd7dbf5b4 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xd7f94a38 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd7fbc441 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xd815322a do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xd8310d47 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xd839e970 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd83b0eae nf_route +EXPORT_SYMBOL_GPL vmlinux 0xd83c5f10 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xd8462c83 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8bee7cd _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd8c04643 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d30ef2 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8dfffdb edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd8e8ffc0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd8efb546 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd8f08a27 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90fe167 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91aff25 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92c57de crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd9312000 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd936d95d __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd947925b i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xd94a8efd fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd94b8896 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd983f661 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xd98b82f6 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xd9905e90 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd99496a2 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd9d742bb devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ee6fb2 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xd9eff5e3 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xd9f137a3 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xd9fa5f62 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9fb47f0 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xd9ff619c ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xda03949d generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda13677a __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda20193b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xda264ef9 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3a07fd dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xda466473 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xda6b3e0f regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda98a1bb pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa2e34f cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdab3df99 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac3a827 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xdac4b9a9 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xdae93af7 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xdaedac91 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xdaf13bd7 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafb5aa1 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdb035ec2 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xdb0c3d3e is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xdb1b6075 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xdb28502c crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xdb45f487 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xdb46d88c devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdb46eb3e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xdb5acb52 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xdb5fecd3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb86f80d sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8f2f36 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xdb9693ef perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdba51202 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xdbbb4397 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe6fb47 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfba0f5 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xdbfe0b07 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc08e442 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc3029a5 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xdc3c95d6 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc49da4a pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6f6f6b ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc871026 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdc8d51e4 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca9815f kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xdcfa3083 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xdd03d78b icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0833c0 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdd466479 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xdd484985 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0xdd4feb9a acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6469c1 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd8345e9 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xdd99858e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xdd9fb8da tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd9ff4e5 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xddab9503 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xddbdabcd device_move +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd029e9 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdde33f26 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xde07ab80 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xde092824 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde0b0d60 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xde11f2f7 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xde2f6801 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xde2ffae9 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xde49a27d to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xde5be494 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde722f80 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xde78309a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xde7c6010 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9fd7f2 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdea1796d bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xdea5e0fa gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xdea98be7 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xdeab63d3 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xdead2330 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xdeadb08d is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xdeb8d00d pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdeb8d573 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xdedeaf83 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdee436dc xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf028fe1 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf12c927 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf135145 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1ff7e1 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xdf2309b9 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf2421e2 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf280b15 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xdf2e680c blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xdf36d196 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xdf38ee03 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf45eb4f dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xdf65a57f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xdf6feeab blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf8322c4 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xdf879973 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xdfa032ab pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdfa55e2a devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xdfb70df1 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xdfb7d0fc tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xdfba38a3 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xdfc10976 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xdfc5e7d7 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfe4c10a rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xdff2a6ca badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xe000bd3e devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe004ff25 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe00893e2 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xe0100099 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe011ef9c sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0172b36 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03eadc2 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe05913e3 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0683afe nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xe07a98e6 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0933dc6 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bd2d4d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0bf8284 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cc21fd crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xe0cf2a58 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0d78f02 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xe0e08f28 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe1022f2a ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe104ceec rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10f347f xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe116a852 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe12b5f68 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe130637c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xe135505c cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe1453ede irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xe1591545 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xe15b1655 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xe16fb27b skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17b5d56 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xe193a732 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1956fcf ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xe19dd118 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe1a6eea5 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xe1a79d07 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1ae71e6 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe1b434b0 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1c8da2b __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe1df7315 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe1f36ac6 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xe1f69cbe pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xe1ff6bb2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xe20226af rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xe2043105 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xe21afbcb __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe21b3ff0 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe22073bc crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xe225b9e2 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe233d6f2 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xe244761f umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xe244a1e5 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xe2527743 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xe276984f dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe2813cb4 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xe286a2dc xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe2923abc transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xe2926837 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29c5cab clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe2a03f7d kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xe2a1a5d1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe2a47004 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe2a7881d ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe2a94a1a iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xe2af741f tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b72dba regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2be50e7 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xe2bf3f06 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe2c1c67a __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2cf0977 __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xe2d52951 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe2fdebf0 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe3396079 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xe3401ba8 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xe3402011 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xe343b41c virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xe34e642e regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe3617dad dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xe363fa9b hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe36b41bf irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xe36b47c0 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe36d1982 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xe3701582 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xe381ecfd acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe38cec7a __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xe397aab4 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b67803 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe3bc171a aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bdce99 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xe3bf0959 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xe3cb762e __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3eb1507 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xe3f2ba0f klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xe3f581d2 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xe3f644f4 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4223e26 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42b89e4 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4475553 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xe44c51b0 split_page +EXPORT_SYMBOL_GPL vmlinux 0xe450a16f irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe454765e gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xe45c6a5d fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe4684cd0 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xe4764871 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49b867e misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xe4a10cb4 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4ae4665 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4bde266 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xe4be6e5f dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4ea1573 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4f8def0 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xe50324df devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xe50e6ac1 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xe519d3f1 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe51dfebe acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe5216d88 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xe563a4b3 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe5706e91 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xe57f3ef1 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58ecd43 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xe5b6428a __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5e7e194 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe5ef8253 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe5f246be dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xe5ffbdcb spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe6206d4c cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe64f3e78 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe6510075 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe65f6c84 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xe663bd56 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xe67077fe component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xe6783960 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe68c681c ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xe68de7b2 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe68fe2d4 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6a76a80 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6b38957 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xe6c80ae1 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe6ca94c0 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xe6d7e8ba md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fb5a39 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe714b558 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7248c8e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe74a563b gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe74f09a2 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe7539116 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7564b2e tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xe763d2b8 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe766f828 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76f1674 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78767e1 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7ae08ab sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe7ca7ee7 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7df4b7b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xe7e43405 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xe7e7aaaf __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f94358 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xe805c1b7 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xe810e742 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe83a4ddd synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xe83d3f4a vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe840451f sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xe844e707 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85d9a67 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86b393e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xe86c236d fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xe86dbe33 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8abe6db acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c2fea1 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xe8c4798a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8c6643e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xe8c877fc agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe8d2e57e vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe8dcb894 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8e41861 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe8eff745 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xe8ff0725 xfeatures_mask_all +EXPORT_SYMBOL_GPL vmlinux 0xe900bc04 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe906ab9d dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xe909aac9 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe912bd1b virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xe9163166 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe92322a0 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9431963 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xe945a514 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe9516c4b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe980e595 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xe991b86b tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xe9990786 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xe9a8707e bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d060c6 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9f5629a vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0xe9f9dc4d usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0758eb __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xea12031c pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3e1c8c clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xea7301d4 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xea7e4edf iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xea86f6da pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xea9811f2 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xeaa0a860 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xeaa64ba2 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xeaaa7553 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeb07b53e devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xeb0ff5e5 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xeb105e8b acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xeb151c03 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xeb420b07 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xeb444b12 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xeb4fc53a blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xeb6659a1 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xeb6c32b6 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8d02db clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xeb92ddd5 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xebb4f79f irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xebc46f6d validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe7000e vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xebeb95cf of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xebf5bdd1 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xec022b6c kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xec03766b l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xec0ef3fc devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xec133559 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xec2434b1 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xec39d931 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xec49e35c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xec4b8487 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec5c5ff4 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xec70fd3c irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec8449f5 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xec8f3b92 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xec90823a dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xec952757 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xeca00392 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xeca042f0 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeca7c036 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xeca8b9a7 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xeca94d97 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xecae3d74 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc27432 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecd9efdb gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xece356ca acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xece5cc2b ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xecea2ac8 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xecff5d57 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xecff6f86 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xed19837c devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xed213a11 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xed260deb devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed422bb3 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xed49843e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xed5ec7f5 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xed6cd870 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xed6e80ce xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed8624c3 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xeda1f6fa led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xeda67de3 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xedb8a5b5 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xedc38bd5 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xedcc1285 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede22d62 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf056d2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee29ec3e perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xee3720d2 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee4a0b79 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee652ea8 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xee6aee11 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeea1fa0d fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xeeb7623a ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xeebc8e40 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xeebffa9a user_describe +EXPORT_SYMBOL_GPL vmlinux 0xeecc26f1 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeee81cc1 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xeefafb29 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xeefc81a7 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xef0da4e3 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xef1a649f bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2d9f6a debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4beb1c devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9e8262 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa31dce device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xefc02487 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xefd6ed96 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xefdeffb8 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xefeaa8bb gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff532f2 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf0112780 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xf02552ef sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf02bc60e __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xf02fc293 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf046bb72 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0582f9b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf06573c0 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf08ac351 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0924761 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0b42743 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xf0bae7a1 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0dd8c6b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0f0903d xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xf0ffbcdb fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xf10fb3e3 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf1277883 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf12cad7f hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf13f4b64 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf15e0463 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf167277e usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xf1796125 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xf17a7126 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf186a03f regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf186c63d vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf18edf8d cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xf1912711 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xf1919829 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xf19d49c1 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf1a1440d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1acb4eb gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf1b75ea8 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xf1b8ca20 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xf1c0b63f rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf1cad6c7 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1e0a5fc __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf1e5f948 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf2127dee blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf227d3aa xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xf23f5bbb dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xf24200da xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xf24b7cd4 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf2501bde nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xf250e2d4 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xf25f6ab1 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf27b579c led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf293a553 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2975be8 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xf2994527 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xf2b30cc3 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b66023 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xf2b84069 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xf2c40450 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xf2eb22c4 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2f26e02 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31d131d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xf327e784 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xf32a5883 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf35821e4 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xf36ba7e3 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf370f1c5 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf371a22c ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xf373af3d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38fc445 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf3af84df sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3bf4381 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xf3c158f4 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf3ca5fc1 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3ca7916 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xf3e56d76 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xf3fa0705 device_add +EXPORT_SYMBOL_GPL vmlinux 0xf40bc8f3 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xf421f787 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xf42e75d9 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xf437a1ec tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xf4409b76 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46fae54 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf481ef45 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf4915d34 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xf4a5ac32 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf4aebdbd devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4baff90 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4dcd280 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf518626b devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf51c119b dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf548c2ee crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf549b638 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf577081d iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xf58017e9 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a82959 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf5b4b14b spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xf5c7d6bb pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf5cc7c0a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xf5de2567 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xf5ed3800 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f8c1c1 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xf61e32de __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate +EXPORT_SYMBOL_GPL vmlinux 0xf6282226 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf62ab8dd pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf63061b9 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xf631c787 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf631d61b irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xf634623a __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xf638b8bf scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf65001ec regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6650bf5 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf6803da2 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xf68f6720 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6bc1de6 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cc46ff tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xf6ce11b1 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xf6db58b1 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ed57cc dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf6f87f60 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf7005639 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xf70488f2 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xf70b6e71 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xf71188fc ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf711c3a5 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xf71af55a blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf736bffd serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xf7425294 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf7521d3a pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xf7550bc2 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xf75d45bd usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf75ded71 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xf75efa29 put_device +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf770ec8d auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7885506 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xf7a6c930 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xf7a6e60a dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b5a8ee ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bb399d of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c47235 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf7d5c97b devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e68776 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xf804bad2 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf805c783 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83fa220 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf847d209 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf853123f platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xf86a58da usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf8892183 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf88b67c1 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xf8a3dfc3 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xf8a9e875 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8b1403b crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf8d3d523 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xf8db1351 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xf8dd9cdc led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xf8e3745e dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf91083ce serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xf91e09a1 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf921b970 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf92e1091 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xf92e90f7 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xf931e507 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xf9393c15 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf969582f regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf9785d6e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf9954590 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a4b2ce phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf9af56ea proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b4b2f7 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xf9d62f07 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0xf9ee437c sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xf9f1fee6 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9fa8f71 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf9fb3b62 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xfa099e5e fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa33d9ca raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xfa344427 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa3fb495 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfa3fb514 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xfa4fdc69 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xfa52a05e pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xfa639135 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa692687 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xfa782a39 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xfa789f58 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xfa7aea33 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xfa8b4ab8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfa965e02 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xfa999c9d devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xfaac4642 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfacbae96 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xfacfe927 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadd94ed regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xfadfed5a exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xfaeada50 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xfaee1b52 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfaf65bfc ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xfaffc1e0 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xfb101c20 of_css +EXPORT_SYMBOL_GPL vmlinux 0xfb18b228 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb33952b nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xfb44f03d mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xfb457ffe dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xfb49dfb4 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb5b7afa dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xfb674905 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb9213c6 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb922d18 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xfb9c8c58 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfba228c3 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfbbafa1f sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcdafd0 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xfbdb607b blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbfc9c90 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc013b7b is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xfc01d043 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc028f36 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xfc02d856 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2e5dd8 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc30c333 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc406b74 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfc55d44b devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfc8bd986 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xfc9dd026 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfcd6853c bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfce75e5c __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xfcee16e2 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa7532 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0xfcff2511 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xfd0e7140 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xfd1eb42d efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd2dda24 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xfd3dbbe2 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xfd4373f3 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd901f0d dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc00714 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfdc21f32 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xfdc7746f md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xfdd3ebf4 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xfdd5dd51 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xfddbb0e4 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdf854ab ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe158866 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xfe1a79bc sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe29c33e gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe55e908 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xfe58b02a platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe6691fd kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xfe66e330 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe8db5d7 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9ca954 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xfea264d8 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xfeaa6a2b handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xfeabc27b udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xfebe9f34 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec5b43f __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfee313b3 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef7725c dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xff051d6a regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff50bad4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xff6029e1 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0xff69cc6b ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xff6a9c7b vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xff6ec2f6 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa22670 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xffa4e8ab dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xffa8f04a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc1e065 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xffd11b5b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xffd46f1c bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xffd8cbae fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xffe3018a vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xffec04f7 class_destroy +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IDXD EXPORT_SYMBOL_GPL 0x3a62b6c7 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x62bb89be idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x96ef768b __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xa6afa4b3 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xc18c836f dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xdb6d0713 idxd_user_drv drivers/dma/idxd/idxd +IIO_HID EXPORT_SYMBOL 0x05000ac2 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x062663d2 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x13eb40a2 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x26690acf hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4031afe9 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5712e3f5 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x67fecd8f hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9a6961e7 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa074b028 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xb0901ac2 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc6fcf4f1 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfd765cb8 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x09131f57 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2c8fe1c1 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x52dd78f1 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6be77630 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x7cd711a0 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x90df4d97 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0ed8964d mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x44051a51 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4abe1286 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5f367154 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x64afbbc4 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x858995b7 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x91f46568 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9f3f8219 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xae3b27d0 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb15d4271 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb6c52d7e mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc769a981 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf404370f mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf649cb53 mcb_release_bus drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3275c8d5 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3acaa8b4 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3f7484c4 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9d8a31fa nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdfd867fe nvme_find_get_ns drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x0a54a2e6 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2714d7cb pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3765b9f2 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x555dcd64 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5e443eb0 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8690d52b pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8af4485b pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x90b7d71d pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x996f41c8 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9a2eca54 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9d2e3af4 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xace1230b pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb172f837 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb51918b2 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc3ca8f91 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xda6c6d56 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe1bbd094 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe5169726 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf4993045 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x852d84e6 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x250bd6f7 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x6f53896b max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7437be84 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x828c1c43 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8dfb6066 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8e54c304 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdb52bcd4 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe29c4cac max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x5013416a sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xef68cc96 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xf7483df6 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x46896b48 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x6992fff6 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xba6a8a38 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x40569932 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x753a194c hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xda2e78ec hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x06490e8d atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3503e0b1 atom_irq_thread sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x469de4ca atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x538c00f8 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x5e2077ca atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x61d41d54 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x63bb9752 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9116fae4 atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe0407b84 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xeff570a1 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x21a4dad7 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x497f7e0b sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x55f4920a apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x57aa973a tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5a8e7ee2 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6f604628 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7e916089 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9ec2e6d3 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa25c68a6 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa706c529 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xaa9903ea sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xdf5de304 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfa7bfccd cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x041cdd2d intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5c99006d intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5e7c675c intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x772fcde1 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x12940116 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x3041d357 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x6ababab0 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x98094e8a sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x9885609c sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x73ed8ff1 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x94bf97c9 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc3faa6dd sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xdbefba9c sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x012680ce usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x044839bd usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x04ed708c usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x08b0ba2f usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x14c53413 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x17feb44b usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x22592a6e usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x60e02bc8 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6766485f usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6dec2da7 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6e2243fb usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7739cb21 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x797d8f8f fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b06f7fa usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f2eca6a usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7ffdf9be usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x94f422d5 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x96596c37 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa17f8e5f usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xba1c9338 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbf44c4c2 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc1ba15ee usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xea87e9a2 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf10054d0 usb_stor_post_reset drivers/usb/storage/usb-storage diff --git a/debian.master/abi/amd64/generic.compiler b/debian.master/abi/amd64/generic.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/amd64/generic.modules b/debian.master/abi/amd64/generic.modules new file mode 100644 index 00000000000000..239d01373f8e45 --- /dev/null +++ b/debian.master/abi/amd64/generic.modules @@ -0,0 +1,5998 @@ +104-quad-8 +3c509 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_exar +8250_lpss +8250_men_mcb +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +BusLogic +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +abituguru +abituguru3 +abp060mg +ac97_bus +acard-ahci +acecad +acenic +acer-wireless +acer-wmi +acerhdf +acp_audio_dma +acpi-als +acpi_configfs +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_tad +acpi_thermal_rel +acpiphp_ibm +acquirewdt +acrn +act8865-regulator +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv7511-v4l2 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +adv_swbutton +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aegis128-aesni +aes_ti +aesni-intel +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +aha1740 +ahci +ahci_platform +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak7375 +ak881x +ak8975 +al3010 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-cvp +altera-freeze-bridge +altera-msgdma +altera-pr-ip-core +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-pmc +amd-rng +amd-uncore +amd-xgbe +amd5536udc_pci +amd64_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amd_sfh +amdgpu +amdtee +amilo-rfkill +amlogic-gxl-crypto +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +analogix_dp +ansi_cprng +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple-mfi-fastcharge +apple_bl +appledisplay +applesmc +applespi +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3935 +as5011 +as73211 +asb100 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atlas_btns +atm +atmel +atmel-ecc +atmel-i2c +atmel-sha204a +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atomisp +atomisp-gc0310 +atomisp-gc2235 +atomisp-libmsrlisthelper +atomisp-lm3554 +atomisp-mt9m114 +atomisp-ov2680 +atomisp-ov2722 +atomisp-ov5693 +atomisp_gmin_platform +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axi-fan-control +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bareudp +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63xx_uart +bcm7xxx +bcm87xx +bcm_vk +bcma +bcma-hcd +bcmsysport +bd6107 +bd9571mwv +bd9571mwv-regulator +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b_generic +blake2s-x86_64 +blake2s_generic +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs +bonding +bpa-rs600 +bpa10x +bpck +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cavium_ptp +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccp +ccp-crypto +ccs +ccs-pll +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-pltfrm +cdns-usb-common +cdns3 +cdns3-pci-wrap +cdnsp-udc-pci +cec +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-x86_64 +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8505 +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +chromeos_tbmc +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cio-dac +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-lmk04832 +clk-max9485 +clk-palmas +clk-pwm +clk-si5341 +clk-si5351 +clk-si544 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_example_test +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +contec_pci_dio +cordic +core +coretemp +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpu5wdt +cpuid +cpuidle-haltpoll +cqhci +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +cros-ec-cec +cros-ec-sensorhub +cros_ec +cros_ec_accel_legacy +cros_ec_baro +cros_ec_chardev +cros_ec_debugfs +cros_ec_dev +cros_ec_i2c +cros_ec_ishtp +cros_ec_keyb +cros_ec_lid_angle +cros_ec_light_prox +cros_ec_lightbar +cros_ec_lpcs +cros_ec_mkbp_proximity +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_typec +cros_kbd_led_backlight +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +crvml +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +ct82c710 +curve25519-generic +curve25519-x86_64 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +ddbridge-dummy-fe +de2104x +de4x5 +decnet +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-descriptor +dell-wmi-led +dell-wmi-sysman +dell_rbu +denali +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +diskonchip +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dps310 +dps920ab +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-edma +dw-edma-pcie +dw-i3c-master +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-pci +dwmac-generic +dwmac-intel +dwmac-loongson +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +ebc-c384_wdt +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edac_mce_amd +edt-ft5x06 +ee1004 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efct +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehci-fsl +ehset +einj +ektf2127 +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +firmware_attributes_class +fit2 +fit3 +fixed +fjes +fl512 +floppy +fm10k +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fschmd +fsia6b +fsl-mph-dr-of +fsl_linflexuart +fsl_lpuart +fsp-3y +ftdi-elan +ftdi_sio +ftl +ftrace-direct +ftrace-direct-modify +ftrace-direct-too +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gdmtty +gdmulte +gen_probe +generic +generic-adc-battery +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-clmulni-intel +gigabyte-wmi +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gma500_gfx +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpd-pocket-fan +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-aaeon +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-beeper +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-lp873x +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpu-sched +gr_udc +grace +gre +greybus +grip +grip_mp +gru +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hd3ss3220 +hd44780 +hd44780_common +hdaps +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi311x +hi556 +hi6210-i2s +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-google-hammer +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hisi-spmi-controller +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wmi +hp03 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei-wmi +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_sock +hv_storvsc +hv_utils +hv_vmbus +hwmon-aaeon +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +hyperv-keyboard +hyperv_drm +hyperv_fb +i10nm_edac +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cht-wc +i2c-cp2615 +i2c-cros-ec-tunnel +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mlxcpld +i2c-multi-instantiate +i2c-mux +i2c-mux-gpio +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i82092 +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ice +ichxrom +icp +icp10100 +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +idxd +idxd_bus +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igen6_edac +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +ims-pcu +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx319 +imx355 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int3400_thermal +int3401_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +int51x1 +intel-cstate +intel-hid +intel-ish-ipc +intel-ishtp +intel-ishtp-hid +intel-ishtp-loader +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-m10-bmc +intel-m10-bmc-hwmon +intel-qep +intel-rng +intel-rst +intel-smartconnect +intel-uncore-frequency +intel-vbtn +intel-wmi-sbl-fw-update +intel-wmi-thunderbolt +intel-xhci-usb-role-switch +intel-xway +intel_atomisp2_led +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_cht_int33fe +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_menlow +intel_mrfld_adc +intel_mrfld_pwrbtn +intel_oaktrail +intel_pch_thermal +intel_pmc_bxt +intel_pmc_mux +intel_pmt +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl_common +intel_rapl_msr +intel_sar +intel_scu_ipcutil +intel_scu_pltdrv +intel_skl_int3472 +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +intel_soc_pmic_mrfld +intel_tcc_cooling +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intel_th +intel_th_acpi +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioatdma +iommu_v2 +ionic +iosm +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipu3-cio2 +ipu3-imgu +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +ipwireless +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +isst_if_common +isst_if_mbox_msr +isst_if_mbox_pci +isst_if_mmio +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcm +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +kheaders +kl5kusb105 +kmem +kmx61 +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kvm +kvm-amd +kvm-intel +kvmgt +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +leds-88pm860x +leds-aaeon +leds-adp5520 +leds-apu +leds-as3645a +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp8788 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxcpld +leds-mlxreg +leds-mt6323 +leds-nic78bx +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-rt8515 +leds-sgm3140 +leds-ss4200 +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-laptop +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lockd +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +mac_hid +macb +macb_pci +machxo2-spi +machzwd +macmodes +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mana +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell-88x2222 +marvell10g +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mce-inject +mceusb +mchp23k256 +mchp48l640 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-i2c +mdio-mscc-miim +mdio-mvusb +mdio-thunder +me4000 +me_daq +mediatek-ge +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_hdcp +mei_phy +mei_wdt +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meraki-mx100 +metro-usb +metronomefb +meye +mf6x4 +mfd-aaeon +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +moxa +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp8859 +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6397 +mt6397-regulator +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-keys +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxm-wmi +mxser +mxuport +myrb +myri10ge +myrs +n411 +n5pf +n_gsm +n_hdlc +nand +nandcore +nandsim +national +natsemi +nau7802 +navman +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_routes_test +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nic7018_wdt +nicpf +nicstar +nicvf +nilfs2 +nitro_enclaves +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm750-pwm-fan +ns +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmem-rmem +nvmem_qcom-spmi-sdam +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nvram +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofb +omfs +omninet +on20 +on26 +onenand +opa_vnic +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9640 +ov9650 +ov9734 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +panel-raspberrypi-touchscreen +panel-widechips-ws2401 +paride +parkbd +parman +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcengines-apuv2 +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-hyperv +pci-hyperv-intf +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcs-lynx +pcs_xpcs +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_pcmcia +peak_usb +peaq-wmi +pegasus +pegasus_notetaker +penmount +pf +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-can-transceiver +phy-cpcap-usb +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-intel-lgm-emmc +phy-isp1301 +phy-lgm-usb +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-alderlake +pinctrl-broxton +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-da9062 +pinctrl-denverton +pinctrl-elkhartlake +pinctrl-emmitsburg +pinctrl-geminilake +pinctrl-icelake +pinctrl-jasperlake +pinctrl-lakefield +pinctrl-lewisburg +pinctrl-lynxpoint +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-sunrisepoint +pinctrl-tigerlake +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +platform_profile +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pmt_class +pmt_crashlog +pmt_telemetry +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +processor_thermal_device +processor_thermal_device_pci +processor_thermal_device_pci_legacy +processor_thermal_mbox +processor_thermal_rapl +processor_thermal_rfim +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptdma +ptp_clockmatrix +ptp_idt82p33 +ptp_ines +ptp_kvm +ptp_ocp +ptp_vmw +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-dwc +pwm-iqs620a +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qca8k +qcaux +qcom-emac +qcom-labibb-regulator +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom-wled +qcom_glink +qcom_glink_rpm +qcom_spmi-regulator +qcom_usb_vbus-regulator +qcserial +qed +qede +qedf +qedi +qedr +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +rapl +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +ray_cs +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +realtek-smi +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +repaper +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rocker +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-cros-ec +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-sd3078 +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wilco-ec +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rx51_battery +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sample-trace-array +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbp_target +sbrmi +sbs +sbs-battery +sbs-charger +sbs-manager +sbshc +sbtsi_temp +sc1200wdt +sc16is7xx +sc92031 +sca3000 +sca3300 +scb2_flash +scd30_core +scd30_i2c +scd30_serial +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scr24x_cs +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdhci-xenon-driver +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +seco-cec +sensorhub +serial_cs +serial_ir +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shark2 +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sim710 +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +slram +sm2_generic +sm3_generic +sm4-aesni-avx-x86_64 +sm4-aesni-avx2-x86_64 +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc91c92_cs +smc_diag +smipcie +smm665 +smsc +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-acp3x-i2s +snd-acp3x-pcm-dma +snd-acp3x-pdm-dma +snd-acp3x-rn +snd-acp5x-i2s +snd-acp5x-pcm-dma +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdmi-lpe-audio +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel-sdw-acpi +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pci-acp3x +snd-pci-acp5x +snd-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-rn-pci-acp3x +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-skl_nau88l25_max98357a +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acp-rt5682-mach +snd-soc-acpi +snd-soc-acpi-intel-match +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-arizona +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-catpt +snd-soc-cml_rt1011_rt5682 +snd-soc-core +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-dmic +snd-soc-ehl-rt5660 +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdac-hda +snd-soc-hdac-hdmi +snd-soc-hdmi-codec +snd-soc-ics43432 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-intel-hda-dsp-common +snd-soc-intel-sof-maxim-common +snd-soc-kbl_da7219_max98357a +snd-soc-kbl_da7219_max98927 +snd-soc-kbl_rt5660 +snd-soc-kbl_rt5663_max98927 +snd-soc-kbl_rt5663_rt5514_max98927 +snd-soc-lpass-rx-macro +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6660 +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt1011 +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1308 +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt286 +snd-soc-rt298 +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5651 +snd-soc-rt5659 +snd-soc-rt5660 +snd-soc-rt5663 +snd-soc-rt5670 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +snd-soc-rt5682-i2c +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-sdw-mockup +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-skl +snd-soc-skl-ssp-clk +snd-soc-skl_hda_dsp +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-sof-sdw +snd-soc-sof_cs42l42 +snd-soc-sof_da7219_max98373 +snd-soc-sof_rt5682 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-atom-hifi2-platform +snd-soc-sst-bdw-rt5650-mach +snd-soc-sst-bdw-rt5677-mach +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-byt-cht-cx2072x +snd-soc-sst-byt-cht-da7213 +snd-soc-sst-byt-cht-es8316 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-bytcr-wm5102 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-nau8824 +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-glk-rt5682_max98357a +snd-soc-sst-haswell +snd-soc-sst-ipc +snd-soc-sst-sof-pcm512x +snd-soc-sst-sof-wm8804 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm-adsp +snd-soc-wm5102 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-acpi +snd-sof-acpi-intel-bdw +snd-sof-acpi-intel-byt +snd-sof-intel-atom +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-intel-ipc +snd-sof-pci +snd-sof-pci-intel-apl +snd-sof-pci-intel-cnl +snd-sof-pci-intel-icl +snd-sof-pci-intel-tgl +snd-sof-pci-intel-tng +snd-sof-xtensa-dsp +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snd_xen_front +snic +snps_udc_core +soc_button_array +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +soundwire-bus +soundwire-cadence +soundwire-generic-allocation +soundwire-intel +soundwire-qcom +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-gpio +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmmac +stmmac-pci +stmmac-platform +stowaway +stp +stpddc60 +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +stx104 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3-wmi +surface3_button +surface3_power +surface3_spi +surface_acpi_notify +surface_aggregator +surface_aggregator_cdev +surface_aggregator_registry +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +surfacepro3_button +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_cs +synclink_gt +syscopyarea +sysfillrect +sysimgblt +system76_acpi +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tef6862 +tehuti +teranetics +test_blackhole_dev +test_bpf +test_power +tg3 +thermal-generic-adc +think-lmi +thinkpad_acpi +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +thunderbolt +thunderbolt-net +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads131e08 +ti-ads7950 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-tlc4541 +ti-tsc2046 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +topstar-laptop +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +uPD98402 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uv_mmtimer +uv_sysfs +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl3020 +vcnl4000 +vcnl4035 +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-camera +via-cputemp +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +vicodec +video +video-i2c +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_mem +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visor +visorbus +visorhba +visorinput +visornic +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vmd +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvrdma +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcd934x +wcn36xx +wd719x +wdat_wdt +wdt87xx_i2c +wdt_aaeon +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wilco-charger +wilco_ec +wilco_ec_debugfs +wilco_ec_events +wilco_ec_telem +winbond-840 +winbond-cir +wire +wireguard +wireless-hotkey +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wmi +wmi-bmof +wp512 +wwan_hwsim +x25 +x38_edac +x86_pkg_temp_thermal +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_compat +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xiaomi-wmi +xilinx-pr-decoupler +xilinx-spi +xilinx-xadc +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_sdfec +xillybus_class +xillybus_core +xillybus_pcie +xillyusb +xiphera-trng +xirc2ps_cs +xircom_cb +xlnx_vcu +xor +xp +xpad +xpc +xpnet +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress +zunicode +zzstd diff --git a/debian.master/abi/amd64/generic.retpoline b/debian.master/abi/amd64/generic.retpoline new file mode 100644 index 00000000000000..945dc3fef780d0 --- /dev/null +++ b/debian.master/abi/amd64/generic.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.master/abi/amd64/lowlatency b/debian.master/abi/amd64/lowlatency new file mode 100644 index 00000000000000..4acd6b28e38972 --- /dev/null +++ b/debian.master/abi/amd64/lowlatency @@ -0,0 +1,26150 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2eebe6ef crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x84406b3e crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xaca00c3a crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x1bb2f5b4 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x290c2c6d cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3c223af4 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x539b32b3 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59262b53 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5c202067 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5e3a0c02 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x63c6f306 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x63ef0873 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6cfea180 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x842f8b5d cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x860873cc is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8ee6ee26 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x99bb3db1 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa412e484 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb3b79392 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd46ecae5 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeb3c697d cxl_driver_unregister drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/x86/crypto/blake2s-x86_64 0x23aa18fe blake2s_compress_arch +EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0xc832c670 curve25519_arch +EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xd9ec23eb poly1305_update_arch +EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xe1df0e1b poly1305_init_arch +EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xfaeb41b2 poly1305_final_arch +EXPORT_SYMBOL arch/x86/kvm/kvm 0xa0d0b3c3 kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x3a8db16c crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x3e1f7db1 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x78c20f52 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xa439872c crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xb6efc104 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xe979a47c crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x45930a9e crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x5dfdbcc3 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xa49399b7 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x0af1de23 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x90c96ab6 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xe0b05500 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xe7502755 crypto_sm3_final +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x34410973 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xb6147751 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0xd4f197e3 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xaaa328db uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x29e398c7 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x3d8c1bce bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x01abb1af pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x10d753b1 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x22ffbc88 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x2409507d paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x24bde5a1 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x2c8573e2 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2e27a02c pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x65aeed0a pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x930ae7ba pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xb0fefa32 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbd6c20ef pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xcd0cfa93 pi_write_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd1803050 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x4b074ad0 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xf2876093 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0fa2fbb0 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4d2bebea ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf1e78e3e ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf446e333 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3e720025 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x49ca0a52 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x799fb1f7 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd51e18fd st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x247c8868 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x48f11825 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbe0c15ec xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x11b48af9 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1f7e3b09 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x98fb9e9b xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x692503e8 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7f990d38 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf6be3955 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x47d3c97f psp_check_tee_status +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x02eda815 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04916bc5 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x150b0708 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x21117040 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c00683a fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c75d8cc fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x40152445 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x462e9dd2 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x55d41208 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x58beff8b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5ca9f94a fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c300d46 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x741a8787 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x89e8a0b3 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x924c1d12 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x977d69ff fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9def0274 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf9ca0e0 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1ad56e9 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2dbbee4 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb04aef2 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf234434 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xded7aa4c fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf25f395b fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfda1ce9f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xff14ccb1 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/fpga/dfl 0x30bf598a dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xc14fb45e __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x010b1b4b drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01187d42 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b6dac6 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x020edd87 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03b4f6e4 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05037c5f drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x057e563a drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058bfcc7 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f53b5b drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06511fd1 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06630c44 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06944b53 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x073e8bdb drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07737557 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f26a67 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a8c316e drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b173f77 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b93c4f5 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5e9eec drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf2c1de drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4f58cc drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1025613d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b80c9f drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11141876 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11859d2a drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ae3f45 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1440a18d drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1466daa4 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162b5d6f drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bcd8e4 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1787f7d9 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1813b993 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x182819d5 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186bed96 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x187ff3e0 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19560e1a drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e8ce51 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8b3e57 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b04692d drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b14409f drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1baf29e0 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c2280c4 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ccb45ab __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d148cbf drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fae70d3 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb3d213 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20bb1531 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217585d7 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21abae00 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22bdd1c0 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2415a693 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d5ffaa drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x252c140f drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2709fe3f drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283bea2f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28dedb73 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29877bb8 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ad355b3 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af538d0 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce524c7 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2fd216 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d641d1d drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f5fa8a3 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8fca80 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x305ade6b drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x310554fa drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3126c3d4 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3152a2dc drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31fad1d6 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31fe9ebf drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326eb8bc drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c1f7d8 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3533c2d7 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x357a9055 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c7b5fc drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x372c2576 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392f9b66 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aeba63e drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b19dbd6 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b87137d drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb1d352 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cd0b0c9 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da123a7 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e06cc05 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3d944f drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e990dbd drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee6a2ae drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f02cd56 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f55beb3 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c7facb drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4138f882 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x415a6693 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41851f5b drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x425e8888 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ab4ea0 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4367174c drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43701b29 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x438b7fdf drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a3af45 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a7da4a drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43b596f0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4402c372 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440c13d6 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x441d95df drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448f3d16 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4531a8aa drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x464aea4d drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47af8402 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ce7bac drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2f8f1e drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aaa64b0 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b0c2721 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bafdd27 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd579e4 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cba568e drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce597d8 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf647b1 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4def40f3 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1beef1 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e6f6a84 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f9ac7ad drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x505d6901 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x509fb9f0 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526e699a drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5296c9fd drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52eb1a5c drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e8aecc drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f4fefa drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x564a9c0f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x572cab0c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x582179cc drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58708b8b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x589c7c2c drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cf18d7 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f0ffe2 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59391cbf drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59578956 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59637410 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dd0f2f drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a5aa6c6 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a978fdf drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b7d36e4 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5babd957 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf8594e drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c05b235 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6ee746 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc21654 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6155da02 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e420e4 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x620f2b09 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x623fe2ca drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x628b4ce4 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637a582c drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b648e4 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6623c54f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x674ffc19 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x687a46bd drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x687bba49 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9d231a drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2063b7 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b91d027 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e714966 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ee4422e drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6ab4ab drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70519606 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x706b8c39 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x716b909b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7191e044 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71b63f27 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72498abb drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7279b7fc drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a4a719 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73248c4b drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73579126 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7449712e drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74deabe2 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75133381 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75bf864f drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d6a065 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76437530 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7698fabe drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7712fc48 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x775209aa drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77df1008 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x785b925b drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78731034 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7897801d drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78cbf99a drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7950c965 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b15d3b drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c0cfe4 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac19d20 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb9d533 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c68b8aa drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c6c952d drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8d719f drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811053b4 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81129959 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x812b8815 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8201d3b8 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x828fe266 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82af50d0 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f1e2fe drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84efbee8 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85120ca2 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x852934e4 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8618cf59 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8635b7e3 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87cee0fc drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b55994 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c0977a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a1838e9 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a91762c drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bfcc278 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d853d06 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dbe8d93 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de9412e drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f138c02 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5a74d5 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9006c340 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f035b2 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9101efe0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91acc5d8 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x927c247a drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f3bb51 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98d10dfe drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990b235f drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b725574 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8eb71b drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ba8ce7f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d72acce drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fad4769 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc15f23 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdbe190 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa018e286 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa04b88e3 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0db4718 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14d3283 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa164096c drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa16e6849 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e6f595 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e715fe drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa25ae0ce drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa333ab72 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34fb67d drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3713698 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa412157f drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70a8ac3 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa76dc763 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7cb36c1 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab54756f drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6ef4ab drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabbadb20 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabe88e29 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0bb542 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac2b0ce0 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca39a67 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad020b01 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04a39f4 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1910ddf drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c66781 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f645f4 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb21a599d drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b8ca44 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb463dbfc drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4693f2e __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ad2bb8 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c52a1f drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb560848c drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb605bafb drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69697a6 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d6a81f drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79a1b14 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84a016f drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8b96204 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f0fe95 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93928d4 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa3cac9 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb2554e3 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc12a969 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd84ba02 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5e1df5 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf76d624 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1721a7c drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2135797 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2510e97 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b4d55c drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d39a08 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48cb6b8 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc54de281 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5536cc8 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc586b4fc drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc642b613 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc66812b2 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b2b4ca drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b17d16 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc85471f4 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d6466a drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc992392f drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca1877d5 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca762092 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7e5006 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0e705f drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5e664f drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd048d618 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0a1771b drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1013230 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14ef36e drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b0b594 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c6c1d6 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d011f5 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e9442d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd45bf65d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5fda713 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63deb5c drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd66a0392 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd67d7543 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c05d6a drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8022bbb drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86500d4 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bfda9c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2e87af drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc55a5e drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc2946d1 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc54d082 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd151210 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9a781a drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf764ad1 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfae911f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb8c067 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0212bc4 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe167ff8c drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe248c9b0 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c6de5e drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3693a33 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e1a438 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85e9cb2 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe861c572 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86af726 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8764fdb drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b2c93b drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9857210 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c7e5b7 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f862a2 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb52c8a9 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec70c013 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecbbafda drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccef31c drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedba3cd1 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef4553b4 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c629a0 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf209bfb5 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27d2ae0 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e14e8f drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32287e4 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57fec7a drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf661de7b drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6aad1a4 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f247f8 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7410afc __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8415405 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf990c43b drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb120cd6 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbaf3784 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcbcb44b drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcce7325 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9a2e06 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdad708c drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc1feaf drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe536ace drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0028bdfe drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c3dd67 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0224f0be drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0226aecf drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03428fe6 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04d2c7c3 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x063219cf drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x080f21e0 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08b0d34c drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0af1d5db drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b384ca6 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b55ceb2 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b5fcc6e drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa134e4 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb11c7c drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x101bacee drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ca775d drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15076acd drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x152e5ef7 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x158d7217 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16d4949b drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17d4252c drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x193ab8e7 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19ebe7c2 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ac089f4 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b92e74a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ba2be6e __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c8b0e11 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x224c6993 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x259a3a42 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x260d7a68 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2653036d drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x268c8009 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26b8970c drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27cb8cde drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285620a2 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29128cfa drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29976756 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a113066 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a164b88 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b4ef79d drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b962f1b drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bdc961f __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c4f914a drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d76a50f drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e2626d0 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fcef0df __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30394ff5 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3064d650 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x306a4408 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d09b53 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3158ee09 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32990dfd drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ce6cab __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34c6eb37 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d8690e drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x362e296a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b5d261 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37d966d7 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38106877 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x387d953a drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x398b4f5a drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3994b581 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ba97129 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c8a7099 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cd272e5 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d3b3888 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ecb6285 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x405cb015 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41542d4a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4196d9d0 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42caa68d drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x436a19cf drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4630494c drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4955e4d4 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c221cad drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c412c45 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c98f011 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e7e2188 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7639dd drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c6a81f drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5270026b drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x527400f9 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x535d5d2f drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54ba7e15 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54d1f488 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54ff5605 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d7d18f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571fe758 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x573449b9 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x580fb772 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59745f87 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a8df65c drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a97740e drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b10980d drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bef1a29 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dc05dbd drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f16441b drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f9dca74 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60614433 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60d06e85 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x629ba824 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e4313c drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6554fefb drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66bfa600 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69110c21 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69676d95 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a70a84c drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d770706 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e35d01d drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6eff0eb0 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7049b21a drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70fb5ffe drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71a4d3b1 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73d9e6bd drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74180ceb drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7636df1d drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76619c05 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76f22531 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x770131e0 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7798941a drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a9f93b1 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7af1e76e drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b04ce5e drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c440827 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7da09edc drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ec68ccf drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x821f486c drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8224f83b drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82462b2b drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fb7434 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x836a7fa8 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x851e5cc0 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x858a05de __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85f19d32 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873a1ff6 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88b223a7 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a74789d drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a76ce1f drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a8323d4 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b6e6841 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b891716 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bbe24e2 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cec6993 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d072280 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d5df82f drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0bf062 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e5431e1 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f905b33 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9001767e drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90ebf8a5 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94b0662e drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x951a0e46 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96a6b727 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96b599da drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97391c8d drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x977f9750 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x989e26de drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99043bb8 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x995886ea __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9abf4e2b __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b9b4309 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c047738 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c2a9452 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d07d1f1 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f1cafab drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1446c7a drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3f1c352 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa411caba drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa570764f __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5a1d98f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d999ea drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa800ad18 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa80f21c7 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8e8c77d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9358a2a drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacdc359f drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad10d4ca drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf8093a4 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1cc2bc4 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb416ef45 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f2eb74 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5cfe2b1 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb989d703 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb550a7c drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbe3e2b8 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcbf7e08 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf3686e4 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c5b876 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc12dd192 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1302b55 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f4c6ca drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc23ab898 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3e8e9e4 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e946e5 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc54e9457 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6176b2b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6cb01e9 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7071193 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc83ea0aa drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc87f93cd drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8b58b57 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8b5c948 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8fa28fb drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9c337eb drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca0a60cf drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccb54d5c drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd872ef drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce206c56 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce5cf88a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea5cf6b drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcef5f0dd __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa586b5 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfbacfa7 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0dc27a2 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd101151b drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14cb45b drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2cca6f8 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd351b6d4 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b72574 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd54f35aa drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd67d47d5 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd708916c drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7ba3bf3 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd862cf52 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8f72aaa drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b9d5cc drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9c13efc drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc7be905 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde641e31 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0ade660 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1690d1d drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe43c281e __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe44fb3af drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64cf492 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe68e8923 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6ad2f0c drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6c33671 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7191fe0 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe747bc3c drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81abf1b drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe884810e drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea410b3f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb73985f drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed8f340a drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee0a8ef drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf03f5040 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4ac28d6 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8422fb5 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf90c74bc drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf954b821 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf98a5707 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa6c95d5 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc477c7c drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfa4f63 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe13f3ff drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x089644ab mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1abd9185 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x26352ea2 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3948bbdd mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x44f1c007 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47b099a2 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4c779123 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5fa5265a mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x71cc2f75 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e050650 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x99ac1d99 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaee62fb8 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb62f8fba mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb8359047 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda6a48fd mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeabe6c2b mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf75c461e mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x418f2696 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4db332e5 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5a4950ee drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6d69f508 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x94e08908 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0c7ac15d drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x280703bc drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4330368e drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x44ab8233 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4c855e3e drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x53d8f6f6 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x549ab01c drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x56c0f40f drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ed58645 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x77d84fa0 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x86f16065 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa9200133 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd24a5f6e drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd5bf8a37 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdbaffa7c drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf915ae9f drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x01b7c83f drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06fd99c0 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13d83441 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x16b83ea2 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x18c85c9b drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2c54a32c to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ca11acd drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4131d56d drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x46e7be6a drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x49775fe7 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ae80e0a drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x512bd835 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x66ee4cc2 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7ec45013 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f88e02a drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x81f5832e drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9fc74d0a drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2bd87f8 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8027652 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc33b9a7b drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0507a48 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee83b80a drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfa813a7e drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff536241 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18223e3a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ce96188 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2051556a ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20879586 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2588602e ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25c12151 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2864a468 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f382e0a ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x327071e4 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36a94ea4 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40514321 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x405d4b72 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4095abbb ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x470c5124 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x492b2615 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x498d544c ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4be41af8 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fcc4680 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55ef949e ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dd2e0d7 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fd55282 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fdae18b ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61064325 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6200be59 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6581334d ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66cb9b8d ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6adf2cc3 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b4ca7ea ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c8ba05d ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e57122a ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7187bc81 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7507e7af ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78f2b38d ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d756faa ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8eb3f81a ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d5383db ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dcc2867 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1c4631a ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa3f9434 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb13448f5 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9ffba2b ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfb0eb30 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc74d5ec2 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca8e1f51 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb05c605 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc05e470 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcda3d0e8 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3d42256 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd77865e4 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd0ffcb2 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe013d977 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe819c924 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeeb776d9 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf142475c ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf410ed13 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9f4f166 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb09716f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x5c992f6c ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x757fe76c ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xa752ffe7 ttm_mem_glob +EXPORT_SYMBOL drivers/hid/hid 0x1fd0493e hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0b670382 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0c04f3c5 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x109c4916 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x11696265 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15426ab4 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1a35fb4c ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1c6fa272 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1ebbb348 ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x269d0232 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x350677b4 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x38dfc315 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5ca12897 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x63a97ec2 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6b2a7d69 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6b8273a5 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6d62e3bd ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7673787c ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7b793ccf ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7d60af25 ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7d6106fe ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x87d4b83f ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8c4ef6f2 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8c7d241e ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8d2a5225 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9931888f ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa2192dd3 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa89d59b6 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb1c9033a ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb2e86ba6 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb7470b91 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc124b177 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc4e31ac5 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc4f6ebf9 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd27f8293 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd2ed1b34 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdc556a50 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdd8f245e ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe2c2520a ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe86f9b86 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf3385e77 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf8e21a33 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfcebe7e0 ishtp_put_device +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x1461fe70 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbf195fef vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x06735031 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x70d589dc i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc73dd52d i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfd22defd i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5bcef6b5 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc4a4ad12 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x59a9ba64 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x14eef939 bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x8ad1fd34 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xb82ffd4f bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x4eb35d5c kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x71725595 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xff5aa9bf kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x31058b39 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x42d2ad7d mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4873f269 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x542718dd mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6e5b2d6a mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x710072eb mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b3aaa2a mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8122aa5e mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa8a20928 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2f77773 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcbabfcd6 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd7067788 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xda6c7914 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe311dbd1 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe768ac69 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf43a3a69 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x435fc0c3 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5647937d st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5ea96434 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5f43193e iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x6e1aec13 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0ec53293 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3a123b2d iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x3b93b578 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1ea341b1 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x437943e1 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xd69c397b scd30_resume +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x17a827ba ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3bcccb78 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x409c40ea ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4941db17 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x955b1ee7 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaf4b5b8e ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc2565eb4 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd27487cb ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe97b703b ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1979715b ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x50296983 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9330f3b8 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcb201d4a ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd1864173 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x10a81baf ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1dcace71 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x97f950ba ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x281a843f st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2a4825b1 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x33f7c09c st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x34c2e40d st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4a0513d0 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x696ea475 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7d33c6e0 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x804eeb5b st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x84611678 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a614a4e st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa0d0c13e st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb5fe1722 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc5307a0 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe1237ce st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc4ababbb st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xca17cc6b st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4679f67 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf226ce01 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xc7d5080e st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xfd77ee03 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x35822f7d mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x455e18b1 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x8686add0 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x87f9e6b8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb248b8d6 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd39cf41e st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x535369ca hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x791c20ca hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0691186e adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x42a9a485 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xe2ad8d9e bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x00474af8 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x0a5442a3 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xe83bb110 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x05b0e35f iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x09b5f793 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x0b421cfd iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x16993454 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x27925aac iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2e57a9c0 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2e6d3181 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x30bc1057 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x3d9ee651 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x5c96e911 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x5cc81c8a iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6a395059 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x73d22e2f __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x75ee2463 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x7af83093 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x8608b726 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x93a6aaf3 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x9fe3e99a iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa084e59d iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xb1e67215 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xc0bcccc9 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd17d403e iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf0cb0431 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xf153de0b iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x000a3b12 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x32ffd9d1 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbf3c08cd iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe44b5e7a iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3327d21f iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x40c42041 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5830090a iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd2566f3f iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x22d3bd48 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x417caed7 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x10ee8151 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbb448238 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x659940e0 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe563527a bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe7fad573 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe803fd9a bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x5201f521 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc1850591 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xcccdf95e hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xec7d4699 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x23bc7377 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x46b5d8fc st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc9684cc0 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0d7f847e bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb2bc41fe bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd6f121f3 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe7f9591c bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x43a12e46 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf16b8d22 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x58cd4e7a st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa6e74561 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xec1a9853 st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x11f49361 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3fa60f11 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5d644cf7 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82f85d48 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8fb8ed8c ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ff22299 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa5098630 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa82dfd1c ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa54aa0e ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb1f6cd5a ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb84dbc8 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdd2a1da7 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe69dcde0 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeaadbf2c ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf51f340e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f5b8b2 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04521d1c ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x076ef53e ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07727f6f ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a7d6520 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3b66f1 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bedae88 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5a171f ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d77ae29 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e56cbee ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x109ecc7d rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a816e5 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14a1380d rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x177840ea ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184a7f00 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a5516cc ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ab2154e ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d941ddf ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fa00992 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206d8c8a rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217ad325 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22eec872 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23c939ef ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24361a94 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b5176e ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a186986 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a24249c ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cec650f rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2de615ab rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ee93315 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x309f0ae1 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32c91ea3 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3368d5bc ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337bce22 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x340abadd ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352ab4ff ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x353a6009 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x377bb978 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37a4b6f3 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3962bc51 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a20de15 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cb43c84 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc9d0d0 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d42df20 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d7cf12d __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x429a4f7f ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a05cbd ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4480fff2 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x470e2bb9 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4955de96 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a733803 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b35fe0f rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c0478f5 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e64fdf4 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53b6bcfc rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53e87e98 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56a1f6dc ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5833f269 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58588d55 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b79edf7 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c6a0b15 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d134b40 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61876747 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x624f458f rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x633d9eff ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647ed880 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673794d7 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673aad41 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69884cd4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea82bb1 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x737e819e ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7391c8ba ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73b1ff2e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7400ee1a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e424e2 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7513e2c5 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75215f53 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75af1f87 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76382838 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x792ca30b ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79573c41 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a5dbd2 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d0fd972 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d61ab49 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f5d97e6 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x830549d2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83179bfc ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8503ad9a ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8839f9dd rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b338331 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bca12ba rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c0e5bf3 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d39e47e rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8de9105e ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e2a2f38 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91217798 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x914677cd ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x918ea84c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92234713 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92d40a02 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95273546 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956e9d46 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x969d59d0 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975898af rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98c46869 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aa30718 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dece207 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fd23823 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1828a4a ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1b8fd4b ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e009dd ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5a4b678 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa82bb55f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8472557 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8c75c76 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa98f867a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e5cdad ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa866ff8 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadede2d8 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a2438c rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb256294a rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2c2bff1 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb37b97b6 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb544158e rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6838676 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb77981ec ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7f6b1a3 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb96faa0e rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb1e7850 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb9cfdb2 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe6707d rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc1664c8 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc22615e ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd5c5dba ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe26dc8d ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe4a9774 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf351b9d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4e82175 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc70ad24c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc86216c9 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89f2672 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9a61231 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca2379d6 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbaabf7e rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcea4a9fb rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1f22ec8 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2181d36 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd325659c rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd452b876 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d4feb2 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d9b60d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e0ed40 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda9767e2 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbec5176 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdca54465 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdee8245e rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef99f1a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07bef44 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe083946e ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1229150 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f5862d rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2191b2e rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e1c1e3 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2f2ab97 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3d99f2d rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5bf3e3b ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5eeab0d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe70906a8 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe78bfc1e ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ce5c22 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed6002cb rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed98b4d7 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda5852a ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef10b627 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2bb01b0 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf477d7af ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b0c848 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6cf61c2 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ee9651 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7d13c18 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf904dda6 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8f440e ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb5753a6 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd3e0ffb ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfee85cc4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff51b1a4 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0799b2ab _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x082b9ee6 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x098e378a uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b348f7c uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1017a259 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1270c842 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1676443b ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1eb31604 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2365152b uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46def0d6 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47a4c03e ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x52346486 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5639beb1 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63dd6210 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65c0eaf9 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f90b80e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7efa4a3c ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8a20595a ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8afd1604 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8d6a80f1 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9adc65de ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadb98b09 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5e2de44 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbfed69b1 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0a1735f uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc318154a flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc722329f ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc816c71e _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd93dbdd6 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb0857db uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9aad576 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9f2ab03 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x014a4410 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x13d150f2 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x17d5f694 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x18db4268 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1bc40013 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x96680ea1 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb63a7850 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf08c41e1 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03180cb5 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06b254a5 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11b2b268 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d5baeaf rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34cbdcfb rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fc20d0a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a9f53e7 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5dd41c39 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x601720ff rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f905bdf rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7781e63e rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d7a52b5 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87b65957 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90372343 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d638adf rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9de49ad7 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab7449e8 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaed9aa6f rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf552508 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb15c8bd8 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb19667c9 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb29879c6 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba7865b4 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf67ee15 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc21db7a0 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcdbadd95 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf5cc199 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd18bd194 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6387803 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe987b7b8 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0f1db57 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf64b63fc rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfadc82fa rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd11b2d3 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x09932a2b rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x11bd6206 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1a78fc71 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5565ef97 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x617169fd rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x63fc1597 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x67a1f6b1 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x736583c5 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7acbb21d rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x813b8c7d rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8491b05c rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x891aadf8 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8bdf7a1d rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x92d7fda0 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9f5b96c6 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa22b11f1 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa3a1e126 rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa6ab20e4 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb70e5a8e rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xccfe72a5 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd7c73b5e rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdd0c2012 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xde61aa3d rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe4de889f rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xeb1d3c37 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xeb5538ca rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf3320114 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf9c59044 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfa47b8b1 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x242c46c3 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5babcd28 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6d264e8b rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x72110f18 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x90e116ba rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9775b63b rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xada22b3d rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x034767c0 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x094cfd07 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2c1318df rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x78b0cf05 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1ff4d8b9 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x44c09690 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9ea9ff09 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9f673cb0 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xec4777d2 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xff95ddcd rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x041c52ee gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d6dcc08 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x67da86be __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x99cc09b5 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa26197df __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb194e3b8 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb77e19fb gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc64a201d gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe98b0f34 gameport_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x78461144 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xd2ec4757 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfff2f611 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x90373847 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x841ebb6b ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x87f870ed ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc8ef3545 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x372fd3cb cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x87a2d388 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x15cf34c5 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x47091761 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xee1c8b40 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8bb4fe9 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfb40e12b sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x19d782c5 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xcdf3fd5e ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x0eb238fa amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x40cb79d6 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4332689d amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xa6affaae amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xa842a0c9 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xb1bc5a1d amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0c1854b8 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x751d2510 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb6ed561b capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc81582c0 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea35164f attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0e8aea97 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x30e24d19 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc99d5644 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcf6716fa mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x34074a69 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9e84568a mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03b135b6 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b136149 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1298e98f mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x136b4a73 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2254238b recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x322a45b3 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x448cde9b mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4da92690 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4eeb194b recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x573dc87a mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x590aa802 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73eeac2d bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75e0d80e bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79522e28 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8168e798 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8258b56c recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97cfa45a mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa1bb1078 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaee96635 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb751674b queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb09ec92 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf45770be dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbd096d4 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2caf6a80 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2e8b97d5 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x33de1e39 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x3cdcf4e9 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x88a23fe0 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xad443acc dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0faa7296 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3d256aef dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8b5703cd dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa3f7e6f9 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe40c2fe8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xea078ce3 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x774ab367 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xe9dd5099 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x00a096d9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x03eb1118 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07f72844 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1230c891 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x24be13a7 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3c624711 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54da6e0e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5933c42b flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e6e5617 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa410ef96 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe7f8782a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfbf89292 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xffd953fe flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x758bdb25 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7f9fa33f cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x82dc9363 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d654e47 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x8ceaefe6 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x1efc6ec5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x679704e7 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x8763125b vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xcf05b12a vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3a573797 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6e6f7907 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x71349680 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa09cedf7 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xba0388a9 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe38dfacc vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe37b2cf4 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05984ca5 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x063b4ce6 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x229b0759 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x325e94f5 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37f9aadc dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42b21f04 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4910b837 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x500ad35a dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50de5228 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5488a9e9 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d3bcdd0 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c7f91b9 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71b82634 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x949fe433 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c4fec92 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f188195 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa38d96ed dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa59650c8 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf6b4ff0 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5e0b1ef dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd660f0c2 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0cb0e83 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb96e588 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfcf3eace dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xb1d74540 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xfe401ca0 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x01973a88 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2f531c93 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x471bf927 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4b84ca07 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5b33c0c2 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7b2ec683 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x992b460c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc640e7cc au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf7ea8efc au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd96eceea au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4b918c80 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbf4ec954 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xf8e2259e cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x1b405efb cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5631176c cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x92a97959 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x85696592 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xb89c058e cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x266ca44d cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x86337017 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x7b8de258 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1aeb02ab cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe1b7dfd8 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xfa437556 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1d6b417a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x43788ed3 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7e54132b dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x81f2bb2c dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe56c486f dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x031dd078 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0873e449 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1ff22daa dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x27faa4db dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2bd2100c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x531c196c dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65cd37d5 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x69974133 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x98fb287e dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e816325 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb1d8997d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb428d3de dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb59f8481 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0f32143 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcba93902 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xa2831f64 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x00200deb dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1fcd7725 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x27b86d87 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x45c3f6c0 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4cfd951b dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf737f78c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x09a36cae dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9662bbd7 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbd739d46 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd51881b7 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x60f444d1 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe05a8b0d dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3522f6f2 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x42b1485a dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a38cb26 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9598beea dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x963f0f60 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x96b199ac dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9f27091a dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaa44a291 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xac0a3d04 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb53c4745 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb8596cf1 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdd111951 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdd4b6065 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3143c98b dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4f0aa584 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9ba13b8d dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb75c73cb dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbb039c72 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x24b939fd drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7f110c73 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x1789ab1a drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x49647bb0 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x0e910321 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x26a2bfe4 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x314e94a7 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8d6c9b8c dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2e106c35 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0b4a3104 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x74be98f0 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x3454b208 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x6c7d8274 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xca223f15 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x51276f26 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x015702ef itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x065afd7e ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x8a7f5b00 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6cdef6d5 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x182d2f65 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x47bfbffb lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa918c029 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xf5e6422e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x78dab58b lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xdeba9377 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x6f27ce19 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x3971defb lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xb72d546e lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x498f1628 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0d8d36b8 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xd7fa90a5 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x6fc8c88e m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xe56360a8 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9c39fa02 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3ad5e9b9 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x9280ffe9 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x24f6f90c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7a5e1096 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xd27a31da or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xb4d444ea or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xc64307a2 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xeb8dd2dd s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7c9e8858 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xff12c8ca s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x658f9e42 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb737a6f6 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xf9af784e si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x58ecb0bc sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xb011901e stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xfd682e42 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x86b22bad stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x35a84293 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc88def0c stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0a5e53fb stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0f1fcf4b stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7c6b9c2e stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa8d7296c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa8edbb36 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xe2a6fc20 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x45389465 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xc500f0c6 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x63c4904c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x68e2fd0d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x52f2036c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x57491a56 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa32acc0c tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xe9d38cff tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x6aee378d tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xa03f1185 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd25c9685 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xf6657fa3 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe5533136 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x5b52db27 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x9b1f1362 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd4e20460 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x26eba32a zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xd3cfa1f2 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe95199dc zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6805e11a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x514e7267 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0c8e3504 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5bcdd139 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8ade2726 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8f133a7c flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9d1c0efb flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb5b8f056 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd90866ba flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x20faf0af bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x529b6ecf bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x83beac63 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xeebec2cf bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1bde0e49 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9ce4f08a bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc200c9f5 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x064e764b dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x18c0d9a9 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43799693 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x57081345 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x571b3fb9 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x64a4bf81 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7b958e7a read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc95ffc6b rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdd4133a5 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x43cf85ef dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2860efcb cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x588b619e cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5be7d460 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x92db354a cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe2ebc176 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1600de16 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x520d8444 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5ce50937 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x78770bf2 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc8092c22 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd16fa7c2 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeacc08cd cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1842f86f vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x537b0e3c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x76648a53 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9ef4db28 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xedaff330 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfc4afaec cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6a120723 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x76c27fd3 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9d534aa5 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb874c737 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbcf1724d cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdd7deec6 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe146d46d cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0ad72c2a cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12d019de cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32735ed9 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x368e793b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3d9fb880 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ed1bd4f cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4289c8a7 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x461e1794 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4debf245 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a8806b3 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83ac6634 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8530c417 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86a35856 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b6cc899 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9201bad6 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9492afd1 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xce5890cc cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf4c0128 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xded52843 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe81972bc cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x5ba01268 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05f17984 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d23f053 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0f96632c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1dd201a7 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31b41063 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64d23d03 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x65cc6f46 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66bda0e0 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a2ec1db ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa866a0e8 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbb03f3d9 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd3d058e ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc7253164 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xecb5211a ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee08b03c ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5d0e034 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf68fbda6 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x07098f5c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0fdc0add saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3cabfff4 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3fbbeffc saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x409ea2df saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4603e402 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x52773bdc saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x79cb9ce7 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x859003c4 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8830915d saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfac68b19 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/radio/tea575x 0x07e89623 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x17b4852e snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4644b8eb snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x52b7a340 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6f38eb72 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9c801e38 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe036294b snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/rc-core 0x053abc99 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x82e0f568 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8f7d819d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x3b71ac72 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0347c7f6 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4e91aa53 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfb218f06 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x606b9b1a max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xfa4a2b00 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xbafaee7a mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x35358fd3 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xdc62af3d mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xdcb200ce mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xf1c86a4d qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa831b9a4 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x785d0c04 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa8568f58 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xe409684c xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2480201a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2a160ade cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2ba10eca dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4926877f dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8fe0aa29 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaaa40cd4 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac26e8f4 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xad102e5f dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc06b5f5f dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd4458e02 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfaa9ff8b dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0f946557 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3add7902 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xadf06ca5 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc7704390 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe9da6887 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfd652731 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x038f5a3b af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x203c7531 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2703d8ca dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4e6dbf5b dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4eaabac4 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9126e0c0 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x98b3d473 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa870f3a6 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd5483e0 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe64752f7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x07f6f359 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x17fc2b30 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x73336fc6 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa104c099 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x02c9141f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1bd83a80 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3239df8d go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa2e0e8f0 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb5e2e4d4 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbc43b572 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcd1ee6a7 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc743883 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4c937d3 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x12b0008a gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x275e5d68 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x548ceda3 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ee53f7c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x82bf5309 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbafe038c gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc9dc419b gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd7ac2e24 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x3d6b7d9d tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x88e1dc42 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9540dad4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x94d6318d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xbf113047 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x223c412e v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3630e023 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x576a9457 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xabc7b12d v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb7e8485a v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xcfb6ba98 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x21774881 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9eb747fa v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaa63e3f5 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd68d9c3c v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05ebe82e __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0766e45c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5ecb23 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b991250 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f03aac3 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x108a4022 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20823af3 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25734a0b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2cf1fe00 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30f9e6da v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x364b16fb video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3675ffaa video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ad179c1 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x419ff41b v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46b0f403 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48b1cb18 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e439671 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5037c8a4 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50e709e9 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61f5bb6a __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63c9701b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a54277c v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d7864b1 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83a885cb video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85539f8d v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x871ab468 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8938c3f2 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b234837 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e2bbbd6 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9406fd5a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f18a5da v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f417088 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa427a3bc v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5b9da4d v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8cd842c v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa331455 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa6b0881 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaaa3af01 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb127b66f v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4c9ef52 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb63d4eb9 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0b00426 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0ee8812 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3d4de7b video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1cb1cbc v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6e270ed v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd724a25f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfa21515 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee83e039 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf70f0615 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb85a939 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0bd3f0fd memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1841d8c7 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e911b61 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x325ecfdc memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4718f355 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a96b3f1 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x803866b9 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xac8b050f memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb8b0520e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc10b07fd memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc5193d4d memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd69c9d4d memstick_resume_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05808509 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b97dff7 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x144d434b mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x275a6c8c mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x309d320f mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44ed27ac mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x485707c0 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x504d6809 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d26288c mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6192061d mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63ebc2dd mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e00b203 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78cc5b20 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7afe9e19 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b3ea6c5 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f354bbe mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83397e48 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94200a8b mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xafdfb8dc mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbe3676b4 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc24971d4 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc432daf8 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc2ce376 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd05f5148 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd06b1312 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdec26e75 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xedf4f182 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5c32f45 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdaf9721 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28dbef75 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2971d715 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a78acaf mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ac585c9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x314b76f2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3156d9b9 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x343eb310 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x370a9d9c mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47399ff3 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b739772 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a05c436 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f415aaa mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72e9bd18 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79f519fe mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b6c24ca mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88f744b4 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90ba077a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b120178 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa2c5fd50 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbcbdb30a mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0778a64 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0d7f19f mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbf8c98c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec157b96 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf31e1408 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf96aafec mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa020cd0 mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x1ee00dc4 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x52b446b9 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x736c8048 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x5405a71a dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xb8d4805a dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xda065f7a dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x17b2beca pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc07ac943 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x135d2a5f mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2cbd960c mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3b807523 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e3cd4bd mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x78d150d3 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e56c540 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x811ffbc0 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x85805d8d mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdbe46eca mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdebf0e01 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf2c6a917 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x1c85eab0 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x55a59d30 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x5bca3de4 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x69f0867d wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7cbf72ea wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf6928450 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x2ce21294 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdce8caf3 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x0f259f1f c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xb79a786f c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x1257119c __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x143009fb __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x4313a9aa __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x49e02a9b __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x836a036e __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xa8dbaaff __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb06970ff __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdf3cb176 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf1a5cfb1 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1c6c7d67 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x1d3b8fb1 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x240485b7 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3c0fc1ad tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x52ad2803 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5cf5f776 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x5f1cec2c tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x75d75a43 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8252d872 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x858b25e2 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa57812ef tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcc12b4f8 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0f2ce224 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x69063646 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6b00d48e cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x70d21c78 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x78840f17 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x501f2843 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x6dfe913d mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1d0ef496 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x74b31a8f cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc7131ed6 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcb83da96 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd8809036 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe9ae3653 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf000c797 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x899299fd do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc928e3c5 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xefe30c46 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xffc4b6bf unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xbccab24c mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x704d2c6c lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc79b50c5 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x9274adab mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xc1b5b85a mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x09b97134 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x26c84a5b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2985f7c1 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2cdeaa32 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3f69d629 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x43e2623e nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x465cd4a0 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5afa1459 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x67d6c1f0 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7a1e88ba nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x926efaf6 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x993e977a nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb615807a nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb6494e24 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb84c7593 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc111685e nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe417b3b3 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf18734ac nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x2c316352 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x540128c4 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x70b62a33 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe79488be denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1759f70a nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x17fdd1a9 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1bd91000 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x20ca6014 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4d0f7c7f nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5b6276a4 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6ae25cda nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6d325ae4 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7cca7acf nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x820755e3 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x98edc56a rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xad2f73d8 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbdf418f9 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc0fa3ba0 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd012a5d7 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd577fce9 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xeefad373 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x094a9506 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1330beee free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x28f8dbc5 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2e3d2b82 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x48c08f69 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x60c2a368 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a76a4b2 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa206a5d9 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce636621 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd2e2542a arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe2236699 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x16b88ee3 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc2ff6b30 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf4cfd0fa com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x028e754f b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x09a6e2da b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x140885dd b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x189a5dae b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d0ef730 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2390b5f2 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30afc731 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x36352a68 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b291a9f b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3dbcdc1e b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47c994fa b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56259825 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59b7e348 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c3a74b9 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c7b2cd4 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60b8655e b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64f700fc b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6517ef9a b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68b938da b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c90abe3 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74452d08 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x747c2558 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x88174de0 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91d4d721 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a041e04 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d3ccc21 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa570cea1 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaadd503e b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaffedc28 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb74edaf7 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfdf5179 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc99dda6 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd185caa0 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4a1facf b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc991b2a b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd5be11f b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6aad9f7 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe83c35f6 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef03d734 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf14d4d60 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbd43692 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x07faa177 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x431ea4f3 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4aa737aa b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4c4cdaeb b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb7b00ce2 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe658eb14 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x36b69003 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb408ba9b lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd2ddd7d7 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x498ac58d ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xd3027eed ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2db2b6c9 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x69b4aae5 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdcdd91ae ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2bb9ba4e vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x70f3558c vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa984fb07 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2500d919 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb58bdcb2 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb741c929 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xde30cc94 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01afb0a8 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32b3ce5a ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4b9dc33a ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x52839a4a ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8033923d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x985426f2 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa644a8de ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc920ce75 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeeb0e185 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfbe38c54 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x3c8118c2 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfd3a4459 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1ff4df32 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x83b698e0 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0986e5ec cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x109260ce t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16217029 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1a0959ff cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x204fe55e cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3dcbbc6d cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x52eed750 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x54dfc86d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x591c8f9c cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f99cd23 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c37d064 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e5dbe0c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0c7c79d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb2947d71 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe09b0593 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf41c5ca8 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x029ab875 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18075bf8 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f9c52dd cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20655f72 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2764c542 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40b2d76e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42d94e61 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x445c1576 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45084784 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47a64fb1 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47c52e1f cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49130dc6 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4af25241 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e6803a7 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5539c7c3 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5809187a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c89ee10 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f0fde13 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c24f49a cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7057b639 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75d3f817 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76982a3a cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78ce3e5e cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cafde70 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d996f0d cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x893dc534 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f94fcd4 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90a8c4c3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x939c935a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94043949 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9563712f cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b132c23 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c4e10ed cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d1dfc64 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d308d1c cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2ac1070 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa54a9e16 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb879c54 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce4824fc cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf9fcfd8 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe51c33b5 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xebcdfc86 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee9d7d4b cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2606808 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc94abad cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff0bc3f4 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x31cae548 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x77ea43bc cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x895b9500 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9802808b cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa516ec0c cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe5d9ab1e cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf162d50c cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x445d4c36 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb2e5ddd1 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbaad5012 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcdc3b6d0 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd3813b1e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfe546f4e vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x622ed2c9 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xeb44b008 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x90b17b7b iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xfde02ec1 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x255df22c prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x65ac53f7 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07840dca mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x092ba616 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1029a0a8 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25726378 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2663fcc3 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bc0324b mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x441e8074 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a9a904d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eac980d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71bc256f mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7298d32c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ffeaa4 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78be41ef mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a3de8d4 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa9fc2b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82977388 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8351d5ea mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x835441d3 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x846d2399 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a1f00b3 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c575302 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90112873 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9169fa5d mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9190fc7a mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9963c993 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3e5c2d9 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac2f488c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaee2793b mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb093690d mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb32d58d0 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeeffea6 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d2d09a mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5968823 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5b22ad6 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd77ed459 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb1e7e80 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb6a6346 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe6754a mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd616012 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe095a930 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec1e66af mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6831a90 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ecf11a mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9ed132f mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00ccabd3 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c51cfe __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05000e23 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x067ce0a6 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068005a2 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07fe028e mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c000b90 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c106d4d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eab3697 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fb3b5b7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fee70b9 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10d3da2d mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14977c1d mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x190361fb mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ba7da11 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf39101 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf592b7 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d18a6e0 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e6c7053 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2129f3e3 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x243a25ba mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26a540ad mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b07ac28 __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e2fb0d7 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e94bc89 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33bc9ad4 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35fea859 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3636a73e mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d8a89b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3998a43d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b917605 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40d9c7b6 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4307eca7 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x432216ff __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45341ec9 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4958004f mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ae8edba __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b384c53 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f9cc67a __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x525a27e3 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x529e3738 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5411e9cb __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54790d7f mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b7bd1e mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x589c044f mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6015efdf mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6206c66d mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x626b18fa mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d376bf mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x683c2ca5 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68807ed4 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a0b2b22 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b484f66 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bab094f mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be7d13c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5e09ea mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e4c08fb mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e9c3f34 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f1b05bf mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7043dfec mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x706c22de mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70890dd0 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x726b84a8 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x735df4e9 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x753a9834 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75cc63e1 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e272c1 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782f494c mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a11cced mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c7b8d63 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cd11823 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c436c3 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82131beb __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x836033f9 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x854a2afc mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a754169 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d0e2c0a mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ea282c2 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9594371f mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99a72a85 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a38ccf5 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b3edfed mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cea1f9a __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b21c32 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa856a616 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacadfe10 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae252c1a mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae996ea9 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeed80bd mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0d6a024 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb21ad1d1 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb381f05c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4491223 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbbc7de2 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc357df9 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc70aa54 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf2e6f8 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4fa52dd mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5b335f2 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b98f1e __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a53c91 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca17d439 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd0d1fe mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd13a086 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf34db73 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfce1d43 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1976521 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f8e08c mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2b0a326 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b85b90 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6677ebe __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e1a1d6 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd97cdfde mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddffb935 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0eb8a2c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c75482 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3fc5a79 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe78614cb mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c07b25 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe89ae945 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ffedfb mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeba550ba mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef108131 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf17bc610 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f01d49 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7f8d21e mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8a68cde mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8ed21f1 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf97d5925 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa3431be mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb271039 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb897475 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd055e08 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd1001ae mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd2c6b2a mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x08070039 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02002d27 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x03195ba5 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x337e51b7 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4737b1c6 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x56d631bd mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6ff4b7c2 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x70feb021 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7c7cfd57 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87794f94 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9125870c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x91db71ec mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9ef891bb mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa501f44f mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb1bd41ce mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb1df76eb mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe78daa9c mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd9ac2673 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf95e470a mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x883df3c2 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa11acde7 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x088e859a ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e970e61 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10f873ae ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x119b2c8c ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1245cbde ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x133add6f ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13e394fa ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x158c0e57 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a175f97 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x207796f8 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x222c3024 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24a8f6c0 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x259937c1 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ab8e478 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3544725c ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x354b373b ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35c1bfda ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38272ac4 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38755fb1 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b212fcf ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b38e45e ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45618c6e ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45db88ec ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45ee4315 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54c615af ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55a38d60 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55ddbbe0 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x585a615b ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bb8116e ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5de6d975 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62253b6d ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6eae415f ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x731708f4 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x738d0312 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7394639f ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a7dc879 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c0fd8aa ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84f37c23 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b9e81cc ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e151213 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1ac7d09 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa480b98a ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4ae9ea0 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9f4664e ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab1d2f74 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab78364f ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac287277 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafb2f5e9 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb23055c6 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba1fe035 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbec5d8cf ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf16e193 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc24b630f ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc68bebfa ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc743e9a9 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb147c8b ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddd405b0 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddfeea11 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3edf619 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef306935 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef7379b6 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0d07e16 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf98ad2ba ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9dfbfa0 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbc90b5c ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfddd2270 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe31c407 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0a476ef3 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x408c34d5 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc8130fde qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf613f5d6 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x2ca753a0 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x51e2a1a0 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x35bf296a hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5b6e5745 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd9288be2 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdf8ccc8e hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf0fb25cf hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x256e22ef free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x286dbaeb mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x4616420b mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xce209c8c alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7fa3ed01 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x9629733f cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mii 0x1b1fa9bf mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x523a56c4 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x889e1bf3 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xadd8c60a mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xb4b76a8d mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xc1adc4a7 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xd6fe1e32 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xd9ff90b7 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xda2b23c3 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xecb09bb4 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x1eee2ea9 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x405091af lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x5195d367 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0f0f0520 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x425f439c pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x436551aa pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8d13da18 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xbd522668 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x15b28250 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x53da2ef4 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x5bc48b4c team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x83c17791 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xaf1d73a0 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xbd67da7c team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc3a2f396 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xf5d7f530 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4a63d596 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x53c5a07c usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5bceced3 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x11af73c0 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a146bf4 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1e8ebaf0 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3345e32c unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x44cb7dea attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8307a703 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x85c4c76b hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x89978c9e hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x976e018d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xac155c20 hdlc_open +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x137a86ca ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x46b49885 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x603edff4 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x746acb31 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b1a6815 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b64c012 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x90a6590c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x975e464d ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8d0b790 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc0440839 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe190fa4b ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xef459622 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf7118ed0 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0185bc36 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e8623d3 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10ac60f0 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17d86aa2 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1919bf4b ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fdb22c6 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x23016b47 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a55a80e ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x339ce408 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3401b452 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x354cb9a0 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x362d8a93 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3798ce3c ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38e3c5ff ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a39390b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b6dd3e7 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4460c62e ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e979338 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f5d427a ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5434502b ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x551ce4a5 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56f8e05c ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x574522a8 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5783eeb2 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5cd78017 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69447997 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c0c31f1 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72cf1cee ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76f77b79 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b50cfc1 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88a24f12 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89bd637a ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91fe19cd ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9df9edcd ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa188892d ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaaeddf0b ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbda43bb9 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8e45291 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbc0f079 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd2c72fb ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce2b5946 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2b5e0b4 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5352ac9 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd56fcbde ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8422d11 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9e580e8 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda5f6767 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdab575f1 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0cbf177 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe553597f ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe61ea283 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6d1fb08 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf299c621 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf64f257c ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8b09587 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8d9c096 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfad7abe0 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x04ed084e ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x05be18fd ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f64da20 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2fb79cd2 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3778b9bb ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x40e796e9 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5cc23554 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5eaf2d04 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6ddb4cb0 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x787f3ac9 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x806d3d9e ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x90c82506 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa0be4e5f ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5a7ffdb ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb61a6867 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9620514 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xccf4c2fa ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0055f2d ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd3b281c0 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdbcf84ca ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe879f673 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf09f5cb2 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3a2cc4d3 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5016b3ba ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c7f8a8e ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x63baffcd ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x654b7c24 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x85760656 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x912cba20 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x93227f7e ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2a9e55b ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbe572ec4 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdcf09bf1 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34a627ae ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3ba82512 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4adafb15 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6bf27a4b ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76842d3d ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8833b0f9 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8977c054 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8b7f4036 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9054b16f ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x96ab55a4 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9dac553e ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa5410645 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc08b3259 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc17368a9 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca2f065f ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6b32021 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd92a389 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xded16510 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe20c76e8 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2ab61e5 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5e251b2 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfbd593b1 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xff608fb1 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02b81152 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03104c1b ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07c291ca ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07efee3f ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c10852a ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11d9bb75 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17633e12 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x263d2b66 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27795497 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d3fcfee ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1dce87 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e7d3c0a ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e998c32 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3032361a ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x326b75d4 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b9cd39 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3709f0ba ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3856327b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cde7a85 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40057ec3 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4021f371 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x403003f2 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b953fe4 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c3a23bd ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cd1791c ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f6a4add ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5029cba3 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x524a6b13 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x526f8245 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52e40d32 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56dbfee8 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a39b0a8 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e5811b1 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x600442c9 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60519c6c ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61351901 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62e1c60a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6796a207 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76413370 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78b8f854 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ac1da30 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b49b97f ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b9611ea ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d57ebd5 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8182d69c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x835020a4 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8469c0c2 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a36804b ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8aa8c8d2 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c9db364 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90704c36 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92d83b5d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b3015d9 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cd2c469 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f094113 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fed5cfb ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa06c920c ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2ee4344 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa39aba05 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa54a0c4e ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6a8ce8d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa84a490d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9a94a10 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac754bf4 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaef5e0a4 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0c59c08 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0cdbace ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb30afd85 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3587b06 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3bd0fa1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb40e833b ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7aa8101 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcf77712 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1b1bb63 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1d35221 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc289344b ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc38e1f83 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3c7476a ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9021f3e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca6ec3b5 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbcb01d1 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc90a611 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc936585 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccc799b4 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcedbb00e ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceedb51d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf0b8d61 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd02c04e8 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd21ebb80 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd689654a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6b9e323 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9885305 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda288473 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4f7d1c5 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7aa078d ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe891f85a ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9416efb ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb3e942d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebfc639b ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedda1725 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8885218 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa23038c ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa3ea9c2 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa8f428f ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfad595ad ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdcb20fc ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffcc405e ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x212543d0 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4500dd5a atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x754d6c6c stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x04101c4d brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x20123000 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x30ee9204 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x44cec2bc brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47d03dd9 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5b6f0b3f brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x70c02bdc brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7416cbeb brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x766f047a brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x83a59041 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbfd1e3f5 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf76ff08c brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf8009d88 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5248c36e reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x8a76a989 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xb8fb5bad stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x07b6f48b libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x113902f9 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x13eec957 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1aa033e0 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x246a83b0 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3a8abf20 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3afb045c libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x512f79c8 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x547b7fc6 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a176ff8 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x957c76f0 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x99052dc2 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaea8b460 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb5569572 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc1d27a17 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc52a60b2 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc645c744 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc820c26f libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcc3719e0 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde15ebb3 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02705560 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c778d2b il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x120ba83a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13a7d412 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15c0141f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17686809 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19c7691f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bf9cba2 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fd9786c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21e89ded il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2366cf0a il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28ac98ed il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b8485da il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bdba7ae il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31241f22 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ba8712 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33184c7d il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3812c23d il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39902c3d il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bd584a2 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dd4ea78 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42f730b0 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44128bef _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4aaf3ab0 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4be2f724 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c477fc9 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50153b16 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57943c72 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57beee97 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59062e35 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d04bc6a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f56f585 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6530dfcf il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6712eb32 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67210497 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e04c13a _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70f703eb il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72bd1c6c il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x742b4c25 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b5de7dc il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f76361f il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8002e7ff il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86822c5a il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ab9bd17 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90a5a2af il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95a69852 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99cfb774 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b9fea6a il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bb28f07 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c97f33b il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cfc803d il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e9c29c7 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9fa78d47 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0c97538 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8f4e9d1 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9954b66 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9c6cf7f il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xace6769d il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb08849d3 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3755db3 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba0249bb il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdc3a4e3 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe50423a il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe56c88d il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1e72b22 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc586f0a3 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5c3ed07 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8f2499c il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd8db29a il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce2ee7cf il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfe89df9 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd086b56e il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1d2fc30 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2f41e70 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd846d801 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8d7813e il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda3c26d2 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdba6c516 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc3adb97 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf5bba8e il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfa9351b il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe224ad5f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3533da7 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe53e8e31 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea43a22e il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeee9ffc0 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf115d076 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2b46d64 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf575cc8d il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf58c5046 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5b99131 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf73752e8 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7f0724c il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa214ed7 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb2a7ef5 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcff964f il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd21d410 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfead312f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29a03a30 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x45279131 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c818a04 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ee6e505 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x609737dc __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87ca3c5a __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe2c460a __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf71b4be6 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff84efbf __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x00df756a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x154310d9 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1d59548d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x243617f2 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x31a0cf5f hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x31f50aa7 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4171350f hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45ba9dce hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c5d9153 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x743632d6 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78e6b372 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d574699 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x84ec516e hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x94c993ac hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x97b7bdb8 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x98bcc1a3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa46fcc44 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa0f0e26 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa6984df hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbde47839 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbedd3c14 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc264b446 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcbc0365f hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xde03ad32 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf86232d1 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x086cd698 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x102c905b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2097db9e orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2ff52410 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x30217d1f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4a996712 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x72ca025e orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b4baf5b orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9a7d4574 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa9b74962 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb01b8f5b orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc5e95707 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xccc6b22c orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe2ef5f5a alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe4bb619d free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x7b49f4cd mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0f43b077 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04729977 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x118b7989 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c3f67a0 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e327e45 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20ba481e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2282a30c rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e4e150c _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e772e92 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e79f649 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37136f33 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44cd9a5d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bd3a1a8 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x508e7f28 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x551730cc rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56124523 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59426646 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x598ed970 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5eabfb85 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x602afcbc rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b7093a2 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b72f3a9 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8948b994 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d25192a rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91f2274c rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a485e3e rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2040d00 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1b987bf rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb89150fa rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba11885d _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaf31d24 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc3f5f71 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3747a28 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc95c44a6 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd45ea9ad _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1627e7a rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe663f10d rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb576f5c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebab8d58 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf52ac362 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6d933b3 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe32e1b6 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c37ac47 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x46988a74 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x60284567 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa69ac0ff rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x18414079 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1e98adc9 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4e5ad88b rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x95de1cdd rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02ff624d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0cbab564 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x125349ae rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19d10250 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2617100e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bb8865b rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30ab4c76 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x366957d3 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41f2655b rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x484a11cc rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a71a499 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x670f50dc rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73600c15 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fef8a93 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80b6e852 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8746df4d efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x954693c6 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9711b7a2 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c3c6578 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fc696b8 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0affad2 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4213421 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf826f45 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc86d322b rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3379923 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd398fd98 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3a390ee rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd841290c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeab71121 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc99fd22 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x3cc6f3e5 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xa1068468 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xd7268957 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x38e4e269 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x006356bc rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00672dd4 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0af42fb2 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b3c67dc rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16cd1a90 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17d2f739 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18e4a9a9 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a14cf62 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1be7f0ab rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c4c89c5 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x26fb55f6 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2efdeba5 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x306a71a7 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3189d872 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35e66e17 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x366e5db0 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3724e4eb rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x390a73f3 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x39decd93 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ae75652 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ed4f9dd rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40bfe81e rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x436ffd8b rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45431839 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x475afed9 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47e57ca0 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d5888b4 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53e7fef2 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59fc6673 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b74b04c rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5be5e06f rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6079c220 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6155802c rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7125728a rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x745f81ab rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x756c1145 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x802222e0 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84cbc448 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a1842b2 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9050da39 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x961db453 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x992361da rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa137ddda rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8216753 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb08a2e06 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbcb7f708 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc049fd6 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc6af705 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0c63754 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd19e9766 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd82365fd rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5d4cd77 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6b4aa0b rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6bd53d1 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeea6af45 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3f2f2de rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb6e4656 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x142f7855 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x191d9f9e rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2277408e rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc8a0b6b0 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c6e73bd rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33ed7631 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x676ba04f __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a9008d5 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x705e7940 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x79598ea3 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b28b8ae rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7be8d00c rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x902d9a97 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x974a07ca rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa022f354 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa4a525a7 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa57127a5 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb145f6e4 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc644528 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe2aa399 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbfa0cd22 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4fd6f32 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xded9c577 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe898bc9b rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x208a345b rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xf572608f rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2718963d wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x884c9be7 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xef6c6e41 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf595d1f8 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x478615ec fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa72cf6b3 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7f5dbe8b microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xdc3e6b7c microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x13f1a2bf nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x69ab9d22 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb750d411 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x1380269a pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5c6b701a pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe03bdb1c pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x48b9e04a s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9ff861b9 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe9c6c278 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf01e1be2 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x02aced57 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x04603576 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x140c41d8 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x54d8531a st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x67eb8659 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xac1647d2 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcb43ca84 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xef2fd320 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf466285a ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfcce95a6 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f5447c4 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1769b161 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x265b3648 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x299e182a st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4c62c2b5 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4ea947c5 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ca0147e st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e8949ef st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6583e3a4 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x68fa524c st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x763d94d8 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9446c0d1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab30854f st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1818ee2 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb3b3e244 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc4c9ce5 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce896b50 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcf9b0f32 st21nfca_hci_remove +EXPORT_SYMBOL drivers/ntb/ntb 0x072126ca ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1b264f00 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1ccccf7b ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x208b2f61 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x29ddaf09 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x2c189e70 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x79ecd0ef ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x8346e7cb ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x83ebff00 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x84bfe851 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x8689292e ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x87b96814 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x8818ad29 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8b4b4890 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xcbdf4295 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xd61a50fc ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe11ae537 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xecdcf5bb ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xece3c806 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xeefab4f4 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x32e35d60 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x40c6cac4 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x00103ab4 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x07434304 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x077bec5d parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x09f19ca4 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x214234b6 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x261aeee9 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x2727b5dd parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x2eb3f996 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x415598e3 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x496b4759 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x520b202b __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x55860972 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x73ddaf95 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x74dbdec5 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x798aca00 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x7acd9220 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x80a72b1d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xad001349 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb04f4c7d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xb24eb8c6 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xba0851b2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xbcf45ca0 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xc4e7d8d8 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xc575f17a parport_write +EXPORT_SYMBOL drivers/parport/parport 0xcd91d1f1 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xda550a34 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe756d80d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xebeccdb8 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xf1699efe parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf1b52bbb parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xfc8a508b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x0ae7c108 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xda039baa parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x08ed2090 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ba824f4 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x13130837 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x156e715d pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x21418bf5 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x24ec3a15 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2b7dce09 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4dafc073 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x691fda06 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x70ee932b pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7a37b399 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7e485ad7 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c360709 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9ba04afc pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa3b5d2a7 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe50ab15e pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xec2f9b31 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfe256410 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x19660fc0 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4532c138 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4b82ec07 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x61cc6e64 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdf5228df pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf040ca1f pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf2311a17 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf40f9e34 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf7dc4b01 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfe7d0118 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x80f71d1f pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xff4418d2 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2565f663 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2bdb9b01 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4127051c cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc5e275d1 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy +EXPORT_SYMBOL drivers/platform/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0x461ba3cf wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0xfef8d707 __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x12656ee3 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2b8a8a8c rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x443a9ffa rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x44f1219b rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b9a97fe rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7e1aa2c9 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x936e48d4 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9745434f rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d5ed896 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8ae1014 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbac281b3 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd0e009fa rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdd355c95 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xea1cc876 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xefe39f56 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfab0a315 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x1c41765d rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xffa4f911 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x10791fde NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xeb61cb1f NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0582f754 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2dc6105e scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x78ae3736 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb0756701 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1011f859 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ca5dfc6 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x220d230f fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x29f0a5b7 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3e9ef124 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x75e8eae8 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x78625760 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x957cee2f fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb400f231 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe7ccba90 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf6772c87 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x045c0512 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x053dd400 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0be55b09 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0dd7c6eb fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1171f775 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22234feb fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f9ffb6d fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e63176 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e0c6553 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d7b5e65 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f3afb7a fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x516c98b0 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5196a70a fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x594913aa fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60aa91d1 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a6ca047 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d89b7d0 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x848fff2e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x876e8fac fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87cdc6a7 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c176999 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d389a80 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d6f91ca fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9537c810 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c7ca0a7 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa166cc3e fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1a0491d fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7aa6b6b fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9eb3906 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadd33671 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb23e326e fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc67c0d9 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbca030c3 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc47038b1 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5839d6f fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdffc242 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xced63834 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcff6089b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd32db602 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3866708 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd49183b0 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5717076 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5de8573 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd80a1470 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd83875a7 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda8ff661 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe36efbbf fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5667e0c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbaed433 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbb855a0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1c12c62a sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9894adf6 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd6c75f9e sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x12558307 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f5b0233 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3292c51c qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x48c2e746 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x636fd5e2 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7905384f qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9221b874 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96f5a059 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f075f7c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb36bf161 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe3ff9a80 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe45d6510 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xffdcb619 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x229becd9 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x411ccf1a qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4d1c76f5 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5a331477 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x64ea4c6b qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa614bae1 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x58b05bd8 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x912ed95a raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xe2f8c4c6 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02a7459a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x117fb7f0 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x121c5503 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c336ae3 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29b2ffc3 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x32fa74ce fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x37725e59 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c27d87a fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65a755ec fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x768bc144 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x899b60a9 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6384ac1 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xacbc4cb0 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb207f683 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7bb2ad7 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee76007f fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeff66347 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c6a92ba sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10854757 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a89a376 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x34b1f27e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c7a4976 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x409b5833 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41b1df71 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44e40019 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4eb78624 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ef6102a sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6170e888 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66f2841c sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73c6c1b3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77a3becc sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8b74d1b0 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f29fc5e sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa2958c41 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4e2c1da sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xabddae2c sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb144c681 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd77c823 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4e2c0f9 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc84e5da9 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9051e65 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9a0854e sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb0ac8b3 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5c640fb sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec3a8796 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfffabe27 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x249adb02 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x69100e70 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x93ee4000 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x983974cc spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb8e4b022 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x11c43594 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4343f517 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7eb1ef9d srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x803751b4 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf49a26c7 srp_timed_out +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x86d64eab tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xe36737b2 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x14136dd8 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x37306e76 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7d217501 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9d52fff1 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd2bf201c ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe6346bf3 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfc1f9062 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfefb0d7d ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x7c3d3e8c ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe14982e8 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x065b2a94 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0da0316f qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3403105c qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4fb40160 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x98e28ccf qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9e073336 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xab56eb71 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb5ef828c qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbccf6fba qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf38cb793 qmi_txn_init +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0534ae8e sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x06af89d1 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x088e4886 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c1dba8b sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x21579379 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2452300b sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2c530da8 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3abc76bc sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x43b761ac sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5cf32815 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e226c23 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76f80eb2 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x827a7f44 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85cdf738 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9832881c sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e1b9bdc sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e3cc7c4 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa86d3bc4 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa8ab8b2d sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xad8c2a00 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb703d196 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9ad06f0 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd06a8fda sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd2fadfac sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd399ba27 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec0d9ecc sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2154c004 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x30811fff sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x422dd004 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x490815ca sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4a4c6bb3 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x793846b9 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7c60e04f sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7cf2376d cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x80efaf7d cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8150f888 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x89bb232b sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x96c4abe5 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc4ca66b8 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc9ba208e sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdbbc0f84 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfe13ad07 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x0599a1af sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x010ec106 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x03f0756e ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x1e3a9cad ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x23812102 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2e437bef ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x487a3022 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x4ef41b8f ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x5678785a ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x57ab90e8 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x62d06272 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6b55946e ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7912faa8 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x7b974bac ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x813a0e84 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x922cba6a ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x95d423d5 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x9fda88c8 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa2aaf755 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd2f9f4af ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xd6095be4 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f0548d0 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f05cc25 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x232b1e31 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a8a32b2 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ad2e4b4 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50130d32 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x50b86ba2 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x522c6c61 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x560d43ef fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57abcc32 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b9c4a58 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67b3e2d8 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6cdd16d6 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71e818a7 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79167e7f fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ec3dfac fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x915819b3 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9af58bdd fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb94294c4 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfb19f90 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6e3fd41 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb4b40a7 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcefdc110 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2914f04 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeee13c24 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x302c5e0c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7a60e69a gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xad314d4c gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xedde7932 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x20771126 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x3e43c07c sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x402400c2 videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xa0de4c7a videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd2eff54e videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xf476597b videocodec_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x018f9828 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0287f0f8 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0406702a rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08de2d9a rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bfbafdb dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11e95432 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12809019 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x219c9be9 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32bb2452 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35656261 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bbda299 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43b5ec03 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4673dc59 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ba1276a rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c6cc2a5 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cb97199 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x539cf841 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58d85018 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59565581 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x608086b3 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d527d29 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d5c77bb rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7995242d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f1673f3 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8292d819 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x835260f4 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e9d56a2 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93412daf rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99c76e3a rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ad35b9a rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaaa6d23 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xadedbf95 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaecc0992 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb65b31a9 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6c1f2ac rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf45493b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc48a5c17 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccd10f40 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce449cf6 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd34a144e rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd71305a0 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6638f87 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb54e477 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedf00b15 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef070fdd HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1830d4a rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1bce10c rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf75cb681 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf82d9305 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x040c7646 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dbfa41f ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x128a221a ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1779da96 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x188831e3 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ba7ab22 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x207e4bef ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f91116b ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33633810 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37d49bae dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x460349d0 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e926237 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52b6e26f ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x555f4cdd ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59672d0b ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6179ae61 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6478128f ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6516bfd5 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a35b6b2 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72fd4c0e ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8669d9e0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d8b72c2 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93093467 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93cc5b52 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0159ead rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa622d9bf ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa721a987 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa74c74e5 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9a8ca66 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabc1488d SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb06b3937 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb072956e ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3a540b9 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5916589 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6031702 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb648f6b6 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb038ce1 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdc2d200 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0ce409d ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcac5be52 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc354969 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xceb029de HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd54b777c ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd6753b0 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe04d91dc ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe34a2d85 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5645373 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec6bd75a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeda3bc81 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee7ff557 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0575e7a ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf49c40b9 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfeb31fa9 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0114e796 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b61b84e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x116664b1 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x135e4338 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18b5523e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c32ae08 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f5d9827 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2510805f iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33800eff iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45ba70c7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f4532f9 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f983738 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60bed308 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61a5d882 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68f940c8 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69f80293 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f149326 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bb0b5d6 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ff8be5c iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dd97efa iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ee889ec iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f55ac1c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbebcf707 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf1a3c36 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc298c574 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6da16f3 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8b06bf1 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xccc3ed02 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce5c32f4 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf58ff55 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd25d1422 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd26bd52b iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4e75fc6 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5203000 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc44303f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd88a704 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd96d9a7 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe56ba68f iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5e8b17d iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7ba1f38 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec745559 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf18bb4c1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8ba097b iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfad734a3 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00732510 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x02e9ca88 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x03fa9aef target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f3e2823 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1451be11 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x149e9e9a transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x155e0941 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1816efd2 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x19c47e68 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ab6fd81 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x20fd7860 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x22526e58 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x236dc836 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2521017b target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x25479656 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x27e4e0aa target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x27fab77f spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x2da0da32 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x30eef729 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x312d8566 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x327b6f57 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x34210b1a spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x39e63f06 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3add867f core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4226eb9c target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x44e5c484 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x46e01453 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x47c59db9 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f6e90e9 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ca5a50 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5762146f target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x583b8d13 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x599306f5 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e7724d7 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x611e156c core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6872f689 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f0bc2cd core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f497563 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x772f93fc sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7824d91e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c504389 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x838a585b target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x84d3c178 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x95205339 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x96a5e308 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x984b04f0 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9aa77bc4 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c13b4d7 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e128fd9 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f3d331e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f5558a3 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1715613 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1cf63a5 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xa24e2fe8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1cfec8f transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb22d9372 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6057fcd target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcfa1606 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc340f3a0 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5abb5b8 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc64a381 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xccd12269 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd139a099 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2078c41 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd35148b4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7d71279 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8e3a23f target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0bdaf1e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2fbcdf1 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4ea5985 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe729242c transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1e757b1 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf80f1d89 transport_generic_new_cmd +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb55e582f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xaaed0949 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7857cf8f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x033a7d7b usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x20f3296f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x41495c52 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4b019e91 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c1b1b02 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x886c1dfc usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9718fb45 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb65f7020 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc855bb91 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdc944f81 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfaf4330d usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x001010f2 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x933c3890 usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x09d6a3f4 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2c2beb52 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3d4b1fcc mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5406f0c9 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb88de398 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd2a402fa mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xecdf892b mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xed48214f mdev_register_device +EXPORT_SYMBOL drivers/vhost/vhost 0x7c33d020 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x9a282c7c vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x507df321 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7961b8f6 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb80c88eb lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcac78c96 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3c0280a4 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5cc39a8b svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x66fdba18 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa735b2d0 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xae47b6f3 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc71ef1a3 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xde678db7 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xb544bfa2 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x5f93f240 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xb76ba50a sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xcfb77b7c cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xb5462d51 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x095b7104 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0bf3220d matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2a8052ec g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x22e9e8f8 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x27b68d97 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x41bb2ac1 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe6fb720b DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfed5eab7 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xaced74fe matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1f92df09 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x46de3deb matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x93dac27c matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x962f966c matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2e84272f matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8793a9af matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x07152530 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x64a7702b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x73145092 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xda78706a matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe565d8c9 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x11f6fe08 vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x64218d27 vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x6f254455 vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x8859c2c2 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xb4753428 vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x14705bf0 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3ff7b738 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdb7b3e13 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xfce61564 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x67ae29f0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe568406c w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x54991f82 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5c7c493a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x44a4863a w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7672aa7b w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x9cbf028f w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xdfea7e4a w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport +EXPORT_SYMBOL fs/fscache/fscache 0x0af44a83 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0b1c6ade __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x1e1de227 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x22daca5e fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x23e9c0d9 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x287acba5 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2c718f2b __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x312fe7f2 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x33a37a40 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x3bc3bdde __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x403a85c4 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x4559326d fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x46fc0ca7 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x499dc5c1 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x51a8f5b9 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5a092a2e __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6c4ba91c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x745b85f7 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x75ab7440 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x7dbf826b fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x824b3add __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x86379ded fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x9469047f fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xa3cb47c6 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaaa6207f fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xb6dc41c0 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xbbfadbd1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbf610ab0 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc1e98590 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc225d856 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xc22632a5 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc8153450 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xc9ec9fc4 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xd052842f fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd0b8d167 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xd56c15e9 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xea268bf8 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xf3012a50 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xf3fc9074 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xff94bce5 fscache_object_mark_killed +EXPORT_SYMBOL fs/netfs/netfs 0x20a2dac3 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x4ee23857 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x81e435b0 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xb6578cd2 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xc2a1b06a netfs_write_begin +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x078cf651 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x311ab336 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x541bf109 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x71c5d001 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9d430e03 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe0a3a406 qtree_entry_unused +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x33693a4c lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x5e0f218f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x38d7569d lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x799ee2ab lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcf4b7cae lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd091a3b7 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf10cfb89 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfb5aa0d4 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x2cde7c88 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x2ebc1234 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x456dc683 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x6f0a8fb6 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x028c90a3 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x04b7b49d p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x050b105e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0f847bd2 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x130b4563 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x17e2deb3 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1cf41b20 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x29409f8b p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2a98e96a p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x338f0915 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3fb26030 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x438f0d03 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x44960afb p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x450230a7 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x4c99dc7e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x5688c92f p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x5dd27fed p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x64522eb9 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x6baca455 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x7a7b3b83 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7c03cad6 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x8c2cc6ff p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90b8b742 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x956970de p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xa7e15b41 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xa86c9cc9 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xa89b75c7 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xb313a40f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb7c40d82 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xba81255b p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xbde8ed59 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xbe4b71c3 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xc22230d3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xd33239fb p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xda11c61c p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xed741a6a p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf00027dd p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xf52db92f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xf5758351 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf9401115 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfc588272 v9fs_unregister_trans +EXPORT_SYMBOL net/appletalk/appletalk 0x04204f81 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x418e99f2 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x42174c30 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x833e8a2f atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x34a156df vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x38cd9571 atm_charge +EXPORT_SYMBOL net/atm/atm 0x406bf45f atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x41cce7cc atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x468b5b26 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x494cc83f atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x5a50b59a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8095411b atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x82a4bfd1 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb7bf1a8c atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xb8a95064 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xcf9d4fcd vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd55eab63 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x085915b6 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4bcf57b2 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7c307f0b ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x90715c3a ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x9143f936 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x934a58be ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x9f05e998 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xaea57dd8 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03421ac8 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1568cd23 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18e07ba1 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cde3c14 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dc79bb1 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2248b97b hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x24790df5 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b1ade1d hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a95e775 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e743be4 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3eaa8a26 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x441a00d8 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x454e4747 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a049800 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b9cee09 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53fbd52e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b089e6b hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f770669 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fffbee1 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x651c798a hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75e671b9 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79170629 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c2f9102 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x874cddd1 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8972ceb9 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b6bc492 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c865cd7 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e4f566a hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e663f99 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6c04ba9 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa733b8a6 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xade7a3a9 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf41dab9 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf8131f8 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1d13e63 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc45f5033 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4cd966e bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc734c36f hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd15abde9 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd492015c hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5b47aeb hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda250dfd bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9e8217f l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec01fdf9 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf65fd58e hci_get_route +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x57bd48ae ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x57cbf453 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5dcb9ff0 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb6565fd5 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd6814096 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xea90a03f ebt_register_template +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5c4168fe caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x7e8dd3e9 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xac06447a get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb5be7628 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xbdf2eb5b cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x33de1b20 can_rx_register +EXPORT_SYMBOL net/can/can 0x3a9aa9a3 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x42516be4 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x95648a91 can_proto_register +EXPORT_SYMBOL net/can/can 0xa7c4e963 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xe0227746 can_send +EXPORT_SYMBOL net/ceph/libceph 0x01da9434 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x0b8da81e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x0d8a0ac5 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0df26d5d ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x0f6020d8 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x12a2ab34 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x14e488d9 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x153ca6a6 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x19b7d50f ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x1bfde041 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1c8de4b8 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x1cb589d9 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x220a25a7 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x22d361a6 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x25196b84 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x25a1a2d6 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x25b10fdf osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x25fa2510 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x328a60bc ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x369017b9 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x385f58e1 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3c06fd3a ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3de967d3 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3f4a6235 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x41561822 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4755dde7 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x492f6c70 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x4b53dfb5 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4f336b8e osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x4fbb60b5 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x539197bd ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x5431ea58 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x54474fa4 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x544d5026 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c93e3c5 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5ed8f11f ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x5f040182 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65029df3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x65933480 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x65a40287 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x67cc4fa9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x695fcac1 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x69efc6bf ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6a027993 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6bf48bcd osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x6d3d8ba1 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x6e2d0ad4 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x753d7f8b ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7731937b ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7b1635a2 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x7e22ca12 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7f1e3f3c ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x8061604d ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x87bf8aca ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x8ac78847 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x8ad73e3c osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x8ea04327 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x92c910c9 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x9649fdfa ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x9778af49 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x983a837a osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x986cfb46 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x99a20513 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9d0b0fa9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x9e2a4ec2 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x9e3a2623 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa953e116 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xab38c860 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafacaa8e osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1f44041 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb3bc8b27 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xb511a659 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb54badc6 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb760e1e1 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb82fe820 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xbb12073d ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe8accee ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xbfd82e89 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xc187d550 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc9496511 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcc3cfec8 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xcc47f5b6 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xcc778af1 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xcd402d3b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcfd47f53 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xd08b7fd7 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd8179dbe ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xd8971d39 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xd9daa473 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xdb1652f2 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdcd07899 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xdea5e8b7 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe03b23d8 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe08e2586 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe500f9b6 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xe6f363c2 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe6feca72 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf238a544 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xf90db5ed ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xfcf9fc67 ceph_con_keepalive +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xdd75c809 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xee9283ba dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x7446fbe2 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xcf8ecd6c hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4f9ad020 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x76779831 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x88cf5e35 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8d628c62 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb4dbee8a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe0a8c1da wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x2fd08e99 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x4e90879a __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xc8fdefae gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5df8ab1e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x658e004e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xacae5bc9 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb24af70d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x19c99d6e arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x25ae2004 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x76fbf27a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf9f9b510 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5524f3dc ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa80fe8f1 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa8cbca86 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbd145eae ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x1731cc1b xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7c2ec53a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x7b712000 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0ccccfbb ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x30f19abb ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3e9b9eee ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x516acd3e ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9b43feb2 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c0dc2e2 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa635f641 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe21168c5 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe66ef834 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x106e52ad ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3bd91b81 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd89970a5 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7ff59ad ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x0f9d0b4c xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x52c13b71 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1d54de58 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa1faefba xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x00e97d8f lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x1f98fadd lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x365b61e8 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x52e60db5 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xabd16de5 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc798b8f9 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xca90f939 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xf8474bf8 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x19ed9080 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3a3c4e34 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x42fdb272 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5fb0e1d6 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x62d7d2e0 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x916675f8 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xbcf8b6ae llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x01a89bed ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x039ccaf3 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0a00f8e0 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x0b717809 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x0ceec22d ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1039bfdd ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1114aba9 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x14874498 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x17ebd6a3 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x18a11ddf __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1db0bd60 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x21a6c549 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2668ae91 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x30dd6e5f ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x32b9c588 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x338a6dd8 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x350e8e15 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x39a6583f ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x42d5a40d ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x42f509a4 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x43080679 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x45d13013 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x4a94da73 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4bcc4193 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x50051082 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x539c5ac0 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x5598c9c8 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x561eba55 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x56b51168 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x58585e8e ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x592ecb76 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x5ba0ee6e ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x615439ce ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x64e15445 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x702b272a ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7b6b9110 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7f431e86 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x802b34bc ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x830d6260 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x85879201 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x86c129f0 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x87f3466d ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8954a703 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8a486b92 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8a834cab ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x8f62d3dc ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x90bfbc6d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x925392ae ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x93b5abd0 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x944e86ed ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9665940c ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x97bd6fac ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9e3f37cd ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9e791feb rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9ec04db6 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xa32fd751 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa337a789 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xaf00219f ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb0d79995 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xb0fe5803 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb1fe35f4 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb2dac0b4 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb3969219 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xb4518371 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xb6d835b1 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xba5c57f0 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xbb30861c ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xbb388f29 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xbcc18a5a ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xbdd3f0ca ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xbfb6735d __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc11985cb ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc238db02 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc629db5f ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xd1af1ccc ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xd5413f5c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xd77eb586 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd84c5f24 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xd88cdbbd ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd8f0b410 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdaabc860 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xdaf452a2 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xddef8ea2 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xddf4035f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xdec3cdbb __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdef10591 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xe50dae93 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe56d3914 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe6653349 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xe718dd12 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xe837d868 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xe9607ec9 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xeb888350 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xeda798ff ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf2d39e2e ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf31290a3 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf6763605 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf7d4ac48 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xfdf458ff ieee80211_queue_stopped +EXPORT_SYMBOL net/mac802154/mac802154 0x0ca553e0 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x10fffd0f ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x4acffc74 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x531d871e ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7807e835 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x8d16c5be ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xa4afcf7e ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe18ecd39 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x004fb6e4 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x062e6053 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49def338 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53b45bc1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x565bfdc7 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x57d15363 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70af3f01 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x723bfe1c unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79fe4ba8 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x92f733ca ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93fdbe68 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ff854c1 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdaa91251 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe8b2304e ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf09cc8f3 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6e04fcc8 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0b758ddb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x2d526fb6 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x90c0b64d nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9831edb6 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1acceb4b xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2bc32ffc xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x50e4bd05 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x7b0a2ca8 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x8803f0a3 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9ba9077b xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb9caaf6b xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xbef8ff7c xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd0f672af xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd2aea392 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0691d1eb nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x0ee88145 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1b4cacba nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x1c86b261 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x26008a5b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x27bccb8a nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3483848e nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x41f50902 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x4aefce5c nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x5af6a692 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5d46ebdc nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x79603273 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x804fe00e nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x8110d41a nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa832247d nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xab225154 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xabb6cc93 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb4f7b614 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb59da10e nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd4999bd3 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xead31754 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0f1b1786 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1f976688 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2368cc86 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x3ce9538c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x44bc696a nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x44bde267 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x558d1900 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x58c6cd95 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5aaba779 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5d23987e nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x67ef7ced nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x6f5dc27f nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7928b085 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x7d48d5a0 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x886b5244 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x8b189b4e nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa140110c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xb1ccb23f nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xb5e31335 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb83603a7 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbace3c5a nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xbcf05b1d nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xc5b5f2ed nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xcb0e3b7c nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd8221f83 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe4de28b5 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe9db0d15 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfd26a47b nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xff952b21 nci_core_init +EXPORT_SYMBOL net/nfc/nfc 0x0078448f nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x08e25719 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x15b78bfc nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x1a3c6e2a nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x1a82bf27 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x278d2d69 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x2e3b7697 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x432a10b7 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x4c77948f __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x51c4c63f nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x5a658f3d nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x6401f253 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6a7968b2 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x7ab1ce80 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x81c36d4e nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x9ab13f38 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xa614e7e0 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa6d23f22 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xb6ce52c1 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xb8e1d8f1 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xcf3afb98 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xe166934b nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xea7fe57c nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xf922a1a1 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xfbad902f nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc_digital 0x48890d83 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x4ba1a87d nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5735b3c1 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfa06ec09 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x099f72d7 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x0d755da9 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x2cadc0b2 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x656d5394 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6fbd3b69 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa032da08 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc31fea0a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xda24a07e phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x04185dd6 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x06abe5c6 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2712ebd6 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x35654d1e rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3719fa2b rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x487b4724 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x56743ae2 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6750f047 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f64845f rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x72267e3e key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8abe680f rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9220e80b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x94868a26 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ad65a68 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaeb2f914 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc973fceb rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xec4ed180 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xff2017b8 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0xe3dcb9d7 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x80cb3abc gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8e5733a4 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xffcdc414 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x823b51d6 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x92b35810 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x92d70c74 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa4204aa0 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x0f8c090a tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x3f1d2eb3 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x6624ffff tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xb92c283d tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x901b2cd1 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0182f54c cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x04130807 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x04a286ef cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0fc1dc9a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x138df1e4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x145924ce cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x158a77bd regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x18598a04 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18f8d959 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d20169c cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x206f6c61 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x20d3f9c0 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x21b27e32 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2ab60eb7 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x309de197 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x33271cfa cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x35985e7b cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x3669f797 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x38b60115 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x3a60c8ce cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3b71c8bf cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x3bb308fa cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd25de5 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x427dfa3f cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4615be06 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x484ce0c9 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x4aeb0bdd cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x4b9950f6 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x4bbe9d3a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4cbe4322 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x4ee927b5 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x51f44bdc cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x536ceecd cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x5bb2aa9e cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x5d595dbc cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x5df1765a cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x62505904 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x6706ade3 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x677ea1eb cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6c09a786 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6c5cb238 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x6cf74c39 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x6f7853b4 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x6fd13add cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6fd6653f cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x6fe79ce1 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x7369b9e0 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x73e24cc3 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x75f624a2 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x795686a2 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7ac4a67f wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c73eacf __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x8033be10 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8e839056 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9495590a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x997f348d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x9ad9c4fb cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa2686913 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xa75c85ad ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa8711740 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xaa73c469 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xacc6177c cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xad9a2d06 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xadb216da cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb1a1b510 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb2c51162 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb80f137e cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbb103df5 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbbddad10 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xbbf8b6e7 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc28b2a27 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc446fc69 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xc49d7306 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xcbd7994b regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xcc15b963 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc49fa2d cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xcf3382ec regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xd38478d6 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd61fe646 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xd64ea002 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xd66ecdf5 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd9205409 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd9d1b7a7 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xda460a7d get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd2b0855 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xdf5b2173 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe122f867 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe34d6de0 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xe6bd8691 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe73d1468 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe7bbc35b cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe8999814 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xec02e300 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xecff7fdd wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xedf99e00 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf09e1337 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5a457fc cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/lib80211 0x0d8a1011 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x53a04ae1 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7049f68c lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa11891c9 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xc0963267 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdff0ee80 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x3afc8b54 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x9d28bdd3 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x51fae47b snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x564412a1 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x72d5d7c9 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaebc7592 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x099baba6 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x036bbd1b snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x0b64bcec snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x253d8da2 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2869e499 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x2df4f92d snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3b3249b6 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x3b3302ec snd_device_new +EXPORT_SYMBOL sound/core/snd 0x44084f6a snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x499d453f snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4d35d15e snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4e6d8ef0 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x4ea53d7c snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5374ca5b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x58b056ea snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x5ce87f39 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x6707518a snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x679da18f snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x6ae2926c snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x6bdc743a snd_info_register +EXPORT_SYMBOL sound/core/snd 0x6befa21b snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x6e5414c8 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x714f1bb9 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x73312cda snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x787454f1 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x7aec30d2 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x7c183257 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8df065f0 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9b46276a snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x9c9248c6 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0781f67 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa0ff91de snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xa3dd1cac snd_register_device +EXPORT_SYMBOL sound/core/snd 0xa68ae0d5 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xa7b74b5c snd_card_free +EXPORT_SYMBOL sound/core/snd 0xac029fce snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb64b437e snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb7b51645 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xba241193 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xbb06d7c9 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd0fec2ea snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd2ba2983 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xd62427e2 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xe1fc59af snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xe5390c30 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xe60e7f3a snd_device_register +EXPORT_SYMBOL sound/core/snd 0xec33996c snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xf015898e snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xf435ffec snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x5f45e7c2 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0x7ca60c99 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x5a8939a5 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0de54bb0 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x11454e9d snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x150e21d0 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x17020c93 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x19774cb2 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x1ca4c130 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d6cd938 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x1f75f396 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1fe41661 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x2054c4a5 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x22447ef9 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x2386d1d2 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37b57f8d snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x38988f96 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x38b43123 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3e693bfb snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x41cb7d41 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x43690e6a snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x48d0175d snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x492e39fa snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x4a667914 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5581e7c0 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5fc17ed1 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68f1e48b snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6e7c2264 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7ab1bd46 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x934bbf91 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x982d1eb8 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa05622e1 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa194a8a3 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa26bea7f snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaa74bfda snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xab328c25 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb6d6b4fc snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc115c629 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xcd9fac68 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xcdb15191 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xd2e704a5 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xe50ad7b0 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xea22c754 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xf0c66998 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf233eefc snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xf5a34d15 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xf68736c2 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf79a9f37 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xf848f139 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xfb7dc96e snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xfd5a1bf4 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xff6bb257 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0cc79d93 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1be96599 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x24dad917 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x379054f7 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x37f9f64d snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3de97d2d snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45ec1fe8 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x46fc56c9 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4848cd98 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x52f135b3 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d5a397a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x89ba7e8b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e4e9796 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xba8440e6 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd8e69836 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdb6faae4 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc1b3874 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf985b90 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3556346 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3e00827 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0x99e97acf snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x000f672d snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x07b97c80 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x0d6d5f40 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x239f5800 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x24d347cf snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x30d33340 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x46a091cb snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x58d648dd snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x8900a09a snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xa5dd0854 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xa66570d7 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xc3dfe7c5 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xce4e62fa snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xf8018b28 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xfd206e17 snd_timer_open +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xe89c29de snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x17b28789 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x39ca5884 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x42deba5c snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4be5a98c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9088e121 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa81b91c9 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba8df87c snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd6e936df snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfb39907c snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2e672649 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x30683f88 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3b05a2c8 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55c7c92f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6d8e6aae snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaa3060af snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xafef9d23 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd7f8a8ea snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf8769890 snd_vx_create +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x037be61e cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d011b2f avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26827fd0 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d04047b fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30a013c0 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3414e622 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ea44a37 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b1c13c6 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ec52d0d fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55d110ea iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x57f117a4 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76bd3df8 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c90c18c fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x80597956 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8727bb79 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8be62b6f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e76db5f cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93ca6920 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9700295a fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4f06bf6 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc20b3847 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc8dec22 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4ad469f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd728e3b2 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf327929 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe256034a cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3926715 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5cc16a4 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd8df48c amdtp_stream_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x18d3e209 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x48db37c3 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f5b07fc snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4fc64134 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x57ad1e42 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8a2281ee snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa1e158d1 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb90f3d4e snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc3a00ba4 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xca6c52ad snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x14569092 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x601d9f45 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x77d90c5d snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xaff64cca snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcb798784 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe23d49f0 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2eba0ed2 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x66d10a55 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x79816a04 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbf18178c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x51c52960 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd77ced2c snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x06831e3c snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x17e012f1 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc39a1628 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe30bf021 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe502b357 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf62d3050 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0f91319d snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x15ca6958 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x88f170b9 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa96df8a2 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbd8e9442 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfe3e84b6 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0010ead8 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x296aa1fe snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x41058200 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x66309fbd snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6a6ea25c snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa84cd6da snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaaf89eb2 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc634a13a snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd28dfba8 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf9774707 snd_sbmixer_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b07af89 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2f5b51b8 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49515957 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4f5d42fb snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x561bece1 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c620959 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9022f3cc snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x985711f2 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9db8dcd5 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa9a693b0 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba73e42b snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbcc0d77e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbe1afc97 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc4321672 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc685622f snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xca8b0c1c snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe28e0605 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x7ff607b5 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0d8f0892 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0f8ffa73 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4363d1aa snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa8433502 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xac03d6f4 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb1f52f5f snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb5fb3917 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc2cb5c70 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc78ef21c snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa219163e snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdbe31af3 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf5575a97 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x23cfece1 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2cfeb9e2 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34c85981 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x50b2ed3c oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5bf41676 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b096807 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b738ca6 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6bfa9af4 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75a3402c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x91271771 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c08a3bf oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3420bb1 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad58e42c oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xca896a2b oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda718c69 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdb8620bf oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7c64c2f oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8522d5d oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf948c243 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfac7cfec oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x006821f7 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x01c463b2 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x21b4fdf0 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6b1f39b7 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x92dab4a9 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x201a3340 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xfde2b7b4 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x679a3d2f pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8255ab94 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x53c61cbe tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x67a1773c tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x087ad9b1 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x93e375ce aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf718807e aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x1edacdab aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xaad6dc7a aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3acb2099 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7b55ccfc wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd5a50be2 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/snd-soc-core 0x53bcdfc9 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0826f19a sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x089faed1 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16a5a1fa snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16bf5864 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ca66563 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25d83204 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28ef3624 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c945568 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3014689f snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37d6d1e7 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d2edbf9 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d3874a8 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f0c3bd5 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x504399dd sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x550697e5 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x56db4191 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62e2ed35 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63dd7a20 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x64815e9f snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x690f6a8a snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f278044 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x71cdb8fd sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73d1e058 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78292560 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ad45ee5 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f7ea685 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x831ebc53 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8337b0cd snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83ab53d4 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8407e8c6 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86b0e566 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f017ce6 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fa8f2be snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x936f5b07 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x939e916d snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95e0b095 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97c73645 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa513d1f7 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaedb0fb8 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4dbf8db snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbdc20f97 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0560e31 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0f73d6d snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1d78c90 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca78b75a snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd135569 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3b8b618 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda31d493 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xded44dcc snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdf8a2400 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2437972 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe971314f sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf31ebf80 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf40d29fb snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6988b8c snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb2ff56b snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd3863f4 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff6e8f51 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soundcore 0x0ab9ade5 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x397e86f5 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb4874ac8 sound_class +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe1009ff6 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xebdfa74b register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x42c6e8a0 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x64a72507 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6552cf2a snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x73ec3580 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xad9913a6 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeb3b4592 snd_emux_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x904c3c69 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x000a94eb scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x000beb99 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x002b2e27 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x00695bec build_skb_around +EXPORT_SYMBOL vmlinux 0x007e8500 dquot_get_state +EXPORT_SYMBOL vmlinux 0x009599a9 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b0a398 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x00b3d272 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00f0ee46 fsync_bdev +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x011082e1 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x013da826 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x013f48c9 __x86_indirect_alt_call_r12 +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01593bd1 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01682316 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01b2bf99 skb_tx_error +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b6fb29 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01bf60ff tcp_mmap +EXPORT_SYMBOL vmlinux 0x01ca25ed pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x01da26d3 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x01e09677 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x01fd3c80 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023c7c80 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024ef3f3 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0285a7e6 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x0293efd6 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a41721 pci_find_resource +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02baf4f4 ip_frag_next +EXPORT_SYMBOL vmlinux 0x02c0da5d dev_get_by_index +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02ec266f xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x030d4d41 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x030d9308 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x0312ad80 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x03321b68 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034a54ad dm_table_get_md +EXPORT_SYMBOL vmlinux 0x034fa160 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x03595dff param_set_short +EXPORT_SYMBOL vmlinux 0x035bdd74 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x038800d2 _dev_notice +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03994928 pci_map_rom +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c28dcb input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x03c62bfd tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x03db564d try_module_get +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0409c670 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x04162231 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x0423c079 unregister_netdev +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04938329 md_write_inc +EXPORT_SYMBOL vmlinux 0x04a6aa37 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04db42f7 __x86_indirect_alt_jmp_r10 +EXPORT_SYMBOL vmlinux 0x04de6571 devm_clk_put +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ffb871 blk_rq_init +EXPORT_SYMBOL vmlinux 0x0507544e param_get_byte +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05161a09 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x05189678 pci_enable_device +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0541fca3 __breadahead +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05472399 __register_chrdev +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x056a348c reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x05873d67 agp_copy_info +EXPORT_SYMBOL vmlinux 0x058abbc0 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05a8654d scsi_print_sense +EXPORT_SYMBOL vmlinux 0x05b7fe19 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x05cab8d8 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x05d6f594 scsi_host_put +EXPORT_SYMBOL vmlinux 0x05dbc7a8 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x05e9ac45 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x05f27130 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060ed6ad neigh_table_clear +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061ef9b4 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0672b56b fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x0675e5e2 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06be5790 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x06c83de2 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06e4fca1 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x06f1ce47 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x06f6e818 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x0728d9ef kmem_cache_create +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07660263 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x077fe4e7 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x078fa9c3 serio_open +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ce60c1 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d8e1fe get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x07e63148 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x0820ffaf register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082ee47b uart_suspend_port +EXPORT_SYMBOL vmlinux 0x082f166f dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x083069bc phy_write_paged +EXPORT_SYMBOL vmlinux 0x0837d7e5 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x083a415a should_remove_suid +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084197c4 alloc_pages +EXPORT_SYMBOL vmlinux 0x0848fbbc bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x08496760 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x0877b2dc inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x087cbe33 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0884793e pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x08885a52 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x088cd70b vfs_get_link +EXPORT_SYMBOL vmlinux 0x089ea2fc rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x08ad2fcb pci_iounmap +EXPORT_SYMBOL vmlinux 0x08e9d5be fifo_set_limit +EXPORT_SYMBOL vmlinux 0x090fef4a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x091b551f fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x09302ccc set_bdi_congested +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x0940afc6 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x095c6a8d ihold +EXPORT_SYMBOL vmlinux 0x09633f98 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0987ea8d inet6_release +EXPORT_SYMBOL vmlinux 0x0988b135 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098f0147 blk_get_queue +EXPORT_SYMBOL vmlinux 0x0992958d may_umount +EXPORT_SYMBOL vmlinux 0x09988690 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a25fa9 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x09a353ae __x86_indirect_alt_call_rax +EXPORT_SYMBOL vmlinux 0x09a62e08 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x09a6f969 sock_edemux +EXPORT_SYMBOL vmlinux 0x09b75a1f rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a0f59e2 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0a1078c9 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append +EXPORT_SYMBOL vmlinux 0x0a43b94e devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x0a604c70 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x0a65830e mdio_find_bus +EXPORT_SYMBOL vmlinux 0x0a7560f4 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a92ec74 boot_cpu_data +EXPORT_SYMBOL vmlinux 0x0a9f4fc1 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ac8aa20 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad5d5e6 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x0af3c02c dup_iter +EXPORT_SYMBOL vmlinux 0x0b1940e4 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b2e91e4 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x0b4673ca get_tree_single +EXPORT_SYMBOL vmlinux 0x0b4c2ee4 bio_put +EXPORT_SYMBOL vmlinux 0x0b58abeb dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x0b5a8eea mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0b5f63a1 sk_error_report +EXPORT_SYMBOL vmlinux 0x0b6056e4 __netif_schedule +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b64a698 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b90acf4 vme_lm_request +EXPORT_SYMBOL vmlinux 0x0b9b204b __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x0b9e3349 input_setup_polling +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba977b6 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x0bb8d217 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x0bba5cf3 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x0bbfa6f2 genl_notify +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcdad13 d_genocide +EXPORT_SYMBOL vmlinux 0x0beafb8e mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0bffd18c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c15f650 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x0c1d1fd0 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x0c1d8a19 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c29aecb devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x0c34cd99 skb_push +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c3c30ad ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x0c40add4 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5c1cf6 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c92d5db ps2_end_command +EXPORT_SYMBOL vmlinux 0x0cae2b15 dquot_destroy +EXPORT_SYMBOL vmlinux 0x0cc45d7b dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc8ad7f sock_no_bind +EXPORT_SYMBOL vmlinux 0x0cceb319 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x0cd4dfae fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d485886 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x0d4e05e8 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x0d53a1c2 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d598f9c kernel_listen +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6f38a4 netdev_alert +EXPORT_SYMBOL vmlinux 0x0d7a9f93 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x0d7fd22a param_ops_byte +EXPORT_SYMBOL vmlinux 0x0d8706b4 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x0dabf28e dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x0dcca7da inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0dd4b823 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x0dd50412 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x0dfe6d7f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x0e0b4ed4 __check_sticky +EXPORT_SYMBOL vmlinux 0x0e151bb0 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e5373f2 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x0e570a5e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e8b1e97 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x0e8ef818 netif_device_attach +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eaa4387 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec00336 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed26b61 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x0edb3366 dquot_operations +EXPORT_SYMBOL vmlinux 0x0edf6771 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x0ee96d9f md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x0ef49eea sg_miter_start +EXPORT_SYMBOL vmlinux 0x0ef9bad8 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x0f05c7b8 __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f3f3ba4 register_quota_format +EXPORT_SYMBOL vmlinux 0x0f45ade0 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x0f4d86f6 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8bbd02 __scm_send +EXPORT_SYMBOL vmlinux 0x0fa9b08f xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb24838 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc78c15 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x0fc90f6c jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdb17ce block_write_full_page +EXPORT_SYMBOL vmlinux 0x0fdca8ad agp_create_memory +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x101c970f secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10499157 bdi_alloc +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x107b360d qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1091788f lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x10bf90b0 ps2_command +EXPORT_SYMBOL vmlinux 0x10c1f9df km_report +EXPORT_SYMBOL vmlinux 0x10c3c242 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10e76a92 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x117032a0 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1172a218 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x1188d94a agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x118b1214 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x118bf663 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1192f9f2 may_setattr +EXPORT_SYMBOL vmlinux 0x1193f6b0 elv_rb_find +EXPORT_SYMBOL vmlinux 0x1194ef2c neigh_event_ns +EXPORT_SYMBOL vmlinux 0x119a854e dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x119caf82 generic_update_time +EXPORT_SYMBOL vmlinux 0x119d6451 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x11c01996 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x11d56192 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ea4b90 inet_bind +EXPORT_SYMBOL vmlinux 0x11ef21b1 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x12216bc2 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x1224f921 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x122a6433 vma_set_file +EXPORT_SYMBOL vmlinux 0x1239ded2 mntput +EXPORT_SYMBOL vmlinux 0x123cb5f1 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x126d7bc1 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x127bca38 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x1289c1a6 rio_query_mport +EXPORT_SYMBOL vmlinux 0x129c0711 param_get_uint +EXPORT_SYMBOL vmlinux 0x129c098a rtc_add_groups +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a8374b fddi_type_trans +EXPORT_SYMBOL vmlinux 0x12ab0d43 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d831a1 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x12df8c7e xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x12e6f467 fb_set_var +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130986f8 page_mapped +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131493b7 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1341c667 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x1347e8e3 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x134ce9ff ex_handler_clear_fs +EXPORT_SYMBOL vmlinux 0x13620938 rtnl_notify +EXPORT_SYMBOL vmlinux 0x136351c6 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x136483cf unregister_console +EXPORT_SYMBOL vmlinux 0x13794e27 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x138addad tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13c3c238 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13ccc820 update_devfreq +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f17b39 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1410d1cc unlock_rename +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1414d64d would_dump +EXPORT_SYMBOL vmlinux 0x141583ea sync_filesystem +EXPORT_SYMBOL vmlinux 0x143b2b2c ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x144b247a fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x14564976 kernel_write +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1462ac29 sock_from_file +EXPORT_SYMBOL vmlinux 0x146c817b udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148d6f18 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x14a74e18 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x14a83a0a eisa_bus_type +EXPORT_SYMBOL vmlinux 0x14ae980e xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x14bbf230 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x14bc2dcf padata_free_shell +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14da9685 tcp_close +EXPORT_SYMBOL vmlinux 0x14dad091 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x14ee0f0d sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x14fe64e5 scsi_add_device +EXPORT_SYMBOL vmlinux 0x1513b177 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1533c1d4 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x153a386e skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x153de4a1 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156c3a7b input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x158ae527 nd_device_register +EXPORT_SYMBOL vmlinux 0x15a3f989 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x15b7588b crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c1d978 netif_skb_features +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15e27e97 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x15e5eabd neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x15e95505 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x15f382dc __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x16014d23 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x160b576f __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1615de5b mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x1616e03f devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x16280cdc mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x16321a74 netdev_info +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x16438af7 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x1648aea8 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x16561486 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x165c1e86 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x1660ed09 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1687bd46 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x16884b34 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a54034 input_grab_device +EXPORT_SYMBOL vmlinux 0x16a8c2c5 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x16b6f509 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x16c07817 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x16c1afd3 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ec2f30 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x17094a59 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x1709862d seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x170d3819 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17237eb3 __destroy_inode +EXPORT_SYMBOL vmlinux 0x1758d983 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x17630edd tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x17675869 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x1785800b devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x178c5fd4 param_set_ullong +EXPORT_SYMBOL vmlinux 0x17999267 nf_reinject +EXPORT_SYMBOL vmlinux 0x17aec18b simple_lookup +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17cd9140 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x17d1dcba vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x17f1eb7a tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x17fe0a85 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x184aaf31 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x18551db1 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x1859d106 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x185bf0c2 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x186e3940 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1893fa08 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x189484dc may_umount_tree +EXPORT_SYMBOL vmlinux 0x18b56329 proc_create_data +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18c4407f devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x18c9b438 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x18d7b345 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f85ca2 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x1905c1c0 pci_release_resource +EXPORT_SYMBOL vmlinux 0x19080e72 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x191284a4 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x195f78f6 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198606ea ilookup5 +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198d48fe lock_rename +EXPORT_SYMBOL vmlinux 0x19951925 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c5bf63 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19ea8fe0 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a1d1faf dev_mc_add +EXPORT_SYMBOL vmlinux 0x1a1d93e6 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x1a2388c7 generic_fadvise +EXPORT_SYMBOL vmlinux 0x1a34d149 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a520f4e mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1ab424be pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x1ac18594 file_remove_privs +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1acfabaa neigh_direct_output +EXPORT_SYMBOL vmlinux 0x1ae2ebb2 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x1ae7c7d4 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x1ae8f3b6 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x1af25f3e dev_addr_init +EXPORT_SYMBOL vmlinux 0x1af3be14 __frontswap_test +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b194b39 cdev_alloc +EXPORT_SYMBOL vmlinux 0x1b21b030 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1b27749e device_get_mac_address +EXPORT_SYMBOL vmlinux 0x1b2cc69a netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x1b46a842 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5ed500 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6c2db8 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1b748bd6 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x1b75dc11 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba2722a inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bbdb168 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1bc62f35 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x1bc8e83d phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x1bd26e6c touch_atime +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdeb768 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1c0a38ae blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1c355c46 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x1c48edc3 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x1c51590e eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c642242 md_flush_request +EXPORT_SYMBOL vmlinux 0x1c676114 param_get_charp +EXPORT_SYMBOL vmlinux 0x1c72f1f9 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x1c81536f xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x1c93280f acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1ca71749 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x1ca98277 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x1cad6e94 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x1cb078d4 try_to_release_page +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb32df8 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x1cbed6b8 vme_bus_num +EXPORT_SYMBOL vmlinux 0x1cbf4255 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cee6a25 bio_init +EXPORT_SYMBOL vmlinux 0x1cf5d80b devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1d03ede8 __x86_indirect_alt_call_r8 +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d10a05f phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x1d10b879 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d270b69 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x1d2aa8c0 block_write_end +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d373ae5 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1d3b5278 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d581312 __kfree_skb +EXPORT_SYMBOL vmlinux 0x1d6b4a09 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x1d76008e dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x1d85087c __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1d936ca7 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x1da3e0f0 vme_irq_request +EXPORT_SYMBOL vmlinux 0x1db0eb6a agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd773be config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x1ddcccdb jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1de0288b param_array_ops +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1df0a460 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e164a75 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e38a03d can_nice +EXPORT_SYMBOL vmlinux 0x1e4c71cf blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x1e4e21d3 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x1e5815cc netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x1e63d89e tty_devnum +EXPORT_SYMBOL vmlinux 0x1e6ac971 bio_add_page +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e858581 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x1e892eb7 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebcd2ad inet_listen +EXPORT_SYMBOL vmlinux 0x1ec1f9d5 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1ed8b599 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f0a626e netif_device_detach +EXPORT_SYMBOL vmlinux 0x1f0e8003 param_ops_bint +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f3295b5 vc_resize +EXPORT_SYMBOL vmlinux 0x1f3a55fa blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x1f42432e security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f60f86c inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x1f698500 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x1f9dbbd1 set_trace_device +EXPORT_SYMBOL vmlinux 0x1fa18d62 dget_parent +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbea222 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fc546cc __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x1fc7f971 d_path +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fdafdfe scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x1ff4742c ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20240564 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x202ce69f mdio_device_create +EXPORT_SYMBOL vmlinux 0x202de03a generic_write_checks +EXPORT_SYMBOL vmlinux 0x2042f94f phy_device_register +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20510d42 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x2091eb37 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20c0d859 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d88ef5 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x20e6a384 dump_align +EXPORT_SYMBOL vmlinux 0x20e6a485 dev_close +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20eb138b __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x20ec7aa1 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210ad7c5 netlink_set_err +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x2132ca1e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x2134bea4 dev_mc_init +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213f5e20 scsi_host_get +EXPORT_SYMBOL vmlinux 0x21526fcc skb_eth_push +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a29af8 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21bed1b0 inode_insert5 +EXPORT_SYMBOL vmlinux 0x21c0f83b skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x21c62464 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f9775c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x2206b110 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x220a48d7 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x222c2e67 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ec1bb proto_register +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x225f9188 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x22643fc7 block_write_begin +EXPORT_SYMBOL vmlinux 0x2299881e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x22a2b3c7 bio_devname +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c96daf skb_copy_expand +EXPORT_SYMBOL vmlinux 0x22cf27d8 sk_capable +EXPORT_SYMBOL vmlinux 0x22d0b925 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22eb863d skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x231746d6 lookup_one_len +EXPORT_SYMBOL vmlinux 0x231798ba uart_match_port +EXPORT_SYMBOL vmlinux 0x23223530 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x23327358 md_check_recovery +EXPORT_SYMBOL vmlinux 0x235cfa94 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237a6de1 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23b532a1 __x86_indirect_alt_jmp_rbx +EXPORT_SYMBOL vmlinux 0x23b660dc register_netdevice +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f2ec mmc_add_host +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f61004 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x23f6ad12 param_get_ushort +EXPORT_SYMBOL vmlinux 0x23faefa2 mdiobus_write +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24178ab7 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x241936aa skb_copy_header +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x244d4dc8 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x247e8565 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24bb1228 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d2b1bc dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x24fcd6be tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x25072859 set_user_nice +EXPORT_SYMBOL vmlinux 0x25164b67 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x2520eb69 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x2522eda4 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x252f24d3 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x25371bba scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x254a3e7f kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25864f29 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x25a0320d fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x25ab9bea pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x25c27183 skb_find_text +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x26063c31 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263cfce4 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x263ed23b __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x2645d16c __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x266e427f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x26736ca7 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x26861d04 ll_rw_block +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x269d783a prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x26b89f38 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x26bb6b8c param_set_copystring +EXPORT_SYMBOL vmlinux 0x26c50cf5 tcp_filter +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26ce9f1d seq_vprintf +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x26fb88bb fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271735c2 touch_buffer +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27275d17 bdevname +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272dbf1a _dev_info +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27472c5b simple_fill_super +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277711da __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278bcdaf inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d3579c register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x27e8e14c kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x28045d4a __x86_indirect_alt_call_r15 +EXPORT_SYMBOL vmlinux 0x280713d9 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28386d0f __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2840142a tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x286a5662 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287eb8bb thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x2887111f generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x288897a1 seq_bprintf +EXPORT_SYMBOL vmlinux 0x288c332f udp_poll +EXPORT_SYMBOL vmlinux 0x288e6307 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x289f4ba6 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x28a96791 key_unlink +EXPORT_SYMBOL vmlinux 0x28a9eb8a build_skb +EXPORT_SYMBOL vmlinux 0x28db696b skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f07957 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x29086bc7 cdrom_open +EXPORT_SYMBOL vmlinux 0x291e3fe7 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x291f88b4 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x291f9def i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2926a63f nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x2942c636 sync_file_create +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2962cd4c fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x29678540 key_link +EXPORT_SYMBOL vmlinux 0x297f99e8 single_release +EXPORT_SYMBOL vmlinux 0x298de7b0 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x2998b18a in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x29a1ec96 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x29a5cd39 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x29a9a4aa acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29b63722 migrate_page +EXPORT_SYMBOL vmlinux 0x29bdf5d7 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x29c2837f __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x29ce6ce7 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x29d4f5cd __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x29d5a27e put_fs_context +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29ff55e7 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a381fda vga_put +EXPORT_SYMBOL vmlinux 0x2a4f1065 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x2a6ee708 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a841a34 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2ab0514f generic_fillattr +EXPORT_SYMBOL vmlinux 0x2ab89604 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x2ac4f379 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x2ad1371e serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x2adf72f9 vfs_statfs +EXPORT_SYMBOL vmlinux 0x2b430432 __d_drop +EXPORT_SYMBOL vmlinux 0x2b48b4e9 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6d3413 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b729b2f pnp_start_dev +EXPORT_SYMBOL vmlinux 0x2b7564b3 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x2b7b101e mount_nodev +EXPORT_SYMBOL vmlinux 0x2b7b2651 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x2b84f513 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb12a19 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bd0946d user_path_create +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdda19e security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x2bdfa5ce kobject_add +EXPORT_SYMBOL vmlinux 0x2c1514ec __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x2c1b1fa6 rproc_detach +EXPORT_SYMBOL vmlinux 0x2c1cc0dc _dev_emerg +EXPORT_SYMBOL vmlinux 0x2c1f36a0 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x2c20252d clk_add_alias +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c269995 vme_slave_request +EXPORT_SYMBOL vmlinux 0x2c2f79c5 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x2c4db6de padata_alloc +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c87dd5d nonseekable_open +EXPORT_SYMBOL vmlinux 0x2c8cf7f1 inet6_protos +EXPORT_SYMBOL vmlinux 0x2ca68c65 inet_getname +EXPORT_SYMBOL vmlinux 0x2cace154 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x2caefb4e ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cbde8c1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x2cc0aa31 fb_find_mode +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd87b36 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x2cd945fe inet_ioctl +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce07a6a devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x2ce4a965 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x2cf0012a agp_backend_release +EXPORT_SYMBOL vmlinux 0x2cf9d8fb _dev_crit +EXPORT_SYMBOL vmlinux 0x2cfac9a6 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2d0657fa jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d16c4c1 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d26693f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x2d2cb86f generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d494cd2 fb_get_mode +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d53d89c jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x2d5c3635 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2d75a0f3 pci_clear_master +EXPORT_SYMBOL vmlinux 0x2d898a23 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d98a37e unlock_page +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da269a0 load_nls +EXPORT_SYMBOL vmlinux 0x2dbc1148 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x2dce9051 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd8edf3 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df5531e phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x2dfa8e01 proc_remove +EXPORT_SYMBOL vmlinux 0x2dfba9fe kernel_getsockname +EXPORT_SYMBOL vmlinux 0x2dfc1063 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e452370 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x2e5f3d10 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e61bdcb rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x2e8a9e59 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x2e91713e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2ea09190 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x2ea2c95c __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2ebb8b3f genphy_read_status +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecb27a0 fasync_helper +EXPORT_SYMBOL vmlinux 0x2ecb469b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ef73147 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0c05f9 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x2f0e2860 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x2f22ada8 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x2f24833a frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x2f24b4b2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f6d8942 lookup_one +EXPORT_SYMBOL vmlinux 0x2f754bbe pci_claim_resource +EXPORT_SYMBOL vmlinux 0x2f76f611 iget_locked +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f88df10 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x2f90e2cd scsi_register_interface +EXPORT_SYMBOL vmlinux 0x2f9cebbb default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2fb273dd find_inode_rcu +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbe8621 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5020b vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x2feb08c7 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x300c92c8 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x301f8b87 unregister_key_type +EXPORT_SYMBOL vmlinux 0x303482b7 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x304f28a3 pci_release_region +EXPORT_SYMBOL vmlinux 0x30547f06 param_set_byte +EXPORT_SYMBOL vmlinux 0x3078940f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x307aa879 d_splice_alias +EXPORT_SYMBOL vmlinux 0x307b50c4 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x308dab22 dst_init +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a55bba scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b3bbee writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x30bd017d reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30fac128 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310ee8ad sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x3115e7c1 inode_init_always +EXPORT_SYMBOL vmlinux 0x3124db1a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3134c37d dm_register_target +EXPORT_SYMBOL vmlinux 0x3136c05e tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x3140715f mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x318569f1 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x31997ad2 vme_register_driver +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31bc7adb netdev_update_features +EXPORT_SYMBOL vmlinux 0x31ca8e86 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32268fb2 vm_insert_page +EXPORT_SYMBOL vmlinux 0x323aff28 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x323c0410 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x32462ca4 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x32607402 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x326665b2 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32870a96 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x329d62f8 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x329d8df0 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32ec0fff netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x32faf348 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x3303778e simple_get_link +EXPORT_SYMBOL vmlinux 0x330631d8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x332bae57 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x332bd40c posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x333ea5dc setattr_prepare +EXPORT_SYMBOL vmlinux 0x3352c5cf mr_table_dump +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33757987 init_net +EXPORT_SYMBOL vmlinux 0x3375f1c0 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x3379d916 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x338b11b8 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x33a15d6e inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x33a5c5b2 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x33a8145f scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x33b7f497 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bb46de scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x33c05732 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x33c7038b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x33dd6cea tcp_check_req +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f961d6 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x3408ceae dm_get_device +EXPORT_SYMBOL vmlinux 0x340cd982 napi_enable +EXPORT_SYMBOL vmlinux 0x340d28f6 scsi_device_get +EXPORT_SYMBOL vmlinux 0x341266cf pv_ops +EXPORT_SYMBOL vmlinux 0x341588ec simple_transaction_read +EXPORT_SYMBOL vmlinux 0x341c4587 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34263336 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x3442cb55 _dev_warn +EXPORT_SYMBOL vmlinux 0x34536fb1 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x3459ec8f netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x346ec2ea phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34c5d84f t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34f1c034 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x35121e75 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3535aa31 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x3537d862 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35410038 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x354c859d inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3553f0dd md_finish_reshape +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356e59bf pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x35941a44 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x359e9507 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x35a495ff iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c394fc path_get +EXPORT_SYMBOL vmlinux 0x35c9bc3f seq_printf +EXPORT_SYMBOL vmlinux 0x35dd47fa __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x35dfc519 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3636f9ed posix_test_lock +EXPORT_SYMBOL vmlinux 0x363b2a2b serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36747e62 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x3674b57b __do_once_done +EXPORT_SYMBOL vmlinux 0x36755d48 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x3695930a jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x36a9b8fe set_nlink +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36ba4746 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x36bda5fb xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x36bfc9da PageMovable +EXPORT_SYMBOL vmlinux 0x36e43c84 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x36e7a93b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x370aba63 __ps2_command +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371f2b87 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374e0a6e new_inode +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x376a00e8 pnp_is_active +EXPORT_SYMBOL vmlinux 0x376c4d55 _dev_alert +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x377e70f1 kset_unregister +EXPORT_SYMBOL vmlinux 0x37867655 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x37888f41 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x379a4368 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x379a8135 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d06ede tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x37d55c74 ip6_xmit +EXPORT_SYMBOL vmlinux 0x37d9966e flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e55b58 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x37f60ec4 icmp6_send +EXPORT_SYMBOL vmlinux 0x3808d395 misc_register +EXPORT_SYMBOL vmlinux 0x3809fb4c skb_trim +EXPORT_SYMBOL vmlinux 0x380fdd13 eth_header_cache +EXPORT_SYMBOL vmlinux 0x38152083 blk_queue_split +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381af91a blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3833c003 node_data +EXPORT_SYMBOL vmlinux 0x384805e4 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x384fba61 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3856d59d phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x38608e60 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x3863cd71 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x386e7de9 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x387fb25f sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x3880aeef configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3892c354 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x3899edde __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x389edbee ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x38a17a9c mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b17205 submit_bio +EXPORT_SYMBOL vmlinux 0x38d16de4 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38efa1df blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x38f2bf9b __nd_driver_register +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x3905d3a1 inet_offloads +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391d941b dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3925e2db sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393de2a7 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395d421a pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x3967ae9c devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x3968605c tty_vhangup +EXPORT_SYMBOL vmlinux 0x397729f3 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x39814d55 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x39852a8f udp_pre_connect +EXPORT_SYMBOL vmlinux 0x399081d3 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a84a0b irq_set_chip +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c6ff7b pin_user_pages +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e69552 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a21a38a netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a47ecae pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a4fc068 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x3a569fb5 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x3a59dec9 param_get_string +EXPORT_SYMBOL vmlinux 0x3a96c7f9 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x3a9ac08d rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x3aa91f61 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x3aada45d inet_protos +EXPORT_SYMBOL vmlinux 0x3ab0abbd mr_table_alloc +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae1d8af ps2_drain +EXPORT_SYMBOL vmlinux 0x3ae761f0 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3ae76bf2 skb_ext_add +EXPORT_SYMBOL vmlinux 0x3af9e9e9 netdev_notice +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b22cb71 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x3b2a7c5a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x3b2ca1c7 iunique +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b348dcc generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x3b3c6038 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x3b3cf68a netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x3b452faa inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6d2b42 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3b6ffe9f inet_frag_find +EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk +EXPORT_SYMBOL vmlinux 0x3b72f87f vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b8fd7f4 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9b1846 freeze_super +EXPORT_SYMBOL vmlinux 0x3ba25587 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x3ba5f2a3 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3bb0b48a netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x3bb6aef6 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x3bbf6f05 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x3bde7d56 input_close_device +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c25cfd2 __x86_indirect_alt_jmp_r9 +EXPORT_SYMBOL vmlinux 0x3c3e3bf0 write_one_page +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c53f886 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x3c54d115 pci_dev_get +EXPORT_SYMBOL vmlinux 0x3c5903db seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x3c59e1a1 ip_output +EXPORT_SYMBOL vmlinux 0x3c61190d scsi_print_command +EXPORT_SYMBOL vmlinux 0x3cb3d6a8 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf7bed5 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d2aa872 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x3d33cbfa __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x3d507c23 phy_init_eee +EXPORT_SYMBOL vmlinux 0x3d52c14c acpi_device_hid +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d60a079 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x3d882e5a key_task_permission +EXPORT_SYMBOL vmlinux 0x3d89650f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x3d9e8706 __alloc_pages +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db1753c sock_no_linger +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd327ee netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3de044f4 ppp_input +EXPORT_SYMBOL vmlinux 0x3def9a92 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x3df3432b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e2dd2d5 km_state_expired +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e415628 skb_queue_head +EXPORT_SYMBOL vmlinux 0x3e6a8317 dst_release +EXPORT_SYMBOL vmlinux 0x3e77ea23 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x3e878030 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x3eb342f1 seq_read_iter +EXPORT_SYMBOL vmlinux 0x3ec11827 arp_create +EXPORT_SYMBOL vmlinux 0x3ee8ac66 set_pages_uc +EXPORT_SYMBOL vmlinux 0x3eea228a sock_register +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3ef2dd8d ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f05cb46 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3f0ac45e file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x3f0c5bfd register_netdev +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f2454ca skb_checksum +EXPORT_SYMBOL vmlinux 0x3f2bcbdc unpin_user_pages +EXPORT_SYMBOL vmlinux 0x3f39d27e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x3f40b9b6 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5499bc iov_iter_init +EXPORT_SYMBOL vmlinux 0x3f609a85 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x3f63fc91 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x3f680a07 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x3f87939a watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x3f881895 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f93eb4a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3f9e410c agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x3fb615b8 phy_attached_info +EXPORT_SYMBOL vmlinux 0x3fbca0dc dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc68c2d processors +EXPORT_SYMBOL vmlinux 0x3fc8754c mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdc2d36 skb_split +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe35e1a pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x3fea35da cfb_copyarea +EXPORT_SYMBOL vmlinux 0x3fff2f13 filp_close +EXPORT_SYMBOL vmlinux 0x4005b083 iput +EXPORT_SYMBOL vmlinux 0x40106c2b vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x40257c8a unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x4025c1a6 fc_mount +EXPORT_SYMBOL vmlinux 0x40308e29 arp_xmit +EXPORT_SYMBOL vmlinux 0x4033b564 agp_bridge +EXPORT_SYMBOL vmlinux 0x4035c2d6 proc_set_size +EXPORT_SYMBOL vmlinux 0x40436d07 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x404dac63 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x40505a2f bio_free_pages +EXPORT_SYMBOL vmlinux 0x4050802e proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x406b1ae2 kthread_stop +EXPORT_SYMBOL vmlinux 0x406e895c mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4076aa46 make_kprojid +EXPORT_SYMBOL vmlinux 0x407d5c3f __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409fe0d0 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b481b4 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x40b5d80c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cf598a fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40ec3e56 bio_advance +EXPORT_SYMBOL vmlinux 0x40ed0e30 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x40fcaaad scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x4104ecba fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x410da657 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x41128f7e inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4123e19f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41341103 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x413c6798 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x413de914 km_state_notify +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415171d5 __alloc_skb +EXPORT_SYMBOL vmlinux 0x41545098 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x4165e651 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x41711a2e rproc_free +EXPORT_SYMBOL vmlinux 0x41815e48 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418fde4c ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x41a08480 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x41c48d23 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x41d7904d mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f4e79f ip6_dst_check +EXPORT_SYMBOL vmlinux 0x41fb7c06 param_set_charp +EXPORT_SYMBOL vmlinux 0x420684f1 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420c4dcb freeze_bdev +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422c5431 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x422f7c81 follow_up +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4230e9bb security_sb_remount +EXPORT_SYMBOL vmlinux 0x42318251 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x4243eb2d mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425e5334 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x4266ebd1 __lock_buffer +EXPORT_SYMBOL vmlinux 0x426b0ba9 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x426e3d30 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x427492f5 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x42801e3a mdio_device_free +EXPORT_SYMBOL vmlinux 0x4283c20a udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x42a1441e scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x42beb940 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d85bfc vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x42e9a9d0 file_path +EXPORT_SYMBOL vmlinux 0x42f08a01 kobject_init +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f41099 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x432b0403 key_type_keyring +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x433db126 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4363e6f5 end_page_writeback +EXPORT_SYMBOL vmlinux 0x43662877 write_inode_now +EXPORT_SYMBOL vmlinux 0x43764348 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438e8a53 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43c335a6 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x43cc1e55 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e20baa path_is_under +EXPORT_SYMBOL vmlinux 0x4423054e blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x443b81a2 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4449809e locks_free_lock +EXPORT_SYMBOL vmlinux 0x444a409b __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x444bca41 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x445ab2f8 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4468c624 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x4477bde0 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4478ae72 ether_setup +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a547d9 vfs_link +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44ac47fd i2c_verify_client +EXPORT_SYMBOL vmlinux 0x44bbe75a netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450eccf8 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x45124d38 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x4513af37 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x4515aeea disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x451804b1 d_invalidate +EXPORT_SYMBOL vmlinux 0x4520453d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x4521be9a sock_set_priority +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452f2c19 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456946cf qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x4573299a ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45d80f04 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45ecd5ff eth_mac_addr +EXPORT_SYMBOL vmlinux 0x45f588e3 nobh_write_end +EXPORT_SYMBOL vmlinux 0x46056872 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x46070114 sock_set_mark +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46242741 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x4629563c __lock_page +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x463fee06 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x46415264 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x465a8c43 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x465b2f2d mmc_free_host +EXPORT_SYMBOL vmlinux 0x465c9a1b netdev_state_change +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466a5245 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467a73a3 tty_register_driver +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a2600f vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x46ae8a8e netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46e1175b acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x46f086c4 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x46f62864 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x470504ba nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x470d881f done_path_create +EXPORT_SYMBOL vmlinux 0x47137bdc dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x4733e1d4 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x476dc803 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47735b49 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x478ab121 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x47950d27 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x479549df i2c_register_driver +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a2bd38 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x47b0e829 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d60f7d input_get_timestamp +EXPORT_SYMBOL vmlinux 0x47d8bbde generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47e75bcc generic_write_end +EXPORT_SYMBOL vmlinux 0x47f7b972 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x47f80338 do_splice_direct +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481d8f25 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x4847f7be buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x487527db input_unregister_handle +EXPORT_SYMBOL vmlinux 0x487c7b22 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x4884959a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b06dad dump_emit +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c2cf16 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x48c50394 tty_register_device +EXPORT_SYMBOL vmlinux 0x48d088cf __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d88a2c __SCT__preempt_schedule +EXPORT_SYMBOL vmlinux 0x48e3fcfb proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x48e95f11 seq_open_private +EXPORT_SYMBOL vmlinux 0x48ed206e ps2_init +EXPORT_SYMBOL vmlinux 0x4901fe91 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49174792 sock_i_uid +EXPORT_SYMBOL vmlinux 0x492187ac mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x4932019d truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x49357d66 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x493d52f9 cdev_device_add +EXPORT_SYMBOL vmlinux 0x4941ff5b __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x494faf53 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x495700cf dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x496a4443 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x496bb1b3 vm_map_pages +EXPORT_SYMBOL vmlinux 0x49709d1b eth_type_trans +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x49911e23 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x499613c3 pci_choose_state +EXPORT_SYMBOL vmlinux 0x49967754 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x49969c67 make_bad_inode +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a4b59b ip6_frag_next +EXPORT_SYMBOL vmlinux 0x49b15b66 vme_master_request +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49dc51f6 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x49dd22e0 noop_llseek +EXPORT_SYMBOL vmlinux 0x4a04c6f0 inet6_bind +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3ef902 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4a42abeb md_error +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a645183 pci_find_bus +EXPORT_SYMBOL vmlinux 0x4a6c194c iov_iter_zero +EXPORT_SYMBOL vmlinux 0x4a7858bd ilookup +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4adc6553 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4adf61c7 pci_save_state +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b023f8b generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4b066894 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b398d56 audit_log_start +EXPORT_SYMBOL vmlinux 0x4b4116a3 __put_user_ns +EXPORT_SYMBOL vmlinux 0x4b5475bd input_register_handle +EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0x4b7c16cf dev_add_pack +EXPORT_SYMBOL vmlinux 0x4b8aa434 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4b92685b __bforget +EXPORT_SYMBOL vmlinux 0x4b97d814 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x4baa21b8 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4baa7fd9 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x4bc704fb bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd6be16 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x4bda158b xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x4be46340 md_done_sync +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf427f5 from_kuid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c2a5f82 mpage_readpage +EXPORT_SYMBOL vmlinux 0x4c2dae83 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c428d34 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x4c49ed66 blk_get_request +EXPORT_SYMBOL vmlinux 0x4c4f87f1 inet_accept +EXPORT_SYMBOL vmlinux 0x4c5ebf31 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x4c67ab72 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x4c6fb415 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4c76d457 __sock_create +EXPORT_SYMBOL vmlinux 0x4c770f19 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x4c96c785 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc68c13 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x4cf9f6aa mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x4cfbad20 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x4d0d85b6 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4d29d21b jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d4b65da __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x4d6dc4da ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4d7bdcd3 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x4d851749 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x4d8816ef udp_disconnect +EXPORT_SYMBOL vmlinux 0x4d904d14 locks_delete_block +EXPORT_SYMBOL vmlinux 0x4d90b768 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d92dc02 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da72afe md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x4dbe1779 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4dc01769 zap_page_range +EXPORT_SYMBOL vmlinux 0x4dc6cdfd netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df6726f locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e22fa54 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3671ad scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x4e39558e register_filesystem +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e5b274b rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x4e5cb04b eth_gro_complete +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7e2888 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x4ea08ece tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb8536c param_get_long +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4efe07ae dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f26dd6c fb_pan_display +EXPORT_SYMBOL vmlinux 0x4f2b907a ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4f49dfb7 regset_get +EXPORT_SYMBOL vmlinux 0x4f52a7dd dma_async_device_register +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f681528 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x4f6e615a netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f8742c6 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4f88cd1d unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4f982141 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x4fa8e1e7 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x4fac032f dev_mc_flush +EXPORT_SYMBOL vmlinux 0x4fad2025 security_sock_graft +EXPORT_SYMBOL vmlinux 0x4fbbfebe serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4fc13189 agp_free_memory +EXPORT_SYMBOL vmlinux 0x4fc60eb2 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4fcc8ad2 ex_handler_uaccess +EXPORT_SYMBOL vmlinux 0x4fd0f14d dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff8de71 dst_destroy +EXPORT_SYMBOL vmlinux 0x50051fdc vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500c46c5 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x500ed57f __f_setown +EXPORT_SYMBOL vmlinux 0x501dfc7b mdiobus_scan +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x50320d79 neigh_for_each +EXPORT_SYMBOL vmlinux 0x504f0e84 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x505601e3 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x5058bf72 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x508f8238 vfs_getattr +EXPORT_SYMBOL vmlinux 0x50998fcb trace_event_printf +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a507c8 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x50a87ccd watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b8d0b3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50bf91f7 tcp_prot +EXPORT_SYMBOL vmlinux 0x50cd6400 ipv4_mtu +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d582d7 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50d7418a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x5105530c eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x510bebfe agp_enable +EXPORT_SYMBOL vmlinux 0x511478a2 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x5114edd5 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x511c4b06 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x513601dc __seq_open_private +EXPORT_SYMBOL vmlinux 0x513b0bb2 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x513d7ca7 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x513dc7cd flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x513fd586 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51753300 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5178c0a5 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x5191c710 __devm_release_region +EXPORT_SYMBOL vmlinux 0x519416d0 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x51a25c9a max8998_update_reg +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51afdad4 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x51cb2363 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d1be09 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x51d8d6dd page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x51d984cd __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x51f57a0c vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fce129 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5215c8c3 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x5220b181 skb_dump +EXPORT_SYMBOL vmlinux 0x52259f53 uart_resume_port +EXPORT_SYMBOL vmlinux 0x52276a0b tcf_idr_search +EXPORT_SYMBOL vmlinux 0x5228f4e7 release_sock +EXPORT_SYMBOL vmlinux 0x5256dc65 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x52573266 input_register_device +EXPORT_SYMBOL vmlinux 0x52678f4b dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5284d833 readahead_expand +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a7cd4e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x52b80ae3 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52bcc0c0 mdiobus_free +EXPORT_SYMBOL vmlinux 0x52ccad55 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x52d55862 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d9e3d3 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52eda9c5 cdev_add +EXPORT_SYMBOL vmlinux 0x53003689 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x53192a13 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x532335dc read_cache_page +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x539ab5d0 generic_setlease +EXPORT_SYMBOL vmlinux 0x53b8970e tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53e8d925 dev_uc_add +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x54043d09 set_cached_acl +EXPORT_SYMBOL vmlinux 0x540712b8 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x542be051 __x86_indirect_alt_jmp_rax +EXPORT_SYMBOL vmlinux 0x5430368a nobh_writepage +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54492fcf cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x544f44c0 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x5452d34b bio_split +EXPORT_SYMBOL vmlinux 0x545c8db9 cdev_del +EXPORT_SYMBOL vmlinux 0x5479eb9f mmc_put_card +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x54b1ec68 request_key_tag +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54c5d41b filemap_map_pages +EXPORT_SYMBOL vmlinux 0x54d0684a rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x5505085e bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550ebfc4 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x5511d06b rt_dst_clone +EXPORT_SYMBOL vmlinux 0x5516ca03 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552f15dc migrate_page_states +EXPORT_SYMBOL vmlinux 0x5549692b from_kuid_munged +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555c4e54 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559352a8 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x559e28c1 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x55dbfcce scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x56185761 tty_name +EXPORT_SYMBOL vmlinux 0x5627accc __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564a4308 keyring_search +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5650c3a6 netdev_printk +EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x56778a05 uart_register_driver +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5693c2e0 dma_supported +EXPORT_SYMBOL vmlinux 0x5695b0db mmc_remove_host +EXPORT_SYMBOL vmlinux 0x569c38f4 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x56a8bf31 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x56b473fa pci_dev_put +EXPORT_SYMBOL vmlinux 0x56baafde skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x56bf61e8 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56f15873 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x56f83444 dqget +EXPORT_SYMBOL vmlinux 0x57223db8 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5730bd40 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x57315eef mmc_get_card +EXPORT_SYMBOL vmlinux 0x57406f8e kern_path +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5755cfec pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5760a14f md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x576b0139 dquot_disable +EXPORT_SYMBOL vmlinux 0x576da72c genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x578d0d56 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x578fa470 iterate_dir +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57a15665 tty_port_open +EXPORT_SYMBOL vmlinux 0x57ac7b78 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x57b7d63c md_write_start +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57c08397 kset_register +EXPORT_SYMBOL vmlinux 0x57ce1ad7 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f50c6 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5828ed60 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x5829bd80 serio_bus +EXPORT_SYMBOL vmlinux 0x582aaff1 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x582b4a60 start_tty +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583abec2 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5888faec blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x58aa59ed configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58afc808 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x58b40a84 phy_attached_print +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bf9423 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x58d45358 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f04220 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x591c31e3 path_has_submounts +EXPORT_SYMBOL vmlinux 0x59214748 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x593c1bac __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5953f108 __x86_indirect_alt_call_r10 +EXPORT_SYMBOL vmlinux 0x59573f8a ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59667bf4 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x597dc30f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59e0b362 padata_free +EXPORT_SYMBOL vmlinux 0x59e1a965 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x59f8d373 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x5a04fdc4 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0da4a4 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x5a26f1d4 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a445a89 empty_aops +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a8683d0 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x5a88b371 finish_no_open +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5aa06f45 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x5aaab093 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x5ab0accc dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x5ab326f8 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5ad72e5a jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x5adf991b kmem_cache_free +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae913fe jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x5b14a532 ip_defrag +EXPORT_SYMBOL vmlinux 0x5b19eded tty_kref_put +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b4b469e netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b605c1c ping_prot +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b6d96cb scsi_register_driver +EXPORT_SYMBOL vmlinux 0x5ba03f92 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x5bb30e95 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5beb72f2 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x5bf4f933 neigh_lookup +EXPORT_SYMBOL vmlinux 0x5c09b4af nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x5c0a0204 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x5c118ecb inet_frags_init +EXPORT_SYMBOL vmlinux 0x5c1bdd38 dcb_getapp +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c40bdea page_readlink +EXPORT_SYMBOL vmlinux 0x5c48f7fa xfrm_lookup +EXPORT_SYMBOL vmlinux 0x5c63d50f pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x5c65160b filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x5c8b7e54 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5ca998eb memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x5cb7fb36 __x86_indirect_alt_jmp_r12 +EXPORT_SYMBOL vmlinux 0x5cd3a9c0 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x5ce0b97d kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x5ce50913 nf_log_register +EXPORT_SYMBOL vmlinux 0x5cf0229d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d631cca redraw_screen +EXPORT_SYMBOL vmlinux 0x5d65bea5 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x5d734e45 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5d7ed4ff devm_register_netdev +EXPORT_SYMBOL vmlinux 0x5d8f852b ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x5d917bb8 update_region +EXPORT_SYMBOL vmlinux 0x5ddb108e lru_cache_add +EXPORT_SYMBOL vmlinux 0x5deff2e8 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x5dfda4c9 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e0114de d_add +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e131870 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x5e2fb718 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e382561 set_capacity +EXPORT_SYMBOL vmlinux 0x5e78ae69 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea0bb61 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x5ea58393 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5ea8c90c mr_dump +EXPORT_SYMBOL vmlinux 0x5eab007e iterate_fd +EXPORT_SYMBOL vmlinux 0x5eabd6d2 phy_init_hw +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebb5016 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x5ebf77d9 filp_open +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec7e856 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed89a52 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5eeae618 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef910d1 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x5efb0656 tty_hangup +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f7bd3ac sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x5f7f97a1 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fc4baa4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x5fc658a1 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fddbbc4 to_nd_dax +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fe5cee2 inet_release +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x60053552 devm_free_irq +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60135bda param_ops_charp +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60298715 napi_build_skb +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6052f490 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605a58fe skb_queue_tail +EXPORT_SYMBOL vmlinux 0x605cb11c to_nd_btt +EXPORT_SYMBOL vmlinux 0x6076147e netdev_emerg +EXPORT_SYMBOL vmlinux 0x60780a37 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x608583a0 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6096fd72 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x609ace9f __page_symlink +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609c5b5b iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a1496a register_shrinker +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60c948db xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e6b744 unregister_nls +EXPORT_SYMBOL vmlinux 0x60ed6ec8 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x60fa4063 xp_free +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x61177770 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x613627f0 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x613c8245 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x6148b362 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x617837d3 tso_count_descs +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618a4134 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x6192db49 md_write_end +EXPORT_SYMBOL vmlinux 0x61941491 devm_clk_get +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619de3da blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x619e864d pci_read_config_word +EXPORT_SYMBOL vmlinux 0x61a1686a capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x61a5e56a set_create_files_as +EXPORT_SYMBOL vmlinux 0x61ab29c7 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x61afb911 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c09c92 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x61ca9ceb devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x61cb4e8e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x61cdf653 param_set_bool +EXPORT_SYMBOL vmlinux 0x61ce7cfa bdev_read_only +EXPORT_SYMBOL vmlinux 0x61d0e84a netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e2b0fd phy_start +EXPORT_SYMBOL vmlinux 0x61e3778c ata_port_printk +EXPORT_SYMBOL vmlinux 0x61e51919 give_up_console +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x62085868 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622a8258 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x622e0d99 set_bh_page +EXPORT_SYMBOL vmlinux 0x623a0858 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x6242a56f __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x6242de87 dev_trans_start +EXPORT_SYMBOL vmlinux 0x6265db6a tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628c9cf5 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62923ca4 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62dee71c dev_get_flags +EXPORT_SYMBOL vmlinux 0x62f10404 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62fcda19 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x6301bdd5 get_cached_acl +EXPORT_SYMBOL vmlinux 0x63035a3d hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x63240048 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x632c80f9 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x6336df9f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x633de7e0 simple_release_fs +EXPORT_SYMBOL vmlinux 0x635c669f dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x635d2563 seq_pad +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x63670794 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x636db75c netdev_warn +EXPORT_SYMBOL vmlinux 0x637abc8a ps2_handle_response +EXPORT_SYMBOL vmlinux 0x6396a089 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ba5d60 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x63c3ea93 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d0e12c neigh_table_init +EXPORT_SYMBOL vmlinux 0x63da97e9 config_group_find_item +EXPORT_SYMBOL vmlinux 0x63db5035 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ec1380 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64218928 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x6438db4d __mdiobus_write +EXPORT_SYMBOL vmlinux 0x645f79a9 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x64612777 genlmsg_put +EXPORT_SYMBOL vmlinux 0x64673084 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x646ad355 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x647c9536 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x64810143 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648ddeea phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64abf174 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x64af1219 phy_resume +EXPORT_SYMBOL vmlinux 0x64ba687a km_policy_notify +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d5daf6 devm_request_resource +EXPORT_SYMBOL vmlinux 0x64e1343b netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x64e99abc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x64f31401 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x64fff8d4 pci_bus_type +EXPORT_SYMBOL vmlinux 0x650eaef5 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652a16ae dma_ops +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652eef79 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x65326faf pci_pme_active +EXPORT_SYMBOL vmlinux 0x653ef444 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x654f0e12 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x65577b4d security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x65691a86 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65961dc7 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x659d183d set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cca05f edac_mc_find +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dc3238 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e1ca27 md_register_thread +EXPORT_SYMBOL vmlinux 0x65f698d9 config_item_put +EXPORT_SYMBOL vmlinux 0x65fd0c68 account_page_redirty +EXPORT_SYMBOL vmlinux 0x65fe7e22 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x66032cf0 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x66063037 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x6607b486 __devm_request_region +EXPORT_SYMBOL vmlinux 0x660d9376 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x662377aa pci_get_class +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6653c3bb pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x66584066 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666485a1 dev_set_alias +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66a324fb debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bf03ed sk_free +EXPORT_SYMBOL vmlinux 0x670828e4 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x671c02e4 dump_page +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67446872 follow_down_one +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675c7eb1 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x677566bb sock_create +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679d60b6 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x67a731c6 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x67a9919f pci_select_bars +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67d1580c rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x67d57361 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x67d72e28 input_register_handler +EXPORT_SYMBOL vmlinux 0x67de29c8 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x67e8d431 set_anon_super +EXPORT_SYMBOL vmlinux 0x67ea2c08 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x67f7f4ab free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x68017754 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x684c31bf flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x6877cf5a ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x689f3ae0 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x68b0d52a input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68de205b tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6910eee7 pps_event +EXPORT_SYMBOL vmlinux 0x691500e5 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x693f0625 __skb_pad +EXPORT_SYMBOL vmlinux 0x694c7422 pci_find_capability +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x696605d2 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699892fe wireless_send_event +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69c7e579 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x69cddbf8 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a163192 netlink_capable +EXPORT_SYMBOL vmlinux 0x6a172299 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a2dc5be genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a479cb3 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5d3422 genphy_resume +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a826d24 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x6a924f03 genphy_update_link +EXPORT_SYMBOL vmlinux 0x6a9a4189 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa49577 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x6aaba8e0 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x6ac5433d __netif_napi_del +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6adfae43 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6ae173c0 pid_task +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b098291 param_set_ulong +EXPORT_SYMBOL vmlinux 0x6b0a08fd blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b260883 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2a28b0 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b439331 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x6b530623 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x6b54a0e8 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b65db03 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x6b84a28d __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba35763 d_tmpfile +EXPORT_SYMBOL vmlinux 0x6bbad395 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x6bc18cc1 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bd6810f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x6bdc6489 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be56314 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x6be8b3d2 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x6bf1c41d fput +EXPORT_SYMBOL vmlinux 0x6bf63a6f sk_net_capable +EXPORT_SYMBOL vmlinux 0x6bf87b9e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x6bfe3c4b fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x6c030491 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x6c11c69f genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x6c132688 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x6c18b184 kobject_set_name +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c39580f vfs_fsync +EXPORT_SYMBOL vmlinux 0x6c4b84ff simple_unlink +EXPORT_SYMBOL vmlinux 0x6c5bd85c ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c5ee841 tcf_register_action +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6cb01f30 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x6cb1eb10 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbbd556 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6ccd9808 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1a1c8f ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d31fabd dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d55da79 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6873cd dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d975f74 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x6d9e367e kmem_cache_size +EXPORT_SYMBOL vmlinux 0x6da3d602 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc37b1c dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd45b49 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x6de166d8 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x6ded3380 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfaa0d6 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e0de558 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6e11e122 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x6e1394a7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x6e314497 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6a8ae0 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7d181a io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x6e7fe2be dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6e841389 cpu_info +EXPORT_SYMBOL vmlinux 0x6e876175 param_get_short +EXPORT_SYMBOL vmlinux 0x6e92074a seq_open +EXPORT_SYMBOL vmlinux 0x6e9599f3 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9f6d0c pci_match_id +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea7fb39 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eac7479 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6eaf0453 pipe_unlock +EXPORT_SYMBOL vmlinux 0x6f12770a skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f439520 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x6f45ffbe follow_pfn +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f71a526 is_nd_btt +EXPORT_SYMBOL vmlinux 0x6f752dc4 cad_pid +EXPORT_SYMBOL vmlinux 0x6f7580d4 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x6f806f61 key_move +EXPORT_SYMBOL vmlinux 0x6f89d909 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f9bfcfe vfs_setpos +EXPORT_SYMBOL vmlinux 0x6fa9f54d jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc8d752 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd3c578 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdccafe udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x6ffa8037 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6ffe6231 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70262247 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x70362273 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7038493d mpage_writepage +EXPORT_SYMBOL vmlinux 0x703e69e5 seq_read +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x70525a11 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7054f011 kernel_connect +EXPORT_SYMBOL vmlinux 0x7058333b skb_queue_purge +EXPORT_SYMBOL vmlinux 0x705d8c36 xp_dma_map +EXPORT_SYMBOL vmlinux 0x70633b95 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x7069fe97 phy_connect +EXPORT_SYMBOL vmlinux 0x706a54c3 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x7078f1f2 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70ba03e6 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x70db11ba scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x70df51c7 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x70ebf0c0 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x70f28fe7 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x70f5b31b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x711b2ee0 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x7128c505 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71300199 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x71323072 ip_frag_init +EXPORT_SYMBOL vmlinux 0x714a6f79 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715dcb27 rt6_lookup +EXPORT_SYMBOL vmlinux 0x7162a825 open_exec +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x718ddc17 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x7194c795 devm_memunmap +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71ebc700 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x71ecb8f7 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x71f05fa1 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7229dce6 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7250ed2e starget_for_each_device +EXPORT_SYMBOL vmlinux 0x725f082d bioset_init +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7277e46c __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x7282fb50 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x7286133e fb_set_suspend +EXPORT_SYMBOL vmlinux 0x728640c4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x729ffc06 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x72a07000 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bc2d6b blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72e5f8f8 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f1cc48 generic_perform_write +EXPORT_SYMBOL vmlinux 0x72f87586 blk_put_queue +EXPORT_SYMBOL vmlinux 0x7302ec46 f_setown +EXPORT_SYMBOL vmlinux 0x730b292f i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x730d2062 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x73145c7e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a9a34 no_llseek +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731f4ea3 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x732be502 genphy_suspend +EXPORT_SYMBOL vmlinux 0x732d2c3b tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7343967b locks_copy_lock +EXPORT_SYMBOL vmlinux 0x734ae8af submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7356a852 __block_write_begin +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736c1bce __serio_register_port +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73873a02 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x73886729 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x738efb57 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x73a5ebfc vfs_rename +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b1b5b5 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x73b61f7d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74119c90 sock_pfree +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x7415eb3a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x741f3411 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74276f08 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7439bf2a proto_unregister +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74a524e3 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x74be1bb2 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d30bfb xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x74d444e5 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x74dbdd8c con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f56351 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x74f6a897 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x750130ef ptp_clock_register +EXPORT_SYMBOL vmlinux 0x750d70eb configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x751f6678 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x752e2ae9 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x75371013 sg_miter_next +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753af6c1 pci_set_master +EXPORT_SYMBOL vmlinux 0x754099ec skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x756be254 file_ns_capable +EXPORT_SYMBOL vmlinux 0x757c40bd copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7581c4ee twl6040_power +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758ceeb5 __x86_indirect_alt_jmp_r15 +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75b1a0c8 kobject_del +EXPORT_SYMBOL vmlinux 0x75b35365 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d6531a key_revoke +EXPORT_SYMBOL vmlinux 0x75dee0e8 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x75e7f121 poll_initwait +EXPORT_SYMBOL vmlinux 0x75f1c1b7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x7608b0f6 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7610c23d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76476bcb fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764c15dc vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x76540f9f create_empty_buffers +EXPORT_SYMBOL vmlinux 0x76580726 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x765c81d1 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7664752b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x76680f5f zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x7668d04d register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766fff0e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x76708304 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x768af69d find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x7693987b balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x7695d8aa config_group_init +EXPORT_SYMBOL vmlinux 0x769e63f3 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76b46a08 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x76cc770f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x77202a19 simple_write_begin +EXPORT_SYMBOL vmlinux 0x7721b329 vmap +EXPORT_SYMBOL vmlinux 0x7728a58d filemap_flush +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773ad77e flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x773b6a08 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77473fa5 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x774df2a1 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x775e834f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x776af6ac dev_mc_sync +EXPORT_SYMBOL vmlinux 0x77763c1b mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x7795da85 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x779bcef8 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x77b0fed9 __next_node_in +EXPORT_SYMBOL vmlinux 0x77b3dd93 simple_setattr +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e42d99 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ee1539 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x77f2f759 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x77fc6eb7 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780d7050 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x78145bf1 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x78288de6 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x7830ccd1 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x7834c1c9 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x783e0c2c ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x78407f3a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x78446a1a max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7851c358 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x7860d59a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x786c17e5 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x78703757 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x7871a765 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b4665b pipe_lock +EXPORT_SYMBOL vmlinux 0x78b5c75d iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78beb097 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x78c6c8b9 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x78ca1dd0 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x78d41abe poll_freewait +EXPORT_SYMBOL vmlinux 0x78dd56f7 get_task_cred +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ee5929 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x78fe8a81 vga_get +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x790d151b unregister_shrinker +EXPORT_SYMBOL vmlinux 0x790d7944 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x792257e6 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x792c6c20 free_buffer_head +EXPORT_SYMBOL vmlinux 0x792cd321 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7931023f flush_signals +EXPORT_SYMBOL vmlinux 0x79391c66 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x794742f5 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x79746964 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x797a2255 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a9ced2 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x79a9f778 dquot_initialize +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b33cc1 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x79c4e065 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x79da65e0 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a18ddd1 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a22632b sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a45a290 dst_alloc +EXPORT_SYMBOL vmlinux 0x7a4bfc42 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x7a514884 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x7a604d02 vfs_mknod +EXPORT_SYMBOL vmlinux 0x7a63d465 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x7a67fba5 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x7a6e82de sock_no_accept +EXPORT_SYMBOL vmlinux 0x7a72fc64 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7a879ae6 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b92da hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa20b8e blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac5e110 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae97144 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x7aeedf2c do_clone_file_range +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b46b8b7 d_move +EXPORT_SYMBOL vmlinux 0x7b489afc __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b68a458 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b9d411f pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd0d269 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7bfa5d46 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x7c1434dd dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1e05b2 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x7c1f34a3 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x7c2dcf86 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x7c3b1163 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x7c3d62be file_update_time +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c6dd839 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x7c73aba3 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7c8511fd backlight_force_update +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9d167e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x7ca38880 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7ca9be69 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cc36c90 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf0b8d7 __free_pages +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d075aae __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d3cfab5 dev_change_flags +EXPORT_SYMBOL vmlinux 0x7d449680 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x7d48061e crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d5e69e2 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d7fd319 dquot_commit +EXPORT_SYMBOL vmlinux 0x7d864ab2 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x7d935c91 pci_request_irq +EXPORT_SYMBOL vmlinux 0x7d992ccf acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7da211fc blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x7da5eda2 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc2bd1f jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x7dcac19a insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x7dccf3d6 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7de73b3b first_ec +EXPORT_SYMBOL vmlinux 0x7de7c08d flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x7ded7725 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df55489 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7dff245a __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x7e03fed1 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7e043456 pps_register_source +EXPORT_SYMBOL vmlinux 0x7e151c26 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x7e20ccd5 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3aa3a2 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7e3d815e __x86_indirect_alt_call_rbx +EXPORT_SYMBOL vmlinux 0x7e4783a6 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x7e49247b napi_complete_done +EXPORT_SYMBOL vmlinux 0x7e49dd6d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7e4df075 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7e526bfa __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x7e5c115a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x7e6089be scm_detach_fds +EXPORT_SYMBOL vmlinux 0x7e77662f save_fpregs_to_fpstate +EXPORT_SYMBOL vmlinux 0x7e77fa57 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7eb420d8 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7ec6d7ad set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x7ee4635e mfd_add_devices +EXPORT_SYMBOL vmlinux 0x7eef9315 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7f075bbc generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7f112d37 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2a0c18 passthru_features_check +EXPORT_SYMBOL vmlinux 0x7f2ae950 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x7f2c3514 filemap_fault +EXPORT_SYMBOL vmlinux 0x7f428102 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5689dc find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x7f5af497 simple_statfs +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f6783b8 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x7f68b679 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x7f68c570 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x7f7d1da6 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9ce338 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x7fcb0887 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x7fe2b13d __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7feb4d7b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7ffca661 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x801fd845 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x802171a5 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x8025da62 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804865ca qdisc_reset +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x804fc165 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x805099b3 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x8071d0a8 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x80893f35 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x808dd056 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x8096aa17 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80a72c1f set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x80c4497e max8925_reg_read +EXPORT_SYMBOL vmlinux 0x80c45758 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80eada3f nf_getsockopt +EXPORT_SYMBOL vmlinux 0x810ba656 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x811057bc kill_fasync +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x81206141 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x81458800 bioset_exit +EXPORT_SYMBOL vmlinux 0x814d56c1 param_set_hexint +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8154b17e finalize_exec +EXPORT_SYMBOL vmlinux 0x81577103 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x8166f45b no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818ab38c dma_sync_wait +EXPORT_SYMBOL vmlinux 0x81a70ae4 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81d15e92 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82052e98 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x8224ecf7 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x8246e9bc eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x82514201 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x8253abc1 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8274702e pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x827e402c xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82a5eadf phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82e4786b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x82f2865e pci_get_device +EXPORT_SYMBOL vmlinux 0x82f3a9f5 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x82fa5558 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8330965d inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x833c1de4 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x833edcc5 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x83540040 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8362950e rfkill_alloc +EXPORT_SYMBOL vmlinux 0x8369ce94 phy_read_paged +EXPORT_SYMBOL vmlinux 0x836f80ae eth_gro_receive +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83add36c security_sk_clone +EXPORT_SYMBOL vmlinux 0x83b5f1ea put_disk +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cb102f blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x83e37159 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x8428652f seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x8454852f misc_deregister +EXPORT_SYMBOL vmlinux 0x8455a56c block_invalidatepage +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84774a80 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x847a4866 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x8481568f inet6_ioctl +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x8491a6a1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x8493294e devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x849b3eef pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x849e2a1a fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x84b3acdb pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x84b4f7c0 vm_mmap +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84ebc35d flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x8500f3a3 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8518ccbe xp_can_alloc +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x85244877 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x852cbd80 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x854bb044 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x855fa771 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x8565a3ba dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x8565c359 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856affa1 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x856e539e vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x85822d22 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85930ab4 dquot_resume +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c4a316 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x85ceea74 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85dfebb1 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x85ec295f dm_table_event +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f3f3b3 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x86325d2f pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x86363e05 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864139f8 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x8647d815 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x864a7ce5 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x864b6668 udp_ioctl +EXPORT_SYMBOL vmlinux 0x866451fb mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x8672c0be uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x86743c7b mmc_start_request +EXPORT_SYMBOL vmlinux 0x86821ca7 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86b481e9 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d29e94 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d9af81 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x86e7421f notify_change +EXPORT_SYMBOL vmlinux 0x86f1e1cb write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f83bc6 __x86_indirect_alt_call_rsi +EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87053bc3 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x870cb42b serio_interrupt +EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x871a3a52 lease_modify +EXPORT_SYMBOL vmlinux 0x87409e59 sock_wake_async +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x877da63b neigh_xmit +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x87a9780e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x87b0135e ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87b9a53c consume_skb +EXPORT_SYMBOL vmlinux 0x87cb7d1e kernel_read +EXPORT_SYMBOL vmlinux 0x8806cbf9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x88087f1c __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x881d421c remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x881f521a vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x88217940 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x883136c2 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x883e5df3 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x8841a022 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x884655d8 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x886e6d5e xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8883eb52 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88a095a0 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x88a0dbd0 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88df178d md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e3a7c5 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x88f54382 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x89041967 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x8905f990 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x891fa85e intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x89280924 seq_write +EXPORT_SYMBOL vmlinux 0x892bf5c4 dev_addr_add +EXPORT_SYMBOL vmlinux 0x893d2530 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x897d6f8b dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8981561c inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x898e0d3d __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89cbe230 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x89dbf54d ipv4_specific +EXPORT_SYMBOL vmlinux 0x89ed4ae3 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x89ed9157 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x89f1a4bd __fs_parse +EXPORT_SYMBOL vmlinux 0x8a00d108 init_pseudo +EXPORT_SYMBOL vmlinux 0x8a2eb35d dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a405148 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a473c9f __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7c25e6 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a910789 sock_alloc +EXPORT_SYMBOL vmlinux 0x8a957f7f seq_escape +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa44b56 rproc_del +EXPORT_SYMBOL vmlinux 0x8ab4dc31 dev_open +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ac7646b tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x8ad88033 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x8ae48f96 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b147094 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x8b219093 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba03d85 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x8baa4fb5 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x8badec48 put_cmsg +EXPORT_SYMBOL vmlinux 0x8bb037a9 con_is_bound +EXPORT_SYMBOL vmlinux 0x8bb4d79a agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bd7183e vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x8bdbeb81 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x8be03215 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x8be4674e mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x8be69cae genl_unregister_family +EXPORT_SYMBOL vmlinux 0x8c1009c8 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x8c23a04d dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c272963 pskb_extract +EXPORT_SYMBOL vmlinux 0x8c2b8311 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x8c428d44 config_item_get +EXPORT_SYMBOL vmlinux 0x8c5c0275 generic_file_open +EXPORT_SYMBOL vmlinux 0x8c5e9b3f mmc_of_parse +EXPORT_SYMBOL vmlinux 0x8c6062ca pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c6d09ac ppp_input_error +EXPORT_SYMBOL vmlinux 0x8c7e3639 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8d71c5 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x8c8d9245 pci_restore_state +EXPORT_SYMBOL vmlinux 0x8c95bbdf skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca4a562 nf_log_packet +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc477f2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x8cc71707 da903x_query_status +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cce4af2 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ceab424 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8d156c0c param_get_ulong +EXPORT_SYMBOL vmlinux 0x8d1e277c kthread_blkcg +EXPORT_SYMBOL vmlinux 0x8d256b4c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x8d34fb51 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d58d4f8 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x8d59f3cc blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8d604b99 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d71bf69 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d9c1c89 devm_release_resource +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ddfbcc7 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8debc92a xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x8debef9a pci_scan_slot +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8deeecc8 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e2d1236 ex_handler_wrmsr_unsafe +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e7066cd tso_build_data +EXPORT_SYMBOL vmlinux 0x8e70f6ce free_netdev +EXPORT_SYMBOL vmlinux 0x8e71fee4 registered_fb +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb2dfe0 datagram_poll +EXPORT_SYMBOL vmlinux 0x8ebfaa69 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x8ec37881 sk_wait_data +EXPORT_SYMBOL vmlinux 0x8ece4a6a scsi_host_busy +EXPORT_SYMBOL vmlinux 0x8ed3dde1 dquot_transfer +EXPORT_SYMBOL vmlinux 0x8edebe82 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x8ee7f16e phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x8ef23e47 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f03d189 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x8f0e7a33 mount_bdev +EXPORT_SYMBOL vmlinux 0x8f1a10b8 proc_set_user +EXPORT_SYMBOL vmlinux 0x8f1fca8d mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f298c25 __skb_checksum +EXPORT_SYMBOL vmlinux 0x8f31a56e dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x8f38d383 ex_handler_default +EXPORT_SYMBOL vmlinux 0x8f39fbd4 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x8f4cbebb ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x8f71a9c8 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x8f805bf7 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f82da82 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8facf8b4 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x8fbfada5 cont_write_begin +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8ff244a8 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8fffb4f8 user_revoke +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x901765cd tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x90251d75 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x9029bb7a dquot_drop +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x903f54e1 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905fc529 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x9064af90 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x90794b95 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x907a18e2 setup_new_exec +EXPORT_SYMBOL vmlinux 0x907c3088 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x907d8fbf neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x9082109e to_ndd +EXPORT_SYMBOL vmlinux 0x90822a31 is_subdir +EXPORT_SYMBOL vmlinux 0x90bb82c8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x90d6c28f security_path_rename +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x910024be __x86_indirect_alt_call_rdx +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x912707a6 mmc_command_done +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9165a8c3 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917d7b13 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x918ae1f7 block_truncate_page +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b2eba8 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x91bb4cbc __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x91bc58df mmc_erase +EXPORT_SYMBOL vmlinux 0x91bd9224 iptun_encaps +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c15a3c alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x91df2912 import_iovec +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fe6caa i2c_del_driver +EXPORT_SYMBOL vmlinux 0x91ff94a9 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x921986e7 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x92199578 module_put +EXPORT_SYMBOL vmlinux 0x9225dbb1 dquot_release +EXPORT_SYMBOL vmlinux 0x92264efc truncate_setsize +EXPORT_SYMBOL vmlinux 0x9227d80c inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9233ef31 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923cba0e xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x9248c485 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925ca891 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x92601bd9 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x926ff77b fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9296fdef secpath_set +EXPORT_SYMBOL vmlinux 0x92997c75 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c0380d udp_set_csum +EXPORT_SYMBOL vmlinux 0x92d523c9 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e3bc1e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f3646c neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93009724 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x9300f350 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x93041686 key_put +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931549c6 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x9318ea41 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x9326f1fc gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x93300837 km_query +EXPORT_SYMBOL vmlinux 0x9336ea66 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x939aeff2 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93af6518 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x93affeaf vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x93b1fa5b __getblk_gfp +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c09f61 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x93c71126 page_symlink +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93e39b5c input_open_device +EXPORT_SYMBOL vmlinux 0x93e930a9 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x93e99138 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x93efbb05 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x93f0525a console_stop +EXPORT_SYMBOL vmlinux 0x93f12561 nla_put +EXPORT_SYMBOL vmlinux 0x941d4324 dma_resv_init +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x94298795 input_release_device +EXPORT_SYMBOL vmlinux 0x9439e174 param_get_invbool +EXPORT_SYMBOL vmlinux 0x94405c67 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x9442f5ba flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x9447be3c pnp_device_detach +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944d6563 deactivate_super +EXPORT_SYMBOL vmlinux 0x945bec12 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x948349ef put_watch_queue +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948825aa ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b07d1e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bbbaf2 param_get_bool +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cb0114 finish_swait +EXPORT_SYMBOL vmlinux 0x94cf5a2e dev_uc_init +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94e88b17 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x94ef609f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x94f34c56 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950eb0bc generic_listxattr +EXPORT_SYMBOL vmlinux 0x9518d38e param_ops_string +EXPORT_SYMBOL vmlinux 0x954c32ba cfb_imageblit +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9561fa4e cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x956fad23 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x95778467 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x9581ee7c __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x958f3ece vfs_create_mount +EXPORT_SYMBOL vmlinux 0x95917946 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95ace049 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x95c154ea mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x96027b5a __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x96066f63 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x960e12ed dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x961f05e7 vfs_create +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x96355cd2 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x9639e014 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x9641a770 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x96432611 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x9648d66e __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x965ef7f5 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x967f5f3c amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x968f3b29 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x9696c015 fiemap_prep +EXPORT_SYMBOL vmlinux 0x96a7a290 netdev_change_features +EXPORT_SYMBOL vmlinux 0x96aef745 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x96b2431e xp_alloc +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c38627 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cdb23d d_lookup +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96ecdd73 udp_seq_start +EXPORT_SYMBOL vmlinux 0x96efbb32 seq_release_private +EXPORT_SYMBOL vmlinux 0x96f1dbb7 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fc852e __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x9709c512 mount_single +EXPORT_SYMBOL vmlinux 0x97261ced sock_alloc_file +EXPORT_SYMBOL vmlinux 0x972f0d89 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x9788c11a pcim_iounmap +EXPORT_SYMBOL vmlinux 0x978b70f9 sock_wfree +EXPORT_SYMBOL vmlinux 0x97933834 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97a52c9c tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x97a56f67 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b5999f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97ca9721 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x97cd303f register_md_personality +EXPORT_SYMBOL vmlinux 0x97dc5c6b skb_free_datagram +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97e32d9d inode_init_owner +EXPORT_SYMBOL vmlinux 0x97e7881f __find_get_block +EXPORT_SYMBOL vmlinux 0x97f12e16 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x9803e97d dev_mc_del +EXPORT_SYMBOL vmlinux 0x980e130c fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x98134f6e audit_log +EXPORT_SYMBOL vmlinux 0x98192d3d amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982a2d5e __bread_gfp +EXPORT_SYMBOL vmlinux 0x98618111 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x9880d951 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x989377d6 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x98a2ca97 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x98b104b8 dns_query +EXPORT_SYMBOL vmlinux 0x98b789f6 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x98b8bd8f inet_select_addr +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c0e3ec phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98dd2ec8 __x86_indirect_alt_call_r11 +EXPORT_SYMBOL vmlinux 0x98e22871 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f60937 sock_no_getname +EXPORT_SYMBOL vmlinux 0x98fe3b3b d_rehash +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99295572 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x992a745c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x992d10c0 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9945541d devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x99457e95 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x9945b750 set_posix_acl +EXPORT_SYMBOL vmlinux 0x9950239f filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9967e8dc scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x9974b416 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9976d3e4 __x86_indirect_alt_jmp_rbp +EXPORT_SYMBOL vmlinux 0x9976f003 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e489a7 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x99edae9c param_set_invbool +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fb14f6 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x9a079023 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x9a084c1b tcf_classify +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a211478 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a4ebc72 generic_permission +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a89c89c _dev_printk +EXPORT_SYMBOL vmlinux 0x9a8e7967 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x9a916420 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x9aa31af3 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab2baa7 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x9ab7b3c1 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x9abef763 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ad97a84 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b09da4c locks_init_lock +EXPORT_SYMBOL vmlinux 0x9b18b2fb skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b6328ec devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b735824 inet6_getname +EXPORT_SYMBOL vmlinux 0x9bb443d2 block_commit_write +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bcff1cf __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x9bd12c99 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x9be8b645 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x9bed5263 __put_page +EXPORT_SYMBOL vmlinux 0x9beda7c2 cdev_device_del +EXPORT_SYMBOL vmlinux 0x9c07dcbd inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c265031 dst_discard_out +EXPORT_SYMBOL vmlinux 0x9c444382 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x9c510741 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x9c5d5025 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x9c62eee5 textsearch_register +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9ca38390 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cbed34f xfrm_input +EXPORT_SYMBOL vmlinux 0x9cc18d4f security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x9ccb7f07 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cd97caf vfs_unlink +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d11f262 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9d12da40 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3924f6 __x86_indirect_alt_jmp_r13 +EXPORT_SYMBOL vmlinux 0x9d393ddf pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x9d59ff99 seq_puts +EXPORT_SYMBOL vmlinux 0x9d5ce21c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d74407a udp_read_sock +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9daa9249 skb_put +EXPORT_SYMBOL vmlinux 0x9db948de blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x9deb3a01 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x9df16055 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e11692e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e223340 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e6a41f0 request_key_rcu +EXPORT_SYMBOL vmlinux 0x9e7638f1 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaad51b skb_dequeue +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ebc7a78 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9f169c07 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x9f1714d9 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x9f1cd8a4 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x9f22c6b8 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x9f3173b2 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x9f31df56 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x9f3b1282 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x9f3cdc96 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5af6d4 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x9f5eaeb8 dev_get_stats +EXPORT_SYMBOL vmlinux 0x9f61bcb2 phy_device_create +EXPORT_SYMBOL vmlinux 0x9f655399 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f76ca4d d_drop +EXPORT_SYMBOL vmlinux 0x9f872ee0 vga_con +EXPORT_SYMBOL vmlinux 0x9f8ada2c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fc14740 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9fc83c7d ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fded563 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0425f3a security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04ee00e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xa0560ff8 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa0604878 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07d787a __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa08eacfb vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b70385 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa0c3870a tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa0cd19fb skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xa0d2f391 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dd8794 framebuffer_release +EXPORT_SYMBOL vmlinux 0xa0de3264 qdisc_put +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0ef4f41 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108933d blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11b648b netdev_crit +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa140ed77 ethtool_notify +EXPORT_SYMBOL vmlinux 0xa14227c5 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa15bb949 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xa160b3eb padata_do_serial +EXPORT_SYMBOL vmlinux 0xa16d2eef sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa1990a0b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xa19a3aec dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1d54d3c security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xa1d948dd dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xa1e22b10 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa1f3a41d pci_request_region +EXPORT_SYMBOL vmlinux 0xa1f9a134 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa21645df del_gendisk +EXPORT_SYMBOL vmlinux 0xa22adc08 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa238c6d1 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25a7cf9 pci_get_slot +EXPORT_SYMBOL vmlinux 0xa25b0a53 shmem_aops +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa26af135 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xa27a2bf3 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28f4202 current_task +EXPORT_SYMBOL vmlinux 0xa2b6ed24 block_read_full_page +EXPORT_SYMBOL vmlinux 0xa3181a76 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa32aee08 sock_i_ino +EXPORT_SYMBOL vmlinux 0xa32f3f5e unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa330306e d_obtain_root +EXPORT_SYMBOL vmlinux 0xa3318e07 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa345a713 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3984d8c import_single_range +EXPORT_SYMBOL vmlinux 0xa3a5c436 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xa3a60143 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xa3bcd99d do_SAK +EXPORT_SYMBOL vmlinux 0xa3bed25a phy_config_aneg +EXPORT_SYMBOL vmlinux 0xa3dad4e6 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3f08c4a __x86_indirect_alt_jmp_rdi +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa42ee3be blk_execute_rq +EXPORT_SYMBOL vmlinux 0xa4417282 unlock_buffer +EXPORT_SYMBOL vmlinux 0xa462c9e9 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xa47242d3 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xa4738cc8 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa491089d md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa4aaef47 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xa4b151dd xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa4b634d5 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bf7da8 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4df2ba0 free_task +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa51c3687 release_pages +EXPORT_SYMBOL vmlinux 0xa525137f __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa535fd3d blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xa552142a __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55451c7 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa55f0880 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xa57d1327 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5c7f012 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa5c93c4c input_flush_device +EXPORT_SYMBOL vmlinux 0xa5d3289a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xa5d4a9ee pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5ee2981 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xa600c9c1 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xa60f8161 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xa6102f32 md_reload_sb +EXPORT_SYMBOL vmlinux 0xa6105553 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa620a273 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa6212845 clear_inode +EXPORT_SYMBOL vmlinux 0xa624e66d eth_header_parse +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa6391cb7 posix_lock_file +EXPORT_SYMBOL vmlinux 0xa63982b7 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xa655b579 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xa6619630 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa669fe4f tso_start +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a06578 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xa6c04dba netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xa6c4e75f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xa6cdb46a vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xa6e3fdc5 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xa6e96ff7 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xa6fb244f flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72688e1 dqput +EXPORT_SYMBOL vmlinux 0xa72be9a6 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa72eafc2 __d_lookup_done +EXPORT_SYMBOL vmlinux 0xa73242b9 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa75cdb4e page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xa7630629 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77cd364 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa797e7c4 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xa7c955ea pci_request_regions +EXPORT_SYMBOL vmlinux 0xa7d594f3 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xa7d5e965 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e908b2 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7ef8943 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa7f04b66 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xa7fad673 param_get_ullong +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa818d25f tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xa82eef82 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xa8351366 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8442aa6 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85458c0 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89ae0a1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa8b3699b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xa8baa46f blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xa8bd9ea7 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xa8bf6bed phy_attach +EXPORT_SYMBOL vmlinux 0xa8c3af28 console_start +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8daea1b dma_resv_fini +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f03ff3 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xa8f41c62 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa91086f1 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91b0b29 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa91fbb82 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xa92020ae mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xa922cd7f devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa943523e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa95443c6 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xa9573899 key_validate +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa9754221 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9c3d7b5 path_put +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9c8101f kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xa9f470f3 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1b2240 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xaa238cd8 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xaa32e641 from_kgid +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa42ea40 register_cdrom +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa457a41 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xaa6bf524 tty_port_put +EXPORT_SYMBOL vmlinux 0xaa6c5fe8 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xaa6e5ae9 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7a525d seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xaa7b851f dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xaa7c2ee9 mdiobus_read +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa4ce89 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xaaa59e04 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xaab6e2ba alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xaac206ce jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaad94682 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xaae61fbb twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaae8d1af pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xaaf633a5 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xaafd4cdd textsearch_prepare +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafdee2c sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xab07dfad simple_empty +EXPORT_SYMBOL vmlinux 0xab0d8e54 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xab129e8a single_open_size +EXPORT_SYMBOL vmlinux 0xab16efba ppp_channel_index +EXPORT_SYMBOL vmlinux 0xab1d45aa d_find_any_alias +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab4e150a generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab69b199 sock_release +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab91ad43 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xab9646de grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xab9e8005 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xaba3a831 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xaba927dc jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xabaa35b9 d_exact_alias +EXPORT_SYMBOL vmlinux 0xababdc85 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xabc0b7af vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xabcdf2e1 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xabd00d90 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xabd69c53 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf19b21 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac235b09 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac44befb scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xac45c48a scsi_partsize +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5e98ae dev_remove_offload +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac61b224 d_find_alias +EXPORT_SYMBOL vmlinux 0xac6ae964 __icmp_send +EXPORT_SYMBOL vmlinux 0xac6f0ed9 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac8790f7 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xaca713dc ata_print_version +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbd1b1f inet_add_offload +EXPORT_SYMBOL vmlinux 0xacbea514 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xaccefed6 kill_pgrp +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace6ba5c vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad15fc97 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xad2951a9 ex_handler_rdmsr_unsafe +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad48c716 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xad53233d get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad5d59ac security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad793209 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xad875637 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xad8f2729 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xad9613cb freezing_slow_path +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xad9d5ea3 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada92e61 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xadb7cbdf netlink_unicast +EXPORT_SYMBOL vmlinux 0xadbba3d9 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadcd6f00 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd1fbae tcf_idr_create +EXPORT_SYMBOL vmlinux 0xaded5a3f filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae302444 dm_io +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae5eef06 phy_device_free +EXPORT_SYMBOL vmlinux 0xae7e7ea0 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xae981e22 dev_deactivate +EXPORT_SYMBOL vmlinux 0xae9e9851 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec8e8ee filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaee84ff3 igrab +EXPORT_SYMBOL vmlinux 0xaef4f6bf fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xaefc192d flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xaefde210 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xaf131b7d page_pool_put_page +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf36b408 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf541cee proc_create +EXPORT_SYMBOL vmlinux 0xaf829ad7 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xaf8a5cb5 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xaf9eef9d phy_modify_paged +EXPORT_SYMBOL vmlinux 0xafb6bf36 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb032badb skb_seq_read +EXPORT_SYMBOL vmlinux 0xb04181b1 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb0492a97 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0630d37 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xb073a03b pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xb07cb52d param_ops_ulong +EXPORT_SYMBOL vmlinux 0xb09ec270 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a9e7ab tcp_connect +EXPORT_SYMBOL vmlinux 0xb0b5cf52 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0eae422 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xb0ed77b7 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb0ee5334 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f74a5e ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb122aad2 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xb12a20c8 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb13f6671 sk_dst_check +EXPORT_SYMBOL vmlinux 0xb1438f42 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb181edb7 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb182e67b sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1ad0650 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb1c00636 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d25f8b mdio_device_register +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1da8891 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1f8e415 seq_lseek +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2282a74 devm_iounmap +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb24d891d single_open +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb2654a88 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xb285cbf4 set_binfmt +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c56f39 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xb2c5830a flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xb2c94727 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb2ea01ec pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fabf63 efi +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fcd7d3 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb300ca8b unpin_user_page +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30c8162 kill_litter_super +EXPORT_SYMBOL vmlinux 0xb31adb6c dentry_open +EXPORT_SYMBOL vmlinux 0xb31c24be vfs_llseek +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32c1e4a netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb32dc6ec param_get_int +EXPORT_SYMBOL vmlinux 0xb33a2913 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xb33fa463 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xb346134c sock_efree +EXPORT_SYMBOL vmlinux 0xb36875e8 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb374a576 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xb382c9c6 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb398949f vga_client_register +EXPORT_SYMBOL vmlinux 0xb39e28d4 vif_device_init +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a7bc08 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xb3bab761 module_refcount +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d82bf2 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f92ef4 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb4023175 __x86_indirect_alt_jmp_r14 +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb406fabb locks_remove_posix +EXPORT_SYMBOL vmlinux 0xb41d2a8b kernel_accept +EXPORT_SYMBOL vmlinux 0xb423d6ae follow_down +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb428bc8c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb42e46c6 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb43fbadc napi_get_frags +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb47bf6f7 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb4860220 __quota_error +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49fc87f udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb4a611bb mmc_request_done +EXPORT_SYMBOL vmlinux 0xb4c67be2 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xb4e3c8d2 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb4ea7e1e unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f5a4c7 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xb4fd2e5c stop_tty +EXPORT_SYMBOL vmlinux 0xb509af05 bio_uninit +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5330c86 bdi_register +EXPORT_SYMBOL vmlinux 0xb53695e8 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb54b3fca fget_raw +EXPORT_SYMBOL vmlinux 0xb54fec4c vme_irq_free +EXPORT_SYMBOL vmlinux 0xb55f05c0 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb568e921 gro_cells_init +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57514c9 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5edd275 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb5f7d500 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xb601be4c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0xb60bcf4e generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb6113e81 input_inject_event +EXPORT_SYMBOL vmlinux 0xb619e780 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb61cd8c2 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb66acb13 serio_close +EXPORT_SYMBOL vmlinux 0xb66d29fc vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67a8a7d mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6929eeb pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a199d3 __scsi_execute +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b79e50 d_alloc +EXPORT_SYMBOL vmlinux 0xb6bf2e0b ata_link_printk +EXPORT_SYMBOL vmlinux 0xb6c1142b gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xb6ca1392 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xb6d99e10 skb_pull +EXPORT_SYMBOL vmlinux 0xb6df220f migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xb6e0656a pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xb6e93374 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb701e81e blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xb70892aa km_policy_expired +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72fdf86 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb77db966 mmput_async +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb788d9b7 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb78a1d50 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7a163d9 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xb7a90cc4 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xb7b25e2c md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb7bfa07f vfs_symlink +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c62f6b filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d489f8 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xb7f0cd0e xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xb8107ece __x86_indirect_alt_jmp_rcx +EXPORT_SYMBOL vmlinux 0xb814f9f1 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb82c2897 init_task +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb8326c92 inet_shutdown +EXPORT_SYMBOL vmlinux 0xb84f9e22 pci_disable_device +EXPORT_SYMBOL vmlinux 0xb8628a1d pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xb866658e rproc_alloc +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb882162b mark_info_dirty +EXPORT_SYMBOL vmlinux 0xb884d392 begin_new_exec +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb894f823 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a168a3 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c3a5ce backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xb8d29c51 from_kprojid +EXPORT_SYMBOL vmlinux 0xb8d4bf39 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xb8e7a77d ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb903bae5 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb9118a22 nf_log_unset +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb91d42ee param_set_int +EXPORT_SYMBOL vmlinux 0xb91f9579 keyring_alloc +EXPORT_SYMBOL vmlinux 0xb9297a3f devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb952fdbc tty_port_init +EXPORT_SYMBOL vmlinux 0xb96d1d94 current_in_userns +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb9a1164b nd_btt_version +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b3cd07 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xb9bc2db1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb9c7bad4 kobject_get +EXPORT_SYMBOL vmlinux 0xb9c96496 security_path_mknod +EXPORT_SYMBOL vmlinux 0xb9d8b56f kern_unmount +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fdd499 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1319ea dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xba218527 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba49bb9d security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xba4b2594 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xba4b49c1 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xba5363e2 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5cbd35 devm_ioremap +EXPORT_SYMBOL vmlinux 0xba6b39ec rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xba769abb security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xba7d6cad inet_register_protosw +EXPORT_SYMBOL vmlinux 0xba891216 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba9bf0fd nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xbaa5970a devfreq_add_device +EXPORT_SYMBOL vmlinux 0xbab0c89e genphy_loopback +EXPORT_SYMBOL vmlinux 0xbab1d715 xattr_full_name +EXPORT_SYMBOL vmlinux 0xbad2cf1f phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xbaf379e5 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xbb014ec1 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb05e41b flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xbb09f26a nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb267bdf __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0xbb32426a seq_putc +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb44e6d8 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xbb4eb37d dev_activate +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba3c4b5 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xbbad57f4 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xbbafaf65 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xbbb50085 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xbbcbc81a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xbbddc8d6 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbf1c6d9 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xbbf28379 sock_init_data +EXPORT_SYMBOL vmlinux 0xbbf39f0f tcp_poll +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3056e1 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xbc3b331d skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xbc68c1bf ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xbc86c76d pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xbc88f211 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xbc8c879c device_add_disk +EXPORT_SYMBOL vmlinux 0xbc98a1a0 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xbc9cfff6 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcac1b49 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xbcaf2b92 init_special_inode +EXPORT_SYMBOL vmlinux 0xbcb66810 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xbcbf3f36 register_console +EXPORT_SYMBOL vmlinux 0xbcc14bbc dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xbce3b55f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xbce79490 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xbcf94b12 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xbd03f38b thaw_super +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4a531e phy_print_status +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd69eaa8 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbd86c64b component_match_add_release +EXPORT_SYMBOL vmlinux 0xbd95497d bio_endio +EXPORT_SYMBOL vmlinux 0xbd9c919b dquot_acquire +EXPORT_SYMBOL vmlinux 0xbd9d510d cdev_init +EXPORT_SYMBOL vmlinux 0xbd9f1916 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xbda81c52 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xbdb6107b set_page_dirty +EXPORT_SYMBOL vmlinux 0xbdc22677 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xbdcd987f pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xbde2a64e security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xbde2ce62 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xbde3d7c8 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xbdefd53b __scm_destroy +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdfe9781 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe026b8b d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xbe0596b0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xbe0d0581 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xbe114099 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe19fb0b sget +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4c981c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xbe4eb27d mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe538aaa set_pages_wb +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe7967ba inet_frags_fini +EXPORT_SYMBOL vmlinux 0xbe7d1f2c padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe8712ca mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xbebba8b4 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xbecb0cce dec_node_page_state +EXPORT_SYMBOL vmlinux 0xbed0bb54 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xbed85ee1 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xbee29274 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf159c99 fs_bio_set +EXPORT_SYMBOL vmlinux 0xbf264c44 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xbf2e00dc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3bdbe0 sock_rfree +EXPORT_SYMBOL vmlinux 0xbf516157 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf63f46e input_allocate_device +EXPORT_SYMBOL vmlinux 0xbf74e259 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xbf99af39 neigh_destroy +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa1ee32 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xbfa54419 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xbfa6a2aa pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xbfa81dff remove_proc_entry +EXPORT_SYMBOL vmlinux 0xbfaad01d napi_gro_flush +EXPORT_SYMBOL vmlinux 0xbfbf99ea generic_file_fsync +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc41225 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xbfd675bf sock_gettstamp +EXPORT_SYMBOL vmlinux 0xbfdcb43a __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff42f90 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xc017d7de delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc025f349 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xc02a65d2 genl_register_family +EXPORT_SYMBOL vmlinux 0xc040bacf dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xc07351b3 __SCT__cond_resched +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc082e267 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xc08459ad pci_read_vpd +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b19709 __x86_indirect_alt_call_r13 +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0d37ff1 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xc0fcda30 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc117a36f param_set_uint +EXPORT_SYMBOL vmlinux 0xc12260d0 mmc_release_host +EXPORT_SYMBOL vmlinux 0xc1227f8c vme_irq_handler +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc14a0e4e noop_fsync +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15a64b9 bmap +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16afa4b eth_header +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc194225f ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xc1b48563 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1febd59 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xc203a50d netif_carrier_off +EXPORT_SYMBOL vmlinux 0xc20ed5b4 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xc22529d6 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xc229239a __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xc22efe00 phy_suspend +EXPORT_SYMBOL vmlinux 0xc2364c2a page_pool_release_page +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc2867a44 vfs_readlink +EXPORT_SYMBOL vmlinux 0xc28f2ff4 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc29957c3 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2bee1c6 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xc2da2f93 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e7aa71 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc2e983ba tcp_child_process +EXPORT_SYMBOL vmlinux 0xc2f29768 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xc2facd63 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31b390f input_free_device +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc36754f3 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3743178 pcim_iomap +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37b102b default_llseek +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc389736d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3a1c929 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xc3a909e6 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xc3aacb96 netif_napi_add +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b2d5ba blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c9a2e7 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xc3e7c57f get_phy_device +EXPORT_SYMBOL vmlinux 0xc3f5ea37 dma_map_resource +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc427e5e3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc441f2e2 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xc444e3e0 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xc476b1e7 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47a793d alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xc49d87db filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xc49e4778 nd_device_notify +EXPORT_SYMBOL vmlinux 0xc4adab8f dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4af61f6 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xc4ba3441 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xc4df3769 sget_fc +EXPORT_SYMBOL vmlinux 0xc4dfea40 configfs_register_group +EXPORT_SYMBOL vmlinux 0xc4e342e5 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xc4fe601b __x86_indirect_alt_call_rbp +EXPORT_SYMBOL vmlinux 0xc510d632 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xc5123526 netdev_err +EXPORT_SYMBOL vmlinux 0xc5216e4f __phy_resume +EXPORT_SYMBOL vmlinux 0xc521a8aa sock_no_connect +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc52f30a9 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xc532ed7b __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc541ebb8 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xc54fb919 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc5559d37 __x86_indirect_alt_jmp_r11 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc55a19ea tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xc576c5b6 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc57e3844 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xc58a8a90 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc58dc2f6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5be66d0 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xc5ca80b0 fqdir_init +EXPORT_SYMBOL vmlinux 0xc5cfe0d5 set_disk_ro +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6271557 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xc631446f scm_fp_dup +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc64eac80 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xc6583039 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66396b7 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6759303 generic_read_dir +EXPORT_SYMBOL vmlinux 0xc677ddc0 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xc67ff130 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc694b635 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xc6b3cd2e __inet_hash +EXPORT_SYMBOL vmlinux 0xc6bd34b1 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cfb394 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc7055124 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7163881 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc721bb53 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc72b083a dev_get_by_name +EXPORT_SYMBOL vmlinux 0xc74dcb47 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xc74fe075 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xc758b823 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xc75ef4b7 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc76ff0ec security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc7739dc2 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc77d4204 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7868847 generic_writepages +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b77985 __brelse +EXPORT_SYMBOL vmlinux 0xc7b79db5 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xc7ba3ef3 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc833db8e i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85a9d77 kill_pid +EXPORT_SYMBOL vmlinux 0xc85bd665 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xc85bec23 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xc8604493 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xc86051a8 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87c2d24 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xc87f8940 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88b72a9 drop_super +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8990bcf inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c7f99b rproc_boot +EXPORT_SYMBOL vmlinux 0xc8da4ffc skb_copy +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e64575 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc91ddfb5 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9462fef blk_put_request +EXPORT_SYMBOL vmlinux 0xc94f4386 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xc94f8c07 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xc95551cb write_cache_pages +EXPORT_SYMBOL vmlinux 0xc9564ac2 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc981b1c0 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc98428c2 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xc99a7ea9 dev_add_offload +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9b54f6d fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xc9c69304 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xc9da6615 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9f43a35 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xca14d5ba pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1b90ac dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4f2360 get_tz_trend +EXPORT_SYMBOL vmlinux 0xca5aaba3 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xca6204a9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9a7170 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcacd89e0 input_set_keycode +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaeb8540 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0bdb1e arp_send +EXPORT_SYMBOL vmlinux 0xcb0ed201 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xcb1dc3cd prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xcb1fe957 logfc +EXPORT_SYMBOL vmlinux 0xcb2f4a10 inet_put_port +EXPORT_SYMBOL vmlinux 0xcb382e87 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb44f76f submit_bio_wait +EXPORT_SYMBOL vmlinux 0xcb5b6674 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb74b646 skb_store_bits +EXPORT_SYMBOL vmlinux 0xcb79c752 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xcb7fb326 phy_disconnect +EXPORT_SYMBOL vmlinux 0xcb844aa9 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xcba185e3 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xcbad1cde scsi_ioctl +EXPORT_SYMBOL vmlinux 0xcbb50794 km_new_mapping +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbd3e32e inode_permission +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc030d2a mntget +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1e74a5 __register_nls +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2cc80e netlink_ack +EXPORT_SYMBOL vmlinux 0xcc2d96cf skb_clone +EXPORT_SYMBOL vmlinux 0xcc2fd17f make_kgid +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc3a8f4d __SetPageMovable +EXPORT_SYMBOL vmlinux 0xcc4172b3 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xcc437736 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc530c82 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc65d07d xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xcc889741 __x86_indirect_alt_jmp_rdx +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccacbf9c get_acl +EXPORT_SYMBOL vmlinux 0xccbd58d2 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce49412 inet_addr_type +EXPORT_SYMBOL vmlinux 0xcce64437 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xcce7c3bb jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccfb75aa remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccfd515b d_instantiate +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd118666 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xcd170b6f __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xcd2485f3 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd32de28 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xcd3940b2 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xcd3aaf14 inet_del_offload +EXPORT_SYMBOL vmlinux 0xcd46c4ab xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xcd490b89 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xcd6d9a59 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xcd6e6b2a vme_master_mmap +EXPORT_SYMBOL vmlinux 0xcd86bf24 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xcd8833ef unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd92b5ac phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xcd97e9e4 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xcda70700 __module_get +EXPORT_SYMBOL vmlinux 0xcdb40b1a fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xcdb63448 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xcdbfbd70 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcad4fe tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xcdcecb91 param_ops_uint +EXPORT_SYMBOL vmlinux 0xcde16c6d send_sig_info +EXPORT_SYMBOL vmlinux 0xcde237bc tcp_req_err +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdef5f3a vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xcdfadb20 dm_put_device +EXPORT_SYMBOL vmlinux 0xce0116c1 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xce0de32b xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xce1b33fd devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xce21daff dma_find_channel +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce322084 unix_get_socket +EXPORT_SYMBOL vmlinux 0xce3581d0 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce546627 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xce5743dd input_reset_device +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6756ba vme_slot_num +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7ba90f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xce7fddd3 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8a1ee7 request_firmware +EXPORT_SYMBOL vmlinux 0xce8b1878 __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0xce9fb2d9 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceaa0c19 discard_new_inode +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec8cf0b pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced97c1b nf_log_trace +EXPORT_SYMBOL vmlinux 0xcedc93cd tcp_seq_start +EXPORT_SYMBOL vmlinux 0xceec1255 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcef9d711 mpage_writepages +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0fa427 seq_file_path +EXPORT_SYMBOL vmlinux 0xcf1e7627 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xcf242d0c sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2e6106 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xcf35fea9 d_add_ci +EXPORT_SYMBOL vmlinux 0xcf41abf0 pci_free_irq +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf56d131 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xcf578181 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xcf58a516 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xcf6f4e1f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xcf709465 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xcf8e2eac phy_error +EXPORT_SYMBOL vmlinux 0xcf90ee8c dev_driver_string +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfac4556 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xcfb3c786 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xcfbc7267 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfdc372d textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcfdc5080 register_qdisc +EXPORT_SYMBOL vmlinux 0xcfe31ad3 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xcfebc8d4 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xcfeffc6c skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xcff719f6 tcf_block_get +EXPORT_SYMBOL vmlinux 0xcff9b654 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xd013d3e7 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xd01bfaca phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd02f3400 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xd03f9ae6 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0589f1a tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xd05bf378 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd07d25a7 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xd089419f skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bc2876 submit_bh +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0e84fdf dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd103886d phy_stop +EXPORT_SYMBOL vmlinux 0xd12fa98b finish_open +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13a41a1 find_vma +EXPORT_SYMBOL vmlinux 0xd13a71ec ___pskb_trim +EXPORT_SYMBOL vmlinux 0xd1472ffd vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xd14c49b7 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd15025d8 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1988084 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xd1a890bd __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0xd1c16d15 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd1c19851 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1df9d42 phy_driver_register +EXPORT_SYMBOL vmlinux 0xd1e9a8c9 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xd1ea9e26 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f62ff7 dev_uc_del +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2219766 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27edf0b tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xd283231e pci_fixup_device +EXPORT_SYMBOL vmlinux 0xd2832e03 __register_binfmt +EXPORT_SYMBOL vmlinux 0xd2847715 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xd2893a59 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd29a452f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xd2b3e64d fb_blank +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c72e1a __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d441da jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2deec12 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2f7b3d6 peernet2id +EXPORT_SYMBOL vmlinux 0xd31764ca dma_pool_create +EXPORT_SYMBOL vmlinux 0xd3272cce tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd353f21d try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3548e5e __break_lease +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd35dda80 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd378cb45 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd38b45c5 seq_dentry +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd396f803 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xd3a7e53d iterate_supers_type +EXPORT_SYMBOL vmlinux 0xd3a93771 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd3dc7033 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xd3e262a7 page_pool_create +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f82e0a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd4008b43 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41ba563 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd455a9dd devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xd45b1f18 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4697492 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd472a4b9 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd493e6cd rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd4abf80c simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd4b16792 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e976c8 sock_create_kern +EXPORT_SYMBOL vmlinux 0xd4f08320 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd501dfa0 ip6_mtu +EXPORT_SYMBOL vmlinux 0xd50ce367 param_ops_int +EXPORT_SYMBOL vmlinux 0xd517aa81 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xd52377cd acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd53d7838 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xd5467299 elv_rb_del +EXPORT_SYMBOL vmlinux 0xd54701cf pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xd5472429 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xd5721cfe flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xd57f5c3b page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xd5857b4d fb_class +EXPORT_SYMBOL vmlinux 0xd589a50d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd5975035 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xd59eb8bb udp_prot +EXPORT_SYMBOL vmlinux 0xd59f7233 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xd5a0a739 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5b52d1a fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xd5c62b5c phy_get_pause +EXPORT_SYMBOL vmlinux 0xd5f567a7 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd603bf00 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60c1b81 iget5_locked +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd654e8f7 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xd66ce938 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk +EXPORT_SYMBOL vmlinux 0xd67477df pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xd6759651 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xd67ae64c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xd684dadd rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd699f297 fqdir_exit +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b77b97 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xd6c5b137 fd_install +EXPORT_SYMBOL vmlinux 0xd6cc91d2 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xd6d234e0 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd6de3359 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xd6e61a8c pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f629bf remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd72d5061 vm_map_ram +EXPORT_SYMBOL vmlinux 0xd732c41a nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7433127 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd75cfc36 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xd77035fc mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xd774742d pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd7761135 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd78f1221 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xd791b8fa xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd7946405 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd7a6c74d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d4881c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7de5ceb PDE_DATA +EXPORT_SYMBOL vmlinux 0xd7e11a07 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xd7e1380c ip_ct_attach +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd804f932 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd807755a pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd80a7d66 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd8145d7f clocksource_unregister +EXPORT_SYMBOL vmlinux 0xd8184642 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xd82c6d73 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xd830678c __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd86fc594 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xd87ec870 sk_alloc +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b724fe i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xd8bc79bc unload_nls +EXPORT_SYMBOL vmlinux 0xd8ca4bdb scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd8cd123f dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d01e21 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd926681e ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd93a7723 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xd93f1228 inet6_offloads +EXPORT_SYMBOL vmlinux 0xd941a804 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xd9477826 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94ad975 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xd94dd4da phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xd95af046 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd973b856 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd979a547 __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd994c42d from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xd99af891 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd9a0b38e dma_set_mask +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9dba557 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xda0a4ee2 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda2eea47 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xda2f6238 simple_rename +EXPORT_SYMBOL vmlinux 0xda336868 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda518d45 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xda5df34f __neigh_create +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7430c7 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xda813a46 register_framebuffer +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda97c63a security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xdaad0a5a flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdaddbf89 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xdae63015 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xdb0d9844 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb198323 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7035d6 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xdb708839 __x86_indirect_alt_jmp_rsi +EXPORT_SYMBOL vmlinux 0xdb714b54 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb92bf6c mount_subtree +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdb9b9b9c iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xdbbdc496 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe8b5be pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xdbeb9ac0 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xdc0139d5 netpoll_setup +EXPORT_SYMBOL vmlinux 0xdc0c594b __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xdc123c7b flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3c0c40 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4bb954 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xdc4f02ac skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xdc4f31a4 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc72413a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xdc7aaa3f jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xdc8d3228 __x86_indirect_alt_call_r9 +EXPORT_SYMBOL vmlinux 0xdc9383b4 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xdc939ce1 simple_open +EXPORT_SYMBOL vmlinux 0xdca1f1c3 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xdcc298f9 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xdcccef09 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xdcf5817a config_item_set_name +EXPORT_SYMBOL vmlinux 0xdcffcdeb dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd0b846a unregister_qdisc +EXPORT_SYMBOL vmlinux 0xdd0d6029 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2d336d security_path_unlink +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7b2ab2 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xdd80aea8 fget +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8eabb6 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddc505f7 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddf0eb41 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xddf432f8 scmd_printk +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddff1eed jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xde013e30 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xde07542d clk_get +EXPORT_SYMBOL vmlinux 0xde098397 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xde159fd1 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde42734f wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xde42fa65 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xde4b5019 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xde4c39a1 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde678a4a vfs_ioctl +EXPORT_SYMBOL vmlinux 0xde69288f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde8e7b50 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeae2dab migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xdec537ae copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xded334fd __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef16bfa tcp_peek_len +EXPORT_SYMBOL vmlinux 0xdef1ef20 dump_skip +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d083 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdf08ef5e tcf_block_put +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf29899d netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf35912b tty_check_change +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3cc5e6 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xdf43f797 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xdf4e0557 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf566a59 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xdf5efa41 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6ba07d sk_stream_error +EXPORT_SYMBOL vmlinux 0xdf7f76d6 eisa_driver_register +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfa111dc phy_start_aneg +EXPORT_SYMBOL vmlinux 0xdfcaf4a0 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd7f997 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe290eb security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xdff57193 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe005f141 rproc_put +EXPORT_SYMBOL vmlinux 0xe009aecf nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xe00a9143 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe026b7c0 phy_loopback +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe0311fa5 inet_sendpage +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe052af0e xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xe0571140 bio_reset +EXPORT_SYMBOL vmlinux 0xe075e96a drop_nlink +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe083a337 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe09dbb0a sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xe0a5f72c is_nd_dax +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0ba0f84 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0d1787e xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe0d2e82b bio_chain +EXPORT_SYMBOL vmlinux 0xe0e61561 dump_skip_to +EXPORT_SYMBOL vmlinux 0xe0fb7caf inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xe111e555 vme_bus_type +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe118b0a0 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe127a57d __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xe127c8b7 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12cc3a5 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14d14d7 task_work_add +EXPORT_SYMBOL vmlinux 0xe1556eb5 load_nls_default +EXPORT_SYMBOL vmlinux 0xe15b3164 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xe15c4e5f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xe17d7b53 input_set_capability +EXPORT_SYMBOL vmlinux 0xe1837416 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xe19402b5 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xe195d6e8 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1b13527 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1c09e82 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xe1cd69de inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1fd8baf flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xe20ecc80 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22c2b03 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe2312ed4 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xe24993da thread_group_exited +EXPORT_SYMBOL vmlinux 0xe255eab3 sock_bind_add +EXPORT_SYMBOL vmlinux 0xe2619205 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe26b20ce phy_detach +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27c5bf0 simple_link +EXPORT_SYMBOL vmlinux 0xe27fc36f pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xe2821530 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe29dfea1 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xe2b32178 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xe2bec40b mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched +EXPORT_SYMBOL vmlinux 0xe2ceddd8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d921f3 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2fe0697 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe2fea7be page_mapping +EXPORT_SYMBOL vmlinux 0xe315d415 d_make_root +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe34d5b95 is_bad_inode +EXPORT_SYMBOL vmlinux 0xe35d9f8f con_is_visible +EXPORT_SYMBOL vmlinux 0xe38dcfcd _dev_err +EXPORT_SYMBOL vmlinux 0xe38dfe27 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a10399 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe3ab079b cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xe3cb5302 param_set_bint +EXPORT_SYMBOL vmlinux 0xe3d521ac blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3e1f734 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xe3e4c482 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f6107d param_ops_ullong +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe3fffae9 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xe4044499 kill_anon_super +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe42f3564 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4439eeb input_match_device_id +EXPORT_SYMBOL vmlinux 0xe44ada07 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xe455a104 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe471d251 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xe4933d21 brioctl_set +EXPORT_SYMBOL vmlinux 0xe4992011 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xe4ba202c param_ops_long +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4cfc8cd generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xe4d4a0de mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4e1ede6 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xe5002303 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xe5081026 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5341b3f tty_write_room +EXPORT_SYMBOL vmlinux 0xe55729ab rtc_add_group +EXPORT_SYMBOL vmlinux 0xe578b3e2 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58870c9 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5958319 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xe598cd31 __x86_indirect_alt_call_rcx +EXPORT_SYMBOL vmlinux 0xe59e9a68 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xe5aace00 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xe5b179c6 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe5b44ae3 tty_do_resize +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c85675 simple_rmdir +EXPORT_SYMBOL vmlinux 0xe5cfec36 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe5d74bb1 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xe5d89cd6 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xe5e15851 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xe5eb3928 proc_mkdir +EXPORT_SYMBOL vmlinux 0xe5f315e5 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe613b630 cdrom_release +EXPORT_SYMBOL vmlinux 0xe62b2167 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xe653323c udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe65406dd pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe662e094 elv_rb_add +EXPORT_SYMBOL vmlinux 0xe66d8a55 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xe67d6ad5 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe687ad91 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6a08150 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6e3ee1c mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe6f39f40 skb_append +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe6fabc83 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe7138f19 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xe715422e icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xe71bd25e kern_path_create +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe73c24ea reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xe747fad4 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xe7513ef1 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xe774732c reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xe776eb76 param_ops_short +EXPORT_SYMBOL vmlinux 0xe779908c tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xe779fe6d dm_unregister_target +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78d19ef dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xe7927cda mmc_retune_release +EXPORT_SYMBOL vmlinux 0xe79c4458 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a0f37f netif_rx +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b00dfb __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0xe7c9378d vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xe7ca7197 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e4374c page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe7e9933b get_user_pages +EXPORT_SYMBOL vmlinux 0xe7fb773d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xe7fc8925 md_integrity_register +EXPORT_SYMBOL vmlinux 0xe80029c8 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe851e259 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xe85dc04e __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xe85eaef1 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe860918c scsi_device_put +EXPORT_SYMBOL vmlinux 0xe872afc5 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xe87a95f3 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xe88be207 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xe8cd71c8 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90b7ce0 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91c5d8b udp_seq_next +EXPORT_SYMBOL vmlinux 0xe925bb54 phy_find_first +EXPORT_SYMBOL vmlinux 0xe928991f fs_param_is_string +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95817ab ex_handler_copy +EXPORT_SYMBOL vmlinux 0xe9678705 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xe96d2c39 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xe98a828a __x86_indirect_alt_call_r14 +EXPORT_SYMBOL vmlinux 0xe98f8711 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xe992abb8 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states +EXPORT_SYMBOL vmlinux 0xe9ad2b8a fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b19617 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xe9bd3095 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe9c3e6b0 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xe9ccd3c3 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xe9dc2c8e nf_log_set +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f335ee module_layout +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f9d248 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xe9fc40ec bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea17f44a sync_blockdev +EXPORT_SYMBOL vmlinux 0xea26c5a9 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xea2b85ed input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea416a69 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xea484d37 rproc_add +EXPORT_SYMBOL vmlinux 0xea53b04d scsi_remove_target +EXPORT_SYMBOL vmlinux 0xea58f3d4 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xea5efd13 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea850597 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xea8be62f dput +EXPORT_SYMBOL vmlinux 0xea8e6825 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xea9730d2 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb064cc9 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb0b3c61 backlight_device_register +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb44e01a flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xeb5386d4 sock_create_lite +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb957497 neigh_update +EXPORT_SYMBOL vmlinux 0xeb9a5c1a kern_unmount_array +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebaa8828 i2c_transfer +EXPORT_SYMBOL vmlinux 0xebcea2f0 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xebdecd20 get_fs_type +EXPORT_SYMBOL vmlinux 0xebeb314a dev_uc_sync +EXPORT_SYMBOL vmlinux 0xebf0f1db __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xebf3773c rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xebf4b98d proc_symlink +EXPORT_SYMBOL vmlinux 0xec003b1a tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xec00dded tcp_parse_options +EXPORT_SYMBOL vmlinux 0xec2022ee netif_rx_ni +EXPORT_SYMBOL vmlinux 0xec289940 blkdev_put +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4f96d4 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xec583858 seq_path +EXPORT_SYMBOL vmlinux 0xec7f4344 set_blocksize +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecd1dd96 key_alloc +EXPORT_SYMBOL vmlinux 0xecd87225 file_modified +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf047bf dst_dev_put +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xecffd8fa blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed2b67b2 send_sig +EXPORT_SYMBOL vmlinux 0xed2d612c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed3df4db neigh_seq_start +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5655f8 sock_no_listen +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed7b360c textsearch_unregister +EXPORT_SYMBOL vmlinux 0xed7b7385 setattr_copy +EXPORT_SYMBOL vmlinux 0xed929ab9 skb_expand_head +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbb34a6 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd9e618 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xede2ebf9 pci_iomap +EXPORT_SYMBOL vmlinux 0xedfd31c5 get_agp_version +EXPORT_SYMBOL vmlinux 0xee09adbe file_open_root +EXPORT_SYMBOL vmlinux 0xee16168b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xee179b68 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee312818 inode_init_once +EXPORT_SYMBOL vmlinux 0xee3667ab tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xee38f28c __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xee3f668b filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xee449178 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xee4c02f1 md_handle_request +EXPORT_SYMBOL vmlinux 0xee52133c kernel_bind +EXPORT_SYMBOL vmlinux 0xee541798 current_time +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee672c52 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb1eb pci_write_config_word +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee992f9b shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xee99b802 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeba05f0 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xeebc2991 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xeeddc21e d_alloc_name +EXPORT_SYMBOL vmlinux 0xeeeffb1e vme_dma_request +EXPORT_SYMBOL vmlinux 0xeef61dc3 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xef1b67f6 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xef346623 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xef3d424c mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xef633c51 param_get_hexint +EXPORT_SYMBOL vmlinux 0xef6b1ffd tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xef6f0351 has_capability +EXPORT_SYMBOL vmlinux 0xef71cdf6 ram_aops +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9c118f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc6448e jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf00d1d5e __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf019f668 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03c5434 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xf0401375 tcf_em_register +EXPORT_SYMBOL vmlinux 0xf04bb22d pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf093d034 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a68dfb __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0cfec13 thaw_bdev +EXPORT_SYMBOL vmlinux 0xf0d3303b dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xf0d88855 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xf0de72c6 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xf0e162a2 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xf0edfee7 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xf0ffa9ac mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf127d2d7 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xf12fce9d vlan_for_each +EXPORT_SYMBOL vmlinux 0xf132d2b8 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf1540c3e ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf15cfad4 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xf15d52f4 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xf17a347f bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf188ff34 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a058a1 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1a9217c dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf1c8304f thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xf1c94b3c eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf1ccc91a input_event +EXPORT_SYMBOL vmlinux 0xf1ce3bc6 param_set_long +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ec1c25 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xf200b9f3 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xf2047f1f neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf2054610 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf20eea13 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf21312d2 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xf21bee51 phy_device_remove +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24a2ff4 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf2500028 ip6_output +EXPORT_SYMBOL vmlinux 0xf251ee3c mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xf25ff09c dcb_setapp +EXPORT_SYMBOL vmlinux 0xf263efff put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28ed451 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c67bd3 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf2c6a89b d_delete +EXPORT_SYMBOL vmlinux 0xf2cd24cd iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xf2cd7038 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xf2e0319e mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e8be46 iget_failed +EXPORT_SYMBOL vmlinux 0xf2eb1017 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f61773 vc_cons +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31b79f0 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xf323f12a generic_file_mmap +EXPORT_SYMBOL vmlinux 0xf32c5316 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34b3dee lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35e4710 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xf3701481 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3975552 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3af3c90 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xf3b1d985 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3bbf13b inc_nlink +EXPORT_SYMBOL vmlinux 0xf3c5f9ce component_match_add_typed +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf3fd9d52 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xf43189f8 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44e5c7f ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf459a388 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf45bd9b5 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xf46cb8e1 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf4738a8a neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf474a28f keyring_clear +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47f3312 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c72af6 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xf4d08aaa agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xf4d77232 page_get_link +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fe7d7a blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xf513389e kobject_put +EXPORT_SYMBOL vmlinux 0xf52f0f67 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5559963 wake_up_process +EXPORT_SYMBOL vmlinux 0xf56ae4a0 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xf5772ab4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5994168 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5ac4f71 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5af0dc9 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf5d3bad3 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xf5e093fb clear_nlink +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f09a79 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf644a6b0 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xf65dce47 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xf66467a5 complete_request_key +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6c0226e xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xf6cc5e11 param_set_ushort +EXPORT_SYMBOL vmlinux 0xf6d27691 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf6d3ccd5 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ef6281 __pagevec_release +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70465c0 ip_options_compile +EXPORT_SYMBOL vmlinux 0xf70e8e25 input_get_keycode +EXPORT_SYMBOL vmlinux 0xf70f4210 I_BDEV +EXPORT_SYMBOL vmlinux 0xf72861a2 __napi_schedule +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7394c93 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf7484c85 tty_lock +EXPORT_SYMBOL vmlinux 0xf74b64bb bdi_put +EXPORT_SYMBOL vmlinux 0xf74ca0e0 napi_disable +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf776c04a pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf776f6df register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf7977f06 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xf79adeef inode_needs_sync +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7a085a2 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf7ac8e2f genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xf7c7a8da bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xf7cea83e phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e830e6 softnet_data +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f41c3e pci_release_regions +EXPORT_SYMBOL vmlinux 0xf7f9c708 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf817bdfe mark_page_accessed +EXPORT_SYMBOL vmlinux 0xf8220dcb __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8407847 dev_set_group +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf852cc0f tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xf85f4e86 serio_rescan +EXPORT_SYMBOL vmlinux 0xf8841d7c ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xf8852225 simple_getattr +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88ea177 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xf8af2568 address_space_init_once +EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve +EXPORT_SYMBOL vmlinux 0xf8bec6e6 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8bfbe58 tty_port_close +EXPORT_SYMBOL vmlinux 0xf8c7b8be security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xf8cca764 __frontswap_load +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8f23f65 scsi_print_result +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fdae05 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xf911e7e1 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xf913b2ce __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf938e473 tty_unlock +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf953cccf ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xf966e2a3 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf976870f lock_sock_nested +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a4bc25 seq_release +EXPORT_SYMBOL vmlinux 0xf9b4d449 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9d14ac3 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xf9d59f07 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xf9daefd5 register_key_type +EXPORT_SYMBOL vmlinux 0xf9ee5e6f pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1a32bf md_update_sb +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa364f98 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xfa510ec9 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xfa5462dc max8925_set_bits +EXPORT_SYMBOL vmlinux 0xfa55c938 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa71e8d1 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xfa77161f vfs_get_super +EXPORT_SYMBOL vmlinux 0xfa7d8226 bio_copy_data +EXPORT_SYMBOL vmlinux 0xfa7efc88 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa8ebdb7 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xfa9564cb sk_common_release +EXPORT_SYMBOL vmlinux 0xfa9574ea __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfabbc953 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfb0ea3bc phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xfb1d5e83 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xfb28194e ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3a45b4 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xfb3d0455 __frontswap_store +EXPORT_SYMBOL vmlinux 0xfb42016b make_kuid +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb655acd devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfb677058 kfree_skb +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb8a3481 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xfb981090 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xfb9c3eb7 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbdf41f msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe1615e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf5d401 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xfbfb3850 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xfc004921 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xfc042007 devm_memremap +EXPORT_SYMBOL vmlinux 0xfc1a0329 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b6063 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc436432 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xfc46f0a4 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xfc47acd6 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xfc5e7723 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xfc668b5a tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xfc769bf7 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xfc87ffa1 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xfca26cd0 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xfcc60165 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce7d3fb vfs_mkobj +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf25e9b twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xfcf8513a dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfd12bd7f mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xfd304338 legacy_pic +EXPORT_SYMBOL vmlinux 0xfd309a74 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xfd5b46c1 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfd69ffb9 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xfd6e3d52 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd9c5825 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdab1012 __x86_indirect_alt_jmp_r8 +EXPORT_SYMBOL vmlinux 0xfdadfe6a tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xfdb18cec kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc6d798 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdec114f inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe3bbd86 dev_load +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe612c44 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xfe75e082 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xfe783fb5 __x86_indirect_alt_call_rdi +EXPORT_SYMBOL vmlinux 0xfe87fbad skb_unlink +EXPORT_SYMBOL vmlinux 0xfe897b10 udplite_prot +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe8d5519 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe94928f scsi_scan_target +EXPORT_SYMBOL vmlinux 0xfe9e03e3 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfe9f0847 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xfeb578e3 add_to_pipe +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebd0470 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xfec548b7 netdev_features_change +EXPORT_SYMBOL vmlinux 0xfeca3865 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfedf0389 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xfee8b951 noop_qdisc +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef1ee74 mpage_readahead +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff0c5f2a md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xff13fc7c input_unregister_device +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff232501 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2c3fea kthread_bind +EXPORT_SYMBOL vmlinux 0xff39eca7 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xff3a7ff2 arp_tbl +EXPORT_SYMBOL vmlinux 0xff42f3d7 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xff4312ab dcache_dir_open +EXPORT_SYMBOL vmlinux 0xff4e3b85 bh_submit_read +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff542744 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7e520c kill_block_super +EXPORT_SYMBOL vmlinux 0xff878b4e get_watch_queue +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffab404c d_set_d_op +EXPORT_SYMBOL vmlinux 0xffabfede dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc12154 get_vm_area +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffde7514 key_invalidate +EXPORT_SYMBOL vmlinux 0xffec99c3 stream_open +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d725052 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfe729ed6 __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xff09bd65 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x25a406cc sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x316f08f0 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x3688e115 sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x70edf0ca sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xeb1c5109 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xefd25935 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xfb24644d sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00f9d29f kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01a297db kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ff5fb9 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04666bd3 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x056527b5 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05cded6a kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06affa97 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06b9761d kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06ed7505 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x075ebbef kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x098951ed kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a65805f kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bde1192 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c575430 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f980541 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x129bcc26 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12c24013 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12dbeb45 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13122f9c kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x176e37b5 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x178ffaea kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18c1f57f __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18dc21c2 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19820ebd reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a4e7af7 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b61bf5b __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b8cd233 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf65ffc kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d613d32 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db0662a kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e3321bf kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e9c069e kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fc4cbd6 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x222345fe kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24a06523 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24b90768 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25f3605e kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26a7ecd3 kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x275a34c9 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x275aca47 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28a94596 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x290e7b97 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2addc700 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d00258f __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ee97ee4 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f49c2aa kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x303c671c gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x307b5e3d __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x309e19f3 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30d7cbf8 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32110b01 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3276ab54 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3474f40a kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x375f0747 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x377b9a3b kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x385f636a kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38ef5d86 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398f29cc kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39a83dc8 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a48aa23 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a98e393 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3abc9aae kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cc783a1 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d058ce1 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d42de60 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e2e1e25 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f20eab7 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f9eacb0 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40cde1ff kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40e81654 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x415eb383 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41bdd79e __SCK__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42157281 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4286ebf8 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42e71a81 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4343a731 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43a47507 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43d5f6fd kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44725d72 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4497e1b5 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44ea02c3 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45524982 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4921f15e kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4eaee134 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5091bf63 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x517e465a kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51eef7a9 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52e5fb2f kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54757be8 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x580d03e8 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5811ce71 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x581c9960 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x582fa9b0 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x585c979b kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x592fc935 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59cef257 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a7867cd __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a7f9af1 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf1b8e3 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c57f67c kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7f0bce kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ce6b141 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5deb4b50 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f5b7150 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f9c85ca kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6098bf5c kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61b1774e kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61bf07c7 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61ccefb6 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62455166 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62517989 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62f4f683 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x631d6242 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6341056e x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x637f94ea kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63af4884 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x648921c7 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x671e9a09 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69dd7ec9 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a6e510a kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b94f6e0 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ba9c1a2 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c2167f2 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d1a0176 kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eb93367 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f313e01 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70d91fff kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71620c01 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71c32960 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7235285a kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7370383c __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74d07799 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75fd10e4 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7647f724 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7788c91d kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x785fad7b handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79188103 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7975deb8 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa4d9a5 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ae58113 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b05ce95 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f5c6e10 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80e5a614 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81aa2e42 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83bf998a kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8449c1fb kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x844d1bac kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8490f493 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x869fdaea kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87b63a2d kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8863e78f kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x893b16ce kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89ac24bb kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a990456 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a99202f kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bb12ff4 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c4a9331 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c7ff921 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc218a4 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d2c89f3 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ec770e2 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f694593 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90755c56 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91832d68 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92183a2f kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92cb458e kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92f8f1d7 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93792fbe kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93dba1e3 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94b75a2d kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95b1104d kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95cb821a kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95d86594 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95e806cf __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x992cb37c kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b7ce82d kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c4230e8 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c74e4ef __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cdb9f51 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1f41214 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa20efeb6 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2eaa02f __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3ae32a2 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3edaebc __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3fa687d kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa510f66a __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5133a09 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa54f5877 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5b94079 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6dda9d5 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7886878 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7a6bdf3 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab0aa9f1 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab933d66 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadcdce23 kvm_vcpu_gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaec39a6a __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaec74cb4 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf4eaab6 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0d5cebe __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb11a9dd5 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2a772bc kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb32621a6 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb47aba7d kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb624858f __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb77d4b2b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7877041 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb85da2fc kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9097e27 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb991fc54 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb551812 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb8fb646 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc59b9ed __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe701af8 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0fbaf84 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1635c43 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc24a46d0 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6f4e900 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc85117a5 __SCK__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc94e36fb __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca461190 kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca5a8f60 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc8f2a93 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf93a7e2 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd17e4c1a __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd376be4d kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3b9fcee kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd479d6b8 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4eee9c7 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd62ba1a1 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9084c3c kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda39ed82 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbd7ad5a __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd7c2ced kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdda5766a mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddb42c46 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde2b4880 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf33911b kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe046ae77 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4aad25f __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe55263fc kvm_free_guest_fpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6bb6622 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe722f3cf __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7bcc797 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8aef271 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8b57f4e kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe951b565 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9776dad kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xebad21d6 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee1b172c kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee43916b kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee89d0f2 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf14e78a3 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf19e93a3 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf31a34c4 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3b7de92 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf446dfaf kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5496e85 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6dd8ae4 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7075a11 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7fe47c2 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9cfe86f kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa46ecb7 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfac91efe __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc0aa139 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe364a83 __tracepoint_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfea76038 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfee7ecc5 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffdec9e0 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL crypto/af_alg 0x0130da92 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x13aa7579 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x18c1b361 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x26263f2d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3a290ec1 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x40d127ca af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x52a12c39 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5a9bab69 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6119fae8 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x6795528e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6a46960f af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x749f8e90 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x99e7ec8b af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa7f5115d af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xb6bae8e4 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xbbdb08d1 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xc6a44c84 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xc73932f1 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xb8314cdf asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xadd3c642 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3ceb3ac3 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf450ea49 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x12e63519 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26cae197 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3bc4692f async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x56d64d52 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcc80f624 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xda3d9aed async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3a2776ad async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x858516fa async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa667d3b1 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xde8eef47 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xae120bef blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe17a3d46 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc9d72afb cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x3fbbebfb cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x481017cb cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x53864a74 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fe7cae9 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x606a4053 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x6212b6bd cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x880734e4 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9579d9e0 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb60cc9e0 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc179430b cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xcb485d8d cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd30b3850 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xd7ae7207 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2e196a6d crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3b90b8b2 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4974a19e crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x565c8d15 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5848dc91 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa5eacef1 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc10d37e4 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc769f4e8 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd14b497e crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd55c2515 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeb6b3760 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5194452 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5bd5664 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2fd54296 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5899f40c simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9bf79dde simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbf16d63d simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x8f16f606 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x8764d430 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x0544c5f0 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x32227c12 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6fbd842c __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x81672bbc acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xbb0f81a9 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x4f6c2360 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x96eb492d acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x04671cdf ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x183bf12c ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x19e1ed74 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1bdcc461 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1be2707d ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1ee53216 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27ba170b ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2c15fac6 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3bb8113e ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c72b29d ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x517b0a05 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5a0e2f64 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5f35e549 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x67d64a6b ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71f30b29 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x87a40ffe ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8d6515d8 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa01f1b1a ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa4fa6da6 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd24c09b5 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd58e8d06 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdf47557f ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe8199af8 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf0a5eb02 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0cf54ca5 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x214476ee ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5a7ef5e9 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6d75e0af ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x740866a1 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7bbc7a84 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7cf9f67c ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x82fb8859 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x946b0b02 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x97d7c939 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa765f910 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb56bc140 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc106e3ec ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc5d3ccba ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdcae4ab4 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xea55f074 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8c5651a1 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x470519c9 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xaa292437 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc6570e54 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2f082d6c __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xe7f13d36 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2b944743 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xc3c31b83 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3fa4ac35 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xaa013f79 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1e184e89 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x417e6f3e __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x03213563 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4ba4e3d0 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x853fbe35 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc92a099a __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x497ccb28 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x4ec90554 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b49b940 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x28d36fcd bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f0ea027 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56725b24 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a6f4c1f bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x626cff2d bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e6bd494 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7134c982 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ca0946a bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7cde319d bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ac1c089 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8cee4909 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e50867c bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad9eda4f bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6ddc24f bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8bc551b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca3b52e5 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcda163e2 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd893cfe2 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8dac6b2 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde09320c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0d39449 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef6c3e3a bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5e417cb __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x47229667 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x478ead4e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7c2c4700 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x941c850f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9fbd55ed btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcc33cad7 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe824f0bd btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf56a11b8 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x17386f77 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x194da38c btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b1e3bf7 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x320882dd btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x44afb2ad btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f612d4e btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c1879dc btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x707c853c btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7298ee51 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x74c8a19a btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x846c21a8 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x91e1516e btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbea85862 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeaaa652e btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed6b6651 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8e7a09a btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x015df5cc btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0e7c04b0 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0f6b6d88 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x600d6c87 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66e18997 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7f9bc782 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8605893f btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9a87f535 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xace23bad btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbd75f883 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe1fc64a0 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2c3946b3 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2f4c4b44 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x49000a22 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6d3f9ac8 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xac11a718 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0e7a09d8 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6446387b btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8da6704c btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaabf7f15 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaffc485f btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xda957fe5 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0237a21b hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0b1f4526 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcc103b35 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdc5db0e0 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x05f5dd4b mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x08acb7fb mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0bc31f52 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x20d2fb3b mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2b8635d2 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2bb85e65 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2de2d5a9 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x373c8ebd mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x39e9cb3b mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3e616c56 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4357771a mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x55ee3cc4 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5e8de91d mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x650adf9f mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x66b3ea43 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6c44c49a mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x78d7553a mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7b1a35f4 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8b8f8661 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8bf9a2d6 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x95032118 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96c0619f mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa636bd69 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc20d5176 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd18b4399 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdf5ffd97 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf64c86ec mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf8d5a14a mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xface1002 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x07bd1989 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0abbe34a comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x107c7ea4 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x123ffc8f comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1ab90442 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d1ee838 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ef6a269 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4011dc5a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x42d4cc7b comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c7802e9 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4eba3f32 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5ac7274d __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d465309 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x600563b0 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x62a80155 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67786653 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x69960c9e comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6a1a94e1 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f82ada7 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x71546c95 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x778ad251 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78d64262 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7f2595e2 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x82cf2297 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87d13639 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8b29693c comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8bfed734 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f0ba833 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9259971d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9ab98cef comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b7c9c79 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa8469272 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa9aecd94 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1ae198f comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd851cbbc comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf01d9f73 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x18f7cec3 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2b703bf2 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3e2b8835 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x474081f1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8530816b comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x894d7f7a comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9840f226 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa495d05c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2998e381 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x3d0154ad comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x97eed57b comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xaed6dd4f comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd45386e4 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd4c31f29 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xdceb0998 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2cf3e6b0 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x31701508 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x873bfb88 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9739a744 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb585b35d comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc0a07df1 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x816c14ea addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xc46ab57e amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd776e60f amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x84006c8d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x115f1ad8 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1694dee2 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x19dcdb66 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x275d7a8f comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x63606237 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6a9f1127 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7cacadb1 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9144f7ed comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xba7dbeb2 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc0ece8b2 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc84f67f5 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe5aee330 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf620ae5e comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x84439349 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x88719b10 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa1a5ba24 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x202ed913 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x412f7c70 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xac09e01a comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x678d06e3 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1f1133a5 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2aa6c25a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3170be6b mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x418fa9db mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4d44722e mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x560e69d4 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x579e79e5 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60d368f9 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6973fc67 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x868c8248 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8f47276f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xca3237d9 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd672e716 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe9c2f1e2 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf017014c mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfe3c5dc3 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x1f61f85b labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x63426ddc labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x454e6797 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x6e508586 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x743f1658 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe8e8dbad labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xff89f471 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x14fbf0b7 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x16fd40ac ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1e8511dd ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4318adb6 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x522ae2ba ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5b41a113 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64d646d7 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8cd73c9f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x932b7242 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x939ac56b ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x964d60f1 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdd13e453 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe02a1298 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe7854655 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe7db72f4 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe960e89c ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x171e2554 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x29272e67 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x49415663 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa35fd4e8 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xaa388ed5 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc9b7bed1 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x00448a02 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0ce1b631 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1f7e0082 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2db8595a comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xca019f4a comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd576ee3b comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xef12c24e comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x32661be8 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3f1b564d devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x50c5ff2d counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5efcc625 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x651b00f7 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x70fcff80 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9246b159 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x990e1996 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb00db495 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xcf1081ff counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xda5a043c devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe9f99b98 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xecc3a59e counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x0afcfcf2 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd510ad01 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0cecf37e adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0fb8e015 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a2388bf adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c4f3fde adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x231abfc2 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23c53d4b adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2cdcbf59 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33e98ac8 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3c073ec1 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3defcbfa adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4328ed92 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4b2d16b2 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55d15908 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5b0b31d0 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5caeedab adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63c2de6b adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69924510 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ac305c6 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x771c20a5 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79e29c1d adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x877ae2ec adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e72a572 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x945a8611 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x95d7fdc5 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x974f6c3f adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa0f1d60c adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6e03b0c adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaad893b0 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb8c1879e adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf25fe3a qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc00d12bf adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc39a5c20 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb08749a adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd2e6d87c adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdafa3cd2 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe69b3186 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe813954b adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeba7ed51 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf0a4d87d adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1d46239 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf72e5ad4 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf854d120 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf866942c adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfed4b90d adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x01176c98 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x8bb04560 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x05e67603 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x0771707a register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x48aa8fa3 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x4e822906 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x728826e0 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x909f199e dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xf5394a3c alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x203eab9f dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x81305007 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0072e94a do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x32be46fc dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x353465ce dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x55b26f89 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9489bffb dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xabc37126 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb6b19344 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd7717fd1 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe084a889 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x461637e9 hsu_dma_do_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x4d55d0a7 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x7b0a2070 hsu_dma_get_status +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x8c400a43 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x83a5a959 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbb9d6e68 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0be1a4d8 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x8592d892 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x8b02fee5 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x036c3d9d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06ac58be dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1d616cc4 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x23c39fb0 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2450bd56 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x26c84fda dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x38c92da7 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x42468dbe dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6a87008f dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6eab21fc dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x74ec01dc dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7ab3c1c7 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x95fc371d dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb17f8384 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb4e8f3d5 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb99be162 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbda40e5c dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc469cbd2 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc7462d89 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xca6a8f1c dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeab22aff dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf83f7ae3 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfba86026 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x03e8bfec fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x136ea7b5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x27608ed6 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c7dc58b fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4c8e9ea5 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6e528329 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8a4c4299 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8c4e950f fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9d771b94 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcace9ace fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf19c2dc0 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf4530c8a fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x086ef947 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x195da00a devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1adfbf13 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1dd49d08 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5158d402 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6eceb3fa devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86894bca fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x915ff675 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa35e365f of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0bfe933 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb1796954 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc66776af fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcd4c734a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcd7d35c9 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0c35a4fd fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x32bc7a5b fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x38454f63 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6261ceaa fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6c37f361 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6d544ae1 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8241fe00 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6f5dd90c gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8b737286 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x90e8be4c gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x93d296d9 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa46dac53 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x37b3fc21 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x71a5a686 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7c6258b5 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcd22b1af gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xde97c3db gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x571dac46 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x54d1ea0e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd5526fa8 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x03150fab analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x23f4e0b7 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x252af0e9 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7dd2b35a analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x80c66082 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9329bd28 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xba84e2ba analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe3e77529 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0bebf21a drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0fcf84ab drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1582b094 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1dd194eb drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3230f86c drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33f3848a drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x38f84a42 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41dffd55 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4c2ca415 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52ccf1f8 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e313fc6 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x612bd154 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65a635ab drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x668ad294 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6b3c27d0 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x82022a5f drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8b918156 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8eb42a8e drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x988e6841 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c89d73d drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa33537de drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xabb577ce drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb15c1929 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb9815f1d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7867d60 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xca519c41 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd307089 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2e42e21 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe5546745 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeafd6e76 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0b5f86db drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1974e5cb drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x21a24de7 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3c0b3ec6 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5af1d4de drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5bacf18f drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x97c4b27e drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9ac76cc4 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa2f2c691 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcba8eb27 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd320c997 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf8182e0a drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfde38220 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6dc5c6de intel_gvt_register_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00541ae5 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03d59dd6 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x077f7dd2 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x07cf4835 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x141f9078 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d08a77c gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d41a559 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x40d5c6d3 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4169d524 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4268ec23 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4599f993 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a3c00a7 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c2374b1 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x511f6a4b gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x533a26cd gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b8f39c4 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x667a9d9f gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d0b913c gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6e2e2df9 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71558ce8 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x73f37c46 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7478f851 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bc2cb18 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e7cdc02 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x832a7740 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x854906cc gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88e6610f gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8caa6e9b gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8d366c4b __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e58fbfc gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8f909ce5 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x91c9c99c __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94e3645d gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x980ee203 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9cb66e51 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9b8936d __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xade96e39 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaefbe240 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb34b7441 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb446f2a2 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb557758b gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb756db48 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb870e881 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbcd31609 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe5afe0c gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4498d95 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe13988a5 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4a42df9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe843cde1 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9e2c1c2 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec3d9138 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf33c9a43 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf843b3a6 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc0d226c greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd581cca gb_hd_add +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01f0c369 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x073bfd57 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e9a821c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x170b514d hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fe339b2 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x218c022f hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25ceb43c hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2da5b1c1 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3634b18b hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5396df58 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5599e990 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5af2430e hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6324a783 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x648073f7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6afbc424 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bee867f hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e87a6d8 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8134a7d9 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9074127c hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91b0e689 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91e9edcd hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b93d151 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d08c0ce hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0eb478f hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab82fae2 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaddfba03 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4f1a781 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6a5d328 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba763a88 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc002ab53 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4af8fcc hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc98e7c1b hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca36fc1f hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb552d54 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6df7ef6 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd740313f hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe25f4ebd hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7ea2509 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebe23336 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xede7ad96 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeff99ac6 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1992856 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1c58328 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd1d5b5c hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xfc93cb30 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2514c1c6 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e3fdf69 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5322affc roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x824e0334 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9d498694 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa3adbba0 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x392e54e5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4b2e5277 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x50ee6ee5 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52c69529 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8c0c5cd8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x929f6c33 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc90db056 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcdb0e31c sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2b658e2 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3ccf63b8 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x40436b76 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x571d8821 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6422cb48 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x737f3bb1 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x001bbb6d ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x50a2b3bd surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x6f8328d8 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd610f7e3 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x9dd48617 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x73ec042f hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x89ac5202 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b14e526 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bb30b81 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x41b673d0 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b40abb8 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b42aa22 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7bc7ba7d hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x88e54ce7 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x994644cb hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xabf9f34a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae155cb1 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb4c525ab hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbb355c41 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4ce2c19 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc63cb736 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd781d418 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe49f53b8 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea8ad684 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x05e2b6a5 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x169e4969 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b8538c8 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b8e2c42 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1bc5539e vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x250fc483 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2854d5fd vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x32b7b5d4 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3356daa2 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x336b9131 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x369f287f vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x454770b2 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a46b8c9 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a9cf615 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b7797aa __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5b4ad18b vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6954ffba vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6b5c4340 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e55b473 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x82fb2f04 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x89b99f59 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8dde74bd vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x928a48e3 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9eb53735 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb03e7f1f vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcc967bc9 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd68d4ef2 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfdc21ff1 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3958c7b6 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9cc86021 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xdddee66f adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xcb6080e7 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x172da623 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1b8cb5b0 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x41f65ce1 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x79fe0a03 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x815b5294 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x828fd470 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8834e735 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe8696d56 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf8e3d2bc intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2f392a3a intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5b798572 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x8a7b12d1 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c4c206c stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x504df081 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa91a2040 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd5736de4 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xda2c3ad8 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeb07e25a stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf44dd1e0 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf673e8a6 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd5f91a7 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x033f9864 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x16464cfc amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3054bbd8 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x41614c08 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa638dc32 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xbfee7d75 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xfc171c34 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x486c592b nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1a05e795 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x27ce9b9f i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2a7ada8b i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbf7614d5 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x60f32f07 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xde8d6861 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0d2e5868 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1a93a78c i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1bf475b7 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2095023f i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x264d537a i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x29a32661 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a07f9ba i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x469fb81c i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4d7f1cb9 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d4efd0d i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x809bda9c i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x901a71cd i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97c7a5b5 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa49ca7b9 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5963a68 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa81de53b i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaffeb8f2 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb68bc825 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb75e111c i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbab2388a i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc251a44 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcd5eba46 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xce154f3b i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd2cf2405 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb367ed7 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x996f6a8b adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xd0059ed1 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2029a527 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x27fa081f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x64158e41 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x853c8137 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x2526271c bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x5302e3af bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x8a409e4c bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xa454fc29 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x663683a7 fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x7475c17c fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xe30f68bf fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5c63633f mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x66264dd5 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa25398b5 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x34880854 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xa6e88cd2 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x0603400f ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xaa2a72a9 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0c60c519 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0d25973d ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x43214cfe ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x65969dcf ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9a427309 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa740f508 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc643a8db ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdae2e5ef devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdddff51c ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf72e72a5 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1ccd90e5 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2e628fca iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9da4533c iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x251d16b1 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2d2ea041 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3f5650be iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6de6bc98 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x71604181 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8abc49b8 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d628bc7 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x94a17a2c iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x966ca93c iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbf6e30bf iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc25a53db iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xce535951 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x3b3770f0 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x0e46b666 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xff640398 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xabd830a2 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x17567c68 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xfe1f7471 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xf21afaed sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1c5484a5 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x29971a73 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x385bdf1f cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4a8a4384 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x871b908d cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8895c2d2 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8d21fb8e cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x95dbae22 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc4e5c8d8 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xde682616 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x659ae389 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x9e3ddb4c ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x1aa71345 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xa70bfd6f ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x018ff990 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1752b7dc bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2729b2af bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x019723a0 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x525aa73b fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xcd944735 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0829e9ff devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0d98d20a __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x637cf824 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7bc5b3d9 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa9133294 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xafa39de0 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc7fffa41 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcb56d377 devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd6ee3ad4 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe3543e4f __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfa58972b __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x6a031701 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x0ab51240 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0878e590 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x574716bf inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x59eefbe2 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe924049a inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xea484ad1 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9e9b5659 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xb49007a6 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cb16c2d iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a386e45 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x207fd1fc iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20e657a3 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a284836 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d78d758 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37e8dc7c __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3982e5b7 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b924b9b iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d1a9247 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x417e6232 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48e5fb36 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x49fb8372 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a6c34c6 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b4e3f61 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4fcf8a4f iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50dc5f90 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d17ea40 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x638a401d iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68703d61 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a057818 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7035b08d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7319d2de iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x795d5dac iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a0221fd iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b3e4596 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81e6fb98 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x919da341 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98cad369 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f04a62e iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb00dc9f9 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb15fd837 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1890684 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb20b8661 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba3e1285 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc39ad4ef iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca6ba4e1 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd03134bd devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd42822f2 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe09a084b iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2255869 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6e7f5f8 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee452633 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6842451 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf977ca91 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd3821da devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xd68c95c4 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x3800af1b mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0888fcde zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x32f0e34e zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x37fa8271 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3c823239 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7adfc8e6 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf6e3ed52 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x04aedd8a rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x135b39f7 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x192e9eec rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x53ef8e5a rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x96ae3398 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaf17be54 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaffdb92f rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc168cf5e rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd01ad1f4 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd11cdaed rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf114a762 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf25b612e rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xfd9d72ec input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x2b0a87f2 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x44104665 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0457071b __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0cddcba9 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0dfe6ab3 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2925cc2c rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2f3749c8 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x49b96eba rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4f3b576e rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6bff7449 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7eceacc3 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x814feabf rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8dd3f6d5 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x93612072 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa339877e rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x07576395 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2847a0c7 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa6fc8754 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa1f86e5b cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xbd4c80d1 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x11458e4c cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x67deebc5 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x189cc855 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x587e205b tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5d7ec29e tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6838408b tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0491ba31 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x11e86b1a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5b1e4bbb wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69405205 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x74fe4f5f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7828bf91 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x822a9ef5 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b21710d wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x90a41519 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb8544fc1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe7a99e5 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdd89598e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0aac8be0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1068c506 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5d5b5eb8 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6b8d2e53 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x800e3d85 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x804b0aab ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x842056b7 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbb5b8f6a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf7dd0020 ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x07dbcb19 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1ad4a598 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1ae0736f led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2987530d led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcec07447 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe35b4951 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xeb4cecb2 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfca62d27 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x32b4eb94 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x65b88800 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9825af63 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9e2b4467 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa2396d40 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x09cee217 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cd6ceb7 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f4272e6 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15aa7a2b __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1848c2cc __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191e4c2d __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d558473 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1fdb0e9f __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22bda912 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23696a7d __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x260693fc __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b565f8e __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2bff3581 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c7b4aa8 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2cdb53be __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300dd343 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30adf469 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x311c078b __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3698b19d __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36cb214f __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36ef1802 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39b12d64 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b341462 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3bf1b457 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3c60536f __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4123adc8 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43320a4e __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x486cdf18 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b466345 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52534529 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5551a9a1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5992ca5b __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ade47d4 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f527060 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6065e6b9 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a4b7b23 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b954f6e __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6cfcfaa1 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d9ad394 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d9af18d __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e2a8b30 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71721438 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71881f8c __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x748511a3 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76fec766 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x781a9ad5 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f4efc36 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80b64334 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8453f3db __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x849d1e62 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x873d987c __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88e06047 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ac2ad51 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ecb2939 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x930d473c __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94835de1 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fd9d2a5 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1464272 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1b73752 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3431401 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7c913a6 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae3f40e5 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3f15438 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5b721bc __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb619c500 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb78726b7 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7ccfbf6 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc2ff87f7 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc5fcc3bb __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6db7289 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb3a2001 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcc39644d __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcc66e95a __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd32c307 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0228ead __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd16d19c4 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd23c0908 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4c8bd13 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7f68c6b __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdab3fd6e __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdf0d705e __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe49806cc __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe796fc03 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7dc752b __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf70b759b __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfefae3d5 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x048688a7 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0eab924b dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1872eaae dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2be2020d dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a3b7ad3 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3fedada1 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x431255da dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x437fb6d9 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4eb0aee1 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53d1c5cb dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d4ac371 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x73901ed5 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8be52c88 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x96f9d2d5 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb4335f91 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe77302ef dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe8400965 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x93e0a58a dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x13c69e92 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x91c7d6ff dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x36881649 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x420a7772 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x02e29432 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4fbf6b75 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x54ca08bc dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d7e2fdc dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x905a753f dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc6c58032 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x22ed4350 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0bc468c5 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x124ac3ed cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1b0bf8e4 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1eacbb12 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x29e9678c cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37b832c4 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5b604f19 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6375414e cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x64d2e16e cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x795b16c9 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fcb8de9 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8da43e1a cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x92e12377 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x99873c84 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9dd7ee07 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa9433da2 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb0b3f74c cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbef2537d cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc0f85c61 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd37a77cf cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeb7f8dbb cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xff874d77 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0b6f7ab0 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x15831778 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2a4b77d1 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x61a342da saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7552a42e saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x77dd5d56 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7bcc3199 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa2f45d09 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe8cbd0c7 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfe5dff48 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x39a5576d saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x90e1fc71 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaff0306f saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbba75f10 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcdb0ed0f saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf6ef669c saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfb6150b3 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16156b2e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1c236228 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x201194eb smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x204fde77 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2f3f1106 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5718338b smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ab791c4 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6d81af6e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9222752b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x94263cec sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb660c675 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbea1ccf7 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb29685b smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe1e2059d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe233cf14 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7107978 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7987460 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06918a3e vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13239664 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1983cf3a vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1cf4aaf6 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b5551d5 __SCT__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x31fb477c vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3520f595 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b3ada15 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3ef35853 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48961a47 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48d1d12b __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48d526a6 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4df1b25f __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed3fb1b __SCT__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x56e9613b vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65ef6de0 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ae16acf __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c770953 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x70ef7f2f __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7afa64ee __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f317b2c vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8a25b6a5 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b8baa0d vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x98340b1b vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x987194c2 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa042350a __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa84d16f5 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbed91563 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0bda21f vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc6bd612c vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc92f580f __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce7e30ec vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcfcb0924 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd24b4d63 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xddbf7234 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde89de2e vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xecc50c24 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1849d40 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf64c179d vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x28d6c664 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x317f06a9 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x2c867c5b vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x190f794f vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03ac753d vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0daa3a32 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x128ab861 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f1dd123 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2416567d vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28cc84b9 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28d7a31c vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35045045 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35b7ff4a vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3d690602 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47685c9b vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x48e0f3fb vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5bd87167 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f0cff90 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x885c7ea3 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d073418 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d297500 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fda3c35 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x92aa3202 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa11c7e87 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa20ba7bc vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa6e389c7 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac94994a vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad26ea7c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf6b5d11 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc15ccae1 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf9e3014 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe83d889e _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe86ca9e6 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec411485 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1c7d8af vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3ef2c55 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf96f1276 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfdb1d1ee vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x8548743d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0c868d79 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x4904f087 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x91564a31 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x08ed4607 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xf030dafc cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xf496f628 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xdb6eb4d8 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xfd6371fc stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x5baf3625 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x175f8d5e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x8924e397 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xea88fd11 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0b051b24 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0c884cb2 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x129fc82c max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x228fb0d8 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x50c55993 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x59ea8ae8 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8bf5788f max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa2b0fda1 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb5707f1e max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd000850d max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xde08ab4d max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xde0bb68b max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe71d18f0 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05f0f72d media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a431f8b __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b497a5a media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13c10385 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x14f29609 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cdd416b media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e1119af media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x249c3f86 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29bd9642 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2dc602be __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x352392bf media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38e7004c media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3babb699 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4836df3f media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c44b548 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c748b38 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ec3fba9 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61ea82ce media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6450331e media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69110d4e media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6912d566 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e3c6d93 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x705cc055 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71590d46 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76fad4d1 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79b47e43 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8265b11b media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a997c7c media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95c71814 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9643b032 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99763358 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99a203cd media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e5648b2 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa946f6b1 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab89b062 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2fbf302 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb427bd49 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5d74992 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9614eb4 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9757f0d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9f887bd media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba1279a5 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbec3a820 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6830ce1 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd342c42 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5737996 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x01bba065 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2e3574c1 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34e66656 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x406f7cf8 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x56d085c8 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a669bb7 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5c26071f mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65f375e3 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x69456b9c mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7ddf3c2c mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7e1e0ad2 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7f492944 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x86badbfd mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8eab5a98 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x923afe6a mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3b29dfe mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba3887d6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc0ff0821 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd259cef2 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe17a3ed9 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0217c12f saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d4b0fb9 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a96ce67 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2044adb8 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x27d004ab saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x385f1e8f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x696e62e7 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x73b7119f saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e09dd4d saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e4526f4 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ce07715 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad528fae saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae860600 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xafde69f2 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc8435097 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcd8a4bb6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2d47db4 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdaf56f1d saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0345124 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1e6c00d2 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3a401789 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4f3350ce ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x73967fd0 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7a514caf ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x84b697d4 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd3793065 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x1ea56b0e mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x38e24507 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8574b326 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8e24d5bb mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xe6c46002 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3471e58b radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3a3a9904 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x58bc8369 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x66e0ec2e si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x78190360 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb11f00dd si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc8947397 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18d0acc5 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2264d83c lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x30009ef5 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3f7ecde3 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ed799f1 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x823cd94c rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x875e62e7 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f5081a2 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa1ffdfc9 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa3d4c6e7 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac45cbf5 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb493b7b1 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb5f89041 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc40ae90 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2ff6ca0 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeadfae42 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0ecef9f rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfd790d86 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x537ae2d3 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x01bdc487 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x2a5414d7 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x62e0a9e0 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xb509b71f tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xd611cefc tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7889b72e tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc8ed8f38 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0861b30a tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x2e80b5c5 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8d9b4cec tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xef10fbb2 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xfa581bc0 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9c2dc424 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2122ec57 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22d06a19 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x237423aa cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29584bd7 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x55f26bbb cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6079b022 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6dd38f72 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82c87d5a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x855641b3 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8835648a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x88f95732 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b213fdb cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa33a8a6a cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb34b0157 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe9d1faf cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd7e3f27 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdf1c3648 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7fa3265 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe95f65c3 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdd34f3e cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x153c0aa9 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5f78e819 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2c091b56 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c6f56aa em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x44fe82c4 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x473ad38b em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x56446b1e em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c8d658c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8990700f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8e38292c em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x920740bd em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0f1b1a6 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc5f68c98 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd861441d em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8feeac3 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc8b08e5 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb7dadbb em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4fd73e0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa309ace em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb34b1b7 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x048c74f7 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4b34877a tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x964044d8 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb85f23ff tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x24651f68 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x312765d6 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x442aca8d __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x45444b56 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9b92365a __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7e7cd24c v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9ecc81a3 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbc004eb3 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x073f4a80 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2c65d9e7 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5eca64f2 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6d323f51 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x77585928 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x877a0360 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x94639b1d v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa6c625ec v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb20e2abe v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xba7d6f0e v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11bbf301 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x185409dc v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cec74ea v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1eabb02f v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21859313 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x343b759a v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bb91c88 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cb441a4 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4810e827 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4caecca7 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53d05cdb v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59559abd v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59fbbc46 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60485ee7 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68129e0d v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6966765d v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69adac63 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ea7a95e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ec73895 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bfe4711 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8358ca06 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x836186f7 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b016e1a v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b93b9c6 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e3b8ef3 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95e1f119 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9700f119 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x987aebb0 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa71ba87f v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3f79089 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9966c12 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd8cba42 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb37a864 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb52e69b v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfaf5ba8 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd023f506 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd678be29 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd79cff6d v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde002a74 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde7668b2 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea48f643 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed80c699 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0d4de53 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf47fd47d v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x036576ad videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x132aaa7a videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b2a7fbf videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c72789f videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3e692934 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45b509a0 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50414da7 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57b4e54c videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f39bd08 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ffb8376 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c27c542 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82753f63 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8537be3b videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x951bc2db __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa1e50e87 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3e1bb90 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7fa9543 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcda5f1e1 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd208e415 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd3ff315a videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd988a3cd videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9ba89e3 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4f05c80 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe35d371 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x31db3b3b videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x790d94b9 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa090217b videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb3757658 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x162dcde4 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x606b0ba0 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe254d46b videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x021ff968 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0387ccc9 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0696b66b v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08d1045f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b5ff5c4 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dfa0198 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14334d12 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x187b0657 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1dfefc62 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x206e803f v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x259d5499 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28df726a v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d034142 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30c59479 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4488ea6b v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f7a8609 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x503c908f v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x551e63a2 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55f37c56 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fcd7ae0 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d1fe7e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x623888c8 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62b203b2 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6480906f v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64d6e5ed __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6bfefce4 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87c8919e v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89676a3a v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a93151f v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e05d782 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x936f3037 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99b6c4da v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ebc8d74 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0922de0 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3ccc3ec v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa59f0200 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5cbffe8 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa71ae8da v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9c6eea9 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaecc8741 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1322057 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3dbbe06 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb697dbab v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb6e458b v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb8becfb v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc059befe v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc15327bf __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc697836d __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc81c95fc v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca3f8b1b v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd4b2409 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1fdfb47 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd40089b7 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4e7770d __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd527064c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8758396 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3e06787 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5cbc619 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe76a971b __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea3a3326 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeee59232 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2572f0c __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf44bf420 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4ed0919 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb6fe89a v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdb7b34f __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6be68061 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb4eca0f7 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xffec9e29 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x09410352 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f85d849 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x23e08ace arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x33b0526b wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x366bee18 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3f3838f8 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x43910c32 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4a82fa75 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x513a1685 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x66f46ddc arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6df22f40 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x717dc488 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c00f9b4 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8153ad89 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x95be1fb9 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb2bec4fc arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc26b6cc5 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe9eeb671 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x599eb12d atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xaa646aa3 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0c1d9914 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3d2f01a9 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3ee21aaa da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x68c71d2b da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x78b93dfc da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x979b7add da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa4b30ec4 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3062a7ef intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3e3231c5 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x985917c7 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa8e7fe07 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xc1ec6c85 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x532b29ca intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x88cf28c6 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xa62162e5 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1eb9a223 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40ae7aba kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x67ddb5c3 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x809da2f0 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc000bda8 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xde292611 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xead2b4ad kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xebb393ad kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x09b256a6 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5d911413 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb3f8f773 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x286e8842 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x543fb3e5 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8f2bb5d1 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9dd7a440 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe13b760c lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf76bd42e lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfebe90d5 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa3aec84d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa423400c lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf5b10260 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x008dd8de cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13bffd6b madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1d070a52 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1d0ad612 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5e32175e cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5e3fcb1e cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x844ffb84 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89d74aa7 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89da96e7 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f3f7ed3 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x94f1bd92 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x94fc61d2 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa68326ea cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa68efaaa cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xacef9824 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0710941 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb37e8597 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbe56515a cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbe5b8d1a cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcae257ab cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcaef8beb cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd7c4a09e cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd7c97cde cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe44f8980 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe5b63be6 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe5bbe7a6 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd634c56 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd6e9016 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1c3c8154 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8ffa96c8 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc2de9e80 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcf30668d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcf40dde8 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdd4f2880 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x09ad319a pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61d0e0c4 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6f107cf8 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92b5cf10 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x945d871d pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab646b19 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf8b95f5 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcfe0684b pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe0a0b791 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf38ab402 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfbb47941 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x19c6e6a2 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x36d4fbd5 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x169c29ee pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2892a6ff pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x34b0dcdf pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x52ca03cc pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x683c022c pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xd087a491 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ae66918 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16cdce55 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26f95ad0 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29baefcb si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ded9ace si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3702dfca devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b54850f si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c472570 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3dd1d9b3 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e29ed45 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44ed612b si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5aa4c985 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60afe71c si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x674112c9 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x721222c7 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b23ab6e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7bac86b3 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7d147b1c si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85265fdf si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93a4b687 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99a7075a si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa378454a si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa50fbbb6 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac026560 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xacbd5eec si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb956590a si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc316e933 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd076a7be si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2b81304 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9335ee5 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda734143 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd283f09 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe83cc96d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf114e3f8 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x30fa8995 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4658c2d9 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa74a36b3 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb96ccd06 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf938e389 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3642137a am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3d6e980e am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x57971e85 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5b11e050 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5e22e0bb ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x18eb8e92 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4d45c766 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x73e89c23 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x944eb6cf alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbded91f0 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe43f5f5c alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf87de6f4 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0f99e623 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x114fdcb5 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1f1de020 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26b9c38a rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x29411e5f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x34818e2a rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c51d23a rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53424e18 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x676269dc rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6bc660eb rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6c5fc5d2 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7205ddd1 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x73bfd09a rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x776279c9 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b61f940 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7cbb808c rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x937bda21 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x93ba5a33 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdd7d423 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xea855941 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xef8f3772 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf65da7c1 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc44e214 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfdcfe9d9 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x04860186 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x10d30607 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1146895e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x42f06dad rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4728bb33 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x67f1e4d0 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa92a0934 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc148b8e6 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc4232c00 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc4ae67b7 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd3b2cd12 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe153ec3d rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf4910780 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x93afef16 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa968a914 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb9bae27a cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc093f4c1 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x24c4cc29 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x466acc48 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fe27774 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x99173fd3 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd01753d8 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe3700deb enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xedf2a546 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfd804d48 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x41b4a609 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x75f09fe0 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x76742fef lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8c98cad0 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9ce6ccde lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcbf453e4 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe0f30568 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfffce7f0 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0f82274b mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x17269506 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1e5111af mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x20ecdd8e mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x21f0b3eb mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x275046e2 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x339538ed mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3f4fd457 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x45bc9fa4 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5aad41a6 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5b7236b4 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6bf4cde7 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70c6fc76 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x75ee8c30 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x78ca3dbf __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7b84191a mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8d404e29 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9ccd892c mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e0fa6a3 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9fd5a559 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa8773fca mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb01e4fb8 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb6fdf089 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbcd0e400 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbe7f4620 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc00b6292 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xebf9d76d mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf87fb585 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfb2dfc31 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd5a70d9 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfedf2ff2 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x95cd69f8 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x5b8bb699 gru_get_next_message +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x8dc51bdd gru_create_message_queue +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x9c7283a1 gru_copy_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xd3d2bf04 gru_free_message +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xde08c325 gru_read_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xeed7d505 gru_send_message_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x1018eee0 xp_restrict_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x12333991 xpc_set_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x345c9217 xpc_disconnect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x39046c7a xpc_clear_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x48e62c9f xp_region_size +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x6285dfe8 xp_cpu_to_nasid +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x64ba5017 xp_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68d27065 xp_expand_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68fa7d28 xp_remote_memcpy +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x8d146cd0 xpc_registrations +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xc04c7267 xpc_connect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xe68acd6c xpc_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xead4f7fe xp_max_npartitions +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xed1d3813 xp_socket_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xefe7cd9d uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xf4b4024a uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xff882af1 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5b82ee94 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x74c8e78d vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xfc61847b vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x012d3c7b sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x02012603 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0769b967 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x084c2d3f sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1628d905 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ba16849 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fbba63a sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24c5f075 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25602a22 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x284071da sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b2e9daa __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45b08a17 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b340225 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x593d59e3 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x60dc78d7 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x635d64bd sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a6f948e sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77985420 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77ea2397 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78a1ec08 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7cb8fd04 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a66844d sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8ed934a1 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96c7384c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99e79fcb sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa381239a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa99c2fb4 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa54b848 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf4478ea sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc047ef06 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc535aa21 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd714a32a sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe001fec9 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe26be84d sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7200dc0 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe93a14f8 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe94b7eb2 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeab3a7cb sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf17d8d2e sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd7aef5a sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff1ba8bb sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x11738f00 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x20745607 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2cb1102b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x35e53f9b sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3781c547 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7765c743 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7caf9435 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x89c55859 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x92fd7fc0 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0d640473 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x14a940ff most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1e82d0d8 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2ad85ce9 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x38810d8d most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x556dd762 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6289c430 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x631b40e4 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x73649aef most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x950f5223 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc8a90986 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd2fede60 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd946f952 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdef07512 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x43cfe49f cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x81f8e4e1 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbed1c109 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x52bc9c7b cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa14553fd cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdf17182d cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x3082357a cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x08a48c8a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa3ae8dab cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb24f2fa7 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x2fa8bd9a hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x810a0f57 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00829933 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0195ebee __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x062bcfd2 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14d27d80 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19a0cde4 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b4331f0 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22a2d12b mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2364b342 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x287406e3 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x353deaab unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b4c07b2 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c057873 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c3f6f3c mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x430f976b mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x455f2d75 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a647c4d mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c883806 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52328984 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53a6ca63 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57c00922 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x587fd4b2 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f31458a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61f633e9 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x621d536f mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70deb25e deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7127e932 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77ea8401 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f2bf8d4 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x823d428e mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82d0a1f1 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ffd2eee mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x921a1b9a mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97537e7d mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa380f61e mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6c7af66 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa89eef78 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabbef98f mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadd9b1e0 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xafec71fc mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3b68095 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb40242cc __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5eb6e53 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb7a6dd5 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd2921c1 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc99e935b __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcafcb873 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd274dd39 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde7dc53f mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf74ed26 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe281b563 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe439be30 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6761a46 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7ae71a6 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x322dd8c4 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5e307119 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x79ec5ebd register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa74443de mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbcfabfaf del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0f589263 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x160a4727 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1f2ca5c4 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x320c5afa nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x34a14e0c nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3b277941 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x55fb9c19 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5d61fda8 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x636db6da nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x64dfded0 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7ef0ac2c nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8b5d76e0 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x95a57c19 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa1d8ecc8 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa5d5814c nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xce67ebfe nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcf222495 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd9ee944c nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfea26a5 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xea08c4d1 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec4e0037 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf94fe8be nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x692b14c7 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xc7ead08d onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x2dc73582 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x01b019b7 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a21ad37 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0e790561 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2abe6f48 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3f25aa75 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4c6395d7 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4ee4aaab nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53462661 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x623c5dfd nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x67324ac9 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x91da5810 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x94829990 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x99f7e48b nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9ed86d93 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa65cc212 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb65e3727 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb8f15f7a nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbbd82bf1 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbc7e1f1f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc87072e1 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd1c00ead nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd2d72763 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa009338 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x9c332015 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x7df6ab1e spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xec28c410 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0aae7453 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e47e17d ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x105e0553 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x181dca96 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x229a346d ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41886386 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4dbf40f4 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x59fa4f64 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x630a5972 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8351dad5 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9943fb6e ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5db6ed8 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe8f670ca ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xead40c7f ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0e4d5ca8 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x15582f63 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3298d795 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x529e58d9 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x674ac123 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x87b7f1d9 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8c03ab15 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb60a94f0 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc1046ed0 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc40016cd devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc55e4bca mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcc4c6e86 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf92e1efd mux_control_put +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x797315a5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x82769ca5 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x4ab380d0 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x66ff6f2c unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b41edb3 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb878ec5c register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd4d92857 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xefed274e c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfebf00ed alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x419ed56a unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x543ab76a register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x602321b4 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xff68ddb8 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00407f52 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0f287206 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a6b55bc unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f6ed069 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x27de9805 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2a9ac38f can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30276ec2 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b17d1f1 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3dbc0212 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45db4ad6 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x566ba51c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7153b764 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x77f11bf2 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8ad7f735 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91772676 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x98faa5d1 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3b4adb0 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb9204523 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb9acbf52 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc101e94 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2c977d3 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc341f9a1 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7003078 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd9d937b can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5a55dd7 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdfaa969a can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe77fd6db register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec1f5d7e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf5a6afce safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x36958532 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3e54867f m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4ee83810 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x89d88412 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8ff10ffa m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb0c71dda m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc9ec5d24 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf32084ea m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1f656ddb unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xba0e92f2 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbcd9780b register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe570857b alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x24714f1d lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0dffb2d5 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x13ad473e ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x263797ae ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x269cc6ef ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x344e376d ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e23c28f ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x41a3cb2b ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x51034cf6 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x716add29 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8eea706d ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xab759cab ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaca9f6b7 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xacf29541 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe604ac4b ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0031c2f5 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x050ae6ea realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2ffb6f68 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x41730a45 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x423a2f19 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x53204a18 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5479fc98 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5ba4c417 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5f5b0084 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x600c41c7 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa0edba66 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbb7dd90b rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd4733351 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe17ded33 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfda91f3d rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x242622c8 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe7f23297 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x099ad9f2 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x898dba2c ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9db7caad ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa771356c ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfeeca205 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x001b0d91 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x028b95b9 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ebcdd2 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03b9a9b6 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049f5dac mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04eecbd9 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a8567b3 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bfa9348 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10932587 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1324fa68 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1748db70 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17fd27fb mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189449de mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1916338e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cfd4011 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d1bd3e3 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d91f55e mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2242eb77 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x267667f3 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275e1ff4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2806a395 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29355b0e mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db24b5e mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f62d2ea mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3091b09b mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x357023bb mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x391939b7 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41051830 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x454c1c93 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4683f337 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49a5c480 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a183d11 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a2bb0cb mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c316f85 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4de4a166 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e9672c4 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f482f5b mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x549a2181 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55203b81 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ac2bde mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e11cfe mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5937450e mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c7e07e6 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x608d2269 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x615f2abb mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62276122 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62fb3e13 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6577f8bb mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68e8fc99 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a84891d mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d428ee4 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ebe7db2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73112861 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79729fa9 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b2e6cc9 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dd570b4 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ec281d4 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ed5225f mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x873c3891 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892463bb __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b70c2f8 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b8f2567 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dc091ea mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e996c6a mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9322c7e1 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96c20a17 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a8ffebf __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c843ea6 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ec48c7a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa069e96d mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a31d95 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20a42da mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa672349b mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab9e4cc mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad0670d5 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb007fa61 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0bf6a58 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb11e08b6 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb211a5ab mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb259031e mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2b49541 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4abdb8c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba337aea mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcdd9b63 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd05b4d7 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee9802c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc03ed414 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0fc5ed4 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6bfb53c mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc80432d4 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcade83fa mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd19c5d35 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd20a90a8 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2bebd94 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ee79f9 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e7501e mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ae23ba mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc0ae68 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcc95c2c mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeeb2cd6 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0713c94 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe150daba mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe23a278e mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe24a0a76 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe300ca22 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3cc9612 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe499b6b5 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe76b6a25 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e909f8 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b7186b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab8de90 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebab9918 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd1bb62 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeca8f387 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed68091a mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedb4a609 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee112b02 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11b3bf2 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2666055 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a3edc7 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf79e5d31 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x035e46ae mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b8d129c mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c5f1b06 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0df4e758 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1310c1de mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13a7c8b9 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1655aa44 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191901d2 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a33bdad mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae6b0bc mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c3fdb8c mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2612c8f8 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x274e13d1 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x278956a5 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27d47861 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2be050e4 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e8c06ae mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f1d5c1e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30baec80 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31eb361a mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x358057c5 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae758a9 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7de9e9 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eb6f822 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41679c74 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42ca4657 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf10b3c mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e61c63c mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506a1084 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50b7ffa9 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x516e62cf mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52aedf43 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ee111f mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5759cdca mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595d8ea7 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0937d6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63496e5e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6773ae65 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73f81c68 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775df418 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x797f357e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ace4623 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd14a3d mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x806246e4 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x857b21ac mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x867c1e58 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x873527fe mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x876e0bc8 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c11de4c mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d5eb1d0 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x918c37fe mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9524fe02 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9819f266 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9639b24 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3fd2004 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb419a167 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64d774e mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64f749b mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc43fae28 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae697c0 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7ee631f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd83cba86 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57c05b6 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6afae9e mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe82c0aeb mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee8eff25 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf745508d mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9ebc194 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd5fa969 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfddc3239 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe47e91d mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x081b0088 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7811af25 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xebaeacc3 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xfef3d382 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xec4bfd85 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x065b2954 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x192b97c0 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46057b07 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x585636da ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c7326f1 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d5e1386 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7908f8e8 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x792c2e50 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b60f937 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d55138c ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x967ea635 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e1c9bb9 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9f9eee4 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1d5cffb0 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x46520488 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdd5f529d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe6ac68d6 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf55d1de9 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03682946 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x13c2604a stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4e36bfdf stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x81e3ebda stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf9777f27 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0799e073 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x12f75dfc w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x99bde322 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa45f31b1 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x533b0ca9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1cc907b6 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6a574a82 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x908cc330 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaee01aa1 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb3c3546a ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x8ed53052 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0a035fbd macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7d798604 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaf876145 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc85709fc macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x55816190 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xb71d7d38 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xbe79117d net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x29dcd086 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3a2140f1 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x565d3ca7 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x75ba71ac xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb5d8d053 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd89bd06d xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x005bf805 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x081b4b56 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0870e78a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ce7a351 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e47ed00 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f4003cd bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1191c4a3 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1a03658a bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d6ff379 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e271be2 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2770920b bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c1be403 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45a8227d bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4897c7e2 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d2a6f29 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5de5c226 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64782217 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x703f011e bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86327747 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x890d894f bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x907d9d90 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x915b11b7 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9217c763 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9440a680 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a95fcc2 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8b24cc5 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb13dc462 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3c7c709 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6b84618 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcee4b4e2 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd71c4c6a bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2e24c86 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9f871eb bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe0290c5 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0a555ab3 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x27be5026 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2b399bdd phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x38cf3812 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f64baba phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5af2de44 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd4a55177 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdb231476 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xefd42659 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x09b96aed tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x0bde63cf tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x225863a4 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x65dec801 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x719a427b tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x7553c08c tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xce33174e tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xf99f7ddc tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xfb7eee4a tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x04750e55 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x293e194e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5db531bb usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8fdc0c13 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9813420c usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb70b0343 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x236a9d09 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2420cd7c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x483c64c9 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4c44abab cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5e635bbe cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81e5af84 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa28b93de cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa8fd8d34 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xace44f98 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb72d4f47 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdfebbbd5 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xf44c42d3 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2e41fb46 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x608893f1 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6edddc18 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa51f15bc rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa80913e1 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd1cd83eb rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01d07313 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x062d6bcf usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x064362d7 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ec65dec usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0f9dddd3 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11d29a94 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17227fd1 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1766e900 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2084510b usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23f0b122 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29822a90 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43590c18 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d4e3f74 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x765f7ac1 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8cfb87c7 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x989aecb8 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9dca5e3e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e79219e usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7423f92 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3503e54 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3b711e0 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb68f45ef usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd72f7b0 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd9e72ed usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc92630fa usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccb38554 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5e5c362 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd63743c7 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd81e8af0 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd93346bc usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb692b55 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfa33de2 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe1473b9d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf76f7a04 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x83b23330 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xb5232bf5 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xba34d878 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xde25b040 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xcb58dedc libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19467b42 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaea62dd5 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1d41806 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc46da672 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffe8ef19 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x02c59390 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x033fb21f iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0dcb543b iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e2d68e0 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0eaac42a iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10ba1142 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1171b368 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15e948f3 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x164ec277 iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1bbfa1b7 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d281916 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1eec3594 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f0b6a3c iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24598a43 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24fdd779 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2736aa2e iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28e3e1dd iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x34a3a0ba iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37419bb6 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x39568a67 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x44344965 iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48880e26 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50dfe8a7 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x511f6772 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x599ac551 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5cd66b07 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f2bc42d __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61eb9e9c iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68ef92ad iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68f0db13 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f842ae8 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6fc0cb81 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x740d24d9 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x757e3242 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a0e2dfc iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80e37578 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8431708f iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a82c445 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90f18fa5 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x913371e5 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93290917 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a7a04a9 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9bc731ad iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d7b48bd iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9dacf7a9 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0749204 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa095ad4d iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa20b6895 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa933da9c iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaef8a6aa iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3e39a79 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb70868b7 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1196f92 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc31e8754 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0a7bf03 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0d1b4d0 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0fa1010 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd42e8217 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd49c8355 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdac0bb83 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdfee985e iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe02f3423 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3d22e5b iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4e3d94b iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe855363f iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb20ddf3 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf40c6454 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf48fc82d __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf646dd2c iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc2aea31 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x232cc16e p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x392b8863 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7f4a5c6a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8308bfa2 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbd799fdd p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdd429995 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xed9b0a93 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xee4af3b9 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf144de56 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x04cbbf0a lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1da000f1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x361be310 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x38d0f70e lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x640297fa lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x897850ad lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8aeea9b1 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e65e53f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8fb1aeaf lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90603cfe lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x974c023b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9f5a1411 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa4b5199d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb88e04fe lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb97d8f93 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd1485f0a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x32728aba lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x41227817 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6757ae1e __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9c8c39fe lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xac8d8989 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc4e5a2c1 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe73d57e1 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf71dd510 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0314ee82 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0bb1714a mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d43b687 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1192203c mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11e04d9e mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x164fc13c mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x22c3f817 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41e31f3f mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x425e4ef9 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44b4417b mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5730440c mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5963f821 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8392ce30 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94d4cb06 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa3a91ebf mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xab8b2a9d mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6516e85 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf5a787c mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1eda0f6 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3779fb5 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd31f0e69 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdd78523d mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe73aa731 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeaafeeb2 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a8abc2f mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ddf5b00 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1075d031 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11935327 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12a5e8d4 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x137b23d5 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14c071b6 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x156dc55f __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19d36cdb mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b37bca2 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b653754 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1df372c6 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2113dae4 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x239f7d5c mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23a3c6ac mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b68d926 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30c117c0 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32156d7e mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39907c58 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b328cd5 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ec32ae3 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42bc6b5e mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43e6a9d6 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49c46c51 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b7d7624 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d4cb15c mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d7d735e mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f68a3bd mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50c70fa9 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54cdd9a8 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54cf449a mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5710a087 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59a57478 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b4b0fba mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5cd7a041 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63179fa8 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x678d57a8 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68836053 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b54d5ad mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bca4064 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fb2b9c0 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x719e1989 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74ac08c3 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x777ec799 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82c78355 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86cdb673 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d43baa9 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f515507 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f866364 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93b346c6 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9758fe80 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9990c9cb mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99dde91d mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d054f45 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4d21b75 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5e4b6d4 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa73fd951 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9d1e696 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac4488de mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb601d202 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb715ba63 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd467141 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfcb5a52 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9d8018a mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca7c0c20 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb9d9e28 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfd45811 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd33b2fa0 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3429b3f __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd486e23d mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5b7aa2d mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8f0e6cc __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd5fd984 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd78d979 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3a84631 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe44c2abc mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6c3f2a0 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebd45ea8 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3ba3531 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19e54bd3 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x255e6132 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c4dd85a mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30a6b227 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x316b5230 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33e78d8d mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35ba2e98 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3eb1d8e6 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40981bc9 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494deb63 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4ca61b64 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5166d117 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b33fea3 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d0cabc1 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d518f83 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x666966dd mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x681d83a5 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c86f5f1 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ad3d255 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8004a74b mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8497d5b8 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86444c74 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f20fb60 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94802ee2 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x95ec4e36 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2716835 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaeead8e7 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb04c7258 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3317673 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbae0801e mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbc64e59 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbce812d9 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2617716 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcfa8cf62 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7b505ce mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd923ea50 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb3398dc mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdeb84e39 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2442262 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2a6f13c mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5ed5c07 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6b7e022 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc38d562 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2d4f2dbd mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdc6847cb mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf2443067 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2c24d250 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2f8195f2 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x65c363e8 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x714677cf mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x81db7abc mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8e59b00d mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd86c562f mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe4f9476d mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf2d2e5c7 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1320adf8 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x148af102 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1da8667a mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x22d23357 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3017cf6e mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x354aa351 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x38c35250 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x396d9eb4 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x49b5ff95 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5286f9bc mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x555c6d6d mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59468f8f mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5bfb0f29 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x668f2ff1 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6c025d7d mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71918572 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x96da9ccc mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x98b60264 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb1cec1aa mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2443c5c mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc6d59e68 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc74bdd40 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc776b028 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd37c64ba mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd5943cfd mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdffc28dc mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe95727c1 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfc27a6a0 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfd82e848 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x81cbafbb mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x5f986845 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x6308cabe mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7f792304 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc059d4b5 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2b8d36e4 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x525b5f0e mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x59187547 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x71c25abc mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe43cc864 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xff14d38b mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0444ac9b mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09bdd712 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0fc4cd2d mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1346d38f mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1612e128 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19502a5a mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1cf5d3a6 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2427f251 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x276cf537 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x280cbfd4 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b1d2e96 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e102017 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ff00e5b mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3216eb70 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32b15070 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32e13f67 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x364e73bc mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3910b820 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b715aa8 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c161669 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f76283a mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x495589ff mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f34bd00 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50e117fa mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x537e0ed0 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53eca819 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x586ee9a3 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59891bf5 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cb352f9 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5dc18275 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6007392c mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x647e34a9 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b03d29c mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bbe4567 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ee92915 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71da3aac mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73a7939e mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x765dd80c mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76f2c820 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7755d521 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f4dc437 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80ae83ed mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x819530fd mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95f5fc29 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98161451 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ab19e38 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9af45a52 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9afcb2c8 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b2f72e4 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c24e858 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0872acd mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0e5940c mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb08a6f25 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3d0d1ec mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5a84615 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5f2e90b mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9c9bd06 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc41fa849 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcbbccd89 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3f684ad mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe963aaff mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf243a0a5 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3e8309c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf45c1696 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd1ff5ae mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe442976 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x15a2d435 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x23262c21 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x48a666c2 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4fac5e45 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x56abf1b4 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa4758f0d mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc24d74d1 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe9437486 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0755d4a9 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d25fec1 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1352f223 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23afdd7b mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x523e78f0 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5546bb7a mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6094fa05 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6699c6f0 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x672da63d mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7405055f mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b6ce1e6 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8e62e01e mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8845a36 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb0433974 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb56059c6 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe1d75982 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeee3e24c mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa5efd2e mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfdc3e7d9 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x25f9f220 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x664b8d89 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9428ec93 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9f6a314f wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa6917233 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb42cf5d2 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb45fb7fc host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x03017dd9 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4c431250 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x82271647 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x88b14a88 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xaab10b5b qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdb07e550 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x003e2258 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03ab7c1a rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0aa5e2d9 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15a76022 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1766d7c0 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a2e173f rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2616b19d rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2725d6e8 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3410a721 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x441898b7 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x479a3caf rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x494a08e6 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4fa3250c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x509be02b rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52641796 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56ab9d50 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x624cd73a rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64d9de28 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69d5cd92 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x770f5395 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cd0b8d2 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x97e41d4d rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9bf9e5d9 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9dcd5ca2 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa055e656 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa23d8b11 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa48093a8 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4fd4679 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb64f7c27 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbd06ffc rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc247d953 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8ff5aa7 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0b40266 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd36ce10b rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd43645f1 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd9b888fa rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd321f24 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe542a843 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe63036b5 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8171f85 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef8c9ffa rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1f5c725 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2a07ab6 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfba9edec rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x661810de rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x66fc5511 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6a1cf851 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6beee2a9 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8e1e44a4 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa6317fb2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb32239ee rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbeb100b5 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbf392cd4 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc5c26944 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd781794f rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdecd5ff6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe46f1b27 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf174b244 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf1f34522 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfced2987 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x021a50f4 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x053c6ef7 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fe1a45f rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a128bc3 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2014474a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x202b8589 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x273fa75a rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a319741 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b96fc8a rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c513b94 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35941197 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3be9b512 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4aff3a2c rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51e16c60 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55dfb933 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c5479ff rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c602acd rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ff1227a rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60281a8c rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63257d30 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6be22403 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ce7179c rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71d2e9a4 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x798c9bc1 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81cbd9c4 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8eab776a rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f1ff6d8 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f385ed9 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xadae7956 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaed4db8c rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb572e2f2 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5f65c39 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6ac1af1 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9981ef3 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9afed49 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc57545cd rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc75bb168 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfddedf4 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd294f6be rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4bdd1ce rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc0a7dea rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdecce941 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeba467e8 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xefb8cb4e rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeff35eb8 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf53cabea rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6d57360 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0840fb65 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2969994a rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3f77b5a2 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbbe5ec2e rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbfda92af rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0d07caf7 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x46187828 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x66413c20 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0dff5fa7 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1e01bb3a rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x34c8fe42 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x35882ddc rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4537137b rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x486fcd48 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6508ca9e rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x66f36e5f rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x70a0bf7a rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8d4593cf rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa64684a4 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaa271c1b rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xae4cfe8e rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc73e9b1a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd7b9224d rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdccedad6 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86f961fd dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae040d28 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6ee8164 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb132e31 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07ee9083 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b0e8c85 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x12212f46 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1450269f rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22bcc36f rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f494728 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x390091e4 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3de21774 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4095ce52 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x455404fb rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x473605b1 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4dbed31f rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4fed30ed rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7dfbed94 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x858b91b2 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5b47b11 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa80e559a rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa792e0f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad4fac27 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9bed375 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf84e632 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf57a946 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe36ec805 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe507f4cc rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe14558c rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17f862e0 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24f97d9a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34996070 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x419e82c5 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x530df787 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x643b5092 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a57fb24 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79fba54e rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d728aaf rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83e97cf9 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88b09e0a rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x940f2d65 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad27bc9d rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb77e3532 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc24b3523 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3a92f40 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4d8f9d7 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd04ed78c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd54ca06c rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd78badf4 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9a401a9 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe837f1a4 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec07921e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0812676 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfadf4fcb rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x625e7861 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8a201a9f rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb6b68453 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbdb365f9 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xeed08297 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x02f9518e cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x07c28098 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2d6104e3 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeec33450 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x52d7a591 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6a32eb14 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x704fe765 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x017ed87d wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0736af5e wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x098feb14 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cc701d9 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0dfaeefd wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x110f1786 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b6b6981 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c9564af wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d084cc9 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2052f248 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x205efcbb wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2299fe11 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28447662 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e8e8766 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x331183bc wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3402c35f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38714486 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f9bf3ec wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fabf85a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4acaa9b2 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fff5e0d wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52ad3e3a wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61e0fbf0 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64ffe9dc wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x826ac5be wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88c30a7a wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91eb7d91 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92394c02 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93cd1f09 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9829146c wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1692a7c wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb264d025 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4add179 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6d0e63a wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9036c6a wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc55b30c wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce52a3a2 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2439471 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd255d2d3 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7605c7d wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdad69cf2 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2164f5a wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb6077be wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x04dca1c3 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x14575c46 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xf9ca036f nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x173aea6f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x34d1b1cb nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4eb25ce1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfe027c84 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x155590d5 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1c79f1aa pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7608d53e pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8bd0034e pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x95d3b573 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaccd00d6 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfa71f281 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x02dc7f20 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5983ca11 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6a0c9653 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x717ff159 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xabbcdfcc st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb925c070 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xed684c75 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf6531f6b st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x291e7faf st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x454d5977 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf54b737f st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x613bf6fa ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbf1591b1 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xcab59b7b ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x48fd5a85 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x4dcb9ec3 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0114126e nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08504043 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e5721cf nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x105548ed nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x108ef4a1 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x168640e2 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a139727 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a367401 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x363643e4 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3655e4a9 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b6e7e59 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c7b9829 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40fbef70 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b16df68 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d8b09c7 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x616dfc2e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e63bff5 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x704c4b94 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72501d10 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7914057a nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f607f0f nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x864d9d45 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88ad1230 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x918bbf2b nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9714c255 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b4bd296 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b77e303 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9bb33d3e nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f605b66 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3765a1b nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9a94cef nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf202146 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfeb729f nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6afb89a nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca41db2e nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd071f9ce nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd09fa047 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd916b217 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc2eb0ae nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3473c8e nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea28d979 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x46585684 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5072dc36 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5c18e5dc nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x668edeec nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x680f24a7 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbfbebe16 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc71df159 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe4715b94 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf8846e70 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xff222d1f nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xaf330b8e nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x031337ff nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0a4b9573 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x212cd1d4 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x41478072 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x518584b0 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbbb55118 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbcfffae3 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xce0d2492 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd9678436 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf5297d1b nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfc831608 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x32cfb589 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x3282a90e switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1d2eef27 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc8425e26 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf839fac9 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7af252a3 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xf98145f3 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x4de3c801 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0b8f82a4 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1f089581 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x264fe21c ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2bbd6317 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x304dccec ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x345fe5f6 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x44decbca ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5a86ee9f ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x622b4cd0 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6877f8c9 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6f9fa1ba ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x743070a4 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8207aa1b __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x890c6f93 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x90fb04ad ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9180a0f3 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x96b67990 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d35609e ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa96826e6 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xadd95d9f ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc01f6ec2 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2ec3beb ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6860008 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc97ee038 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcd8566ad ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd2c6ff68 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd4b7d2b1 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd9ae89e4 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xde6d505b ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf7b470d8 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xdb0b6c49 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xcc888988 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xf5792204 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x330aa52d dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x633fc476 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x803d1f18 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xca7ab006 fw_attributes_class_get +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xe609be46 fw_attributes_class_put +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x4995507e intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x726b6d83 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xc454d828 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x0479470a isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9d2739ba isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x065b4695 wmi_get_acpi_device_uid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x19ff883f wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x9b51d703 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf66da071 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0fbf54ee bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x616c4aba bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x870bd683 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x360186a2 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x52b2b735 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7899b364 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x52d44dfa rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xabe1f17a rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xcdeb369f rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5560af2c mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9f5c90b3 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcf59b7e1 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0502d485 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0f6a0d08 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x322c8d90 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4c8536eb wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x773e81e0 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8e476378 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x55ad49f5 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf7a46d7b qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00621f51 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a2fca8c cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1127be11 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12c4a60c cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14de33df cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b052f20 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1dd41319 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f05dc28 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31020bc2 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34789c3e cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35940fab cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e276553 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5865e8c8 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x596bb10e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b75ccca cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bcc6167 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c303c3f cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64ac5285 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64f7affc cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69b4f019 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ae9fd49 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b91ad62 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f5e9536 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76aefbbd cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x886a7adb cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c3abf3b cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92fa7168 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9670fb13 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a0e5f87 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b0dcd31 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9bbfc8ad cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0765454 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4a945ba cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0003965 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2c34b19 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc53231a cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbedb7811 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf1f8c3d cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2953123 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8bba7c4 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5ebe8b9 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb45c811 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec2af836 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb4071ac cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x116651a9 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1762de9f fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2124ce4b fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x263a9581 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28d3bf1e fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x29cbc13f fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b24a156 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x72833ed3 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x89a42ad3 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x909d103f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb736b635 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb742bcd1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xccad75a1 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf147aa27 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf1fb6b27 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf94ea0b7 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x331ccf0c fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf8910328 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x412c5583 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7ee96ee9 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x982daf2c iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcff63f43 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd1d5923d iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd4a4a9ff iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xef7bae0c iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x020d6b94 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b7d76e4 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ccbbe34 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dcd1383 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10474266 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12ca9558 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a92d3a6 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e10ae19 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b864831 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e1e519d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3704a1b1 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3781de5e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41f44418 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4377858c iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4af93640 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d89c568 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fab0072 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d1e3b23 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67d674e1 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b43124f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72309665 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72d242b3 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73481319 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7413fa3b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82fb7816 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9762911c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7002220 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa722c84f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa1e3a57 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaadc9ec5 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab4541c8 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb09dbde7 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb94b75a6 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc947186 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf0adf77 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf52c708 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb3e542e iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdbf7c3b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2477c48 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3e96e1d iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe540abe1 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe664cb1e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6782dd8 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe95320c6 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0abad696 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0aea7a42 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b91dba4 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x142a9af3 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d372c15 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c877316 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36e0d8df iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x744317c9 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a83ab11 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x815271f5 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83328a34 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d17c0ee iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb44e35eb iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb45102af iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf1b14e4 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce7edeb6 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfeedf21f iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00186307 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03afe1ae sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b12bd7d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12337831 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e8dff61 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x209effb6 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f8001ff sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30d7ba61 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35810e2c sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4708d1a6 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f887387 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6051e4c9 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ef92784 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80d72db2 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x958321cd sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2823868 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb015ee5c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb05ad561 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb21d682c sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5c1f079 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9d4e6cd sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce9262a2 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc57f6fe sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe21566f0 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe291d4b6 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1188c9f sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9c292f0 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x8e3f5d7a fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00340c1a iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x055d0651 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0808363d __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a71d202 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e2bc3d6 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0fd52100 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11cfdb6f iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x192fb9e7 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x205bf551 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x235a2da3 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x250fe042 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x275fc8ff __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d1c173b iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d3fc40b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2df6c067 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36d083ac iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36e490c5 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ed47151 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f5a7080 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40779fac iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42f6a3a6 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43335ab0 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4864d868 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dc2c5bb iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50ebc4fa __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x515893b9 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x565689a2 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e05b719 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63bae626 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6980e78b iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72bda72b iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79c6f463 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b7b7ef3 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7eb0947b iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85940236 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f76fd72 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9066cd9b __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7bf3cce iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa88fffde iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9946398 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb15bd19b iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb316c6e1 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1e0f901 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc87c2926 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8c55350 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc37c25c __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfe1abbb iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd312e07d __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe39ac67c iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7a6beb6 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9cc4676 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb1c4a5f iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee9f073e __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf069eba0 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1e9658a iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf26b4f98 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff1a2133 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x09db1aa6 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x48712e27 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaf8ed319 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbe69d21b sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x4960887b spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1f50ea2b srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x570438c3 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaff37567 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb0a9e606 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd446ea72 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf2d9c222 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x111081b0 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x147c909d ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x22acf8db ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x23f8295b ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3a91fbdf ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x572a7d64 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5d45347d ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x69179f11 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6abb208f ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x72697449 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7c6a0797 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7c9528f7 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x86615618 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x880ee108 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x882c5087 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9de19825 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcada3f66 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcfb550f1 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf15b5782 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf423cba4 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x162af1aa ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x221a6f98 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x140f81e3 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x18aa184f siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x41b46034 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x594da2c2 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb93aec62 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcb3bc7a7 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x01f50164 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0edf8e45 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1a54c5b4 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1baa8684 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2953ff93 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40a9cf13 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x436e73b3 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x493497d3 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4eaa5190 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d0da699 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6eefe196 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8d0192e9 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa156a22a slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7dc4639 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb7a778f4 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbc0540ca slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbd81b282 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc46aab4f slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5dcbd37 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc74c213a slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xce4a41f1 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb1ac09f slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfb89cd3 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee039253 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf973a6ff slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfeb7b2a6 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7e189456 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbcb26d30 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc5df7905 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x1531d1b0 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x4c178418 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x58e1977a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x71242262 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8fc5d013 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc9358c9c spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd615507d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfa5d78ed spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x17cd1f03 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x42f534fa dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x482bb284 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x488d5c28 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x91559944 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x91b21a3f dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9a726cb2 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc7283192 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf4bd325e dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xad5d68f0 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe579b0b9 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xed939da6 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00dc2d0d spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x209529ac spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c179d3b spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e69d9c7 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c998d11 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47825946 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5ade71e4 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b4caa18 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6176bc9d spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x86832300 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8d616b35 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xabdc2982 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xae00aac9 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xae69714e spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb80dc140 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2e489ab spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xee959c77 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0a5e232 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x013252f8 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x24d7ddb4 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x4753d6b6 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x575a8ee9 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf2edbc0f fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x026515cf gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x13a715aa gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x244e3a09 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4211faea gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5f12da1e gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6807cee7 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7939f5d8 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8ba44a79 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xad239d4c gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc98457f0 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd67f7d5b gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf326578e gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfc1fdf0b gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0010f303 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x080ef011 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x18d53f3a gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1e4d2e88 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2de43af5 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37a48017 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x449e6a97 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x64d3c8fa gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7b341a91 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7cf29d4 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc4836486 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcf226626 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xee5b820b gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xc4839c86 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xd9326cd4 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x15551d89 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x91ba4532 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x5495465a gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x69642680 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x97d67068 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x3465e5cb release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xd5325aee load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xfed82127 apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0e07205d gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x25fc3881 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x27358b6f camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5f52e2f9 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x89daa5fc atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xb1a6139b gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xbae0e12f atomisp_get_default_camera_caps +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd46d61b3 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xe4dd2eaa atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1ef0a727 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5947efc2 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb0f6f03a target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd92862de target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x02f4c218 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x03bc185c tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x05691663 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x187bb2bb tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x275bce66 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x363764c8 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b1e7ca6 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x44ab31a3 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x49f8bb86 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4fe00a17 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x536e5cb3 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5c647377 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5d8b8b2e tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5ed1b043 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8affe367 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaf92e984 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb2ecb176 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb6da8850 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbd94a44c tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc183aef9 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc8af2154 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xedb38e38 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf86a1fc9 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf8c7d4c8 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfc8226a4 tee_shm_register +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x10c1f4d6 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xb7da3553 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xffa10b7d int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x09f51e26 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x4918bc55 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x4a72e8d0 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xa4211c87 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xad382e87 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x2101beae proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x280a3278 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x7b047a37 processor_thermal_send_mbox_cmd +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x2292cade proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x21d9da0e proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xeadba88a proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x294b2913 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x51f9f5ca intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x7e82fb1e intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xd48d04c0 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0af11101 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1c363667 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1d048d1b tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22bfc53b tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34572e9b tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x47076c06 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x541f19ae tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x721ef0e5 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x77beb716 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x77d94101 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7a933601 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8fbf03d9 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9d43ee7d tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9ffb3ade tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb01c5dea tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb176d447 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb4b6df96 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdebd8fcc tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb95d99b tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf0385e05 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf269dc52 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf30ae2e1 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf3acbee2 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xff143ff7 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0daae0b5 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x80ea6732 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x95c9266b __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcea7a1b8 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xed8faf38 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf4ccf13b usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1ecb5097 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x315fcb5c cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x37c830c4 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8a6e7fe5 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9468b6a6 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb18ed103 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe3dc3b85 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf3d0d581 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf99cc7d6 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1fc6cb31 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4edfe724 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5bb77821 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb9fc1da8 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x099b0965 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2c048440 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8df7b110 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd3052611 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdb68aecc ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xef1d4f49 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1f74c658 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x356712ca u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x36d989d0 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4eb947eb u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6434aa30 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6a83bf77 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x78b09391 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x93d3fecf g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa5456c41 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xccfaf75d u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20144c12 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3dc3b5bd gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5e7afebf gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x654b834a gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x67b05ffa gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73446bf4 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7b483057 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c047ebe gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b58a8f0 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa7533cd0 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc081a284 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce1e8fd3 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd3eaaacd gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd414d2fd gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe50872ee gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf810d68b gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2d51a36c gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3795fe6a gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x43f9471f gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8eb1acb1 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x95aba746 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xfc30a0d6 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b974247 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x33a8001d fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3457d411 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x44264f9d fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x615c551e fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64650d4d fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78e7b98d fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7eedd2d2 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5551e7d fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa6a83164 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb699f1b0 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcd064c88 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd4d114c3 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe562f277 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1d00390 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf9359806 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfb4c2118 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x058d9959 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2111ecdd rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2273dcbf rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c1f2504 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4d4fc4ed rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x69eb7369 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x71453dbe rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x979f6b6c rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa88ef5c2 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab02d179 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb198e8c9 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb8f66f6c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc60526fa rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcef6d7ae rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdbdfd0d8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00c213dc usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x180edfd1 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1e85aa69 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21f9e48c usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2475b84a usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x254c64f1 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36d1581a usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4350b71e config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x479ac1d0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48d3a739 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4baeb9be usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e7a76a6 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x534ce790 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x602eafcd usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x64d8b436 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bbc1364 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84a0d7c4 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x88262b16 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e374032 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9457af94 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0e874cd usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3119755 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa66ee470 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4e6f35f usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7579cf7 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb508da2 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbee64092 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaf92d89 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0f4aa40 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1c43e0f usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7fe004e usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x11fef6c5 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2227621e udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x27eadba5 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x474697bf init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4d01fd56 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5c2f3d20 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5da26f80 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x890186da udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc58312ea gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0633f9d7 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c57cc42 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f1264ec usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x13170209 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x161d4d2f usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1addcbf5 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29a482ce usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39ba2b81 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4c2aea4e usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5403efea usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x58c4729d usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c4ae2ad usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63982742 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66c1e330 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x73ab173b usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f6ef819 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8f339939 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92fca351 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95c1499f usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb0e0b277 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc29f282 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc7a5c8c usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc133607f usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2f9da28 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5c5ff39 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb6657ec usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe91358d9 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef17a1f6 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3a42fcb usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x48758611 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x07199b79 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfbdcee69 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x02df18c2 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1adb3e03 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2b0f0b19 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x31ab82e0 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4448f5c3 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49ad4802 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f19b477 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6fb7437b usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa00a7225 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x259313b6 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x40849612 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x64ad0bf3 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac4cfef2 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdfb80b31 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xef5eb662 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2a0b49b6 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x829c4ddd usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xafe4841b usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xba887651 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xec6b9b87 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3de0923c isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x0d3385ac usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b38e727 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x100c93f6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51b4490c usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b0f2ad0 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b126c7e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64c5ae4a usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66c03b7b usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d42de87 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89bdaeda usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x949ada6a usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x978b7f94 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9dbb656d usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e81d9e0 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1d3db72 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa46cb49d usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0a7923a usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2b280fc usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee1e6ca6 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9a3588d usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfaf3e9d4 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x08b2acfc dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xd1b0a59f dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x1d8193c4 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x2c8d1525 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x03e3119b typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05f61b43 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x060e20a2 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0855da60 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c89e710 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dca994b typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x103cf23d typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x135d5005 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x159e7bde typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a590c4b typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x23360305 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b648b9d typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2be9d4c7 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d059aaf typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d555b3b typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31bdd7af typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40d56c42 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4bb79676 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x515f89f4 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x530bef31 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x55e88778 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5765379c __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59009178 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a0738c3 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e4415d5 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71e7ee6f typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78ccbd38 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79d05d61 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d6adb69 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e71cb1e typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81027cf8 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8839997f typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a60e040 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bc31b8b typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90451801 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91f3205e typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x962bc951 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x990f5acf typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fc4e111 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa19c1955 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa3690046 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa42b9524 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5e691e2 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb14c43eb typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4312156 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7babe26 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbda7f3a7 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb7b174f typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd31d4613 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda8578da fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd22c291 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdda5bed8 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe71127c4 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe752f681 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebcbe155 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf2498cce typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3226f09 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5ea8442 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6bb9dc6 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf7f81158 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x30c06711 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x49641e16 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x659bff01 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x86479edf ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9ae152f8 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9d332ae5 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbcdfbf57 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc453e93c ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf4b9fc54 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x11525bee dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b2c72b8 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1bc856bc usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x234cb086 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4905fb1e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4dae220e usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x65d4986e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6ac4bbd5 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa20215e2 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb8ea8fd6 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8bd6a3b usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf9e1fbd4 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfbe7c483 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x19d18ec7 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3baecd8e vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4e4d8cb1 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x759eb873 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8185eef1 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9d73373c _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc4f005a6 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcf0ec1cf vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcf76c52f __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xf3db1448 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x0e87a137 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00f89219 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06ac58dd vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1335ec05 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d02c5d4 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x221dc91d vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ec8aff2 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36b11a12 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x379a7585 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37eb2af3 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3944898d vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b372f48 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f240fe5 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50f1003d vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51d4db62 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52c40ca9 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6761b48a vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d149e56 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81cebf68 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85681625 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x953c396a vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x988713c7 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c8800f5 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6d8dc34 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7e2f266 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4bc861f vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb6d76a46 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba163688 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe2c767c vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1f568a3 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc23b790c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7c989a2 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb86421e vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbcc30c0 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbd51621 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf6882fb vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf7e805e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe44809dd vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec72779a vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf98908a7 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffa1e41c vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3b8ab206 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x483429c3 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x904d619e ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9b2da2ba ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9cb19cf6 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc29fbe95 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe2e6cd02 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x6a0d0399 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa4a3628a fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa8331d31 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x0820e486 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf24ab2f8 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xd1a21594 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x2bc625f9 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4409dd82 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x462a5f54 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x5c466389 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x6c9a5990 visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xdad565fb visorbus_register_visor_driver +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0061deba w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x079d9803 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c8808f4 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3ec5dcfc w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3f4a16de w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x441ddac3 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4d9c02f4 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6a42300f w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x79cd1967 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9fb836cd w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbf990b07 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x137af8cc xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4101183a xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x44f6fc8b xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4e6a35f5 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe94807df xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x975b2921 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xe60e3852 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0acc12d7 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7c636aba dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xfc3291b3 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2b65d56e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x392305d9 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x472063f2 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x55efd27c lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa65afb6c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd4fc48c3 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd87af417 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08672fc1 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09d381bd nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b1dba98 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b7f0433 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x103d16b8 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14183fcc __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dab4069 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e023736 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f6be489 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x203c8673 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20f95f86 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x211221fa nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2198653a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x235a4421 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238faa68 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23d1207f nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x244aaa12 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x297c5c3d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ab567ca nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bff0388 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d34bc25 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ee60e4c nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ef074b8 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x328f6446 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32923d10 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34c73996 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3515f7e3 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3570feb6 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37952e58 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ae1a218 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bf8f243 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x409bf8fe __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4490c73b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4588dace nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x459d46e7 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x476c3198 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bb90754 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ccc79c4 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e4c38d6 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x506703f7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52e57c61 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x588614f7 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58f87bae nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x591f0a35 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af4be56 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b393fa7 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b8bcaef nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e78ac34 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f04b131 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6071fe7c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61eb478e nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61fb6d33 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x659f3267 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67abf131 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x694df8c6 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a5d6677 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a5ea08e nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b6d03f6 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d974485 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df89729 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e54c872 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76ed6939 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a946d6 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac9d74c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e634a3f nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8024f926 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81ebace4 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x826a4af9 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x853fe6e5 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86852f00 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874a913c nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87ad28c2 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88418e89 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x898b0a87 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8993b042 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ce2e9a4 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dd6c056 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e474c2f nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f314975 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f40dd7e nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91971316 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92648884 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94c22d38 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95fb0a84 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x981ca2dd nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a8d039d nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad8b7ec nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dce8149 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f344e0b __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa140272b unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa69b3972 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7de38f3 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad4108c8 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf2d770f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6abb0e8 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb838deb1 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9683169 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba3ee3eb nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba66689 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc7dc386 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc98ae17 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd20b64f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4038633 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc520b251 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5989f04 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e8a14f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c52c87 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca45d5de nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaaf56ee nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb874889 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdb03c3b nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf61c271 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfa6334a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0c644ba nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd153cca3 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd174efd0 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1eee152 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd263ef4e nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd55ac37d nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd75ffa1d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd2f09d3 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2cf5cc9 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3a82d59 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3f42323 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe516b64d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe67c0b1b nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe75cf453 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8a0b76d nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8a57f74 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea46ec29 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec61b7c3 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedbfddbe __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeddbb069 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef142414 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0e1d94c __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf123c97c nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf470e90c nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7e2571c nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9064081 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb293007 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd0fc224 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe978201 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x15771d1e nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0150050e __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01c63691 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x039386e4 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03d2d6a6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04fa3470 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05bd8435 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x113d849e __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x119871bb nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1252b3a9 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17bad0bd pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18abc423 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e6778b4 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fad68c3 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24e8f523 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25836da0 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2904ecc7 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x294de275 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b95be29 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2badfa0a nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30d4692d nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31ba00e6 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3543e741 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3637288a pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36a1c01e __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3847c8fb nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38c6355a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a032c84 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c60d83c nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c902c20 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e85dfaf __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40417349 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x435abca2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5137f5ed pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x551e13a8 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55c5da06 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56402cba pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x567e4375 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f8eefbe pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x626083cf __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69575931 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69978a2c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cbf5e08 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71280bed __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7167438c __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74af2efa pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77ef78f0 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x781409e0 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x786ec43b pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c120b73 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89d64552 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d1a3470 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f6f432d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x914db269 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92a64a15 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92eb6f42 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x959028fa nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98e3933a pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bf302c7 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e6562c7 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ee563e2 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa00edf54 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa38b1241 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4588334 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4a9b57f __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8e7630b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac0b1226 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae327af9 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3965c4e nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc8f31c3 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd95c10a nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc04900a6 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc38218c2 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3df50e4 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3f0baa5 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ded034 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc83e28d1 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8742b52 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce4a688e __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd42545e9 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6bcd942 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc2efebf pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb013dc nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0c6f877 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3ee20ac __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9ed5c54 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeacd29be nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed5cab54 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee3f5656 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeee87c1f pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef2abd77 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf05be21b pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0674800 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1f0080a __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1fbfdbc __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf391c9a3 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4ac8485 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf55f8c6a pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf61ce11f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8cad74b __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8ce1022 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9972667 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9cc1cda pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbfce300 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe5e2cc7 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe746544 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1873ef0a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5a46769b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa70728da locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4a2c948f nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x783d87b4 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8cd381cb nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe60b8602 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x5178fa25 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x29da2ee4 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2a601753 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x323cec13 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3f5e3424 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x703b0e8b o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x89f89dbe o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae09142b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1fecf069 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6f612ccf dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa468d74c dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa70b36b3 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaad148cd dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7cb98e5 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x626b28a2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x96ce2de2 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc7f69655 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcd0b8883 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4b45fb6e poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x7f376d08 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x855332e8 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x8c0ff3cb notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6fbbf8b7 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf62d5cc6 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x03753123 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x1e1f2e5e garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5cb7b7dd garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x781c3a60 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x7ad1cb13 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe74e46aa garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x5bd2e85c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9c716b32 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xac5bf7f0 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xca4641f2 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd89abbf5 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xded35338 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x409d4fac stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x4475987d stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9362d32e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa7afdf91 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xad9816fd ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x14d0a41d l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x16144379 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x38c147af l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3e3d1ee5 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x892e2293 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x917a6fb9 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa331619d bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdcb444c8 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf6f33641 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x4af18540 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03e939d9 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x05833326 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b3bbc46 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10b21f6c br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x223f6b90 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f0135b4 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b4474d2 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x57028d12 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a4c9477 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61862076 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x69fbcc9f br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7592533d br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x772aedf2 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa89f3962 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb4b1858a br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc19e001f br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9b1ba03 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcdc0a0a7 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd168724b br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd92ada9 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe481b64e br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeba28cec br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/core/failover 0x2983802c failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x29dcd06f failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x510e558b failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x005de9aa dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08014be4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11939b9f dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x294be9ff dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x388802c6 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40562231 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4834a88c inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x491c6c13 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f3c6ff9 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4faf1a8b dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x50347d35 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5214db2e dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78038930 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ef2d2e6 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83da37e6 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8566a382 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89bcbbdc dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93f82b8f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1283ef3 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa75471e6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa8d9bdf dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba081bda dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd2cd25a dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1a81afd dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc491c855 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd14e954d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecaa006c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecf80d70 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf63264e9 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfacdd344 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffea4fba dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x005450b6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f44a922 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x824e5c96 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8db94bb3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xefb354c2 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf7ee5955 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03480e77 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0cc032c6 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x185d9e22 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20e290f4 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x219f8df3 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x22fb7a0b dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x325b2f5e dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3351bcd1 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44adf54f dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45403174 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a700894 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4b2967f8 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4e5dbac5 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5043fcaa dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50be8a51 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68f55978 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x731d612c dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x749d8cc5 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x838f5c14 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ab4c646 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d312884 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa10ec335 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa59ca03f dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa72939ff dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6f1d519 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbdcd5162 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc115eee9 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0d1268a dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd14d1463 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7e00732 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe088731e dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xebaadad3 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf78bd8ce dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfff3f1f0 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x175228d6 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f12935e ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x794eda72 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc2bd0f07 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ife/ife 0x0771d813 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x85dcd8d6 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x2a29771d esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x499ea525 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf04e16bc esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4e42e754 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf6a9201c gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x05dba1ca inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0629b911 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0cdd0dae inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x117b982f inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2b5c0075 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa1aaad14 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xaf51c952 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdb634090 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb97d6d0 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1d68ee08 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03d86926 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08dc3fe6 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0cf0489c __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13753279 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x15a93ba7 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e8066d5 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e7a7622 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ecbd1d1 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54e3b53f ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a8d49d2 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x923ac2c8 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa522ac3f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xccbf2fdb ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcdcc2558 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda727289 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1f649ba ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4b51d2d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa747670a arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd0e90c03 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7d70621f nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9d54a75a nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x3d0d0d23 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2b4fd246 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4cb95ed2 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55962f00 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5fb510fc nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x675f8f10 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7baa9144 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8fc5c4dd nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc0fce885 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x37668117 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x39b365ca nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa356ed7f nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0cce631a nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0de12f58 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3a8605de tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x47839444 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa35297fc tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc1617492 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfdfd55d1 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x01b2a771 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0d4df0e5 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1d92a1e4 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x28c09e63 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2efaf5b1 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4b1f09d0 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fe3b512 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfdbbd739 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8733ca1c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd13c9783 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd7d34335 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0d1d1b1a ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x313e5008 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x376275fb ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x11685260 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb3b4d144 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8707ee05 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2757722c nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x51c1b144 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf02d9ba3 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xd9fb578d nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x14a3cecd nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4e5a6f8d nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6105c741 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x88199a04 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x898915f6 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdf100d5f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xea5bab43 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x479b49ec nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x15e6d311 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc26c14cb nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf60a1b4b nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x6730984b nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x68e20615 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x019141c2 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0200c9a8 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22be363c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x269630ec l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b441cde l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3cf36870 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44892d89 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4713e14e l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5085f3ca l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5341f712 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5cfdc4fe l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60844f2f l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6652e942 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73aec53b l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf943951 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2bec6d8 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc4537398 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xccdd045f l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd70267df l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdbe958ae l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc8385ab l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x9718a2a0 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfd301ee2 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0944b828 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0a2d86b1 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c158332 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2bbe2ad9 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d225310 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x336eec36 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ca385c4 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45f6c772 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x559451fc ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5af59a97 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x73e4fa8e ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79544d51 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ac56cb2 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f976bef ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x88081c17 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f436730 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2c2b564 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb933d93b wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4324459 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xffb03fc4 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x067fdb4c mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4129aad1 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd383fadb nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfdc6cc2c mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfe94ce24 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x02fb0524 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03aba4d8 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0462b1ab ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x093f0d88 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x151e49c3 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15ef0d4c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21b36e8f ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32a5e5c6 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33beb333 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x385dea84 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46ffc2ff ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x527a08f1 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x58356c1d ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5cd6f320 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d5bfecb ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb2c5fd74 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb76c0fbf ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7f836a7 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9d504f7 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x25e968ba ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4513a083 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe105b426 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf98ef1da unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0b07f80e nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8320360a nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x883b922a nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc39ecf61 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xde215068 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00312117 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06eaebe3 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c0fbc3e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c813784 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cdeb81d nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ee3336d nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f8d59aa nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f9130f6 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x133cf45d __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x136d853b nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1451156d nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1baef4c8 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ee7fb75 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f655a41 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20b13fef nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21ba3f6d nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22f0a524 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2631fbdb __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x297cc0fa nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ca27427 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x308396cb nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31e0f284 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f4ac224 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x471e2e18 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5181eb34 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51c8bcbb nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57407f11 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57d18a33 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x591fef98 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c4b61c1 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e01d66e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x653653c9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6aa25de3 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b400cf7 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d4a7d0a nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d5576a8 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7767603d nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b9fffe8 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cf2659c __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f7426ba nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f7b0392 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8291462f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82faa839 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b08c965 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fa934b4 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91200e63 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94abcc18 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x967f78eb nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99316086 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c9746ad nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1dc7212 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab2c2676 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xade18adb nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb162ebe8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb203b1fc nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb95b1775 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbea4ad7f nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf8347cb nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfc45d5c nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4ee6841 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8899e24 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb7f4bc0 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd06f373 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf606fa8 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0f89068 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1c5992e nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd965e6cb nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc23a09f nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddea7791 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0b84a03 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3cc16d6 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe528e252 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5e6ed01 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe620c7d8 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef84c9a9 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a90afb nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5baa1ea nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf75b8579 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8cff814 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbc2a630 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0182230e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x47cf7bb5 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x044a4d37 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x21f17d9b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c35b923 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4c9caf34 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x518f2931 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6a50c12a nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6dea4a19 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa20a2715 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb02366e4 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc9d2a818 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfa51949f nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xfe2a7a01 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x178cd03d nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2606fca8 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe60c8f29 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xeb9d23bb nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0509b641 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x095886a9 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1e74b886 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x48c75b71 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8f0d3592 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9c994947 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5052abf ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2d2b3bb5 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x06b5628d nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x068e1996 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1309f484 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7b28de73 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x13014c64 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x133e1a64 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e1919a6 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27bb142b flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x304cafa3 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3bcdd499 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x42a300fc nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5cbf6913 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x607835db flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x637ed926 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9946419 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb8c4ef23 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc785a50b nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcd866e8c nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe05ec9bf nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2970db3 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2db35c3 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x109a1152 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x291477ad nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2be538e4 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3dc96369 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41af8133 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b8663e9 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5b59a8b8 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x65c8cd6c nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ad6703f nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d0dc028 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92df049b nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc293c56b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc42b1d1d nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd079e5c5 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd53bbc82 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfe5e6303 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1335c4ae ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x218a4fca synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x49e23792 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4d9209ac nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c1dca40 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f98758c synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8f0ae7a8 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x929a8ebf synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9e852444 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb101f1ce ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe62b8c53 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x031c87fc nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x179b659a nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1834a600 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2210c9c4 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2541c1b7 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x286282ed nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e214f1c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30ade890 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31b20aff nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39e9e94b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c968128 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ddf2fa8 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4672341e nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bbd9d56 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ca0fe9b nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bed9ed5 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67d91c8b nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ee539df nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8602fb8d nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96c3e149 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2f045a1 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3f678b7 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc65bc48 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe1a2a21 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3b6beba __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3d71d7d nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc437c357 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc95d1b51 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdb269b0 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0032175 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd75ccff1 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe36bf362 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe77378f2 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef33af70 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef7f998e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd9e8b95 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0f4be50f nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3382a62e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x45783aeb nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4e235552 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9b8710a8 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd5ec909f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdd3966a4 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x789fc290 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7b8469fc nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbe1211f4 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xdf6cfcb3 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf66bb36b nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x23d1a227 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44fcd1b8 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcca99730 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcfe809ca nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa899f0b9 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xac5ba960 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xcbd8678e nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b265b96 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c026da7 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0cad965c xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a40bbe5 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33ee4ab3 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5998d237 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63ddfe27 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69f3f9df xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x764023dd xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77b313da xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bf3ce82 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a80a61b xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c034b2a xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd0bb98c xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4148794 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7872d5c xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd307ef25 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3a9afc7 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda1cfd07 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea3418c5 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xecedf044 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed241b3e xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6c12cff xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x5524acfd xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa90a7cbd xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x543387f4 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x558cac8f nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa28f6c79 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0b310eb9 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd17df0f5 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdcdfb248 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x935bd410 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xb7a5f329 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4c301b56 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x61a38815 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6d5a28e2 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x739f31c8 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x78498047 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbb59b3bf ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x14ad3817 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x50248340 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x97c8c865 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xdb271cdb psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x1aa53271 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x34abc695 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb4c4d7cf qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x05f45076 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x0b4250c5 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x15d8141d rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x24887c46 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x248a66f9 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x272a2688 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x28d6afab rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x2aeb61d9 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x33e71fc3 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x38c50af6 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4343127c rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5a06852b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6ceb3d2f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7f6413b3 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x972b76a0 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9c18baee rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb1364a45 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb7165f0d rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2cce09e rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc5968dba rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xd49eb82d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd8e96ac2 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xda8b490d rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xde663a4b rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xe0cc88fc rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe1cd1e40 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xef8e6243 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf28f26f8 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc4a763b6 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xfe2993a7 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1e2255a9 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4c60bcde sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9a8a8a2b sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa6aae16a sctp_for_each_transport +EXPORT_SYMBOL_GPL net/smc/smc 0x01569103 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x59a3cc46 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x726a3525 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x775e839f smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x78d5b9fe smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x82d2d1fa smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xa03c4c8b smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xabc7c504 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbe82c4e0 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xfa5462b4 smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2afeba13 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6415a9f6 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8114eae2 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc0553122 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02548921 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038e4378 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04567a85 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e93ca7 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0646b5b9 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06b72b77 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a6edc24 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa8ce47 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b799075 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c20be52 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca05841 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d81750a rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e516c1c sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117a6e0c xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d4c6a6 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12d92102 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14dc95f0 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1578fe35 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16af2500 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17344525 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177031a9 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x197121c0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a1344cb svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b3168a3 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bae35ca svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c69dc0b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5da053 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eadf53e rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f33849a xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd15c6e rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe25472 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e4723a xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21383766 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e5652a rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x224e4e2a xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x225c85fd rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22dd3ea9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2420627c rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x242dfd01 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24ada48b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x264c4f3e xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281556a5 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2857249e svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b610be xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0aef6a rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b64015b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b90c32f rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c00fbd6 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca3588d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9aad80 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33114ff5 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33134071 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3429e7be rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36fbb1fe cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37fdc04a svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3885f9c0 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38b356e6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x396df46d svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39fd83de xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a4da9c3 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aaa5626 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b3857e0 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d694c60 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e76931c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ecf6129 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e07f05 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45f2e5b1 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488b13e1 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49037ade svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf9f168 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3af96d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da7ce67 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f6f0b54 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e91ce7 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5398a5f9 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542d86a4 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5580dbc9 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5620cc9a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56e72db1 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57a5ac2f sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ad8926 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cb8c4cb rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5df0324f xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e3636a8 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec86b60 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec8e7e8 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f5dc65e rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61fd1661 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x620ea621 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6214fdc8 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x632295d4 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63698cb0 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x637a3993 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b4d34b svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64528b25 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c493ee xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x652d1ec7 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66608f04 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6754c98f rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dc31a0 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5ae66d xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b77513c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b88aef6 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c35ab46 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d437a09 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f682b39 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71e8c68a sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72693b4e svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73426825 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7471cea3 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782b57f2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b332944 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8972a3 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f6ae618 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813cef2d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845213ce xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f74f69 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86eb778b rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885dce61 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88da5b39 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89349ef6 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b9067a8 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8df2429a svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e433938 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6ccb8d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fcbef17 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90eafdfa xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92426c33 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9249a76a rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927af7c1 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c6cdd1 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964f64e3 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9762673f svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98149c69 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x981b001b svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9879fddd rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0fdef7 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b28278f svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b6d1728 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b710d83 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bcebdf1 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c939b83 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccab747 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e89d83a rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f75689a xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa019afea xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a2e609 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13108a8 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13446a8 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a8a452 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fa3da1 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa26b24d2 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa41aea72 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4afb4cc rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59b64dc rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa873958f xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa88f0d6d rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa2ec940 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabab0892 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacefe1c2 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf248d4b rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf557b46 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc7602d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1154e9c unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb156f0c6 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb298132d rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb46d3a19 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7310425 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbafd6941 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc11fc8e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbccf9bc0 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec277fd xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfd4d8ec rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1711c8d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc177ae71 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc274c99e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4a1c903 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc60ad9d0 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb0829c1 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb93973 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccbc9b4e xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd48ae24 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23f9a3c write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd241bd34 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd262a8c7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a66fbe rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35891cf svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd386a5d0 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd56b55d0 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6c1465c sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d80f5f rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd865d5be rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e40492 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f186a9 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9254278 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda47cea2 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda9e758b xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaf7f4c8 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbe2cbde xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde02306d rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf787e9f rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b19601 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe187bc53 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c66ef9 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe533906b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55e86cb sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5849e87 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88719a1 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe91b538d xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe927afbe svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c2396f svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2246b3 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb45e58f xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6bdc72 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede79434 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee45ceb4 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0f94750 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf146f9bc cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf163da4a svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3b079c2 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3fc29dc rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf532ef5b sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f43696 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85ecf8a xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b2a67d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcae7c2b xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd11d21b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe3f6317 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef8ecda rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc4ead1 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffdd5aa7 auth_domain_find +EXPORT_SYMBOL_GPL net/tls/tls 0x038ea6bd tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x43eef213 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xa336ae9a tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xe4b3d63e tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0020dbf5 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05b3f0cf virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b38ab52 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c9b4ccc virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e19fc15 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e5707fd virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1bbb81cd virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2422c069 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c29a69d virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30f24c48 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34ce7619 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42958c25 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d9f8fd9 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5805593d virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5dba9eb9 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f292c6b virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f317107 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62d28c3d virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6efde270 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8424a011 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d082c92 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x93fbc4c8 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99ef226c virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9de36d7a virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1a47452 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb62a8760 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9c2f8b0 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce3855e9 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd218fe5f virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2ecf4e1 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xece2a5d8 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf4bedf7c virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfbc50c86 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfdfa3a68 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0241e6fd vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1567b074 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1ca7dfe5 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21833b69 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2440e027 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x28a3df56 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x29fa4aff vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bbe1331 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x349eba51 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5fae87d2 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69616ab5 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x83122d61 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x960bd4f2 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x989d231f vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa64ed025 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa7df8096 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc0a1fbc2 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xccaf23f0 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcda6cd2b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf65970dc vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x04ff767c cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x442580ad cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c2f0b97 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x59bb9f6d cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7057730e cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84e7f171 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x89729fec cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91eb9c2d cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5d51a7e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc6796646 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb88824a cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd99265a cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0b69322 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf74f62ea cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf8cfa536 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf8deecbd cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x007b22ec ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x33bd5a67 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x847e2166 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfb464dc2 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x9d22b09e snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd 0x07b0df86 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x265b72a1 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x27c9bf41 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x2a8bee26 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x45311072 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x4bc7ee45 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x846af818 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x876342fa snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x9206d32c snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x920928e9 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x98a63638 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x9cb9e021 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xa46918ae snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xc06aa4d6 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xc4bd8231 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xcade71cf snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe431797d snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x3c276eaa snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x472bd7b8 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09f3e521 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x13e0021c snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1f37c978 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3bc77f37 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5594977a snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a1af988 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x78b43c0c snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7f5d08e2 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x87e1b778 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb5eeafbe snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbe39f066 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcd992c82 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09e9b7b8 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3ab7897f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4e57d397 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae0e385f snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb038a479 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb6285346 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb9f11e57 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd2c39349 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xed140f8d snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xed81771b snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2ea0f3c snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf69d0540 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x28da204a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x428fdf02 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0b4b6509 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1717f2aa amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x29a8708d amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2d32389d amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4450cb63 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5025dcdd amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5e482061 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8294e707 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9d1a823e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xae506a9f amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb911b87e amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdc4feb3a amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde30bb2f amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x030ed243 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x04a83987 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ce483d8 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x13bc924b snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x14007537 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d4901ac snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1e46729a snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24d3d0c0 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25d37baa snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x289c5d49 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2b07a251 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x300ab6c4 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x438bd907 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x51f88ea0 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x598dcf8b snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5d13c660 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5ea6b073 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5fbdba60 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71860b51 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9e8e7248 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f331ef7 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa2047278 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa4e5e3b5 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa11f474 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xab0d7df8 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbae63e26 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbc70a113 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbc801485 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbcf272bc snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbf9fa404 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcc788865 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd89cb118 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdd7da2a6 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf7d0fc6 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe671fa76 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6cc8341 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7675435 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf05274e3 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0db89d7d snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fdcb72e snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10aeca25 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11c5e4a1 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1601cc3f snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x166984fc snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21825a00 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25c61f00 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26dea57f snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c7a6fc9 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ce4fbc2 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2de0bb8c snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fd8365c snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3157b248 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3388071e snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38058cd1 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38374515 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39afc7be snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e7974cd snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43c1a8ed snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46be40cb snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x484fe0a1 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a1c98e7 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e17ea09 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ea9ccce snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5227b8e2 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a39145f snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bf326e5 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cc65a9d snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d2448ee snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e96ae13 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61191909 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61355963 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x644251d3 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64dc2310 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c182580 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c5d8589 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e7b00bf snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ec2ffc5 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72645170 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f5d5d8 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x735619d4 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c659061 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cd1aa57 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8003fd32 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8485f8c8 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b88b673 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bae0a51 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d0e0626 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e7a1407 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9169914e snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91825d96 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x945c100c snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x954ed99d snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98ba8347 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f134995 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1903336 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb11e804f snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb35f097a snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5d66d52 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6ce95c3 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd41df3f snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc52f0ec8 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc70f3a63 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8a2c9d1 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3a7f025 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4a49470 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5869bab snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd77199e9 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdee7bdd8 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1127488 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1351287 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3d7b3a4 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe40c3d20 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4a10b16 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77958f8 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec96a3d4 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecd91a72 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed604cf1 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee5c9562 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf00c7d2e snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0939d2a snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf54bd146 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe14c532 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffab0e3d snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4a70e324 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x92ea70d9 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb8912e73 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xf34d6ec1 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1bc45b23 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3e8d8edf snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x944703bd snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc64e0924 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xedbfca0a snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xef567d67 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04f735e6 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x051be525 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0589ae49 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0afb43d7 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c34fb6a snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1093c9f7 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15fb8990 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193a7e7c snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b6bf87e hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c13bfed query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f18720d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fb346b3 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2059281d snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23664f0b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d18b02 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27e6abd4 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27f2e67d snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x297d1422 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a748434 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bfe6342 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cb3971e snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e198b37 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31a25910 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3428d38b snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34cf5d5f snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3692944a snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37d1f0d5 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a084238 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ba21b05 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41a6a1c0 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4250a87b snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46afebbb snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x490934d0 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4945b9ed snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b2f3b64 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b891c0c snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d255052 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e1034a1 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ebb5bff snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5161714b snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519b86ca azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x543247fb __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5521f5ea azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56a6db7c snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5849c184 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a6b0579 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x621dcf47 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66648e71 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69403ef9 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d5d7cc snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72f77169 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74b3bec7 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7827f50c snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x788c371e snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bcf6f22 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d061425 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d3945c3 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805e4c37 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x859c4c58 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x859ee557 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8929162f azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c61fd5e snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c99e0cb snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e28c816 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f7a44c0 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ff63ff2 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94239fee snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99aab684 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a11a1f8 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c76ab7e snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9daec7c1 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa056e61c snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2a92093 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa479e8d0 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5e6e73a snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7c66ce2 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7f1e0ca snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaa5fa8b snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab6c47f9 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab8aa7ed snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabca3486 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad0df3c8 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf4746cd snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb540700b snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98184ac snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc000deb snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc37e0b0 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf81c137 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1a303fd snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3322aac snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4dd3205 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc75ac7b9 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8e200b9 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9313a80 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc999ad38 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca69486f snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd79cf8e snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdc9b35a snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd087f730 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd177e4bc snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2df3d0e snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd473c685 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4ceefd6 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6a882fa __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8b94161 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8ec9c51 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda99f839 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddb1816b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe934d69e azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe980db96 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9c1cf0a snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec38133b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee755664 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef5f1392 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefbd2d66 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf07c9735 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0e7124c snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ac1b38 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4132203 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5745f12 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf59f44a4 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf896d65f snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa3214b3 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc1a945 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04160cb1 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14d76365 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x228c31a9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x299fc014 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c9f6020 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31823e3a snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40c7cd72 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x531fb066 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54dadf84 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59b02acc snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60d56e42 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b7bd6dd snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x810fd5e9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x842f12a7 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8793e40d snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x921f236b snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa13a8fc9 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb65c9a67 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xebe2273e snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf686c3a5 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc4d6f39 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xaa3250a6 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xacb93923 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xd1d0beeb adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x13464d58 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x27fc215f adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x35860b15 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5b38e8e3 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x71b44778 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8a610836 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x945c359e adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc369b24b adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc4c9a7fc adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe42a6700 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x5b6a43a6 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x03a38895 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x083698a7 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0b069c44 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0f4214d4 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1c4fd79e arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1d1964d2 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1dc87d02 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20aa34c0 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x247d91bc arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2d4ce162 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2fca5078 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x328c94d1 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x42982aaa arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4dce8dda arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a8dc4d1 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x62156de9 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x67d289f7 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6b9875b3 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6ebbda5c arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x718f71c6 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x73795441 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x76180cb3 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7cd53303 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x873f1424 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x87ccd60d arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x87dd5b2f arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8da90f15 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x93a7dab1 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa13aeaac arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa28c96f4 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa550d8f5 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb34609b5 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbb07f948 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc89d66f arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbdb183af arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbed2c5fc arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc1630fe9 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc27887fa arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc35bf734 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xccf5877b arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd1c0fcf8 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd5073b83 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd76b821f arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf05a43c arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe1dea902 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe3b94a80 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe45df751 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe4ef211e arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe60c3e41 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf2201625 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0442df03 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0a4ccfb4 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x823ab89c cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd93448b9 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe8d0d142 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf63e07ec cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfab106ba cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x264efb9d cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x36e19f09 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe23b0533 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x15dcc6b8 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x32db7cfa da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x497960ce da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd4923477 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4c85eaff es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x6341778e es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x95a65f5a snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x9a1aafd3 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xef8df937 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xf96b672c max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x014f7d83 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3df1ffd8 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe034d7a4 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfd09095e soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xe3ab40cb nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xee8f682b nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x13418c95 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x8d6bd384 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x95559b98 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x14f120bd pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x4e3241ea pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x739d5788 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8316f59a pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x05da4c65 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3367e8c7 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x89ee75e7 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xee886ed7 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x023df208 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4bc00600 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x61667e72 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x62b364c1 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x4ea2e6e8 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x234370be rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1280a66e rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1a371ef1 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x44fe8f28 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4e8bd7ac rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcbc20823 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfd662102 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x12cc3478 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9f6a413d rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xcd8162b5 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x012faad0 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f027a68 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9a7e38c1 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbcbf605d rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xe1a6acba rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc0ddec67 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0407f101 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x066aac47 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1496b6f2 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4fc51c93 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8107290c rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xae93ffd9 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdd0394dd rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xde21ad9f rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe92d1574 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xecfa51ca rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xffa10df1 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x13c10083 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x278736f5 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3fbbe45f sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc37c6208 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf74f7a1a sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x2a980402 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x3cd70aba devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6e601341 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x91126752 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd02ce55f aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x36aa6c24 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xf513dab5 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4dceb3f4 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x55e25947 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5f2e5430 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5fe91813 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf39408bb wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x06a66799 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x166368e8 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1de79966 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x25654834 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a671391 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3110d861 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x34e1f56c wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4da01eee wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ffd78a7 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5aa7f190 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5b03a34b wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x713e1f41 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7392870a wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x73ff53a6 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d45628d wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x96428dba wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa69a3ab3 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8f7c406 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xafdf79f9 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe260ce6 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb12c7fb wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd4594104 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd870b95e wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe4fd72ff wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf3d8e68c wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0db2f240 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3a542c7e wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x48cedfc3 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9452294d wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x6564f0b4 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf1b21092 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x96b6e182 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x035743b6 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0641d261 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x06661d40 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x08ea7c9c asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x144276a8 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x15b5d561 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b219fb3 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x57089ae9 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x685889f3 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72fdcab7 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x81df98a3 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x93a6d84c asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x985e3fa5 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb8f039ce asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc1035887 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc8976f79 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdaf0c91c asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb796a81 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7b2927b asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfd18636f asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x9b834c71 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xe081cb9c sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1b6c866c intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x271d9439 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5c455917 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6ba21c93 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x79a74799 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0281834b snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a52fac0 snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x482cc324 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x53c0f816 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x55eef082 snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5add5149 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7c617496 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7f0cf4cf snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80e36ae3 snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x892b4c75 snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9c03bbfa snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa76526fa snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa95e3688 snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xaee91d12 snd_soc_acpi_intel_adl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb291f19b snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb5e4a471 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc787c511 snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xca6d6291 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe657baac snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe67811d5 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xef3f8fcc snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfe4c42d3 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x06df3187 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17a5be2c sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17b12537 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x26d7866e sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x30c25b35 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x75f04c0a sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7cd94294 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80d3d2de sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8cf43219 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x99d8ec24 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa28ab95e sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb82fd079 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc2ccd2b6 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe6ec48be sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0a0274e5 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x821094a0 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x8c968186 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9e401e1a sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa1b946d7 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xad9b173e sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc998b737 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x00b5a4ed skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0d29b506 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0ec5c2d5 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1194df60 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1281159b skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x17e77fad cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x25cdebe2 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2b071d90 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x329e4b2e skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x46743947 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x60c9991e skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x64b3206f bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6d308dd4 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7084e624 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x75e81392 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x786b568c skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x79b0643f skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x85793561 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x88459f9a bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9e58a742 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa1092a4b bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa831f7bf skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb5d157ab skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbce5378b skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc073ac0a cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc0c14803 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc2992f02 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc66e591f cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe08589ce skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe0b2d442 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe4bb788b skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xed7b5f0f skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf20d1c1e is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfc06f8e7 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfedd7b5c skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x508e2567 snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x6c5d2bcd snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0xe3a526be snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00ae277d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c2e98e snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x080b80f5 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09c85eb2 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09d3805a snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e55b13 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a2e3a13 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c047648 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d2342e9 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e2190a3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e9d5df6 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ed9adf2 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f644f34 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f81189c snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f8b9715 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14233e36 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x177833e8 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aad45ef dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b73a957 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c35e19e snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ebcd0b0 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x201b78e5 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20545baf snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21470c3f snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22042aa0 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224070b9 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x235aa183 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2375286a snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x242a631b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24f7ce50 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x264e65c1 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x283a6db0 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28da1f23 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x290eadf9 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c520d67 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d623e25 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4865f3 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x313081ff snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x313c5904 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x318c28ab snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x321eb1ff snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x336c0b3e snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f8f93b snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35259621 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x390cfa35 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ac1b86f snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d66ca38 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e42c5b8 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40c7b982 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44a53957 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47ec208c snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x488fc6c3 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49c1b7cb snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b811c55 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d2156a7 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eed52dc snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50d4eaf3 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5179cec9 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52e9f772 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53826da2 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55c0233a snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5706387e snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5742a524 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59fc046f snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a8f603c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cafddd8 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ccad264 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dfac9d6 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e95f06e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eed90b2 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ef50b13 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f1c86fc snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8f62d5 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f9f876d snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62015a64 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x621fc9f4 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6617a000 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67bf8693 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6927d2bc snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69dde8b8 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bcb2a4f snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c48fb52 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c5c6861 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dd9866f snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f12d6dd snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x727be71a snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72ff316c snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x739e0c79 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74ba81c8 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a45b4cd snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c8e0d4d snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c96c035 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e019258 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f4330db snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8059b15f snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80996e47 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80e66f2d snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x822dd89c snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x826a2bb8 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8276ca94 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8400cb5d snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85670d0d snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8719c380 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87560f6d snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x886f63a6 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x887e1942 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8984872e snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8988a54c snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a288f00 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bc18617 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c26c952 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c91329e devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ce470e5 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cf31dab snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fac34ab snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92707846 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x946c2e76 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a994f7 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f79d3e snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97fc564d snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98dc2150 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99b8d3eb snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99ca19bf snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99f1890d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eb5cf64 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f4e6e21 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0a1d572 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa190c10c snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3df9ead snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4b84a78 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa51ce54a snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa537f7ca snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5a8436a snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa61b3f98 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7749744 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7b7c16b devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa2c0ab7 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb028196b snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb03f2060 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb07e8cbf snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb13e176f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb30ec763 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3679728 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb453c2ad snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4e0587d snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb55e41dc dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5a3df8d snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb836c90c snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb97412ca snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbadbd2b8 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb4596d7 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd528ea8 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbebb38ac snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc172b836 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2a5a76f snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2c27ba7 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3695ac7 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc57db810 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc69f998d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcabf6324 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee4c01b snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0425ced snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd12a6566 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1edc5a3 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2649e03 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a67dc0 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5bcfbdb snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5cf153b snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd770769d snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8902ae4 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ddb097 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9370f7d snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd99cf3ac snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc9acd16 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd224590 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf716ff8 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfa0c5ed snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2cfe9c4 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe397dea9 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3ac36b6 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe498f594 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe60a5776 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe64b8fe2 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6b761d8 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8bf9e80 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe901755d snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea0fefcc snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea19293f snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea762389 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebf933a1 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec640567 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef62bcd5 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefbd32ca snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf29e5a48 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf39902fa snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4f8bfe4 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf53f7388 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5a4b0ad snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf84f09e0 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8c0d4ad snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaa37a9f snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbf6a078 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc182aee snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0532c142 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x068ffc14 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1a9eee76 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x84966a93 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x84f9bc45 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0a2d0692 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x135aa65a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x16028166 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1aec44a8 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d80f3b1 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x440ff18d line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4d5123f1 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5432bf46 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x66e21cf8 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x786f168f line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb555cea line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdb255c99 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdf08bc28 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1ad2b2c line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xea94ccb9 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfb15262c line6_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00081edf gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00531a17 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x00632b7d kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x0066ba8a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x007c778e sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00897a22 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x008de83f usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x0090553c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x00a12011 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x00ada310 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x00d2d9d3 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e69c00 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x00e8261b __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x00ed8d52 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x00f8939b bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x0116e601 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x014a59a0 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x015dd073 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x016314cc devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x01657176 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x01736461 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x017adbb1 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x01802ba4 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018b3d1e intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01c647ca debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x01dc1667 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x01de009c devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e95cae dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x01ecae42 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x020ee2cc clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x02192e10 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x02351ee7 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023d951d netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x02487d05 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x026acec3 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x0271ec06 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x0281cfc8 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x02824d58 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x02839a0b devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x029fc7a3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x02a50ad3 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x02abc906 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x02b153ea debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x02b18526 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x02da8c8c __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x02e22943 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x030c7cff xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x03112feb pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x032d9bb4 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0350dc34 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x035a794a irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x035deb71 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x03604ef1 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x037d5ddc crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x038c77da udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x038f89ac udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a6526b pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x03b796ba xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x03bd3702 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x03c0b85d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03ce4c36 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03edf72a wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x03ffffcc acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x0400c382 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0409ea05 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x0447e8e7 get_device +EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x04509e83 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x04659245 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04b4e1d3 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cccbc3 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x04d20fe4 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x04d9021e spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e74af0 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x04ec40a0 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x04f1a3c2 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x0518cf69 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x051c993f ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053183d4 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x05375a45 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0545c77e extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05614fd2 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x056863a2 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x05743462 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0592cc08 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x059d4618 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x05a7ba61 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x05d2c771 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x05de9a56 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x05e39321 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x05f084c7 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x05f0ed1c clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x05f1b7bd ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x05ffcd24 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x06054c0f pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x0605af1e serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x0613ee6f pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x06170778 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062bd765 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x06378cf0 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065c8517 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x06646c39 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x069844fe usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x069ce6c3 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x069d4cc8 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x06a814fb __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x06b287ab pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x06bb55fc housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x06c07b25 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x06c58f22 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06dcdbb1 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x06e82ce3 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x070282f2 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0702f637 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x071069f3 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x07205229 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072a5641 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x07346c67 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x0735ae13 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x074754bd kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074bcd81 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x075af4e6 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x0778f115 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x077dd526 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x077e527e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x07911656 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x07a4f869 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation +EXPORT_SYMBOL_GPL vmlinux 0x07bbe40f transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07cc55a3 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x07de45b5 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x07df1b0b tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x07e7c618 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x07f084c6 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x07fb5ae0 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081e0b18 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x081f3f40 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x083175ae edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x083a8954 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x086cd6bd set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0876fed1 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x0878654b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x087d517e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08976459 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x08c5a6db intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0900e62c dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x09084719 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x090a91be dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x090f56a9 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x0933864f xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x09432f7b ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x094c33a0 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x094d9004 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0954f6d7 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x0967f10d irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x09690020 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x0973b238 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x098dffdb phy_put +EXPORT_SYMBOL_GPL vmlinux 0x099c3057 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x09a6c32a __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x09aac982 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bdff59 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09fd465c crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a0c415f ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0a0ca6d9 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x0a0dba11 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x0a1bebbd __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0a21ff58 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x0a22c001 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x0a294d5a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x0a31059f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0a3e5803 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x0a4235e2 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0a4f10c4 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5db92b rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0a5f2caf debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x0a637449 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x0a6b1bc5 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0aa14a7b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x0aa23fa1 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x0ab3902c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0acf13a7 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x0acfa327 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0adc7a9f bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x0ae57f99 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af7f21e cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x0afa0f52 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0aff0590 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b11ab3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b35f1dc vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0b391c96 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x0b3cf76a gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b541c11 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x0b6de02a debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0b78c380 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x0b795930 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b7bf2c2 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0b9bb59c fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0bb1da72 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0bb29d58 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x0bbce58d mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bcccf11 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0be5a02f dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c63bb devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x0c184c0d devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0c1b232b iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0c1b6f72 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0c20c7bf skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x0c2175a5 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0c2a5335 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c404040 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x0c4a8a1e crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c9d565a adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0c9dcb6f skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x0ca17d26 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0ca47822 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x0cb0836a sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x0cbded9d sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0cbe1669 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ccb6a80 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x0cd1b468 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cf0e934 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d2116d3 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0d26892e fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x0d3d8ada ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d471c60 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x0d48ba48 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4c1b69 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5276ba blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d688962 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x0d800c20 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x0d8b026b __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x0d8b9dfb serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x0dc3a187 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0dc61c69 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x0dc6cbd2 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dccee91 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x0dd41ad0 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06586 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0de2be7e intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0ded382e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x0dfafcfb ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e087a8d devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e2aec30 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x0e41dd42 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x0e49fb53 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x0e52a752 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7ac740 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0e83f8ef synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x0e8a8cab dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x0e9a91a9 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x0e9ff26a fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec241a5 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x0ecb72f1 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0ed18ad4 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x0ed70d8d devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x0edd3ce6 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ede9e22 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x0edf695c irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0ef0b589 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0f04073c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f18d970 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0f1c0736 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x0f2d5e7e xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f3a922f blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x0f452c0f pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0f4b9412 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x0f5df5b3 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f89714f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f9b76c0 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0faf86ce fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc1e886 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd49f92 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0fd6bd27 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x0fd90ffe devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0fe92a52 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ff1318f nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x10125388 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102be306 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x102e20a1 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x1062ce9f __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x106bb1c0 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1074892b device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x10766f31 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x107aa4b9 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x1082275c __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108df52b genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x10945a45 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x10ad324f acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x10c7a0a1 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x10e60f49 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x10e65594 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fd0780 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x10fd59d1 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x10fe3335 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1104e35c ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x11059e15 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x110c77b7 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x111d0dd0 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x111dd29b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x11233951 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x112490e2 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x11282ea5 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x113140f7 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x1149579e serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x114a899f fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x11516ef3 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x115eddd1 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x115ff0c0 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1161f1d0 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x1175422a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1175d834 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1185530d metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x1191db93 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x119fc8c5 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x11a09a78 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11b613f6 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x11cee4ed serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x11e85a3f dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x11f3b59d tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x11f82713 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1204b7a7 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1205a73f tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x1218d1cb iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x121a502c rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12253e88 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1226ed17 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x12458bde __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x12482ae4 device_add +EXPORT_SYMBOL_GPL vmlinux 0x125b37e7 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127be613 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x1283028f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1286b466 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129da946 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x12a1d665 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x12a78199 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x12cc80d0 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x12cf4838 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x12d5f7b0 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1325ebd1 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13481a1c fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x1350a447 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13628597 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x136677cb usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1398f9e1 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x13a42baa ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x13a4a35c dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x13a5082e elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x13b2a9ce ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x13cb31bf devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x13cd715b pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f7d92e ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1414c0e9 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142cd3c6 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x142d2668 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x14372c7f regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x143e162b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x14444dc9 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x144a8c02 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x145324bc dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x1460bd47 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146dc897 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1487d8a8 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x14882e4b acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x14af8066 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x14c3519e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x14c774a0 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x14cbbf4c irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d8eeb5 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x14dd6369 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14ee5bd2 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x14f3f353 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150c260e register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x152cc188 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154cb36d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1556c6dc cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x158c17d3 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x15a7ec69 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x15bbd6e5 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1601d06c ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x1626e3d4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x16274986 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x1634ba3e sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x163f6888 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x163fcac8 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x1650700d devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165798fb skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x165aaafa cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x165f1a0f acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x16750759 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169cb77e regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x169f0e50 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x16be97b0 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x16cd1d30 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dee1c9 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x16e9e50c gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x16ea11a6 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16fd3157 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17169104 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1719f13e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x171a529a crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x172ae1fd ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x172ccd32 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x1734accc ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x173fee88 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178c12ea pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x17936beb __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x17a12a48 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17b36113 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x17d47c7c bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x17d82474 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x17d9feb1 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17f260d8 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x17f4e2cb led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18136e55 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x18191b89 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x18229dea __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x1822b9a5 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x1834ba0c sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x184cd91e security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x18511f5c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1858bdf6 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x185b3cde pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18645640 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x186dc170 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x187c7a58 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x18a5e000 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x18aaedc6 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x18b123f5 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18d3a7ea register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f9c08e __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190e0cc6 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x19211d72 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x19309882 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x19360bc6 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1940040a iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x19471543 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1961b45f usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1986edbe usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a55a2f xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f6131e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x1a03a4a0 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1a0417f9 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x1a06b33e spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1b0ced ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1a2a1cc6 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x1a43eccc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1a504fea regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a9030ab crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1abcf9e3 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x1ac1ef9d vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x1ac3705a dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad64708 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x1ae89bbc __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x1af17dea ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b0c2b26 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b13289a xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x1b1a497e devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x1b1a680d phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x1b242750 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1b34a6b8 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1bad3d0c devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc7df58 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x1bcd820c dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1bd31feb usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x1bd9619e blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x1bde28f8 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1bedf38d device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf93acb pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x1bfe78ce usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x1c07b220 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x1c13386d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x1c1f560e sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1c213156 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1c2c8edf perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x1c388643 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x1c45397e iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x1c464008 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6a3a96 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c7bd2dc spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c82bb73 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x1c837d1c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c83d1a2 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca162b4 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cac6e9a wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x1cb129ef fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x1cb47772 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cbe929d skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x1cc3d633 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x1cc5b4ba iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x1cca56f0 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x1cdd571d acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x1cf1fb3c ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d03bc61 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x1d1a1476 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2f8685 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x1d687db9 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1d70cd43 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d92e0ac dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1d9384b5 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1db4f470 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1dbb79da vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x1dc6f460 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e04597b device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0d23e9 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1e1fcd0b pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x1e362014 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x1e37f794 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1e3e3763 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5b5acb set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1e5c9a3d __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x1e704c7d dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x1e75f892 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e819edf generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x1e8c5955 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea2fd06 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x1eb8e73e vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebc50fe fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1eff0716 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f1e9d6e regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x1f229d71 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x1f23cb9e bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f44cc35 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1f454462 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5725d0 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x1f5b2eec sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f7cada4 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8996f0 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x1f8c40d6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faaa543 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fbea1d2 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x2009088a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x202690ae sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20308348 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20515bec mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x20523aa2 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2054dcb6 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x20648153 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x20682201 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x206f4224 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x2074f3f1 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2087daf8 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209f1d40 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x20a013ad uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x20a9c480 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x20c4f336 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x20ca5533 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x20d02665 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x20dc7408 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x20e6b1e4 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x20f7c323 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x2101690d acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x210c4e0c led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x21299ca3 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x2130eb08 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x213ab8df raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x213c5ee9 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x213dd6e9 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x2150fdec receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x2159096b sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x21625d59 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x216d61d8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21988d90 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b0ef02 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x21b63756 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21c1a1fa rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21c6a41f device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21d8c7bb badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x21e23963 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x21fed90f ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x221195d6 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222fac64 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2240b841 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2242fceb vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x225d3add device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x226761ca pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x22870aa7 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x22882dc3 __restore_fpregs_from_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x228b60f3 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x2294a175 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x22a25e6d sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22b09119 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x22b9d629 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x22bd6922 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x22cdb2ae usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e304de netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x22e5cca3 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f50196 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22ff817e genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x23091231 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x230a6cc0 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x2313d1ac dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x232568a0 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2349602a input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234d3bc0 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x2350b0d8 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x23730883 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x238515af mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23d947cd ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x23dcd38b fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x23fba9b5 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x240a7c02 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x2419e967 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x241a4789 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x241e6d66 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2424d4ac __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x24267ce6 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x24284bbb tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x242a6bfa nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x244413d2 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x244b3b3f __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2486f287 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b0f700 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x24b9633c gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x24c0b9db i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x24c6292f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x24cb277b crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x24d00e18 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24fe9e39 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x25053e71 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x250ddec0 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x250df12e percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x252ad513 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254038c9 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x25410547 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2555aa0d fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x255b74e4 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x256f27ab pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x2586e654 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x258a042e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x259006aa ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c32d02 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x25c3e2dc irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x25ca3851 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x25d6c6f1 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25fa2945 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x26058cda dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x260dac61 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x26130d71 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x263ace5e max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265740e2 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x265ab4cb component_add +EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266dcddf init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x267766fb spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26946065 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x269cafd2 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c534da iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x26c648ed nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26d9b879 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x26e1cbef pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f6be20 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x2703a8ca skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x27296cc0 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x272e4b20 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2731982d metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x27348f57 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27968904 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x27a051c4 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x27b2434d led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x27c23697 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x27c61ad4 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x27c9dc00 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x27e585a0 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f6725e pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2810b493 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282fadcd regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x283ece02 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287274d0 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x2876dbb6 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28868ba4 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x28a92df6 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28c98e60 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x28cae71a rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x28d05f64 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x28d7f519 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x28d8ef79 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e6d6ff device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2923628d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x292ac396 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x292b4af0 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x29379a96 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x29392cef umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x29946dc7 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2999b2c5 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x29a129c3 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x29aa2118 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x29ad00ab dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x29d86fdd vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f4c14b espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x2a0b4d3f pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x2a1526c4 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a4150a0 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x2a4c466e __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a587ec9 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a5e2607 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7cb003 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x2a7dcf79 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2a87ea7c sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x2a8b7abb blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x2a8ccb61 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2a9acaad devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x2aa8afe2 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2abe6cfd user_read +EXPORT_SYMBOL_GPL vmlinux 0x2ac6590b dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2ad52fa8 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b075504 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b1ee643 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x2b32a7ac fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6bd1f0 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b74a388 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b7fc385 hv_init_clocksource +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba883fe irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2bbcee0f gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2bfce072 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x2bffb6e4 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c11e781 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x2c124ab1 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x2c13f1c1 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c235d8a blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4ab1c3 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2c5ce638 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6d138d serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x2c6d9103 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x2c7227c6 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2c72b335 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x2c790b70 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x2c7c79ce srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7e2d9a thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x2c82b38b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c998886 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x2ca103cd tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2cc05935 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x2ccadb5c fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x2cdd326f nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ceabf88 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2cf1a254 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2cfd023c inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2d0355a7 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0ae629 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x2d0be1ba virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2d0da46f devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x2d124219 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2b19b5 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d85a8fa nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d89c541 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2de2c8b9 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x2de9d227 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2df02a55 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2df3354d tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x2df3c646 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2df6ad49 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x2dfe6943 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e17a13a gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2e1e2a5b __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2a2ce0 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e3971f8 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2e40cfd1 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2e463715 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2e483146 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2e55107a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x2e5f1d5b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2e64c73c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e79203c exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e7dedf0 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x2e8b5566 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x2e8d6a5e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2e9d92dd gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x2ea1bf81 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2eddd96c xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x2ee3b2cf watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2efca036 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x2f006c65 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2d1131 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x2f33137b clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x2f38da15 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x2f44020f usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6e64af shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2f8a127d kill_device +EXPORT_SYMBOL_GPL vmlinux 0x2f8c6f6f filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f9bed07 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2f9f949d of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x2f9fd04d devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x2fa12fc5 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2fa7441e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x2fb47959 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2fbb684c ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x2fc0d374 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd17f32 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x30116eb2 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3017e3ac trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x30348ffb events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x3045829c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x3055a93a sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x3058abc2 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x305a6a59 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x305c8d19 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x305f596e irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3077d698 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x308fabeb spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x30a9cd3e misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x30af88a4 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x30bfc220 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x30c46d42 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d038fc __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x30d3c65e securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x30d5fb6a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x30d619b8 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30f9e5af wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x31000543 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310e478b driver_find +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3115b99d usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313318e2 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x3157674e virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x315fe87f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x3168ce07 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x3171526d udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x317e0715 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3197dfae devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31af3e52 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x31be4ca7 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x31bf93f8 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ce67de __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31eb843a dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x31fba23e usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x31fc286f pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x31fdfbed pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3228df32 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x32547280 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x326372cb gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x326a48dc gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x326d81a4 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x32831735 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x3289d23a i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32ab2730 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x32abbe88 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3304a306 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x33100a11 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x33172b00 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x331c4595 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x3335269d fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x333fb617 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x334097b2 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x3342fc30 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3349763e rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x33596b57 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33696124 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x337505c3 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x338ef18a tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3391f947 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x33a65c28 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x33ae8f01 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x33bb5dfc wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x33c2960f ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x33ccf219 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x33ce387f tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x33ceb9d0 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x33d3d44e devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x33e27bd7 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x33ee6b48 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x33f4e3df device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x33fbde44 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x33ff18b8 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x342f9829 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x3432c5c6 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343953c4 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344a2d2f of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34678d7c unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3486950c regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x34913c59 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x34924dc8 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x34b2e136 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34c28173 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x34c9aaea crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x34d863ac sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x3507d266 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x350b5a56 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x350d4bff acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3529a8b2 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x354eaa11 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x3550c314 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x3558532a __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35667a4b acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x356e3767 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x35816689 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x358fe9c5 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3592b134 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x3594c7bd __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x359e7098 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35a9d5b2 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x35c702c7 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x35c959b8 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x35cc7c17 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35fc5de6 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3637863b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x3642d6df platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x364307fd vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x365ca5c5 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x3662c832 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x366ef589 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x3684ff39 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x36867747 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x368d54e9 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x3695122d kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x369ca448 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x369f2691 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ad5145 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bdbe50 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x36dd9d2c fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x36e416b8 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x36ebe626 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x36f2b063 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x37091a6f clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3726f029 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x373523ac bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x373857b4 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x374816ac tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x37495cda sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x3753dfd0 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x376d352c device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x3780456a virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37bb0020 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c22cc6 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x37e8a8da crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x37f1fff0 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x37fbffcb pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380c7cf7 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3834e5a5 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3842dffc msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x38430853 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x38553459 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x38579d6f devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3866fbe0 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x3869fe28 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38795eb5 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x388b6d8c dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3898ac2e __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a10f06 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38ab197b devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38b71424 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x38c108a5 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38cec49b iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x38cf1dd5 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x38d324db srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ff9f3b cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x390de152 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x391078f7 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x392363f9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x393865c4 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x39389e58 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x3938c7db scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x3942bbb1 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x395b5352 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3967de9c dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x397d3cd1 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x3993bfc3 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39a844c3 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b6f7b7 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x39bacc0b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x39bb532e usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x39c80b8b vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x39cb5e10 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39f7ff03 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3a177274 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3a17a272 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x3a1de3d0 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x3a1f76d6 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a2172b2 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a267252 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2950c8 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3a3b9fd6 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a3e56c3 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x3a40935f blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x3a4dcbed vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a5e62e1 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3a6d6753 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a8f82b9 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9f123f nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3aa36f11 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x3ab679a0 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x3ab76f26 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3adb5a45 node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x3ae7c598 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af79135 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x3aff5f97 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3b04d72d regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5c5346 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x3b633e56 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x3b6c666d pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3b713f02 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x3b83babb pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3b8a8ddf pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x3b8bc36d dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x3b8d8e24 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba5c649 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c089481 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c1440b4 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x3c1c0451 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1eda7a fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x3c234ba7 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x3c48c8e4 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x3c56a724 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c5ed662 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c7b3cef perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x3caa1b87 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x3cb83267 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x3cbf49ac regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3cbfec9a devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce44360 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cf4416d skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x3d14cdde pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x3d382035 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d440f26 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d519d91 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3d6c1115 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x3d741891 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x3d915d8f icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9d0947 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x3da92f0e tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daa9a03 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x3db243cd ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3db9b76e ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x3dc02717 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3ddec4fc dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x3de0c060 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x3de56c98 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3e3730f5 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e561e5a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x3e5f1dee alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x3e6419ba handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e729660 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x3e9221de subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x3ea1c9e3 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ebbec9f usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x3ebd91a1 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ed62504 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3edb1811 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3eeb24f1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef12a24 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x3ef1cb67 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x3ef794f4 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3efca586 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3efdd91e fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3f04242d bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x3f064162 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3f0b6179 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f24f85c spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x3f2f77e4 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3f311d5f device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3f46631a xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f538f10 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x3f561f7c fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3f65e8f0 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x3f668efb fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3f837551 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb2b25c devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3fb5fa8d page_endio +EXPORT_SYMBOL_GPL vmlinux 0x3fb93fff device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x3fc2adfe gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x3fc2ae4d iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fc32be8 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x3fc3f304 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fd30183 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x3fd97161 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x3fd97e21 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe6d9bb __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3fef7136 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3ff396da ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x3ff3fe09 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x3ff5016b iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40013d72 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x40058048 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4019b79b dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x401c6b44 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402df3d4 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x402f3ad3 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x40321a18 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x403252b8 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x40360976 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x4045b632 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x404d8844 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x404efc5e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x406294fe debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x4064e4d0 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4078c44b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407cbf0b regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x40811085 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x409912b6 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40a47f18 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x40a82a77 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x40ad91ec i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x40be2862 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x40cb53b0 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x40cc6d2b pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40eab17c relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fb2996 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4106a431 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x41122e4e device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x411ece7f usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412ae988 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4153583c ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x4155ade3 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41564e1e cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x415e0d82 user_update +EXPORT_SYMBOL_GPL vmlinux 0x416fdc23 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x417fa320 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419b8651 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c832a0 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x41cdafea power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x41e14e3e devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x41e8893d regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x42039191 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4210537d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x421cf590 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x42410529 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x424b3d7b spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x424b7bff of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x424fcd5a register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x425d3eb6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x425dbb6a syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42726fdd __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42751001 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x427a2373 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4292bd2d blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x42af9c8f gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x42b5a051 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x42b9c796 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x42d2de18 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x42d706bf devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x42de5b6b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x42e1bf6b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43015789 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x4303b078 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x430585a8 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x431a94c5 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x432b9957 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x434a29eb find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x434cdf10 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x43588fb4 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4370389d fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x437270e8 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43786cb7 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43851a52 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438ea366 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4392fa11 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c11a49 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x43c84458 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x43e30394 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x43ee13ea __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x43f25405 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fe03e5 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x4401e3ba sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44039eba ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x44131158 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x44242a72 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x4424c91c efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x4425ae07 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4451c361 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x446bdaa4 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4491cf0d bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x44acc391 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x44b1cce4 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x44b8d147 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ca5278 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d439e5 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e97a34 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x44fa853d debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45133523 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x45134a3c spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4546912f xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x454e74e8 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4581087d phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x45909762 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x459b28a8 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a56f4e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45af2dc0 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x45b05111 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x45ca29d9 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x45d0db7f iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45ee13c5 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x45fb2045 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4601b884 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x4618c4de int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x4619f774 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x461d9771 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x462f017f power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x4630797b dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x463dc0d6 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x463e7d4a icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x46403928 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468b2fe2 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4690fa0b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x46969d59 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x46a1fe3c power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46b7a1bf mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x46bad1da tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46cfc1d0 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x46e4386e clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x46e6af23 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46f801e0 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x46fc8406 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4706ce4d usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x47135f4f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472609c6 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x4728da5c irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x473c8f93 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4745bf9e thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x475e3cf2 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476abf2d regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x476d4433 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x478228b5 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4791c126 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x47932a21 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x479ba9fc bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x479d73fa skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a08cfd sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b658a3 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x47b79d32 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x47bc3fa3 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x47c73c40 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x47d05691 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d6d240 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f831d4 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x4812d241 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4832b899 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x484035a4 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x48438f4b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x48528919 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x48599710 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x485f8e85 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x486e557c pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x488b28ae regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a898ab seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x48bb7388 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x48bbe64f check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x48c40a13 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x48c5a007 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x4907989e da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x4942dc4b free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x49519f46 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499295da pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x4998a2d0 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x499c0f4a devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x49ad4ca4 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x49b00a87 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x49c14a61 ex_handler_fault +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f62e7e __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x4a0128c3 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x4a122f0e fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x4a12e9ef fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1ca662 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a3949dd scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x4a3fc7ba iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4e999c trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x4a53ce8d unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x4a5452b8 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x4a54a3b2 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4a69707e regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x4a7237bb __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x4a88cee3 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x4a8d68c5 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4aa285c3 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4aa84cd7 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x4ace0e1d xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x4af0f408 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x4af1571b devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x4affa08a irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x4b02f7a4 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x4b213414 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x4b226ce4 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b6340c6 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x4b6b3974 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b794312 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b7bfff9 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4b7de5c0 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4b84fa4e ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4b88e0dd regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4b893466 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bb10715 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcdc281 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd9f06e phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4bdc041e ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x4bf01b71 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x4bf2af91 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c01c44f is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x4c1a5876 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c2dcf12 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4c359de0 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c4cf22a md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c646445 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x4c68f533 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7d9a58 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c90e73f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x4c9f186f md_start +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb361c6 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4cd09d1f device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x4cde2568 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4ce22de3 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4ce75fb3 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x4ceea1c8 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x4cf31f5d __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d0be5eb rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4d1431cc posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d16ad16 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d22cf24 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4d311120 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d55dfb3 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x4d56bdea i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d910141 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc19927 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x4dc6f7d7 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x4dca500e led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x4dcbec2f crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2057f regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x4def9e56 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x4df09bf0 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4df54efe fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4dff9fd0 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x4e046be2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e0d063c bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x4e130d93 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e569522 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x4e58bcd9 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4e59271c md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x4e5da62e pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x4e5fc990 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x4e647b88 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x4e6632cd sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x4e706998 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x4e73c390 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x4e8dec16 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x4e90f65f pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4e99b890 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ea4ac3d pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ec434f9 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4edbd571 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efbdfdf sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0ea989 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x4f11e54f vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4f16bf90 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f404b13 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4f405074 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x4f536226 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x4f5c7da8 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x4f5ce501 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f6902c5 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6c6417 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7666a2 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x4f7e5401 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f8c3de0 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x4f8e2861 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x4f9e427c crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4fce9dd4 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x4fd89d20 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff37f79 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x50004b60 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x50056c7d netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5028f1a0 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x50331f4f edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x50361506 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x503b51a6 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x503cb793 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x503ebc1f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x50520cda xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x505a94d0 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x5062b568 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5079c6b6 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x507f5523 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x508878f2 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b5e948 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x50bae666 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x50c27660 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x50c3dda3 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x50ce733f iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e2f7e9 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x50e362f1 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f8fbd4 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fc4d8a usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x51235b23 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5147d5b2 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x515f4eb7 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x517baef0 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a51f55 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x51a5811f gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x51b2c417 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x51c3853b usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x51c4bb6c rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x51cb13b2 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51e4e454 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x51f3e2a0 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x5213a280 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x521a1fa5 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x521ee076 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x52247ff6 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522a5f18 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x523dbc8e fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5242d119 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x525b4861 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5270da1f devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x528e548d acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c48728 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x52cab9f7 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x52d2cb4c extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x52d3d6cf bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52eda2e4 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x52f076c1 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x52fa6fa2 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x530165a2 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x53036fde irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x531de2f7 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x5325d77b scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x532b05a1 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532d2177 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x532d6fac xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x534d4f1d regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5353d36c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x53581b7a cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53688e7a __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x536e0ec5 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x536ed171 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x53704e2c usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5374bc83 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x538b19ca inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53af65b8 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x53b885b5 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x53bc0bf7 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c08fd2 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x53d6cf99 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d868d5 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x53dc0061 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x53e1fed3 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x53eb78b7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x53ffb9d2 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x54021620 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5415bf8f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542bd290 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5458f250 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x545c2d3a acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x545d9cd1 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x545da9fc br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54676e3a rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x547f5a6d edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x54915af8 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x54919aec relay_close +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54afffb0 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x54b4dce1 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54cc8d64 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x54d2ffa5 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x54df7ed2 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x54e78e94 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x54e84aec thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x54fa3fde dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5513e20c regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55360132 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x5538baf0 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553b766a __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55446038 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5555ad57 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x5564f855 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x5567d67e dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5568bdca tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55702131 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5584f716 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x55941bb9 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x55acc350 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x55c2a855 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c97f01 virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0x55d408e8 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x55d5437c shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x55d993a6 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55ef18f2 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x55eff223 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x56017164 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560cd6f5 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x560e9210 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563902e9 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5652c187 of_css +EXPORT_SYMBOL_GPL vmlinux 0x56650758 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x566ae587 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x566fb181 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x566fc1c7 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x567e98fe gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x569191f0 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x56941430 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x569ab5cf input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x56ad6a87 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x56d38758 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x56d576c0 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x56db9567 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56dcc96d sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x56e6a9eb bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x570685c4 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x570f16d4 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x570fe0eb dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x572312d4 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x57276c27 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x5743e343 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57492bb4 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x57581ba3 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x57683c27 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x578284bf fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579467a6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ca28b1 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x57ce32bc pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e9b835 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x57eb007b devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x5814e0b6 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x581e0678 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5838534d iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x5852312e devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x585fcf1a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x586486e5 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587df67b ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x588350c8 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x58983950 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x58a29060 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x58a2a2fc ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x58b62c83 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x58ba64a4 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58d74705 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f0fd8e skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x58f878c3 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x5908f18e devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x590c1a4f tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x590e5ee8 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5914f7f9 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x593e3ee9 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x5947d6a7 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x595ef58b pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x595f99d3 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x59692591 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5983f5f8 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598908d9 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x59a4c43d blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b9e90d is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x59ba1a26 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59cc27a0 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x59cdf26a component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59fcc4f6 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5a0356aa ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a3efd1f sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5a407453 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x5a4547fc crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4a1225 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x5a57ac1f devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x5a67c765 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x5a692fb6 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x5a6abe7d __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5a6b9751 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a82448e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x5a837a78 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5a9aef71 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x5a9ec4c8 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x5aa3c799 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5abd5de9 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x5ac12175 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x5ad81a04 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5addf7b0 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x5adf52ff usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5ae54061 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x5af17cbf pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5af7b9f6 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5afbdec1 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x5b04a693 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b237b91 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x5b2da362 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b361130 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x5b44596c nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x5b48f9fa vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x5b53bc4f xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b606929 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b61f23a pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b75a9cb genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b8b5421 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5b955ce6 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x5b99a748 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x5bb2e89d pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x5bba756b spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc8102c fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5beb1793 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c1789dd __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x5c24bb61 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2cb415 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c346498 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5c34c4ba fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5c4976de __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c61d514 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x5c68de00 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x5c6b0c85 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x5c7af162 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5c825b47 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x5ca61328 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x5ca90e93 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb7b55c regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x5cbfd871 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf12ea9 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5cfdc0d3 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d2489b4 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d34baf0 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x5d458e7f spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x5d58225e wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5d6c0bfc dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x5d798f34 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x5d82424a edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d9c0261 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dae301a spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x5db20af6 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5de3f3b6 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5dec5c87 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e2cf3d0 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x5e37e480 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5e4f3e69 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e60c56b rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5e7208bf inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e8aa895 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x5ea919cf badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x5eae1fff fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5ec571ca pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ec82d20 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x5edf43e5 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x5ee07b46 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x5ee0bba1 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x5eeb75d7 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x5efc6dc0 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5f081f3a tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x5f0a74f3 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x5f0b8274 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x5f0c04a1 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x5f22d806 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f3069c7 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x5f34cecf device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x5f40e8fc dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f55a76c regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5f59df59 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x5f64c983 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5f691e5e usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5f69d4a0 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5f6cbcf3 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f8d0785 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5f92d74e switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x5f9e715c devres_find +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fc60c27 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5fc828fb __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x5fd21f10 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5fd81439 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x5fdad530 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe92816 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5fece760 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5fedaf71 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6018da97 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x603ce7a7 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60420fdc serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6054b74f tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x60610873 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x6061520f regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x60623f49 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6069af27 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x606f2a86 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x607bce3f device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607d548e bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x608ed238 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x6090400b mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a61841 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b7df5b iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x60c98c08 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x60cf11cc put_pid +EXPORT_SYMBOL_GPL vmlinux 0x60e01e05 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x60e58026 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x60ead07e __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60ed38d1 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x61117037 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61439404 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x61580973 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x61630906 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x6172d28c input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x6174087a pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6186eb09 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x6193c05a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619b0b41 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x619b14da fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x61a47049 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x61ad1ae9 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61be5ddf dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x61d64a41 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x61e792a7 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x61eb8529 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x621effd4 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x62284f23 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6236243d tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6242e243 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x624633fe ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62544ca9 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x62573463 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x628ca9ea serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x62af717a for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x62b27162 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62ca56a0 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x62d5607c vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x62d9aec2 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x62ddce62 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x62f237be ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x62f28544 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x62fbd660 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631ff72a acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x63256abe __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6327cc30 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x632ac3d8 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x6358f121 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x635f9e81 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x635fab45 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x635fd73a sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x636004ef synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x63650789 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x636ea71c ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x637beaed tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x638a634a ping_err +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63a9bf9b pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x63ba9835 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x63c0509a unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d1e7c2 perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0x63dfdd3c fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63ee28a0 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x640b3365 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x640bf078 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x640c5383 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x640cb308 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x640e4c26 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x641a53a4 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6422ce4c usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6426f006 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6428c59b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6430e3a9 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64524e6b mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x6454e232 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x645b3350 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x64668cc8 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x64771648 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64938e41 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64b4f3be __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64bc1c2e devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x64c99456 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ebe9fa xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x64eedc6e nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f20b51 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x64f2a997 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f62f89 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x64f83bba uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x65167200 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x65171ca4 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x654dbd29 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x655ba676 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x65687212 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x657c3a20 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x659621aa gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x65b44942 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x65c848b3 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d52278 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x65d9c302 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x65e5d62e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x660c5e8d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x6611c9fb devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66220893 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x6633a2ef l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664a89a9 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x664abfdc irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x664cce5c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666a4ae8 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x66779c0d acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x667ffee1 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6688aef0 device_create +EXPORT_SYMBOL_GPL vmlinux 0x66923225 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x669632de phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x669b0f9c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x66ae4727 mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bf4074 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67122fc3 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x671e5089 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67549d23 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x675e947a device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x6762c691 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6765c171 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x67681819 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x676c4377 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x676ef0c8 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x67740aa4 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x67761862 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x6781bd67 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x67886cf8 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x678aa4cc software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x678d30ad fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a68462 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x67b3de32 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x67c22476 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x67c4b2be devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67cab99c regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dc5308 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67f0ff59 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x67f70012 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x680b44cf fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x680f535a gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x68154010 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x68198ad5 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x68258d6c rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x682664ce dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6846eacd cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x685ca07b to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x688c769b genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x68906cdb ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689f09bb vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x68b295c4 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x68be0763 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x68cd370f led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x68ea14bd xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x68f00b3d xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x68f30cbf fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x68fbe0db pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6906a1aa inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69124870 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x69155dec thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x69183754 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x691b847a device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x694caf06 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6951b9b0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x6954f633 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x695b2bee relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x695b78df irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x69692e11 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x69777632 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698b9cf1 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x69955e6b serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x6997ccf0 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x69a37e15 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x69b09dc7 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x69bc0165 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x69c142dc bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x69c2a197 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e5c1f5 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e9947b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69f00f2d regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a09e441 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a3b53dc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a489fd2 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5d9485 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a696944 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x6a6fa5e6 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aacac21 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6aaf6277 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x6ab24a4e clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6adbd9e3 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6ae0bdc4 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x6af61725 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x6afa4ba5 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1e833d of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b3a7d71 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3d4293 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b48b636 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x6b59a403 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6b5d63b5 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x6b64b3d6 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6b666bde handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b6a13f5 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7bb75a rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8a1985 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x6b95c5ec crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baeb084 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdb2b01 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6c0e3b26 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x6c11ebb1 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x6c14b3c6 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f34b4 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c40f57a mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x6c467d99 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x6c486650 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x6c49509e tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4e62ff securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c77b031 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x6c94832d iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6c9808b7 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb6df60 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x6cbdfe57 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x6cd737c5 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x6d018ac3 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1def61 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x6d27db02 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d35f819 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x6d3a4e3a devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6d3cfd4d set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6d44cfb1 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x6d473118 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x6d5bba1e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x6d6a4c09 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d748973 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8663f2 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d9ead45 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x6da0a81f xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6da981ea __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbdf00f rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6df83f29 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6e00e5d1 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e11d7c9 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e3203ee sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x6e36386b pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e41a139 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e52e33a thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e5abf69 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e923ade crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6ea07c1f acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6eba54b0 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x6ebd8d10 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6edcc11c ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef1744e serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efd5eaf lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f0190a6 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6f0b71a1 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2c4919 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f4411a5 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6f788e5d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f90d14f ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f98d135 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6faf2042 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fb4ed09 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fb6c7fa skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x6fb7c676 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x6fb844d4 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6fba4f26 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6fc02def power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x6fc08d61 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x6fc49f4c dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x6fc8d74b dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd4826a serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6fe1e8d1 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70194e22 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x701fdac6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70252510 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x702f51d7 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x703c2664 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x7049553d __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7053ffbe dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x7064939d nf_route +EXPORT_SYMBOL_GPL vmlinux 0x70738506 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7092a408 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x7094a463 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x70a4529a wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x70aaa6e3 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x70b13cd1 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x70b7be49 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ce7b6b add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x70cee1e9 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d3073e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70e63aec __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x70f86e80 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x70f9f9d9 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x710a4de5 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x710a6b44 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711434d5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x711accc6 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x711eaf00 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7138eb51 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x713aff65 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x7148b7c3 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x715eb8d2 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x716af3e5 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7170fc3d tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x71770099 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x717ab57c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7195e130 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x719ba180 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719f1cbd rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x71a95b07 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71bbefbf fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x71c03b21 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71cd6d6e dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x71e0c670 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x71e393a5 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x71ea8cc2 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x71ef1a3e regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x72027be0 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x720f4f15 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x721063f3 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x722d6ba2 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7231ff31 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x725ba5a7 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72666afc usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x72782372 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727a0741 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72aea014 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x72b0e44b pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x72c1f58f devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x72ccff6c devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72ec8a3b user_describe +EXPORT_SYMBOL_GPL vmlinux 0x730a94f8 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x73124fd0 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7316e1c7 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73262b40 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7358c1df cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x737c512d get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73860237 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x738f9c6c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a85d7a tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x73b05868 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x73bf4026 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73dcc06f serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x73ea1644 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x740300c2 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x7405e968 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7407771d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7424ae1c regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7428462d hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x742b896d wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7443c8be debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7446e243 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7464de5a fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7471b5c8 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x74876d08 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x748f34c6 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7490e73a ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74ce83f2 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x74e3992c exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74e7c29e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x7501236e dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7506aea9 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x750726b7 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x750994a4 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x750b4458 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x750c6725 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7521dbc6 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7534f4dd led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x753a0e44 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x753f1108 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x754d67c7 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x755150a3 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x75562043 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x75792186 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x757e4989 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x758efabb blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75ad1a25 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x75add13e ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e808f2 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75eac4dc crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x75ecad76 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x76060d3f devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x7610a148 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x7618359f __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x761af402 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x767a84a7 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769a416b vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76adfe35 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x76cca03b pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76daa8ff of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist +EXPORT_SYMBOL_GPL vmlinux 0x76e47d32 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76e98965 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x76e9e747 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7719500e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772c5342 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x773a33a6 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x77427d79 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x774681db cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7760eebb ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x776a2dc5 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x776b45ba pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x776e6c6f irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a7072e regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x77a91a27 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x77aad69c __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d0086e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x77d1b00b devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x77d77124 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x77d9a99c platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x77da26d2 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77fdbcff sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x77ffb550 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x780f7a74 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x78165220 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x782c103a regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x784a2eb4 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788e7140 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78cdc61a pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x78cf60d0 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x78d35e02 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x78da239d devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e0aac7 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x78eb3dac xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x78f11afe devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78f39c24 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x78fb2780 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x790db8b4 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7923f3d7 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x79298f54 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x792fa12f irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x79338b51 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x79402ba3 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x794373a9 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796761b9 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7977d7a4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798d1c56 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799845c8 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x79b1909f dm_put +EXPORT_SYMBOL_GPL vmlinux 0x79b589d1 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x79b6ff84 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x79bc76d1 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c07d6d spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x79cf1043 fpu_kernel_xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x79cf5b90 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x79d69a56 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e48b5a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79f95800 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x79ff1522 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a66c0fe xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7a6b5264 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7a6cbe4e xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7a73324e i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a776590 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a7ec174 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8651f7 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7a91293b __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a95e434 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aab6bc8 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x7ab983e8 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7aca1f45 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad883f7 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7af48cdc fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b04ded8 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b251744 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7b321b24 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6022e2 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7b66d8f9 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7dae2e dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7b888ac9 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba26711 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bba3ad2 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x7bbb56a0 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7bc64fa4 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7be99ae9 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7c05e645 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7c0714b8 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7c0d4b57 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x7c0dc6e6 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x7c14c32c gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x7c1d1eed devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x7c1e34c9 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c297353 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c2c79cb gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3ea00b register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7c46bb50 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7c47ef6c devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c63e7af to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x7c66b0bc acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c6c2d2d pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7c73d5e1 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7c8f0385 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x7c96f6f5 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x7cb33892 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbebab1 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7cc99521 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdf93a2 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d02c1b3 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d187b4b extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d222143 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x7d2e1c8d set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x7d32538b usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d50efaa __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x7d532772 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d600bb6 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x7d60a0cf __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x7d687d12 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d68a703 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x7d7f3a2f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7d902b66 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7d9f4591 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x7da8d799 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x7db75ca6 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x7dbddebc anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x7dc4f15e tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7dcfc799 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x7dd61109 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7dec235c __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7dfa5503 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7e0ba2a9 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e1a9594 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7e1f5bb5 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7e22dc67 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5ea37f nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e671056 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7a760a platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e850b80 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7e85b64c ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8fc9ab __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb27964 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7eb2d243 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eb9f19d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ec68bef blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ed0658f of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7ede7b43 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x7edf42c9 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f10ca7c shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7f256efa iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x7f2c8aa0 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7f40f378 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7f523bd3 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7f620979 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f6fdeb3 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f866ac5 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f9624cc extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7f9f80a6 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fad0118 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb4de52 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7fbf10d3 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x7fc7100a crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7fd4ff42 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x7fdafa6b usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fee260d ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x801941d1 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x801cb5bb addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x801fa1fc crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x80274822 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x802b314d fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x803f6e46 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x804f8e4f gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8056ddf4 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x80657bb0 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x8075f9fb devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8078509c fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8088270f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80c02be6 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c710ff bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x80cda909 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f4d53c udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x80fbf260 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x81015e05 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81231602 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x813d5739 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fba09 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81d7574e debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x81dbe397 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x81e3389d security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x81ea05d0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x81f16bd5 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x820436ac gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x8206bee5 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820d80fe __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x8214abab irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822804da tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8228ab0b netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x82390fe4 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824f19d3 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x826b5211 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x826e9ea1 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x8274a566 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x8275f96b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x8299b733 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x82cb8999 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x82d31703 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f55f24 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x8302ee65 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x8305e64b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8306f74a __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x83221efe crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832a386b blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x832bace3 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x832e70f4 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8352eac2 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83589550 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x835dcb8d bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x8374a919 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x837f2764 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x83806d29 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x839ce5e4 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x83aad41e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x83cdc1d4 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x83dbe8d6 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8419fee7 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8430ff38 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x8435eb3d __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8448a96b dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x84545380 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845f6d22 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x84801deb gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x84a6c5b7 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x84b1f37a rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84b3b055 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x84b91466 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x84cd8e07 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x84dabc00 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f1f23c dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x84f62c53 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x85077511 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x850921d9 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8531e25a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x8541dbe6 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x8552e7c8 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8554f866 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x856cc0df gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x85793f5c dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x857951ca tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x85846af9 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8588f51b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x858f4d4a rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x85924e95 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x8593e752 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x85a3e69f xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85cdc05b transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x85cefdea dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x85d4cac8 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85d8f18a fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x85dd0741 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x85e86b48 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x860909af class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x86099963 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86249c70 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x86293061 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8637cd8b iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x8642d114 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x86501ce1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x8679b143 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86913873 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x8693c010 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x86a1e676 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b30d8c handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d0e38c dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x86d7d3d0 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e941fb unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86fc67e6 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x86fde021 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x870f146d dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x870f6b21 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x8714aa1c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8748270b wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8758b0aa __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x875ce36e misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x8768e59f irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x87b6be6e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x87be36f4 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x87bf226e devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x87c03d43 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x87c485f4 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x87c6f09f xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x87f50ba6 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x87fb05d7 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x88038113 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x8810f9a2 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x881ff0a2 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x8827ead9 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x8829b5c6 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x882a0d6b disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x883fa9cb fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x8840b923 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x88507685 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x8852dc6c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885e36e2 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x8880b075 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x88841838 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x8899a72e mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aba762 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x88af66b7 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88c80a0c crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x890b5886 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891844bd device_register +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x89237d91 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x893680a0 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x893866d6 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x893a94a3 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895ea24a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x895fd281 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8968eae4 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x897b19f7 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x8988df88 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x898d426b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x89a58266 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f86829 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a7aee1f irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a876db4 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x8a8bcea1 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x8a8c82b4 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x8a8fd5ba __put_net +EXPORT_SYMBOL_GPL vmlinux 0x8a9e6561 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ab40571 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8acfaa45 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ad8d71d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x8ada9b99 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x8af3f7c1 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8b12d424 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x8b147d05 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b3df753 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b4bd857 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8b6379ed efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x8b68ed65 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8b855ef4 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8b88b9f2 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b911fe8 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b92bcbc icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8b9944be auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8b9f3201 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x8ba4274f gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x8bb9935c dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x8bed9f97 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x8bf09a06 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c0fbbd0 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x8c167e22 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x8c16e2ed scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x8c1d57f0 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c55dd98 led_put +EXPORT_SYMBOL_GPL vmlinux 0x8c6187fb perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x8c63a0ed eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7647fe regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8c8476dc dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8cf8a5 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x8c958d66 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8ca9b4a6 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8cac50b0 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x8cb015ba tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8cb16c56 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x8cb1a2ac serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x8cb533d1 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x8cbd2fe3 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x8ce8f1a1 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8ced3a4d sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8d06c426 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x8d0b410d zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x8d196975 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d4c4417 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8d4ced1a regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d533f55 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x8d7957e7 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d8fd29d usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8d962f0a pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db7963b irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8dcc3989 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de59eb3 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8df857fa get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x8e06aacc edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e47e7fe bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e5401dd crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8e605e0c amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8e648d2b spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e778a2b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x8e8a0c5e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e952d2c __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x8e9a7b95 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x8e9bb81c devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8ea0aa4d sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8ea5b148 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb618bb strp_init +EXPORT_SYMBOL_GPL vmlinux 0x8ed383d5 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x8edc6125 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x8edf4578 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x8edf701e devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef7fb3f led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ef9682c xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f021155 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f18efce anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f1ae335 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f3bdae9 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8f3ef401 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8f5d67b2 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f72a010 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f791471 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f9c00e6 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x8fa45935 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fccf15a acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x8fd850fe mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x8fe04405 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x8fe2b958 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x90228e6b devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x903758f4 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904d09a2 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9059b03a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x905aee6e xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906d9d63 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x908a300e max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x90a56f1c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x90a82d35 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b223e6 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90ce5bdb pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x90d2a433 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x90dd0769 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90f71e0d dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x91003a81 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bd0ae blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91188097 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x911b4072 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x9123f18b dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x913c94be __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x914ae592 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x916ee8ef ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x91830590 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a658a2 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x91ad59c7 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91be7d9d device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91ca84f7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ff899f ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x9204eddd ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x92280ff0 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9233629e __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924f3d30 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x92548b71 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x9263d11c powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x92717011 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x928e028f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x929055e6 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x92b03b60 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x92b152b9 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x92b47fef __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c4100e is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92da665d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x92daad05 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x92db2d88 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e21f49 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f2cb89 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x92f6e000 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x930391dc spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x93183c5d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93199c08 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x93294dad pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933e0091 component_del +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x934e26fc __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x935c9722 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x937744cb __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93a035d1 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x93c0bde7 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d7fbd3 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e14f35 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x93e309a1 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x9404bcb9 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x94096c0e to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x940a969b devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x940f6f77 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941a8bdc __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x94264fae ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944ad920 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x945540eb crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x9461565b clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9470f5e6 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x9472287f trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x9482fb95 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x948876ce led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x948de48e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x948ec6df ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x948f42ce iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x949666ce tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949d2b9c extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94bc7517 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x94bd4548 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x94c4226c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x94c8be71 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x94dfe248 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94e10586 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x94eacd52 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9506cf4a acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951b3155 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x951dd264 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x952555f9 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955f3440 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95910b3b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x9594ff60 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9595c854 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x9595e5aa __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x95990b89 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x959e725e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95bbba75 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95ce7032 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x95d49b56 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x95ea4800 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95fa3fda ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9605317e posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x961e5f20 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x962f1640 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x963b5d35 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x9644a42b __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x964ab740 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x965249cf watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9674feed ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x96798878 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9688374a pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9699bb16 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x969d3072 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x96b9ab66 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x96be4016 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x96ca1ac9 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x96d398e1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x96ec9827 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x96ed2206 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x9700a7a4 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x970e0c45 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x971ea096 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x972a1fc4 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x972c70d6 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x973dfc29 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x973fc4c8 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x974bdc58 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975edf1d query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x97608f86 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977c1a81 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x978431cf efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x9793737c trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x97b569ee thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x97bd9cfa xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x97d464a6 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x97d565f6 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e2b007 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x97f6161d tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98076828 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x980b9cfa pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9817442f pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x9821c315 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x9824efd4 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x983325c3 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983f7efc iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985ebda7 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x986a27d0 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9874e100 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9876ee00 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98864b1e wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x9886de82 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x988b0638 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b548ea dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f2ea7d virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x9902553a pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x9909723d ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x991e9b53 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x9929f005 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x992db481 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995f2da5 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99bde557 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x99bfaf48 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x99c3c1ba pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x99db61fe devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e5c587 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f2d39b serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1721bb ping_close +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a25b535 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x9a42b8a2 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a495303 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a784bc0 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x9a8a3818 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab3fa76 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9abfff20 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acc21c9 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9ae11cd5 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af2f1a3 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9af494a5 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b02189c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9b155336 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x9b22bb8d vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x9b30159c ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x9b468750 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b572baa blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x9b59ca0f vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x9b607999 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9b6674d7 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b7faba4 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9b81429f is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x9b828376 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8ab6bd __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b8d452f unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba9cc78 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bb14ff9 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x9bb8e310 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9bcaa508 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c01675d xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x9c0e4ad4 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9c15e164 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9c163582 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9c164d48 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x9c24b63c extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x9c2e2629 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x9c3b5e48 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x9c43752e vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x9c4c76bf ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c505f95 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9c6ae1a7 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x9c6cb981 mmput +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c890554 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x9c89b49d pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9c90a6f0 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ca60914 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cde96c4 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d03db43 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9d065116 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d130162 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d5ab6f8 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d7c03f2 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9d7dedcf __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb42b pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9d9155a9 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x9d9e74a6 put_device +EXPORT_SYMBOL_GPL vmlinux 0x9da923a1 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x9da97fc6 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x9dba321d pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9dce614c devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9dce857a blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x9dd8b3c7 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x9ddef060 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9df33d08 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9df7f9c7 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e025998 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9e11cc99 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e14fadf device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x9e1ca0ae spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x9e30258c __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x9e45ab09 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e5058ba lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x9e545f99 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9e5a57c9 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x9e5b6aec gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x9e71ea56 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x9e878ead pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9e96a1c8 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e984838 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9ea2d10b rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9ec3fc4f attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ed4ed2e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed8b700 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x9ee70623 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eeec751 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x9ef6a4f0 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x9f1ff6b4 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f3dd898 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x9f471b25 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f53a319 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x9f6a6d9c usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x9f740e0a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x9f8a89dc regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x9f8e955f __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x9f97d9dc sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x9f9a8018 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x9fa4b79f events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x9fa72c75 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x9fb19628 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x9fb9e6b8 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff5d19c usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa000d1a3 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xa00176ef mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa00624b5 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa018dc3f usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa020d851 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa0276056 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa02cd0bc pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xa042dd2c rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa050fb94 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa05f053f __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xa06c1c2e sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa070c8e9 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xa0751789 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08862ea nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access +EXPORT_SYMBOL_GPL vmlinux 0xa0ac1a32 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xa0bc695b __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa0bcd923 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0d1b08c sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa1074948 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xa10d6cf3 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xa10e7b69 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11616a4 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa12157d7 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa1245eea bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa12db579 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa12e3211 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xa151e3b9 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa1568af0 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15a629f __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa169787e vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa16d1efa key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa173a797 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa17f50e0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa191caed devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xa1a40db9 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa1b826dd _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa1be7bc9 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1d0a53b balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f71ab2 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa20102ba devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xa208e8da clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2116a99 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xa230db78 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xa232352d rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xa238379a usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa25b6588 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xa2623ba8 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xa2676452 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa2693b7e devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2860f84 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa289d067 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xa29cd134 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xa2acc2a0 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b4f17d iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2bc1426 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e50907 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa2f1c87b regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa30d0350 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xa30e104e genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa3148f8f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa324550b debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xa3345af9 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xa3389126 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa343bba7 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xa343fdc1 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa34c7019 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xa3500a6a irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa3550876 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3602a41 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa378cc0f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38b5da0 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xa39279a3 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa394807d dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3afd0b9 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3b52ec0 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xa3b8cf70 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c2dbe8 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xa3caa330 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xa3cf8242 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa3dbac1a pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa3e4275f xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f5767c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xa40027df blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xa4009b73 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa404ff10 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xa40c9f34 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4251a78 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xa4319851 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xa43a7fd4 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa441fd8c hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xa447517d usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa462f699 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa4665482 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xa472b23e clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa480d8d6 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49cb112 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4afe257 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c9207f serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4f27ce3 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xa4f85ff2 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xa516cb80 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa5224490 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa529c480 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa534c5fb platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa57601f0 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xa577d94b devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xa57841a7 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xa58f1a5d pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5b70335 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa5bb04f4 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5bf0801 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa5bf96b5 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa5c355f2 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa5cd165f msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa5d0af67 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d7db9e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa5e43488 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa5e992b1 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa5eab9e1 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f7a0da wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa60aa0e7 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa62a6aa4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa63a4f72 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xa65c0f0b cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa66b699f edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa68bdef9 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa69128b6 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xa69340e0 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a6a9d6 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eeafe4 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa6fdb91e pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7008fbb do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xa70685fb __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70a554a gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa70bc671 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa72299d7 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa730e167 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73d7db4 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa749d048 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xa74c4595 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xa7563456 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xa763eede adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xa7759e50 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa777f2e1 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa77e7ef8 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xa79244d3 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7be82a0 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7c454c1 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa7c8881d regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7ce360a sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa7cf260e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa7dd680b sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa7f4a3a5 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa83d91a3 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa844ed3b l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa85089fb xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa851a528 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa86a8173 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xa875e6df ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xa87b8911 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xa87f28c0 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa89da8b7 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xa8d251ac sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa8d4cbb9 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xa8d5ea1b skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa90eeab7 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa92119e2 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xa9298f5e ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xa92cf8df ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa92d9359 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94c1002 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xa952dc10 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xa9543d96 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa95504a9 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa96d61c8 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9790e2b usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa99031a8 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a6f5c9 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa9a75bf0 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xa9a8ec2c cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9b2ddbf __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa9b3d5fe led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xa9cbb600 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e531fa edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xa9e9e3b4 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2c6b25 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xaa323101 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xaa4744da devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xaa4c932a device_del +EXPORT_SYMBOL_GPL vmlinux 0xaa4f1a9a __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xaa4fe375 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xaa579743 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6008c8 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa6b8e62 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8abb8c decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xaa8ef3f0 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xaa8fbd65 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xaa9380b4 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xaaa680df __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaae95a8 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaab515d6 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xaac9c9a4 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaadbefc0 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaae37fe7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xaaebe644 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xaaec171b iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xab006b68 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xab07ee5f vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xab0d5887 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab1331f3 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab27817a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xab289e9e wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xab2de080 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xab403a13 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xab431d35 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xab48d8e7 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab70ac9d lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xab8b6690 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1bf component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xab9e0ce8 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xaba1b2e3 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xabb78286 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc70017 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xabdbc09b clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xabe20d08 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xabee0bf8 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac07aee2 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xac2545f7 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xac29396c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xac62db73 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xac8ac19a usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xac8bfb1f pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc50b49 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd065b6 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xacd91942 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xacdbc9d5 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xacedd28e bus_register +EXPORT_SYMBOL_GPL vmlinux 0xacf00795 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xacf03853 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xad0ec933 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad21d1f9 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xad38a744 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6bd009 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xad841984 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xad997e4b clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb86655 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xadd379b1 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xaddccf5b cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae101684 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae2d175d x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0xae3245d6 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae651a1b __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae836054 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xae972c7e udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xae9e673d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaec86167 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xaeecd5ef devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf0de80a __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaf0e044e devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xaf228a6d wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf243a61 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xaf3cadb1 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf546d90 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xaf5b68da proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xaf6c9548 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf91dd57 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xaf96c613 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xafa4b4ef proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xafa4c6ed fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xafa6c7cf __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xafb06abb devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xafda572f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe2825d rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xaff1ecee devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xaff7f118 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xaffb9f9e virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb02905fa pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02db726 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xb04075f0 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xb047dd57 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xb0480df2 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb05135bb cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xb066b3b9 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09f39ee xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0xb0afdb3b memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c269e4 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb0cfe836 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d1ffb2 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0f3382a dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0fcf75e sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11cc43b __SCT__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12d738f rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xb135a78b iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb14380f5 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xb14b9a7c scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xb15daeda pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb160b50a tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb168a56e fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb169a97b regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18c647a usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb190d8a8 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1cdec48 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xb1d056ab pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e4affd usb_string +EXPORT_SYMBOL_GPL vmlinux 0xb1efe115 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb20c8795 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb20df0a0 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb213e345 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22a97ab tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb247ed75 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xb257c5c9 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb25d50b2 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb268deb4 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2811dd0 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb297b7dd spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xb29c6c65 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xb2a0b082 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xb2b6cb72 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb2b8ef10 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb2bc417c of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2caafe7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xb2d0dfca pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ea831c crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3099122 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xb30ee4f2 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb31018ba bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb31c5ecd devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33c5639 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb3448517 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xb3555b72 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb360e5a1 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb36e28c1 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xb36ebc61 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb37b7c23 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb37ebb05 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb38466a4 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xb39f36e1 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb3a70418 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xb3baf3ce pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xb3d39cfd serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xb3d5cd19 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xb3e3a2b9 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xb3ea93d3 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb3f111e3 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xb3f765aa pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xb4026414 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb408fa55 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xb413fd21 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xb43633bb iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb447faad ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb448075b led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb44e3ce5 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xb45264b0 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xb452f3c9 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xb45bacb4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb473f96b dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xb4742911 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xb47735b1 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb492b78b ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xb49fe1da tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bc6ff0 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xb4c74b8f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb4d28266 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xb4dedefa regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4efdc10 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb4fb7c95 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50791cb platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb50abb7f __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb511bf45 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52e3268 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb54acd41 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xb5541059 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb55843a3 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xb5635bf2 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb5636436 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xb568e973 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xb57504d9 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xb57dc728 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xb581c257 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xb58a3a83 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb58aa576 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb58dcc02 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb591b249 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xb59ec40d devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5c81f13 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xb5ce7bd0 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xb5f1dacf pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb60b9a1d pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xb6222fd8 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb627f0f5 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xb62dfd34 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb637a966 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb642b121 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xb6446fa5 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb648d944 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6809061 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb69faf65 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xb6ba8e39 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xb6c24188 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6df99ad synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ea4c1d tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb6ed984f devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb6f13f12 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb72812a4 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb7479be3 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xb747ab48 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb74db298 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb756783a handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0xb75779ba blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active +EXPORT_SYMBOL_GPL vmlinux 0xb76c448e fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb7703129 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xb7811ccb regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb7837110 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7889f4f pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb788cd34 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xb79bfd2e l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xb7a02543 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a841c4 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb7ab696c regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xb7b647ca __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cda832 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xb7d1af25 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e14d20 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xb7e8e47d blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb7f26021 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xb7f53b55 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb815a096 split_page +EXPORT_SYMBOL_GPL vmlinux 0xb8224839 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xb8237df2 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb84137f0 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84847a0 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8528b8c __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb867dfb1 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb87dbde8 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb882b55d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88f1c0e __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb89f9c5f iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb8b03f1f __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b4fadc ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb8b78d54 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xb8b99dda __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb8cd1cf1 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d5a012 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8d5de20 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f69851 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xb8fc99a0 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xb902d06d pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9252b80 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xb929dc07 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb95cb8eb transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xb9639095 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xb9662ba3 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xb967c8dc trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb989afe9 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb98d7b36 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb99a34b6 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb99d0b2d ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb9a4db76 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb9a53098 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xb9ab7181 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d050cd get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb9d473e5 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9fe8a8d power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0777b6 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xba1eec6b devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xba1f5b36 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3a029b devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xba4ba5d9 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xba727ee0 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba8dff83 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xba9ea4dd pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xbaa05a72 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbaa0baca fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xbaa7e502 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabdab4c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbac51d2a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xbaca4c07 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xbacd57a6 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xbad5f85b devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xbadb7de4 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf309d6 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf7d3e4 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbafe4eb7 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb200f9c sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xbb2bb109 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xbb39ba38 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6edbd6 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7a1cde __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb972a99 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xbba977e3 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc2b367 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xbbcb39b1 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbbd6092b regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbbdf863e inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbea77a3 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbbebfdfd replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xbbf2f452 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbbff6a01 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc138e90 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xbc1467bf crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbc15d639 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xbc22c7c2 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xbc295189 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xbc2a2679 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xbc373e4e pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xbc3c6a15 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4dda44 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6112cb gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbc632ff2 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xbc672744 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6d0ab9 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xbc6edf69 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xbc75f0d7 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc7ac17b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xbc7d4973 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xbc97465a tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbc9feb62 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xbca2bded xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbb06c1 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdd69e4 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd06dcfa fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xbd1c8413 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xbd327525 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbd33f3e6 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xbd3c58ac devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4025e0 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd5ddd11 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbd65363c device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7fbe3b page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xbd85f5e7 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbd8a54b9 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbd8e145f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xbd8f912c badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xbd94106a bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xbd986174 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbda41f8c dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xbda42d13 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbda6bd89 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdb7dcec rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbdbb42b1 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbdc7bd16 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xbdf4315c iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbdf6a365 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbdff16ee edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xbe08a499 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xbe25891a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xbe36a494 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xbe4d4e26 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbe56cbd1 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe604b94 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6b750c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xbe6c860d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb7f9ff get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xbebeab74 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbef95cd4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xbefe03ea usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xbf031844 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf1a00f1 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xbf3666ab crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbf3a4cf5 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xbf41b4ba sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xbf4b6476 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xbf52880d bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf5a7f00 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xbf66c643 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xbf933a45 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xbfa6e95d crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbfb17bd6 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbc8822 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xbfdce00b dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfef355f synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xc002bf68 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xc008e29f __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xc00d2cd7 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xc014d479 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xc01a3454 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc021841b regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc02958f8 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc02bbd94 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc03c2a38 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc048fdb0 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc05f8a98 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xc0625654 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc08b1bd0 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09d1e39 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b6d1db da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0c33c63 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0efe6f1 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fbb826 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc0fe7313 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xc1030d2b dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc1095ff6 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11cb443 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xc1251680 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xc13d3c92 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xc163d70d of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17aa35d sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1821cc1 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc1849f5b pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc1bd6a9f __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc1c44617 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1f3c91a xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xc2018b29 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc2036ce2 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2048189 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xc2105377 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xc2118965 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc221332e inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xc22305d4 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc232b006 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc23bc890 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc25108e5 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xc257f8c5 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25f62a9 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xc25f7011 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26d7ce1 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc2758d45 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xc2833a7f serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xc286da3e tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc287e520 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc290f846 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2bcaab0 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c91129 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xc2d59872 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2f19185 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc2fc4780 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xc3012e17 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc324737b clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic +EXPORT_SYMBOL_GPL vmlinux 0xc3353efa tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc345b37d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xc3636dd3 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xc364877e anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xc366fabd devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc382f543 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xc3a516ad usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc3ab97b9 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e8b4bc irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f690b1 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xc3f88cb3 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc40136c5 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc4157693 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4307716 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc44047eb ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46503fa trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48332d9 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48beb0b simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a5a00e ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b7e7bf __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xc4c94e37 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4e236a8 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc52aaf81 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xc55c380d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc55f9664 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56ae0a3 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc5786a2c vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5805acc blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58dae4b devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ba4928 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xc5c451e4 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xc5dbee50 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc5f798fe ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc5fcbe12 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc60583c7 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc60d77fa trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xc615f6f1 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc618fa57 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc62bc0e1 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xc64b7cf1 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65b82ee sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc67c6c22 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc67fe58c skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc687784d blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69daea6 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6aa97f7 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xc6b10427 ex_handler_fprestore +EXPORT_SYMBOL_GPL vmlinux 0xc6dec39e tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e8deca rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6f616d9 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7145a18 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xc7172459 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xc718a23c of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc72280c3 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc723da17 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xc725b340 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc72eb418 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xc7472a7a sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc74777c3 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xc748084d crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xc748ba71 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xc74c65e7 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xc768c5a5 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc772d907 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xc77ce785 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xc783252e class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78bd3ab adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc78dda41 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc792c36f power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7be3a64 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c609a2 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xc7cfd580 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e98355 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc7eec210 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc7f71a1f l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fcf200 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc80462ef cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc80f7c39 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xc8108a83 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc821b60a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc8423d79 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85cad60 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc86dab12 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xc8700ba0 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87b4fbb tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc883728b __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0xc885d689 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xc88a5f63 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc892af12 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xc8967d64 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xc8a31b76 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8b5c2c0 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xc8b7aec8 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xc8ba3186 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xc8d31314 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xc8dc3753 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xc8dd25ab regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd99f tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xc8f41659 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xc904896e tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc91c4a21 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92387a2 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xc925c33f dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9356d33 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94572e4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc94cc3e1 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96ce379 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc984f576 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc98780ed usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc987e610 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc9a08243 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9abdb34 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xc9b5cb88 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9b721b0 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc9c28596 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d69c33 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xc9ead2ef rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb9965 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca040fb8 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xca0c811c dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xca277ad0 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xca2af18d perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4a6517 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xca4b5d87 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xca50e3b3 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xca51e172 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xca58ea56 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xca657e05 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xca755845 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81c92f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xca9756ac virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcaac7aa8 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xcaaf514b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xcab1dd27 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xcab8667c virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac785b8 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xcaf16765 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaff82c8 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xcb117d36 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb342b2a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xcb34a201 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xcb4261d5 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xcb47943a power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb7700d7 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xcb7b0b26 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcbacc418 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbc0646a mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcbc70509 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xcbceeb5e fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbfe9fad pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcc0f3eee edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcc11aa0a usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xcc2c458a regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc41c194 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xcc422b3d __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc43373e regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcc7091b2 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xcc80d7fe devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc94b822 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xccab2291 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xccaea00f fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xccb11433 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xccc258a0 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xccc605c7 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xcccf7d99 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xccf4c832 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf8300f apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xcd075f7c device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xcd0965f6 md_run +EXPORT_SYMBOL_GPL vmlinux 0xcd10cec6 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xcd11cfc3 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd281243 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcd286dc9 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xcd2d9142 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xcd2f6619 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xcd39ad76 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xcd3c3000 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd4a4bad do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcd50b07a __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xcd538020 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcd594d82 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xcd657b6c intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd82786b skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xcd8445c6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xcd89916c icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9377bc __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcd9a5610 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcd9aaa10 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda68746 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcdaf7238 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc27fb1 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd1c928 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xcdd7ef64 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xcdde49a9 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde402da __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xcdf49f92 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xcdfe1ac6 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce039dc3 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce163411 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xce1685b8 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xce20d469 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce3970a1 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xce45e611 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xce53a79f fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcebce1bb mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee36cdd __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xcefa54c7 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf130843 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcf18a3fc rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf42e8c0 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xcf487d9a regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xcf48d5b8 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xcf492353 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xcf519c99 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf62a9fb __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xcf6dd910 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xcf92375f spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xcfb61b1f dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xcfc23ab2 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfecd956 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xcffbff4f clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd02488ef mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd03f8251 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd051d489 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd0553d29 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd058cd52 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0787a77 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd079cac1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xd07cab47 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xd081cf1c css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xd085e30e gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xd09302a4 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xd095cf7a gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xd098bbef i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a73f77 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c9a00c inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd0cf8ab4 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0f1d096 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xd0f3f280 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xd0ff8335 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xd1025eb7 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd11b3d75 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xd1257eb2 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xd1366cb4 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14d182c extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xd14f6aa0 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xd156571f relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd16bbcda inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xd175f4e5 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xd1771d3f dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd178d982 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xd17b6341 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd19a39cf crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xd1a59a7b devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xd1aab199 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xd1ad8061 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xd1c9ddfe sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e8bd79 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd206eb58 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd20f6cee fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21ac0ff fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd228c9b9 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd231d915 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2349050 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xd2356cfc blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd254a819 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd266f756 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27a9c5c devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xd27d7bfc unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd293858c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xd29d3a7b devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b9e32e cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xd2d8b31e __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xd2e444a2 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd32579d1 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xd32e403f sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xd3301edf power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd34ebea4 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xd362a909 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xd3659749 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd375d236 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xd37e2d2b iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xd3836b42 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xd3841585 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd391fd9a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a56b87 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd3a7e74c da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3ad3feb dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd3b9930f blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xd3bccb44 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd3c76b27 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xd3c9771c irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd3cae6ec platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd3cbb6c0 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd408d7cc __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xd42424f6 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42878a9 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43501e9 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4504191 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xd45a7030 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46e74b3 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xd47182cc mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xd4777055 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xd48dec49 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd491ad95 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd49c3a7b wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bfc563 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd4c0ac42 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d18e8d irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xd4da2e37 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd51698b9 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xd52289fd platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xd5288359 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd534ef59 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53f46e1 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55d622d agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd5684c3f acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd56ea7aa class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5985f19 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a7df27 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5ae0017 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd5d1e0d3 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5d41403 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd5d6c1f5 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f6d42c dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xd610c91c task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xd624e994 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xd62c4f56 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd634e43b regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd63fbe70 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xd6495059 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65ad553 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd664afb5 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd677f2a7 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd68012e5 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd68ab58a iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xd6a64b87 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd6a78f65 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd6cb0a82 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xd6ecb30c icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd738f5c8 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77942fa ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd794e659 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xd79afc72 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7bc8825 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dad666 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xd7e33108 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd7e34e8e dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xd7f7295f pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xd808a9c9 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd828d6d7 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xd839bd3a simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd83ac98a inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd83d2943 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8576332 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd85e32db pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xd868c76c device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88f5fb3 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd8937bfe virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xd893e68f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd8b21a7c device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd8c9b229 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d62bac auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e6b7da nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd8ec0f3a __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd906d668 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd90d3352 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91a581d edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xd91b1311 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd93bc65e sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd93e7852 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xd956b87d of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd96083f6 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98c143e xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd998a3c7 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd9a182b0 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9b51fba blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9b5f776 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xd9baa931 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9c2c32d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9cb7c0b _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd9ce9b66 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xd9d4bcfc mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9d546b6 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9da1684 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9eb6dcf devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd9ec2752 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0a8ee8 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xda11e14b rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda1faf6a serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xda2b1e1e gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3ce3e2 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xda3d343f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xda40d554 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xda4881d7 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xda651d08 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda81799e bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda842f1f shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xda860418 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xda88cba9 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa690f2 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac16c74 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xdadb6ae5 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdb0480a8 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xdb26af24 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xdb44cfb9 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6cce16 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb6d215c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdb7dc255 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xdb80ca16 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb955096 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdbbcb47d __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbd4079d dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdc6428 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xdbe515c2 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0a5dc2 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc3fab04 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xdc4291b2 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc5f9dd7 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdc77b4b1 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc7f161a i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca2c3fe irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdcaa140a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdcb5b083 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xdcb900d5 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xdcb976b0 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xdcf4ac5c pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd10c2dc cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdd448e8e __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xdd4ecf61 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xdd505bc7 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd673c4b bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd6ec5db msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xdd716ed4 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xdd954dbf sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xdd9edf76 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdda35ba5 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xdda59327 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xddb54a04 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd10c7b tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xdde8bc74 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xddea11e1 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xddf821a1 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xddf9170a mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xddfa45f1 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde09ebee devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xde1b13c4 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xde1fb197 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xde216c75 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xde2407b3 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xde299cca raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xde33a2e2 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xde3ff3fa crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xde4a9b98 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xde4ba0d2 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xde4efd49 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xde4f8b73 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde625355 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xde62f59f __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xde6cecaa regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde75f063 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xde76a834 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xde804c32 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xde869512 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xde8ae4f9 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xde912a9f ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9ed2fa dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xdea5d1f4 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0xdeacda86 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xdeb7ece6 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xdeca2cf4 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xded49da8 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xded91841 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xdedba686 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdedeaf83 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdedf54fa i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1d8961 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4b3779 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xdf78678c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf8718ff blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfa0da90 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfa59250 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xdfadf983 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xdfc71edf crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xdfc8aee5 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd274ed pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xdfe42d3f devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe0117a7f pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xe01aeaae fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xe01c5e8f iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xe0273fd1 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe034ecbc hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xe0440554 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xe047680b dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe05350e0 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0658e32 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xe07983c7 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xe07b7011 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe084e6ac mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a43fde driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cc3bf7 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0e77288 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0ecda06 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1025389 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1113a48 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xe1199957 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe134006b attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xe142a368 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe155e41c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe1597979 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe16a8f15 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe170f4be usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1775e98 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1883b5e i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1a9a30a devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1adb0a5 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe1b0e523 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1cdae6d crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe1d03e30 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xe1d621e2 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe1e8a6ac pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xe1ff6bb2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xe206ca70 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xe2081079 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xe20cdef4 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe2135691 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe236a71f irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xe2395064 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xe242a8fc mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe249b74c devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe24bce20 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe253a104 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe2556825 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xe25cc2f9 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe26a984a pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xe27ae34d crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a2061d mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe2a7ee2c device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2f5b868 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xe2f90d8a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe3018b51 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe3043d76 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe31e8ea4 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xe32c3a41 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xe32d5316 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe33cb839 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0xe340166a lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xe343c1a8 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe354926b tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xe35b681a crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xe36b52ea __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe3901535 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xe390c095 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe392d0ad sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c55b3b aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3dfd620 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xe3dfdd49 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3ef0dd7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3f1e201 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe3f9a3ef usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe40ace43 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41bb95f iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xe4247e78 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42739da rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe4286a85 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe42fdad7 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43453e2 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xe44446c6 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xe448778a elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe478b6cc devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4893690 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49ed53b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b2b269 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xe4b3a186 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xe4b5e70e crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4bfa9c8 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4d82b8e ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe4d8e5ef __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xe4e040b8 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4e18754 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eb383b vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4ec54c3 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xe4f9705a pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe4fae855 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe50b54af extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xe55fb065 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a0ec12 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xe5a7dea0 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5e1cf9b of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe62098ea iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe63ea092 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe694a6e3 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe695c509 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe695ced0 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6a4940c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe6ac270c hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xe6b195b7 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe6ba625d gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6bc5678 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe6c8d19a dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xe6caaaa2 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xe6d27c35 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xe6df1c9f rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe6e10b18 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe704807a nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72f851c regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe73558ae ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75de6f5 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xe768046d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77da0ca crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xe77fe41b dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7875c46 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a229e1 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe7ae2664 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7de874b sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xe7e3da3d devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7e8e69b devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe808238c driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe811ccb3 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xe8139f76 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe813f59c vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe828335a usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe8361b78 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe83edb13 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe83fd844 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xe8409f05 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a941d usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86db3f1 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xe8832f36 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8a75dc9 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xe8a7feda led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xe8ba8ab7 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8df1b6c tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8e5806f bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xe8e76438 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe8f1c168 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xe8ff0725 xfeatures_mask_all +EXPORT_SYMBOL_GPL vmlinux 0xe906046a devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe90ce5a7 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe935aea8 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xe93d4af5 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9c7f45f follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d661ac modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe9dc1ea2 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xe9e74819 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe9f3d60a vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1590f5 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xea18b7b2 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xea2c8576 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea4f29b2 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xea61019c inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xea62c555 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xea9c1276 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xeab0c5e0 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xeabaec51 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xeac61d64 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaeacd29 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeb150009 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xeb36358c __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xeb36a80d led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xeb67a75c pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xeb772396 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb85cd65 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xeb8da24d alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xeb921d20 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xeb935cf5 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xeba0243d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xebc3c69f pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcdb062 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebdd1a0e wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xebe99452 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xebfaff66 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xebfd52b8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xec110fb8 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xec1f0e80 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xec252a1d nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xec3e40be rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec7e4cfc bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xec7f9bbd rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xec9f69ed skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xeca818f7 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xecb18c2b adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xecb63c0c tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xecb6d13b fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xeccfd8ce vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecda6aa3 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xecdb85a3 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xecf7e6d9 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xed020aca crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xed07f44b dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xed0e20d9 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xed136867 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xed232782 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xed375294 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed5bdbec bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xed69f992 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xed6a3101 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xed77a258 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed9814a4 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xeda023d2 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xedce03e5 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee089f99 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee2afea6 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xee320a6b devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee4e93e3 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee623e60 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xee6b023b shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee8e4929 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xee9425cf find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xee954fc5 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee9a17be __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xee9c5528 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xeeb46655 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xeec234ed iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xeecb648d regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xeecb66c5 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xeeccac32 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed66284 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee62917 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeeeb7c31 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeef6b09f spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xef067a86 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xef110a8d devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xef155261 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xef1a7dd6 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef23c358 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef3347e6 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef370776 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xef3d6df0 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4d294e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef64b592 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xef67bf4c smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6f36cd nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef7324ff fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef8bb9f1 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef957b8d vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0xef9ce5e4 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa403a1 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xefa9cd2c set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xefb133a9 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xefcc5c54 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefcf0080 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xefd34a02 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0xefd7e929 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xefdcd78a __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xefdf4d30 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefebd09c call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xeff6cced genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xeff96bef acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xf005c064 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf0072981 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xf0080acb aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xf00c28c4 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xf00f853f usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf01a7512 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf0232d57 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf03748ea virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf055d67d dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0641fd1 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06db7e5 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xf0853134 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xf08627d0 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xf08bec84 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf092494f devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0ae75c0 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xf0c0c107 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xf0ca4e17 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xf0cb311f sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0d8ff0e ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xf0f2f045 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf0f74bab set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0xf0f93a60 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf106816f phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf10c0c8e irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xf11a29de l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf11afcb1 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xf1242ecf kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xf1244edd pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xf135a43b fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf137b957 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf13b1540 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf13c711d device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf15a0c68 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xf17eecb3 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf18c4e1c metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf1bb69a1 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf1bdc046 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xf1c0ab8c regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf1c32dd8 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf1c80760 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1dbda9d xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0xf1f3eb7e ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf2025602 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf242bae4 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xf25acaf7 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xf25f6ab1 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf262ad50 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf2640f8e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf275d558 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27e38c1 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xf29380d8 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b41b46 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xf2b6d966 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xf2cc92d0 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf2d21e1b pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2fd1e13 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2fe7bd4 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3125f64 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3211df7 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf34a1b79 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf34a9d9b devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf35b5896 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xf366dc2e dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xf3742736 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf383a310 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf38674ff vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0xf38d7c9e request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xf39a80db sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xf39dd66c devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xf3a1e3af icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3ac3ca1 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xf3ac5a2a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b511b5 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3d09dfa phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf3efc7a9 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xf41a413b regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xf428f6ab __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xf42955dc inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf42df5d5 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4692085 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xf46ed544 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf477ea13 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xf478519f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b68071 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xf4cad5e5 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4dca37c validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4f0698c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xf4f5ea3f dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf50fa928 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf5143bbc ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf52d595b sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xf5369a13 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xf53b3c90 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf5479a3a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf54b0881 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5727b85 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xf5812ecc pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a3f1cd regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5aae09d __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xf5ae8ed5 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xf5d95ed6 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xf5e59103 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xf5ecb759 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f7f799 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xf5f90729 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xf5fc6214 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf6230e49 fpregs_mark_activate +EXPORT_SYMBOL_GPL vmlinux 0xf62b1963 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf64cd5e6 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf668203e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf668fff1 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xf66a9d23 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf687aafd vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xf68bdf2c blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf6947174 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xf6979143 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf69d80cc ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6bbe963 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d3540c rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xf6df0730 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f574b0 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xf6f7be4d nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xf6f9ceaf input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6fdc30e devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xf7091afc tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xf70bfd0d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf736d1e2 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf73edf9d usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf749ffb6 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf756e706 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf77e0279 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7849239 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7a0866d vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xf7a5fc09 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b92e8c ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c92df8 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf7cfd814 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7daa1df phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xf7dacc4b ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf7ebc561 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xf7f35048 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf7fd46b9 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xf81f2907 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83faccb crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf854ecf0 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf87580db thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf877781b devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf87efdaa fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf880dd66 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf89210d3 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xf8aa57f8 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf8aefaf8 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf8b1a6bf subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8bd15af regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf8c43376 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf8cfe4c2 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xf8d71834 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8e12a22 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f8ff88 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xf8fcc9ab rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf941aa66 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf94fe78d devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf985ad55 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf98e10f3 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf995163d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xf99d8de8 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9c4a0cf securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf9cda252 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xf9ced4c8 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xf9e3168b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf9f26753 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf9fe6727 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9fec18c attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xfa043381 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xfa080d84 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa228bf1 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xfa2d5ad0 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa358c2c tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xfa5dc2b9 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa8aa69a xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfad1a2a8 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfad44ebe device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae986f7 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfaf2bcfb klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xfaf50b66 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xfafd24a1 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xfb2c55a3 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xfb31b8bc xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb4aecc6 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xfb4e8f25 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xfb5961f4 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xfb5f80c5 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xfb6e760c vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb739362 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xfb7d470a ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbadb4de usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xfbb211da uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xfbb32dbd balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xfbb3611f devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xfbb66dd0 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbef132 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xfbcb4bcc clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xfbcc33b3 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xfbce18b6 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xfbd396bb virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xfbd40db0 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfbdbe7d8 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbff9b63 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1f36e1 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc23f50f adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc24473a xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc3f593c device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfc43af50 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xfc4484e7 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xfc56eaac acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xfc61101a skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfc81b1d0 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfc9409fa rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfc98ff6b class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfca874c4 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfcb4667a acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfcca5b83 device_move +EXPORT_SYMBOL_GPL vmlinux 0xfccb5e97 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfd1f64 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xfd3f50bd tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd405a9d sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfd5a7c9e iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdb33e9a input_class +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfde0b759 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe0bb9cb platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1e537a lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xfe23fd2a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xfe30ab39 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xfe319301 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe330da7 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xfe338d5b open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe519ddc blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe899b87 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe9360b2 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9b1b9e fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xfe9e0874 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xfeace5d4 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfed8c1ec acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xfee5b1d6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfee78c4e pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfefb80e2 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xff0122ad ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xff0346fd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff084d68 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff26d439 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xff28b09d dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff337dc1 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff49ff2e devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff4a50a2 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xff58f539 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xff666ebe rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xff70d28d xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff9163c3 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xff99c656 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xff9b09b8 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa0aeee skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xffa16a36 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffe0bce4 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xffe7160d ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xffeb2746 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xfffc74c5 platform_driver_unregister +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IDXD EXPORT_SYMBOL_GPL 0x0b735428 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x44c2f25f __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x5d07a9af dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x7bf7150a idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x938e3330 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xdd239a87 idxd_dmaengine_drv drivers/dma/idxd/idxd +IIO_HID EXPORT_SYMBOL 0x1f25e13f hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x22d1af79 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x29c1afbe hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x2a8c0fe5 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x32cc867e hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3503b61d hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3add7a2e hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x42e88e88 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x618e9abf hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x649675e8 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x80a0b19d hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe45cebe4 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x38d7e664 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x43df3b37 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x65773fc5 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x89c2f7e0 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x2d981d48 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xae722c1d ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0490b49d mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x0b8033df mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1455dff1 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x19110bec mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x24004155 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2899f819 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3daa1e76 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7cd5332b mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb9449f3d mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc0484bec mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd4b0340e mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb64e4a5 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xee12c5b2 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xef3c1968 mcb_alloc_dev drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x29547f71 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5ca3205a nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7f38a26e nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8b28f9fb nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb3966368 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x03750bbd pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x06cb19da pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0ffe89f2 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2578807f pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x45d971f3 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5be9870d pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6a73277a pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x81f1547f pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x917147d1 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x96b5bf27 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9aed1d67 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa8cba9f7 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb0342018 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb532a453 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd2fbdd47 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd83aaf07 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xef516a42 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf2fde401 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfd673cc6 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x7ac9ece8 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x037eeb02 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x898a47c9 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8e8405b3 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9acbb727 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xafafb1f2 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd36077c9 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdc08312a max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdf0dbf27 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x368df93e sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x8bb80868 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xf82c34e6 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x26c0e362 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x29fdbe83 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xfcc5eec2 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x32dc724a hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x50c3eb35 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x680d5727 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x01d9a1ae atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x12982c79 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x2bdf1230 atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3503e0b1 atom_irq_thread sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x43727196 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x54a4c36e atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x67796daa atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x8a4688b2 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x97b5f80b atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc8b9965e atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0381ddb3 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0bcb6365 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2be24b29 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x333561e7 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x366fcc68 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5dec06c4 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6e485803 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x76453d5d sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc1c736c4 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe067a052 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xeaa2c447 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf396a0bb sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfb53e2e6 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x3ee02721 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5cde1566 intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x8e7898a9 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xf7e8c95a intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x3cd02db4 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x48027786 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x498e0d05 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x82783ec6 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x49edfa7c sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x292d957d sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x33b3397e sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xa51f4c6c sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xb81186e1 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x04fb556f usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x149d10de usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x166cae78 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1c5e7bfb usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x295037a2 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2af04b16 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2d6ff68a usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x335944cc usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x338c42db usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x36996f62 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x78e40c95 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a423271 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b49dfae usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7ec257cd usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x82f144ae fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa6d5351b usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa7ce18ef usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaec1220d usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb6092673 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4649e34 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe153aa9f usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe4939148 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xebf9e614 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf14c9f87 usb_stor_suspend drivers/usb/storage/usb-storage diff --git a/debian.master/abi/amd64/lowlatency.compiler b/debian.master/abi/amd64/lowlatency.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/amd64/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/amd64/lowlatency.modules b/debian.master/abi/amd64/lowlatency.modules new file mode 100644 index 00000000000000..01bee1f4a357a7 --- /dev/null +++ b/debian.master/abi/amd64/lowlatency.modules @@ -0,0 +1,5998 @@ +104-quad-8 +3c509 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_dw +8250_exar +8250_lpss +8250_men_mcb +8250_mid +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +BusLogic +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +abituguru +abituguru3 +abp060mg +ac97_bus +acard-ahci +acecad +acenic +acer-wireless +acer-wmi +acerhdf +acp_audio_dma +acpi-als +acpi_configfs +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_tad +acpi_thermal_rel +acpiphp_ibm +acquirewdt +acrn +act8865-regulator +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv7511-v4l2 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +adv_swbutton +advansys +advantechwdt +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aegis128-aesni +aes_ti +aesni-intel +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +aha152x_cs +aha1740 +ahci +ahci_platform +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +airspy +ak7375 +ak881x +ak8975 +al3010 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-ci +altera-cvp +altera-freeze-bridge +altera-msgdma +altera-pr-ip-core +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +ambassador +amc6821 +amd +amd-pmc +amd-rng +amd-uncore +amd-xgbe +amd5536udc_pci +amd64_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amd_sfh +amdgpu +amdtee +amilo-rfkill +amlogic-gxl-crypto +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx78xx +analogix_dp +ansi_cprng +aoe +apanel +apds9300 +apds9802als +apds990x +apds9960 +apple-gmux +apple-mfi-fastcharge +apple_bl +appledisplay +applesmc +applespi +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3935 +as5011 +as73211 +asb100 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-laptop +asus-nb-wmi +asus-wireless +asus-wmi +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atlas_btns +atm +atmel +atmel-ecc +atmel-i2c +atmel-sha204a +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atomisp +atomisp-gc0310 +atomisp-gc2235 +atomisp-libmsrlisthelper +atomisp-lm3554 +atomisp-mt9m114 +atomisp-ov2680 +atomisp-ov2722 +atomisp-ov5693 +atomisp_gmin_platform +atp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axi-fan-control +axnet_cs +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +axp288_charger +axp288_fuel_gauge +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bareudp +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63xx_uart +bcm7xxx +bcm87xx +bcm_vk +bcma +bcma-hcd +bcmsysport +bd6107 +bd9571mwv +bd9571mwv-regulator +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b_generic +blake2s-x86_64 +blake2s_generic +block2mtd +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs +bonding +bpa-rs600 +bpa10x +bpck +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c2port-duramar2150 +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +catc +cavium_ptp +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccp +ccp-crypto +ccs +ccs-pll +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-pltfrm +cdns-usb-common +cdns3 +cdns3-pci-wrap +cdnsp-udc-pci +cec +cec-gpio +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-x86_64 +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone_icn8505 +chipreg +chnl_net +chromeos_laptop +chromeos_pstore +chromeos_tbmc +ci_hdrc +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cio-dac +cirrus +cirrusfb +ck804xrom +classmate-laptop +clip +clk-cdce706 +clk-cs2000-cp +clk-lmk04832 +clk-max9485 +clk-palmas +clk-pwm +clk-si5341 +clk-si5351 +clk-si544 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm36651 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobalt +cobra +coda +com20020 +com20020-pci +com20020_cs +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_isadma +comedi_parport +comedi_pci +comedi_pcmcia +comedi_test +comedi_usb +comm +compal-laptop +contec_pci_dio +cordic +core +coretemp +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpu5wdt +cpuid +cpuidle-haltpoll +cqhci +cr_bllcd +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +cros-ec-cec +cros-ec-sensorhub +cros_ec +cros_ec_accel_legacy +cros_ec_baro +cros_ec_chardev +cros_ec_debugfs +cros_ec_dev +cros_ec_i2c +cros_ec_ishtp +cros_ec_keyb +cros_ec_lid_angle +cros_ec_light_prox +cros_ec_lightbar +cros_ec_lpcs +cros_ec_mkbp_proximity +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_typec +cros_kbd_led_backlight +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +crvml +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +ct82c710 +curve25519-generic +curve25519-x86_64 +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062_wdt +da9063_onkey +da9063_wdt +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +ddbridge-dummy-fe +de2104x +de4x5 +decnet +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-descriptor +dell-wmi-led +dell-wmi-sysman +dell_rbu +denali +denali_pci +des3_ede-x86_64 +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +diskonchip +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dps310 +dps920ab +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dtl1_cs +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-edma +dw-edma-pcie +dw-i3c-master +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-pci +dwmac-generic +dwmac-intel +dwmac-loongson +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +e752x_edac +earth-pt1 +earth-pt3 +ebc-c384_wdt +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_bhf +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edac_mce_amd +edt-ft5x06 +ee1004 +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efct +efi-pstore +efi_test +efibc +efs +egalax_ts_serial +ehci-fsl +ehset +einj +ektf2127 +elan_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_pcmcia +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +firmware_attributes_class +fit2 +fit3 +fixed +fjes +fl512 +floppy +fm10k +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fschmd +fsia6b +fsl-mph-dr-of +fsl_linflexuart +fsl_lpuart +fsp-3y +ftdi-elan +ftdi_sio +ftl +ftrace-direct +ftrace-direct-modify +ftrace-direct-too +ftsteutates +fujitsu-laptop +fujitsu-tablet +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gdmtty +gdmulte +gen_probe +generic +generic-adc-battery +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-clmulni-intel +gigabyte-wmi +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gma500_gfx +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpd-pocket-fan +gpio +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-aaeon +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-beeper +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +gpio-lp3943 +gpio-lp873x +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpu-sched +gr_udc +grace +gre +greybus +grip +grip_mp +gru +gs1662 +gs_fpga +gs_usb +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hd3ss3220 +hd44780 +hd44780_common +hdaps +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +hecubafb +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfi1 +hfs +hfsplus +hgafb +hi311x +hi556 +hi6210-i2s +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-google-hammer +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hisi-spmi-controller +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horizon +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wmi +hp03 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +hsu_dma +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei-wmi +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_sock +hv_storvsc +hv_utils +hv_vmbus +hwmon-aaeon +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +hyperv-keyboard +hyperv_drm +hyperv_fb +i10nm_edac +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-cht-wc +i2c-cp2615 +i2c-cros-ec-tunnel +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-i801 +i2c-isch +i2c-ismt +i2c-kempld +i2c-matroxfb +i2c-mlxcpld +i2c-multi-instantiate +i2c-mux +i2c-mux-gpio +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-reg +i2c-nforce2 +i2c-nforce2-s4985 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-robotfuzz-osif +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i740fb +i7core_edac +i82092 +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ice +ichxrom +icp +icp10100 +icp_multi +icplus +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +idxd +idxd_bus +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igen6_edac +igorplugusb +iguanair +ii_pci20kc +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +ims-pcu +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx319 +imx355 +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int3400_thermal +int3401_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +int51x1 +intel-cstate +intel-hid +intel-ish-ipc +intel-ishtp +intel-ishtp-hid +intel-ishtp-loader +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-m10-bmc +intel-m10-bmc-hwmon +intel-qep +intel-rng +intel-rst +intel-smartconnect +intel-uncore-frequency +intel-vbtn +intel-wmi-sbl-fw-update +intel-wmi-thunderbolt +intel-xhci-usb-role-switch +intel-xway +intel_atomisp2_led +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_cht_int33fe +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_menlow +intel_mrfld_adc +intel_mrfld_pwrbtn +intel_oaktrail +intel_pch_thermal +intel_pmc_bxt +intel_pmc_mux +intel_pmt +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_rapl_common +intel_rapl_msr +intel_sar +intel_scu_ipcutil +intel_scu_pltdrv +intel_skl_int3472 +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +intel_soc_pmic_mrfld +intel_tcc_cooling +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intel_th +intel_th_acpi +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +intelfb +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ioatdma +iommu_v2 +ionic +iosm +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipu3-cio2 +ipu3-imgu +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +ipwireless +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +isst_if_common +isst_if_mbox_msr +isst_if_mbox_pci +isst_if_mmio +it87 +it8712f_wdt +it87_wdt +it913x +itd1000 +ite-cir +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcm +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +kheaders +kl5kusb105 +kmem +kmx61 +kobil_sct +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kvm +kvm-amd +kvm-intel +kvmgt +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +leds-88pm860x +leds-aaeon +leds-adp5520 +leds-apu +leds-as3645a +leds-bd2802 +leds-blinkm +leds-clevo-mail +leds-da903x +leds-da9052 +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp8788 +leds-lt3593 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxcpld +leds-mlxreg +leds-mt6323 +leds-nic78bx +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-rt8515 +leds-sgm3140 +leds-ss4200 +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-laptop +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lockd +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp8755 +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +mac_hid +macb +macb_pci +machxo2-spi +machzwd +macmodes +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mana +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell-88x2222 +marvell10g +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mce-inject +mceusb +mchp23k256 +mchp48l640 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-i2c +mdio-mscc-miim +mdio-mvusb +mdio-thunder +me4000 +me_daq +mediatek-ge +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_hdcp +mei_phy +mei_wdt +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meraki-mx100 +metro-usb +metronomefb +meye +mf6x4 +mfd-aaeon +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip_t1 +microread +microread_i2c +microread_mei +microtek +mii +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +moxa +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp8859 +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi-laptop +msi-wmi +msi001 +msi2500 +msp3400 +mspro_block +msr +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6397 +mt6397-regulator +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-keys +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxm-wmi +mxser +mxuport +myrb +myri10ge +myrs +n411 +n5pf +n_gsm +n_hdlc +nand +nandcore +nandsim +national +natsemi +nau7802 +navman +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +nettel +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_common +ni_labpc_cs +ni_labpc_isadma +ni_labpc_pci +ni_mio_cs +ni_pcidio +ni_pcimio +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nic7018_wdt +nicpf +nicstar +nicvf +nilfs2 +nitro_enclaves +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm750-pwm-fan +ns +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +null_blk +nuvoton-cir +nv_tco +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmem-rmem +nvmem_qcom-spmi-sdam +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nvram +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +of_mmc_spi +of_xilinx_wdt +ofb +omfs +omninet +on20 +on26 +onenand +opa_vnic +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9640 +ov9650 +ov9734 +overlay +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +padlock-aes +padlock-sha +palmas-pwrbutton +palmas-regulator +palmas_gpadc +panasonic-laptop +pandora_bl +panel +panel-raspberrypi-touchscreen +panel-widechips-ws2401 +paride +parkbd +parman +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcengines-apuv2 +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-hyperv +pci-hyperv-intf +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia +pcmcia_core +pcmcia_rsrc +pcmciamtd +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcs-lynx +pcs_xpcs +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_pcmcia +peak_usb +peaq-wmi +pegasus +pegasus_notetaker +penmount +pf +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-can-transceiver +phy-cpcap-usb +phy-exynos-usb2 +phy-generic +phy-gpio-vbus-usb +phy-intel-lgm-emmc +phy-isp1301 +phy-lgm-usb +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-alderlake +pinctrl-broxton +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-da9062 +pinctrl-denverton +pinctrl-elkhartlake +pinctrl-emmitsburg +pinctrl-geminilake +pinctrl-icelake +pinctrl-jasperlake +pinctrl-lakefield +pinctrl-lewisburg +pinctrl-lynxpoint +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-sunrisepoint +pinctrl-tigerlake +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +platform_profile +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pmt_class +pmt_crashlog +pmt_telemetry +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +processor_thermal_device +processor_thermal_device_pci +processor_thermal_device_pci_legacy +processor_thermal_mbox +processor_thermal_rapl +processor_thermal_rfim +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptdma +ptp_clockmatrix +ptp_idt82p33 +ptp_ines +ptp_kvm +ptp_ocp +ptp_vmw +pulse8-cec +pulsedlight-lidar-lite-v2 +punit_atom_debug +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-beeper +pwm-cros-ec +pwm-dwc +pwm-iqs620a +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qca8k +qcaux +qcom-emac +qcom-labibb-regulator +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom-wled +qcom_glink +qcom_glink_rpm +qcom_spmi-regulator +qcom_usb_vbus-regulator +qcserial +qed +qede +qedf +qedi +qedr +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quatech_daqp_cs +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +rapl +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +ray_cs +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +realtek-smi +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +repaper +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rocker +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-bq32k +rtc-bq4802 +rtc-cros-ec +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-isl12022 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rc5t583 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-sd3078 +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wilco-ec +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rx51_battery +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sample-trace-array +samsung-keypad +samsung-laptop +samsung-q10 +samsung-sxgbe +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbp_target +sbrmi +sbs +sbs-battery +sbs-charger +sbs-manager +sbshc +sbtsi_temp +sc1200wdt +sc16is7xx +sc92031 +sca3000 +sca3300 +scb2_flash +scd30_core +scd30_i2c +scd30_serial +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scr24x_cs +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sdhci +sdhci-acpi +sdhci-pci +sdhci-pltfm +sdhci-xenon-driver +sdhci_f_sdh30 +sdio_uart +sdricoh_cs +seco-cec +sensorhub +serial_cs +serial_ir +serio_raw +sermouse +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shark2 +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sil164 +silead +sim710 +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis-agp +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +skx_edac +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +sl811_cs +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +slram +sm2_generic +sm3_generic +sm4-aesni-avx-x86_64 +sm4-aesni-avx2-x86_64 +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc91c92_cs +smc_diag +smipcie +smm665 +smsc +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-acp3x-i2s +snd-acp3x-pcm-dma +snd-acp3x-pdm-dma +snd-acp3x-rn +snd-acp5x-i2s +snd-acp5x-pcm-dma +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-ext-core +snd-hda-intel +snd-hdmi-lpe-audio +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel-sdw-acpi +snd-intel-sst-acpi +snd-intel-sst-core +snd-intel-sst-pci +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pci-acp3x +snd-pci-acp5x +snd-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-rn-pci-acp3x +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-skl_nau88l25_max98357a +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acp-rt5682-mach +snd-soc-acpi +snd-soc-acpi-intel-match +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-arizona +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-catpt +snd-soc-cml_rt1011_rt5682 +snd-soc-core +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-dmic +snd-soc-ehl-rt5660 +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdac-hda +snd-soc-hdac-hdmi +snd-soc-hdmi-codec +snd-soc-ics43432 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-intel-hda-dsp-common +snd-soc-intel-sof-maxim-common +snd-soc-kbl_da7219_max98357a +snd-soc-kbl_da7219_max98927 +snd-soc-kbl_rt5660 +snd-soc-kbl_rt5663_max98927 +snd-soc-kbl_rt5663_rt5514_max98927 +snd-soc-lpass-rx-macro +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6660 +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-nau8825 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt1011 +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1308 +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt286 +snd-soc-rt298 +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5651 +snd-soc-rt5659 +snd-soc-rt5660 +snd-soc-rt5663 +snd-soc-rt5670 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +snd-soc-rt5682-i2c +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-sdw-mockup +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-skl +snd-soc-skl-ssp-clk +snd-soc-skl_hda_dsp +snd-soc-skl_nau88l25_ssm4567 +snd-soc-skl_rt286 +snd-soc-sof-sdw +snd-soc-sof_cs42l42 +snd-soc-sof_da7219_max98373 +snd-soc-sof_rt5682 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sst-atom-hifi2-platform +snd-soc-sst-bdw-rt5650-mach +snd-soc-sst-bdw-rt5677-mach +snd-soc-sst-broadwell +snd-soc-sst-bxt-da7219_max98357a +snd-soc-sst-bxt-rt298 +snd-soc-sst-byt-cht-cx2072x +snd-soc-sst-byt-cht-da7213 +snd-soc-sst-byt-cht-es8316 +snd-soc-sst-bytcr-rt5640 +snd-soc-sst-bytcr-rt5651 +snd-soc-sst-bytcr-wm5102 +snd-soc-sst-cht-bsw-max98090_ti +snd-soc-sst-cht-bsw-nau8824 +snd-soc-sst-cht-bsw-rt5645 +snd-soc-sst-cht-bsw-rt5672 +snd-soc-sst-dsp +snd-soc-sst-glk-rt5682_max98357a +snd-soc-sst-haswell +snd-soc-sst-ipc +snd-soc-sst-sof-pcm512x +snd-soc-sst-sof-wm8804 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm-adsp +snd-soc-wm5102 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-acpi +snd-sof-acpi-intel-bdw +snd-sof-acpi-intel-byt +snd-sof-intel-atom +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-intel-ipc +snd-sof-pci +snd-sof-pci-intel-apl +snd-sof-pci-intel-cnl +snd-sof-pci-intel-icl +snd-sof-pci-intel-tgl +snd-sof-pci-intel-tng +snd-sof-xtensa-dsp +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-us122l +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-vxpocket +snd-ymfpci +snd_xen_front +snic +snps_udc_core +soc_button_array +softdog +softing +softing_cs +solo6x10 +solos-pci +sony-btf-mpx +sony-laptop +soundcore +soundwire-bus +soundwire-cadence +soundwire-generic-allocation +soundwire-intel +soundwire-qcom +sp2 +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-gpio +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmmac +stmmac-pci +stmmac-platform +stowaway +stp +stpddc60 +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +stx104 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3-wmi +surface3_button +surface3_power +surface3_spi +surface_acpi_notify +surface_aggregator +surface_aggregator_cdev +surface_aggregator_registry +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +surfacepro3_button +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_cs +synclink_gt +syscopyarea +sysfillrect +sysimgblt +system76_acpi +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tef6862 +tehuti +teranetics +test_blackhole_dev +test_bpf +test_div64 +test_power +tg3 +thermal-generic-adc +think-lmi +thinkpad_acpi +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +thunderbolt +thunderbolt-net +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads131e08 +ti-ads7950 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-tlc4541 +ti-tsc2046 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tlclk +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +topstar-laptop +toshiba_acpi +toshiba_bluetooth +toshiba_haps +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_nsc +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +uPD98402 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucd9000 +ucd9200 +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +usnic_verbs +uss720 +uv_mmtimer +uv_sysfs +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vboxguest +vboxsf +vboxvideo +vcan +vcnl3020 +vcnl4000 +vcnl4035 +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-camera +via-cputemp +via-rhine +via-rng +via-sdmmc +via-velocity +via686a +via_wdt +viafb +vicodec +video +video-i2c +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_mem +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visor +visorbus +visorhba +visorinput +visornic +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vmd +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmw_pvrdma +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vmxnet3 +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977f_wdt +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +wafer5823wdt +walkera0701 +wanxl +warrior +wbsd +wcd934x +wcn36xx +wd719x +wdat_wdt +wdt87xx_i2c +wdt_aaeon +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +wilco-charger +wilco_ec +wilco_ec_debugfs +wilco_ec_events +wilco_ec_telem +winbond-840 +winbond-cir +wire +wireguard +wireless-hotkey +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wl3501_cs +wlcore +wlcore_sdio +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wmi +wmi-bmof +wp512 +wwan_hwsim +x25 +x38_edac +x86_pkg_temp_thermal +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_compat +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xiaomi-wmi +xilinx-pr-decoupler +xilinx-spi +xilinx-xadc +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_sdfec +xillybus_class +xillybus_core +xillybus_pcie +xillyusb +xiphera-trng +xirc2ps_cs +xircom_cb +xlnx_vcu +xor +xp +xpad +xpc +xpnet +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yenta_socket +yurex +z3fold +zatm +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress +zunicode +zzstd diff --git a/debian.master/abi/amd64/lowlatency.retpoline b/debian.master/abi/amd64/lowlatency.retpoline new file mode 100644 index 00000000000000..945dc3fef780d0 --- /dev/null +++ b/debian.master/abi/amd64/lowlatency.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.master/abi/arm64/generic b/debian.master/abi/arm64/generic new file mode 100644 index 00000000000000..389ba8ca194565 --- /dev/null +++ b/debian.master/abi/arm64/generic @@ -0,0 +1,26281 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0be46cd1 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0f3ef0b4 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x21ab53da crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x197404a9 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25c6d9a7 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2b37cfe7 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e38addf devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3075e233 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31a5fefa devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x368a8208 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x646246d4 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6700ca78 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7b94c725 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7dc0da16 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x811c6d70 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x903e8059 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x922ccb26 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x95ad7bc2 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa712e0be cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xca5a0e42 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xca674866 to_cxl_nvdimm drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xef9f09d1 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x1c3e6e5b poly1305_init_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x6ddf27bc poly1305_update_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0xf39f5240 poly1305_final_arch +EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order +EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0x6402c8df sha512_block_data_order +EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon +EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x691615c5 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x7ce6ae93 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x81172b4c crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xabef77e9 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xb36e9497 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc4367fb8 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x2c054094 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x625e9aab crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x840be66b crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xe3e720ee sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x31558257 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x44e29957 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xd806aae5 crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0xe8465dea suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x813b0488 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x8c4bd624 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x335a0d66 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xccb48bc0 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0xfa508750 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x24584814 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3a0bf854 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8980e56b ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcedf00d0 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x49d3edf9 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6fce7321 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x768f22fd st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb4e4d7a7 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x197af5c8 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x200aa132 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe147be51 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x12d8d36c xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcf76d47a xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe76145ae xillybus_endpoint_remove +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4fcac155 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6e05cddf atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xd59a8f7d atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x04fb7306 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1bf3f84c caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xdc0dfb13 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xead521c2 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x265e876e gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x41809eaf split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x51572737 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5610267a caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xeda3a628 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x73c64d1c dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x95eb1168 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0xd1475f01 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01e09feb fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17e4b384 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x282ce911 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3661e452 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x42685c66 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x43c2bf34 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x550052eb fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c9f22ff fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6f041773 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x76d91614 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e050840 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x80d3c9b5 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x80f2aea4 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x87b60fe9 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x88e46316 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x891e5a73 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d33c4d7 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac9bb421 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1c91404 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4476aa8 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc40e0505 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7564e5b fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8736682 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd19b5b87 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1b0f934 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe1d710a4 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x09808f4b imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa7c1e45f imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xe6192cf9 imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x12a2074a dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x71c5b0bd __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ab1537 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02558825 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b44ccb drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b4e148 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03094d23 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0347c4a8 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x034bf4e3 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04280cfa drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c021f4 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075b73ec of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e8ae77 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08306c18 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2685d2 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b4303af drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b687c97 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6a966b drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d1d569e drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d29825e drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e23c49f drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e725c32 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1004c770 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12192e87 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x121c7493 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1237c800 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129c77b8 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1428ded5 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x149f1e9d drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d53e9f drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f354cf drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15771b5c drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x177fe131 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1877d440 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f76097 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19a4bab4 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a341718 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa8b5b7 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b59c805 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf62bec drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6a5d09 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df0dc32 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec38243 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fea8a06 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b4bb3e drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20ca74b2 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e94d75 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22620a78 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x232b0f23 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2395771e drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b67b82 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a52a73 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b242b5 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x255b690c drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f87657 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x261f696f drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26253021 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26411d2d drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27596916 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b8d440 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ca99bd drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28227ed6 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28433472 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7bda04 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b19e2ff drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c962fd5 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db19970 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea17f20 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6b3d37 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3045e938 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x309254e3 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a75160 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3235edf2 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cd7e34 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333833a7 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a8c9f7 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3767c6f1 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a0c969 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d8c26e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3822c39b drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3870703a drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x387f097a drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39272583 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3941059f drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d43994 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f15b1e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a341f41 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a83b13c drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d16c974 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecbe43c drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f667fce drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41222fd1 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4127ec81 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x424c28e4 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d6f0d4 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x435ce576 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43712cf9 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44118eee drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x457802d5 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4586622e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46b946ed drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4713d239 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4728158b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48dfda97 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4976ea9e drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ace71da drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b41c30f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd9d980 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf2489e of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c181ed6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8c272b drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df20b43 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e28eff6 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3fddb4 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5315ec drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f7c797d drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5084dc46 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x514e8c45 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52203dcf drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5322fe1b drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533a3233 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54d38f12 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5568f72b drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f53183 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x577e7dfe drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585ff1eb drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a41af3 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c96aa4 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cfe7cd drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59cd9a2d drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dcb9e3 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e6eec2 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a77575c drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac4ed0e drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c231ada __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c3d84a7 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c42f42e drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d01c2e0 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d205e06 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc1719d drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc6d9ce drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e56be39 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1b9cce drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x600de166 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60274cbe drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6063d7f5 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6145451a drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6165100a drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6177d290 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f15207 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622f6e00 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d67ff0 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6448cc81 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b2a554 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64fde0f7 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6530dc86 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6620d4d9 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d98fd8 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67045e15 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672c457c drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6817af37 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x683878a9 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69445adb drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a720f24 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c092e63 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6ade58 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8ec67f drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca2d76e drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f1c5818 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6023ca drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7c5b91 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7035abcc drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7281678f drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7341a35d drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74965da4 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74e5b689 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7535ff66 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7541a2fa drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75683d73 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x770af46a drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780b68dd drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ee65cb drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x791af492 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79533b42 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a34c8ce drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6ea675 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b7ad4f4 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be3076d drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0dd0f2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c6ceb8a drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc74ee3 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d16b07e drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e10ad54 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea886c6 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f1f8720 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5f5d33 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc68297 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802d2956 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x808823ef drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b2668e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x844e72f9 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84a7445e drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c0524f drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x850fe1b0 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d4a44f drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a87dd5 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886973ad drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8917e995 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8998fe40 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b42cd92 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c3eccc0 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x923eb9fa drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x926b1703 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a18754 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f00594 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96588bf8 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98600c9e drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98997da9 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98dbb34c drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b03a77f drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b605ef2 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6daf29 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb69b82 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c243fd6 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d2c9934 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3e312c drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dfec4ff drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eaeb73c drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f29eca9 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f90b2a8 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08afade drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18733c6 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2113e78 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2bf9fa6 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa48abe4a drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5476e32 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55c6ac0 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa60ea041 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa818d15f drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa84bedc3 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa877523d drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a26a36 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a66c75 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f6caec drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9666184 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1ec7af drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa67e0f5 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa8bbbd5 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaadcb4cc drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2915df drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabaec31a drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca8ea40 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacebc99c drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf610833 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0391fcc drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04f932a drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0eb9528 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1593112 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2673df5 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31176d2 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb46d61c2 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb49512a7 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ca8f14 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a5cb87 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5c3cb73 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb664ab44 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6fd81fc drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb711f890 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a2fb17 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8c6711f drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9021e1c drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93c87d8 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9771854 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cc7974 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe7a395f drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf64ad87 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6b2041 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc045c2d9 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0927cb0 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b4b98f drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc11fa76b drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc13b4094 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32deb8f drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36afa1b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3921db6 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc392abd2 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c9e92a drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42a8262 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc47ae8c9 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d2cc9f drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5d2f0ce drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63b7bf3 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64e1d78 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc995c34b drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb365de3 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb72a523 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc0e5226 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb197c3 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb8419d drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce976917 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf23c350 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf26542f drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf584b00 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf67b301 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01ae7e0 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd067bdb9 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd16500d0 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd195889d drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2df136e drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30f111f drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49edadf drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c193dc drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54e3665 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5727488 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6530de3 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6861353 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7704338 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7e9bdb3 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80c6cee drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd83f8337 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd847bb31 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a30eca drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9012af3 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9557073 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd960915b drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d090ec drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf9fc16 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb3a5cd __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd921574 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda93e07 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde31ab3e drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b789ec drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0eb8712 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1eed573 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30cf121 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34d208b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34f02cc drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a97fd2 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52fff7e drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe54feecd drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5674cdc drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe569428e drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe57d0f0c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f863bc drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65741a5 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d9ed88 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe784a4c2 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d0bce5 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f29886 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe89ec7cd drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f7bf41 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea525dc4 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea7b336c drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf61d80 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb7bb8a8 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcf72c8 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccb55c6 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee371931 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeea58ff drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9ffd87 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefaf6e45 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefbac8c9 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0acb813 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10dbaa9 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4906fd6 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5066bac drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5454ee4 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf63ce1fb drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf67f1dfb of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6bd4b17 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8bd9b7d drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf972d581 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c7527d drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4241d2 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb7c2728 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc20c17d drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb0afc2 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3ce8f7 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04bd1286 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x057db390 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05b1e30f drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05d5f193 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05ed9cc8 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06a82f9c drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06b14ffa drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07496159 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09383cf6 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c685ee1 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ceeb5c3 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d3322f6 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f749d9b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb805c8 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x112903a9 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1463a065 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14866c02 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x148816cf drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16bda25d drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x184a8f47 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x199e1dc7 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x199ee4ba drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19a7c05a drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b235e96 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b748688 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d2bbb6a drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d9ec284 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da0dcf0 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20155099 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20f27b12 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21983dfa drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x232e6735 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x247db3ac __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25a2e8ee drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x283b43e9 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29b336c7 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2af3342e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b32dabd drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9377cb drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bb92cc0 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30214d02 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x312ac489 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3185c36e drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x331956e5 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34a0430b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35166d2f drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3983ec80 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a519951 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a99370f drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b58abcf drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bca9916 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c621595 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ca259ff drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d3eb2a9 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f84addc drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ff5dbf0 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4042d344 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d41489 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427b8dcf drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x429fd928 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x437d7603 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x439bc755 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f4d072 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f506e9 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46222faf drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47d6154e drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48102a81 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4843a959 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49c216c5 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b7e6966 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c26b564 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d99dcfa drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f865e27 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50fe0846 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5136b917 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5231d579 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53e1fa78 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x541bbcdf drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54ced9fc drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f9ff8e drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58100e31 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58772a55 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x599d78b3 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5baf8d34 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c12f2c9 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c9413e8 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0906b1 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0aec0a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d3ff9dc drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d6a64d8 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5df6bbd5 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e57b17d drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f53dbca drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f603f0e __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fca5987 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6488572c drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ffce01 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65e11d79 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x664d23ba drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6675ee26 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66ea2348 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6753bf57 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x683380b2 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a4a64f2 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a5485c6 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1f30fd drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0af815 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d924d7d drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e939160 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x706bb923 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70b0ad38 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x721053df drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7661c929 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77338fd8 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x799fc25f drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79dbc4b8 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3dd41b drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fe0de8e drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x801040d6 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c27356 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x825f5a89 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e7a842 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88c3cc6e drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89782884 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c52a2fc drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e5dc2a4 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x919db56e drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93bb48d6 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e4bd31 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9469b5bc drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95de92f7 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x977c39f6 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97aa3609 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97f63aeb drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x980829dd drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x998c73ad __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac8c312 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c073c9f drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c32f7d4 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f1951a2 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9faf5045 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fb7078b drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c4a61e drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0e475d2 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1133fb1 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa289f964 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2e2ff4a drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2e75eb2 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3053dfd drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa41b70e9 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5723566 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa61ea421 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6adbcd2 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa84912d1 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8671abf __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa83a52d drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa8b0d8d drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab190128 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab5b4434 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb60649 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea487dd drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf7bc492 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafb97f42 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaffe91d7 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb070c1a5 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2049fe6 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb26325ae __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27ff651 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2f4b2e2 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3310be0 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4219a9a drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb697f79a drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69c951c drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6bb7384 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb703070a drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71e4f06 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9cccb9a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb5c8551 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcbc2ac3 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd118317 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdb87665 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe17d4d5 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe72946d drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbed65ad8 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc268c128 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b454e9 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4b4f9fc drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc500b477 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc50c37c3 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc65efcf6 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7170555 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79de6be drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcae30127 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbaf0ff3 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc86149d drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca3b5dc drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca818a5 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccc00761 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccda92a5 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd73f026 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce64ba8b drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec8afaa drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf1a4b39 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe81e0c drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd025b06a drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd075c68a __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a49554 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd16b06fd drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a51035 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a602b5 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4a6edd2 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd575bc01 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd686fa42 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd78b664c drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde858f9d drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdee928ef drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdef8938a drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf0129ef drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe069b0eb drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe133df75 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe230ac29 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe34fc66e drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3645995 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6a08ddf drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7c10d38 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b57917 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec4db8e9 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed00facc __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed197d38 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedd465f2 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeafee25 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee147dd drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04c3643 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf13170a1 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d4dc71 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf23e8c1d drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2710c78 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2904034 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2cc67d8 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3040f5c drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4810bdd drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d8afe8 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5eee732 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6538918 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf79ad69f drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7c71731 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d9ee17 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf95436aa __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf985da5e drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa8d3a42 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb86010c drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfba86cd8 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd798c60 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe29b51a drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe3053ef drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7c01dd drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x15eb8875 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1b3f8a82 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x24a77896 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x32810030 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x45707584 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4612453a mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4ef5a516 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x530a0020 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x62076d7f mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6230c031 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x687af546 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6ec949e8 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8536031a mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8ddf0491 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc6019919 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcbaee8dd mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda513076 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1e16b46e drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x31a29f9e drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x36ed1576 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xefb34941 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf5f93539 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x055aa617 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x25179629 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2c9d21ab drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x46ef0e98 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x62ac45ae drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ac802c6 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ff6ba42 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x716ba10f drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x81aa8c86 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x95162ee8 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9bf1ded7 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9ebbc84c drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xac6daf60 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc8e1d5fb drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf7ac8d66 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfbd138a2 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x2a4c8bc4 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c205fc6 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b264a02 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x20a8d7a6 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32785798 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x34586b05 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x380b4064 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43fb6d2b drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x45784757 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a6c22f7 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x53df1e77 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b0f98ec drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b4f93d8 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5c66e102 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x741152f4 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e8e0445 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82c8fc67 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x843c9001 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa195d47b drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8ffd8d4 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd6b8ab05 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe23445b1 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe526e482 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf0387d84 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf1ecaa46 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x0d4bdef0 sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x2ba4fafb sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3f035bdb sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xb4aee460 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xb9f2306a sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xcda6b53b sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x69ff18b0 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x84970ec7 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x84dfdb0d sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8639f88b sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8b519c2e sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xd4ba836a sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x083f0422 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x3ac18fdf sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01eb05df ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x042d915a ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x134c45b6 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x135149d1 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18992f8e ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ae62eb3 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2925ba80 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aae0f70 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bc46a3a ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7e723d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d90ea11 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45411fb1 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a6fbb82 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cecdff7 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f741a6e ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60b22892 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62abef14 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x633c9f0c ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x675d588c ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a6a1dfb ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74db97a4 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74eca4a0 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c441b2e ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80988605 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83237f84 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85ee69e4 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86c135ce ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d142b75 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8de8e19a ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e9e1fcf ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92726a38 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93c46fbe ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96851aae ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96de1807 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6036dac ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6d63bd5 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7788ae1 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaffeb936 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6ab8cf9 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb10b037 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2f311c5 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc70a9d60 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdbd992a ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd63f4999 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdafdc011 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe501944a ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeac16712 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedc349c9 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf000311e ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4db05e3 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ba89ab ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffb8a376 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x494a6584 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xba72fb06 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xd3e6e2f4 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x03e1a1d5 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x08b4521d __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0bfc4730 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x150d92e9 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2163f733 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x336647d3 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x407f6634 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x441e849e host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x49149644 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4b494922 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4ea6ee8d host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4f8efe1f host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x50a371f3 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57fa3a0c host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x598c4e33 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x81570b7f host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x89ca2498 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9eadb06e host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa4698670 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa4dc3e08 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa5417f87 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa5537ebb host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa694da7b host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xab1d29f6 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xafe696a6 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb0fd06f0 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb6e3e0a1 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb7154dea host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb89f28d5 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbee38326 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcab305c4 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd1ea621 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdaa702ab host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe1cef88a host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeaff1a55 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf1d6a61d host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb81712e host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfdacd145 host1x_channel_put +EXPORT_SYMBOL drivers/hid/hid 0x1efae408 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x5a5957fd vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf1d14578 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xd7391d77 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x712f4239 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x74c5a71f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x857d9ea0 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x91d77d42 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe30482aa i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xa0f18aef amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x0cc82c4c bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x172e4d25 bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf12f2218 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x9502038a kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb32e6e90 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe1a0f9a7 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x04870648 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0651bb15 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0f36f536 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x292cecde mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2b735491 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x353089d9 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x35e0ab46 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x615e57b0 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6fddbdf2 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x745c3e47 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x769c2069 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xae0ad759 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2cfed97 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd09902b3 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfab57a9f mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xff4946d4 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xdb9b8cbf st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe24646b2 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfef3f51b st_accel_common_remove +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x3b4fb908 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb4032788 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4da4d156 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb87716b5 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x5d5645c3 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x059bcdae scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x6406e382 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x9e667c6a scd30_suspend +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42ecb769 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x529cbdab ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x546e3c0e ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6b0200b4 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa4660512 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb5c0b3b8 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbd0d1926 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbe075ebd ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc2930689 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x19c09633 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb391ed3e ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xca4ee295 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf1c9155f ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf88fda67 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x21c94dda ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x658e95b4 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb9ecdd67 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x044840c7 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x10d34a2f st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x182750bd st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x189b8684 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3ca29e73 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4010953c st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4a3832c9 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4a50bbec st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x66e29028 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a8df791 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa09668f8 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xab32b159 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaeefbdfc st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb55c5037 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb7092cef st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbbbb512a st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc5d84f7 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe2fdb6f4 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xeddab86f st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x3971eb35 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x13892859 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4e9de4a5 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd93cbd40 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x65cbc8cb st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd2f0fa34 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe590eb84 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x047f04ad hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3c4793b8 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x9d6669c0 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf2691146 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x83e21d1d bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xbacba952 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xc078f7df st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xc2fb8920 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x01c7332b iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x056c9fc2 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x19299529 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x1f2f2d06 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x24ed9f1f iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x28df1584 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x46a0a9fc iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4c1c69fb iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x601e0848 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x65f8ca01 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x6e2752e2 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7f5a3358 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xa935f364 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xb171a33d iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xb4cdc2c2 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xbc9eb2f6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xde2d64bc iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe4b51887 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xe54a1ed0 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xefd7c29d iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xfbb25eee __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xfd8c51e2 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xff769434 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xe8b0c22f iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x126f7f14 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x519b0a4a iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9e46fa40 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe3cc88dc iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6eec9a1a iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xac1215df iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xacfac843 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc4a678aa iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6dc1b19c iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x764acfea iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x2dfa210d st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x418dab80 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x06d35671 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4f457291 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x7461586b bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa945e987 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2d7619a7 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2f6ec90a hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x34c1aa5a hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xcba8eba1 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x487537aa st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6ee016cb st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x74642025 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5c94063b bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x84f79c1c bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x987c79ce bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb612db59 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5a87233f ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc9dca89a ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa1e41422 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xddffa6f1 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xf02f778b st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08eada31 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15706d64 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b41c994 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d5c3f71 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4bcde2cd ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f63a409 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5330c210 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5ccff040 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64e4075f ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69db5df4 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75fecb7d ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x92450e6e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f687c72 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd40be56 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xebdf1f72 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x013cf439 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02d11375 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04ab4081 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0958cbee ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b1c0b50 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c188d3c ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f080fe6 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f1dbd32 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f98a89a rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10896f29 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x109d5118 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1285f871 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x146570a6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14eb5d7d rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1509631d rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16da15d2 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b5add4 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17bdf136 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1a9358 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bda3339 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d4bc06a ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x218ed415 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22c79810 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25933d67 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265e0652 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26760723 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27089b74 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27a1862d ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a95e407 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d2a9377 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x307e203b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30cd3f23 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34b6aff6 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35b72276 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x360352b9 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x364b98b7 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3660bfe7 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x371d179d ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37501ad8 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3afb3b37 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c5606d1 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc7e78b ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e4ed5e6 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eaa4490 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40125835 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41210047 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41edca24 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41f27bcf ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42bc27a9 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42be77a7 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44585d44 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44d96888 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47077c19 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ab7efa ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x503ed5e8 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x529fce73 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53afc42e rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53b7dd71 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54557589 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58f10b61 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x595643a6 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59e716b8 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b332bbb __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e1839a7 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6113d4ca ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61424e94 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x628e01ef rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x642f5809 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65a23a33 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6653badc ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68fa58c2 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x699082ac __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69bb0c77 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0eeb98 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c54c593 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cc93d51 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed3be34 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fd8d0b5 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7124a082 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719f8e14 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7647cac1 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770368e6 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7794038a ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78477138 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b8b11a0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba2f4cd ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d00ed76 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d8eceb0 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e8a553e rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80af857b rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81ef4b4b ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8359b8ee rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8556c3f6 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86917cda ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8819444d ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x885acd1d ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c34e24 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88e6fa04 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89356e5c rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89958743 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa8e119 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ac491b5 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bdc118a ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c1a3ed9 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8efd9633 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x918c89fe ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9285256c ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93fd1cac rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x961c8801 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9740c745 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97697b4d rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9798174e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97ee5e52 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b0f9c70 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cca2430 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d3588c4 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d7eec8a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db913ba ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e3055b7 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ec130fc ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa20cfa6b ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c2dd24 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa44479f0 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4a9a221 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa580cfa4 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6cf62fe ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa265710 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaa585ac ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac5464ee ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaced31ec rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad339f49 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1018ac2 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1916e1c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e57f07 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb31e5072 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb40557fd rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb867aa6c ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91c9994 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc5d7feb ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe812148 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf4cfd2b __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfd4a5c4 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc037fa6d ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1423920 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2cd48f0 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32f2dcf rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc47070ac ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7fdc622 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc90ae790 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc91be9f4 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc95773f6 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca640e91 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbd79706 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccdc912c rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce8b9cdc rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd152e3b6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2f35f7e rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4ddcb94 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63b1d89 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6f30303 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9907fa6 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde811272 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf7147cf ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe19d64fe ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe276e10b ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe36db19e rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe56ca9f3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5f2e24b rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7687563 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe923d318 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeafe47e6 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed107669 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed9192a5 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef5d8fe8 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0313161 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf340ca39 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a74716 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf43caac1 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf57eb1cc ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b0c869 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf676c782 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbb09693 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcf9372e __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe8fe430 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfedcb3cb ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff64d067 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x010bef98 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07219571 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32128d6c ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x345b3e59 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d23a3d7 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f1dace3 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b09fb42 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e1837a7 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7450a5aa ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81f1fc82 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82441fbf ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8719f9a3 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8961fdf3 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b318843 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dc2672a flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9171ffd2 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93687c1a ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa28cc6f2 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa2e1a6f4 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa46bcc25 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa5ce825a ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb8dc8c03 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc022edb5 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0c47695 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xddd89c97 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdeb99a02 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0707c4f flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec00aaaf uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeff68024 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3a391c0 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf85e265b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfef6b26a uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5b18e19a iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6a2a498e iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x820ec26f iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb0eac7d8 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb3eba4ed iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9092351 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeebb7b56 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf1dec4c6 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0553b14d rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x127be5b0 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x194d0b8b rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ecd6926 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d772d6c rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f558809 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b9839c6 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3be07ebe rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c486ef3 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c7d5a75 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f59ba49 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4139b0e1 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c49514b rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c7a891e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5446b714 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62763dd4 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6be3c2db rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7084caf1 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x768e5cc5 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x829051bc rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x853565b2 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c05fa55 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e4b110b rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3e6131f rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa717a92d rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa2805a1 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabd0ea47 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2f0dffc rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe33cfee __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc595f4d1 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2a4fe99 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xefa84ae2 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf263920b rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf70be466 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0c6e6859 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x292b4169 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3a69cc77 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6803556d rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74016c3e rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x782117a0 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe3378dc4 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2a03f530 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2a0e9988 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x57a9af84 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc4da54c1 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x10838f4c rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3409934c rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x42786fd8 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc03dba06 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdfdc6968 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf4bd2ceb rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x531d81d1 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x542b8d2c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7c8e757b gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc348b32c __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xccb5cbae gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd1d54092 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe393c9a8 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf848a815 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf968eb51 gameport_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x542e6cff iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa7d2e39d iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xab11791e iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x5b33fc2b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4df09f0f ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xbcc870da ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7ac65ec ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x2b3ecf23 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x537ba884 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x07d8e9e2 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x26904300 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x94a45228 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc884cb55 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xee4315ea sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x475b7195 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4ffe0a2d ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x1722ae7c qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xadd2741b qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x02709122 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x144cb540 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa73113d6 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed056393 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf6166d7a detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x37a6f6fe mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5a02c331 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7a6a96a6 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8ff218cc mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x052aa829 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4bbcb013 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09ee6bf8 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f24ef2b mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2930523d recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ae83794 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x405da207 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4389203d queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4cee2068 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f3aeea6 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6015ef8f dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73830ccf mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x739d3036 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9282c4f5 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94f0a826 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96bfeb52 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a8b89e5 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b3bc3e2 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa08841a5 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2cbe2dc mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7166924 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc0030f4 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf15b9925 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfcd5639c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff61cd93 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x08181553 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x51ded5d0 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xbf3fa425 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x356d85a8 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x4d3be350 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe4227c5b omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x54b87a55 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x72557b11 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xc5dfa9fd dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xccc9f343 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x057e449b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x43cfc3f3 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5d8f5c68 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6ad2d5d8 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x95152c93 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb85e5fd9 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x424e4edc raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x895ead27 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x11dd537e flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ba8f0b4 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1f5e56c4 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c9a2c61 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x460727e7 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5991bc0e flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84c8a0d9 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x95b74d8d flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9a89c12f flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb52dcbd2 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc34badb9 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd87e15a0 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfdf644da flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x02e26f19 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x767c9c24 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcc1dfefa cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf96aacea cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xc5f76cf4 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x0857f825 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x4210da33 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x22816e7d vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x3e5eeb32 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5319936b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x85f558fe vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8d72fd39 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x913c10c4 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xafcc696a vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb34096a7 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x994d411e vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04117350 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06d8574c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0906f709 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1419f612 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a209e2b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x228c6f5f dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24a48269 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3de76b7e dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42e7a65d dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44bf9217 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a03eda8 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x514f3a6d dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5433d5b5 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7439ca76 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x789df044 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84813f9e dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa114cd0e dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8411e41 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac1f8d88 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0f01dcd dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9855229 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd55ed1c7 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5df57ea dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5004336 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x430b7485 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x085b1ffe atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x06fb5b49 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4a829f55 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6bf477c0 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x75f633a2 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7df4ce2c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8e2c5a4c au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb6f7a68c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe6d33cae au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe8df0a54 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5540f205 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb68fa3f2 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x5c4988a7 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x8b0317b9 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4759c2c8 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x45f7a2f9 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x715f500e cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa79a023c cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xbd0156b0 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbdea4c34 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd60f0489 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1b8b2e5e cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x28804061 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x90d77688 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xcd23a75d cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0fb99f98 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4418e316 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4b08341e dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x990cbc12 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb2592f99 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15957fdd dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3b656bcf dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x40fdd50a dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x59e32c6a dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x77391d50 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b2b4cfc dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x864fefa5 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a8fa941 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa75ea4b0 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xad21ba90 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb5c3e647 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc934dd23 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd6047f30 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdbb0f7d5 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xec872c3e dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xb0a25f36 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1b3672cb dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4aa4aaaa dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6677c669 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x924a6dc7 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbe2726cd dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf4a6e7be dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1b4de721 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5c038a48 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x94f05beb dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc2f009ad dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xa2436f55 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xdec4d009 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x11eced1b dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x14d8546f dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x34e43788 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4d31c473 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaa32744e dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xadea389c dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb69e0ce6 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcc4d4a98 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd5e1ce71 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdd5e48a2 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe0234c6a dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xeedb7079 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfabbcd16 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0f4a4e46 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1b815036 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x66e6363f dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6bbfd2fa dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8d12454e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdce90265 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb38c8113 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9b46aa15 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x6756656f ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7a56cc4a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3994f876 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x925adc1e dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdd8a6874 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xe00a3c17 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x42daec36 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x63fb3685 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xfc991e8e horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xbaca98a3 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xbdf63ad1 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xcb7d2a55 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xf41fc5bb itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x02fa0f87 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xed3d76be l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x12b16c5e lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xa0d09d23 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x4796e086 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xdd7d302f lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x05b1942b lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xa4795196 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4e7d831d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xaccf5b8a lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x02d41a09 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc496b34b lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xfcae4367 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1f8a58f5 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x78623240 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9bd81f05 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9ee7437a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x6d2b42dc mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xfad868d1 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa5825585 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x0065863d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x75e32f05 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xe2d6f6e1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa487a29f or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xea4cb77b s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x870df1a5 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0f71680e s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8143668b s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x89bcdc79 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xef1560f4 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x85e8db33 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x2a72b944 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7dc687e0 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x032a09b2 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xd718db3f stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x5a5c8e56 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xaeb33805 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfc42122c stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0b4b8f51 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3bbb916b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xba896b06 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfa722277 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb903ae1d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x9fb369ed stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x2bcd1306 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x1c860823 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x0b14ab6f tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x12f571fe tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xde9e2460 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe5133b14 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xffa339b6 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x4d8bf63a tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x33487ce1 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x63b4f510 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xb8bbde53 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x19dd2b87 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x91e63956 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x40df72cd ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x7894799b ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9d200e43 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb0ea15b1 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc1789c2a zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xee3e9a99 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xa6f2d6cf zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19d50d8e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2203804c flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x66eda005 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc76158b6 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe4a02c0b flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf343a0fd flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf5bd1723 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x32596b2b bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x532ee21e bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x88048b26 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8b8063de bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb5d8a0a3 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf5ddb5df bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf92e542b bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0e0d353c dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x22105047 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4618db8d dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x56ccaa02 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d8aefd0 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x73c33e71 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x773cff36 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xac374a3d rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc0d20e1a dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xd02eefc9 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x090aa7f2 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x94b70fe0 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x98513cdc cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9c4809be cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc602f28e cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0a7fe06f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5d58b9ba cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5e29fddc cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x88249142 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd3dcd04c cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe093b660 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe6fa7a61 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x790d4b5c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe80094bd vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x052d3a87 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1059a816 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd95c84c6 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf604a009 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0bde7727 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3f7ba337 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x48457b3c cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7c4cd66c cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbfa44c92 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc5c2e9a5 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd4a547a8 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f4954e4 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x269c416a cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46e3f3b9 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d527e36 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50741c8f cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x622cac1f cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x80fb4717 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x82410884 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x834c9543 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x89898213 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93cbf54a cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9a3e9d2b cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa4cdbc34 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7763997 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab6a32d9 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb5776eee cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xde990371 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeddaba7b cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2ba6cb6 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfed7d40c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x3d283c82 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x06869d82 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2e306f56 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38435058 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38e95dd2 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x52dc4e79 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x589765c6 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58a224c5 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5eb50e7c ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x75119bdd ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ce5d974 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8410cb89 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x87a2544a ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1d72755 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd7b34dd ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd2ca9fd5 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdbbb49c8 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe837e249 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x043c6042 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0cf4b31a saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1d4006af saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x20c732b4 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e5d85a0 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4d7da00d saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x594ac873 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa5dd3dea saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc8f1459b saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdae409ec saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdb43b00a saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x18c53ab4 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x45a7347e snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x69b30cde snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7278ac26 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x81210a81 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa3bba096 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa3ea4038 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x938c3e4e ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc3a48817 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x384ec8b2 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xc0728597 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x30af2c56 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcc3d033f fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf00d47e2 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xb28b8211 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x7498ec98 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb42e02f2 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xa9b290fa mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x699092f2 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xa5715354 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc486c1f6 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xda98a69f tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x77a0f74c xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x0d2b484e xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd41d434c xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x533ee687 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf57686a2 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e8519a4 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5de1f16e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7258bc1f dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa01d07b3 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa2ffae38 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb0f17b98 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd4381769 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf673ea57 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf87ddec7 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x00b876cf dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x15d8e545 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4d9a1386 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8797eedf dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8ba9cf4b dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc9e87d15 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe80f0b93 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x05fc8869 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x261a5099 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x467145fd dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7e030567 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84c2d182 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd76f0d8c dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeea53ad1 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf03cc98f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd29895b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x1df25240 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xf3ea9423 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0e216832 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4c505e9a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0c738ae3 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1804a0ee go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x958532eb go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaf92950c go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcc10921b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe243595c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe9024e4d go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf4700d3c go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf486e877 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x26520411 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x26889e01 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2b25fe63 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x636e6f4e gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x63b30863 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaca009b1 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcd721717 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe4cf523c gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x313db8ea tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x701e572c tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xfbf8a547 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x51ba36f9 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x7a7d3733 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1b9e8e37 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x230cbcf6 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x43e18a83 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5e2a37f9 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6b02a9f6 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x70b0f28e v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x09eeff0b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1b990672 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6dcee38f v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfb80916f v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02479a18 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09b4d3c0 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a6e5c67 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ff8de8b video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d31540a __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22ef5625 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a5dd7a8 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30627741 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x335ce621 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37ea655f v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c3c1767 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4023c38b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a48f14 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495513cc v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bd5e504 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fd526bb v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x534ee78d __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5bfcc23d v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60ef57e1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x614bf2f3 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x663d2f62 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x761ee0bc v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x764f2af5 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x781f4179 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x792459b5 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83ab6dae video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88e98612 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bab0b43 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ceb1d3e __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x973638b8 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97f7faf5 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7515e9a video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb38eccbc v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb42ffbb1 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4b9f51a v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb73edcd6 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb423b4f video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb4b828d video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbda8107d v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc735889e v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca6da31c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcad39330 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf163af7 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf450243 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf8ba70d v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd10327f2 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda146352 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed677f12 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf137502f v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3d13b55 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xface1e9e v4l2_queryctrl +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x27355f8d rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x60d15571 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb47a395a rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe1c803b5 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfa2c19fb rpcif_sw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x02a21c6a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x216e983b memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x324b5e1e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3f8a7d99 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x415c4790 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x493a5272 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x53016d4f memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaede8a01 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc57a455e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd6b9982c memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd773bd71 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfb4eef74 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0cd42eea mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1057d771 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x397d5726 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e6a436b mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ff95a8a mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52cbb30c mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x613ac7f4 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6950c9b1 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bcc0cb5 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6eb9db6c mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6fc4e558 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78ec0c57 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ce448c6 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8eb0c2a2 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f5a1bda mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x905a13bc mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9bd0d686 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4b383a8 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa60bf522 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb30a52a4 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8ad74d2 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc16ea0c mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc04c9959 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc839ce8d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbc41068 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbca8f75 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4d5f0db mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf971f5cf mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffde94ef mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x178153c9 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17eb478a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x271444a8 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x344a8bac mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3864f8b9 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a898b3e mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x40c3ffd2 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4373267f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x484dc3c4 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b60e9f7 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a1d70dc mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7842e79c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87c8600b mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x943db101 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9792fe3d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7cbe517 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaaa4231e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad377bc9 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb006a490 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4ccfdc2 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb5d39842 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb931b55e mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd50b5feb mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9faef73 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf986635 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe9beb937 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc7f4193 mptscsih_event_process +EXPORT_SYMBOL drivers/mfd/axp20x 0x32a52471 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xabddb90b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xfba8cbb6 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x5a5961de dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x6b97bea5 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xa8282581 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x36a2231b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x371682a5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1273141f mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1d4ee588 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2612740b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x305f2089 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6f7903d8 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8901e909 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa5d7affe mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa73bb068 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb438060 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe0952493 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfd7aa94c mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x15d1eccd wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8ab3eee0 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xac34dd11 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb8895579 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc0ce8352 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xdbe269f8 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x42b88ab6 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x435762e6 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xbd7e9a9a c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xfce2a148 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x261a5cc6 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x490a4408 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x6187d8ac tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7b11177a tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9469fff9 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9a322309 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa4b9c095 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8a3253a tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xab03dfe0 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xab6837c2 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xba91f222 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbe113509 tifm_eject +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x164d924b cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x74bfd996 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9610d2df cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc54ecf9d cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xebcfaf1b cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4af113be dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb3a529ab dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc37efe6f dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf1accdd3 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x63ae913a mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xbc8fa7da mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x524cded8 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5f8a2e5d cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5fc1a54a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x966bf4ea cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe38aeba2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xed945372 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf986f243 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x68398a7a register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x90cec55b do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb017ccb2 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd5ebaf2b unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x08c12a74 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb6858b2c lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xa47462b5 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x4d67f321 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x77948eb3 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x075d1bf7 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x09852695 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0d9b1d64 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0ece8964 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x227fb62c nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x31f9b884 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3d99a85d nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x48870e37 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4e50c9a0 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79a5d4e0 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x87fca117 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8cfa6f46 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x97f2df2d nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa0b1f655 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa2c52415 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa55a2dfa nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc15deba0 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf5650723 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x287a524c flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x9be57508 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x138e028c denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x3dacb291 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x9707a8b0 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x09f8d1e1 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x15c1b835 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x25597db1 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x35a6f82e nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5506962b nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x56a9fd18 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x80595bc7 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ee04e35 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x90a57cd7 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb2abecc1 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdf0e66ac nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe60f40ea rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe7b2160d rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xeb371fa6 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf06f3821 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf60ae0d9 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf98507f2 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0cf783b6 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1987aada free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1efdedbf arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x69de90ca alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ed5e07b arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x78a8d30d arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9c878e3f arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba9dd0c4 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd6daf6fe arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe4403dac arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf93a27a6 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x98c67f0c com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb714a654 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf2899339 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03565547 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0633368c b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1095f8e7 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17bcb766 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f38a59d b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33f9bf6d b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3409ea39 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3fd8ad43 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x442089d1 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46934d8a b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46d3819d b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c2549a9 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x562e6bf4 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57009d61 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57628414 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a82cc1f b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60c22fa4 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62d19124 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72f76ae0 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f7fade8 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x836e34cb b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x89867e7e b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8061b31 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xabb183b0 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad06cc16 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb07853a9 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0b27eca b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbafaddea b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb5c1cc6 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4cb129a b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc97dbfa0 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcbe80c27 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcfb092fd b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd12fedc3 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd1356e0e b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdac554eb b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe11e9499 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeafb5e49 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec7a4e59 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed9934de b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf84467ce b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x10e6e554 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4ca29ecc b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5ed32b3c b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6d0fc7d8 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x87414acc b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe64d75e1 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0d5af973 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x92ca03d5 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf5a6a02a lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x5feb049d ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xb1f52c7f ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x173b936d ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x92ccd1c2 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe57b0527 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3fdfaad9 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa70ec3c4 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb76b591d vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x653ec7f0 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x68f7a9c1 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8e2fe358 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe25f8307 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01d026c4 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x032c3569 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1d117acc ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x320ee0fb NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f89feac ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4548514f ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55527754 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x579a7cc9 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb757fd7b ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfdf6a7ae ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x14cea3a0 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfb8da217 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xe3a931b8 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xfb2eb99e cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b471f5e cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12408a09 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1674e58d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2143b644 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x27f3994d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ec92e07 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6fc6112a cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c090cc2 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x897bfa4b t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9a55475d t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb58030b0 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb5d4f968 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce7b293e t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3670eb7 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9796129 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6aa693c cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04081eda cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x058d551d cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06f40f55 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09e4290b cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13c84e3a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13e7d325 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x145d37e9 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15dd5484 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17b3781d cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x239842b9 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30425f14 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32d90c29 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x357ef0ca cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x391e1c66 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46a43977 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x487897e2 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48d3034b cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d652332 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50370459 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50f14ffb cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51eda63d cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52c7f9ab cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62e1cde4 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7623a6ad t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9dc8d9fc cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5ab207d cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa71e77c7 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xacb6165a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafd65a17 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0792fe0 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb145f268 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5045446 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd13084d cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbedd882e cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9d2614e cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce581c80 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd469dc68 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4e867c3 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7a180f8 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe26b647e cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec37f195 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecb5fceb cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed23a8c9 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0a93161 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2a1c140 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf7733a00 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2fbe3c5a cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3de80172 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x49f44d12 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4e7c47c6 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xafd1869b cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb42a6a28 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc2c76cf3 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0e18f0c7 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1c4cdb92 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6aec35ac enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7c4ebf56 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb949058a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf343b0ef vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x85843821 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xf43cbba6 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xa8485f37 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x2ed78031 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x02bc2197 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0d80e468 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x398d8af8 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3c90f50c hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe5f3d70e hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xc4f6947e hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2b0b8854 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x589ecc55 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x716b51ac hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7ef2fb98 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8feb0fa7 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa5ede1b3 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb58acea6 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfc7e4ba6 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x986e12b9 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc2d565ee iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0df6f3ae otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x10181205 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x10a0637b otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1bbc2b56 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x29a0373e otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x49286d3c __tracepoint_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4f16fca6 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x586a015e otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5cc79775 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6bdcdf9b otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6ce386c9 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x84e129ae otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8cefcba4 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb53baad4 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xccd86f78 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf2757203 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfe2bbb30 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x050d9d7e otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0ef6f621 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x18730b0f otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x39070d6e mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x42fa5ae6 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x48b5c11f mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x59fa437c otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6a4de094 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6cc93ecb otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x72483f1f mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x88ebc4ba otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa718015b otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa8945282 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaa2a4617 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xab64b024 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaf12afd3 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb40690ba otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc30212d2 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc4f6c918 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd0e41f0c otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd1b9d720 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe448cbaa otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe764e5c0 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x04ab5aed prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc4f233f7 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0095470c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0541b4be mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15fc8afc mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b172193 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d0bf5b0 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2857cbfb mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292747bd mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29de75f4 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c70e763 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d723d7f mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x354b2e9c mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x369dd081 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aaaba0d mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b0d537c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d66e84e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49d7f845 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x505f94f3 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56a0f47a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e20d6e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e2de585 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66ea460c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d2079b1 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71b559ae mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7927150d mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bdbbd3d mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c3c03cb mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85fc603d mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x917583a3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x989e98cf mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a53f45c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e45afa9 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa094b11a mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c8aca6 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa488b941 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6535418 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbffa5105 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36e6672 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc906e76b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca87be81 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd64dd2bc mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3051610 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb49a804 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed93c9dd mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf10c6c7d mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x009d2fd1 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0134cb4d mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x018f4de5 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x036eb185 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04ec2ae5 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05b37bf0 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06493d69 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06f029f9 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06f3744c mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0743e784 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x090e6cdf mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a330b0e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0caa0a04 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10cf7d1c mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x111c45dd mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x121b190b mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x164c60ac mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1925f5ef mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a7921ab mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb48a21 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cbe7c48 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d132802 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2726cf35 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29bf04bb mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a0a9228 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bb4c4ac mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e1d69a6 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3637ccc4 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae31875 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d2f42b7 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fbe09b9 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x434835b1 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c07a7d mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46ffb7a2 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a0abe98 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb6b4a3 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c06110d mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f94ea __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d6ac541 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fd00ef6 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x512c2c0b mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54d94cb4 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565734bc mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x592ab593 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597af6ab mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c7b6d6b mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ce0fe11 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f620513 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60cf4081 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66b13f52 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67a91463 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692e71a8 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a300dd9 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bbf5c10 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bebd7cb mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d293ff1 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ea846fd mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bb0f52 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x723df917 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a23d24 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7829a45c mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x795b3954 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a4181e3 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84dee4f1 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x903826ec mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91cf3d1f mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9927926f mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bf24f90 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9caa4a51 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fdf5e7d mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0edcce4 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa34ddf10 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4073495 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c93428 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa55ff65f mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6262b9d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7dba1e7 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8abb3f3 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac992bfa mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadbde64d mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadd0fac1 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae709c8c mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb149a99c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1cb91db mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc229741 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd0920cb mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0061a80 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1603fe3 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1ab0323 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3419891 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3a4d40a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40e40a8 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6a89317 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc7a3dca mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd28472ed mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6407773 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6641eb9 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb921705 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0250ca1 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e68eb1 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe56ab79e mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe80f8d9e mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed93a19f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeea1c9cb mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef03a4c1 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf013fa0f mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e86372 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf123a41f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf25a2970 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf31df1ac mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5713fa1 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d512e2 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7c1f9d0 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf85f19c9 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8ff7ed8 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf937664d mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc767348 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc6bf4169 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02d82335 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x188f5b6e mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cc3645a mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1fe5ce60 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x29d53037 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31eb9687 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x614c32c1 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7a337acd mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x811a5fa4 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x842185db mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x95a24eae mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa8bad68 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc052d4fa mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd2af8e3a mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc50296e mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xef3a98e1 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x285628b8 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x516745da mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8aa25f98 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8f34bbc9 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0338f814 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04445233 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07d597f7 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ef92a03 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f527076 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1087118f ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1163861e ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19c01956 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1aeb24e1 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cc4ed97 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fab0684 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21b8a29b ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22601f8e ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x228f890d ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cc090d7 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x348122d9 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a4487d6 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42df62ee ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43fe4b47 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ba7c38f ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e9b8e96 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63c9ecd8 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65352239 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72adb801 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74f9d5a4 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bf1baf4 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80fb5d29 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b1ca2de ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b85e159 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b9a129c ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x900cfbe5 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x909c6076 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x924f2712 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x947e0fbd ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9658b235 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97425912 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ed463cb ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5acab6a ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb090005b ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb23b014a ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5a2fa82 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbad967ca ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcb8a360 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc31e2353 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc58c6914 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc86b975c ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc88606c9 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca6434f1 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce595188 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2adde3b ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb9ef315 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbad6e0c ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddd08e5f ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf1335cb ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf31f176 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe351aa5d ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5102980 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe53be433 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6f3f1d2 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe70c761b ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7926e64 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb953311 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebef8623 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecd9a1d4 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4f04fa3 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9579ed1 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff8bfa9c ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x272511d7 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x87f0381c qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x990ac555 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xeede208e qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x353b777e qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xf56eaca1 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2bdae2ee hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4c743169 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4f5845ee hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd70ed06d hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfe34fbec hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x08a59da0 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x676a39bb mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xbc3cf313 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xef0bf910 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x062e3b8f cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xda56d336 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6554e5c9 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x8d32be59 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x9657dba6 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xe2277c56 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xf139dc14 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x181786b3 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xeee7d61e lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xf9d8da62 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x1e343074 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x38f56608 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x50071192 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfaa09c5e register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x5dea5764 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2cc4b2d1 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x3283c577 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x39f4e894 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x45383f7f team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4ba85443 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x74b442f7 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xb6abea71 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xd9ef59eb team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x44398049 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd2f296df usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdb657567 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x284d675f hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5a729f42 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x94d8fa47 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe49cc8a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd95f2af hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcfbabb36 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe319cca5 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe789e59c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf1f2fdef unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf9f2b440 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2936eb74 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e216c54 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5f210fc5 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5fc7e454 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8b9d4687 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ba12dbf ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9842aff3 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa5170289 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb7efc96d ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb070b19 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe6b6a4f2 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf80fa2c6 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xffc57d73 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06888549 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09f35f92 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ae0b7bd __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b6a50f7 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0fc4191b ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1213bfb6 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x139fda9e ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x164b41bc ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a19c70d ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c38f29c ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22d9d1d4 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d8e0c75 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ed1f0da ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2fa104e7 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33911e5d ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x371801ff ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37b3a0c6 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37fe4abb ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b868aa2 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42ff5696 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46099d75 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47cb3730 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48e6c104 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50d66ba5 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52b53e72 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x546d4446 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57d5b44c ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58e01de4 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d219a8f ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x603f69fa ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71391767 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76ffc2f2 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7803088f ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x788abe08 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7bc31445 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e5335c7 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x871b5b1a ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89c169dc ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ea8997e ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ffb120a ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9438a5ae ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x945404bd ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9942b54b ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x997842c2 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4af6694 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9d7d7c8 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa358429 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacc438e4 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf677d19 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb532cf17 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb794e83b ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdd9606d ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf760fe4 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca096c32 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbbf2384 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe25bbe17 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0232b607 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x06762f58 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0821e2e2 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x16ad3ff4 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x18b72c95 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x272985c9 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f982c2e ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f7f06af ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b973ff3 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x749afa3d ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x79dfef0d ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8e1e512f ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x91ca1217 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9b53c5f0 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa5044ce5 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2eadd09 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb71546b6 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7550191 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe3c74736 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe98bc423 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf282f5bf ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfccef00e ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17eb01db ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2637e5e0 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2bf9f65c ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2d0abcad ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3f3a890b ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x40878755 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8701285f ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x983304fa ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc8c02686 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe28374ec ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeea09ee4 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01aa2979 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03f6b38e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20be5f7e ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x352bf748 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48be6914 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f211781 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x517975c1 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5534806b ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a55dd45 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x657a7d88 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66e5bae8 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7adb5669 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bcd8da6 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x832bda60 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x983050aa ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa3af04b ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb28d06c5 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd1698d4 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca089a07 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde401ba3 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xebb3e8ae ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa24f1f9 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfb98facd ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02ab2de1 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x040bd8a9 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0530f474 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05ce4a1f ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x075ddc36 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09b2d98b ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b54d6e1 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b55d810 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e006831 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e368fe6 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fb80d48 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x104136fe ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x156f30e9 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16d86842 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x182e1bf2 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c19b180 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cb1ad20 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cc3676f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d2026d2 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21332a2f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25b68ac6 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x275086e3 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a15d673 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1a0586 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2efa5433 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fcab49c ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30e5cc4e ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3266445b ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35fcc3eb ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x381df243 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3922dd6f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3afa907d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b975817 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bc48145 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cf2908d ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d6f98a4 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44ef87f1 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46bfe928 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bfc6560 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cfafabd ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e471191 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f19b7e ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x551f6780 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55b0326a ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55f871b7 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59a3c56e ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a566f27 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b6cbc62 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66728193 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a708379 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b2cb0c0 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b979001 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6df5af45 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71d2816e ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73eeccde ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74a29dc9 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74ad49f0 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77ac8608 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a608275 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ace60fa ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ca8bc7e ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82ea5ab5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86ab2294 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87f3a47c ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bdc17fc ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c53dcc4 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dfc81a0 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x916c53ac ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986f4a45 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa02e16ad ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0b95218 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2602b04 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4d75666 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5f00a1b ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa8750e8 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab419843 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab68489a ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaee5f21f ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafd1d042 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0dc1940 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb188ff07 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18aa0fa ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5328b53 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb54c9874 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb755988d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb91335b4 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc9bebf3 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbde2a905 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdf84b5b ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe2515da ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0e04317 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7c30a9f ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca1671d4 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca65ebbf ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd00e6835 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd681039b ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda95d7c8 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb9f231f ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4564ea3 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5022934 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed43be66 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeec07290 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeef4b58b ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefabd4f9 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4cef488 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc1d70c3 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdfe90a8 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9acd347a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc07a9311 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd53422fb init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1593db1f brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2aea8643 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2da91ea2 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4e96d468 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x589b1c4b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x768a1f79 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x95f91555 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x97dbaca1 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa748df3d brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa94d64e5 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbc6e6def brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8b41f1c brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeac12a02 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x058a25e9 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x12250ebd libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2a0a4bbb libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2f233be3 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b6996c1 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x465bdf33 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ee51d37 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73bb5947 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7dbead5b libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8441115f libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x97535793 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa7c0c310 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbcb497c9 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc1100c0b libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe891fb77 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xee1a880b libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf0157107 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf107bd16 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf68b6f4f libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7974db6 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04a822ee il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05b1e77e il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a4f96e0 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b3bcd9c il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d73b4fa il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0db65077 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ebe8362 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10d46bfa il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12e7953a il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13c3116d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x157da78f il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17feb95b il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1926c6c0 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cbb5e4b il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25efa1e9 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cc35859 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d562a16 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d88a675 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2da0a4a3 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33b3bad1 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d09a293 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e6cd6d7 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3efa9593 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4623bf9c il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47d17c59 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48394a2f il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x500d622b il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51cc1f2a il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5208daa9 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x522f9424 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52dbede9 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5361e3f1 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56a51200 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x577baa47 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5843b79f il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a6336cd il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c614b42 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ca53539 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cab80b6 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d2574ad il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e800b54 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d74f68 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x664713ac il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66dfe25f il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x679925b5 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x698f8ae6 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a77eb96 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d5afee5 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73532409 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x746c9630 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a5259e9 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e0c05ab il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80ac646f il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c573b32 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x915117d4 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x940be0a2 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d56f2a3 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d575934 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa000c867 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa052322c il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2a588d2 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2bcdebc il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa32cc8a0 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa042935 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa38b302 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb209cdf2 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6937432 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6b1f20a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb96af40a il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb98a8d86 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd07a425 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbed04446 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc288fddb il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7c95daf il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc80fee23 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc89733d1 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcac5b0b3 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce632338 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd47c78e5 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd68aac47 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd720efd4 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9302c41 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd966ba65 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe04c088e il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe10e856e il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2cb5793 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4be299c il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8d47eb2 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0a1e2a1 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1036f5a il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2eeeda7 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf379c63f il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5a6bb8d il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5f13cd3 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf69766f5 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7ef7412 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd03bb4f il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfed72353 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23967b38 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d6819b5 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf98639e1 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21a5d6dd hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2207092f hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2d681d13 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3376ee7c hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3621392b hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x40686681 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4497addb hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d195260 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d966fd0 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x58f6bf05 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x59c6c0a8 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5bc6e8c9 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76a520ad hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x774c384a hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8310d72d hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c6428ed hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99189776 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x997a22b0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9cbad911 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabda6687 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5bbea2c hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdbb37965 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6705c34 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeba3a894 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfac28912 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0085c2e2 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x08890610 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0891b684 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x200c5452 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2cc7bc89 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f999171 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x31760980 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3b3df291 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x431887b1 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43255ba6 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4c3afe5a orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x59c7a9b6 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5a9991bf orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x721c5155 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa5b5eca0 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xa077caaf mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xb104b66a rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0567ace9 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08fecf55 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x098a25ee rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11bcaa8c rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17e43b72 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18071774 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23887b6d rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26021017 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2900a4a4 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c99f9b5 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30e635d8 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3848962d _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b138d78 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d49f72a rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d819432 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x422f94f5 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b3c959e rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c994b50 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e336bab rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x541fbaad rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a670868 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b316e63 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68c70be2 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74b9ef5f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ab57f45 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e9cd8eb rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80b080e2 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x951d75ec _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ab9badd _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7070951 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf5079f3 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0a8eef8 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2ddfe15 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce3daf77 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd52c31ab rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd97d79d rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0a3f9ad rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb941e4e rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0586c89 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa20c322 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd32f42e rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x45a6d58e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5581318e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8b405475 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd0cc4321 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x01179d87 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1b9b3d8f rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x405a976d rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa84aad64 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14bc20f5 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x203cd755 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ae27fa9 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b212733 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31d4d8ec rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46d9ab6a rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x536add9b rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f1daa85 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f80120b rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x606e0db5 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6118715c rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x625dba15 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x777620bb rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80400cd1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x855dcad5 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x876d9f2c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8827e556 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90483485 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x945a8f15 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x989d6db2 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x997e08e3 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d1bc5de rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fdedd05 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa580cd0e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeff73cf rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc38916f9 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3a1bd38 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda53259c rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee4962f9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2ecdbe7 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x55bd3e84 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xc87d4909 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xbe5d4436 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x519f2f08 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0baf6d8b rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x104c80b9 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x123e212f rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1384acfd rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x144d4bcb rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16f0f467 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x188bb926 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23053790 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x257e7483 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2bcddf99 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e2290dd rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f4f37a8 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ff14933 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3cbad08f rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3eafe998 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41a0f8ea rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41e02905 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45c7f25f rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45df0e64 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x487447da rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b1723d5 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b810d16 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x522073f2 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x579fb214 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x66994e7c __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6cfb9042 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x823085c9 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8630fd8d rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x883f8756 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b4deaac rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91ec53cf rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9563717a rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99eeb8e3 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa913bc94 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa970fef5 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3c4dd01 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4c31de8 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4fb8664 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8ac8bb8 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7d8945d rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9524d74 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccf50e54 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1b14193 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd734d967 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7b7d8b0 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdba70da7 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xddbf62b3 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe0a21bf0 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1361aba rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe28d83fa rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe57bb841 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe8cc4f31 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed9baf25 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2832c97 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf28adac1 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4c62b71 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9f5c5ea rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1bf2d401 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5c928e27 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6f65aa41 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xec396331 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x194fb5d1 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2cbd5525 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3352a5fe rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3687b586 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4524e8e9 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c87ee34 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ca3774f rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d682052 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c8fbfbf rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75146f5a rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x77b88de3 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7caa1569 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89f73975 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b08f851 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa690f4a rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcddb7019 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf1c9768 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9d871a4 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdbb819e1 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeced45ef rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xab7eab02 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x45f3b6cb rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0196cdb0 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x217f1b89 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9c3569a2 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xeefd3e25 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb2874f62 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xec4ab632 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5e04ff56 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf3353fc7 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x22a63a27 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4f2ea8d9 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x66b51243 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x8ca02988 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x75fcf8e6 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbceec0e8 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x083e8e3d s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3d4eb6a6 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5a739820 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf922e34d s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cff3c8e st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2b7fdec8 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3aaecc2d ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6e534906 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x82072818 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e21f2f3 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa0f0def7 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa2424275 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9c60ef3 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xef9fc316 ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b2b66d2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4970e564 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ceec26b st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d15e52b st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5eecd6fe st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6205f51d st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6539d465 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6cea187f st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78dd6616 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x83739da6 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x90d69576 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb20d39d1 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb743a96d st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7a0bed6 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd5ed5a1 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6429c96 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf982bb21 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc8cad57 st21nfca_hci_remove +EXPORT_SYMBOL drivers/ntb/ntb 0x0ba68477 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x0d1f4c18 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x104681fc ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x1f3bd2bf ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2860ef6a ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x2a2c30da ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x45648e17 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x4f0cf9eb __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x516f7ff0 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x622cc541 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6b3fa514 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x6bc0a571 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x8b8fff56 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa5a7ea62 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb4bbf1cf ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc35a5390 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xd6ae38d2 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xded074d2 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xe400ace2 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xe79077be ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc55e950b nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc7730698 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x060d54c8 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x0c7ddf0a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0c80ff60 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x0c9ff00e parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x1399d215 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x13e79dac parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x239b09c0 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2a057a06 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x2d91d1f7 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x355f824e parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x3745c55e parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x4610ed83 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4cef878d parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4ef556ea parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x56184b19 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x5d3c443d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x5d888d96 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6521e84e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x69c0d7fb parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6a30764b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8527d5e9 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8c0bad3a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x8cbb5c1d parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8d113da4 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa19faf27 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb7d663dd parport_write +EXPORT_SYMBOL drivers/parport/parport 0xc02663b2 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xcd610134 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xd5ccaad6 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd9337022 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xf16f0597 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x0d176f75 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xcebeed22 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2671d459 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x408fb3c1 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x67eb9c74 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x79634632 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x87db52c3 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8cb337f4 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc1a5fc38 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdbd43c64 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xeef88e22 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf9975a47 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x96d9ceca pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1b864013 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x62b9cdcd cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa8e2c0d9 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb6a59571 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xfc341b79 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xc4000567 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24a07876 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37eff1ad rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ac8cb14 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x494ca346 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5b684647 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x67dfcf66 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7945436f rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b73e970 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8afb51de rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9a6a055e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9a77b567 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa7b6d534 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb569ff68 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb7033491 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf0c6bf21 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xff935941 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x0b5dfb15 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x90b6cecf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7d90686f scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xca59f2d4 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcb7aa327 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcd1cbb9f scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x07345ab5 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f1174a3 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3bed79f9 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x408e82ad fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4cffa246 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c0efe6e fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x611c5dd8 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa62dfcf7 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xacda652e fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb43d6930 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0b05c46 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03eb69a3 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a08d34e fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10e5aa76 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x124d8469 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1743a0ab fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x184c182c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c5e7ca9 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21cb5132 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24ba7f2a fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ae56684 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d880409 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32989490 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f53d066 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3feb7e4a fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x435fccfe fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49039e19 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55adc9de fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c5c17f7 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ea3c1fe fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6084e18e fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61344687 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6229ddc5 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64d6515c fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b94c24a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e36f8b9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c82cd23 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cadea2d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cfc6610 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e0f2ae5 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95378d34 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98154597 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e75e47a fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f30efd4 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa14a9bcb fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4a26b62 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb79a803b fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0cbed0b fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc50fe653 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc777c30c fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcecef8c5 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf1772d9 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc52f89e fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd3619dc fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1e83993 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe29c29bf fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3815e0d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6995399 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeae01dba fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecac2d17 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeec9e970 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2fccab8c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4e7d1e7a sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x88e86311 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x98cd2a4c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0285088e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x07251a4a qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6f0c41cc qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8bbd952c qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9148bb4d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa4f3aa1e qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcc2d4d4c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf723fe8 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xddfc5edf qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xedfcbe62 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf82d8e7f qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfebb87be qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x09443b3e raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xba3b4c0f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xff3b2f90 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x016974cc fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4540242a fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x54c915d6 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x59f75610 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x669e971e fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95f21307 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e44d6ec fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa05502cf fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa32f71f2 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa68279cd fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa9dfaf1a scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8a60fa8 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc9e66a94 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdf01f151 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7a0714f fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf458c4ca fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfc11ca4e fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05f6e6a3 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x208cdb5d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39b6af07 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a6bb781 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ba20596 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f12ac76 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x450dbf2f sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46067922 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46bf4a5c sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c282e19 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5105788f scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x637fbb01 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68e907b1 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73ca873d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77ce8dc6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85b96a5f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9fdad5c4 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa4ec68f0 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa843f38e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad1f40b2 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb27c7f19 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb414d711 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb847d963 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce5ab75d sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf531ac3 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3f7ceb5 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2109da1 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf940e2ff scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbc7c4c3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x11b6f2aa spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1b2a57de spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5151d52f spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6c7e9bf5 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe72af1ab spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1d0e9fef srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2f7fa332 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4a1c5fba srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5fc25ade srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6a0f75c7 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x16b37690 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xa775bfe7 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x171057c0 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4697d8c9 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5dd0ca6a ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa7160faa ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd9ecc63b ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdee8f4de ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe9b91f37 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xee53d952 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x10af6ef7 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x691baed2 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdb008703 dpaa2_io_service_enqueue_multiple_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0f67b93 dpaa2_io_service_enqueue_multiple_desc_fq +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f4b7285 cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0fa69c4b cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c91b6c6 cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1eb577f5 cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x27f7a778 cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3bc70297 cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3d3c435f cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x461737cb cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4dd68ea8 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bcc91ec cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x62622035 cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6482132a cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x81232e95 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8248f591 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd24cd840 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe5f2a51e cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf79754da cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf80937c2 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb55916e cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x039c15af of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1d56095b geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2072ee8b geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x23e61ef3 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x246d3d1a geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3696d49f geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x70d52247 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7aa05754 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x917699f9 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9a1e3e49 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa2a3931c geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbd912a7d geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd26c3b74 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd3b4c668 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe9391c12 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xefd633b0 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf2767faf geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf3054d6e geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1d8f7dfb qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x79d092c6 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x87b4b89e qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8a35dd20 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x92a5a77f qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb6cebc40 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc00c3c08 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc13477df qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdce8ef9a qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf46a04a7 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x89b0abcf qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x06eec820 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x075ea468 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0d03676e sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1f5a94a4 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2a37af76 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b63cd0b sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b806537 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49cd222c sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5407c906 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x62fb789e sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x64b1595d sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7e6c9293 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ed498be sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x91883ff6 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9551f46a sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c79cb94 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f80e589 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa14fb179 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1f8e60c sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbaabf622 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcaa63a96 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcce6d346 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xce3d7bbe sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef9d4a6e sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf30a3a51 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf7217dff sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x02373521 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x17287139 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x36451fe0 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x47932a4b cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x49a1dd0a sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4b042c19 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x576c85e5 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x96c934e8 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9a8a66ed sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb047bc40 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbce7c674 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd1e6397c sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd56d0231 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe780ad8c cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xee0fa76c cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf257d3c6 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x132d6850 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x11b8f68c ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x14391c02 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x33c2d1a0 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x3d388c57 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x51cedc37 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x54f60c48 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5c12f1bd ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x65647bdf ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x706e05ea ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7d1ed04b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x962448b9 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9fa7fe1a ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xbf0afec9 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xbf0ddc03 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc4eaa9cb ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd0eeaf1e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xd1fc1d48 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe1ebbc39 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf6356f1f ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xfe2c0ce3 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d316889 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10b8665c fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1778717f fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1deda483 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22898d06 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x241d9f16 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x282611fc fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fc03d20 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a94e201 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ef821c3 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66040b76 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68272858 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68622b12 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6a32aab3 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7573b837 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7852f976 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87730a7f fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ade66ce fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa81bfbe1 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba6312ad fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbdbabc67 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc8e39589 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9936f45 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xefb6a650 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfb4abfd3 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2c004edd gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x69249d5b gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb9edef7b gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe79835db adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x1a36ab55 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xf249b287 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x09fde759 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x193752fa videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xe8154b69 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xf893c2e2 videocodec_detach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x69999bbc nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xe3afc674 nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0093ba33 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01e968e3 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06326815 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06a08a6e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09c28bf6 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d50fa2b rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11356cb6 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x120853c6 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14353b2e rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16c66298 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b8a1ed4 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1fd6bc82 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x232dff9f rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a7fd1e2 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x389edcdc rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f3db290 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4083d1ed rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51462ffd rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5172a5fe rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x551a8dab rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5aa24039 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x605e50f1 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x624f0230 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6753056b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6bf9ea52 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cebb049 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x768cb7ab rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b3dfb88 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9323b8a4 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94cacafb rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e43701c rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f4b9acd rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2c0571c rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa6707cd rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe58bcd2 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0957366 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd38248b4 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4aa8679 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd0191eb rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddfbb7bc rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe043aa53 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0512619 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6790669 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9f54231 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf189d44c rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf423212b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf65cba2d dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf93153eb rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb2058ce rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0274bf62 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03c76508 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0696b80d dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c14c1fb ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1278b07f is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20967e3b SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a57dc4f ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a976260 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34edc51e ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x371a787d dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ad04e49 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ee67846 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42813784 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4322fda7 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44ad3201 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47875ecc ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e122bbb ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x527882d2 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53294777 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x546f474f ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59773595 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a90bfee ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5db2c3f2 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75ba98e5 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76e8fcc2 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76f9a367 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77d7dbac HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78ae2062 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8024e33e ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89c38b00 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ae61c43 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9161afbd ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93adf128 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99cb81af ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cc6a22e ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f6a0fed ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa96c4cb9 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb49bd6cf ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcb84331 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcedad9f ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd818343 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0954587 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc315914f ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4aac6e6 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4eef5af ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7d345bf ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd76564ff to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5fa9a86 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6069a15 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7bef1f0 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed6296d9 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf394930d ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6a6d2d6 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x5e963940 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d5ef163 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7834caf4 vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7f469355 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8ff6c2b1 vchiq_get_peer_version +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x92b2feb4 vchiq_bulk_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9d6478fe vchiq_use_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xff54fd5f vchiq_shutdown +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x023135c8 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08cbfed0 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0df8d4d0 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11e16c9c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1485a6b0 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18b6a060 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c22507e iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a3a0751 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x306b0c0d iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3503fe3e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37232c40 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44ee16d3 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b5f5c80 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4dcdebd4 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x507c55f9 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54df222c iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x564af4ff iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61b02895 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x640c6856 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x661ff179 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7553f0cc iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x814db2b6 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88951249 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a38982a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x962b4d31 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e7a69dc iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa457e772 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xacb10830 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadad2182 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae186501 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb13977b7 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb33cc0df iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb786a68c iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb88cdcdb iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc90ccd58 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3232154 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4cdc951 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5deefed iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe830ea96 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef2a73bb iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3aa656c iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6fe75f1 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd34c76b iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe787770 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0943d1df target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x097427fd target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a404b5c target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d541887 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x10f453fc target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x11c77e56 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x14b693a7 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x15898b1e transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ee5ddb7 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x222ad688 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x24ba6cf3 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x25484b64 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x26bac884 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x2908f4d6 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x33628935 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x34e1b184 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3efeac6c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x456a226f transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x477b6fc1 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b6ec9dc target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bbc5d25 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4da84ab3 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f63bac4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x558c9d72 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x55e95b5d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x572e8b48 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x572ebebc transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x57c8d7a3 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x58516cfb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c4bfd4b target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x63c6e223 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x658e2c26 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6665883f transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x69662a0b transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x698ae203 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b8e0798 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cc5c2fe target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f5bf4bc target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cd0e06d sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x8133c14d target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x862caf27 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x873efacf target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x87720a1d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x9207c2cd target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x93948b47 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x95205339 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x9758b300 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x9864f07a __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a539926 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4b80e56 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8b75e74 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb125f0d1 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb138b27f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xb48f4ffd target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6ee36d2 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xb834efae transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe1eb1b6 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc77f4992 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0ec814a spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2132c8a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd35ec914 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xda15076f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xde8a9e26 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xed05a47d target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xeec16d8d transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xeecec0a4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xeefa31d3 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0ae9e10 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1d4284e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf41e6d74 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc554839 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd393375 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfded9609 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xcf4fda48 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x48d09aaa usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xcab18b7e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25ec821f usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3d25b360 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x495619ed usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4e4524da usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5a332917 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7169d327 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa7f53b4b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb6945121 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb7ef3cd8 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9c6b22b usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc90177fb usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x0fe3b9d5 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xea6ca908 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x232c4a2a mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x32079f2a mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3a762038 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8b7c4810 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc2cc7a98 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc85affb2 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc980ae06 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdeff9a67 mdev_register_device +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x2d82662c vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x43542d96 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x5c835e86 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xc43fdb3e vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x2cce0b12 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x63f49c99 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x700e0205 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x77cbe3c2 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x82309bac lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcf85482c lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x19d76e5e svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1dbf4031 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b9847a7 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80a0622c svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa71a5865 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcda30605 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd270f0bf svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc30fe5c8 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x64b7cab3 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2dcf9bdc sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xc5ac573a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa388f3aa mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x382bf8fb matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9bd9c9d8 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdf6593d5 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x309da9da matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5293a180 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x79b2c2e4 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x879772c8 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x87012805 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x07a63f93 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x45ade255 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5ac8949a matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5ccf53d8 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd3bc202d matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x28a6591c matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc945775d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x12353cea matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x544c48b4 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x62196f5d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x622bf09d matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9f3a2a0d matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0986d35d virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3aa1a01f virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3fa987b9 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb9f08186 is_virtio_dma_buf +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6b216d87 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6ca0a763 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x442863d4 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9aa5d843 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x2088bc46 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xdf150ed2 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf34a63fb w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf371e113 w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x0ac8d21d __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x239a2769 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x281264a6 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x284d616a fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x2875b76f fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x2baa89a0 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x31594452 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x37ab9aee fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x38d9c338 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4c371d10 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x51d39e93 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x52439230 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x54912b0c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x5cd0399a __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x69a2b4b7 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x795c22f9 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x79b47b1d fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x8c8d3644 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x8ff87482 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xaa6be8ef __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb0d579c5 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb7974934 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xba69a7ab __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xbbcd23be fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xbd76f443 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc536a701 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xc7700e38 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xcc44714b __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xd331c31d fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd6f5528f __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xdaba1c35 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xdb71433c fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdc59d88b __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xe8117dd7 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xf708924f fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xfbf400bd fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfc18921a fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xfcb03c95 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfdff65aa __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xfe984778 fscache_object_mark_killed +EXPORT_SYMBOL fs/netfs/netfs 0x0134cc59 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x17a53bda netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x34b085f2 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x8837f56c netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xa2c79dc1 netfs_subreq_terminated +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1a2c73d3 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x38f58ad7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4577a367 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x6b9eeee9 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc0fac21c qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xc1c42861 qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x00475622 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb245709c lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0c9c41c5 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x378ef4d9 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x81b41511 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8a704b22 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xabc3a813 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe7c25183 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x79a98f72 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xfe9d0ffd register_8022_client +EXPORT_SYMBOL net/802/psnap 0x06a4c73a register_snap_client +EXPORT_SYMBOL net/802/psnap 0x99a01e9f unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x015095b7 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x04a0ff79 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x07d04a77 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x145010a5 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x1b0ae2cc p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x21c34bee p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x229cdb86 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x242dfc8a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x2468e764 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x365a6999 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x37747dc5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3c96689c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x44a3407d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x522d34c8 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x5295ed42 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x53ebbefa p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x5d459ec5 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x5fa01e19 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x67b97306 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x6d562acb p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x75dca722 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7adb0a82 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7c5dec32 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x7d5bc119 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7f6580a3 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb9745c8c p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xc27496d6 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc49c2d15 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc902bc63 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xcad205f8 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcb5e50c9 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd4842e08 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd9ee858a p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xdcccea5e p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xde36ce72 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe70f9ce8 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe91a2d7b p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xef3a1d4b p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xf8398742 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xfa80230c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xfa8572a5 p9_is_proto_dotu +EXPORT_SYMBOL net/appletalk/appletalk 0x6aa69fd8 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x77d4bea9 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xe21cb388 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xebe6f0b6 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0b896f7e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x299e4ec1 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2fc15af1 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2fe24358 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x5dc2ddaf atm_charge +EXPORT_SYMBOL net/atm/atm 0x6215ea3a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x6359c90f register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6ffb5687 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7a392cfa vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xafaccdb8 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xbc8a8343 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf798e62b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xfc34edae atm_dev_signal_change +EXPORT_SYMBOL net/ax25/ax25 0x005488b8 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1b935ec7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2911db8a ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x63d079cc ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x78ab0d35 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x99acff67 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc5c12d44 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd7ae2373 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07041bf3 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08d55756 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fc1736e bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14627bb2 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16f33af4 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18d3fa82 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25a6e70e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b355b92 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c8d3c46 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x346c1867 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d36f5a0 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f384bca hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fd5c8ca hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5396fde9 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5526a2fe bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x558018be hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x589abcc5 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b063d60 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dadc908 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fd6732a bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6609ec80 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68747bad l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69b40499 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6bab5133 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c82706e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ded2758 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x792984fb bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82199d3c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c6df7dd hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x94412c28 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98ef6b25 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d3a6a65 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9da68214 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8c738a7 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf1d55e2 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc621bd53 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9b072f1 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0be8ba1 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8f909af hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddfb6eb7 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde7ea54f bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2c69680 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe74c8473 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf676e9bd bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6a7a527 hci_recv_diag +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0bf6e674 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x346221a8 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x37b5aefb ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6eda7d67 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaaa01364 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb0504f45 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1f1c9bea get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x28883f28 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7b5a2017 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x807c5c3f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xab38f8fb caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x20ca0bc8 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x2f787759 can_send +EXPORT_SYMBOL net/can/can 0x3e0ed83e can_proto_register +EXPORT_SYMBOL net/can/can 0x66f5f02d can_rx_unregister +EXPORT_SYMBOL net/can/can 0xa2a417eb can_proto_unregister +EXPORT_SYMBOL net/can/can 0xbfc0b7f3 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x0332bffa ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x04754b45 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x04a8d54f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x06404c9e ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x0a314233 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0ac5c9a8 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0f7c73d4 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x10ac4ac2 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x1171f546 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x1172476e ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x1e5d745b ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2076e986 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2471c8e1 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x25b290ae osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x263a4919 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x27e35681 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x28c8c072 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2b47f295 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x313d769e osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x339280c6 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x344a012a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x348e6e0c osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3bb55f19 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3e6d27cf __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3f0beb70 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x460a2225 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x461bb036 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x465786c2 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4880c1bf ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x49ea65a7 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x4b06be94 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x4e46fa53 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x52d52926 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x53186c49 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x5453fee5 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x54cff298 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6787930a osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x683515d4 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6d6eaa0f ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x6e0fcff9 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x709c4c84 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x70a8ca38 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x712e6d5b ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x71e6c494 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x73c29203 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x7597d63d ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x77884233 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x77be3a22 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x7a7a9787 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x7beb4880 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x7f054293 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x8009b02f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x899ce7be ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8adc77aa ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x8cc28d7b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8df4f2e5 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x8e0983f3 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x8f5b3c91 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x9080d810 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x91bdb9b2 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x923edcfa ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x933594bb ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x93b11a54 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x96b30504 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x988d618c ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa323b8ca osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa85d7b98 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb258a84f ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb57a1515 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xb69f605f ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7ea7e88 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xb8acd168 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xbcad4e4e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc1a84115 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc2d29c41 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcc9c20c0 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xcd64815a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcf494898 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd0de96da ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xd2ef2b65 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xd3890fb5 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xd3a42126 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xd3ae1b2e ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd5813e0a ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xd9097e87 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xdde9062c osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xddff00d1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe0709737 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xeaf6d35d ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xece3aa08 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee6e883d ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef276671 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xefed7b92 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf3d365a9 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xf6b2b65d osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf9b55410 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xfa45c751 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfab5d64e osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xfc39711f ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xfdc42aec ceph_osdc_alloc_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x12d886a9 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4dda7e9a dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x0178db8a is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x3eba6120 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ac159de wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6b43e378 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8fd074c4 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9fdb20c6 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa02dc173 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe85ce4c4 wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x8d6c877d __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd9663e2f __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x6885f445 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0ffed5ff ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1100d3b4 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4880c06e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x836fab94 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x41ecb31e arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x60b08357 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x844ab836 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd8030c04 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5534a2e1 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xba74a68b ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf775866c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfca7b1de ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xac8edf11 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xd610c969 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x29896c0a udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0c649150 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1b482d68 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x53d4f670 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x59b2080f ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7474daaa ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9a747c3e ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb193e699 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc5c7cf94 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xffeec1a1 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1ac88f16 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1f24a073 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa54bb7f7 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfe362e0d ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x36c8988c xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x68020075 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x92155ec8 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd8f77624 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x0975b7e5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x431d72ba lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x4dc2f050 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x60f71b38 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa50d4dcb lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xbae8ac64 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xc437c124 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xda34aae1 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x0a853cf6 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x50dfaa06 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x78bc2aff llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x9a1ce9f6 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe43d2104 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe6096792 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xfebd28b6 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x03d129f1 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x05baa0d5 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0a2bf399 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0a716805 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x0b4762b5 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x0c9d698f ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0fa0e899 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x12c3750d ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x149e5bcf ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x150893fa ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x16ab48df ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x177a12a6 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x17d82b2f ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1881c5c1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x19fea056 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1e6e1c00 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x1ecdacf6 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x259a8171 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x28869d44 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2ac96015 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x2e604ae1 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x2f529b80 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x30c9fd8d ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x33e09dc2 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x38dcba8d ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3a64371c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x3f339474 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x4043cee3 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x432ac2fb ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x4dff12d2 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x4f3af425 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x52f8914e __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x569c675c ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x589b3935 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5cde869f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x5d2a75fc ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5dca41a8 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x5f99e066 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x676ff75c ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6dc7ca82 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x6fdd660d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x71f4e569 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x72ce5aa5 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x784c942e __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7ae6f681 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7b1c7bed ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7b60ee37 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x82dd554d ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x84a629e9 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x880851ab ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x88b5582c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8a134470 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x91abef15 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x924cb6b5 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x9488ac3e ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x9870d78d ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9927be88 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x994d0340 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9dd6f85b ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa0cfe415 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xa3955e48 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa41be389 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xa555fef2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xa63cd819 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa6f320ad ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xa70ac1b0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xa7f8f1b1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa8d6fd0f ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xb1e66fc1 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb2248167 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xb4dd43a5 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xb547a663 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb612c98e ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xb6170829 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xbecdbcd4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc0b656fc ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xc26bb461 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xc2afb249 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xc77292c5 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc7d93e92 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc91b97a4 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc9b5866a ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xcb3b5794 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcc015ae4 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xcc5842de ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xcfca7c19 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdac918ca ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xdcdbaee3 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe16e3333 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xe2b4da70 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe5e8b5b0 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xecbea906 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xee0804bd ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xef0fe64a ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf246459c ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf2c30692 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xf2d99b6c ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf2e5222f ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf9444bb1 ieee80211_rx_list +EXPORT_SYMBOL net/mac802154/mac802154 0x10a2104f ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x28b9da93 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4760f3ed ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5daabbe4 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5ee41824 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xb587e0cc ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb96a0b64 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xe4ec5cc9 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10ecdd44 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1171bb6f ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1568d1b8 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15aeebd9 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1eb09716 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x23d2b096 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2b74b416 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e75efec ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4be83dae register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6aeb340f unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89341776 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e29c0dd ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f26d504 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd31c6ea6 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfecefe9d unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc8740d09 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x10c06f96 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xa09df5b0 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbb4cf248 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xf1ff3f10 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0680e3eb xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x112917d7 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1b5ca85e xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2613afd0 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x2fee3d3f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x476f6f89 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4baa627a xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x85ee4028 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd73fbf3c xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfac11cb2 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x13082a12 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x2010089c nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x23bccc17 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x2b188750 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x3e8a231d nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x407a11d6 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4ff9ca62 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5146530f nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x5dccfea2 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x6159209a nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x8af1fbbb nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x907ae5ea nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x90977985 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xa5009727 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xabed86a2 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xc942897a nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xce3ff1aa nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe4168479 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xedc053c2 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf1f45610 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xfb1fa54a nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x020ae2c0 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0a901802 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x0c2b92b1 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x118b0f1b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1a70cef7 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x29cf44df nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x3243fdbc nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x32dfd474 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x48b1103b nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4d0e04eb nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x592d3053 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x75c64638 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x87d97b3f nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xaad594af nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xabcd71cf nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbc74e360 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xbd5506b8 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc34abba3 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xc40e7207 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc811e813 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd689ccc3 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdc77c19a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xe045da72 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xe3f4b87e nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe52ecca9 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe99947fe nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xebdb17ff nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xfd1a88be nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xfdea0661 nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x0ef4bf10 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x19e3819e nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x1dbb8fd8 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x1f5c4fa5 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x1fce49d1 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x2038e190 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x3a523fc0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x50d45075 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x6e87e0d5 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x73714202 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x7849670e nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x78dc0b0e nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7ce0be6d __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x8330b03c nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x8907bc1b nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa6321f11 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xa80eb449 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xac069f2f nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xb4682bc0 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xb4eab44d nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xbc47d29a nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xd22c808d nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe1b05081 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xe5130f46 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xe96bc3d9 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x40f6a90a nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x4623e3ba nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9950fb2a nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf5f4f748 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x19bb4478 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x4ed1d261 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5d293476 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x7d107931 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x976de932 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xac98fd50 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xd1d89511 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xed05b35b pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x173b8a88 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2129a159 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x21ca9bf4 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2295461a rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x29e382f3 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x479fc04c rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4c28afb0 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4f9d1309 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x51288684 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d882273 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e205424 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x92dc464c rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa95d7398 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xba8206be rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd6f35754 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdbfc98a7 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xed8428cb rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfef5f78a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/sctp/sctp 0xd01c70a5 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x24401d13 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x45e5eeca gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7f4b1378 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x057c8817 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4143542d xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4abb636e get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe7522c70 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x05c7c5e1 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x9db52b96 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xb9b6e301 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xc3aeab11 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0xc54b2262 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x014977f5 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x018f706e cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x02784a0f cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x03c039f5 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x06045934 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0937edca cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x0bc1c4bb cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x0d049098 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0f7b9c41 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0fbd3447 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x0fc6cd1a cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x1008a8f8 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x15ca0f2c cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1bdf069b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x246701f9 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2593a5f7 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x26b2607c cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x277fd73e cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x283256b0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2bcf21dd cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2c936359 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x31b9a0ac cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x33dd3a77 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x358711b3 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x35874e41 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x37dc2ad7 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3bf025f0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3d729c13 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x42c1e173 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x42e20617 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4c5f80bf cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x50d30506 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x51c669e7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x53664f0a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x53ba0269 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x576b38c6 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x5a27246c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x5c12842f cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x5c6cd29d wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x5dc1e677 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x63f26b83 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x65675595 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x68a51244 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x68c8d51a get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6d1baec8 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x6e7b7342 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7753938a cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ca56a01 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x852b0dc7 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x87d187bb cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x8da102b1 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8e217482 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9197019c regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x97ada45c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x9c6038c7 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9dec8ebf cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa021ec7e cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xa35663ea regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xa646c72d cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xade910bc regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb091a707 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xb4e0d65c cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb80cd9a7 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb9fe1402 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xbce4f693 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xc1798e79 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc38d9ba6 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc3e3c76d ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc6f77dd6 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc78a45da cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xca2d178a cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xcbdc3761 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf391689 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd214233b cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xd2193f90 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xd30c535a __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd5731a97 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xd85f419b cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd98f84b1 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xda4363b9 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe0ff6c92 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe253c42b cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe83815e9 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xe85a7d2c __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xea04970f cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xecc82850 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xeeef8a31 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xef327a56 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xef53cff2 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf1d253b5 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf34a2d7c cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf3c8e8b3 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xf42b5b05 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf92ebd89 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xf98b2e13 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xfa6e6f7b cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xfa98b74a freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xff994fbf cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/lib80211 0x303be535 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x35ad104e lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4a031487 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x67b86b64 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7d2585ab lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xcaf0116b lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xf160f7f7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3447230e snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x41d6e7bf snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x53158c82 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x965c5691 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb3d655ee snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x4b02c08d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0278b6ef snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0702580b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x097b9d3d snd_card_free +EXPORT_SYMBOL sound/core/snd 0x0a96c343 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x0b032885 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x0cea7436 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x0f34a661 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x14d00293 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x15d52849 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x19a446cb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x1f5b852d snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x23b78b7e snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2a9713bb snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x2c539e35 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3afe352f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x4a37655d snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x50eb0757 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x51055a06 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x543d8c9b snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x5e27a61d snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x61904bf8 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x72f9acb2 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x73ff37c7 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x741a4325 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x75853255 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x77b995d3 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x7f284307 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x8676280d snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x87678077 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8dac6ff0 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9b567259 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x9df362ad snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa24148c3 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa9857c90 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xac72eae5 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xad0a79b3 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xae1799e4 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xb07a6ba9 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbe4b8ef8 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xc5437502 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc631957a snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc8c61f15 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xcbc88027 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd609b9e0 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xe26797ef snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xeed260f3 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xf768f619 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xfa8d0fef snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x7148ac5c snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xc65bd706 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x3b902418 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03f67d31 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x061299af snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x0a790aa5 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1212be97 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x1562d9bf snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2042d98b snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x26c601e0 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x293df7e6 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x2ec113ee snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x3254a7db snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x420e2699 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x4fd483a0 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52b140b2 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5d8e4dca snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x648d2ae4 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6d9fc501 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7ea36c75 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x81a96813 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8361193b snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x8ac44948 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x91dbe3fd snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9a59464d snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa5d190d2 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaad66326 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xac390ea4 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xad5afb5d snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xae161d8b snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xb475101e snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb6f277a0 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbc8abc53 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xbf531318 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xc0adeb89 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xc0d97b90 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xc2b0d936 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc7d2f310 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc8eea8ad snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xccd58447 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xcd75f814 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd74b5971 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xdb9d851b snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xe4b97240 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56052a0 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8aadde0 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xee66bf5e snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf13aefa6 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xf4e111c0 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf50d28d0 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xfe50cf25 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a8ecaad snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x634f0ddf snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x66d7239a snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69f4fe56 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ae67d85 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e283e21 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x757876ff snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x78516095 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7add12b2 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x83d92813 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x95a43e2d __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8cf0b7f snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1aec2f1 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb50ec76e snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5ca2f29 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6e8b2f4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc04fe971 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe2be4e76 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8a66ea0 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xeebf0d62 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xb6c12140 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0205c340 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x0d5e0ef1 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x279d5cbe snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x32dde330 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x338da563 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x3d388b61 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x6ab796f6 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x786447f4 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x9da38ba9 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xa6f93f49 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xa7f78c5c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xf12fff0c snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf188e4f8 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xf6fbbd26 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfc518aaf snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x7c5e5251 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0162de51 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x027d1265 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0ae1fc9c snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x34f59ea6 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5869df38 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6930953a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf1518a4 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc28ca0bc snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd619130f snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1615daf6 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1a65f620 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2e6eba33 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x301522a8 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x375417e9 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3998199c snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x555dd076 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6135f27f snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfabeaa5c snd_vx_free_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17c4a4eb cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bb37d5b avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c306026 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c72f434 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4542f7a0 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4dd0ffdc amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x569a89c3 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e4bbfe4 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64df5599 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fb34ddd fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7509ccc1 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7a16b611 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8dd2ad8e iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93a520f4 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9508f855 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6ea57ba amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0e6e2c1 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3ce9024 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb770e5d snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbce580c8 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbea17480 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca5f4685 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcec4579e cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd27876ea amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd304ce04 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4492489 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd99a29f0 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdcd09892 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xefe3d703 cmp_connection_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3ff6f639 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x4d4b605e snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x04cc6036 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x11c06a40 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1bbb5aab snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x376a8ebf snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3cd5f8ec snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6aad437c snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8e9a39f8 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb20cc2d3 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4bcf867c snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4dd3edf3 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x845810cb snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x86e787ee snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3ebe005d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4db1bcc9 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x02661545 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1e6591d2 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x89886fe7 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8ad35c78 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x95730f56 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd0f4fa0d snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x11bebf7e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x31b8c8ad snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x55d3833b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x94881088 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc581a989 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xed3bed5b snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c4f86bd snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1fe896b0 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b2f7276 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x51b6e2b6 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5bbbe399 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x72c143f7 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fdce841 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80adefa9 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8cb0deda snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa928fb84 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf041ac0 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1386483 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb2031966 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0f24a33 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce46de16 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd0d8bb09 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe3861f33 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0db2b6f6 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x63ba4e05 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x777a6c9e snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7ccc8aee snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xab9fc946 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb2c40dd4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xeb22b8d3 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xed6a2ccf snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xff6827b8 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2852b219 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x93fa570d snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe503e97f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19490fca oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26cfb3c6 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34b0b51d oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36f49a2b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3737ffd7 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b6371aa oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7064d898 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d8d6e75 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7ebd169b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90a35db5 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90f1289c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a50ac59 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8214922 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbb5e0721 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc14b18c2 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7178ceb oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7726f83 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd859b80 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd8e8c01 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe280ec2f oxygen_read16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4a83e967 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4f5bdadd snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7903b32d snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf08c617a snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfacb2d6a snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xe6a39934 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xd9093bfa wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x57a88214 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xdd7d6c32 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x3dc853ef tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x51a632e0 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x642f2607 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xad967e3d aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc0ce1329 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xbb444e42 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xe0e871c5 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x0b65f0fa wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x50271cbd wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd6c772db wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x81bc5171 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xf7172481 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x245063f0 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x46b3cd43 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x15337d65 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xf0df217e snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xb16f8d1c imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x6a4d4648 sof_imx8x_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xbff37662 sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x357d0371 sof_imx8m_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02f77ab2 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06e7e97a snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b5c7a2f snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b8189f8 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x15a55946 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1606c8fa sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20e1f170 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21901999 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23e906e1 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x244500f5 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2624aa5e snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26c344e7 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f098735 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34be2df2 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35a954b4 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x369544be snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38de1662 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x430f9480 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4580aaaa snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45f9e0fe snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x47d05d52 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d971a2c snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x549563e2 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59ce06b2 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ad2410e snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x640a4996 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6559facd snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x663ba806 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a160ced snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7170c243 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x71ac5136 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x860231e2 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91770c43 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93f40cf6 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95340cfa snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa2c91819 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa2dbb08c snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa42839de snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6e62a08 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa76268db sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1da1418 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8c1f258 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc9c9a88 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd2581b6 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbea9cb3b snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf225470 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc476e0ba snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca641ef9 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfe3c103 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfe871b9 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd640d3d4 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd839e914 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd06c7b3 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5f3b0c3 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7bed3b8 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa7b8c4e snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb305819 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb3112f2 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soundcore 0x2fb4c5bb register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x5d1bfc0b sound_class +EXPORT_SYMBOL sound/soundcore 0x76f9a811 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x87e89334 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x901fc85d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x20c8cc30 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2c306ab1 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6dee8f2b snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7a1ec19c snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x890da37d snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf6cce85f snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xa62907ce __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x0013395f security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001da82a flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x00239b49 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x003f522c fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x0044aa6b __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x00499c36 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x009caa1b sock_no_bind +EXPORT_SYMBOL vmlinux 0x00a5609d pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00ce81c8 put_cmsg +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d9f961 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x00e5e545 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x00f139c4 get_tree_single +EXPORT_SYMBOL vmlinux 0x00f2f0a5 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x00f519cb mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0104d032 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x0116e646 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x012e41e6 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x012f5c8d genphy_loopback +EXPORT_SYMBOL vmlinux 0x0130befe key_payload_reserve +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x0151656b mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x015b2358 input_unregister_device +EXPORT_SYMBOL vmlinux 0x0164f17b of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01965f38 inet_frag_find +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b7b22e ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01f92271 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x01f9cec6 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0229bb64 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x02373547 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027b19b3 xp_alloc +EXPORT_SYMBOL vmlinux 0x027f3892 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a037ca dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x02a1840d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c15d9f amba_driver_register +EXPORT_SYMBOL vmlinux 0x02d4713c __register_nls +EXPORT_SYMBOL vmlinux 0x02ddb181 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x02ddbd13 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x02e3c768 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x02ed4589 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x02f0d8cb pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x02f2e295 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x0333d0b4 user_revoke +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0335da2b bio_chain +EXPORT_SYMBOL vmlinux 0x034282fe scsi_host_put +EXPORT_SYMBOL vmlinux 0x0344c731 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x03553dfe tty_port_put +EXPORT_SYMBOL vmlinux 0x035897c4 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0391b68b key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a1823b dentry_open +EXPORT_SYMBOL vmlinux 0x03ad29f8 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x03b2e58f of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x03b89545 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x03bef85c jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03d700d7 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x03db5412 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x03f1e7e3 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040720c6 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x040a677a filemap_flush +EXPORT_SYMBOL vmlinux 0x04302385 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x04316792 neigh_xmit +EXPORT_SYMBOL vmlinux 0x04366eeb inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x043f44ff splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0468d5fd devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048cd9cb devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051c61d7 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052f3efd acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x05409f57 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x054378e7 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0545579a iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x059c258d vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05a18b77 block_truncate_page +EXPORT_SYMBOL vmlinux 0x05a21f32 rproc_add +EXPORT_SYMBOL vmlinux 0x05a55abe __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x05cd7f2d d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x05fe7d91 netdev_features_change +EXPORT_SYMBOL vmlinux 0x06001110 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06236d9f tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x0625aa15 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x062888e7 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065b1bfa __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x065fb387 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0670e6a3 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x06aa5ebb skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x06acdcc5 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c332dd sock_create_lite +EXPORT_SYMBOL vmlinux 0x06c371db user_path_at_empty +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06d3d113 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x06f8ccb6 filemap_fault +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x071d4bf9 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x07211dde dev_add_pack +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0744c6b3 mpage_writepages +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07469981 security_path_mknod +EXPORT_SYMBOL vmlinux 0x075ff6bf rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x07696636 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x077ffb2e sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x079cfaa6 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x07a521f5 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ac21ae node_data +EXPORT_SYMBOL vmlinux 0x07ca1d3b tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07e04082 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f641eb cad_pid +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0801cbd6 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0808da62 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x080ae389 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081d4118 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083d8bea acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0851d241 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x085cda4d pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x08661a01 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x0875ae50 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0892ff2b mdio_device_create +EXPORT_SYMBOL vmlinux 0x08cad8f0 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x08d6d540 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x08e143f3 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e3dcb1 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x090d9195 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x09262247 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093e237c xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x094f61ea scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x094fa719 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099462bc kill_block_super +EXPORT_SYMBOL vmlinux 0x09970496 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x099791f1 neigh_lookup +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099f7f1c __SetPageMovable +EXPORT_SYMBOL vmlinux 0x09a62735 file_ns_capable +EXPORT_SYMBOL vmlinux 0x09ba4b39 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a029bba tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x0a0aea39 _dev_emerg +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1121d4 del_gendisk +EXPORT_SYMBOL vmlinux 0x0a1360d8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append +EXPORT_SYMBOL vmlinux 0x0a366a1f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0a48e1d8 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x0a4acf2d msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x0a4cc292 phy_suspend +EXPORT_SYMBOL vmlinux 0x0a53802b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x0a5504b3 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x0a64d4dc vfs_get_link +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaca2c9 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0af1ecb6 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x0af61d5b seq_printf +EXPORT_SYMBOL vmlinux 0x0b02f362 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x0b06879e padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1ce124 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b29d2ec ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b2d919f I_BDEV +EXPORT_SYMBOL vmlinux 0x0b41bccc phy_write_paged +EXPORT_SYMBOL vmlinux 0x0b4e287b security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x0b576c76 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0b680928 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x0b69a292 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b81f41d pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x0b890836 sock_release +EXPORT_SYMBOL vmlinux 0x0b983f8a dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba136fa dump_emit +EXPORT_SYMBOL vmlinux 0x0baa0d43 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x0bbca82e inet_del_offload +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc1f56d hmm_range_fault +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcecf0d sock_init_data +EXPORT_SYMBOL vmlinux 0x0bd46931 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x0bdbaadf migrate_page +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c12ff35 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x0c217a91 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x0c24415c request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3660f2 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x0c390c01 follow_down +EXPORT_SYMBOL vmlinux 0x0c46dbae mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x0c4a8bbe cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5f1f5e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c9689a7 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0c98e151 vfs_setpos +EXPORT_SYMBOL vmlinux 0x0ca2ed0f kernel_accept +EXPORT_SYMBOL vmlinux 0x0ca8a0f5 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x0caec60a framebuffer_release +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ce6bad3 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x0cf22ed6 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x0d077021 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d218b7f tcf_action_exec +EXPORT_SYMBOL vmlinux 0x0d24bd44 __brelse +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d346434 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x0d3bb282 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d623a0a amba_device_unregister +EXPORT_SYMBOL vmlinux 0x0d6becf0 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x0dab55ba pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x0db05bd5 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0db8a61c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x0dbe6cdf __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x0dcf7337 empty_aops +EXPORT_SYMBOL vmlinux 0x0dd5f022 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x0de94d36 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x0df16802 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x0df7fe27 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e36fc57 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x0e3cab78 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x0e5e19ef sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x0e683a39 inet6_offloads +EXPORT_SYMBOL vmlinux 0x0e73aecc __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e934bb2 d_instantiate +EXPORT_SYMBOL vmlinux 0x0e9b648e neigh_direct_output +EXPORT_SYMBOL vmlinux 0x0e9f607a seq_vprintf +EXPORT_SYMBOL vmlinux 0x0e9fa916 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecf4321 pci_request_irq +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f286b86 pci_restore_state +EXPORT_SYMBOL vmlinux 0x0f2b4feb jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f62a956 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x0f65edcd __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0f66b356 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x0f6e738f inet_getname +EXPORT_SYMBOL vmlinux 0x0f7966f9 simple_lookup +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f91d171 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x0f95f755 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x0f99c54a param_ops_charp +EXPORT_SYMBOL vmlinux 0x0fa1cbd2 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcca250 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fd9ede0 input_match_device_id +EXPORT_SYMBOL vmlinux 0x0fed8667 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x0ff5c58c kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1004e77e pci_dev_driver +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x1026ec6a rproc_free +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x102c5851 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x1034b7af vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x106170f9 _dev_printk +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1077d1fa netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1085a9e2 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x108cca8a pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x10b4ccf8 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d6c253 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11091757 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x111250ef tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x111a180a textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x112154cd phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x11351dfd devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x113c56a8 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x114444f0 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x1163b35d __put_page +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117a06f4 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x118055f0 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x118ee816 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1197ee87 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x11acd75c bdevname +EXPORT_SYMBOL vmlinux 0x11bc23bc of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x11ce581a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d52909 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11eced7a scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120277fc inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1203ce00 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x12096e18 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12171b97 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x123a8fd9 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x128511a5 phy_read_paged +EXPORT_SYMBOL vmlinux 0x128b913c devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x129a2c04 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12bfa1da __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x12c3a270 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d911e0 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12f71fad crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x12f89252 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x12faeb39 freeze_bdev +EXPORT_SYMBOL vmlinux 0x13066684 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x13094c3f tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x130f7c1f rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131b26f7 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x13228dea param_get_short +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1346f962 unregister_nls +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135c1d79 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x138046bc mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x1388cade dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x139609a7 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a3831d blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x13bdbb8d jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x13c932fb ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13e34a06 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x13e63338 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x13eaef65 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x142f3aba twl6040_power +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x143f8ace pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x146696f1 clk_get +EXPORT_SYMBOL vmlinux 0x146a8d39 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x146cebc8 make_kprojid +EXPORT_SYMBOL vmlinux 0x146e2c8c rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x14710250 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x14743c13 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x148157f9 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14a4e3f0 inc_nlink +EXPORT_SYMBOL vmlinux 0x14aae9d8 mdiobus_read +EXPORT_SYMBOL vmlinux 0x14af8d0d vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x14b098a0 __pagevec_release +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14bb5963 vfs_getattr +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14c83149 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x14de69c8 of_root +EXPORT_SYMBOL vmlinux 0x14ed8a29 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f773d9 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x151101b3 input_close_device +EXPORT_SYMBOL vmlinux 0x1516ff5d inet_sendpage +EXPORT_SYMBOL vmlinux 0x151c2b45 pci_request_region +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153cdc45 skb_dequeue +EXPORT_SYMBOL vmlinux 0x15420ac1 poll_initwait +EXPORT_SYMBOL vmlinux 0x154a0380 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1553c4e9 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x155dac45 kset_unregister +EXPORT_SYMBOL vmlinux 0x1564577f i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x158b4c7f pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x15960bb0 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bcdb51 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15ca46b8 bio_copy_data +EXPORT_SYMBOL vmlinux 0x15df9fac thaw_super +EXPORT_SYMBOL vmlinux 0x16053a1f phy_device_create +EXPORT_SYMBOL vmlinux 0x1616bf72 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x161d0dcb mr_table_alloc +EXPORT_SYMBOL vmlinux 0x16245199 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162cd3b9 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16537049 input_grab_device +EXPORT_SYMBOL vmlinux 0x167188e5 seq_putc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1682c5f7 bdi_alloc +EXPORT_SYMBOL vmlinux 0x168674ca generic_delete_inode +EXPORT_SYMBOL vmlinux 0x169303a4 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169d5d8a migrate_page_copy +EXPORT_SYMBOL vmlinux 0x169ef353 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x16a15e2a md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x16a46f34 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x16cb4241 vga_put +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16e90dcd xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x17003193 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x170c50eb skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1712dca0 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x17166242 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x171d4a7b iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x172923c5 qdisc_reset +EXPORT_SYMBOL vmlinux 0x172b8e4c bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x172bb668 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x1730d1f0 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x17353d0a of_n_size_cells +EXPORT_SYMBOL vmlinux 0x1737fe78 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x173e7651 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x17461e07 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x176082a3 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17841f78 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x17996998 dev_mc_add +EXPORT_SYMBOL vmlinux 0x17caa97b pci_disable_msix +EXPORT_SYMBOL vmlinux 0x17d0126e fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x17d4b24a dcache_readdir +EXPORT_SYMBOL vmlinux 0x17d726af from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x17e047d7 sock_set_mark +EXPORT_SYMBOL vmlinux 0x180a8089 config_group_init +EXPORT_SYMBOL vmlinux 0x18182233 bdev_read_only +EXPORT_SYMBOL vmlinux 0x182843cb pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x182e05a0 mount_bdev +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18538396 dst_discard_out +EXPORT_SYMBOL vmlinux 0x185ba0c3 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x18604a3b devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x186fe9bd vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189dc3bb iov_iter_npages +EXPORT_SYMBOL vmlinux 0x18a27c1a reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x18a449c7 cdev_add +EXPORT_SYMBOL vmlinux 0x18b35aab uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18b5e28f i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x18b93fd8 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x18c1a511 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x18c2b683 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x18e0189c dump_page +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e783c2 sock_register +EXPORT_SYMBOL vmlinux 0x18e90499 tty_port_open +EXPORT_SYMBOL vmlinux 0x18f341bc ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x18f83705 bioset_init +EXPORT_SYMBOL vmlinux 0x18fd411a mmc_can_trim +EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x193a9750 fb_set_var +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19653061 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x19673c82 dev_activate +EXPORT_SYMBOL vmlinux 0x19753897 dst_release +EXPORT_SYMBOL vmlinux 0x1979674d blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x19826054 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x1987dc3b mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a9e2fa set_posix_acl +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x1a060373 seq_write +EXPORT_SYMBOL vmlinux 0x1a08873e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a1eb198 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1a25989a mdio_device_register +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a495da9 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x1a565cc7 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x1a58671c of_match_device +EXPORT_SYMBOL vmlinux 0x1a6e9209 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1a6fa1c7 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x1a763b98 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x1a9a1da6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aae82cc vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1abdc2b1 ip_options_compile +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1addae83 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1aef56a2 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x1afb4d64 vif_device_init +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0811bc param_get_charp +EXPORT_SYMBOL vmlinux 0x1b391714 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x1b4abf92 mmc_add_host +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b65f1c5 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x1b6ebd18 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b868195 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1b8e5596 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x1b9f08f8 elv_rb_add +EXPORT_SYMBOL vmlinux 0x1ba0a169 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x1ba1e884 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bd1f521 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdd76a0 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x1bde2b68 add_to_pipe +EXPORT_SYMBOL vmlinux 0x1bed6110 d_rehash +EXPORT_SYMBOL vmlinux 0x1bf02c9d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1c01b3c2 netdev_alert +EXPORT_SYMBOL vmlinux 0x1c214f86 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x1c28bd05 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x1c3b796b eth_mac_addr +EXPORT_SYMBOL vmlinux 0x1c3d9df3 d_set_d_op +EXPORT_SYMBOL vmlinux 0x1c4836a0 netdev_emerg +EXPORT_SYMBOL vmlinux 0x1c52c290 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x1c544c1c jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c7220eb pci_bus_type +EXPORT_SYMBOL vmlinux 0x1c89c9ee ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1c9293a5 to_ndd +EXPORT_SYMBOL vmlinux 0x1c95798b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x1c9916f1 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x1c9b74d4 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x1cabde10 neigh_table_init +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cd01955 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdaad8c devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1ce434a6 key_link +EXPORT_SYMBOL vmlinux 0x1ced93d0 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d278dba padata_alloc +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d5a8690 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d6011a4 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x1d90169f rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1da09edd set_anon_super +EXPORT_SYMBOL vmlinux 0x1da8e6ec rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd6c356 register_filesystem +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key +EXPORT_SYMBOL vmlinux 0x1de64d64 of_node_put +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1dfd7871 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0ac187 generic_fadvise +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e0f4947 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e2c30a4 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1e2cdfd8 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x1e3052c1 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1e40e46c from_kprojid +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e73a22c xudma_get_device +EXPORT_SYMBOL vmlinux 0x1e76d05b i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x1e7ccf8f blackhole_netdev +EXPORT_SYMBOL vmlinux 0x1e9cfacd pci_release_region +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea42226 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1ec0dbf4 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x1ec95c09 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee252c5 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x1f0c1c7a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x1f1e19c2 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x1f242c17 single_open_size +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f56eb45 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x1f606377 sock_efree +EXPORT_SYMBOL vmlinux 0x1f6841d5 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x1f698f61 request_key_tag +EXPORT_SYMBOL vmlinux 0x1f6a12aa tcp_child_process +EXPORT_SYMBOL vmlinux 0x1f7c8928 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x1f8baff6 pci_release_resource +EXPORT_SYMBOL vmlinux 0x1fa08d3a nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x1faaf647 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd4cfe7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1ff76205 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x1ff7b6d1 passthru_features_check +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20056f82 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x20077be6 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201bb89e fb_get_mode +EXPORT_SYMBOL vmlinux 0x20290093 devm_ioremap +EXPORT_SYMBOL vmlinux 0x202b5b64 bdi_put +EXPORT_SYMBOL vmlinux 0x2041103a udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x20490193 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20520e05 __alloc_skb +EXPORT_SYMBOL vmlinux 0x20561fa2 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x206044b6 udplite_prot +EXPORT_SYMBOL vmlinux 0x2076322e security_sock_graft +EXPORT_SYMBOL vmlinux 0x20a69461 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b0ed47 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2100c27a devm_clk_put +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x213902e0 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2141cf5f param_get_uint +EXPORT_SYMBOL vmlinux 0x21443937 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x2145870a mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x218f1b1b __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x219e6888 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x21aa7f83 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x21b94d17 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21cdb6a0 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x21d1c5c9 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e519a7 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x22112e14 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2212477e nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x223df1c4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x224990ef skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x225c2ed0 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x22615758 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x22746995 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x2285f2c1 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x2288c64b skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x228c3a23 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x229fdb68 update_region +EXPORT_SYMBOL vmlinux 0x22a9d7ba __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x22aef300 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b3fec4 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x22c0aafe redraw_screen +EXPORT_SYMBOL vmlinux 0x22c19948 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x22dae4b7 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x22e0df1a inet6_del_offload +EXPORT_SYMBOL vmlinux 0x22e59c33 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x22eedcf2 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x22fc8290 d_add +EXPORT_SYMBOL vmlinux 0x230d3a86 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x23100a60 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x23116a39 pci_iounmap +EXPORT_SYMBOL vmlinux 0x233b144a dma_map_resource +EXPORT_SYMBOL vmlinux 0x234f9e06 eth_header_cache +EXPORT_SYMBOL vmlinux 0x23507a10 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x23573c36 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x235b695f param_set_ulong +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23874e7a skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23964420 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x23b0aa24 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c7b7b1 i2c_transfer +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23ce9ae4 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23ffa7a7 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x24059907 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x24096f54 kobject_add +EXPORT_SYMBOL vmlinux 0x241aa26b inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243b7fa2 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x245154a6 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2493e50c dev_deactivate +EXPORT_SYMBOL vmlinux 0x24966f9f writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x249abc96 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x24a1824c scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x24a59225 sk_free +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24ed9126 arp_tbl +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2506470a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x25202799 wireless_send_event +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25466f7f bio_put +EXPORT_SYMBOL vmlinux 0x2548db9a unix_get_socket +EXPORT_SYMBOL vmlinux 0x254ce187 skb_seq_read +EXPORT_SYMBOL vmlinux 0x254e7703 input_reset_device +EXPORT_SYMBOL vmlinux 0x2552febf write_inode_now +EXPORT_SYMBOL vmlinux 0x2563b10c mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258ae2af ata_print_version +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x259e649c blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x259e9575 fget_raw +EXPORT_SYMBOL vmlinux 0x25acc7f0 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x25bb7b3c pci_get_slot +EXPORT_SYMBOL vmlinux 0x25bdee10 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x25c55031 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x25ca5e1f buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x25cf0b66 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e58e2a vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x25e7f1d5 param_ops_bint +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x2607a075 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x2607b45d flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260c3cd4 module_put +EXPORT_SYMBOL vmlinux 0x260fea28 input_event +EXPORT_SYMBOL vmlinux 0x2618a391 register_netdevice +EXPORT_SYMBOL vmlinux 0x26264bcd xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x263a1f5e rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x2683959a iov_iter_advance +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26b70543 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x26b79159 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x26b98fc5 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x26bdf939 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26db475b scsi_target_resume +EXPORT_SYMBOL vmlinux 0x26e07ca1 __destroy_inode +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2720cdf1 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274cf4ff __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x275611e1 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2769cd31 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27894abf generic_writepages +EXPORT_SYMBOL vmlinux 0x27974a59 vme_irq_request +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d78455 readahead_expand +EXPORT_SYMBOL vmlinux 0x27f072f2 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x27f46148 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2824a34e file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2833e5c3 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x28640636 padata_do_serial +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2886ceb2 backlight_force_update +EXPORT_SYMBOL vmlinux 0x28955118 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x289a3e16 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x289c0a43 unregister_key_type +EXPORT_SYMBOL vmlinux 0x28c11328 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x28cf252b sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x28dcdb21 udp_read_sock +EXPORT_SYMBOL vmlinux 0x28f0ce59 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x28f6d2ef blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x290ba99b km_state_expired +EXPORT_SYMBOL vmlinux 0x291e7321 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x292a651a ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x292ba9fb mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x2938561b i2c_clients_command +EXPORT_SYMBOL vmlinux 0x293ec855 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x294268ad key_move +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296b5f6c sock_wake_async +EXPORT_SYMBOL vmlinux 0x2977ab1a __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x2985c883 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x29a05fb2 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x29a767d7 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x29bb8f72 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x29cfaf30 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a00c55b pcim_pin_device +EXPORT_SYMBOL vmlinux 0x2a1efb8b neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a412f83 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x2a42dd78 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x2a45eedd mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x2a502708 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x2a5308ef tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x2a624869 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x2a64cffe compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x2a9581f2 set_blocksize +EXPORT_SYMBOL vmlinux 0x2a96b058 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa56803 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab869e9 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x2abc6d29 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x2acd5a14 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b313419 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x2b455002 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x2b474886 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2b56c24e phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b5dd9a4 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b7232bb fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x2b9c82e9 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bacba29 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x2baec256 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bc9a95b security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be533f2 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c1b9a3b dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c56028c pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x2c57daf5 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2c6c016f tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x2c6c0c0e udp6_csum_init +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2cc3e1cb mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd94b5a tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cebe90d serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x2ced412a devm_request_resource +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d4e6881 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x2d5b6d9d phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x2d5c3981 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2d604c0c inet6_getname +EXPORT_SYMBOL vmlinux 0x2d6104da max8925_reg_write +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d948b4d tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x2d95a2ae pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9e7814 __invalidate_device +EXPORT_SYMBOL vmlinux 0x2dac425c notify_change +EXPORT_SYMBOL vmlinux 0x2dad84a8 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dce6809 devm_free_irq +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2e03959e dump_skip +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0e9a22 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x2e11771f __break_lease +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c0083 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e67526e netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x2e876247 copy_highpage +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2ea9ef2c get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x2eaaa889 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x2eb4dfcd arp_xmit +EXPORT_SYMBOL vmlinux 0x2eb6b142 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2eca391e pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee8195d tty_write_room +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f10641c skb_append +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f38dc49 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x2f5a9b7a mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x2f5d1dc7 phy_device_remove +EXPORT_SYMBOL vmlinux 0x2f5face1 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x2f6b5b23 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x2f7354f0 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd274cc flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x2fd5a69f netdev_notice +EXPORT_SYMBOL vmlinux 0x2fd88757 new_inode +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff11b7e generic_update_time +EXPORT_SYMBOL vmlinux 0x2ffc5ca5 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x3002b8b6 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x301561b6 fsync_bdev +EXPORT_SYMBOL vmlinux 0x304ad4f9 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x3058c79d __getblk_gfp +EXPORT_SYMBOL vmlinux 0x306ec820 blk_put_request +EXPORT_SYMBOL vmlinux 0x306faebe mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x30834faf xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a3cb65 eth_type_trans +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c84a67 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f5dc7b of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x30f60f89 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x30f9788e inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x311bbabd netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312c7483 md_write_inc +EXPORT_SYMBOL vmlinux 0x31303c4c d_prune_aliases +EXPORT_SYMBOL vmlinux 0x3144841b netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x314e1416 param_set_long +EXPORT_SYMBOL vmlinux 0x3156c1d5 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x317467d7 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a4d49f tcp_seq_next +EXPORT_SYMBOL vmlinux 0x31bdf24b truncate_setsize +EXPORT_SYMBOL vmlinux 0x31c0fd83 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x31c3725f security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x31e86da3 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x31ec5332 set_cached_acl +EXPORT_SYMBOL vmlinux 0x320f56ee inet_listen +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3233150a ppp_input_error +EXPORT_SYMBOL vmlinux 0x3233eca5 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x324afcf9 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x324eb028 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x325761ea netdev_info +EXPORT_SYMBOL vmlinux 0x3259e852 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x3277381f neigh_seq_start +EXPORT_SYMBOL vmlinux 0x3279052c rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x327ccbb5 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x329678c3 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x32be650a generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x32bf3dca fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x32c811a7 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32cedfc7 devm_release_resource +EXPORT_SYMBOL vmlinux 0x32cfb348 of_get_parent +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32ed5a6b d_splice_alias +EXPORT_SYMBOL vmlinux 0x32f45b2d page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x32f9e72f is_nd_dax +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x3306bb37 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x3322b547 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3325e01a dev_trans_start +EXPORT_SYMBOL vmlinux 0x3327e32d input_open_device +EXPORT_SYMBOL vmlinux 0x3348078c pci_choose_state +EXPORT_SYMBOL vmlinux 0x33545765 input_set_keycode +EXPORT_SYMBOL vmlinux 0x335c4a92 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x336a4727 inet_addr_type +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33766985 input_setup_polling +EXPORT_SYMBOL vmlinux 0x33908541 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x33b389f2 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x33ecbcfe tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f36dcc no_llseek +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fecb9f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x340c962a register_qdisc +EXPORT_SYMBOL vmlinux 0x3416c0df vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x3417fb4d netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x342a4e8f phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x342f842e neigh_update +EXPORT_SYMBOL vmlinux 0x344628fe param_set_bint +EXPORT_SYMBOL vmlinux 0x3452a215 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3456f3e0 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x346a905b __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x3471abee neigh_table_clear +EXPORT_SYMBOL vmlinux 0x3475a160 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x347731fd dm_kobject_release +EXPORT_SYMBOL vmlinux 0x34866fdf generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x34912265 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x349a00c0 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x349a74c8 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34c77c49 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34caf78a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x34cead7e of_device_unregister +EXPORT_SYMBOL vmlinux 0x34e14896 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x34ea76eb unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350a75a8 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3517912c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x35256ec9 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35755300 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x35856a53 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3585a351 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x359d9069 __skb_pad +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35d02602 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x35d2d37d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360e3d94 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x361dad10 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x362eb0b9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x3655e70b md_update_sb +EXPORT_SYMBOL vmlinux 0x3656c89e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x365a2aa3 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x365f3b0a __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x36682a43 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x367cf503 napi_disable +EXPORT_SYMBOL vmlinux 0x369b6948 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x36a17162 pci_free_irq +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36d38b73 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x36e5344b vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x36f8c4c3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371dc764 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x372fb568 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x3734760b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x37415a3a unlock_page +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374cc925 __sock_create +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37637c1d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x376b93dc validate_slab_cache +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3796a3fc param_ops_byte +EXPORT_SYMBOL vmlinux 0x37ab8ecd skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states +EXPORT_SYMBOL vmlinux 0x37f27e74 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x37fb696a sock_from_file +EXPORT_SYMBOL vmlinux 0x3817da0e __inet_hash +EXPORT_SYMBOL vmlinux 0x381975b9 input_set_capability +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3848d116 __netif_schedule +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3858f457 vme_bus_type +EXPORT_SYMBOL vmlinux 0x38772c30 seq_bprintf +EXPORT_SYMBOL vmlinux 0x3880013f mmc_register_driver +EXPORT_SYMBOL vmlinux 0x38821958 skb_unlink +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389d1172 sock_no_connect +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c751b8 param_set_copystring +EXPORT_SYMBOL vmlinux 0x38d3ee06 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x390808c9 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3909aa3f iov_iter_zero +EXPORT_SYMBOL vmlinux 0x390b4e00 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x390ca753 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x39160f93 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x39183bb2 pci_dev_put +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x392d5d4c audit_log +EXPORT_SYMBOL vmlinux 0x392fd767 scsi_print_command +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3945db90 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39713d28 put_disk +EXPORT_SYMBOL vmlinux 0x398c9548 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399e2db5 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x399e3962 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x39a9e367 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c297ae truncate_pagecache +EXPORT_SYMBOL vmlinux 0x39d6a1a1 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x39e55a4e simple_getattr +EXPORT_SYMBOL vmlinux 0x39e9a09c bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x39e9f003 __free_pages +EXPORT_SYMBOL vmlinux 0x3a0472e7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2499d3 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a446779 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a50d6e7 __scm_destroy +EXPORT_SYMBOL vmlinux 0x3aa87137 tcp_req_err +EXPORT_SYMBOL vmlinux 0x3ab5a8a0 vfs_get_super +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abc1c07 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3acb835f key_unlink +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ad9f088 ram_aops +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b1670a9 sk_alloc +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b37258f ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x3b3ee9be qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x3b43679a registered_fb +EXPORT_SYMBOL vmlinux 0x3b54d247 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x3b5feac9 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b777703 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x3b828246 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x3b8ef44d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bc814c6 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bfd31a0 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3bfe3795 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x3c0c9c63 of_match_node +EXPORT_SYMBOL vmlinux 0x3c102d65 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1e08a8 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c5c8fca ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x3c84b439 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x3ca64ae3 udp_disconnect +EXPORT_SYMBOL vmlinux 0x3ca66e7a locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3cbf3ffc truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x3cc9fc87 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x3cce4ab0 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x3cd3aec2 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce1e1d4 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf317c7 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x3cfb8446 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x3cfd4556 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d0d2a7a fddi_type_trans +EXPORT_SYMBOL vmlinux 0x3d1168c9 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d342ee4 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3d365a25 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3d46f090 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3d4d91fe md_write_start +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d6122b5 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x3d72a689 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x3d845fcb dma_resv_fini +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcdd974 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd4bde2 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3de452a5 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e299a95 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e690ad7 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x3e6a3ff5 of_translate_address +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e853e9e kobject_set_name +EXPORT_SYMBOL vmlinux 0x3ea53ec4 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x3ea9fcfe ip_defrag +EXPORT_SYMBOL vmlinux 0x3ec02d4d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x3ed0c3e9 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x3ed6094e tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3eec4266 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f176f5d md_bitmap_free +EXPORT_SYMBOL vmlinux 0x3f2ff164 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x3f4383b3 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x3f69a452 ilookup +EXPORT_SYMBOL vmlinux 0x3f6f7381 amba_release_regions +EXPORT_SYMBOL vmlinux 0x3f85a600 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f91e0b5 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x3f92ac4e fb_pan_display +EXPORT_SYMBOL vmlinux 0x3f931729 pci_get_device +EXPORT_SYMBOL vmlinux 0x3fac663f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fbf680d input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x3fc86720 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff08c5f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x3ff34bf1 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4006e238 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x403b3dd2 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x404ae71b iput +EXPORT_SYMBOL vmlinux 0x40558267 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x4056f252 vga_get +EXPORT_SYMBOL vmlinux 0x4071d553 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x40726631 kill_fasync +EXPORT_SYMBOL vmlinux 0x40757c35 skb_clone +EXPORT_SYMBOL vmlinux 0x40792add sock_bind_add +EXPORT_SYMBOL vmlinux 0x408a2c2a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x408e57ec dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409a12ef find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b43472 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x40b6926a phy_attached_info +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40f12e3b vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x40f30ac9 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x40f85fff __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x412134ac tty_hangup +EXPORT_SYMBOL vmlinux 0x412b9694 md_handle_request +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4137ca6f ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414d2404 eth_header +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x415a25bd mr_table_dump +EXPORT_SYMBOL vmlinux 0x4162b7f7 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x4162e668 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x41689083 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x417dca72 xp_dma_map +EXPORT_SYMBOL vmlinux 0x4185050c flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41907944 skb_find_text +EXPORT_SYMBOL vmlinux 0x41aa1135 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x41b2729b get_acl +EXPORT_SYMBOL vmlinux 0x41b49b44 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x41c31b1d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x41c3e5e2 bio_reset +EXPORT_SYMBOL vmlinux 0x41cb0228 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x41e7b813 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x41ed48c2 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fd2175 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42347590 __scm_send +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4254f9dc mntget +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x425c7f04 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x4291cf05 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4298be44 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x42a3ebad ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x42bba0e9 register_console +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f437d5 fman_register_intr +EXPORT_SYMBOL vmlinux 0x42f7388b rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x42f7aad4 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x42ff43f1 tcf_block_get +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4306aa60 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x4318d172 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x43190044 key_put +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x432968a0 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43384966 dquot_get_state +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43576f84 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x43780548 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43992b02 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x43ca7f16 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x43ca9fcf unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x43d0487a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43fb8329 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x440f0a7b wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x44179a3d tcp_connect +EXPORT_SYMBOL vmlinux 0x441c82fa phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x444288a4 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444b9c14 fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0x444c5f27 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4471ba22 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x44866fde __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a47582 inode_init_always +EXPORT_SYMBOL vmlinux 0x44a55300 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x44a5abc9 __check_sticky +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b64c8f flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x44c935dd input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x44d5695f pci_release_regions +EXPORT_SYMBOL vmlinux 0x44dccdcf fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x44dee780 module_refcount +EXPORT_SYMBOL vmlinux 0x44e5237d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x44e92b47 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f1e7a3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x44f50747 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x450ea947 iunique +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x45258e0b dput +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452e8120 get_fs_type +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4556a2fa close_fd_get_file +EXPORT_SYMBOL vmlinux 0x45672c47 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x4568534d pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457a0d9b dev_driver_string +EXPORT_SYMBOL vmlinux 0x45e19e6d pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x45e1f134 genl_notify +EXPORT_SYMBOL vmlinux 0x45fe4a12 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x46357443 set_user_nice +EXPORT_SYMBOL vmlinux 0x464fa302 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4683c30c __skb_get_hash +EXPORT_SYMBOL vmlinux 0x468653e7 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x469fc53a is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cd7b4d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x46d3f601 igrab +EXPORT_SYMBOL vmlinux 0x46e3bc4d dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x46e452ff scm_detach_fds +EXPORT_SYMBOL vmlinux 0x46f19148 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x46f72fd8 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x46f9ea4d tty_kref_put +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x470eaff0 input_register_handler +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47299ab5 account_page_redirty +EXPORT_SYMBOL vmlinux 0x47332f6b ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4770b059 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47957d44 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b06d5e netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47fd28a2 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x480dad36 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482e024f pskb_extract +EXPORT_SYMBOL vmlinux 0x482e58da netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x4840ac2a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x485443a1 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485a1fd3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x48624bfb acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x4876b563 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4888794c tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a27d1e serio_rescan +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99175 dm_io +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48d1829c dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492f2811 kern_path +EXPORT_SYMBOL vmlinux 0x4937297d inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x4942a981 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4964af7a eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x497584f6 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x49799ee4 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x497b04dd phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b808ea scsi_partsize +EXPORT_SYMBOL vmlinux 0x49b91b88 md_register_thread +EXPORT_SYMBOL vmlinux 0x49cecc28 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x49f2830c rproc_report_crash +EXPORT_SYMBOL vmlinux 0x4a08c4ee phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x4a0f7c66 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x4a1bfd1a import_single_range +EXPORT_SYMBOL vmlinux 0x4a1f4b0f ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4a2aeac9 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x4a35df92 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3ef4d6 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4a51c711 param_set_ullong +EXPORT_SYMBOL vmlinux 0x4a55eb03 netdev_err +EXPORT_SYMBOL vmlinux 0x4a5e5eed netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x4a6cd0de blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x4a715188 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x4a84eb87 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a9005f9 fb_find_mode +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9ee815 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x4aa0e063 fman_set_port_params +EXPORT_SYMBOL vmlinux 0x4aa8be87 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x4ab20f33 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x4ac9a7e1 clk_add_alias +EXPORT_SYMBOL vmlinux 0x4ae684fe udp_gro_receive +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aec8b46 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b058251 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x4b08be56 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b1a9b61 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x4b3cbec8 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x4b3cca9d skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x4b456e5c logfc +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b7e1c93 lock_rename +EXPORT_SYMBOL vmlinux 0x4ba4d081 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4bbd968a pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x4bcb3725 inet6_bind +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bec6e48 nonseekable_open +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bfbacdc generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x4bff85f8 make_kgid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0d2320 seq_read_iter +EXPORT_SYMBOL vmlinux 0x4c173e34 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x4c2fee6f sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c3d1403 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5195a8 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4c740f49 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4c745b91 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4c785f73 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x4c98d79b cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x4ca2ba13 ps2_end_command +EXPORT_SYMBOL vmlinux 0x4ca411ff napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4ca701fc d_alloc_name +EXPORT_SYMBOL vmlinux 0x4cb1fbea blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbade4d regset_get_alloc +EXPORT_SYMBOL vmlinux 0x4cc3a750 input_free_device +EXPORT_SYMBOL vmlinux 0x4cc3cfeb uart_register_driver +EXPORT_SYMBOL vmlinux 0x4cc8ce8c rt6_lookup +EXPORT_SYMBOL vmlinux 0x4ccf2928 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x4cd5ecab dev_add_offload +EXPORT_SYMBOL vmlinux 0x4cebb97b tty_register_device +EXPORT_SYMBOL vmlinux 0x4cfe4e03 blk_get_request +EXPORT_SYMBOL vmlinux 0x4d0bb2a8 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d2a72fc disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d69b133 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x4d74a002 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x4d7580af scsi_host_get +EXPORT_SYMBOL vmlinux 0x4d7b4b86 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4d7e4012 tcp_check_req +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dcc3bef dst_release_immediate +EXPORT_SYMBOL vmlinux 0x4de5f88c dquot_operations +EXPORT_SYMBOL vmlinux 0x4de691c9 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e0f78cc scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4e1715d2 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x4e1b34f7 md_error +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e21e7e2 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4aafed phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6b0881 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ec681fe seq_open_private +EXPORT_SYMBOL vmlinux 0x4ef61fc7 xp_free +EXPORT_SYMBOL vmlinux 0x4f03a16e pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x4f0ec451 __do_once_done +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2449c6 d_find_alias +EXPORT_SYMBOL vmlinux 0x4f48e7b7 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x4f4cbc73 put_watch_queue +EXPORT_SYMBOL vmlinux 0x4f51bf49 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f580b00 pci_iomap +EXPORT_SYMBOL vmlinux 0x4f6ad08f seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x4f6c9721 module_layout +EXPORT_SYMBOL vmlinux 0x4f6eadd4 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f791fab sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x4f7ba7e4 pci_set_master +EXPORT_SYMBOL vmlinux 0x4f8617fb phy_driver_register +EXPORT_SYMBOL vmlinux 0x4f8af15c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x4fadc8db clear_inode +EXPORT_SYMBOL vmlinux 0x4faeb028 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x4faf45e3 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x4fc22abb frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x4fcc17e1 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x4fcc747d mpage_writepage +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5022fe5a dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x502d6a7f i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x5034728f get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x5037b5f9 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50841bc5 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x508a1f78 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509f3594 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50ab1813 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c2fcf0 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x50c7093b fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x50cc1d12 vfs_llseek +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d5e19e gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x50df51eb ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x50f34753 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51565412 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x519a85f4 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x51b59b6b skb_expand_head +EXPORT_SYMBOL vmlinux 0x51cb2d7a d_exact_alias +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d21b41 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x51d8bc44 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x51da213f flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x51e4d4a5 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e97209 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x51f2ef61 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5211b11f fs_param_is_path +EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x521aa08b devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x522d665e blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x524e0d09 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52759ea9 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x5285f455 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a954ed clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x52b4e9e2 tty_vhangup +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52d3cf3c msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x52d5afc0 param_set_short +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f6adaa mntput +EXPORT_SYMBOL vmlinux 0x5306cde2 pps_event +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53102459 filp_close +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x532abee8 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x532d6f37 rproc_boot +EXPORT_SYMBOL vmlinux 0x532fdbc8 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53412909 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x534ad03e __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x53502439 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x539292f7 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x53b89aeb param_get_string +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53c0163c napi_enable +EXPORT_SYMBOL vmlinux 0x53c14511 param_get_byte +EXPORT_SYMBOL vmlinux 0x53dac202 generic_read_dir +EXPORT_SYMBOL vmlinux 0x53ebd339 finalize_exec +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f1ec91 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x54152351 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x541683fd of_device_is_available +EXPORT_SYMBOL vmlinux 0x5419f2d9 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x542149d7 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x54223305 task_work_add +EXPORT_SYMBOL vmlinux 0x5423a9b8 of_get_next_child +EXPORT_SYMBOL vmlinux 0x542583e4 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544a6b59 load_nls_default +EXPORT_SYMBOL vmlinux 0x545077f9 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x5450d58f mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x54663d90 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5469d8fe dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x546ebd77 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x547b5046 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x54a6d91e ip_getsockopt +EXPORT_SYMBOL vmlinux 0x54b07899 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x54c60b4f fqdir_exit +EXPORT_SYMBOL vmlinux 0x54cc1a21 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54eb1b10 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x55382c2f ___pskb_trim +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554cf99f _copy_from_iter +EXPORT_SYMBOL vmlinux 0x554f2219 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x556af563 touch_atime +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x55823082 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x558819a4 simple_release_fs +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55aa7d64 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x55ac8ed9 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x55c983af __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x55dc96bb kthread_blkcg +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f6a460 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x5602f8cf xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x560b24ef scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x56166795 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x56260dca xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x56633ca0 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5687fbb0 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x56b548bd pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d6052f pci_get_subsys +EXPORT_SYMBOL vmlinux 0x56d67242 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56e59ae2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x56e91a22 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x56f1520d dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x56fe14ef nd_btt_version +EXPORT_SYMBOL vmlinux 0x570f3a65 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x571fa7cf kmalloc_caches +EXPORT_SYMBOL vmlinux 0x572afbac dev_addr_add +EXPORT_SYMBOL vmlinux 0x57391c19 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x573fdc22 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575b9f11 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576a13c1 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x576c720f default_llseek +EXPORT_SYMBOL vmlinux 0x5777a88d mdio_device_remove +EXPORT_SYMBOL vmlinux 0x577fe689 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57996c7d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x57b08977 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57de34fd mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x57ded17e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x580a63d5 sock_i_ino +EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582021d2 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x58251afd pci_write_config_word +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x583021cb dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583aa4bb is_nd_pfn +EXPORT_SYMBOL vmlinux 0x584add05 bio_init +EXPORT_SYMBOL vmlinux 0x5854f395 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x5860e95b kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x5870b218 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x58905e40 build_skb_around +EXPORT_SYMBOL vmlinux 0x5891ec89 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x589208d7 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x589b71e6 fasync_helper +EXPORT_SYMBOL vmlinux 0x58a00cf4 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c54fdf migrate_page_states +EXPORT_SYMBOL vmlinux 0x58c82f78 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x58d4cd46 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f389ec vfs_statfs +EXPORT_SYMBOL vmlinux 0x59201fa2 netdev_state_change +EXPORT_SYMBOL vmlinux 0x592313f0 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5935b6d9 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x5952e50f __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5955f70f irq_set_chip +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59768263 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x597a755e md_done_sync +EXPORT_SYMBOL vmlinux 0x59877abb netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x599929cc skb_free_datagram +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599ebee0 simple_rmdir +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b34555 mmc_get_card +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59da818d pipe_lock +EXPORT_SYMBOL vmlinux 0x59e785d5 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x59e834df pci_read_config_word +EXPORT_SYMBOL vmlinux 0x5a06bfda mount_single +EXPORT_SYMBOL vmlinux 0x5a071c56 param_set_int +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a167f8c pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a40f217 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a49685a __scsi_execute +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a8c6e76 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9cd8eb phy_error +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa4d85d mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x5aafdc33 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x5aafdf28 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x5ab5add7 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x5ac0faee submit_bio_wait +EXPORT_SYMBOL vmlinux 0x5adbe61c sk_net_capable +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae2f7d5 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x5ae37ab7 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x5ae5ac7c dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x5ae9de66 __breadahead +EXPORT_SYMBOL vmlinux 0x5aecb972 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x5afebf38 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x5b027094 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x5b269cee proc_symlink +EXPORT_SYMBOL vmlinux 0x5b29df24 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b360a4c mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b371386 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5b3ca1c5 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b54d8fc cdev_device_add +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5d6478 km_state_notify +EXPORT_SYMBOL vmlinux 0x5b619021 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x5b6b1716 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x5b89e445 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5b970ac3 rpmh_write +EXPORT_SYMBOL vmlinux 0x5baeef1b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x5bb32bba padata_free_shell +EXPORT_SYMBOL vmlinux 0x5bc21545 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x5bd4adc3 bio_add_page +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd5e5bf pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x5bdfc363 noop_fsync +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be8c1ae pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x5c10f841 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5c180533 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2b97d6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c43b300 current_time +EXPORT_SYMBOL vmlinux 0x5c50904b rproc_shutdown +EXPORT_SYMBOL vmlinux 0x5c5c70fe tcf_idr_create +EXPORT_SYMBOL vmlinux 0x5c5d890f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5c7fd932 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x5c8df7a4 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x5ca2c4e6 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf8b34f pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d0f06c9 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d1a8647 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x5d1e3707 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d6890d9 param_set_charp +EXPORT_SYMBOL vmlinux 0x5d780760 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x5d7b6f52 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5dbfc8f6 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x5dc74389 param_set_ushort +EXPORT_SYMBOL vmlinux 0x5dee17d3 seq_file_path +EXPORT_SYMBOL vmlinux 0x5dfd79ee register_key_type +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e24ecfb pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e432005 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x5e49c8d8 da903x_query_status +EXPORT_SYMBOL vmlinux 0x5e62be44 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x5e6408d2 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e70ccec uart_resume_port +EXPORT_SYMBOL vmlinux 0x5e75e604 pci_select_bars +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e875bdb bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e993d0c vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb80415 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x5eb8cb9a to_nd_pfn +EXPORT_SYMBOL vmlinux 0x5ebc9bc3 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed387fc t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef93010 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1e2fa4 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x5f387883 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5f66a166 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f8b1819 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9e667b netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x5fa12e81 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5fafccba poll_freewait +EXPORT_SYMBOL vmlinux 0x5fc4453f dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd117a6 d_delete +EXPORT_SYMBOL vmlinux 0x5fe2ef27 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5fef6e1b bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffd9eae tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x5ffe5650 trace_event_printf +EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600fac3c free_netdev +EXPORT_SYMBOL vmlinux 0x6012aa6d mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x601330a8 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602b552c config_group_find_item +EXPORT_SYMBOL vmlinux 0x602df3ee remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x602fda0c sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6040ecb9 pci_find_capability +EXPORT_SYMBOL vmlinux 0x60445951 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x604504af param_ops_ushort +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60747d05 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x607c0d0d neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608c0c58 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x608dcf76 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x608e14a6 param_set_bool +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609c9cfc seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a2fed2 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x60a3f2bb sync_filesystem +EXPORT_SYMBOL vmlinux 0x60a85846 proc_create_data +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60be352c neigh_ifdown +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e551e8 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x60e8cf38 console_stop +EXPORT_SYMBOL vmlinux 0x60f85626 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6104b51d path_has_submounts +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6119a463 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612f8c83 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x61505967 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a334ac dquot_free_inode +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e40072 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6201fbe7 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x62097ab3 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6220761c mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x6224fb9e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622b386b tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x6231e819 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x624bc17d make_kuid +EXPORT_SYMBOL vmlinux 0x62508dd4 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x6252d3fe wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x627333bb framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627f0a44 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x629c6872 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x629f85c9 dma_find_channel +EXPORT_SYMBOL vmlinux 0x62a6f62e of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6319db13 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x631ea758 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6327d8a0 pps_register_source +EXPORT_SYMBOL vmlinux 0x632e2e77 md_write_end +EXPORT_SYMBOL vmlinux 0x63527ccf cdev_alloc +EXPORT_SYMBOL vmlinux 0x636c8ed3 __alloc_pages +EXPORT_SYMBOL vmlinux 0x638db9ad blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x63935642 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a770c2 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b7d1e8 security_path_unlink +EXPORT_SYMBOL vmlinux 0x63bc9f2d __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d1e314 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f7e1bf cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x63ff2c40 inet_offloads +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x6411a915 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6420eb34 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x6429be1d flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643725fb cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x643a3afd fb_blank +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x64507264 thaw_bdev +EXPORT_SYMBOL vmlinux 0x645cd303 dst_init +EXPORT_SYMBOL vmlinux 0x6466fa3f phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x64696312 dqput +EXPORT_SYMBOL vmlinux 0x64782fce component_match_add_release +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648ef885 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649f49fe xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ad966d uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bf0a22 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x64c4a281 dst_alloc +EXPORT_SYMBOL vmlinux 0x64c89911 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x64d55bd0 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x64d71205 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x64d8a5d5 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x64df9814 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x64e204ea setup_arg_pages +EXPORT_SYMBOL vmlinux 0x64f187c2 get_user_pages +EXPORT_SYMBOL vmlinux 0x64fa9ab6 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651fa876 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6523b236 block_write_full_page +EXPORT_SYMBOL vmlinux 0x652ab635 vc_cons +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x6557af09 dev_open +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65776d7e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x6578ca54 param_ops_string +EXPORT_SYMBOL vmlinux 0x6579c927 kobject_put +EXPORT_SYMBOL vmlinux 0x657d96d3 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x6594ea2c devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x659b76d7 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dd2d10 get_watch_queue +EXPORT_SYMBOL vmlinux 0x65e08a3c config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e230b0 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662b7a8b flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x6642e616 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x6643cb34 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x6651994c of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x66690ceb read_cache_pages +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668c1aca cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x6698c684 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66c30f1a bio_clone_fast +EXPORT_SYMBOL vmlinux 0x66c63c7b ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x66ca5ef3 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x66cf1c38 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x66e1ef88 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x66e69168 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x66e8001a blkdev_put +EXPORT_SYMBOL vmlinux 0x66fd35c6 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x67023e74 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x670fda7b blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x6712a4f4 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x6712ba27 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6724aefa file_update_time +EXPORT_SYMBOL vmlinux 0x6727b028 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x67390452 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6739f310 netif_rx +EXPORT_SYMBOL vmlinux 0x673a065c blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67436c7a kern_path_create +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67ad75b7 follow_down_one +EXPORT_SYMBOL vmlinux 0x67b27da5 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b3e4da scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x67b58c50 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bf0dfe devfreq_update_status +EXPORT_SYMBOL vmlinux 0x67bf1f35 send_sig_info +EXPORT_SYMBOL vmlinux 0x67bf2d5d dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67cff6ee simple_open +EXPORT_SYMBOL vmlinux 0x67f165c1 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x683cb5f6 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x684ff15b eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x685fc383 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x68707435 d_genocide +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68a76bcc devm_ioport_map +EXPORT_SYMBOL vmlinux 0x68aab11c mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x68c23153 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x68cd550c nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x68cf2a4e devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x68d2dd89 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x692a084b register_md_personality +EXPORT_SYMBOL vmlinux 0x693646ac unregister_qdisc +EXPORT_SYMBOL vmlinux 0x6938e1ff eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x693b29c6 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x693c696b __devm_release_region +EXPORT_SYMBOL vmlinux 0x69487b3e serio_reconnect +EXPORT_SYMBOL vmlinux 0x694c8af7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x694dfe8a flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695bf971 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69728953 netlink_capable +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69907eda genl_register_family +EXPORT_SYMBOL vmlinux 0x69a1420d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x69aaeff5 vme_slot_num +EXPORT_SYMBOL vmlinux 0x69b27453 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x69b5e921 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x69c87f38 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d77a32 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x69da1579 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69faaf9c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a3a3343 seq_pad +EXPORT_SYMBOL vmlinux 0x6a3c37f0 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x6a3e6efa tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x6a3f1821 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a5397b2 path_get +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6958e1 tso_count_descs +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a77e8a6 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x6a8d49ad pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ac3926f page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae3e839 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x6ae86404 d_lookup +EXPORT_SYMBOL vmlinux 0x6ae91299 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x6aeac6f8 drop_super +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af5cbe1 block_commit_write +EXPORT_SYMBOL vmlinux 0x6afe9095 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x6b068fd2 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x6b0b0360 lease_modify +EXPORT_SYMBOL vmlinux 0x6b1cacb8 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6b2689a8 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b4c278c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6b51524f alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b59f1c4 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9ae13e would_dump +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba88aca sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6bb41a4a xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc53381 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6c1906a5 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c3b8ad0 of_node_get +EXPORT_SYMBOL vmlinux 0x6c3ede4d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6c4d675f devm_memremap +EXPORT_SYMBOL vmlinux 0x6c50fb24 inet_select_addr +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c5dde7f i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c65815d tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x6c6864c9 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x6c696803 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6c6ac5f1 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6c70bac2 mmc_erase +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c85ed61 nf_log_set +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cc9116d file_modified +EXPORT_SYMBOL vmlinux 0x6ce689dd blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x6ce75b4e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x6ced8d9c pcie_get_mps +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d0710b8 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x6d0afa67 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x6d10028f netif_rx_ni +EXPORT_SYMBOL vmlinux 0x6d13bbfe of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2e554e phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d39fac3 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x6d3b3e24 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6d57b572 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d754174 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x6d79506c cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d9cd031 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dac1c66 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x6db143ae inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6dbb6eed uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x6dbd827d key_invalidate +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcc6fec of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd6094c inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df303df generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x6e028b68 iget_locked +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e108237 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x6e1332fd mmc_command_done +EXPORT_SYMBOL vmlinux 0x6e281aba devm_memunmap +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6d3049 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x6e71c90c nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72e897 sock_i_uid +EXPORT_SYMBOL vmlinux 0x6e7a144a keyring_search +EXPORT_SYMBOL vmlinux 0x6e9a14d2 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ecca6c9 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x6ed00d68 seq_open +EXPORT_SYMBOL vmlinux 0x6ed14155 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x6ed7b3a5 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x6ed7b7b9 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x6ed970e0 dquot_acquire +EXPORT_SYMBOL vmlinux 0x6ee501d5 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x6ef10acc __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x6efa2da3 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x6f2a2b3c serio_bus +EXPORT_SYMBOL vmlinux 0x6f2c6444 vm_mmap +EXPORT_SYMBOL vmlinux 0x6f2e9aba rtnl_create_link +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f426a41 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x6f46acc3 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f5ab6c2 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x6f8beb02 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x6f8deba4 of_device_alloc +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f9229a9 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x6fabb11d rproc_alloc +EXPORT_SYMBOL vmlinux 0x6fb16773 dev_addr_init +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb6f801 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc156e5 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe4236c tcf_register_action +EXPORT_SYMBOL vmlinux 0x6ff81819 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x6ffd7977 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70082ec7 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7030b23f sock_kmalloc +EXPORT_SYMBOL vmlinux 0x703bccc8 __napi_schedule +EXPORT_SYMBOL vmlinux 0x704e3ad7 key_validate +EXPORT_SYMBOL vmlinux 0x705f6b79 iget_failed +EXPORT_SYMBOL vmlinux 0x70831f40 setattr_prepare +EXPORT_SYMBOL vmlinux 0x709b7e96 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b08d41 dev_uc_init +EXPORT_SYMBOL vmlinux 0x70b31d4e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x70bcc616 kobject_get +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70e5ae84 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x70fb6988 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x71150f56 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x71197000 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713b3039 tty_unlock +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x7156ea03 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x71595c53 mmc_start_request +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71721a28 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7184743e __find_get_block +EXPORT_SYMBOL vmlinux 0x718a5484 tso_build_data +EXPORT_SYMBOL vmlinux 0x7190c6f0 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x7190f6c8 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x719a00cf twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b164a7 dev_uc_add +EXPORT_SYMBOL vmlinux 0x71b9abdf xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71eeed3b napi_gro_flush +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x722c05cc done_path_create +EXPORT_SYMBOL vmlinux 0x7235d684 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7248f0b7 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x726ab61b param_array_ops +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x727a33d7 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x7282b323 drop_nlink +EXPORT_SYMBOL vmlinux 0x72a250b3 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a565ca pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d55c0c dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x72dafc85 seq_puts +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee8a9d md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x7311a9f3 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7331d97f from_kuid +EXPORT_SYMBOL vmlinux 0x73367628 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x73484c31 phy_detach +EXPORT_SYMBOL vmlinux 0x734fcebf flush_signals +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x737f5132 vfs_symlink +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73983d83 load_nls +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a0f96c skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73deb265 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x73dfe5e5 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x73e56458 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x73fb8504 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x740ae3c2 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x740af651 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x741d8072 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x74351b10 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744615ab scsi_device_put +EXPORT_SYMBOL vmlinux 0x7447ee0e unpin_user_page +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7463cacb __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7478a443 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x747ca69c block_read_full_page +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7496f098 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x74a57737 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x74b60ac0 skb_split +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c9ec34 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x74d3d8d2 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x74d9f25b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x74dc0118 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x74df6c9b inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x750121ee of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x7522ae55 pci_request_regions +EXPORT_SYMBOL vmlinux 0x752a169d tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x752b2b37 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x7533f1b3 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x753d14e7 proto_unregister +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x756517e7 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x75747c92 init_special_inode +EXPORT_SYMBOL vmlinux 0x7577d58e dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x757dd856 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75885554 mdiobus_free +EXPORT_SYMBOL vmlinux 0x758de461 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x7591c4e0 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x75928ccc clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x7594fd47 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x75988f4f inode_dio_wait +EXPORT_SYMBOL vmlinux 0x75a2c814 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x75a4907f tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75de2f8b of_find_property +EXPORT_SYMBOL vmlinux 0x75ec63b2 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x75fbe814 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762e8f9c udp_seq_next +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764a6d72 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767df2a3 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x769ef3df proc_set_user +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a251f3 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x76ac721e file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x76add13b dm_unregister_target +EXPORT_SYMBOL vmlinux 0x76c351cb nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x76c99b4d skb_ext_add +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x7701f89c fman_port_bind +EXPORT_SYMBOL vmlinux 0x770a6268 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773ec2fe sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774ec883 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x7751cf5b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x7757dc4c sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7765b4ce input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x77670b70 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x77719390 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x777495f9 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x7797af9f nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x77a03ad9 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x77b041de par_io_of_config +EXPORT_SYMBOL vmlinux 0x77b5564d __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x77b67c82 finish_no_open +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c989b5 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x77e1798d dec_node_page_state +EXPORT_SYMBOL vmlinux 0x77e1c6d3 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78157147 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x7836f1e7 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x7838f584 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x783fb6ca mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784e28fd xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x785dc038 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a3cf04 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x78a6e384 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x78a90086 unlock_buffer +EXPORT_SYMBOL vmlinux 0x78b185dc edac_mc_find +EXPORT_SYMBOL vmlinux 0x78b437a0 skb_dump +EXPORT_SYMBOL vmlinux 0x78b5a9ee flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bdd566 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x78c7ce1f request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e04db0 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x78e9c0a9 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x7902c954 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7916baf9 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x791fc971 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7938b1d1 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x793ce97e request_key_rcu +EXPORT_SYMBOL vmlinux 0x7941d067 of_get_property +EXPORT_SYMBOL vmlinux 0x794513b5 genphy_read_status +EXPORT_SYMBOL vmlinux 0x79545f19 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x7968f55e rpmh_write_async +EXPORT_SYMBOL vmlinux 0x796c2b62 __skb_checksum +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x797fca54 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79990855 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79acb73b sg_miter_next +EXPORT_SYMBOL vmlinux 0x79c09780 nobh_writepage +EXPORT_SYMBOL vmlinux 0x79d64b80 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x79dd30e6 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a03e1d5 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0ae3a8 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1e1436 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a36a186 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x7a3c80f0 simple_unlink +EXPORT_SYMBOL vmlinux 0x7a4a393d kern_unmount +EXPORT_SYMBOL vmlinux 0x7a5a296f fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x7a5cf39b xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7a63c116 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x7a63fd6b bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7a7ea925 noop_qdisc +EXPORT_SYMBOL vmlinux 0x7a7ed30a kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7a80c888 current_in_userns +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa608fc pci_remove_bus +EXPORT_SYMBOL vmlinux 0x7aa7aff2 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x7aac759c dm_table_get_md +EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7acb9c46 seq_path +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad8204c sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adff2b3 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af69187 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7aff3ccc can_nice +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5058c7 fb_show_logo +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b6d227e configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x7b71bbdd __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7b7aa0ad gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7b820444 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b9a762a param_get_ushort +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb98eaa inet_recvmsg +EXPORT_SYMBOL vmlinux 0x7bbc002f __devm_request_region +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bcb421f pin_user_pages +EXPORT_SYMBOL vmlinux 0x7bf11d74 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7bf7b513 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7c14ef50 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c21e635 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7c2fd1dc scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7c367596 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7c444911 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c51281d kill_pid +EXPORT_SYMBOL vmlinux 0x7c5e06aa tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x7c6528e2 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x7c66c993 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7c6f3e85 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x7c87fc83 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7c998482 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cc123bb devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7cdce43a __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce8f82e mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d002283 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x7d018587 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d207181 of_clk_get +EXPORT_SYMBOL vmlinux 0x7d266fad ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x7d292750 tcf_block_put +EXPORT_SYMBOL vmlinux 0x7d2af02d pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d61e309 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7d626468 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7d73d2f6 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d82315d dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x7d9c2a7e param_set_hexint +EXPORT_SYMBOL vmlinux 0x7dad301c of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db25a29 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x7db5a8ea devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de73b3b first_ec +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e1c6a17 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7e1e770f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e6b3021 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x7e6ba224 discard_new_inode +EXPORT_SYMBOL vmlinux 0x7e7c130c input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x7e9168e6 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7e959ac2 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x7e98c369 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7ea557b3 napi_complete_done +EXPORT_SYMBOL vmlinux 0x7ea95dca get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x7ef40fc8 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x7ef9011e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7ef908c0 sk_dst_check +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f04c90c devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f28de07 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x7f2c594c netif_napi_add +EXPORT_SYMBOL vmlinux 0x7f38d095 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fa60f9d zpool_register_driver +EXPORT_SYMBOL vmlinux 0x7fc710a0 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd00207 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7feab396 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7ff5a3a9 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x80094801 __page_symlink +EXPORT_SYMBOL vmlinux 0x803357be pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x803782e3 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80471850 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x8054aa91 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8055ff60 sync_file_create +EXPORT_SYMBOL vmlinux 0x805eade2 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x806acd53 __fs_parse +EXPORT_SYMBOL vmlinux 0x80751609 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x807e335b __of_get_address +EXPORT_SYMBOL vmlinux 0x807f9ff5 serio_interrupt +EXPORT_SYMBOL vmlinux 0x80906b8b fb_class +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ab86a7 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x80bece43 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cf58ab devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80f4c7ac sk_common_release +EXPORT_SYMBOL vmlinux 0x80fbbbd5 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x810f1260 kill_litter_super +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x811b25b5 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x811c246d max8925_set_bits +EXPORT_SYMBOL vmlinux 0x8125c757 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x8134c379 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x8137b5c3 pipe_unlock +EXPORT_SYMBOL vmlinux 0x81383f13 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x813cdcb5 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x81571256 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x817be3e9 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81ae342a of_chosen +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81df8aff scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x81e583bd mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x8218721c ata_port_printk +EXPORT_SYMBOL vmlinux 0x8224f8c6 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x822e195c tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x822e285e tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x822ff424 zap_page_range +EXPORT_SYMBOL vmlinux 0x823628f3 may_setattr +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x82411ed1 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x826d283c tty_port_init +EXPORT_SYMBOL vmlinux 0x82757b83 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82867bd6 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x82895517 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x82b6776a of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82e00421 try_to_release_page +EXPORT_SYMBOL vmlinux 0x82ef5801 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x82f0d02f md_check_recovery +EXPORT_SYMBOL vmlinux 0x8307f1f5 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x830c9ea1 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x831dc9a6 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x832190d6 km_policy_expired +EXPORT_SYMBOL vmlinux 0x8321b3b9 locks_free_lock +EXPORT_SYMBOL vmlinux 0x8325b20a cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x832f39f9 dev_uc_del +EXPORT_SYMBOL vmlinux 0x83555c67 param_ops_bool +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b1212 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x837adba1 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83961cb5 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x839d68df devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cd989e ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x83d32385 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x83d5f833 mmc_request_done +EXPORT_SYMBOL vmlinux 0x83f6f7b9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841b1b05 inet_release +EXPORT_SYMBOL vmlinux 0x842c132e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x842cf5a2 mii_check_link +EXPORT_SYMBOL vmlinux 0x84423f1c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x845e5c3c delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x847ea7d1 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8492ec00 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x84b64078 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x84bf63a4 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c12e2d nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84d8b661 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x84ebc5cf configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x84ec573e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x84ed7cc5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x85057e35 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x85079b2d ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x85108247 tcp_prot +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x852d5616 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x853592ef __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x853a3745 inet_protos +EXPORT_SYMBOL vmlinux 0x8545ec51 address_space_init_once +EXPORT_SYMBOL vmlinux 0x8548f496 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x8550b92c rproc_detach +EXPORT_SYMBOL vmlinux 0x855ae4df is_bad_inode +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85757694 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x857657e5 sock_pfree +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x859ce8ce pci_assign_resource +EXPORT_SYMBOL vmlinux 0x85b251e6 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d01697 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x85de444a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x85ff4055 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x86050e13 skb_copy +EXPORT_SYMBOL vmlinux 0x8611f9dc secpath_set +EXPORT_SYMBOL vmlinux 0x862c4b0b kernel_param_lock +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86693470 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x868a6f3a dev_set_mtu +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86974831 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x8697d889 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x8698de7c skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x86a07708 PageMovable +EXPORT_SYMBOL vmlinux 0x86a273f2 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x86a77f25 to_nd_btt +EXPORT_SYMBOL vmlinux 0x86b0f084 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x86c63aaf blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x86d4ca80 kill_pgrp +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d8377f mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x86d9fc0c genlmsg_put +EXPORT_SYMBOL vmlinux 0x86ddb58a netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870712ed skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x87187b44 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x872f9cb9 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x87abef65 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x87b1e4a3 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c1dae6 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x87c80fe6 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x87cf9f95 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x87d9ee4d d_path +EXPORT_SYMBOL vmlinux 0x87ecd1fc dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x87fe1b6b tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8804f5f3 set_page_dirty +EXPORT_SYMBOL vmlinux 0x8806c2d6 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x880981ae of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x88117a57 rtnl_notify +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881bd516 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x881bea6e bio_advance +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8821db32 md_flush_request +EXPORT_SYMBOL vmlinux 0x88506ce0 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x8871d204 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x8877d2c6 gro_cells_init +EXPORT_SYMBOL vmlinux 0x887eb9d6 nd_device_register +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88b095dc nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x88bda495 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x88cb9b76 cdev_device_del +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e6c0d9 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x88f7aaad fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x88f88b52 __d_drop +EXPORT_SYMBOL vmlinux 0x88fc75e6 param_ops_short +EXPORT_SYMBOL vmlinux 0x88ffc319 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x89065f2f vfs_rmdir +EXPORT_SYMBOL vmlinux 0x892cfb06 param_ops_int +EXPORT_SYMBOL vmlinux 0x892d35ec inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8952aaa0 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x8959ff0e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x89609b93 fiemap_prep +EXPORT_SYMBOL vmlinux 0x89629e21 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x896f9b43 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x897960f0 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89aae470 __bforget +EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x89e77b4e of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x89ed18d8 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x89fe6e66 submit_bio +EXPORT_SYMBOL vmlinux 0x8a14a39e mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x8a1fd66a jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x8a21946f security_sb_remount +EXPORT_SYMBOL vmlinux 0x8a36e1d6 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a4840a8 nd_device_notify +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a771238 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac57096 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad2bc04 blk_put_queue +EXPORT_SYMBOL vmlinux 0x8adff722 brioctl_set +EXPORT_SYMBOL vmlinux 0x8aef8a25 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x8af80895 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b0e8315 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x8b0eea0d unlock_rename +EXPORT_SYMBOL vmlinux 0x8b189b82 proc_create +EXPORT_SYMBOL vmlinux 0x8b26929e dquot_drop +EXPORT_SYMBOL vmlinux 0x8b2c6448 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b3cdb60 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x8b523cd0 page_symlink +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba100cb serio_open +EXPORT_SYMBOL vmlinux 0x8bc30e48 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x8bd5a15a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x8bdb3a3f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x8bdc6608 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8c1a7bf9 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x8c237a52 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x8c241922 pci_pme_active +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3832f1 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x8c3849f5 udp_poll +EXPORT_SYMBOL vmlinux 0x8c59392f acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c6d4c64 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x8c7291a1 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c860f75 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8c8e9f4c remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbbcc25 param_set_byte +EXPORT_SYMBOL vmlinux 0x8cc1dac3 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cd8efa4 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cecb6e3 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x8cee4407 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x8cef114f take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x8cfb1a33 sget +EXPORT_SYMBOL vmlinux 0x8cfb38d6 get_cached_acl +EXPORT_SYMBOL vmlinux 0x8d062787 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8d0cb491 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x8d14c5d4 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x8d18164c show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x8d191588 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x8d244f83 fd_install +EXPORT_SYMBOL vmlinux 0x8d294c81 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x8d2cdf70 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x8d2fcd3b of_phy_connect +EXPORT_SYMBOL vmlinux 0x8d3566ac __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x8d3b7d15 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d42f1f5 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x8d43904a mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x8d51153b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x8d54301a rproc_del +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d59e65a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x8d697db9 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d840961 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x8d87a9c0 pci_find_bus +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da18a4f pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8daaa092 pci_get_class +EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8dbbe942 iptun_encaps +EXPORT_SYMBOL vmlinux 0x8dc20c8d __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x8dce1752 phy_attach +EXPORT_SYMBOL vmlinux 0x8dda808e single_release +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de0d971 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x8de3ae01 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x8de5ff39 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8def84c5 finish_swait +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfda881 give_up_console +EXPORT_SYMBOL vmlinux 0x8e029d52 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x8e0780b4 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1b2cfb xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e23b616 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e4e785a dma_sync_wait +EXPORT_SYMBOL vmlinux 0x8e549189 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x8e570dbf pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x8e5be223 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x8e6eb741 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x8e745f6d do_SAK +EXPORT_SYMBOL vmlinux 0x8e876d6a prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9b5bb5 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8ea36cf7 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x8ebdb785 generic_file_open +EXPORT_SYMBOL vmlinux 0x8ed21d15 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x8eefec8e mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x8efe0906 uart_match_port +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f03cc35 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8f04efe0 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x8f04f80e jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x8f137cb7 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x8f328313 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x8f44715e open_exec +EXPORT_SYMBOL vmlinux 0x8f534a5b fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x8f76bc81 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x8f8a70b4 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x8f93a8dc vlan_for_each +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb1fc5c ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x8fb4392c unix_detach_fds +EXPORT_SYMBOL vmlinux 0x8fbe9365 _dev_alert +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fcaf3fc blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fda6a7f __next_node_in +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8ff4eb7a phy_find_first +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffda2c3 f_setown +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9010fe68 genphy_resume +EXPORT_SYMBOL vmlinux 0x901109a0 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x902d8032 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x9082f0ed proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x909341a3 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x909844ba __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x90b5b915 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90ee55ab mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x91069c17 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x91072f0c lease_get_mtime +EXPORT_SYMBOL vmlinux 0x911072e8 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x91128c5d __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x9116ea8b devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x913048e6 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9151fcdd km_query +EXPORT_SYMBOL vmlinux 0x91578b0d rio_query_mport +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x917b3f6e flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x918c3628 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919df155 config_item_get +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d7eb15 netpoll_setup +EXPORT_SYMBOL vmlinux 0x91dc1ba4 scsi_device_get +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fc4d32 is_nd_btt +EXPORT_SYMBOL vmlinux 0x91fdf0de __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x920a24e2 stream_open +EXPORT_SYMBOL vmlinux 0x92158b36 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x92173fb9 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x921e75d6 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92311c16 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92481726 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92597bf7 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x925b7a4f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x925cc042 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x92614b2b dcb_getapp +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929bc4cd netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x92b6b6f7 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c62259 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f84951 __f_setown +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93064da1 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x9307a20c __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x932c2fc7 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x9331aed7 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x933ec84b pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x9353d908 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x9373c4cc fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937ce497 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93aca9f6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bdeecf create_empty_buffers +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93f12561 nla_put +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943c2f99 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944f99cd locks_remove_posix +EXPORT_SYMBOL vmlinux 0x945d5d93 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x945dd175 dst_dev_put +EXPORT_SYMBOL vmlinux 0x945e3e69 PDE_DATA +EXPORT_SYMBOL vmlinux 0x946a02d6 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x9470896b to_nd_dax +EXPORT_SYMBOL vmlinux 0x94877492 kobject_del +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948c4ad5 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x948d7000 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a652b9 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x94a66d01 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x94a6da4d __ip_options_compile +EXPORT_SYMBOL vmlinux 0x94ae8292 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94e776a2 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9509bc0d sk_mc_loop +EXPORT_SYMBOL vmlinux 0x95207de8 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x95383728 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x954c9c84 __quota_error +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9570dc67 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x958f389e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x959743e6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x959aa903 register_framebuffer +EXPORT_SYMBOL vmlinux 0x95a194ad netpoll_print_options +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95bcf8e1 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x95be95eb input_inject_event +EXPORT_SYMBOL vmlinux 0x95db8607 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x95dc7b09 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x95fde9ff vfs_fsync +EXPORT_SYMBOL vmlinux 0x95feed6a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x96067fa3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x96251601 genphy_suspend +EXPORT_SYMBOL vmlinux 0x9630a96e tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x96348a58 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x963e46b7 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x9644810e rtnl_unicast +EXPORT_SYMBOL vmlinux 0x96618e73 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b3f4f2 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d00a75 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96f0735e fb_set_suspend +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fe0f54 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x970f8fd5 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x972956a3 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x972b36ba serio_close +EXPORT_SYMBOL vmlinux 0x9734050d pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x973b41bd __kfree_skb +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974f5869 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x97514ee3 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x97625193 dump_skip_to +EXPORT_SYMBOL vmlinux 0x9779dae1 netdev_printk +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979b2bde rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c56df0 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x981cebe7 generic_write_checks +EXPORT_SYMBOL vmlinux 0x981d548d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x9822c6e2 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x9828876f flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x98771891 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x987b990d jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x987e2f6f mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x988358ca buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x988c36f2 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x989a9100 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x98b104b8 dns_query +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ff1f45 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x991454c7 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x99265c50 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x992bb955 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9932ee54 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x997351c0 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x9975d675 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x99939427 kthread_stop +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a0145b fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x99af312e md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x99b471c2 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e104fb mmc_detect_change +EXPORT_SYMBOL vmlinux 0x99eb264f ip_frag_next +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fe398b dev_addr_del +EXPORT_SYMBOL vmlinux 0x9a019b07 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2a45d6 input_register_handle +EXPORT_SYMBOL vmlinux 0x9a2bc1dc phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a62e4d2 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a8c6fda inode_set_flags +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac7ea3b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9ada6ebc pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x9adb51b4 fqdir_init +EXPORT_SYMBOL vmlinux 0x9ae2cd0a pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2a3bed init_pseudo +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b40c34e phy_attached_print +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4a43c7 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b8717fc blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x9b8a965e udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9ba52fb2 build_skb +EXPORT_SYMBOL vmlinux 0x9bb9c14a devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x9bcd9843 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x9bdca8f5 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x9be89a02 xfrm_input +EXPORT_SYMBOL vmlinux 0x9beb319c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9bfbea55 config_item_put +EXPORT_SYMBOL vmlinux 0x9c035f8c icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c14b0df phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x9c1d3724 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c22a17b tcp_mmap +EXPORT_SYMBOL vmlinux 0x9c2e277c scsi_host_busy +EXPORT_SYMBOL vmlinux 0x9c3c1de4 ip_output +EXPORT_SYMBOL vmlinux 0x9c4b010b iov_iter_init +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c5f9741 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x9c6c937a simple_statfs +EXPORT_SYMBOL vmlinux 0x9c77f1e1 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c9a4971 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cbbf74e md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x9ccb3f37 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x9ccddb69 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd5818b tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9cd68187 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cd92838 phy_stop +EXPORT_SYMBOL vmlinux 0x9cdc79c0 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf36c70 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x9d015d6e nd_integrity_init +EXPORT_SYMBOL vmlinux 0x9d0b39a9 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x9d0cba89 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d1af1b1 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x9d20a45d fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d5057db inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x9d50e42b jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d6c8d26 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d9a6ed5 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9d9da75d sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9db917dc netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x9dbf9eb2 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x9dc31fdb acpi_device_hid +EXPORT_SYMBOL vmlinux 0x9dee8d78 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9e024276 free_buffer_head +EXPORT_SYMBOL vmlinux 0x9e042ca8 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9e04a886 neigh_for_each +EXPORT_SYMBOL vmlinux 0x9e083afb sg_miter_stop +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e42606d skb_push +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e52cfcc inet_ioctl +EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e67f962 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8b08d2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x9e9778f8 sg_miter_start +EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea75cd9 ps2_init +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9efa3470 blk_get_queue +EXPORT_SYMBOL vmlinux 0x9f037294 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f94ff00 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa1c0fb arp_send +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb08ee9 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x9fb59139 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x9fd63803 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0090b72 kthread_bind +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa015db75 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa027510e __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa06407af tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xa064867f sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xa06a1715 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xa0779a75 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa07a20c6 ata_link_printk +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08c5437 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xa08cb21a __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xa08cdc7c of_parse_phandle +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0966fe1 bh_submit_read +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aedf79 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c2d409 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e2298e shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0f122a0 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa10570ce lookup_one_len +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa1514da2 thread_group_exited +EXPORT_SYMBOL vmlinux 0xa1854544 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa1bf4f19 pci_save_state +EXPORT_SYMBOL vmlinux 0xa1c0b974 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xa1d007f5 tcp_poll +EXPORT_SYMBOL vmlinux 0xa1de7e2f dquot_scan_active +EXPORT_SYMBOL vmlinux 0xa1deff52 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa1eb9abd kobject_init +EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20eedc3 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa2348401 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa27c0227 param_get_ulong +EXPORT_SYMBOL vmlinux 0xa2812e28 sk_error_report +EXPORT_SYMBOL vmlinux 0xa287df8e crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2a38407 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xa2aa20ca of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xa2b315cb jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xa2c57c77 generic_setlease +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2de7e4f skb_queue_tail +EXPORT_SYMBOL vmlinux 0xa31cc134 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa33f7220 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xa3519874 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa3609be6 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xa3662e49 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xa36c89bd inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xa370251c dev_get_stats +EXPORT_SYMBOL vmlinux 0xa3743080 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa3773cd1 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xa38f9e17 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa3937b0d ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xa39ef90e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa3a3813d con_copy_unimap +EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xa3b3e3a8 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xa3d9e0dc padata_free +EXPORT_SYMBOL vmlinux 0xa3deaa36 mount_subtree +EXPORT_SYMBOL vmlinux 0xa3e501e6 genphy_update_link +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa4049a22 import_iovec +EXPORT_SYMBOL vmlinux 0xa40602a8 mmc_free_host +EXPORT_SYMBOL vmlinux 0xa40e66c4 follow_up +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4141d66 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa4153553 set_capacity +EXPORT_SYMBOL vmlinux 0xa42c9b7a get_phy_device +EXPORT_SYMBOL vmlinux 0xa42f38b0 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xa44314a8 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa4457f13 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xa445c95f md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa44cd12b __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xa4528b77 unregister_console +EXPORT_SYMBOL vmlinux 0xa453670a vme_master_request +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa4977c11 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xa49b6a74 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xa49e0ba6 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xa4a054df param_get_invbool +EXPORT_SYMBOL vmlinux 0xa4afcb76 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xa4c4e98a consume_skb +EXPORT_SYMBOL vmlinux 0xa4cb329b acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xa4cd2947 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xa4d0385d sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xa4da6a42 tty_check_change +EXPORT_SYMBOL vmlinux 0xa4fb525a rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa51c8b4d sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5360130 pci_find_resource +EXPORT_SYMBOL vmlinux 0xa542720f __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55d4eba iterate_supers_type +EXPORT_SYMBOL vmlinux 0xa57e879e release_sock +EXPORT_SYMBOL vmlinux 0xa592d324 page_get_link +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5a01b1a max8925_reg_read +EXPORT_SYMBOL vmlinux 0xa5a9898a mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5c40376 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xa5cddb70 device_add_disk +EXPORT_SYMBOL vmlinux 0xa5cffc79 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xa5ec89cb generic_fillattr +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa609f8fe register_cdrom +EXPORT_SYMBOL vmlinux 0xa60f07ae _dev_notice +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61f443f tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa62ca8e3 seq_release_private +EXPORT_SYMBOL vmlinux 0xa63ebfc2 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa63fc5d8 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xa6427caa nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa64f888a scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa654f428 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xa6637376 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa666aee0 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xa66d2937 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xa66e7d50 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a275a1 vfs_rename +EXPORT_SYMBOL vmlinux 0xa6a61992 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa6ccab17 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xa6f8f91a udp_gro_complete +EXPORT_SYMBOL vmlinux 0xa6fc800b inet_frags_init +EXPORT_SYMBOL vmlinux 0xa703d84f vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7152783 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa71da873 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa7368c20 single_open +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7536961 mpage_readahead +EXPORT_SYMBOL vmlinux 0xa75e953a mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xa76ff5b4 may_umount +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa789bbb5 ether_setup +EXPORT_SYMBOL vmlinux 0xa79c12bf reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xa7a35ada inode_init_once +EXPORT_SYMBOL vmlinux 0xa7aadc28 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa7b92a99 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7d7aef8 skb_store_bits +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fdcd08 vga_client_register +EXPORT_SYMBOL vmlinux 0xa8149367 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xa81637e5 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa8314945 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xa836d464 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa851343d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa8596a4a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa86dd8ca kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa88ae09c xfrm_lookup +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a02660 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8aac1d3 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa8bedfde of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e684b9 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f55932 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90c3e88 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90df7d7 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91b6f64 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa96c5ac3 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa96fc0f6 ppp_input +EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa985f2b3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xa98e428c tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xa990f1a3 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xa994c2ad security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99c4488 dquot_disable +EXPORT_SYMBOL vmlinux 0xa99d339f make_bad_inode +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9fb3f78 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xa9fb92af misc_deregister +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa02cd87 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0f79ee of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa21a889 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa48d5a2 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7991ac may_umount_tree +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaaa797f4 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xaabf11a0 dquot_transfer +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad23f50 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaed9c68 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xaaf34a0e phy_connect_direct +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab06fd06 mr_dump +EXPORT_SYMBOL vmlinux 0xab2d2804 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b115c configfs_register_group +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab469e9d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xab499cb6 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xab549c98 amba_request_regions +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab64751d unregister_binfmt +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab86943c vme_slave_request +EXPORT_SYMBOL vmlinux 0xab882a49 user_path_create +EXPORT_SYMBOL vmlinux 0xab96bc11 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xab9b9950 devm_clk_get +EXPORT_SYMBOL vmlinux 0xab9cc698 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xaba52f01 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xabb35604 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xabbde2fe devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xabc90ada nf_reinject +EXPORT_SYMBOL vmlinux 0xabd36f62 setattr_copy +EXPORT_SYMBOL vmlinux 0xabdf8344 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf1b796 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf4eac2 vfs_unlink +EXPORT_SYMBOL vmlinux 0xabf60cd0 dev_get_flags +EXPORT_SYMBOL vmlinux 0xabf8c546 dquot_commit +EXPORT_SYMBOL vmlinux 0xac00628f mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xac0c5c4e zero_fill_bio +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1c69c5 bioset_exit +EXPORT_SYMBOL vmlinux 0xac279747 input_allocate_device +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac68ca35 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xaca553eb dma_resv_init +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb18ba0 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xacbcf116 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xacd03ce0 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacded2d5 d_move +EXPORT_SYMBOL vmlinux 0xace7e051 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xace84c3f skb_copy_header +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0a80d2 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad45d855 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xad51e331 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xad5d0993 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad6a4d55 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xad6b0a78 fman_port_get_device +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad86cf46 cdrom_release +EXPORT_SYMBOL vmlinux 0xad8bbbbe __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada7acac skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xadad3be6 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xadb1a88e unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xadbdbc0e tcp_disconnect +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadce3625 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd5640b filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xadf889d2 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae08e8dd nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xae1f3665 fc_mount +EXPORT_SYMBOL vmlinux 0xae253bdd neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xae264a2e kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xae2c6de1 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xae2d1015 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xae2f1a58 finish_open +EXPORT_SYMBOL vmlinux 0xae2f6105 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae44bb50 dev_mc_init +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae829a81 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xae9d7135 nf_log_unset +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb8fbce ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaebd1b18 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaee6ea9a max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xaefe7ba3 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xaf087d2e sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xaf152994 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xaf1e28ba fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xaf35eabb mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e8290 bio_endio +EXPORT_SYMBOL vmlinux 0xaf45ce56 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf770226 file_path +EXPORT_SYMBOL vmlinux 0xaf7dd9b4 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xaf9c58e0 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc08b7b tty_unregister_device +EXPORT_SYMBOL vmlinux 0xafc3d554 complete_request_key +EXPORT_SYMBOL vmlinux 0xb005dbe3 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb03bffd1 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04c573c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb0545a30 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xb05748a6 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07cb32e devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xb0820a4e __block_write_full_page +EXPORT_SYMBOL vmlinux 0xb089365e dma_set_mask +EXPORT_SYMBOL vmlinux 0xb09293ce kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xb095b883 alloc_pages +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a1f8e6 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0dbaa5e pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ef7dd5 __ps2_command +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f5b133 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb0fbaa4f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11cec7d dma_pool_create +EXPORT_SYMBOL vmlinux 0xb11d7100 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1272608 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1398167 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xb13ff440 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb17bc408 dquot_file_open +EXPORT_SYMBOL vmlinux 0xb19db57e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d3c29f unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e75f3e of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xb1ed8e8a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xb1fb7b1c input_get_keycode +EXPORT_SYMBOL vmlinux 0xb1ff08ca nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xb206656e netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xb20754ec inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb215ed5e i2c_verify_client +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb238e0a2 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb24b0f52 ps2_drain +EXPORT_SYMBOL vmlinux 0xb25d6d7f pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb2606358 path_is_under +EXPORT_SYMBOL vmlinux 0xb26ccc52 ipv4_specific +EXPORT_SYMBOL vmlinux 0xb2a66474 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb2a739b2 sk_wait_data +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2ccd3d6 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb2d09fc6 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30df406 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb31a69b9 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb3314d2a mii_check_media +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb361cc75 skb_trim +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb37b2c8a ppp_channel_index +EXPORT_SYMBOL vmlinux 0xb3812846 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xb3910d1c vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xb39d9245 __register_chrdev +EXPORT_SYMBOL vmlinux 0xb3a47d11 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3bd2c02 phy_get_pause +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3c4343d posix_test_lock +EXPORT_SYMBOL vmlinux 0xb3c6201a con_is_bound +EXPORT_SYMBOL vmlinux 0xb3ce8c25 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d35744 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb3d376c7 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xb3daff0c xfrm_state_update +EXPORT_SYMBOL vmlinux 0xb3e15c1f nd_dax_probe +EXPORT_SYMBOL vmlinux 0xb3f374ec mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb4179430 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xb422d7d2 __frontswap_test +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43767b0 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb440c061 iproc_msi_init +EXPORT_SYMBOL vmlinux 0xb441aa34 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xb442af3f dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb47a9c0b __neigh_create +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4a83ce4 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb4b184b0 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xb4c5842c km_new_mapping +EXPORT_SYMBOL vmlinux 0xb4cb2e12 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xb4d242bc skb_tx_error +EXPORT_SYMBOL vmlinux 0xb4dc0ec1 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb506b4a4 md_reload_sb +EXPORT_SYMBOL vmlinux 0xb511df5a phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xb51d16b7 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb558dc28 udp_ioctl +EXPORT_SYMBOL vmlinux 0xb5690977 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb57051c9 pci_match_id +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb583f73d seq_dentry +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb591d6cc find_vma +EXPORT_SYMBOL vmlinux 0xb5971cca tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5c3ea33 inet_bind +EXPORT_SYMBOL vmlinux 0xb5e30474 lru_cache_add +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5ea3a7c pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xb5ea6d4d xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xb5eac29d ilookup5 +EXPORT_SYMBOL vmlinux 0xb5f9e83b get_vm_area +EXPORT_SYMBOL vmlinux 0xb615fc36 ps2_command +EXPORT_SYMBOL vmlinux 0xb6180df8 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb621eced security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xb628136c jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63e15b1 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xb63f2047 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65fc021 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fca92 dev_close +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6867060 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb697507d nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xb6a14f4d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xb6a60143 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6adb056 generic_listxattr +EXPORT_SYMBOL vmlinux 0xb6b9754f page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xb6f1f6af dquot_resume +EXPORT_SYMBOL vmlinux 0xb6f9f314 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7022aab ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xb7029f67 vm_map_pages +EXPORT_SYMBOL vmlinux 0xb70d8a73 fman_bind +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb74d836d sget_fc +EXPORT_SYMBOL vmlinux 0xb7516c67 __put_user_ns +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb79314de pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xb7af21ae xattr_full_name +EXPORT_SYMBOL vmlinux 0xb7b5830b of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7db1216 seq_read +EXPORT_SYMBOL vmlinux 0xb7e6c081 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xb821c39a vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xb82d4c53 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb88fed03 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89f9dcb rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c99d84 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xb8d235f9 phy_connect +EXPORT_SYMBOL vmlinux 0xb8d58f75 init_task +EXPORT_SYMBOL vmlinux 0xb8f33e77 page_mapped +EXPORT_SYMBOL vmlinux 0xb9050eaf jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb92104c7 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb93a4871 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9516684 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xb95a541f qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xb970848e get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9ab5900 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb9af17df km_policy_notify +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bf886f kernel_read +EXPORT_SYMBOL vmlinux 0xb9c8720e pcim_iomap +EXPORT_SYMBOL vmlinux 0xb9ca523a xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb9e2e285 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba004a81 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba0da9d8 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1bb020 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xba1fc46e touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xba3cf686 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xba43a694 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba519ef6 block_write_end +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba6b9e62 kill_anon_super +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba7fe841 dev_load +EXPORT_SYMBOL vmlinux 0xba825fa2 cdrom_open +EXPORT_SYMBOL vmlinux 0xba85bd48 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xbac6e063 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbad70d9d netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xbad7fc65 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xbae401f4 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xbaf227c4 vma_set_file +EXPORT_SYMBOL vmlinux 0xbafe67dc xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1a20d3 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2f03de pci_resize_resource +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3b5ab2 pci_enable_device +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb58e505 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xbb602c2e tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb694089 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xbb7a3b1e fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xbb8f7672 sync_blockdev +EXPORT_SYMBOL vmlinux 0xbb928c96 napi_get_frags +EXPORT_SYMBOL vmlinux 0xbb95165b tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba83918 kernel_connect +EXPORT_SYMBOL vmlinux 0xbbc1193d ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xbbd1c765 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xbbd75e42 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xbbdcb01e reuseport_alloc +EXPORT_SYMBOL vmlinux 0xbbe7f2c7 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbfd4c10 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2ab4bc ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xbc2cc5bd __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xbc43683a sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xbc575a5d udp_set_csum +EXPORT_SYMBOL vmlinux 0xbc797a20 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xbc834b57 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xbc9091e8 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcc5875b dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbcc8218c fput +EXPORT_SYMBOL vmlinux 0xbce3d3dc mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xbce5c8d8 bio_uninit +EXPORT_SYMBOL vmlinux 0xbce64719 vm_insert_page +EXPORT_SYMBOL vmlinux 0xbcff8594 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xbcffe2e4 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xbd082248 __lock_page +EXPORT_SYMBOL vmlinux 0xbd0c9708 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4a4b86 bio_free_pages +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd76d187 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xbd858e7d dquot_destroy +EXPORT_SYMBOL vmlinux 0xbdb27014 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xbdba4411 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xbdce00d3 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xbdd94e79 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xbe104035 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe50d450 nobh_write_end +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6dfe13 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe80e2ab find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xbe84f77e acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xbe9ddc05 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xbeaf0354 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xbee1d06e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xbee5abfc phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf1fa760 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbf454861 register_shrinker +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5a3033 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xbf8c81f2 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa63d74 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff71dc9 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbffbb872 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc006edbe inet6_protos +EXPORT_SYMBOL vmlinux 0xc0084682 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc0172621 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc08acfc1 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xc096720e xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0aff981 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0cd3115 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xc0eedd4e setup_new_exec +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc10ada9a mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xc12fefdb trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc13f4d7f iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc14e7e73 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xc14fb8a1 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc15d9657 bio_split +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16bd310 dump_align +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16d27b1 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xc1a98720 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xc1b07f8c cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1e6e276 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xc1f798b6 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xc1fa5c50 peernet2id +EXPORT_SYMBOL vmlinux 0xc20341d2 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc25de9ed writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2748244 pci_disable_device +EXPORT_SYMBOL vmlinux 0xc2944c5c eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2bc8234 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e2e13d blk_rq_init +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc2fe77d5 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc30e102e put_fs_context +EXPORT_SYMBOL vmlinux 0xc30e38b9 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc332a8e5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc3431224 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xc34c9b7c __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc3505d38 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xc35711a9 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xc35a40ca iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xc3638546 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc3777aae netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3903fd9 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xc3957b3d netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xc3a69957 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c0d6e8 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xc3cc8c20 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d16f05 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xc3dd9a00 from_kgid +EXPORT_SYMBOL vmlinux 0xc3e44d33 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc3fe0666 key_task_permission +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc407ea9f input_unregister_handle +EXPORT_SYMBOL vmlinux 0xc409148b backlight_device_register +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc4317969 proto_register +EXPORT_SYMBOL vmlinux 0xc43d636a bmap +EXPORT_SYMBOL vmlinux 0xc45ce378 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xc45da2fe md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48b38aa ethtool_notify +EXPORT_SYMBOL vmlinux 0xc4a15c4a phy_loopback +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4c91796 fman_get_revision +EXPORT_SYMBOL vmlinux 0xc4d8cbe2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc4e32267 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xc502cfde __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xc50d44f0 ll_rw_block +EXPORT_SYMBOL vmlinux 0xc51d5e2d netlink_unicast +EXPORT_SYMBOL vmlinux 0xc51d8b27 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc571704d jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc582fddc tcp_conn_request +EXPORT_SYMBOL vmlinux 0xc5864add vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc590c844 tso_start +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59fa60a vme_dma_request +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5ab6145 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xc5ac0fc0 file_open_root +EXPORT_SYMBOL vmlinux 0xc5acb671 sock_alloc +EXPORT_SYMBOL vmlinux 0xc5ae4c16 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xc5b1a697 phy_device_free +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bcb542 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xc5bf3b88 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xc5e5249d d_make_root +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ea966c of_device_register +EXPORT_SYMBOL vmlinux 0xc5ee8fd0 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xc5f7647b scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6418f8f md_unregister_thread +EXPORT_SYMBOL vmlinux 0xc641f765 param_get_bool +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6972456 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6a9b0f9 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xc6ad198d tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cf918f vfs_iter_read +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d0cfab skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72ec78f _dev_err +EXPORT_SYMBOL vmlinux 0xc72faa65 config_item_set_name +EXPORT_SYMBOL vmlinux 0xc7343af5 param_get_long +EXPORT_SYMBOL vmlinux 0xc746a06d pci_disable_msi +EXPORT_SYMBOL vmlinux 0xc7593cf1 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xc767b221 get_tz_trend +EXPORT_SYMBOL vmlinux 0xc77503aa tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc796f8cc proc_mkdir +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a7729c __frontswap_load +EXPORT_SYMBOL vmlinux 0xc7b2b367 skb_queue_head +EXPORT_SYMBOL vmlinux 0xc7b4081c phy_device_register +EXPORT_SYMBOL vmlinux 0xc7b8e70b arp_create +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7ecf02c of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xc7f66171 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xc7f97cb9 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xc803098f _dev_crit +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8133eb6 skb_pull +EXPORT_SYMBOL vmlinux 0xc837686c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87a9694 skb_checksum +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8d24fa5 freeze_super +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc9096c7d sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xc910c343 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc926c1bf page_mapping +EXPORT_SYMBOL vmlinux 0xc9273db7 sock_no_accept +EXPORT_SYMBOL vmlinux 0xc927ec1c cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xc93b95b7 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96febbc i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc973e319 simple_get_link +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99ef759 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xc9c9e5b8 release_pages +EXPORT_SYMBOL vmlinux 0xc9cfe5fb devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9fa4bbb pci_pme_capable +EXPORT_SYMBOL vmlinux 0xc9fe67dc register_netdev +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2a329e sock_no_listen +EXPORT_SYMBOL vmlinux 0xca2ee9b5 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xca3de5f1 dev_set_alias +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca45c332 bio_devname +EXPORT_SYMBOL vmlinux 0xca4f1286 proc_set_size +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca6b152a inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xca740f99 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xca81d5b8 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca958a2b vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xca96cd0d blk_queue_split +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcaa3cdca __register_binfmt +EXPORT_SYMBOL vmlinux 0xcabaea68 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcad1e001 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xcadeb03f cdrom_check_events +EXPORT_SYMBOL vmlinux 0xcae5b2ae xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafa8701 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xcafb0189 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb07e6b0 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xcb101c41 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xcb25fe3d inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xcb260d86 kernel_bind +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb401b2f jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xcb438860 update_devfreq +EXPORT_SYMBOL vmlinux 0xcb63deda ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xcb69ca75 free_task +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb90a350 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xcbad2acd __neigh_event_send +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc8d83d phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd96ac0 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xcbea0ba1 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xcbed22ea clkdev_drop +EXPORT_SYMBOL vmlinux 0xcbf407ce vme_register_driver +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcbfc4c2b xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xcc129c63 key_type_keyring +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc3227db blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc45e99d inet_put_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc65d3c9 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xcc78645e linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xcca0738e page_readlink +EXPORT_SYMBOL vmlinux 0xcca4a674 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca87f12 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xccb8aeea sock_recvmsg +EXPORT_SYMBOL vmlinux 0xccc05282 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd900bf vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xcce5a20d simple_empty +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd059ac9 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xcd0f0907 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xcd179f3c __bread_gfp +EXPORT_SYMBOL vmlinux 0xcd1801d2 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xcd1efe95 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xcd2315d5 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xcd235321 vfs_mknod +EXPORT_SYMBOL vmlinux 0xcd23ab96 netlink_ack +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd39e6f7 touch_buffer +EXPORT_SYMBOL vmlinux 0xcd49edbc xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xcd5473f4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xcd80ca96 is_subdir +EXPORT_SYMBOL vmlinux 0xcd850cbd input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xcd8b5bdb md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd9a7a04 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xcda79ab3 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd0010c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xcde0726f mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce06f4a7 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xce07158e nf_log_trace +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3d82b7 tty_devnum +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e196c udp_prot +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce4fbab1 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xce55c0eb ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xce5703da locks_delete_block +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5e924d mpage_readpage +EXPORT_SYMBOL vmlinux 0xce6d0418 udp_seq_start +EXPORT_SYMBOL vmlinux 0xce6d0901 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xce6d66e6 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce87deeb super_setup_bdi +EXPORT_SYMBOL vmlinux 0xcea5091c napi_build_skb +EXPORT_SYMBOL vmlinux 0xcea8e1f8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec1a3be dquot_release +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcee3722f mmc_of_parse +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf043d48 try_module_get +EXPORT_SYMBOL vmlinux 0xcf0f5c98 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xcf162b57 _dev_info +EXPORT_SYMBOL vmlinux 0xcf1ca22d of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xcf25fc70 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf31e3d0 scsi_add_device +EXPORT_SYMBOL vmlinux 0xcf49dedd dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb524cb dm_table_event +EXPORT_SYMBOL vmlinux 0xcfb861a2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xd00cb0d1 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xd00ef2f2 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xd01ba8b8 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd024269f tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd036bdff dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd0478cf6 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0538812 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xd059460a flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd09e40f6 icmp6_send +EXPORT_SYMBOL vmlinux 0xd0a9f892 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0d4d6b9 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0feefdf register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xd102d6e4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xd1078e08 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xd118994a d_tmpfile +EXPORT_SYMBOL vmlinux 0xd11f4655 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd11f5002 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1366d47 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xd1436e58 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd165d4f9 lookup_one +EXPORT_SYMBOL vmlinux 0xd16f4dd4 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xd17b93dc mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1d227f9 phy_print_status +EXPORT_SYMBOL vmlinux 0xd1d568ae tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd2005edf ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd23b772d rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd2462e04 pci_clear_master +EXPORT_SYMBOL vmlinux 0xd24f26e1 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xd252c3d8 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2607500 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xd272002b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27935c9 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28a212a inet_accept +EXPORT_SYMBOL vmlinux 0xd291af78 generic_perform_write +EXPORT_SYMBOL vmlinux 0xd2bd0233 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2cb7da9 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd304886d stop_tty +EXPORT_SYMBOL vmlinux 0xd3120090 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd334d319 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xd34d015d mdio_device_free +EXPORT_SYMBOL vmlinux 0xd34ebaec set_binfmt +EXPORT_SYMBOL vmlinux 0xd3504d0f iterate_fd +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35bdba8 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37df6a1 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xd3828a5e phy_start +EXPORT_SYMBOL vmlinux 0xd38b2e92 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xd38ea51d rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xd39ff29f sk_stream_error +EXPORT_SYMBOL vmlinux 0xd3af5b1f udp_pre_connect +EXPORT_SYMBOL vmlinux 0xd3c26789 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xd3df5bd0 input_flush_device +EXPORT_SYMBOL vmlinux 0xd3e1dc5f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xd3e882f7 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3ecce36 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xd3f76977 amba_find_device +EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xd401a257 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45d3a7e vme_lm_request +EXPORT_SYMBOL vmlinux 0xd46cef50 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xd472f7fa fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd47cbe92 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd484fc96 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4ac1c7c sock_set_priority +EXPORT_SYMBOL vmlinux 0xd4b7fec1 dquot_initialize +EXPORT_SYMBOL vmlinux 0xd4b9b925 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e833ab dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd4f42c27 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5264323 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd52d15e1 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xd531fb1e mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd53c7ff7 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xd5540306 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xd561b294 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xd56ace7a kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd5742f87 generic_permission +EXPORT_SYMBOL vmlinux 0xd58e5e05 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd5902da4 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xd5961132 inet6_release +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5bd3d46 __frontswap_store +EXPORT_SYMBOL vmlinux 0xd5c55f9b seq_escape_mem +EXPORT_SYMBOL vmlinux 0xd5db286f netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xd5dcaae6 console_start +EXPORT_SYMBOL vmlinux 0xd5e4efe1 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd6052fd8 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60e4672 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xd6192b46 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xd61adea5 iterate_dir +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd6423b28 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd6626def dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xd6729a26 seq_escape +EXPORT_SYMBOL vmlinux 0xd675b825 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd6863ea0 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd687b2f1 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd68c667c block_write_begin +EXPORT_SYMBOL vmlinux 0xd68c99cf netlink_set_err +EXPORT_SYMBOL vmlinux 0xd68e2e5a drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd694374b twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xd6a1445d generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b43e17 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xd6bbac1e udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xd6c4f11f tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xd6e2de3e __mdiobus_register +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd7312026 follow_pfn +EXPORT_SYMBOL vmlinux 0xd7342417 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73f0165 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xd76cdb1a dquot_alloc +EXPORT_SYMBOL vmlinux 0xd77e9f16 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd78313f6 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd78345d2 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd7851ca9 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd7980cf5 inode_insert5 +EXPORT_SYMBOL vmlinux 0xd7a48046 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xd7a9763e textsearch_register +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e35da1 processors +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f8b589 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xd7fc8845 tty_lock +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd80226df simple_transaction_release +EXPORT_SYMBOL vmlinux 0xd806ecfc vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd833e096 mmc_put_card +EXPORT_SYMBOL vmlinux 0xd8356a40 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xd8376bb4 do_splice_direct +EXPORT_SYMBOL vmlinux 0xd8611968 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xd8854a1f __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xd8923e4e d_alloc +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aaf998 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b71fdf end_page_writeback +EXPORT_SYMBOL vmlinux 0xd8b8dc3f param_set_invbool +EXPORT_SYMBOL vmlinux 0xd8c2074b skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd8c6e34c scsi_ioctl +EXPORT_SYMBOL vmlinux 0xd8cf2cb6 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xd8dccaff _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8df3c6e udp_sendmsg +EXPORT_SYMBOL vmlinux 0xd8e26292 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xd8f189e8 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xd8f8eaf3 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xd904a6bc configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xd904d9f1 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xd90a8964 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xd910234f netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd93bb8ce wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd960ada0 file_remove_privs +EXPORT_SYMBOL vmlinux 0xd96bc28f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd9733d81 unload_nls +EXPORT_SYMBOL vmlinux 0xd975d7eb mdiobus_write +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd991924d ip_local_deliver +EXPORT_SYMBOL vmlinux 0xd992ee06 seq_lseek +EXPORT_SYMBOL vmlinux 0xd99e319b generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xd9a0db07 param_get_int +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9a6ea43 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd9b55d82 phy_init_hw +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9dd983b dqget +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda10d737 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xda10e88c pci_irq_vector +EXPORT_SYMBOL vmlinux 0xda3747ae input_unregister_handler +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7403ad __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda9e1777 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xdab14f0a dup_iter +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdae1d17c qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xdaebcc8f unregister_netdev +EXPORT_SYMBOL vmlinux 0xdaf758aa d_find_any_alias +EXPORT_SYMBOL vmlinux 0xdb50e80d scsi_remove_device +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb71ae61 eth_header_parse +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb971532 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xdba66f15 netif_device_attach +EXPORT_SYMBOL vmlinux 0xdbc7addb xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdd7fe8 rtc_add_group +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdc0a30b0 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xdc0b6432 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc261c6f nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xdc311ae2 dev_set_group +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc41e0ee flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5164db dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5cd175 begin_new_exec +EXPORT_SYMBOL vmlinux 0xdc6205c2 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xdc6d704c pnp_device_detach +EXPORT_SYMBOL vmlinux 0xdc6f4f50 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xdc8ee759 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xdc9dea16 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xdca822dd scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbaf8b8 vme_irq_free +EXPORT_SYMBOL vmlinux 0xdcbd7402 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xdccf7da6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xdcd07a11 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xdcdd1356 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xdcf18b5b fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd03d39a mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xdd10095c of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xdd178a15 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2ebec9 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xdd44ccdd posix_lock_file +EXPORT_SYMBOL vmlinux 0xdd57aa45 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd708b67 __seq_open_private +EXPORT_SYMBOL vmlinux 0xdd7179c2 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xdd786322 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd880dc5 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xdd919e8e page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xdda05ac8 netdev_warn +EXPORT_SYMBOL vmlinux 0xdda50bcb blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xdda5e4db end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddbe1356 softnet_data +EXPORT_SYMBOL vmlinux 0xddd73796 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfba40e dev_set_threaded +EXPORT_SYMBOL vmlinux 0xde044129 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xde0add55 shmem_aops +EXPORT_SYMBOL vmlinux 0xde14711e d_invalidate +EXPORT_SYMBOL vmlinux 0xde202a44 vmap +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde307029 keyring_clear +EXPORT_SYMBOL vmlinux 0xde3c158c mmc_release_host +EXPORT_SYMBOL vmlinux 0xde444c5d start_tty +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde5351fa param_ops_long +EXPORT_SYMBOL vmlinux 0xde5cb0b0 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xdec727c9 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef2aa0c __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefd218b simple_setattr +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf275a00 vc_resize +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf45de5d dev_remove_offload +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf70b704 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xdf7adf33 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xdf8493cb d_drop +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf90df19 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf98139f prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xdfab0e5d seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xdfb31742 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xdfca1e3d scmd_printk +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd5209b nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xdfda914f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe0d652 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xdff07a60 security_path_rename +EXPORT_SYMBOL vmlinux 0xdff62bbd param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffb9d1a netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe005e5a8 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xe0185d79 __serio_register_port +EXPORT_SYMBOL vmlinux 0xe0233f3f pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe027a116 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe0387916 cont_write_begin +EXPORT_SYMBOL vmlinux 0xe039c4f1 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe099a831 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xe0a374d2 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xe0a53157 submit_bh +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0cd92a5 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xe0cf9f8e simple_write_begin +EXPORT_SYMBOL vmlinux 0xe0d5fda3 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xe0d949bd set_bh_page +EXPORT_SYMBOL vmlinux 0xe0e3088d filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xe107f4c3 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xe10d50d0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe117f30a simple_fill_super +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe11d8689 __phy_resume +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe159f39f fs_bio_set +EXPORT_SYMBOL vmlinux 0xe1665e64 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe173d233 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xe17ffe83 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xe183bd79 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1bebff6 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1f5ab77 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xe1fd220c __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xe1fdf04f should_remove_suid +EXPORT_SYMBOL vmlinux 0xe20069b8 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe212c1a4 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe235c5f8 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe238673a fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xe25713d5 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xe25b1c69 nf_log_packet +EXPORT_SYMBOL vmlinux 0xe2681fda __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xe272cce0 set_disk_ro +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe2782c51 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xe27e4f02 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe2958afc xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xe2a56979 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xe2cb5140 sock_rfree +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e473b5 fget +EXPORT_SYMBOL vmlinux 0xe3048bf6 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe3223182 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32cf6c7 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xe3385f4e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe338e3d6 dev_change_flags +EXPORT_SYMBOL vmlinux 0xe33fa2c5 input_release_device +EXPORT_SYMBOL vmlinux 0xe341b349 input_register_device +EXPORT_SYMBOL vmlinux 0xe3438ea0 key_alloc +EXPORT_SYMBOL vmlinux 0xe36f1673 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xe3748a6d param_ops_hexint +EXPORT_SYMBOL vmlinux 0xe385f597 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xe38dd70e vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a56166 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe3a8eb64 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xe3ae54be dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xe3c7c6f9 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xe3c98625 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xe3e25809 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xe3e4f3ed pci_set_mwi +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ef5049 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xe3f0f76e tcp_filter +EXPORT_SYMBOL vmlinux 0xe3f98554 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe4130106 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xe4236689 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xe42caa45 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4364317 audit_log_start +EXPORT_SYMBOL vmlinux 0xe46a9b0d qdisc_put +EXPORT_SYMBOL vmlinux 0xe4803099 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe4964b1d request_firmware +EXPORT_SYMBOL vmlinux 0xe4a8d9e2 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xe4b0a3f2 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c5db37 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe4d56f52 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xe50734c6 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe50c9d84 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xe51c57b9 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe51ff50e netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52cbd8a tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xe52feeae __lock_buffer +EXPORT_SYMBOL vmlinux 0xe5305b83 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xe5586daa inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xe55d3002 param_get_hexint +EXPORT_SYMBOL vmlinux 0xe5758c53 md_integrity_register +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe582398e wake_up_process +EXPORT_SYMBOL vmlinux 0xe58aa6c8 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe598908a seq_release +EXPORT_SYMBOL vmlinux 0xe5a1b819 phy_modify_paged +EXPORT_SYMBOL vmlinux 0xe5af2054 register_quota_format +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ced6ce datagram_poll +EXPORT_SYMBOL vmlinux 0xe5e65ddf xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xe5e94a7e ip_frag_init +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61522e5 netdev_crit +EXPORT_SYMBOL vmlinux 0xe6296b24 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xe64ed716 send_sig +EXPORT_SYMBOL vmlinux 0xe6878ae1 tty_port_close +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe69437e5 deactivate_super +EXPORT_SYMBOL vmlinux 0xe69f9468 read_cache_page +EXPORT_SYMBOL vmlinux 0xe6b4e8a1 d_add_ci +EXPORT_SYMBOL vmlinux 0xe6b73bbf proc_create_single_data +EXPORT_SYMBOL vmlinux 0xe6b81651 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xe6c750a1 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6e56991 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xe6e9dc5f max8998_read_reg +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe7136211 nf_log_register +EXPORT_SYMBOL vmlinux 0xe7138550 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xe721124b ip6_output +EXPORT_SYMBOL vmlinux 0xe722d4f2 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72a2c79 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe75863ab flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe78cbefc vme_bus_num +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7b26aea tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xe7c249ce kernel_listen +EXPORT_SYMBOL vmlinux 0xe7cbfbbb proc_remove +EXPORT_SYMBOL vmlinux 0xe7d25d36 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d52eff md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe7fa2713 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xe80480f0 __icmp_send +EXPORT_SYMBOL vmlinux 0xe8102f86 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe816e4fa __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xe8292537 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe8428314 phy_init_eee +EXPORT_SYMBOL vmlinux 0xe843e996 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8602914 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe86b62a4 tty_register_driver +EXPORT_SYMBOL vmlinux 0xe86f5e9c pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8b89cec mark_page_accessed +EXPORT_SYMBOL vmlinux 0xe8c8a405 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xe8d3aa55 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe8f18111 sock_create +EXPORT_SYMBOL vmlinux 0xe8f837ef dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe9064763 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93d5a48 set_nlink +EXPORT_SYMBOL vmlinux 0xe93d6194 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xe93da441 sk_capable +EXPORT_SYMBOL vmlinux 0xe9409c2a nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe971211e __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe9882418 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe98d4dda genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe9900e94 dm_get_device +EXPORT_SYMBOL vmlinux 0xe999adce pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe9a6c23a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b3eb5e simple_link +EXPORT_SYMBOL vmlinux 0xe9baf19e blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe9d4425f mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xe9e5830d config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9edd3cc __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xe9f6eecb km_report +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea1298bd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea39f1cb mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4b2f60 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xea518747 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xea5be997 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea7fd669 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xea84a129 kfree_skb +EXPORT_SYMBOL vmlinux 0xea855aef blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae1d864 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf883d2 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb0c2442 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xeb10d70a phy_attach_direct +EXPORT_SYMBOL vmlinux 0xeb136e0e i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xeb1da1c8 vm_map_ram +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb37a848 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xeb4254c9 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb6d3ba5 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xeb7a27c2 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebaa6ac9 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xebbae0d3 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xebc10dc6 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xebc94f8f xfrm_register_type +EXPORT_SYMBOL vmlinux 0xebdd33be rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xebfccb14 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xec03c463 regset_get +EXPORT_SYMBOL vmlinux 0xec07d195 iget5_locked +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec2e3fbe neigh_seq_next +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec34461b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5598fb inode_add_bytes +EXPORT_SYMBOL vmlinux 0xec603fab bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xec6b8ba8 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xec82db47 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xec885e7b amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xec892617 get_task_cred +EXPORT_SYMBOL vmlinux 0xec967d5c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed07e9b7 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xed129707 mii_link_ok +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed245f75 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xed531bf0 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed863fb1 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed9fc4c4 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xeda60eb7 init_net +EXPORT_SYMBOL vmlinux 0xedad72ce mmc_can_discard +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbe3621 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd3985d generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xedd7f6c1 d_obtain_root +EXPORT_SYMBOL vmlinux 0xede81a54 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xee00c7dd scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xee1c4454 inet_shutdown +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee4279d2 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xee4ea3a0 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xee569cad i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee607b9a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xee623a84 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xee63b47a clear_nlink +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d1cc6 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee92953e tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xeea772f2 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeebb673f refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xeec1cfb6 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xeed9410e scsi_register_interface +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeeeea82 ping_prot +EXPORT_SYMBOL vmlinux 0xef021d4f iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xef13b454 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xef16111d kset_register +EXPORT_SYMBOL vmlinux 0xef163c6b of_iomap +EXPORT_SYMBOL vmlinux 0xef17fe5c inet_csk_accept +EXPORT_SYMBOL vmlinux 0xef43db88 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xef4c00f4 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xef7bf304 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef9a321d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc05be8 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xefc2af00 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefe75c51 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf009b2bf flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xf0264540 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xf028649b ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf02c8c6a dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xf0464e59 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xf0464ef1 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xf04f75b7 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xf0548273 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xf06c07e8 tty_name +EXPORT_SYMBOL vmlinux 0xf06e9446 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xf0860ed1 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf08df86e clocksource_unregister +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09f565a ptp_clock_register +EXPORT_SYMBOL vmlinux 0xf0a0f670 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xf0a3b861 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xf0a4bbff mmput_async +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0a839df tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf0ac65af jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0bde4f5 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xf0c04e17 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xf0c1f8ad security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xf0c2c4ac phy_resume +EXPORT_SYMBOL vmlinux 0xf0c8f870 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf0e656a1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xf0fb7278 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xf0fbcd9f __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf10b429e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xf10b8760 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf1174129 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf137b493 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf13e62e0 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xf16383d1 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xf175aa24 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xf182bae8 cdev_init +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf186b2f4 rproc_put +EXPORT_SYMBOL vmlinux 0xf18b8d20 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a1ca49 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xf1adb102 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xf1b3995e set_create_files_as +EXPORT_SYMBOL vmlinux 0xf1c7afe3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf22671eb tcf_classify +EXPORT_SYMBOL vmlinux 0xf230cf88 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xf23cc56a dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf23e24e0 write_one_page +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf26cfdde generic_write_end +EXPORT_SYMBOL vmlinux 0xf27a2738 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xf27e4f58 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29533ec irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b75c93 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c45bc5 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xf2de6da6 elv_rb_find +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f7575c max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf3074beb mount_nodev +EXPORT_SYMBOL vmlinux 0xf30e522a devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31784bb vfs_create +EXPORT_SYMBOL vmlinux 0xf3395eb1 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xf33ff51a twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3561661 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xf3793a05 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39eb76f sock_no_linger +EXPORT_SYMBOL vmlinux 0xf3a18c4f pci_dev_get +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3ade753 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3d58159 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xf3d75c78 sock_wfree +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ee07df kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xf3ee584b dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf3f9981f fman_get_mem_region +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf400ff1c filp_open +EXPORT_SYMBOL vmlinux 0xf404c56f sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xf4156781 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xf41d5a4c pci_scan_bus +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44c9e0b disk_stack_limits +EXPORT_SYMBOL vmlinux 0xf46d2fa5 netdev_update_features +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4760894 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xf484f7a5 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xf4980cd3 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf4b675f8 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c22290 ihold +EXPORT_SYMBOL vmlinux 0xf4c28162 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf4c6781b xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e4fdbc clkdev_add +EXPORT_SYMBOL vmlinux 0xf4e80866 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5128a1d bdi_register +EXPORT_SYMBOL vmlinux 0xf5343579 kernel_write +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5554123 security_sk_clone +EXPORT_SYMBOL vmlinux 0xf5577845 inode_init_owner +EXPORT_SYMBOL vmlinux 0xf55780a4 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf561bb26 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xf584dd12 sock_edemux +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf597d1f1 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a2e0c7 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf5a34532 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf5a6912d of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5bcf5f4 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xf5bd80ae pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf5bec402 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xf5db45fd dev_uc_flush +EXPORT_SYMBOL vmlinux 0xf5dbf1bc dquot_quota_off +EXPORT_SYMBOL vmlinux 0xf5dfca84 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f02bf5 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf5f650f1 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf5fbb813 netif_skb_features +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63228a9 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xf63be430 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6472b8f phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xf653705b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67030fc misc_register +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6e179bb dcache_dir_open +EXPORT_SYMBOL vmlinux 0xf6e7e6c5 cdev_del +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f8f780 pid_task +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf727ba47 param_ops_uint +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf74c9b52 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xf74d27ea __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf75df121 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76cc4e0 tcf_em_register +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf77e4f93 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xf7a39c27 amba_device_register +EXPORT_SYMBOL vmlinux 0xf7afaf1c bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xf7b24bfc read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xf7b9be5f pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7c87379 dst_destroy +EXPORT_SYMBOL vmlinux 0xf7cf9399 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xf7d2335e of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7df6e15 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf8079760 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xf80f877a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81d4858 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8311de0 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xf83c9b7f xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf841285d mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xf849df7c page_pool_destroy +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf86dcc6c keyring_alloc +EXPORT_SYMBOL vmlinux 0xf87ac6e3 dma_supported +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf893050f param_set_uint +EXPORT_SYMBOL vmlinux 0xf8a364c1 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8ca5baf tcp_close +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8dc3dfc super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fa3b9d dcb_setapp +EXPORT_SYMBOL vmlinux 0xf905fa2b textsearch_prepare +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9763ed1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xf98d60dc tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xf9a13cf2 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aa0619 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9daa24f pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf9e1af12 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xf9e85882 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9fe6953 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xf9fe7929 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xfa0030a0 path_put +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa207c1d neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa30777d tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xfa34c3c0 skb_put +EXPORT_SYMBOL vmlinux 0xfa3ffb9a sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xfa41565e vfs_link +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7d3dd9 page_pool_create +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa97fd73 __module_get +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaada289 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xfab0323d dm_put_device +EXPORT_SYMBOL vmlinux 0xfabaa690 elevator_alloc +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfb162213 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xfb1aa1fb kmem_cache_create +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb551637 inode_permission +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb75a83c pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xfb8f56d4 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xfb9f000f mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe1f5d2 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbea2eb9 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xfbfcb46b ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xfc016e7a skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfc017c45 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xfc064d00 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfc23c022 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xfc2d76e1 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc3b63dc xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc967eab simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xfc98ff20 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca038a0 sock_no_getname +EXPORT_SYMBOL vmlinux 0xfcb300da tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xfcb74609 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xfcc2f0bb jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xfcc6df98 devm_iounmap +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce47680 dget_parent +EXPORT_SYMBOL vmlinux 0xfce96dc5 ip6_xmit +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf3ae4f _dev_warn +EXPORT_SYMBOL vmlinux 0xfcf51672 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xfcf63ee3 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xfd12a625 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xfd2686e8 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xfd2f8936 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xfd320481 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xfd3aa6ff pci_map_rom +EXPORT_SYMBOL vmlinux 0xfd3dc0c8 vfs_readlink +EXPORT_SYMBOL vmlinux 0xfd4a3f1c dev_alloc_name +EXPORT_SYMBOL vmlinux 0xfd5af626 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xfd743448 skb_eth_push +EXPORT_SYMBOL vmlinux 0xfd9a7a63 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdafc4bc phy_disconnect +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdf17b69 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe097cba dm_register_target +EXPORT_SYMBOL vmlinux 0xfe155508 con_is_visible +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe79043d scsi_print_result +EXPORT_SYMBOL vmlinux 0xfe8520af bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xfe8bbf8f netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe98abb1 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebd5481 locks_init_lock +EXPORT_SYMBOL vmlinux 0xfec97f08 __block_write_begin +EXPORT_SYMBOL vmlinux 0xfed103bf pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xfed2e39d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeef06a8 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xfef1566f noop_llseek +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfeffb3c3 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xff00b163 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xff01e21c simple_rename +EXPORT_SYMBOL vmlinux 0xff064527 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xff1954ff __dquot_free_space +EXPORT_SYMBOL vmlinux 0xff19d5d5 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff48af38 netif_device_detach +EXPORT_SYMBOL vmlinux 0xff6582d7 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6c6a68 has_capability +EXPORT_SYMBOL vmlinux 0xff73763b dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xff73ef6f mii_nway_restart +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff9cdad0 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xffa7af95 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xffaedb7d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffb89455 elv_rb_del +EXPORT_SYMBOL vmlinux 0xffc2384c skb_copy_bits +EXPORT_SYMBOL vmlinux 0xffc37ed4 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xffcc4990 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd0df71 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xffd1a293 key_revoke +EXPORT_SYMBOL vmlinux 0xffd4cca3 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x0011381a af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x04dbca4c af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x0c398135 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x21bc4a37 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x275793ec af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x293c0bd4 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x4e89e818 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x734d8c8c af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xa156c881 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xa25944b6 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xa560ef5e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb26aef28 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xc1b8f985 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xc222ad93 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4c65df5 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb03b774 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xee0bf591 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xfcd2af2e af_alg_poll +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x2d81277b asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x61276053 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x20bc5d93 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x59f53e8a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x74d53a9b async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf945cbf1 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x61e69746 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdac2e7fc __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf4c4a3a3 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfefef74c async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x21368c1e async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7b98c9d5 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x85669e0b async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe7489e1b async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x021630a4 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9bdeccdb cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1d8686a6 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x0157018d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x22551496 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x252af17d cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x257d0ba0 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x38777d8e cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3bef16e6 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3f69137e cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4602d71d cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x57e8c9ab cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x5a0dd412 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa39d8010 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xbf4c700e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc0bb25db cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04beeabf crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2fe563c7 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x79b375d7 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80446916 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x84433fb8 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9bba30c2 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa89e3eac crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbfeb3a03 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcbcb5ab0 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeb040c5d crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf2f56fce crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf54b1f8b crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf6826d95 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x03de8c40 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x075f4bc3 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc59264d9 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xddb07cbc simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x3c6d9c96 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x44c19da5 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3635ac5a __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4a375e5f acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa2dbfb05 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xabb7e0ca acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd998505d acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd549f826 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xbe2ed5d1 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x300b73e6 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x34bee552 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7d95a275 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x68d03edc __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x453270c8 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x945f94a0 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x11526522 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x95556794 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x31ea0896 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xafe31c40 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x92a57c9d __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xd669fa24 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x19464737 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xbe5d7058 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x87211502 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xafe05202 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcbfeb6e5 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf26d321b __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xba184d1e __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd8d57017 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x086b0785 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x100f0a1a bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x15f6c316 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3814d30f bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f7cbdab bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46f8b685 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4712303b bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50203f19 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69f80848 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8eaa81a3 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x92095f7b bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x935e4b01 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98093ce6 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a6da71a bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa536c8a bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc1941478 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc045b45 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc940c7a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe98eba78 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec837fff bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeca545cd bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1f10fdf bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf917acf1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcff43e1 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x067846e4 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x09c0bcdd btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x14fe1c02 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1e6fe72b btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3057db32 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x53241635 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6bdf94bb btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7cf6277b btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x12e66b76 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2515b58d btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2593ac06 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2949c5be btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3201c729 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5783d21a btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5833adbd btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bbc5dc7 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x680b7598 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x80d689ab btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e25a074 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb71e73ea btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbb6a26ba btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf283642 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd17ddb68 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf462d225 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0572052c btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x251db238 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x43df68c7 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54913042 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x65bbf43c btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x81fa8b2a btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x934d0850 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2b1b60b btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf5061c7 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfa3e8697 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfce670cd btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8e9e57af qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc559b5f6 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc609c30f qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdeff9993 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf857f6a4 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x00aa9b23 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x23f654d0 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3af80974 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa670e9e4 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb7482041 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xeed897ae btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x31b6cf79 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x80f47386 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9b523000 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa6df6d25 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0d0ea62c mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x100f8179 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x10632649 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x13c7ba4f mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1785d240 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x19cdbe3a mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3f0c0d54 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4a1d98aa mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4a7c0f8c mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4cdecfc0 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x619e6472 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6a539e06 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x74ee0f7d mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x86b43687 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8df2165e mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x93d4b069 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa291143e mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa4a18357 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaf685024 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb022735e mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb8874e94 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbe022d89 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xbf0842ee mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcd6a9518 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xde94faa5 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe71770f3 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe7c767ee mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xef2e34e5 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf1c00eff mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0cf279af moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9f7ac638 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa1afea43 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xea2459cf moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x3db08f8d __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xe40cf48a sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x22d30a58 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x311fd3d8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa40516b7 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xec8cf775 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e5f8a53 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e98da3d clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x17d44071 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28a2f5c4 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x794c2f43 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7a7d500f clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x919231fc qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9b7543e9 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb1bec2dd gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb41b4ecf qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc3e9996a qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc92c0946 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8e80184 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdc014e02 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x096aa17b sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0a3ec278 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x14212841 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1ca519ca sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cad4f51 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4f93d75f sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x597905e4 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x61ccca62 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9925914a sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf833f64 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc13c2e22 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x061ca666 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09d11ce5 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c48a4df comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x14c98d6e comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x17929213 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1c15504d comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x226ffd28 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26b80be2 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ff16906 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59045737 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x612f8270 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6aa92ec9 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6c26563c comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6e289143 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x77d0eddb comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7842acf8 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b9a9bae comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fe0369d comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x869f9398 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8756f1d5 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9611cd1f comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9ffcd0ae comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa60b1a7d comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa6d2f45e comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb6bd7efc comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc3da5a32 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc65be4c1 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcbc74253 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc1b95f2 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcef14135 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3d5a24f comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd6d80440 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd844ab64 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2d00ba7 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf71691d3 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd5530bd comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0e391f20 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x35eff050 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3b9962db comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x44b500e5 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x79dbba29 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x937369f5 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x98ab203a comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf8bc3ce3 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2dad9c09 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x50c8daa9 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5b0706e9 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5bf26fa6 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x69c4ee2b comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6dd162fb comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xe21c533e addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x27535d02 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xea7e6dad amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x268ee84f amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0e2cf30c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x22d139b3 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3afe42e3 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5811e6e8 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6f823eb7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8857aa0d comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8d4ca640 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8ef62103 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa6ecd40d comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe8199eb3 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe832728c comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe89b9592 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf16de63c comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x78a5467c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xacf10b7e subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xeedf1545 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xf63f3f4d das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x04c3b2f5 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x14bda422 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x241f6f94 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x421f7128 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x43ec1234 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x46bfe2a4 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x597472d8 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60da7640 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x700f61f1 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8a90c9b5 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8c11a776 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x97c29b57 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9d1dd94b mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc134172e mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc764fac6 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd7a07ac4 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x6190f921 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xd807658d labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0157ca5b ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x11ade9c2 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x17e83e36 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1e110ce2 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x56ece7f1 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5c47570b ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x60d01bcc ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6260a73d ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x80a33189 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x92e8aa34 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa23da2f8 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbd6fd4b5 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc45844ae ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd23f5d30 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd8115895 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe8b3a928 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1c52a855 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5f4ba4da ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8bf6c09a ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x90510b20 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9c043738 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xaf65604b ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x137dfeaf comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2459c168 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6a43b4e8 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6f3a6fb2 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7dda0756 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x818a71bb comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb4bc5231 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0cf90933 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x160894a4 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x16e034c5 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x649829ae devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x66d72c11 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x71991ba0 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x71bd4ede counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7586f63d counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x78e767e3 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8044c7e3 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9cf018a2 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb898abb1 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf33624d9 devm_counter_register +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x7da750d9 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x014eb92d hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x06ec3e1e hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07937a72 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07ca3bcc hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1154505c hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x12ae2577 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x12fe31f2 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x16eccf48 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1edae847 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1fb978f4 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2276c886 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x295c5658 hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2bbf6ac7 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x333db04a hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x488f1fb4 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x492e3e46 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4aacf240 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4c57cd6b hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5bfbf790 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x730f5bac hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x76d211ee hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x79f8d8e5 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7b5cd2f0 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8a8acd74 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x920f0c83 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x99c437d9 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9de59a98 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa11ee96f hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa7ae6d84 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb38b5505 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb6e62677 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb841cdb0 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xced1ea29 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcfea74b4 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd4949de0 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd7644403 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdbf2c1db hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xed49f922 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfcb8b56d hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x6e71a259 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x46e069ad dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xbe19dbd5 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x1faef910 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfddcd220 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03237529 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1809412e dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x188c9c78 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x38725e92 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5cd11b5f dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd1e2c6dc dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeeee4a8a do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf2594a33 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfab18f27 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x020a2636 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x25b02876 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3f4d64c8 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x515f7724 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6776d7e7 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6e25d7dc dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8bc987da dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xeb8da51b dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xede714d9 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfd904927 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0e793dc5 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1685a95e fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1acb9f43 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x307c344f fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x435e5345 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5d8c8038 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x67e3a980 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x69715002 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x77624f2f fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x80616457 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8960b942 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x89c27939 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9945cd91 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa1659aa2 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbda02da2 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf081c1ab fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5dd69c77 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x967c4abd hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0ed090cd ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x717a54e6 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x7be2b59a ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x997bd349 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd66e274a ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xed0a8396 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xf1af3666 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xa50ec343 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x5db84c3d alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x018e152a __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0548fbb6 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1062a8e9 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18b06134 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x28710316 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x30470ef1 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ef4de3 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x367020c2 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x36f8d5c0 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3b60eec5 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3bbe9af6 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x548000a9 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e13baeb dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e21cda5 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6bedd588 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x73d23756 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7a05f27f dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa165281d dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa2335eb0 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa256bc01 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc2e752da dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5cd657c dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfa285d62 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x018df909 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x040022a8 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x405d8e2f fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4c5150d0 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x55b5aed1 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5bc050c4 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc36f28f0 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc89bc4a1 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd434f36b of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe48cf9f4 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf8366fe5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfb801978 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x01cbf702 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1dff5e17 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x56f573ef fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x651e4cbd fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6b626597 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x77609957 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb2ddc692 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbd059266 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc61faab1 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc77fe9d9 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc9ab179b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3e28517 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe8ccfb56 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf04fbf36 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x08e743cd fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x72559a11 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7c03a7da fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8cb0ca68 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa3dab1f9 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc9383337 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc9758b47 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x14ee8c95 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x18901379 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4e380abe fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a9c7a33 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8ddd0e9e fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbe7a24c8 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc8caf35a fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe9c2a102 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf1c6ff2d fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfcc2ea8c fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x5c04f39d fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x6977155a sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf1922ae5 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3c76833e gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x41fe3079 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8da9cf04 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x91eccae5 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xced4c813 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x35681258 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x53358c57 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x676aa27b gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcd76e830 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd8b3c47f gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7bd7f682 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa554a238 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x2c3e9016 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xe0a74820 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x14bb85fc analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x16cf1966 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2a884d0d analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3cb92351 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3e31ecb8 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x72733768 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa38cb5bd analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xca498dcd analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7c073db1 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x882126ae dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9477a08b dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc748ba2d dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x604ed3db dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xa67aa952 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0103bc3b drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0faa7fa7 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16256c76 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x172b3bf3 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1cc95a3a drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x258b5367 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2832863c drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x31437456 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x378a04fa drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x443deb3e drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48af28e2 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6876a55e drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6b4f2d9f drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d7095d8 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6efca020 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x772375e8 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7835e913 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x791aaa18 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x82caac75 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87d6ec14 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x929fd204 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa4de630b drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0a50f9f drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3ddc7ab drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb5ef6214 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc5c9342e drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc81cb6c3 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc942569f drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcb2a981f drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd442e15 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf37ba1a drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf6ea700 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe51f5969 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xea56163b drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf455e3a9 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x805dab12 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xad7cc442 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xc62fce98 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xee2e74c9 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x032dab14 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x15639034 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1c9087a7 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1f98bfe5 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x38917e04 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x46134766 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6635470b drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6dcb5fe8 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9cd01d4d drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd003617e drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd07465f5 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd6a3bd92 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe97df690 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x12056bab meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x21e8f5a6 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x4bc7b521 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa8a424a9 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x6aa57abf s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xb1f36466 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xb0ec8e1d pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x1155b9fd rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3578eb24 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4d8f0198 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x768235c5 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x0ae26d8f rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3f2686f1 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x47039aa2 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x828ce68f rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x74c05d39 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x91ed77da vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03db2376 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03dbb1db gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1555d081 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x178e2488 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e5d50a4 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fcd5b7e __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x22b9a936 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x251cf4c5 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25ad5a56 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f68b609 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3745653e gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39cd5171 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d8a9439 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x485884cf gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5873f67f gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c34ef24 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65c427a5 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66c90fb5 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a5e1d8d gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6ef71f9f gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7540f534 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b64a23b gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c9df8e5 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93fd394e gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9723fe22 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9895cec7 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c71f882 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e78d23f gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac8d0606 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb07561d2 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb5200c44 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbeadb471 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf309a09 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc1fbe016 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc433acb8 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1d60613 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd669cd4c gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7624804 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3bffd66 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9c87e0e __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeacc691c __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf52105d6 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfdb3615f gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/hid/hid 0x047f8603 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0879cca5 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f6bb626 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17298844 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a4d41e6 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x229a71d1 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x318b1f83 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e1228fe hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41536a8f hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4300ef48 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x45fb640b hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ba59e6e hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dbccc3d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6379c419 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d28732a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x755df9ee hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x768ecf01 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76e5cb57 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7dedf804 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e1acc38 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80d75d15 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x859a3de8 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8db2cb10 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x958b80bc hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99ebcacf hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9df318d6 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fc11be9 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa42faf0b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4bbf317 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8342465 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa839fd52 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaea35d44 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5a7962e hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6caec5b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xccb1d669 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbfbddec hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xddb728bd hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe93143c9 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf07cf4ae hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7cbb452 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc7208a9 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfde8514a hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdfb340c hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff71f9d4 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x950ee782 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3af52d47 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x43af1f2c roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4b58dea7 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5bdedc57 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fcebafd roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd32fd793 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x144abc2c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2070221b sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a4f3164 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x42acf02a hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7b2549ba sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x89cd3b1e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb6c115aa sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc8900ac9 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfeb23115 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x221d2948 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x929dd0ed i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xb574bf20 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xba40c239 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd12db984 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xac18bd32 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xc0e75b51 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd2f7cf2d surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xc3a44506 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x016d6fea hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0d161bbb usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0738be29 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x091aaad2 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40ffd882 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b5a2518 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b08115a hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x709392ce hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e2392f9 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e700823 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb5fcaa10 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7fd3eee hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc0d43dba hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8e57410 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc973d9d1 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xde191205 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf1099c61 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf64a25f3 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8b1c919 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8b61874 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08b9afd1 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0ebca9c3 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31294ff0 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x39ff660b vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x409b0459 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4180dac6 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x49a37097 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x49e2504a __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6996a2ec vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x734ff536 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74510092 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74b1cb0a hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f083a6c vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8506ee10 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e300609 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6b2189f vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb010272d vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb6707c35 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb99080af vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xba728946 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbe4c54bc __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc1cc7fe0 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc7249bab hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcc801206 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd7ccd7b6 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdab760da vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xddb615ff vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe24d4491 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x64dade7c adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x784f83e2 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfe151f7a adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x83af764a ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x14910a05 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x22f621d7 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x617cd8df intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x63b5a35f intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9ecfffc4 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa6704cab intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc4dc8582 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdaf81c4d intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe53e5d43 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x86d4df9f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9f1335a2 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc2aee1b4 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4aacbc9c stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x61c4a8aa stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x73045cb4 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7b9d3859 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c070b50 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9e9a2937 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdc5cd28c stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdf0c7288 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf37c87c0 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2a410a3a i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x419058f6 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x51b4371b i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb69bb283 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1dc6435f i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3f154878 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7c1f456c i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfc73c93b i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04cc5480 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0abdfcbd i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x26c9d391 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x29187289 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3486e50c i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4c731f62 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x509a73eb i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5962ccb7 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x63ad2c23 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x79513f75 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f8284b6 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88318965 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8f653f7c i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9bd4824e i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa224e7df i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaae2b363 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xadb8bb89 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb39bb5b9 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb942b4e0 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xced42531 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8ab7d4c i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe62b938a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf0e369fb i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf92f9788 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf9c65d71 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xd9e954e7 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xfffe14e2 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4f1a2118 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x75adc6f9 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9dce5a85 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xbfe6f6b2 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x752f4354 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x94087468 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbc25fda7 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbfc304c3 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x8697ba24 fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x88ac307b fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb778d0d2 fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x00490ae1 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3158db5f mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x60d129f5 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xc1ceccdc ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xfd16c24f ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xc9ba5ff9 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xfd061fce ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1fa4cf5b ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4e0ef9c0 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x76f745e3 devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa8a3a979 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaff0760b ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb2401563 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd00b08d5 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdca3671f ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe6a9ba83 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfd8a707d ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x0ba9d4be adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x65c5c50b devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2bb09000 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x60565044 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6d7fcfe7 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x033be26c iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1e496f33 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x400d393d iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x433d6f54 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xae3cd2aa iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xae47888d iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb6a97616 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbf298deb iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xccc49c32 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcd8f1c37 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe1f8b750 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfc16bf4b iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x3cf2f123 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x086baf2d iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe46268d3 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xe8207e34 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x6da1827f devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x210e4412 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xfb19999d sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0921b8ca cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b28d83e cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10b42cff cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2054d978 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x44cd726e cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ede93a4 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb229a295 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd224879d cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe9b7ead4 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfb373a4b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x4cd49954 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x714596ec ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6a225f49 ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xd8571a5c ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x09668fc4 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0c98c442 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf6bf3b20 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x673758c8 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7f16bc37 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc2a15cbd fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x20e9a1db adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x25cfaae0 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3487a108 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x66696802 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x764ed3ed devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9ddbcf96 __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbb51195a __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd087dfc2 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdde1c9a6 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe0a211ed __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfc2d8ac6 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x0b3ebbdc bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x51f7dbac fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3c8b9d6a inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xa003b212 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xd0ec5ee3 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x1b0cdc4b inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xc40777ba inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x745ef529 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x936827ac st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0111b66d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x092db9ee iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ab4835f iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bc522d9 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c497f39 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10f5345e iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f9a95fd devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2586cbff iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e608e5f iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3163f08f iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x375f20b9 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ab09830 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x528c3415 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e3b6329 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6010d1c8 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x605900c0 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6108f27f iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x677ef112 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7018f7e4 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79eac588 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ce9d091 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8149f99d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8965f773 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f04697f iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x931a79e0 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa69f3584 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa89c2504 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0411ab4 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0ec3864 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4a3a3d1 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb65922bb iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbeb750d8 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf1fc6ae devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf5ec4f5 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8661b3f iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf5e6ec6 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0beac21 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5dc9f18 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5d51cc4 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe780b003 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe81d7b19 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea758558 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef29a076 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0ec3bcb devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb684369 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfde416c4 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfeb046c4 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x656c1502 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xf5a8a065 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x07561511 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3652d482 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x427386a0 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x906db1b3 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd2187ef4 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xef03eaaf zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1fc385bb rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x329d48b9 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3f070d10 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5d093ff2 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x81890a17 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8c73b042 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xab870296 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xae166e7f rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb481c525 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbb5cf33e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf0369efb rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf06bc079 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xeb4ef361 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xca0b9481 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1971bb8e adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x008b5258 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0af9e8c2 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x18927fd4 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1ec4f103 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x226ff5e9 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x52a68215 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7339a909 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x94fca6cd rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7a32fa9 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbeaade39 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe1dbe570 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xedc0af30 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf3e353f0 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6f72aa25 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9cf7d036 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfbbac464 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x32059fa3 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xbbb099d3 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xaac254e2 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd8701e99 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x04e89571 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x18f90b3e tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcae64370 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf95fbc8b tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x01017690 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1ef16391 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3414755e wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x364556cd wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x68d6ef06 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x71747855 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8fdbf867 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb23e2d8c wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcdab760e wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd0156b54 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xea1a62f0 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xff75d680 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xdd86534d imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf9a1253a imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0253e279 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0xe1115ebc of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0107afb1 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0384fe4d qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x244cb7e5 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x502e611d qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x77ae00f2 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x99f8db27 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc34ae16c qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x434ed400 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5ce27094 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x63032fd5 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8098497a ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x98bbff6a ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbe30b63e ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd82d8c79 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeaf12050 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xef6ea38f ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x02a8ef34 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3d862693 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4cebdc69 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6e71abf3 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x78d9c7f5 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb136436d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd84181d3 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe12b98c7 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1cb607ba led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5dbba8e6 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x73ee4af5 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x980fff47 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xec2df646 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x08e56243 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x190bb30c lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x22047326 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2bc3f263 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x770051da lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x95d9b4a3 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9afec010 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xba7cb8f6 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc60c97ad lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xda33f4e4 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cfb60b0 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1760b9d8 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1f106fe8 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31cfc6dd __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x380b2826 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x468994d3 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ec0ab7a __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64204f58 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa07928e0 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9039717 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa94235af __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9dff2b8 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb54c2e83 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc70ce267 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0829972 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1ee58f2 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5422e55 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda872902 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdf3ca232 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe22d5894 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea4417d4 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec99f176 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee089479 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef69220e __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2ff8d879 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3160de7a dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x37d1f324 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c6cdbbf dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40d75c9f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a7418ad dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x661dcc4e dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6efc2cb6 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x747f3fbd dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x91a4fde6 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f5b370e dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa179e7c6 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1a8708d dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6192d1f dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdce8529f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xef6c02c1 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfbcf9fa6 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xca9781a0 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x40074a5a dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa220f852 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb13ded58 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe41c40aa dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00c5ed1b dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0f7a1d6d dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4c8534a2 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6f20917d dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8305287c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xddc524a6 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf68b2deb dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1d81d469 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44400d4d cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4a71fd93 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x54c50986 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5b5f8541 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x62dbcfff cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6e8b995d cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6f4f2f73 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x70b1c576 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7cc79e7b cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7eb9480e cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x893bb97f cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x958ec692 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9ad68ed2 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa84b8e73 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xac0b9ded cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xac6d1c66 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc0d7dfd9 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc7fece34 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd5d72cf1 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdd875c4b cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xed224571 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x02f6a44e saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0f941f24 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10d98c42 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x264fb13a saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5421f14b saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f543a1a saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8c2a9720 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa76dd343 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc2cbdccf saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd0bbb7b4 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1657c61d saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x38fa6345 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x42fd3cc7 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x45b3565a saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x565d6e33 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x73b10cdf saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9db16e3d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0dcb7ca1 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16e2489b smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x17bebf27 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1d2dd741 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3f77f8de smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x444a0083 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5ba5cca8 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5c054a33 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7153aa10 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x73b96f14 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaab80f8d smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf225781 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf9338f0 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc9152d2c sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc339f97 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc4dd596 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf135d3ea sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x002e1fd0 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x11b6364f vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13a81aab vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14990800 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x212f5842 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23f59b48 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x242c09a4 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x298a45e5 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b9f2839 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c6d5134 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4fd20634 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x51ab03b8 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e6f8705 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6dac80ea vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6dd8fd21 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7b85ace2 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x89a1fc93 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b1756dc vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ce73e2d vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b7e40eb vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ec06360 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xac333a93 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc11b3bf3 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5360944 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5c24c90 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc8ca7324 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8fd8eb9 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdbfc56a0 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf9e12e00 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0bc33309 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe4e4eeb9 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x138ee86a vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xfd12590a vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x00dac82e vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34dc088e vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3933c0a2 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x430e92a4 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4493d2e3 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x463f8515 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4df9c3ed vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x53076207 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x60563346 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x65f9ca52 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6de0673f vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70a0b80d vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x794755fa vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7bd81178 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7d8890bd vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x87170e2b vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x875e94ae _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9385d5b7 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x94531343 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa651b44d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1a51a70 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb587ba27 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc061e6e vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc706d095 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccf98e50 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd121f7d8 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd44d653f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd620279b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1d385f3 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe43b8957 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xee9dae09 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf508e255 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf8f39f66 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe96552d vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xd4a97c93 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5dc99fec dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9812571b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa58c1c8a dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x88e48f97 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x897ba291 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x0e7f38e8 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xb2431515 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x238c62ca stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x28f7312f stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe173c846 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x2f679bf9 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x62217092 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2a18fd91 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x493d8d06 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4bd532f1 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x648759d5 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x704358f0 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x728746a3 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ae9560b max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ec90175 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x81636957 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9bc90383 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcd9653d0 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe541e578 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe79e3537 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0565ed2f media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ac87807 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12a16aaf media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13b355f1 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x154c9166 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16ce9cb4 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x171413ae media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c053c09 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20004ee0 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21dfbc9f media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30f38c67 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x339980fe media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34aa3031 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x374040ed media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x396613e0 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a746522 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d792552 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44122e82 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x447ddb43 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x482b824f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4dfd3a2c media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x645ce710 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65a65e1d media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67749232 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7086bf53 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x748dbdde media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7799d040 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7cc646b5 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x89b76828 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8b801e44 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90239495 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95e2b1f8 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b29d268 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ecfc62e media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3d9ec27 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5c55eef media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc5c24e88 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc79f242d media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc794af8 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd096371e media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4926e87 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda40f23a media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf78fa2a media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf31ddd06 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf335203f __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe876b78 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x8245dc8a cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x09083d77 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c17962f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0f1cd364 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2bb7909e mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2cabda57 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d5fc360 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4da9e13b mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x510710cf mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7bd5284f mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7e5e394f mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x921af941 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b425788 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa4663035 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcad97475 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd56701c5 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe31bc8b1 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf95e2d83 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe380064 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe468af3 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67e4c3fc saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a9c3b66 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e4cb250 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x857fca1d saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8752e017 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92e8d7d4 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x94991e90 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x95715867 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e411cb2 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1c304af saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa3e5af9f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa40e0960 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa81fee80 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xad513c6f saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xadf411ea saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc79a96af saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe76122dd saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf64070b1 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfeeb9ffb saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x07afd403 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x64985fc2 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7cc88377 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9951c79b ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc25bbfbf ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc8f7ea6c ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe26bd61b ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0b5067e7 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0bd880ab nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x23c0941f nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x45468550 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x75bd1fff nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x75d8d20e nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7ab54c91 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8a34e981 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb8ca0a30 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc4567fce nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xec78e9c2 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xed62a9d3 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf16462f7 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf8e75af3 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4290fbcc mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x712573c7 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x96f1705b mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xeaf35b57 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xed15c485 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1b17f78b vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x24f622f9 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3f679b72 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4e845708 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa79e703b vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xecec3362 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xf70c30ff vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xffec1320 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05804292 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0b92f645 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0cbadc7a hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0cecb236 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x12c0c49d venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x14c9dc0a venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x22401bef venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2ca24cf3 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f4b6619 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x32e52574 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3b83cda2 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f80ff8a venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x42b88456 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x54f490ba venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x59a8cd2b hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5a1ce852 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5e92d046 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6285d140 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6351b2eb venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6a606d58 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72892adc venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x728de6a3 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7e1c0601 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x804c0fc0 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8549f8ad venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c3250db hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96590fb3 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9a5f3585 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa40a754c venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa8ba88ed venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaac6e8dd venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xafdf6ed6 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb0c33e35 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb4818e0a venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbd5d4c43 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc0ef8003 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc11a5789 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc7c2cb27 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcf7d56b3 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd276bf2d venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd42edc29 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd655001a venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdadca5c8 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdcb80656 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdf5f1fcf hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf124499e venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf4a395f0 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf6e88790 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf757fe3b venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf7cc4727 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfdcafd80 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x05d621d6 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x09ed4acb vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2bc4ceda vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7a3d1d45 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x9743b316 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd254f04b vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd740a591 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf91d0df3 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0db49ec3 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x114b8bf7 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1445077a xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x76d56b06 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9fde8d7d xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd88cfe6a xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe3786d12 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x0191a435 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x0f297505 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x28289f34 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0adae89e si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x374cc21c si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8bb2f9e7 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9c1ce3f8 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb19d04ad si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0adde186 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x283a3c9d devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32b89faa rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x480d79ad rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5078e85f rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59fb4c55 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x68b73b26 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6cb53e55 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77a48307 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8314c322 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5ac5f4b rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb8a761fc rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb911d2ef ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb9430bf4 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbb86da82 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcaa6f48 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdc789f4 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe716b7b1 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x2a563aa9 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x45c5ae2b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb2b1fb04 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xc304215b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xb52be269 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x1b48a4f0 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x44d6fb5e tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xed7b6ed2 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x774c2e66 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4a365a2a tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xde113efb tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb223ce90 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xeaa384ff tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x8cf6032d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ea51c0e cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x23791607 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35988b0e cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ee0ae2b cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b91e989 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5dc4e88b cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75c2a825 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f51f846 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93f6b217 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9aa44f23 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbcf1b087 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc224fc5b cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc52a8fc0 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd68819ff cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8622e1c cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf31b9a57 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf37b6318 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf7238ab5 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfa7c21c4 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc040e5d cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x24d91135 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x2904de0a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1327b019 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x238e6845 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5decc470 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61492908 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x672f604f em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x757da0bd em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a33632c em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b81d6d0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x95dcb58c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9beb31e4 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9daceedc em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa67fcb76 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa94b4bca em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xad7da584 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc3935df em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc63181f em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb74f067 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xebeb4d72 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2f9e6ebe tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9aa196f7 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd63537ae tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf6aee51f tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x04620163 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x100bb09b v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3b768d83 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x99a8684e __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xadf66953 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x58a0a103 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd9c305dc v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf862b3aa v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x00096b4d v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x00cbe5fd v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x245fc326 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x99e5c5db v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb10a53b5 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbe1aebab v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe181b5cf v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe30af1c8 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfac0e511 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfe84abae v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x30b5ebc6 v4l2_jpeg_parse_scan_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xcbfdf5cb v4l2_jpeg_parse_frame_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8956e3f v4l2_jpeg_parse_huffman_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8f40f9e v4l2_jpeg_parse_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xf8ffd565 v4l2_jpeg_parse_quantization_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x080bc281 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x157373d2 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a2705f9 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1dd114e1 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2685359e v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28d55f55 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2dc2f3a5 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31536a7e v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3264a12b v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x327c3e24 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x358e342e v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b9cfdd2 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41ec92b6 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47af5ffa v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4c21dc1c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52fd9a86 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dc21a8d v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dd10e04 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x636e3847 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65559890 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6861f76c v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x739d5797 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x777ec472 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f2bf3f7 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8412df42 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84e21616 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a9df188 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f52c3a4 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa03c7934 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6ace682 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaba57a45 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae1886db v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb17ba44d v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba02b5ac v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0bf9554 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce0015c7 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2a11f41 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3813953 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe86776c0 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed62fde7 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed67e786 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1e40f85 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6049ee3 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9a35dd4 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f711eef __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c85bf50 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e9d6034 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5061e7f0 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x58abc31c videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f8cec21 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64379b68 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d63b76b videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x755c91f9 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x783ba38f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b3005ce videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa163f66a videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa215fc15 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaef36bdd videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7df27db videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba6cbe93 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd19025c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbddc88ec videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1587f3e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4e04c04 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccbe25bd videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdff5f83e videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe750845c videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe94097a2 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x11f96828 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x669fed22 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc2c2f844 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf3f3e0e5 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x83b7b21b videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc7d22637 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf1b02a85 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x006384a1 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00e67ccc v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01298fbc v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04a6e559 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0820535f v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0997bdb1 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09fb6a5f v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ab0f046 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d0ff2a0 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0df3a594 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11d88e4a v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x130ac4f4 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x179f03f2 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19cc010e v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1acdacda v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2027909e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x224daaed __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24cd46fa v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24e6fb12 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28309945 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d1aceb8 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37e6e7c2 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cb1f4f5 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x437adcc4 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x443d524c v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45532e65 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ee6aac v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d2306b4 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e95b41f v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fdeac5e v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50596785 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54c55bb9 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c0f5cb0 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68888e08 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d01ced4 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70d3bb06 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7226fb88 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78c6c414 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d8385a3 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92194347 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a9ecca7 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa21acddf v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa978254b v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaacffbad v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8bd5baf v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc03a6bb9 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce8163fe __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf441b14 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda3fc394 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdead55b0 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe106f4d3 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6702154 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9431105 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeaea72f4 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb6c2835 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefcc6c23 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1287766 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcc62eb4 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xca75af8f mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xfa7e0cb5 mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5177b893 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x73af5872 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xeba93ac3 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0c51d3e7 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0cbc1cee wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0eb69d60 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1c9d3f74 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e5b2e94 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c072122 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4f84dda2 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x60c44fd9 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x63221f10 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6efdab14 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x84558a5e wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9a19c028 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9e970c1a wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa3255f6b wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb2d7899f wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbafc5163 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbfe00658 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf1ef48d3 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1a889b15 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5ab93d8a atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3f3ae645 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5c44ec5b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x884726e4 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x97d1d1f5 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa62c61cc da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe729e3f4 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf4c62420 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x222253fc kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c574460 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7f7cdace kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x835b2b24 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x94b1111d kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9ba25049 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdcffc69b kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xefe55604 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2b2f8c6e lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2c71e54b lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3cc27d4d lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1fd22fff lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x525f7bf2 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6aa5e63e lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7776c5cb lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8cf33a05 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb248ba8a lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf36f5e6d lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x03152c9f lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x262551ac lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa7cc0d35 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x14d01c13 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c06283b cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35e091c5 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35ed4d85 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x586feccd cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76d58cc9 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76d85089 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7a5dff48 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e64bd7d cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e69613d cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x96b1cacd cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x96bc168d cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98aa7958 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa130d130 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa13d0d70 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8af45ee cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa936721f madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc162605 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc1bfa45 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd51a071 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd5c7c31 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd584d7c1 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd5890b81 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe205cc3c cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe208107c cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9c9164e madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xff233b09 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xff2ee749 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x399eb1fa mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6fb80068 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87ec6dd5 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95e398bd mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xad06f037 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc75626f5 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0f780628 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x28258db5 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c5abd19 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3f4054bb pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4743d049 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x476dc373 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x62416f24 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x72c32d80 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x98638b5f pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd6f4795 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf3240cfa pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0471368b pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xed55ab81 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6eef7185 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x76b93ee6 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9c89a42d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbed35a87 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcf88dea7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x56f5e686 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c312b50 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0cfd357f si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0fc833a1 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x117ec46b si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13a26087 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d22cd0f devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2320cf84 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ca94342 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34e3c2c2 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x375b93f8 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54351b9d si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5db39d84 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x610e217f si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bccd4b9 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bfec714 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d45b6d3 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7228ca60 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c670c6b si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88d0714b si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d0455c5 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91c0c2b6 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92d3affd si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ba5acbd si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6ecf91d si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab306bcf si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8377944 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb4581e5 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9935995 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccaf4055 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3ed519b si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9d49597 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0bed25a si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0c768ca si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed0c7a0c si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x153114d5 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x84a772ed sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8c791c73 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa20f3f20 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe12d28de sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x8d648627 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x3e202f85 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xb1ca074b stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x65de8226 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb6cd4a5c am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea7dcada am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea7e70b8 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x44212962 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x61bea061 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9b1eba74 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe11f0afc tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x273824a2 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6063602d tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc7095834 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x8e557d43 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0aad11ec alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2d3a9a37 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x640675fc alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x94e1a234 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9f7b5751 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbd1280c7 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf64f0950 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x059cb154 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x133f2253 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x136563ea rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x282339e7 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2a4f5e4d rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2dc6ca74 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3996e96e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42451a44 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4274b8dd rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x43515123 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x494cdf91 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b62966c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64deb12a rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x73c6e3ae rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x854b3faf rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89bd92b0 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8c153066 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbf78d8f0 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd99aae0c rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd9ca1f85 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe13b33a0 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4ff0ce0 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xee10396f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe982310 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0d85aca3 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1f791e8f rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2b907ddc rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3a9cd81a rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x55db10fe rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f8a6d72 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7ea12b97 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x938feb84 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x99084b61 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa706cf0a rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb8a7d05f rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd1fac9e7 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xeafc6de5 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xebe4a1bd cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xecea6ee1 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf84bfd12 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xffc3c4ac cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x12dc632a enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ef54a62 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a1a2064 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4ee023f7 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x98713966 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb58a3790 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xee5e22b2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf67a9a8f enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x06e9897c lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2e6bbfe9 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b212162 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73ef8280 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8642d6c6 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x91e091a2 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9b3b51d6 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbcb8270e lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xd0e628ed devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1e64554b uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4fac5b88 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb2b15441 uacce_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x8f03b625 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc4b60a6b dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcf4365e1 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x6ec2c045 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x7a720710 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xd9af53d6 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xf20801f7 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x1e283274 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xf533245f renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0185685e sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0489e91c sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f1dc600 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1327eae4 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1616cb30 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x271b4c68 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ced8dab sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ef1e921 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x318d9989 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39950d5f sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41f6def3 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48a32790 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a7765c2 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c3f13b9 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ecb17c7 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59339bc5 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7173afc2 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a69d041 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80da9dcc sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87a8f40c sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a486039 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93e02f77 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96d9c4cd sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaf002e68 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb04fa998 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf7c086e sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1d58a9f sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf7922a4 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd283e2fc sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd337a370 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd5523831 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xddd5b4cf sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde45663e sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdf52dd6a sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe3acbe75 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb0bae91 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb8496f4 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed2f8c9d sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2cf94ac sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfb7cae54 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc9bd0a8 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1e3bd344 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5112a0ab sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6b61083a sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6e781c12 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9c9e1da1 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb29aab14 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbb9b35a8 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd773f028 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfaada582 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0b661bcb tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x13b5ea6f tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2103d7de tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x282acf31 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x41193ef1 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x59cbc000 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb5624fd8 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe3b14cc4 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf6e6f8dd tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0d499bbd most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x13786b37 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3bc3c063 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5cd5a5d5 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5e9fb12f most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x74d1420c most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x78bc4d64 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c4f9167 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9b6fadfa most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9cf4ed15 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbd8109df most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc60dd7eb most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xca128408 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf3aa9018 most_put_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2da03b6c cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd0be1efa cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xef973b12 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3cd34388 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb178c7de cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcf2a8c0e cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5eedea89 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1443bdcc cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8e3ef2af cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xffa96e1f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5488fb7a hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5e847c88 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f1040e4 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x161261bc mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b4487bf mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b5f7413 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1df41d02 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20c6722f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x215d003b mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2aafa8ee mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c3428cd mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x350e5d1e mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38514cb9 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b400420 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ba80061 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f806320 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4949fa35 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49e881fe kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ef597a8 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50b281fd mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51754bda mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5296d1f8 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b43a44a mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5c80b3dc deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cc43808 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74a008a8 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a9707e2 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8174c58f mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83901fc2 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93add2b3 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x940fe35c mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a780395 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2dc6a1d mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6567244 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa71c94b0 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8eb4b63 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad9c39f9 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1e43366 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6b88f0f mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb72f68a5 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb831074f mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8ce6488 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0c28df9 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2cab3e6 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3aa2a02 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc84a7918 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc135b93 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccb9132c mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0bd59f7 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7fc666e mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd898b5b2 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda7f7912 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda8cc257 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe67b58e9 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfacad3c7 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x28e62e3d add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7604d4ef deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xad4bf090 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd45432de del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdf6c0fc4 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x076f1bea nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0a5a15d7 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21a56608 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x28b44805 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3d4b6478 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4b425689 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4ed01953 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60d26090 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6ce9e209 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x79eb6ee1 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7e4192a0 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7fb8caed nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89d4a03e nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x95ebdc54 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d23736c nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xab3ddb2c nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc06799f5 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7038ddc nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7d1c704 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc89d72d1 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd68ab0ea nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xed78f050 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1e3b8ca8 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x20a27c1c onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x590de883 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xc52be750 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xcc8a0b80 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xb5bfb36e denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x012497f7 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0bd75f4e nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0c9e960d nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x10d379f9 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1217e11d nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cd25303 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21cac31b nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x41e4ecf5 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x463c50fd nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4e213a5d nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x569f807b nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x57dcfd6f nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6ef21980 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x86472329 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x874e4982 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9d5ed052 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaac1f9be nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb2cb1f11 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb9f1a91c nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc6a1fb91 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe371e518 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe707a0af nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfeaa68c0 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x725c5b82 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xa09878f7 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb3548ef3 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1fb1945b ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a3d05ed ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2aeaef75 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2d8fec03 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x46ee81b2 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x62c34f9b ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x68eaceef ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6caeb39f ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x883c46a2 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8d701496 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa083d053 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa7840ac1 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd4a1e2d5 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5cb40c3 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x43d2c1a5 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5762843b mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5c0e6638 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8c471cb7 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x90e51688 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x943a7563 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa2231b04 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbacfcf0b devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc46e65dd mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc806cc4e devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd356b258 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffd69986 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffe4646a mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfa42d590 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfbb6777c arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x3e2c2d6f bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x151af280 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3a5cc9b6 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x685b9500 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaddb193d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbefdb10e free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xffeb82fa unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x18a08b85 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe684832f register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xebf47197 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf9bde53c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x034ce704 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0599df50 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x08251457 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x12292a05 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x216c4bab alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x225ba4c6 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39e8306e can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x46e80f8c free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x471f9b3e of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e20fcb6 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bfaaf1d can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d12adf3 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f27b50a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6fc53981 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ab0bfe8 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8cc66a1c can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1edda72 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3edacd3 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabc65775 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xafc35c18 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb50b983a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb79b6c43 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7a542cd can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8b629e2 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbf290584 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2f53a4b can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5963e80 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7db3cd9 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf5fcbab7 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf640a0dd close_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0a579a79 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x14ae4907 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5c2a0cb5 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9908dc3c m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb30609ca m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xba3b6d59 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeacb9c45 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf1ac2fce m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0d90decc alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1b96e29f register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6439586f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdea87859 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xffaa8cf7 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0ad2fb60 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x12863c1e ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x37f2982c ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x48d727ca ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x61c03182 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x81d2dceb ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8ad71aef ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x98d367ae ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc4c29f0 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd3bdfce9 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd4324b15 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd4c27f49 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe273383f ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xffbc7789 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f9596f3 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x26779b51 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2e610961 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x38cfeeff rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3c54c721 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4146f3be rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x49cbf57b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x532d4855 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x720467cd rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x73e97f6f rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8e03fc96 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9fa94279 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa0264438 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe68e2435 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe7a12455 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3b12f497 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd7f985a3 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x089b9fb8 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x204098db enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x93b2def4 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa1d54fc9 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xae5c8e06 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x083c19c8 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x42130f8c ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5ae46789 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x99c64461 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd80a51e1 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00982e71 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04f1fee6 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x058b644e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06fbc12c mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07214506 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a3f8ff8 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x124adfe7 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19c7dbe8 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20de01d7 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2915d7da mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b967a49 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c629969 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1ebd32 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30687f85 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320e783b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3308c9c9 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36b88c83 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39816c35 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x399dcab9 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a08adaf mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c280c55 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e63f650 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42aafcc5 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x431ff61a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43e86926 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44f5e24f mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4635edd3 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48a24891 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a3c1796 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50b4afc1 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515b3c09 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5376fc24 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557a9038 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x578f3ef7 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c65b2f mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c8491f mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5911ce34 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cf96356 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640c4b91 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67510c1f mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67f4c303 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68220568 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b10c488 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b82cf43 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ba77ab3 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c41b91a mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6effb4d3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x703393a8 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7043134c mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x716c8e9e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72b8ec25 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x733934ba mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74089e94 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x749865e0 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75c22a61 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79295d04 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a54df4f mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a61f9ae __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aeb01ca mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x816b31c5 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81d619d9 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ce183e mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ea6906 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x856874c0 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e49dff mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e6b44e mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a7e896f mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dedcc3a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f2f346f mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954b8816 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e1b627 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96690678 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c3ca980 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f83e01c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1fdfc66 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2f537e8 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab033764 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac306965 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad44e5f3 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaebce419 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafaadea7 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafcc8e18 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb032502e mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0e8e287 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb05350d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc5ba436 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc01983ef mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5464da9 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5488284 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc78c84ba mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f7fb9f mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd592260 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdcbcc3a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce79d96d mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf02df9a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3fa7610 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4cca11c mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd726b80d mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8493320 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf41b459 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe29e9455 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3ca74e4 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4c9c204 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea69dec7 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec1b017b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecc447ed mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed8de50a mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf10ad53f mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf248cd06 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf455a4ec mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf45a059f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6843acc mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8bd3aec mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf99ae76c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaec3edd __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc9553b6 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd538105 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdb4a3f1 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe13a76d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff0d356f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff907ec4 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x033621fd mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0414eb6c mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b3a9ae1 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x115c0a40 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14dec32c mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f3a49ed mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24eb8514 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26c03fb4 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc63c99 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f7f1cb8 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a27d27 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34bf89f6 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36649204 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e723d4e mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dc43a5c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec9f25c mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fd1b486 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ff2320d mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5593a8c0 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5acf9d33 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62236e8c mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d11723a mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70174f3d mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71a90f3e mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73b25d72 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa679f8 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8199f463 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82236cea mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84dc0685 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bdab133 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d4b0b29 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90543598 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947d8dd7 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9921ee8a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99c7b61b mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d95d844 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d91556 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88869ae mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa9d82c2 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae4d2e62 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaedad09e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72a94b0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94a0a12 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbc50087 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc98e3e0 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc09c37d3 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1e4fe2a mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26f8600 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5d9dd1e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc63957da mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9698b7d mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96e4c6b mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd08a98d7 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ae3fab mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f2dddf mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4125311 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7c67110 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe17c2481 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe47346a0 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb7126fa mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed940a39 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf182ee90 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf369a523 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3a1bb50 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf773bb1e mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf776cf7c mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7a07c0c mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9db2e93 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa8f4d92 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe3841a8 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff4259d6 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x82523180 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb4193f4b ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xeee84782 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xfc5be8b5 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xa8f97664 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06435038 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d021515 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d5af802 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95169b0e ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99b95d54 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0f5f9ee ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2c69f5c ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6228ee6 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb68d7260 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb210be9 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc239b10a ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9af8200 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc463ccc __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x16f797f6 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x891e6421 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x970506bc stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x97f2e957 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe517c63e stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x198a5fc2 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6f7768ae stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x928742f6 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb8ab2730 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc2d7ae5f stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x19d09ae2 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x1ddc0427 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x211e5c9c am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4c74d43b w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5199d6a5 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x65c001c7 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xacc006ef w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x2d57d5c9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0b7c64e2 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4f4236ed ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x74722f5b ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa7ae7fd6 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe62fbe04 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0xe6fcc5e8 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x140a2793 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3c858be9 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42fb43aa macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd6adcf65 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x1d56e932 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x16d2a9d2 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xba1063f1 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3ec074f4 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x65e4fcc6 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x787526a7 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xacf093cc xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb97b5a15 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xee7c8a58 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x076cd83a __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12d77207 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x38b88569 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45abd940 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f448fb6 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x567eef99 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x577e2561 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x587b24f1 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6181a9c5 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62548171 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6866826e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b371998 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x757237c0 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7968fbe3 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8034a4c8 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84852b9a __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85d5c666 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x946144dc __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b909fed bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa16edb4c bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2765407 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa471d3ba bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xafff8e3e bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb08080cd bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc32ac539 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd61e5dc5 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6c0bb65 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde430780 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5236e87 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe76c8c03 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee6f3632 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef3a3651 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf22a4b32 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf788e345 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x34a7f379 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3ddee3de phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x60d1dc27 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64fc5b05 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x760c6124 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb66f891e phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb7cbc9f1 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc272097f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd3d21845 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x023ca4c3 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x15320c61 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x453a7936 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x531e62dc tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x719b4b7e tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xa5eedbcd tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xc9ad5ba3 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xec947f48 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xff3120b7 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x10cd2ea3 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x49f26970 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x78547825 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb588af01 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc21910f5 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc49c3655 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x167b31bf cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x18fbc8f5 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x193e81ad cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1ccc8bef cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34a90d72 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x43ab81c5 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5435c8f9 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8556ee3b cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd6e5bd4e cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe938f45f cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfb51cb21 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x678602f4 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x26656950 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5d15d4e9 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x658109d6 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7a9f7e99 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa5f8742e rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaae91dc1 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0123b82c usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0305e34f usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03910344 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03c1917b usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c4e7eba usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24464684 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2716772a usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3565c7aa usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x399a602f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e6b80b7 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x420e9ce7 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5015183b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x528be56a usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d418fd8 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72912e5f usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bfd3bff usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f4d0dd6 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8827bd4b usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x958a2ba6 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0667314 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa06ed7ac usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa107ba2e usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3f4b985 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa438110a usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3c733a4 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc913d1ea usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9afb373 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf7cbaca usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcfee0833 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd268c2e1 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5654e96 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdda59a10 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4785dec usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9978412 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xcff9285e vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xdb5b2911 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xea2766c9 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xec5c61c9 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x16fa12b3 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x179ae4e0 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bf9cea8 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f606d2b _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab127ff3 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1c26767 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x000f98f0 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0324166f iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04c0a81b iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0527313a iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07bc34ce iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c7f8f49 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d023721 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d2d8bff iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0dd0e2f6 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13609c80 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x192ec254 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1baf4070 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f4cacde __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fc15777 iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22c77e25 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2589e9eb iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31a5f0d3 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31ad3ba7 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3760c880 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x387b8faf iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x389046f0 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b4e38c2 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ee0734a iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4651520b iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x475cb644 iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52a45b5a iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5503a89d iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x576fb748 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60017c1c iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x61412ffd iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6260475a iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x62a39864 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c60fa0e iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f8ab22d iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7091714a iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70f8eae0 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75cba798 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7aeb251a iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7ded3aa5 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8140b6a5 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x888e4483 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ae66eeb iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c8a64ae iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x975d8bec iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99fa529e iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ac13904 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9dd32659 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa2c77e3f iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa32c4d59 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4268b08 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa8e9ac2d iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb26a2f9c iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb69f4e89 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb74560cd iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb74fb3e1 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb81909d0 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9b40f6e iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0d97728 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc818fe6 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd217b67c __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd42125e7 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd51983e4 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd64e6495 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdda79477 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5ec034e iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe82d76dc iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe8742563 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeacc9d5b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf03d5e44 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfed4437d iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x23181766 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x31607e6e p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x37786b79 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5eb80be6 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x73b6de69 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7cf73956 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd6303742 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe9ba7417 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfb5ca680 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x04220139 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1c81d8c0 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x239dddf8 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40477f72 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4967e126 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x553ecd62 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x565400b7 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8623a2e1 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8d390b76 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa43be357 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbda2c186 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc2f48b99 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc87ec477 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xceccd654 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe3ed18c1 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec69bca5 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x18f71026 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2702d965 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x600ac788 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6bdd70a1 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6ca83546 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x88260d89 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8a85dbc5 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe73fefde __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x120b802b mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1357bb12 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15380085 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15f12587 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1c8122fd mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x218efe06 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x224203a4 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2642b7ad mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3118f533 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d8d351f mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ee21d5c mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x541e142e mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b7d8a1f mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x779f052c mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x77d4ed60 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ab303c6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c5a68e8 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x85c8d307 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dd34b64 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa014908b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6202479 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbd67683b mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd83b800e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdee6bf59 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02d1face mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x077bee6d mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ca559b4 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e89db91 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1292329e mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13a63b89 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15b3d86c mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18c3e951 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x196886c6 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b5d27a8 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21c1e68b mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2aac5546 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bace190 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c37fc81 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c7a946f mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d814848 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36adfe08 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e0c0424 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x404bfbe4 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42ca706b __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x435c5120 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45fc5755 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d2a7de4 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e704e97 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4fb7937e mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54fabd97 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x616d42d8 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61d58571 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65ead933 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x677df468 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b60cfd9 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fa36d12 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7308daf2 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73a4f674 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x742aa4dd mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75116c66 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7571a087 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78c25846 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fe1a1ad mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88f109ed mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x890366ed mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x959348cd mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x970a4acd mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b68c78f __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9cbb8179 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fea80e7 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa62dabb5 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7770910 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbce35fd0 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2168eed mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8727a0a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8fce28c mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd5734cc mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd7a37c5 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd25632b8 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd27e00c1 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7527316 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd92c6ce1 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe23687f7 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2fbf20a mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe42aa819 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe446c98d mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe455558c mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe56adc72 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5feab42 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7125994 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe782162c mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeae7c802 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb62f334 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebbe5d65 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3c1f21d mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf81a7588 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfaaf1166 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb26deb3 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfff3d24f mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05c272b9 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c956d34 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0de2c424 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e684cc6 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x186882d8 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x195f30d1 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f79de69 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x221cee89 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x285ed622 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2be353e8 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f7e23a4 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x434f92c0 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4948801d mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x540b1184 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58fc52c9 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ca41d87 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5cca2f54 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5da8b175 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ad9708e mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d099d6b mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f9cd604 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7024334a mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x702c04b3 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x753c33ef mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b56c95c mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85567ee5 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86eb7c30 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x876034a1 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88fa6ed4 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8aeaa7e9 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1e845f4 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8161166 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3989c25 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb45a22e8 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6b32111 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe3ae8a0 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8400b11 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdaa8a90c mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb9e4e4d mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2825916 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe308bc48 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe605dd3e mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2851790 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x16247664 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x182ba213 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7007804c mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2390c8d5 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x386c52aa mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4fa2fbca mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x76beb33a mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8487a139 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9c64ceb7 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa833f824 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb10e6bc5 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6fda8b7 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2034229e mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2c981bb2 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x378bbac9 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46557a30 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4902fe54 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x53f3a554 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5fe1354e mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x668e4c2d mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6cfb4af3 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6fe22069 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x81815f7c mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8b457d16 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x937290c7 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9a7d942c mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac65b4a2 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb908e929 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbd329d27 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbde6516f mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc022d2df mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc8e9c8d mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd14ce0d5 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd211f5a8 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd73d6343 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd876c2ac mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdb3866c4 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6b782a1 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xed1d6705 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4d23849 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4f601a0 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x0596449e mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4640aab2 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x79037f84 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x83dec1d0 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe59b8d54 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x22f0b14f mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2f6dfe55 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x83ffb709 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbd1f4d9a mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcd43081e mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe281852c mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0e757d8d mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bfa82d9 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1cd22af7 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f5a4269 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f5c12d5 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fb51516 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20c27011 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35123bf0 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3570edeb mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39e821fd mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c2a2910 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43e3efc8 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47e153cd mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49ed0d3c mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4bb4c7d9 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cbed121 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51a6bab6 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54f3b3df mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5abe7fe8 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b6c6a90 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5dac198f mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ee1deaa mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x669fd19d mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67bacbc5 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6849a061 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e5ac90e mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fac967e mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x786c286d mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79b89f56 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80d6e974 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82a04674 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x834bfc1f mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x859cd44f mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87011ee4 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8782093c mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88908339 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9530e107 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c749dc0 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dbcfc16 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dc3467b mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa078ac7a mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa10caede mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa50dbb2 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xacf9e19a mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaeaadf73 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf0cd5ca mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb044aecc mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2a89ef4 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbace11fe mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc47e8ef4 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce28c3a1 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce75f70f mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd03486f2 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4e4813f mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xded821b9 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe25868a0 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2bf8265 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3a2d866 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6536310 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xece79f3e mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3edec2d mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6a95121 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7095b0c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf81d813f mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf98f99c4 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff5b8c91 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x285c4fb3 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2963e9d8 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2e8a0d31 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x385a54ad mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3f5077e2 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8bd544a2 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9b76160a mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc465ffab mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x26900e35 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x45a07782 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4e1992e6 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f47c650 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4ff7e1d2 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e9795e4 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63b26a68 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x66047128 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x72da49e4 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7b6804fd mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8c577380 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9fc9d650 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xafcc0dbe mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbdf2ed24 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc1dddc55 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc61bd7f8 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd77cbb6b mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe3ed0283 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfd7c2bdf mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0ccda927 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1083d4df host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x46f494bd wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5252c420 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x89120f37 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xcc442823 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfd69df70 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1eb739f5 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x26bf3e43 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2d3c01d9 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x84a8444f qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xca9797f4 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd2de8ab2 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c85ed3f rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x12818897 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2aa70e65 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33ea39a8 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x411d46b1 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b391b2a rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c35f9c4 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d18f29b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6172c865 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x646576b0 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69efd871 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ccfd5e0 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71786505 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7426a6fc rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x747cb590 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7770e5ca rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b145fe5 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c326f15 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81a67bb2 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bde4b39 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8da2b228 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x915a9c13 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95592ae6 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9628f9b7 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96bde508 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a9f1fe0 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa52f4d5d rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa59b3cdd rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5e68408 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xacae68b9 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf1d7abb rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3be7a50 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba0baf8a rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbcfd5653 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8d053ae rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc7e6ed9 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf6e161e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf72457c rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd44ecf15 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd528db15 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5e2be88 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc83ab4e rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf457aca1 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf99cc2b2 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x09db07ae rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e1b87b6 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25710cce rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x465a193c rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x487be9c0 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f96f20a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x55befc75 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5bdb7477 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7cb09778 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x91df4c6e rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9a9a8629 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa3467e1e rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa8698068 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe18bbbba rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe2a74615 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf52123b3 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00131feb rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0362aaf9 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e1f75f8 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1324e147 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b70c575 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e0cc0ae rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20e76b34 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x261f6da5 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29b148e3 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e7473cf rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ba7fbe8 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x514497d9 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5241e335 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59ef9c26 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60c13f87 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x629ebe84 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6337b4ac rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6658766d rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ba0fc81 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70e11c66 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x710b02d4 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x710fad8c rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x711c7a17 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cbd710d rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82a45da9 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c4ac364 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c92af9d rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9381e33f rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94ed08d8 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa63819b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb00df521 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb70dc3d5 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb762fbe1 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb94d2398 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0bb6802 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6d710db rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb847693 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce328a94 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf6e0e2b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3185e65 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3c78cc6 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd70b8dc5 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde3f0464 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3bda624 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe58f2d6a rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5c8042a rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfdcbe1f3 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x07277ea4 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3ba23bb0 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x843ac37f rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xcc949912 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfc664413 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1d1cc3d3 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x47f70b03 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd6638cd8 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x12bb2264 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1b92ad8e rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2c030410 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x33055103 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3556b333 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x40e29d72 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x55accfcc rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6b1a8590 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7189cbf2 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x79a3107f rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x88d4baf9 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8b291deb rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd7f0a97e rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe4650422 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6ad2f7a rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8c305d0 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b5d3e61 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3927b8bb dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50e03776 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69b88d49 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00a6d3b2 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x02e265c4 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03d2b806 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ad8e204 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x10f3d35a rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16296820 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18355d09 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18c27876 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a62a439 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d222796 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2b02c7b1 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34156e44 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x589c7004 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x645f6df5 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a6cd568 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x95606618 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9aa0d2ac rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9f0509f rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc78ac36 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3744871 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdde7850e rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe9ed3503 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7e1880a rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd32059e rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff7e88d5 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0500ce78 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33a5afe2 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c50e24b rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3de08336 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47258530 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a1f3022 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5089593f rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x575967c2 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bbc93e9 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63e8af4d rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x770df006 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x777a585d rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94c17872 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98d0c8bc rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a2eaece rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9a4c1cc rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb940d886 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbe42579 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc99e1b2d rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcda3c4ac rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd33a4364 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe573a2fd rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1a50e80 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3ab36cc rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8419abe rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x06713235 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd706a944 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf4e42795 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfa463bf2 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xff7b2811 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x305b3206 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x67d6da2b cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb52ddabe cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdcb5c9e8 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7a0a8497 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9d7f73f1 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xee8aab4e wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0efb01f9 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a7eee4d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c20fc88 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fd2e3dd wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21ee771b wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x226e327e wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23378bcb wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24df0319 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b74e54c wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c2b6dd6 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31c1f234 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4270b83e wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49ce86f1 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ea3dfd4 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f92fb37 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f9672b1 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64204197 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6550cc91 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e5e5284 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f23175f wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x737a7728 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7544ceab wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75d9891a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e5dc213 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8041a994 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x806dbcd6 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83845101 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8628a877 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ea12d9f wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9481c278 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97529f4a wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bf429c6 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa63420f4 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad4f8033 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb248c7a1 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbaaeba1f wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6b296a3 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc97f7a37 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd937cc47 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde12a886 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2d203d5 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe45b2f46 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1e9505e wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x267d61ec nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2da420cc nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x96b55107 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc58446ec nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0d5c7167 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x13af83e5 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2288ca80 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x699e94f0 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa1789e25 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa5bfe90a pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xde9de43c pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x015b7607 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2acc62f3 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x79c97750 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9b6f105e st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa6fa7f58 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaac581cd st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe1491726 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf97fecf2 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x29291689 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x99113591 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa50201b7 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1f6dc39a ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe0de7c45 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xee2821d9 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x3e833096 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd2edaebd async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x004dd78c __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11e665c4 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13bb9851 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1553061f nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x18093336 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19019c18 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1aded933 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23521e24 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26392eed nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3246b6e1 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33952cca nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e39157e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x425f83a7 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ab8ca87 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f4128eb nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56751418 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d5de008 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5dc5a152 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5de94982 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f33d587 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68f1e1ff nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c765911 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6cd5329d nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70142a96 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71be6f8c nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c485ac1 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fa8b688 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1ddea81 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa851a060 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad08f7ee nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb259356a nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbbeb85d9 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbdb7f414 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbee32649 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0f1c21f __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd298ea06 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd56f5b29 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe524ab06 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6da23e1 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7332502 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfed71725 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x067040da nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x20f2554f nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3c4b6ffb nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4c4e6714 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7565af6b nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaa6770c8 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xac62abe1 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb6157e21 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd1610e5b nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xebede6c6 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xb659c502 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21a51238 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x23c74e4f nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7dcc3b05 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x90e6aec6 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9a11c735 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa1e012df nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc44397f5 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd50740cb nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xda97b714 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdb8c647c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe3cb2ace nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xd743ad77 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x20b0ef9a iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x8443f529 switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xb137f526 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x08229d00 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1352be09 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x24536088 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2b2f1224 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x30f634ad tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x37a128c8 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4837445a tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x48ba0906 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5ffbb07b tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x77ff230e tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7d6b814b tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7e6abe05 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x820c8093 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x942966df tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9a01af81 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb70ef065 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd55375ad tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x8a020c66 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb314f02a mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xba79a889 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x83842690 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x9c692674 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0963b722 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0df46808 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0f949075 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12bcd45b ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1422f451 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15527f95 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2acc006c ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2fdff93f ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31899389 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3249dcb0 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4e3b2f9d ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5cc68eea ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5fd550e0 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x69221be9 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x712a5dec __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7bdc482f ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x865a2ad5 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c6ef832 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xacf42140 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb283464a ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbbbba760 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfe05701 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0f5662e ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc76ce4ff ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc99b864c ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcb57fae6 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd78c410a ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe3c18979 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf9f0b397 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfac0ca79 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x2b066652 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x007fdb52 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6fa32bb6 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x79284823 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x89afb710 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x9f18b366 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa21f5d3c bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbdae16c9 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4fd05d9a pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa04f80d2 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd662c3d8 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x136331fa ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x16bb48d5 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3d2e1059 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x93fc6d42 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb58d6772 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbaa56d23 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd0b17fd0 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfb6a5f63 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x246f7878 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb6d8fe9b mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd3aa1cec mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd78d775a mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xee825d89 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x36600c10 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x472c7766 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x61a401c6 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x94e5d719 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc323dab0 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd5cdc214 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x5d2411f9 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4fca595e scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8cee9443 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9067ca45 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd842f05e scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xdb4d9b84 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xeb628d86 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf58f3b19 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x03bcff3b scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7fc478d8 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa3ab8ec8 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xabfb3a1c scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xba59b6ae scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0accd509 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x529350e6 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x660302e4 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7e4debe3 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb7fc8093 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc2ce8bbc qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc6e96460 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfb6d07f6 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x126b4ec5 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3995f5cd qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3f2b1224 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5672d48a qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf12a4eda qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xfa10dc3d qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x4b4915fb qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xa282dbfe mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xd1c23780 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x80042fb9 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x005aa8d2 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x052f9009 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ca7802d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f34dfac cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22b918fb cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2467178a cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c6b5dbf cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30c8d5e9 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40f89c32 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x507ca1e7 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51b056d1 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x557dcc50 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c78050a cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ea3510e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ff21c4f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60f24190 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x612474be cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x634d1400 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65d96715 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6aa44ab5 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cb7170d cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d70d355 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71d3fa6c cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x785bcccd cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x799783d7 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79a66ff1 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7aa1470a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88e59ff4 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a575150 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ce7cc67 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f4c0670 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8873b02 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab6a0488 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6117865 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbee58c8a cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccda2e35 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce9dc133 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd077ab35 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea309414 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed5141a4 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeeb6622c cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf134fa12 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2797df7 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf60b4f99 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00e3db72 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x029e75a9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13ca2a31 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e68ed1d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x336fe0cc fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x68faa6be fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e5ce10a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7975d54b fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b9d5d69 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9033aed6 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x94af3465 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa8486762 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8f08f13 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2e0c659 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdd4c30d5 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfcfb8257 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8a892688 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xa33d388d fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x074ec0af hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0ef0d425 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2023183d hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x332aef54 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x47059be9 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x52cb76a6 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x60b39a81 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x632e70b5 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6f2d7ed0 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7fa37244 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x882f61a5 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8a4fcbf5 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa9cbf8b1 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaa5aab39 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb5be6520 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcb64403b hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd1b46c76 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd917f943 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe5bd176e hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf1e45a3f hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf3727da1 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf3f1fcd0 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfeebb67e hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15ac08d2 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x21ce1fa6 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3298d28f iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbd226f1f iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc8cee26b iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xec8d1cd8 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xed0f787a iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07eaa22a iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x142dad5b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x160d9d34 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19929aec iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bdd0414 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c066a0a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20928bb4 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b7789df iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e74bbf3 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e98fe2b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36bf8cbc iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4537d563 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d28a6a5 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62d6be32 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62e386f0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x657b545c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69309673 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fef295c iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7204dbb7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74b8ca91 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a66b659 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ac2aa9a iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d14e02b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9397ab16 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9544650c iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a5788c7 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3f20c7c iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6d2b313 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1247a93 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbcf5c57 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc76c3eff iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9aa7778 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf5f255f iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf661999 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd875dde6 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9087703 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdff6fa4a iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe24cf573 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea2cb6a1 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea44a8b0 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab4a5c6 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb30827b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec5669d9 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6fb8c90 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d567142 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x180c6c5a iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x38e4cff3 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3af9ec73 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x45c44823 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d4ad15f iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57954777 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d8047d1 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99770368 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c610818 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa5ff4ff4 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac4d7d42 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcf308ae4 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2a3b272 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe590d82d iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4ae7337 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff08f1c6 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x052fffa0 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05394e7a sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f821e5e sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x202e8b6e sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27201ada sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x333d4ff9 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38c078e1 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49b2d483 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x560633c0 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ddbf841 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b12a707 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b8fee5b sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fbaf362 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70b473a5 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86a0a7df sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d43d5a3 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d4d6653 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa38db3b7 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5019d04 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa46b8e3 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc28ec2be sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4657e84 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcee6962a sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7fa28ce sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd09f1c0 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6fe65be sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd0c9bf3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x9b192120 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00d2f988 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0191f1c7 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09a5e2c7 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17134b2d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b728749 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x231a3e7e iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29fbc440 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c01bbe6 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2da9e0cf iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fc8614d iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3298fd29 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f8a4b35 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x474f49ee iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52d24ce0 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x560f3773 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59bb1d72 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59bff04e __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d7ebe66 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e36220a iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x728f6090 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74cf679d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x785ca73f iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d050bce iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81521304 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82257c03 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85f686cc iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8923ab47 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bdc6730 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9421676f iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x952ef364 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaaac297a iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab27c775 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1e79bb6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0eee796 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0f212c6 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc21a95c6 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5deb20b iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6cd8160 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce8dfb73 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2cabdae iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3b6fa0a iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe263af36 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe652b324 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebf4139b iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec96fa88 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5f6c1dc iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd51ee7b iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1b41442c sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x378b120c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3c81bfe2 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8a5781bf sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x25b36308 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x04d93d01 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x53688e0a srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5378bd99 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa8bd740a srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc2bca3f0 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd5f2f6b7 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x07d262f6 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1531db75 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x15541106 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x226f2cd2 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x41c4dff2 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4603fc25 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4c12f82f ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4d1f3c47 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5ea9529a ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x80148a94 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x847006c3 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x85d7cea4 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8aef4826 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x91d23537 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x997999b1 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xad074527 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb4c1731f ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdbe3f91f ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf926464f ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfab819c7 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3f79b16e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb0b69cec ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0747543e siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x29abbf96 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2edcdd47 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8e0cfd76 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbcb1259e __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe01cfd32 siox_device_synced +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x06f23bfe slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a50ce1f slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b79abe3 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22d49582 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3541c91b slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x385a86c1 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x399d8aef slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4aeadd10 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x508e9493 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x571d8b7c of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x595baaee slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61544d79 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x654039e7 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ba38162 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x89a38630 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x95976896 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x975341a7 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x99411030 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9d72a290 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa0e0261f slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb15a28f2 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbbe037b3 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc3251c7b slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8b53d22 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfdbf143 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf888d12f slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xa63b93ca meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0648a267 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x14ee22b0 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4db8612 dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5a118748 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8a8e2162 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xd858fdb2 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xd974d428 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x078ef586 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf2868d0c qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x630603b6 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x82a5e55f sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x89ff5d52 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xb114330a sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x08b17620 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x1e4f829a bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x6a997571 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x9d3d8bd0 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1193eb3f spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2f6db438 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x501cb160 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x75c2f15d spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd2de677f spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xda4c18fd spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0674c024 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x14325ce5 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2d0154b0 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x37123053 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3d79fc99 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5e8e0619 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa641702b dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe0bfb9e6 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xeb3b1741 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x04f4c672 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6f567789 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf6199d63 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x04665369 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2a6780da spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39ffa92f spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a574c61 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x622f384a __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62c0f3f5 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62deb6a0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c53741b spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75b8c0af spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7d6bc3de spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7f7e329c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbff62344 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xca5142c4 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd04fe84c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdca4d5ca spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde585954 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe85e9cc9 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8e4b75a spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xec5f17e5 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1fe17857 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x21d179a9 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2f78a91e anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3520df12 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3eb6be53 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x47c4b6b1 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5f337cae anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60c36deb anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x94e9c92d anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbd941a8d anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcdef6f24 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcf0c48a7 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdc4b2167 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6a4d9ebb fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8367f398 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8a6202dd fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd9598f87 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x00cc2999 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1236bed3 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x21cc2523 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2f42ec3d gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x49d92b85 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5421f7ea gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x58d680c1 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7521fb50 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x804e6a58 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x97d82360 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9aad42bc gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb39b0e23 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd4a3b42b gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x05814ea3 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0e2e2d4c gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x178f6947 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x17b26adb gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2b4857e5 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4c972795 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x799580a4 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x87d825ba gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9dc87a2a gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa10f4488 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa2c0a44c gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeb6b28b2 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf9c6ace0 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x03a64abe gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79b00ada gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x65f08182 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb385bffe gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4a1f9ce8 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x84327407 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x1784c1fe adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x028e55e5 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x04a73d6b imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0dc69412 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d53aef5 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x20c9b21f imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x36b6fe94 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x36b9bd15 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3c729bc0 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x50e759cf imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7183c053 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8b7a9979 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x93feacbf imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa7c84948 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbad04d2e imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc6df51a2 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc7fc5d7a imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcaaa89bd imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd2cd6cbe imx_media_ipu_image_to_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe9fe774f imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xedcf0bea imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf0dee46d imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf16c1f3c imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf5382c26 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf5c8707e imx_media_mbus_fmt_to_ipu_image +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfc78e15e imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x14845447 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x21e0be53 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x27aa3c54 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3bdb89d0 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x45e43cc2 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x51b7bd6a codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x54a45bfc amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5a13e34f amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x642991ae amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6846f081 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x75446a61 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x782a8493 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x80b8f971 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x869a76b9 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8875a4d2 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa91ee566 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa9cffdf4 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xba6ec4c3 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd9fde54b codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe84f3acb amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xec123f29 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x0ec61710 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7b28c829 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xfd441cbf nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x033e6b10 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0f5c24a3 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x1221b87e vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x26342246 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x35515e93 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6d1808e9 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6deab6aa vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x7b4cad57 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x90a85bf0 vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9e67e17d vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xab76e501 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd5fb2af7 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf25abef5 vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x83ad5a6e target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4d7478e target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc61e43b2 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd0716dc4 target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x045f395e tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x04eb3f9e tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x05839ad7 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0b5b7085 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x179f3b28 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x254d41f4 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x260ace26 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52b59e57 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5cdbf705 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6ef8e541 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x84666087 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8aeee41c tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x97ae70ab tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x97fdea2f tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb5b7105e tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9275621 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc036ef16 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd803631d tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda6721f8 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb9b1bfc tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf4d07eef tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6f762d5 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf9665c73 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfb471f00 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfcfd2981 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0317068b tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0cabd2dc tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21d0bae8 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24d8dc24 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2dcfefc0 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x410aa4ba tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5c2374a9 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6da9fd91 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7ab58d27 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86779d79 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a1e4f76 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x910ef77f tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x943b520a tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaa2a98c2 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae3846eb tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf554e8f tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb65edbe3 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbdd53d70 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcaa1d782 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd8e79dfd tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe5b0f976 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xefeb871f __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf2e22b47 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xff0adbb6 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/uio/uio 0x10bb2a36 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3342246c uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xab7cba1a __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf7ee8c80 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9b8b0635 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc6860b7a usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1535b2d7 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5ab1903c cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5fbb5c45 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x71f649eb cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x97491dc1 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa9adffd5 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb7fa2e2b cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc60baca3 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xebfd76f5 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x190d19ee ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5bc5bbdd ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x674bb715 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7b28e0fc ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1e5127b3 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x856246a6 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8d6edd51 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xae7e4ab2 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbee926a2 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe3ae6fe7 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x11f0e336 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4045695c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xaee71a6a ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xafe2fa0b ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc0617f75 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc7a3c72a ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0d258a38 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x61c59055 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6d1dbe65 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x81c40f7e u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x91f60385 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x97d81e78 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcac87d22 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdf348b06 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe67879f9 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xeb4c8008 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x06e34ec2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0fca5bd1 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a4e8b55 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b925ad4 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e6372b3 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30f6a77d gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a389d24 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5353720f gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x584fd67f gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x77b1672a gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95833ebd gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a08e835 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdd7c3c2b gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf53afed6 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe20456e gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffc3c898 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x02e0a43e gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x24dea7c4 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x716c0091 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7e5cd964 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x81d7ff2b ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xce5784e3 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ace0146 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x13540159 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x16ecac93 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x202a5ac5 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2db1dcdf fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3a673562 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4323af3b fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x49769ad3 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x50f47db8 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x63ee7706 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89fd7cac fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8b79d3fe fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8dc3dc0d fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5107878 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xac0d3980 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb11a7eb3 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbb70a6aa fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x05ce9187 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2452a9f9 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x24c113c2 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27f29a6c rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e074dde rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3165cc41 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3891e4e7 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x41c950fc rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4581c13b rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x528e98a9 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6da3906d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7a3c2694 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd0339ea rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb163f8a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xffec4cc2 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02632cc6 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02d916d0 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x145ae304 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16f7b058 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28969c12 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x339ab008 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3bcf0947 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e539604 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4075e814 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f64e257 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4fdd9ff8 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58a51db1 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b8faf33 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6241cd98 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f9c2668 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x750fbd38 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81648885 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84de8397 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91247d2f usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9222ca5b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9312c503 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa07884dc usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0ecb14c usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa68d3fbf usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2139c03 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb5ac1b9e config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbccc17a5 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbeeb1608 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6727fd5 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7abd114 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0d0b841 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x00e5bb23 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x06373430 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3066f967 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x38081956 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4d5d6af1 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7352165a empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x81e45626 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa336c28d init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb6b069b2 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03647394 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0e747d50 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x144871d2 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x386c2d34 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x46d948e9 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50d3440c usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x54b6a855 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x55f6185a usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fb59bf1 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x76e71d04 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x87b65184 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8ac1f02a usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8c4378c2 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x99a25808 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e58f153 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa8cbd85c usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa96d4653 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb7ae851c usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc1ae146b usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc98a6679 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd0b5e1b usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2e63055 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7129c48 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe16fdb2c usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3278a18 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6ef8499 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed8bc619 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf26a25c8 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfc9a85be usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x9ceb281a renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x67bf002a ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6c8cd71b ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x01fbb5d4 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0294f6f4 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x02f38a83 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a26901d usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x582e209e ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x68eb32d4 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8290d31b usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbc0852be usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdf1e4dae usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3ed7025b musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4c0d7658 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5c2d5042 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9ef4f391 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa4b41e0c musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe53abfd9 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1165ff55 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x280822bf usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x495eea3a usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb6b6335c usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfec423d6 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xa617f439 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x65e00497 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x94fb18b7 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xb5f02128 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xbbd74c4d tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x427899d9 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x052b463f usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c891554 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x197123cd usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30987477 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x361b47dc usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x467e67f4 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x598bead2 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5cf1a368 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71a1cfa2 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x75ab3203 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f2e0e35 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb06b7d35 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0c81d29 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb72925ac usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb7a7323f usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xceaf783c usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd049640c usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd44f4d38 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe84a698b usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe6a806c usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x08c2f4e1 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xe6a58815 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x36502f6a tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc9b3e43a tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07f5059b typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1612d523 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ce83c01 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f665f9b typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26931c4f typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a96b1e7 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2dc7ac19 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e46e457 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2eeb6066 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x318105f0 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ca17f83 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e0e3853 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e64dc71 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f1f5051 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47785217 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48db69a7 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a2c6c25 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f31151a typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59bbea6c typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d3a68e9 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63b35290 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x65e09bab typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67699a57 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d1729a3 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d697958 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x739a181e typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77fb628f typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e847b93 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82571513 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x831967db typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e426249 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e500d10 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x960ec208 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99675687 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a2d0290 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9aa708c9 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b25cb84 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c5d4b5f typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9da5b48a typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0e32a4e typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa337fbda typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6adf04d typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7d9e2a3 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbae36b9e typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5447ced typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9ffb9b9 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc715d51 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf09c08f typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4e931a2 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5159575 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5322ddd typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd82960a9 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcf88f65 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0c478d1 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1158fea typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe74af60f typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec1b8245 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeea5cb1f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeeb512c9 typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1ab963a typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0952cf43 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x11661e65 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x416154d0 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4eb54d7d ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8c3818b1 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x93b4868b ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb67e539c ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe4ef7abf ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf59d5127 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0ee7fb1c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1aa040a4 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ca5b476 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4bec80a1 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6870c599 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6f672b20 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70419ff8 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8e18f640 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9946b871 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9b5bc569 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeac294c8 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfb19a1eb usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfb58f8d3 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x03cc6420 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2600daef vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3106d640 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x64d5103b vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6f698b4b vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8253228a vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8b52fc44 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9b823c5c _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc757c006 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x83e5468a vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xeb0e6ce0 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0a466cdb vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x269965b5 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3962e82c vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e87f67c vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5407153c vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x598b89a2 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x91f3a547 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9fd532ba vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa1148c39 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa594c29e vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa8509e78 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa975afc9 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb567add8 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb60ef64d vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbd3e6a35 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf0737d49 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf9015d7f vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x4f7efa4c __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7329b038 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe42d0daf vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf3026d81 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x088855a6 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2a8dbbcf vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x35a60d54 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3dc784ab vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x49b521a8 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f3c25ca vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5d52b503 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x75241920 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x755a7d45 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d36f7dc vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9637ec24 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa04c21ce vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4e37544 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3fb1b04 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfa01a4fd vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7b4a5d4a vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xb128f9f0 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0976925b vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x166d4a6a vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x170ca0dc vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x195574cb vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b73a3b5 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f6f91b1 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x202a194e vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28dddcd1 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b37cfc3 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c08aeea vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42647a05 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x457b0e19 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bc3e6e3 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d12c75e vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5dbe54eb vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6041a520 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65c5e683 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e862ef7 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fdb79c0 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73c281a1 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76650048 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x791248f1 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7cd43da4 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x803a45ab vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x836585d8 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92c274de vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x948df9f4 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97ee0157 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9836277d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa458794a vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaab91eb6 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb35157f4 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5218762 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc949c09c vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcafc237e vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd20c6beb vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb8c54e2 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1e30f6b vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfcdbf513 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffc10cba vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x006923ff ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2fa04359 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9d44ecf2 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa19b0434 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa31f77e9 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf220834c ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfaad58e4 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x6be449a3 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4ff4a462 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe134ecb8 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2d07696d sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x90e9031b sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0a554a2a w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x389322b8 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x523b9ac8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x59c3a2fd w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5d474e8b w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6165d0b1 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa8b3fef7 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc2af0caf w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe0930514 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf63d239e w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfbec099f w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0ee17b09 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x84604a51 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x95e9261f xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc347fe40 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xce86f45d xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x7ae4304c xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xbda3528d xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4c66419a dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc71a49a6 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe8d5c84b dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0a1f3906 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1fd4235b nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x253a5894 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x500c9d65 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x76f79874 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x90b33b75 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcd6f75ec nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x005e9ede nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x037d0482 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x049a054a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07d9fcc8 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08192522 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x081de1b9 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac0df42 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b7e76dc nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bb69566 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x102febc3 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x113f41bb nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x138b9dec get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x157e3a35 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1627feef nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19744250 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c24157c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4f8879 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1de02b01 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e83bb90 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2313ae17 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23605859 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23f52fb7 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24f21e6c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x280d71df nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a0187c6 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7be695 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x302cb4e8 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31c26a3e nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x329b3b90 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x337d2e7c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33e23f09 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35670649 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ce757e nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39bad235 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d01a8a nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a88a551 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ea449a2 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4170d364 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43c1f627 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x450928ea nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45116199 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45eff0af __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471ce950 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d206cc1 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f4cca97 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f73debd nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x514090cc nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51fe654e nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5204bf6b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5558a361 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b34e82f nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b4347d7 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d8b6127 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e7cf545 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f045864 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x607f42fb unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6138917f __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6335e562 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x642d1a89 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6884ee80 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6894d23d nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6acafce1 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e4f5fc8 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f310ce5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f844975 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd90852 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7269ac2e nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7397f710 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73b6ee2f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f263c8 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78a36a55 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b5ae5b nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c87df3b nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cbb7a24 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e44bd04 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f6cfcfd nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f6f4005 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x821247e2 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8351a199 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8556bf7e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ca90a1 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b5716c0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e495ad2 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90814bde nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911f83f1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92fff0f9 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9871b586 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98c8d249 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dc22de3 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f4e48a8 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fb3a675 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4e6fa64 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74b4e38 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7f16410 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa0a6783 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab56b5b7 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb00f0378 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb320ca46 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4bdf7f4 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe6e61ce nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf926afa nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc099e63e nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc133608b nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1914416 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4248e0d nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5bbd97c nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2f2d33 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca7f19db nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcac74e16 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbe0406e nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfe4a063 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0ee6ddb nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd63063b8 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7e27f77 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9409e79 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda08cb4b nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcc21eae nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcfe2a24 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd8df2e0 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde026ec2 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde4e71c2 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf154274 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe086d483 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3d97ae1 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5100094 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe51ce2d2 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe583cbdc nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeab344f6 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf05a41b4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3aed3fd nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9b6c804 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa039611 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc1e1529 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd6e3bac nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x962a4f6a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0259e142 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04cf4582 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0983ad14 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b0cc199 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x211fcc62 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x214e968f nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x228239b9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x251efd9c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27f01af5 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aec6c92 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2b7d9f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35e45876 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36355da6 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37086feb pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37af959f pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c4bd9ae pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ed007b0 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44fc586e nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b99a0b3 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e7499d7 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x507e26ce nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5547265b pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ba80807 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x604a8b8b pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61481d35 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x620b5d19 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x650ce7a0 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69b00fb4 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cd798fd pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e685d93 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73c51cab pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x754b5ef9 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75c16e2a __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7603613b nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77d9da35 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d4e8426 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d831368 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84e59de2 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b142f86 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b43e961 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92fdba7e __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d9acf9f nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f79fb1f __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa09b2fb0 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa32c7e32 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3bdc650 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa684fd27 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa73e8029 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa82c7b53 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9533482 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac1e3702 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf46530f pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2faa7fd pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb93dc8a8 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbad1e176 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd64debe __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf537606 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc09d0ea4 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc61a3a3e __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7aa247c pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccda9491 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce457c69 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd00b9f2f nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1ba6704 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6663f96 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7ec3918 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd87a14ca nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8adbf80 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd97025ab nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfd35010 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe22bb034 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe41be994 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe423d3b1 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea128651 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea9cb12e pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf057b684 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf94eecf4 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf98b1b94 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa0aef62 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1873ef0a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5a46769b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa70728da locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3d70a992 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3e3771e5 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd3a2631a nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd597da57 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xf66b9771 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3b9ec915 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8a44cfe6 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xac08eb3c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe5832bb5 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf39cd76e o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf584283a o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xffe1206d o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0834e1df dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xccdfac2b dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd281aed9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe22145d2 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe512c867 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xecfd38f8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5119f455 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x95d57119 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbc3c19e3 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfcbfd28b ocfs2_plock +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x831d1cb6 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xaa46deac notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x29c4ca4d lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6ff2bfda lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x1bc3f6ba garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x1ce3b7c3 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4895771d garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xafc3cdec garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xb2b5b4bf garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe622dac2 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x299186ef mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4e228761 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x6fdef2e1 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xa9a1f31c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbfbd92c5 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xda1668fa mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x30ce23ea stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xeb90e0f9 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x996900dc p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbf5e3d00 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x5bc364aa ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x29527061 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x41c1cf0f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8bc7a670 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb3fc2aca l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbad13841 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xda623a4c l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdd1dfe6d l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf887213b bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff3df959 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xfd30c29c hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03105b6f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b6b171e br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1baa583b br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c0c3ab6 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1c3ccfd7 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b598a17 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x43b26649 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4aa05373 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b665f23 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ecedca7 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52889d63 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52cd4c20 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x63b44664 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6fb43c3e br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ca9835d br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x94a13266 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a23dc5b nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xac1e5014 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xccf0c955 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb981b28 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xef8cbca8 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd851f0c br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/core/failover 0xad5f3ea0 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xebba8546 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xfb05691f failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0684737c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09d0ed26 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c2ae0b3 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10d3387f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x138fd260 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x209dda57 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x403b2271 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x406cb830 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4345840d dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x540982bc dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55b73ee1 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x593ae880 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5be9ade9 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61b0855b dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66d8f299 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f082d6f dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a200d30 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a7fa831 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c513ade dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95134f4b dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac54352e dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae512c2c dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbbef8f2 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbc85590 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd009a916 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd16b7de0 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd30c1aa8 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd663696b dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb091c09 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3d7b855 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf30133bf dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4a7009c4 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6c28d807 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x860c131f dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa750af6b dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb21173c9 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe829b19f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x044db411 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x088aac12 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e1834d8 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x113ae6d8 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x192aac63 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x296edf53 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29c9b4c7 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40f8b240 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5cb56c14 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ce02c73 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a619da5 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c50aefb dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77cce4a6 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7be183b2 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x840b4a24 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8818183b dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8bc7bfae dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c8ac8a3 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8e68ade dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xadea84b5 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf51ca53 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc90c5132 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc94906be dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcaadf0e3 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcbf5d41c dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd578db9 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd3f7eed3 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd534001a dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8c83ce0 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8f8d231 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xedb5d386 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf831c8e2 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9c814d5 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfaded42f dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0f652a7e ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x79bb0d68 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7c6bbdc9 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfc5fde70 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x52d67be1 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xf773fcc0 ife_decode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x347e7cd2 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6b5084af esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8024c825 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7d319c29 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x8e7db46a gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2fc67923 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6c449670 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7afd2df4 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xaf7bb67e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbad26fb0 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc32ddf24 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xda3355fd inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xed172e6b inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa6c00f3 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x607cc345 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e9e31c0 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f1c820b ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x431d92f2 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cc37d42 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a34305e ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b1cd064 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x72777451 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x778cebfd ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f81f488 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x937e201a ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc57ead42 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf7ff9d6 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5d6b20f ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xef82f501 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0c0f671 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf29ec4c9 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfa6a7fd5 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc6e52be3 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x73614f02 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x115c7f20 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x4b7db688 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x3f13b49c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1b8cba52 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3b9e5321 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67fb41d9 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7f7b5cf0 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc28bc4ca nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe0481d55 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe3b31710 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb4829d8e nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x10ebb44c nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x36adff78 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xcb2207e4 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x66ce2bc8 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe62b8b4c nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0a60a52b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1fcc90f8 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x27e90ba9 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x55a28164 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6437b926 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x370525b7 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x394cc56e udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8421e968 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9e3de5c4 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ee1eb04 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb97d3b4e udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd3a7a5b4 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe5615c5a udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2c124b7a esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x808449d4 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x913b48ab esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5c3a4908 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd6ca801c ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe7b1fd1a ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0b534aeb udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1a4ac62d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd06c565b ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2a56fbfe nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6277d87e nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8a4d8f84 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0caaa0c7 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1655ab3b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x21bdcb5c nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x387fb0ff nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3904cb9b nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x42bc23e9 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5eee1bc8 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdc5780a1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x33e53ce7 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3b592e09 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6214b6b6 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc1b03081 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8028e7e6 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbb9ff237 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04e026ed l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1045a3ca l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e8eb2af l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28a1ffe2 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x382e851a l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59a810df l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c3427c7 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x78de502d l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f0c2588 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88b44d24 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8db85d07 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a9a5663 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9dd7b62b l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4a1b16c l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5da5945 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7ec050a l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbc0f796f l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc07fa542 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd71baa3a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee3e7b15 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf33a986b l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x648f1742 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xf979f49c l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d5f5926 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e8df10a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40f7304d ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f410096 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x50c82763 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x550f0821 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56df21d9 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6aa535f7 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71d2ca75 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72b6d56f wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9126cd80 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e5cab71 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa073bce1 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1a51f01 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2654043 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb830bd83 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbb405c1 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd04256f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe496a82c ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec061c75 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0af0b734 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0f6185bc mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1f631594 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x84088244 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdd95547c mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x02fc68a9 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x08557e90 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1300042e ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17ecca5b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1bec6e28 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a68fabe ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x41b043b2 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x518538bb ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c738809 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73f521e4 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7aceddab ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d8499e6 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ecdf3e8 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9854b82 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xba82cf72 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc03ebccf ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd30b4897 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5d23994 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8f5fbb1 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x11d1fc6f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x27acfa97 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x78f9986f unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfe32652a ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2a92aae8 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4370cd98 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaa0eafca nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xca2e4db4 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe413afea nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05df8b6b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07988247 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d1b5bad nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ecec428 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed675e5 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11492786 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f27d9e nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1722ccc0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c56c569 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21760d96 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2327d1bd nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x250831c3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27ea7a94 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29db8619 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32c9e731 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a537e1e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cada73e nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x417f2988 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41b6cbe5 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44db873a nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c172ae7 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c8a7c11 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fc9830a nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54c51344 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ee425 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58d83e7b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e35cb83 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f2587d1 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fbf9e12 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62dff5d3 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6377b9da nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x641404a8 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6deb5a97 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71da07fc nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x734e8f1f nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74cdad8c nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75d1a6a1 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79f4c1ec nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8110ba04 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84f3e33b nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86f6205a nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87c916aa nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d050b5b nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90a7ec35 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95cf5df5 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x987a7495 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d6d4c5 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0d3dc17 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1faa49e nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9708d25 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeae2301 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf1772dd nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf7406ef nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb17c073e nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb203a0ef nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3202caa nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5588089 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb58535bf nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb6c7991 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc794384 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf17357b nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf1f2daf __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf732a5f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc497c339 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcab39f15 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc3aa9e5 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccf459db nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd16f93b6 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6de9a66 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbab4662 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb5b700 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3056460 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4b6eb27 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe75f4de9 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebab27de nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0753531 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf152fa56 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd511326 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd870530 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff3de8ea nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0444bec9 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x0445699f nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb28ed51d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x043bad22 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1e6b583d get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x37b5e4d3 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5ff99c2e nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x99858e1b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa5c11a33 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb89ec168 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe69e08a6 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe92cc036 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xead75ab8 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x1194f30c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa8689137 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd6a7b28e nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe46a3229 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf9979733 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x11cf86fa ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x515bbf37 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x52137023 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5d39e55e nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6f1dde4f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8b5c849e ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x98e6e617 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x600eec43 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xbf5a847b nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7c7082b1 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8e1ced4c nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9a2367ec nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x178a7c71 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x28fdd1b4 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2a5a660b flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x353aab54 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x39dfdd0c nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x55d7479f nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7da68098 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x81427529 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x873d7aae flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x89da62da nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9116cdf7 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x912158ba nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x933a55c0 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaa9cf055 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb60fb9d3 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd8a4ae19 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf5f3d962 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x04d3f698 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x04da5deb nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d5babcc nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0eb9f982 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ed3e784 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31f521bd nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4233fdeb nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x484f7707 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a589c40 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6cdc58b6 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6fcc6819 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7620f3eb nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7cf7b907 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8116a34f nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87e9abc3 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcb9d78e5 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x168a5e22 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x28831a34 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5765c73b nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x642f20b5 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x75a87eb3 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7c3c2763 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7dbba4f7 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x96990c68 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd3e4ed0 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf0f0a3ef synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfff3f758 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02d04862 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e9d951b nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x13084274 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1536c5dd nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1603496f nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2223a08d nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26fad932 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b2b0475 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c9dd4dc nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x429bc1f3 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4705c87d nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48611af4 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53527bea nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62d269cc nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65270116 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x653bd984 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x686d0c0a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69f2cfde nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f7d297c nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73880b51 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x79c1cbe9 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8151e612 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x858a8dc5 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8983bf6f nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cda1b94 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x980e2ad8 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a8db441 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c22271a nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaca5267c nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb814ee10 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc015eebf nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd87aa329 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe25b2128 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0699c71 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf88e40b7 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x322a4389 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5c015175 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5d41ad2f nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8e8f44f8 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xab7bef4c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb58e2259 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb72ab108 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x06dbed2b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x882b1b94 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf2dcd1ff nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5a56d8fd nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xabb7251e nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0832ca7d nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2a4877a4 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2a95b6f7 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbdd932f8 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x060c71b3 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x29fbdd8e nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x55face65 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03b4b769 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x042c3e3c xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12a00ef4 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d26b69f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2af479ec xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37f04cd4 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b296e83 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b32cd62 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4db56acd xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52a3be77 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62f0f6d8 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64cd5fc5 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d115166 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e90608a xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8400b392 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x901a94f3 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa4d94efe xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8866252 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xadd9552e xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbbb917e3 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc06cf504 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb761664 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe44b117d xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8b109618 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8c8bd3c8 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2f3fa220 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa8f4aa24 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb561b373 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x165f28c6 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x333d2684 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x491fd67d nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x27de2426 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x7d7a7b38 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1719a41a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x22b3868a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2fddd30d ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9ea0ba6b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb86d63b3 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc1d266b1 ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0xa142829e psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xa452f1f4 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xd8e9c349 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xe2ae8a06 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc15732ab qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xcbf448d5 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf4392499 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x02a9bb29 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x069f0de2 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x10ef3190 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2b7d0b3b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3008abd0 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3f7111a7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x50f89583 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x5308408f rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x548b91cd rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x667e6360 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7a8bce89 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x806b939e rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x834660e9 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x84c76d43 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8bdd1189 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x95c26949 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa100c0a9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xa146c44c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa5532c8a rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc203698c rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcabf53ee rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xcc068a71 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcd4c1b4f rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xce8978a1 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xe57c75bf rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xef6c4981 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xf17a2ebc rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xf360c127 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x56c2c304 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x97ee6eb6 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x76171147 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8b37e505 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe4beecc3 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf69b8413 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x2af5dab8 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4d0dbca8 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x532d9c2c smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x5d2d962a smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x623540a3 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x6268b2d0 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x90a488a5 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xa5b297ff smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xa96f8a1f smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xd8532788 smc_proto6 +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6c87fba1 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x90e26b2a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x983d4ff2 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdcda6a8c gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d4a4c8 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x078cdef1 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a4d488 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0868b3d9 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a07119a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ba97ead xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bafd6d8 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c87e72c rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c885a1e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe338c4 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x106c6ddf svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1339c6c5 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x143165a8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b00031 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154de593 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15827f7b xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x160fb621 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18136bc9 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a5ca9b svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af835fc rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e547c8e rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e56c7cd auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2000f5a4 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2078ee8c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b4e45e xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2128f9f5 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23232d72 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25404484 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2671be65 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x267d8e9e xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2823a055 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28597572 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6001e9 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6c3113 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b21e004 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c4f9f64 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c699444 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca17f32 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dda3231 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b8f625 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37078df4 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x373fc1b0 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x394d4a4f svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ac2deb xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac6ce3b write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b634bc6 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bffc3ca svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dafc9ab svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e252aff rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f06efc0 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f3fbb3d xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f69c911 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427cc6d8 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c8db51 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45465d95 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x486ab70a rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x492a3afa xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ab2385b rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7b9780 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ea4600b xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f719121 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50454662 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x515f4c1f rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x528136cc xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e44df7 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x538b52db cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x543ec6b7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54967858 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c967f1 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5605eeb6 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56698a93 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c3d0d1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5757619c svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a46116d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b69e57e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bbb674a xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d86b6c5 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e6dbd90 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fe5c598 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62375a49 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d403c4 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661a0557 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66427899 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6651117a xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x665f7cbd rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x674f7927 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68219481 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68251e86 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69776fa7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6acd3888 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c54084a xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d66f388 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dcdd2c1 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e6cd400 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f2236da read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f293cb7 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704b7272 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7121fdf6 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71913941 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7276eca8 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ffa9a6 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743f5dc0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7569aa34 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7634fdb9 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766f8db8 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ad5913 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790aa841 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x799847fe svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79cab1cb svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79e79552 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a697de9 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b436de8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bae2c6c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be5d6bc xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c541b5c auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7a6f88 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb9a0ab xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f31b97c xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ff4a210 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815f1340 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8167caf1 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e8dac0 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82748210 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82afa40d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82da8723 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83684031 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e7ea22 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87789b4e xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f31895 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x882ed06b rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8915a1ff rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b653a5f rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0515d5 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3c22d3 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e35a220 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x908b2dca svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9246ef6c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929e4d39 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93142ec7 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x934f09d9 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947f5f8c cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b1f28a xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x997ff6e6 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5a3818 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a993759 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bc0c596 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c522dac xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d0cfe68 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e9b617b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee854a0 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f57e042 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fb9f674 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2413b47 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31d7a6b rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3776703 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4be49c9 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa52640c7 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ca91de rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6520c44 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa93fcb32 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa40710a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaafd0374 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacedf1d6 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae2024d8 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0342bb8 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb274d07c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3cc0185 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ba0b07 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ce817c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5dd20d5 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65fb6a2 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8c65a6 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae01218 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc071b23 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe52db6e xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf953222 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc14acf8b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1f88c9c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc276e2c4 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2dddb24 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4972b89 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc79143ff xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc828197f svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc979652f xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc97ba894 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac499d2 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac932a2 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaea88fd rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc66e847 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfe6d505 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d591bd svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3f011f1 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4032fd9 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6224ff4 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd717cc0d svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74e7d1a rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9968345 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9caad19 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda8ec60d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcff6c36 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd635a86 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea511ef rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04b9acd svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe13760cf svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe13fbcab unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4322f5d cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6803b64 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74e7be1 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ed5a42 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea436a84 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4b9747 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea7e6a6c svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae57dec svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec72c697 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed057c6b svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed671e4a rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb53288 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc12f4d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf096aef9 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13aca45 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2eadaf3 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3adb204 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf75cdd66 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf87ea62d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a73bf0 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9628b18 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb881af5 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb896f09 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1d4c8b xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff519504 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff9f7168 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/tls/tls 0x01d2a0e3 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x468bb278 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf5a4e34b tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xf6526aea tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a9947f5 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x110c5396 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x140edaf5 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a244ba0 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d4b693b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d67cb82 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x233b92aa virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x243f3d13 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30384936 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x313d0ee4 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x406663c5 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4fbc9f9f virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x51a778ab virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5268ee26 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x635c940d virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63a7a1c0 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6edcfaa3 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73048447 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78207a6a virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8366c59c virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f7579ef virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x924fa97d virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92a3daf4 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x940aad44 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d1394e0 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf95485e virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9619b89 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd3a7c17a virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd54e88d9 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd90880b virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe029c381 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe115ca3e virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe787eb3e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef258e1d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b87157b vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f1f4c04 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a09cbdc vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3af1f775 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x48ca7e0c vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f7d9886 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x65443988 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7875cd5f vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82478784 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x92f1e685 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9673fce6 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf30af23 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb7e49e4f vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe61d5fd vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4b3b89e vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcb0814f2 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe20beb09 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe27c947a vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb4ae3e6 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6c3c588 vsock_add_tap +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e6614da cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x21a1509c cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3aa373d5 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3bb7bc1b cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ffa6969 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x46daae35 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48253d89 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5a66957e cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9030f449 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d994209 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa0ab2a32 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa361c473 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa6fb58d8 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc8028467 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd4b09ca1 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdea7e5ce cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1f68b0b8 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x662a8b66 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc628665e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfb0d6351 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x42ebb216 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd 0x2d8c0a28 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x4656961a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x467e05bf snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x47ca8339 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x62251bb9 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x68fabaaf snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x6caf0e3b snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x7fc9b4fa snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x980b0b22 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xae692ea1 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xc46f8f4e snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xcb6fc7aa snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xd37bf33e snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xf37dfd7d snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf9ad1727 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xfe1efc25 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8b593789 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xac8b0873 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x066bebf3 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x090b8de1 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2bede751 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4688210c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6a4a9bd0 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x812f6593 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8b25d918 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99d6e2fa snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb43ce07c snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd35e71da snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdc52957d _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf4101b62 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0a045226 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x13581968 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1c07684a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x448d7839 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x52ff216f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5727b121 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x652f492c snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x82292428 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x836643c3 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa7cecd64 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc488dc1e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf0044173 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc2b5e30c snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe47d3cf7 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2466fd3b amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x92976805 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9e6ca966 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb5c06bc0 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb91b9782 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbbf498bd amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbc73b290 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbe809630 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc9b5866b amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd99168e9 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde839fb1 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf90b01c3 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf991a827 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02d6ada5 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x086b148f snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f640e65 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10f0adcc snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a81a238 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e7fcc8d snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x204bd53f snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24766c69 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x247ad3dc snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25e1d73f hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27e68247 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ba6adfe snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cf20f47 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3016473b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33b06ad5 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x354df476 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3615dc4e snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43828252 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x457fa7aa snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47523ab9 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47be53a2 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c9b51e5 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cc72af8 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ee96e81 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ef5ed8b snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ff2a6ac snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52930b34 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53f38e31 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x549afebb snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a43fb99 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b1595d9 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cfbc582 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x603f8c97 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62af8a0e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x630b6427 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x631bcc08 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63d803be snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6990e67d snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f25a9e7 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x707c9ff1 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ffd760 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x759e3b87 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bd16a8d snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83367808 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85f254d4 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86bfd7b5 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x896f83ac snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x896fe5cc snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8adeb0c1 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e9082a7 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90056dd0 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9186a364 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9511329b snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97880809 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9807d36e snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bde81a1 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa00b8b5e snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5c20d69 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8483b47 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadadd7ec snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae9f30f4 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb17124de snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1e1a6f8 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3e36ccc snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb74cb6e2 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbfaca7c snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd29084a snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfee930e snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5428085 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcb4d12f snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0081e3b snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe012878c snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0f4e7de snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe57f060f snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8b60d70 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2ee923 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed77ffcf snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2387f01 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf70aa2bf snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf84b383b snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9415b02 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe5adf68 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff08b2bb snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x52a4b98c snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x55f98ed5 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x5847b0fb intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x87ff8b12 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x32ba32ac snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4a39d030 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x630e75f8 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9836e167 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa8194069 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xac37d4cb snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c23c38 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b280e5a snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e2409b5 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a83d61 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14328630 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x157c55dc query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15d92b9d snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15efb44d snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17afdf4f snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17d0cb4d snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1abd1c4b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bef40d8 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f961b82 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ffb8475 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21ffbf93 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24adbf2c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2713bd69 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d1f0260 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3063b1c0 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x320eb5f3 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33758172 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3379cd3d azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3473a50a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aa45b6b azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d17f14c snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46421cb6 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49408533 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x498d2c92 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4facef3c snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51362a4c snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51edb1de snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x522c08f1 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55e0f1c0 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x565f0276 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5be2bb4c snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e49f858 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61832b42 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63b96ead snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x655d6215 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65707646 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68ad9200 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6951ff4c snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c2e2774 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70c2541b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70f507f1 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x712016b5 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x726eae77 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7303d633 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73d62d93 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x778d5de0 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79e2e508 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c516783 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d147f09 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fb4240a snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x827e18c8 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85ac8bf0 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x869cb62b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a47f5f3 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e008f33 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eddd20b snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x931a9ab8 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93be3cdb snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93cc1bf6 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93e77fbc snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94a91b2f snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x956d558c is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x970a9770 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bb62599 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dbdd218 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9df9b899 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa08bfe3b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa18e3c82 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa239a732 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f2048d snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa76061e0 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9f4d34f snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad09e3b7 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadc89ac2 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafce2c03 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1680ca7 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2c5bdcf snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3ea214a snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7ec043c snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba3cef2e snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4cf2bb snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbda4a7f snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcc890ef snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf3377d5 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfa3977b snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0c7c118 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3fdbf5f snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc470c0e9 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4d2f86a snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc617cba5 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc74eabb2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8fe0f16 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc93252e6 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9e8765f snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9fb211b snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcac069ef snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbafd9c7 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc976d34 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd05c86a0 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd062e5a1 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2077354 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2507184 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2c01a12 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3e34a8c snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd517f7b2 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd905f6d9 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdee41a07 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeeed6ba __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf7b87d9 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0499d0c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe27c59fc snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe645a1a8 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee7f60a7 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf002c062 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1c5049c snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33560f6 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf60df964 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf62c6760 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6936cf4 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd371006 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0756f926 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a4e7057 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1fa1080e snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x296c2e63 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a1b1799 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52c0a3a0 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x593a91bb snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b751bda snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7322fedd snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x73307b25 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f9a26a0 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x972c4618 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x99641c4e snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b01c0d0 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab7e73b5 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0b87e37 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xccb4f263 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd7d1a52 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd698a78b snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdbf74e6e snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf02c6379 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xfdd3e9a4 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x9e16c0e9 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xc96b9d2a adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf4ac62c6 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x10003f89 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x215d3fef adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x23aaa891 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3dd780eb adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6fa8e20a adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc0cbd39c adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd2eba301 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd2f5e843 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd3d19879 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe1168d8f adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x5f78b86d adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x03d24d2d cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x49593ae4 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5babafc1 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x86208deb cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa4e8701a cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xabce414e cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbfc2b9ab cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x083882f0 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0cc79d7a cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6e8ca734 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x292af648 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2adc7dc9 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb4248436 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xf1c9baf1 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x285b1ea1 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x46fb75db es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x817f287d max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0d487a72 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x83d81002 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb7bfd0fb max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xbcfdfd03 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x85dc55dd mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x8781b004 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xcae0d556 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xda4dda5c mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7f26f8e9 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x33305f1a pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x59083ffc pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf1fc1ddb pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5eb893d4 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xbd91c59f pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3083c784 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xb8ce9b71 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x17532f0a pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x59bae1dd pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6383f8dc pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x81e8bfb9 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1cb86e32 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x41236204 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4359d48f pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8acef592 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x01c7c94f rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5fb1cf6b rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6dbe2f4d rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd432cb2d rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd576c4f6 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf8a5e52c rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x8da0cd7d rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xac17ad2f rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x95fc94e7 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7f4e2dce rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x7f29d86c rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0c03802b rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x36235eee rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4ea78054 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x50fbacd4 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x561663ef rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x71ad1ef5 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9ffbf080 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa3105c12 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd153803c rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe7343b28 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf2c5521e rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x304900b5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x43f9453a sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9e9df8ae sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa61b1239 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xec695b6f sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x38cad5ab devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x4af646c8 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5e2775b5 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xdb5bd43b ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x1f9683fc aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb3e61151 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x60039c43 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x074f2748 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x57c92d0e wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6d0efa3d wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x896b0b28 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8ffd3f9f wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x08484314 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x319420ff wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4023f094 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5e35d16f wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6eb8ec2f wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb98dbf20 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcf315411 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xec822db3 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6f59bc46 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdcd876e5 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf08cdd13 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xffa4fd24 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x47c7e54c wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5ebff7b8 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x1a892834 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x90216684 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xc162a0a9 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd04897c5 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xa922e3ce audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x18a8693a asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c8f0ee3 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2fcfbaca asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x32706c26 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x37fdb1e9 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x50f3a93c asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x59ff512f asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c3e2010 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5de20a96 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x62bfd076 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68eb2ce3 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7a392bf6 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9cb2c776 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb1b7a068 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xba1fce23 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbcff1aac asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2ad8e81 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc72064e1 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd2dff397 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf23d542a asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x05dcda8d mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0d8702e3 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x23381206 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x24cc828a mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2b2a2385 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x32a48007 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x34740b83 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4219cc13 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5092fe36 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x610ea550 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7680eb4b mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x788b2ef9 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x847233de mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x85807d0c mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9834ddd0 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa744fb63 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xabd0780d mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xad897402 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaf763e96 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdf10a520 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe3508aeb mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf2cc608c mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf53aed30 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfc7593df mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x04e7a6a3 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xe7a19e45 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2554c803 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9da9da51 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa3c7be18 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd6469df9 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe47cfe33 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe8a80042 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf8603570 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf9850c3c axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfa1870ed axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x22a03f65 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xd04c3e2d axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x3e37731c axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1470f548 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5550a77f meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x67f2f286 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb49bf972 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb7a1583c meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbcff19e1 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd06b7cb8 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe2947c48 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x17b96529 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x28302888 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4fc2d0f5 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x67f59fe4 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7f8ea2b4 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x99a5cfb7 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x6397ad11 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x76d7775e q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x90061c93 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xf155d446 q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xf5ebc79e q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7ce77874 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x39dd38b1 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3caddc8f asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3f91da26 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x41b3b2a4 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x856b5855 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc6bfbb2c asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x329bf7c4 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xc71e1813 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x6b0bf2d9 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0084d8f4 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00b43ac9 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00f10e0a snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01109090 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03f5f6da snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0673fd29 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c04868 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07fe6c13 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x085ba4f1 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08e62d5c snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ed4ce5a snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f8b227d snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe7a899 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11789d30 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11f16ae1 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11fde511 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1250aa15 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1358a2e0 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x137ca04d snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13d7ef5c snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x186d6a7e snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1874bb8c snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19822614 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d25f5f6 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e1ce14b snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f26c16f snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2035acc4 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22f9d56f snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x247c63e9 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2552f6a3 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2643849b snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x283e227e dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28f35a29 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x291821e1 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c5d7f78 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cedd177 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2de8e800 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e7f8b96 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4f49a9 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fab7f3c snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3047aa92 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x307f515d snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x321e7d23 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x330fea6f snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34613972 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34a01ac8 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34c8dd47 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366e6719 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3749f252 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x374abede snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39af1938 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a196f34 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bdafc0b snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bdd2ae3 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ca707d6 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41a2c683 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x436fea3f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4885b0ad snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x498bd9ca snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49ab7d69 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49ba71f6 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a12f48a snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c1f17af snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c5fb5cf snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c7b4808 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cc7af62 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dd40bff snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ee6ec58 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f42191d snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f702e22 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x508e3d70 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50ab994f snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50e9720c dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53d74363 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56b29ab6 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5aa77199 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ba06bd2 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d3b1f18 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e487c64 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x606e41c3 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63616d59 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63cb0a6d snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63f8d933 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65667c02 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67098436 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x687dccdd snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6accc952 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6be8d1fb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c43ccdb snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c5b8d0a snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cef18d9 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf66e44 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d1ca841 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e244a1b snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fd6aedb snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721b6c26 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7260cafb snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72858e2a snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72a003a1 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73f98a27 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7640d0aa snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77fb8211 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7968b232 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79960243 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a1d64d snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a9fb5c snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eb00e38 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eb4bb37 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe766cd dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808b000e snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81801024 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x822f25a0 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82db29fd snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88901b78 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cbf2dfc snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f65b0ee snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x908786d8 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93d265e6 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x941ee39a snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x963bbb66 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9649b011 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a8c514 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x976a4381 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97acc087 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9894f889 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a314298 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ab6a4d6 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cfb8ff6 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d5e1641 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d939948 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9df08f04 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e4aec65 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f1bc920 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f3fff4b snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1cfed92 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa22027a8 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa24eba0c snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2888e85 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4c27367 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa51824a2 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa51b4bb8 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5646d5e snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5fcc8f3 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa63f90cb snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa65929c2 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6722ec4 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8be4787 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9036aec snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad199a3b snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad61a4e6 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae6148c4 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaec30c70 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc3c3d4 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaff10bbd devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3207d12 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4a8f3b8 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6fcbed9 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb745a164 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe6a873 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc517e8b snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc15fe6c9 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1b0fd2e snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3209738 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3754fd0 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c4365b snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc704e7bd snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7332af1 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7f52770 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc86cc8ec snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8ef8f4c snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc91ba630 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9219624 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce8cf999 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce924cba snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd01b2c18 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd040503b snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd23c7015 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5b4ee23 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5c3f4c0 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7e68e67 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8cf5f4a snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd99d5df1 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbf1a00b snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcb8d246 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd09c848 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddee36a9 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf9278a5 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe240acf3 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe44d0022 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe69f90e5 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb267215 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee1fb4cc snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee675f9b snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf10e623f snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2967d33 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5dcc3a7 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6446b77 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6d4e28b snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90d0df0 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb7c2797 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb7da1c6 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff78421d snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff86d646 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x113ad109 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1b9f7f0e snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x60644280 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa693ff66 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf416f08e snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x68b4b311 sprd_mcdt_chan_dma_enable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x6c283cec sprd_mcdt_chan_int_enable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xa5fdddd3 sprd_mcdt_chan_read +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xb67dbf49 sprd_mcdt_chan_dma_disable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xdf547b54 sprd_mcdt_free_chan +EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x9ddda780 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xc80c414a tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x068a7442 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x1fdd363c tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x29aedc35 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2f08c287 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x65520c26 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x736a1fc4 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9084b968 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9e22e8e7 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da tegra30_ahub_allocate_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xd01de23b tegra30_ahub_allocate_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x34968c39 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x6b22153d sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xca2b04b7 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0c0e8702 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x31c42f1b line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3962cb67 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x60d5be8b line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69634bd0 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b4ed49e line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93ba8649 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x95525b31 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa62fc5a0 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaced900e line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4587772 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7843496 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb9b693f4 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbfeb5d89 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe613d17d line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xedb07ebf line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x0008560b edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x001e5be9 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x002d854e bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0036c71f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x006031c3 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x006b8698 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0073683d dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x0086de54 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df60c9 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e75cb0 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x00ec7f2f tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0101e98a add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x011261fc get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x01283d5c ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x012aafe3 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x012cbd3f fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x013b0bba __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x013cddf3 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x014f77ae regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0151ae9b cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x017fd3cd pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01979352 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01b25312 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x01b9b974 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01be9783 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x01c04c67 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01ca8b28 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x01cc3337 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e26630 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x01e74224 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x01ea3a59 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x01ed21b5 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02198738 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x022be7b6 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024261b1 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0259dfa1 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x025d82b0 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x027483b4 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x027ee894 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x0297bc87 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x02a35ee8 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02b11aef bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x02b3d1c5 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x02c054e1 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x02c86293 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x02d14e73 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x02ddf878 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x02e194ba mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x02e8cc19 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x02fcf210 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x0305d5ec cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x030951ee __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x030abda4 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031411e5 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03284863 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x0328bed5 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x0334f47a mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0350e4e3 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function +EXPORT_SYMBOL_GPL vmlinux 0x0389afb6 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d29f56 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x03da3a94 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x03de6f13 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x03e40b09 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x03eadee6 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x03eb6498 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x03f79578 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x03fb7162 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0419589b gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0421e0cc regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x04266f1f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x045d35f5 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04606b9b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046c1a60 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x046c76a3 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x04793677 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0496408a regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x04a0fe10 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x04b805ef virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c520df pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04ca3414 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x04d61e35 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e08889 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x04e3572e tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x04e45d72 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x04f45df3 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x050bcb87 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x050ccc6e devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x051ae08c regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x052c8d20 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x05473ba0 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x0548af42 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x0549b519 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x054bd5e0 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05605396 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x057633d8 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x058388de sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0590da70 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x05a7460a device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x05b4f121 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x05b7ce49 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05cd3e62 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x05ea68a2 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x05f7ada1 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x060697a7 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x060bc5f2 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x060fede3 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x061edf5c crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0622e73d alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063c2e33 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x0645ce30 device_register +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06675d04 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x067ab11d __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x068fd65e virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x069abfbb thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x06a2e5fe tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x06a90d44 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x06b153bc blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x06b8c435 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x06bc134c sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cdf901 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x06cfec05 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06e5a95f device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x06f62c54 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x07036c30 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x07070965 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0712c70f platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x07149290 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0753f378 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x075b514e icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x076cc7dd sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x07972b94 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b461ed blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b5c0f4 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07cdf8bd of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x07d68d89 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x07dd445f max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x07e92f18 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x07efdda9 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x07fec8c2 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x080ebf98 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x081352e3 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08199848 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x08277ac5 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x0827ad12 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x08304a69 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x08439db8 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x0850fb4b skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085861a8 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0863348e devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x086558ec of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x08765ad2 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x087862cb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088aa99b regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x088c16a3 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x088e8961 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x08a8d901 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x08aa51d9 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x08b2e414 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d002c4 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x08d4e319 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x08e3f5bc sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x08e9123a sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x08eab98b firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x08ef616d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x0904b88b of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0932c88c __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x0932ec2e nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x0934879f iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x093a10ff of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x0947d2d1 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0955f517 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09635bae raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x096a87d6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x0970425e device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x097075e8 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x09833a68 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x09868764 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x09951951 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x099aeabe uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x099ff909 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x09abf8ad fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b60ac8 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x09ccf771 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x09d3b31c dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09ea6569 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x09f0ceb1 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x09f98239 mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x09fed06e of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x0a0f6c40 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x0a1984be serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x0a19da29 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x0a1b33bb of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0a2f5ae6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0a3461c5 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a51da01 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a650ece l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a8055e8 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x0a98ccb6 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x0aa181a7 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x0ab1ba92 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ab8e376 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0aba5275 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x0abb7870 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0acd1ca6 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x0ad4f34b usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0ae2f73d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x0aebfc54 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0aef9da9 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b009489 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x0b0514b4 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b100755 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0b156b01 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x0b20a25e __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0b245038 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b24b2d8 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b385388 get_device +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b3c61d2 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x0b3c6378 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b40fb53 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x0b44cd58 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x0b4a7d97 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x0b52d14a __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b61f9a0 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x0b658f69 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b75c4c2 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b7b6919 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0baa6cd4 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb57ca6 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0bb93f90 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc40108 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0bc81836 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x0bce9d61 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x0bd22950 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x0bead22e usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x0bebd40b ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0de990 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x0c12b1e0 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x0c198bfe kvm_vcpu_gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x0c24a69a pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x0c297a9a apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c5250e8 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x0c52ee39 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c654041 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x0c676b39 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0c6935d6 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c916080 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x0c964027 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x0caf5aac devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc36b83 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cd1f3b9 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cea3ed3 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0ced5dd8 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x0cf6ea73 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x0cf87354 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x0d0f42a1 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x0d248871 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0d24a3fe reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d35bd27 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d7462ce fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0d825c86 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x0d976119 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x0dbb2326 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dd6674e led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de2d1af sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x0dfa1b1f pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x0dfc5818 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e022065 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x0e054aad __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e07ac43 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0e0ec098 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0e10794b devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e19bbf0 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x0e20e7f2 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x0e3cdcf2 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0e425b23 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x0e536325 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x0e5fe1fd meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e85f015 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e9e8773 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x0ea133da of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ebbcd77 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec37493 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x0ec69e75 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x0eddc9e3 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x0ee143b7 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x0f0677f2 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0f068f03 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f0f9669 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x0f14f300 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1cb364 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x0f3ab659 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x0f48295e anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x0f537cf5 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x0f5d6c5f __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x0f67f0ce of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7b1cad nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x0f7bbbfd usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f7c4bed irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0f8cf362 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x0f940e3e spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x0f9a5eac sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x0fa5dc5a dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0fb214f3 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc02350 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fecb29b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x10013d87 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10182127 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x10256ab2 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x10393b16 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x103bed6c tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x10441961 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x104c7d51 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x1065e7cb ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x10684f3c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x107ade4a sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x107ecdc9 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108f6ef9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x10ad324f acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x10b9492e virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x10d73d13 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x10e3e8b5 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ede6d3 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x10f0c685 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10fdcdec serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1114e62d iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x111a5ede __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x113062dc pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x117e7c35 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x119af8b0 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x119db7b4 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x119ed92c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a44a21 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x11aed001 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x11aeecbf inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x11b3a171 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x11bf820a xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x120ef8aa fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x12127f0a sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121f43a5 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x12284ac7 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x122b32a0 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x122f1abf unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x1239ff06 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x123ba23e hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL vmlinux 0x12407fe8 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x125233f1 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12650fb0 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127757e8 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x1281131b __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x12819a22 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x12915c42 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x1293b1f1 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x12b3dcbb crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x12bd80c9 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x12c57647 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x12e51cd0 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f85e4a devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x12fb1718 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1328f48a ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x132c3e91 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13441177 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1345a0a8 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x1348e1a7 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a7ae12 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x13b194ed regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x13b54d0e xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x13bf624b rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x13c47734 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140b4538 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x140f1f94 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x14160949 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x141c5d46 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142afc30 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x14468075 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x14485255 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x145071ae icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x145459bc __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x1460182c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x14616090 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x14623ee4 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x1468d071 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1486d4d1 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1493454c rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x14990f21 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x149bf992 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x14a6a5c3 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x14a96cc1 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x14b7f38b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14c32e9c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14ca5a9c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14faf3a2 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x14ff7179 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x15086469 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x15128694 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x153198f6 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x1539643f regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15466f27 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15757fe9 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x158002b3 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x158728b7 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x159616e1 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1597bc0f devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x159a357c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x15c4da84 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15c70d07 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x15daaba2 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x15e3e2f7 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x15e8d28d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ee0baf usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x16006d3f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1604143f iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x1608424e crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x16105187 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1618027f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x161908af of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1635abbe dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165913d3 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168c5ec4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1695d405 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x169d1a6c tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x16aca2f7 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x16cb2f60 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x16cdf3d5 input_class +EXPORT_SYMBOL_GPL vmlinux 0x16d0a80f split_page +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16e07ead devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x16effcc7 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f783e8 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x16feddea blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170dcbd9 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x1727044d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x172975f7 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1732cf2f pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x17415876 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17433f8c sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175c2618 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176f8882 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177e2c3c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x17959432 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1797b270 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x17beb744 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x17c2d1c5 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x17c45079 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x17c4f9e8 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x17c56959 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17f40fb3 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x17f508ed vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x17f9f2ad ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18046f0d gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x180db778 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1810883f mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x18139a68 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x1815cccf tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x18197674 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x182c5ba0 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x18420e41 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x18502bf5 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x18548f97 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186d23a5 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x187f58e5 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x188a346a irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x188c173f extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x18aaebf3 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x18be0e6e blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x18bfae3d device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x18d69d73 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x18d7b377 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e60922 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x18e7dce4 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ef05c7 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19024816 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1908189e blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x190b0968 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x1935f7f8 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x19367621 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x193f3d2c __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x194ed78d pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x195b5ba3 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x195ec23c acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x196be500 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x19751973 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x197c7af3 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x198044ac gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x199b2044 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x199cfd38 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x19a04902 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a7409b aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x19a740e5 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x19ada7d3 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x19af0480 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x19b5ad57 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x19bb9530 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x19c1479f fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19cb968d of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x19d2e6a2 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ed9bce crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x19eda08b crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f48a56 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a16d392 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1a1a1b36 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x1a299bc7 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x1a2a7630 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1a2b4709 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x1a3f9f8f gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x1a4b414b rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1a67471b virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x1a6b2aac xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a81ffda vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a93b049 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1a99b5bf genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1a9a2c73 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x1a9d757b class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1a9e477d serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1adb6463 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1adbd82e devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1ae685c2 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x1ae87126 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1aec25ad gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b075615 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x1b14088d nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x1b161f30 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x1b278475 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x1b4b0698 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b5f901b of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x1b706c15 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9c637c rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bc9d68b phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1bca3ed2 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1bd4bb83 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c0ee472 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1c135c9a serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x1c1b9e45 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x1c27c3fb usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1c36c0da spi_async +EXPORT_SYMBOL_GPL vmlinux 0x1c3988f0 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1c4f1ddc usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1c4f93c8 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c64f8eb pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1c65497b dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x1c6aa994 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x1c6f4401 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c9326ca device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1c9383a0 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x1c97aa9b l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1c9adba8 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x1c9fc736 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca3adf9 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1ca517b6 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1cb186e0 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd03629 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x1cf3f99c acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x1d0ae376 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x1d107873 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x1d1613f3 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d28039b xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x1d3925b0 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1d3aee42 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x1d43127e __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x1d432c2f devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x1d43a6de fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x1d6546f4 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d696a04 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7cab72 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x1d7f4dbd clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1d886b13 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x1d89d61a hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9988ff kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1d9ab033 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1da6d2b2 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x1da9e10b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x1dab8722 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1db56ea2 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x1db98009 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1dc21421 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1dd9aa8a devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1de3d388 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x1df9d5cb irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0e50ae fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1e3ada94 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e44169c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1e4711c8 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x1e4e4717 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e532bed ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1e542e58 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x1e55d569 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x1e680c23 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1e72dff7 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7c7fa2 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1e8144cf ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e8af88a pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9046fe __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eb4c03c fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x1eb7c825 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebaf11e pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x1ebbd443 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec32190 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1ed4c167 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1edc4463 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1eef9395 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1ef1952c bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1effda47 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f19d1c1 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5be62a fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1f6464cb usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f6dcec0 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1f7857cd clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x1f796958 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8a1cc0 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa01c69 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1fa062a1 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa3ca15 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fc3fb53 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1fc5eeb9 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x1fc82d4b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x1fca4c3f dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1fd731ce thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1fdb2501 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1fdc44c3 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1fe64c1d pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff93d35 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1ffcb047 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2001074a usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x201ceccb dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x201ea310 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x204b52a9 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x204f506d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x205b2582 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x2063043f gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x20658dd1 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20b30e4d meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x20c514a4 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x20cee131 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20dba49c blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x20dccfc9 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x20e54982 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x20f091ca usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fd6d04 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x2105e6bd ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x210a83ad ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x2112a24d pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x21187fbd uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x2133d331 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x21495d2c dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2159f9e6 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x216df332 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x216ea2f5 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2182e393 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x21833297 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2186c031 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x218c3376 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2192894c regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x21995cff vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b05a61 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21ca2761 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21ddf2f8 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x21e5c019 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x21e857c1 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x21e9299d devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x21f556df iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221d6d9a xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22458588 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x2251b01d iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x22561092 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x2257c1ca wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x227e7e90 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x229770fa sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x22a0cc18 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e8ed17 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22eeacb8 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x22f149f7 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x23100fe6 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x23112c41 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x233a96e9 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2349641e serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235f40e6 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x2364f5b4 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x236fce9a usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2381dda2 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239674da ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a3ae17 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x23a3d84f clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x23a7eaaf wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x23b25175 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x23bb25d6 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x23c0b09c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x23d7a665 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x23d92a25 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x23f00350 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x23f82ec3 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x243838d9 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x24455d4b imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x244d6b2b irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x24510c3e dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2481bcf7 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24916a52 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x24a627e2 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b01b8d register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x24b325eb addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x24d91bf8 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e0ab8f pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x24e32085 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x24eb03f3 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fb6f50 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2508cb74 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2510dc49 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2534cfd8 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254759ed mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x254c5550 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x2561c2ee dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x2586c645 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25b17840 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25cc184f devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x25db9c6c fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x25f154bf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x25fd6316 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x25fda12d gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x25ff007a ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x26077d68 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x26218216 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2629db5c bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x2638dda1 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26444151 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265e870e nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26835258 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x26995de4 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x269b10ca fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x26a3f247 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab3d17 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c0a242 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x26c0e382 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d0308a dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x26d59179 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x26db452f ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271f4b21 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x27285bc2 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x272d2822 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x273d5780 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x273d8131 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x27453ec1 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x2745a12e meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x2749f9fc nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x275d4e59 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x276f5ba0 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277ab774 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x277e9c26 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x27812f4a led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x2786e213 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x27a1f25a ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x27a900be inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x27b2a537 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x27caa4ac udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x27d6baab __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27e832ea devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2803f759 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x280519c8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2817355d clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281abf57 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x281e09e4 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x281f6fce usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x282c2a9b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282e4d9f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x283ec286 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2846fa8e dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x284a6b6d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x28526b24 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x285ac52a ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x2860a69e devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28695c19 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x286a2480 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x286c8810 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2880b2a0 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x289aa4af ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x289e2edf fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x28a88f32 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28b7c4b9 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x28eb03d5 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x28ee8d82 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x28f1623f rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x28f6da2e mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x291270cd ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291b1642 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x294cc98d of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x294ec317 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295ddb60 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x295f7e44 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x29606978 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2965b576 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x296bb373 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x297ae9dc devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x297c7045 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x2985053f acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x298b29c8 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x29981708 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x29ae777d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x29b486d1 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x29c75413 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x29cd17aa da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x29cef5e1 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x2a18d69a ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a19c2ee sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x2a314485 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x2a357339 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a3f1690 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x2a47db4f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5fe1b8 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a71acb5 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a8b8d88 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2a9e0a2c pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x2aa030c6 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2acc1607 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x2ad2bcc0 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2b01f7e0 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b0dcb79 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b2b6698 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x2b36da2e serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4de2e5 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x2b4e174c dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b62adf7 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b901d40 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9d287d serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x2ba23524 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x2bb12015 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x2bb780fc mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x2bb9a32e nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x2bc982f9 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2bce1650 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2bd73078 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x2be3725b cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x2bf05d1a ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2bf75a63 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2c004caa access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x2c0ca97e pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x2c0ef254 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x2c1d41f8 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c21fb27 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x2c278e0e devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x2c2d0241 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3a770b otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x2c606c57 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6f27b8 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x2c70f897 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c80df60 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c9024df pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c931d96 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c941c41 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x2c97b6ff __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9d30ab sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2cad891c bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x2cae8770 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x2cb1e0b3 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cc771ff __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2ce59fa2 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf2deef pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2cf7276f sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d220e2f phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d60f1dc vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6b5118 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2d6d0071 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2d74638b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x2d7a75ea relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x2d84e4eb power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x2da55b1c xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x2da6f64d of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dbd88ed icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x2dc60091 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2dd086b2 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dd6b9f5 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2df22b29 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x2df2e635 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0c5517 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x2e0fb7af msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x2e138fd0 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x2e19f276 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e29c104 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x2e424990 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2e56e46f usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2e585b15 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e6b41c7 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x2e759561 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e864377 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x2ea97aaa crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x2eb390d6 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebff738 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x2ed52861 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x2ed725b9 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2edc0885 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ee83fc8 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f109e95 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x2f1c742f pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2f9dec dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x2f392569 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f622c11 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f77fc89 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2f7a7c69 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x2f7e518c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x2f81ba81 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2f843473 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f96a69c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f9e6978 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd9e377 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x2fdc34ba metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2fdf2b66 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x2fe98af7 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x3001f71a regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3004b19d bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x301e0bc9 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3023dcc5 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3023f455 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x30240adc iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30264b1e dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x30378bf4 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x3040d9aa device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x30433370 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x304be17e debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x30582ab0 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x305d2671 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306bc3ab ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x3075235b fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x307be1e9 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x30aa828a device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x30b6f84b i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x30d95b3b component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x30e108e4 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30f9155a pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x30fcc503 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313ba0f4 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x31778137 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x3179aa3d dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a7109e kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b09b40 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x31b60110 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31bfa2ac fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x31bfd5aa ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d94b4d sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x320e624b cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x320faee2 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x32199500 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322cf3e8 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x322d8191 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x3232bce5 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x323ad9ba clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3254d82c ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x32661945 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3271d8fb __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x327518dd pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x32769106 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x3291addc gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x32951a0d k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x3295dc23 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32afd1b3 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bec7b1 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x32c1eec8 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d7e428 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3303d084 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x330c782e file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3343a527 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33724652 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x33852619 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x338c7f91 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x3398a897 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x33ad5982 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x33bbce31 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33c3bc2d acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x33c75391 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x33d3cdfb hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x33ddb908 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x33e9200c dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x34136f74 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x342a3610 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34589b4a __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x34654daa usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x3466b114 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x34765e92 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x347d7736 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x348523a1 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x349b9b6b fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34ad8613 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x34aee009 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x34bf0093 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x34bf3e9a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x34d37d15 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x34e9c4d1 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x34ff1285 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x34ff3e4a dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35154b8e spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x35237f4c mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3533415b acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3543b432 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x356227c1 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg +EXPORT_SYMBOL_GPL vmlinux 0x35642980 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x35753b5b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x357603c2 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35a8dcbd class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x35aed645 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x35cc5e27 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35e902f8 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x35f63acb sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x35febd24 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3609d91e da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x36170752 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362855bc rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x36289215 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x3628b127 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x365357c4 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x366781a6 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x366e618c genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x367428d5 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x36862c70 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x36873f85 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x368d5e79 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x36919bf9 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x369b70be skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x369f65ee cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5709a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x36c85c58 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x36e12846 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x36e89147 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x36e92c7d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x36ead786 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x36eede97 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x36ef6eee devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x36ef99a2 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x3709c783 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x3735bdb3 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x373c9d6f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x373cac4c of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x37436083 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x3743af6b fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x374aa9c8 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375c5633 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c8a5ee hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x37dd1db8 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37e4348c dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x37e693f3 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37e8e733 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x37eb3ac4 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x37fe380a serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380c352d bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x380c4d42 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3811a61c scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x3818a3ee pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x381c5bf2 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382f6484 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x3830b49f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384aebfb reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x385b9493 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x385c2aa1 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x385f04db kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3866a532 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3869e5b1 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38806852 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x3890ffeb pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x389795c0 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389ec47f pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b2d4d3 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x38ba59cb usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38d73f3c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x38dfed8b meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ebb702 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x38f338ec serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x38ff7872 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3925f09c __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x393874af regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x3943e8f7 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x394afb02 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x395c1558 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3963975a irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x39666f27 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x3972e3bf skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x39795fb2 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3992ee76 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x399d157f pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a3121c dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39abe452 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x39acbfd8 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x39afbd7d devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x39b92fa5 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x39bad72c kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x39c190e2 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39dd5c22 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e057bd handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x39e6eecd acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x39e7517b mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x39f71b62 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a0323f5 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x3a06dce2 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3a092792 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3a0a6853 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x3a1cdcf0 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x3a1dbf4a iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a32d09d genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3a42e91f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x3a43518a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a5cf565 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a6d403f debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3a73c264 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a799e8a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3a873d71 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x3a8aeea0 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab3b62a devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x3ab624f7 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad1a5fa thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x3ad21088 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x3af47414 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3afa9c47 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x3b012fa2 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x3b028a9f device_create +EXPORT_SYMBOL_GPL vmlinux 0x3b09e5d2 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x3b169919 md_run +EXPORT_SYMBOL_GPL vmlinux 0x3b1f5a26 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x3b4a41b1 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5e097a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b64c0aa device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba7771e phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x3bca5f3a mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x3bcdd622 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x3bd4d1de sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be51a9c rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3be6fb72 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf98ecc bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x3bfa1529 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3bfad00d debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3c08b7b5 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c11fd50 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3c145c56 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x3c196966 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c279eb0 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c30da7c fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3c328a32 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x3c3ae1fb skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c47756b crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c65e330 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c8d9162 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x3c996772 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x3c9a8ca4 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x3c9b06a8 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x3caf9108 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x3cb1d647 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3cccb951 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3cce0053 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3ccf303c of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd2f308 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x3cde661d devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cec1421 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x3d021c80 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d284f40 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3d2b6f19 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3d2be936 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3977b0 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5795cb skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x3d593def sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d5dc5a6 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x3d68310e crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3d7a662a espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x3d7bfe83 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8a80b4 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d8afb09 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dad8b8d nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3de19a01 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3de417d4 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e154d31 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3e1ea601 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x3e25f6dc irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e390f61 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x3e487879 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3e4d8f8c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3e69e406 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e708c47 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x3e936ae3 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea89da2 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x3ea94c45 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x3ebcba5b crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x3ebcef95 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x3ec16728 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3ec62b3f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ede9201 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x3ee0179e class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3ee3bb76 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x3eef745d __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef32b97 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ef7c565 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f06349f fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f21218e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f58499a nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3f618a51 virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0x3f693ab9 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3f72ea0c blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f9d10d3 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x3f9ed198 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb5562d fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x3fbc409e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fbf3d54 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3fc12814 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x3fc4401b stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3fcd7aae max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3fd0a5a5 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3fd99587 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x3fdd537a mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x3fde95ea sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3fe2f161 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x3fe35ada query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe95cdc dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff3310c dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x3ff6d845 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x401ebcc2 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x404f9c24 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x4057616a dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4077b3fa gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x40782736 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x40798d66 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x408d0110 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x409043d1 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409fec13 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40e01334 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40e81476 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x40ef3452 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41172521 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412ef06b serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x4140a6e6 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x41429583 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x4142cb0f gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x414722f8 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415bc120 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x416e6d1d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x416f1ba9 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41845789 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x419fe599 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c25702 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x41c2e1fd xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x41c47135 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f170af amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41f612aa usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421d3ded of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x42286a58 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x422b96e3 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x42459df8 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x424bc7b0 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x425968ba thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x425a7bae encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42703041 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x427998f6 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428c60fd tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x428c81d7 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x429b0fea pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x42a78791 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x42b201d4 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x42c2519d pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x42c56926 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f1a90f dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430c5d9a input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4314fa26 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x433fc28a skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x434ef850 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x4352ab0c dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43548351 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x436bbc08 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x436c116a of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437e9a58 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438aa166 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a854fa kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43af41d7 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x43b6d4ad ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x43c489c2 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x43c93385 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x43d0df8b __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x43e2565c mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x43ec0d3b acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x43f22b3a gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fa0f00 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440c5b50 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x440ea666 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44369d33 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x44384e21 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443b7b6a of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x44422da4 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x44425262 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x4445c9ca vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x444aff06 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44620562 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x446e0207 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bdbba4 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x44c18590 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x44cd309e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44dbcf1b fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f92e06 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x45069b19 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450f2fd6 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x450f5516 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x451019bc sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x4517a477 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x451c6b14 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x451db66a tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x45233441 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45395c07 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x4541956a rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x45442355 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x454c009d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x455132fc rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45591eb5 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458fd88a hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a4f26b thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x45b1d611 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x45ca941c blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x45d78d95 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x45df6c50 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x45e0517b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x45f75424 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x45fb94f1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x45ffad2a tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460b1fd1 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x460d6884 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x4613b3be ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4620845d gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x462b5e58 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x46625760 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468bb860 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x46936bf5 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x46a1314a pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46c248d1 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c8a544 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x46e6a8c2 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x46f18295 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47015845 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472f1715 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x47370025 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x474e00f2 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x474f3d7b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x47590424 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x47598349 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4770467e mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x479fa2f6 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47afd141 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x47b1ae0e rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x47c73c40 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x47cf498b da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d427cb ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x47d8df1f netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47fd1f16 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL vmlinux 0x47ffb881 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480ce1af xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4813081e __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x48186ef6 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483ff955 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x48416943 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x4844408a of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x484b1421 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x484fd699 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48606498 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x48619218 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x48620cb5 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x48658fb3 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x48736ece scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x487a5a1d regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x488a63e0 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x488b4af9 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x48a2c572 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a43d2f fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x48ab8f33 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x48b05ef8 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48e13fb5 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x48e815f8 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x48eabca7 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48eb1f84 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x49011c96 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x490f8ea3 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x49118492 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x4914a6ab ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x49173c81 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4918bd16 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4925833a xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x49276169 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x4951f317 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496f5083 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499759e4 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x49998388 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x49a676fa fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x49aab989 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x49b25b62 md_start +EXPORT_SYMBOL_GPL vmlinux 0x49c31239 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x49c49884 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d1ef22 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x49d6ccfa devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x49db8af6 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x49dc6509 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ecb9a6 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x49ed4bc4 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a3aa466 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a430ee8 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4a48f89e debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x4a601e9e devres_get +EXPORT_SYMBOL_GPL vmlinux 0x4a6391b7 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x4a715791 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x4a9562ab ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x4aa5ea4f blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x4ad88cb4 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x4ae2ce34 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x4b023875 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x4b041ae1 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4b140c79 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x4b160994 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b28710a platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x4b2e5cbc acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b3d90d4 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b4a0c51 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5a42bc usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bae427b __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x4bb48e37 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4bb6bded vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x4bc870bb of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcf383c nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4bd0632d i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f206 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4be34429 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4be7a2aa ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x4c01d3cb crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4c01ed25 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x4c0e3441 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x4c12e5bb generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4c13a4f4 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c407313 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c58dd55 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x4c74dccc iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x4c77fe57 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x4c87cf8b iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8e9697 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x4c95550a pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x4cad83c5 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc53173 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4ccd0450 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x4cd2a05a devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4cf10660 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x4cf4be43 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d02a177 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d149082 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x4d18559f ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d55fa95 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x4d5efbc0 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6ddb9f pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x4d71e596 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d83b250 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d8d2531 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4daea16c divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x4db39399 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddf87db acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de920b2 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4de977e5 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x4def31e4 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e0771dc uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x4e104a87 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4e11000a gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4e16f2ab of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e2c9136 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4e39c874 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e46a6da rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e576f3f watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x4e6beb81 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4e6d1b96 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x4e738140 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e911335 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x4e92c92f dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x4e9a3600 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ead623f rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb52936 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed249b5 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x4ed64183 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ee7c2bd device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x4ef23815 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f008397 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f25e9a4 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f3c651e security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4f53e8f0 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x4f5fc1c3 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4f69b787 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f8dca00 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9e3db6 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x4fa2f65b dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x4fb93e95 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x4fc7286e clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x4fca4da7 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x4fd165ca iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4fd5740d of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffcea14 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502e2225 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5030acbd irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5031e5f2 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x503e357c irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x50405671 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x505245ef bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x5055a327 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x506a2519 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x508c9662 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5093fd12 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x50a02843 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x50a5661c handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x50bf3696 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50cc813f crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x50d95988 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51004d61 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x51089ebd pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x510d9351 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x51134e6b acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x511f22d6 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5121dfa6 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x51245631 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x5124c254 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x513059cf tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5133d9c7 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x51600bdb kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x51658030 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x518323d5 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51aafc2b devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51c55f08 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x51cdfdea tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x51cf44eb devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51dadb6d ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x51e3359e __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x51f3859b devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x51fbe6a8 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x520f4931 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522d709d devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x524a2e18 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x52523eb8 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x525a4758 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x525ab384 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5285002f devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x528a4671 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x528bc045 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x52921422 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x52ac05f9 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52ba7b86 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x52c13baf acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52eb5739 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x52f1e36f dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x52feefcc rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5318b739 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x5329d743 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533ba1c2 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x534c3261 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x5357dd86 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5361131d i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x53a0149d tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x53a63e00 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x53a8d98b devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x53bd1889 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c29a50 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x53c80a03 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x53d51cae skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53f912a5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x54035eda kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x54173fee phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c7f60 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x541d1232 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54252d4e mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x54318c8c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x5438124a mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x544847f3 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5457a181 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x546fe02d class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5481209e fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a6b922 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x54aacca6 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x54c65a00 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x54c7dfcb devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x54e895f5 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x54e899ac sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x5507e215 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551bb191 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x551bda83 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x552d14da of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5539752a ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553fc2be devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55423b4a ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5544c2b6 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x554f2a74 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x556776bf virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55827c9a rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x558f4372 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x55a93d84 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x55b28246 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55ca16af ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x55e55ed3 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x55e6540d skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x55eb9d4f dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x560299a7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56155bcc usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x5619c963 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x56211096 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5635d5d1 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x563c659f bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564481d7 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x564494fc proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x56519b40 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x566576f7 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5670671b genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x567ef5c5 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x568b91a2 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x56960aa3 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x56966d07 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x56a3188e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ec2bb6 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x570ab281 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x570d0621 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x570f22b5 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x571a12c2 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x57288c3e dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x572e72c9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x5776483b component_del +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x577b0a79 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579b3961 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x579be3ff pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a01e8c of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x57a1beb9 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x57a29337 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x57c33071 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x57c4370f acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x57ca817b wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d65b7a device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x57d77840 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x57de404d inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x57df7b18 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x57f88d0d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x58021b0c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5803d79e regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5814a402 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x581ab6d8 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584f8862 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x5851b99f input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x5854fd2b regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x5862bd14 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x5865b6c8 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5885dac5 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x58a7c841 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x58b00986 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x58ca7f71 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x58d79dd5 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x58dc2a69 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x5902f5f7 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x59239121 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x59506655 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x595bd22e pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x59608ce1 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x597d9206 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x59836ef4 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59903575 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x59a5f527 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c01838 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c6daa0 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x59dcf93c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59e708f0 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x59ed3d42 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f3477d crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x59f99fb3 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x59fd5095 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x5a0762b5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a0ea12d driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a172ef1 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a330dee hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x5a35fc8d pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5a474d61 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x5a48b051 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a51f912 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x5a637873 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x5a680aad tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8794c3 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x5a8a670e iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x5a8aaa94 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5a8e000e mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a903eb9 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09101 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab183de device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5ab7a217 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x5ab9db68 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5ac5939b ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5ac78a01 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x5ad5ed64 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x5b1a74d0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x5b208b49 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2f13cd dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x5b467bf4 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL vmlinux 0x5b484be2 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x5b48c008 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b49ffb8 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x5b5d821f devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x5b63daa6 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x5b640548 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b95d48f cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x5b9a6281 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x5bab15f1 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x5baf1dc3 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc1c924 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c09c9d9 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c1d7796 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x5c279872 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5c29c7d6 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c3f9d12 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c5e2313 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x5c6ec96e __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x5c80555c inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8c47a5 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5ca10568 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5ca23945 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x5ca90a64 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad84e8 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cadd968 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x5cc99692 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x5cca46b8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5ceef9b0 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x5cffd0b8 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5d018dfd regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x5d060e62 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x5d06b6e7 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5d093b4c mmput +EXPORT_SYMBOL_GPL vmlinux 0x5d0a25a0 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d1a4864 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x5d23da05 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d313e30 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5d5297c5 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5d5823ff spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5d6563e7 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x5d7e8de4 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d876d32 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5d8923ad locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d94ae85 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d94db40 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dad716c stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5db76577 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x5dc1cb90 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x5dcae748 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dda5c8c hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5de440d7 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x5dfdcd1a dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x5e0220bc pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x5e02f760 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1d2439 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x5e41e2d9 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5e463090 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e630e7d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5e702ea0 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x5e70bd85 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x5e7284c1 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e78d097 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7afeb8 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5e84b8d4 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5ea7c3a8 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eaea894 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5eda0563 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x5ede7ba3 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f26936d serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5f2f6405 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5f351d60 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f353041 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x5f565bb4 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5f574eb8 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x5f5781f9 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x5f6e8a91 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f71974f kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x5f71b6b7 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x5f8c0bdb fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x5fa12f6f fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5fa19485 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb44e86 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fd181da wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5fd3f85d skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5fd973c1 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x5ff73fd2 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600e801d platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x600fd16d pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x601f3f68 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x602bdd61 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x603ab5f7 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x603f0ea6 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x60425bd4 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x6064f7cf blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x606cc8c7 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x606d1c29 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x607c20e3 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607dd7d6 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6095d166 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x60963ef6 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b8837a usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x60bc2b71 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60d15be2 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x60d551c1 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f8c540 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fddcf0 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x61213c51 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612fe31f handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x615f2ffe clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x616259d3 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x61720813 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61831b23 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x619467ae __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x61a77dc9 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x61ab9d0f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x61abd47f get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b03225 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x61b38db5 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x61b5a797 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x61ba1aca sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x61ba7989 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x61bffdb2 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c4749c rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x61e30b70 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x61f4a112 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fe18a4 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x620272cf devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62324295 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6238f1dc devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x623cde87 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x623f705c mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x62468d84 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6247af2e ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625b4a92 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x628205f0 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6283fa01 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x629e13b3 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c7f236 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x62db2bc4 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x62e5faae nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x62ea698c nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x62fa183b set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6306e503 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x6309d68b dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x63141350 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6327b53b irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x632dbc29 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x63375a7a ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x6339ce28 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x6348bfd1 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x6349ea13 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x634b66a5 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x634fbf86 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x635632ab transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x636d6d4b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x63786258 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x6392a2b4 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6393bd82 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x639ba7f3 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x63ac91df sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63ec11c9 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x6409d15b stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x64272e56 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x6428b660 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x642d4747 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x64344a60 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x643f5534 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6445d476 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x6447900d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6448074f sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x6450cc51 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6465ed94 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647c711f tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x64817048 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64a1497e devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a69756 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64adf417 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x64b2f0d0 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64bc7ce0 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d43f05 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x64dce06d __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e5184b wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x64eb25e0 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x650de8e1 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x651d0984 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x65473646 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x656593a5 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x656ac066 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x657892e6 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6585e768 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x659d597d dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x65a58695 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x65b146af max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x65b69f78 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65bea0e0 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x65cbbab5 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d83bde perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x65d90afd xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x65d9d35d dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x65dd3eda of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65f209a4 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x65f2e3a2 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x65fc89ad mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x66065ce5 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6609b5c2 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x660f6a5e nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661c0863 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6634194c vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663b4148 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664dc6ab __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66899c86 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x66a1389a icc_put +EXPORT_SYMBOL_GPL vmlinux 0x66a7bd19 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd8d44 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x66d635d2 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67092cad devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x6738782c ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x674d2181 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x6758f1b3 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x675f5599 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x67636579 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x677edec4 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x677fa645 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x67829ce1 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67abea7f devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x67b46d1a pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x67bd603f nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x67d406a0 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x67d518b3 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x67d5fec2 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67ecabf9 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x67f590ed devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x680022aa fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x6801674b fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x680a3ee1 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x681ad9f1 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6830e613 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x683d0017 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x684dd11c acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x685e4e03 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x68642eb6 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x686bbbdc blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x68836e5f rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x6898f317 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68a5ddc2 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x68b16b00 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x68b565dc devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68b5d786 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x68b7ca2d scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x68d326f0 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x68ea04ea ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x690ced50 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69299db7 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6929ae90 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x692c427c soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x69335659 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x694fece1 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x695d86c1 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6967d5c0 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6976b8a1 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x6977ba28 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6994f534 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x699847a7 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x69a2d6f4 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x69a89a88 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d2a714 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x69ddef19 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ed6c0a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69fe4d04 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x6a00b1bc xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x6a03b0ab of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0ee593 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x6a136e1a bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a290ff5 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x6a2f5067 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x6a2f6b76 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6a3f13b6 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x6a412278 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x6a415fe7 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a44dc33 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a6af0b2 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6a6bf25d shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x6a7f20c0 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8ede93 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x6a91354b __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6aa21d8f kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aaad314 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x6aaad37b sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab135d0 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x6abbcb8d virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x6ad4dfc6 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x6ae92ba7 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6aeb1f5e bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x6afc7622 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6b077056 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b11b79c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x6b186e36 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b278678 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b31f75a kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x6b387df6 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b585524 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x6b797380 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6b8a8f86 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x6b8c2fe2 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba9b150 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x6bafd41f scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bb2bb6f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6bbc4f6c pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd59489 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x6bda23c0 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be4af52 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6bf037c9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x6bfb9dcc edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6bfc20e5 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x6c17e307 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2a7039 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x6c31181b scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6c33de97 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c450af9 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6c4a4360 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4e9eb1 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c671b3d xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6c7e7a52 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c96d240 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c9a56f7 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6c9b30fb fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca837a7 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cba915a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6cc39c10 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6cc62029 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x6ccaa9bf tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce82837 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x6cfd2248 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x6cff563a is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6d033c29 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1169be mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6d136991 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x6d13a679 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x6d16f663 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x6d1c8e93 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6d26d3ca pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x6d282449 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d5adf2b ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d794449 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d825818 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x6d8bffd1 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x6d9730af qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x6d9d1ea8 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x6da2f1f4 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x6db2f174 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dcb2ecf regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6dd0bc94 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6df4fb69 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x6df69f7f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x6dff01c7 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x6e06bac2 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0c6be4 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x6e15d6de alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6e24311a __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x6e2c5e96 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e5005b1 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e5cb700 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6e69cc54 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x6e736d10 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7cc286 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8b9f1d mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x6ebb7360 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebf70fd pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x6ec08457 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x6ec50e67 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x6ed4cda3 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ed4f6fd fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x6ed8f324 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efc65d3 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1c14d7 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x6f2014e1 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f2af664 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6f2d14dd trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x6f40881b dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x6f45f063 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6f532fc0 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6f68f73b tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x6f6d8b03 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x6f7911f3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f7f242f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa23b36 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6fa2c222 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6fb1c63f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6fb93025 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x6fba366e nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6fbbaaaa pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x6fc11fbe regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd4478f tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x6fe3b61f regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70058bda dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700cb6c5 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x701058df __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x701a40e3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x7023347f __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x702d1830 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x70304199 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x70314f83 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x70432604 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x704cb1e6 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x704de8ec crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70688850 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7074db1a regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7080a22f devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7080e0e0 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x7095d2b9 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x70a1d1e8 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x70a26399 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x70a3c245 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70b92b11 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x70bd7a97 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70ee54c0 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70fe039e fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710ce05d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x710e9f4d fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x710f270a gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x7117c1e6 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x711800b9 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7130b777 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x71357ba1 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x71592d54 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71879509 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x71898534 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x71992f07 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x719a0a2b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71bd0dc5 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x71bd7b54 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71e0d664 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x71fa9ed0 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x723021b7 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x72360388 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x72420902 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x724762a2 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x72552398 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726a7c77 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x72705b36 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7286cf4c gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x728fb68b elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x729ef6c1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x72a14c87 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x72b127a1 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x72c1fcf5 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x72cdf786 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d2f73e mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x72e2e65f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x72e6288d virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x72e97787 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f021ec usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x72f1588d sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x72ffb1a2 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732cb513 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x73342766 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x73445673 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x734b534c spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7359c445 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x7370203b crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x739dc2a4 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x73a2f6d2 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x73a474a7 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a69701 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x73a734d7 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73da85a7 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x73f977fc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x73fd1949 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x73fff6d5 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x741b36de regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x74224192 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x74330334 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x74358aa6 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x74414c6e ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x74527b93 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x74584d4a __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x74643917 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x74680c6c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x74692f57 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7477ee28 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x747ca637 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7491cd1b ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7492ebb6 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a5dd60 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x74a9eea7 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bbb649 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x74bd3e25 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x74be2f1a bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x74c01730 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x74c15b31 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x74c59574 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74de579a compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74fa4365 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x74fe9ee9 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7501b8aa blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75207bd2 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x752169f4 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7530edfa fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x754ebb1e clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x7550f287 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x7551305b hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL vmlinux 0x7559cde0 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x755c7d28 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x758315bb fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x7587986b synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75a2ae73 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x75b44870 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x75be9cff ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x75c029b6 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d968ee cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ecb611 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x75f04ed9 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x76009080 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x760a3880 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x760b9fdf blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x76119dfc gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x761cc258 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x762e27be pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x7636a91d nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x7646c132 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x764b56dd __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7650485d ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x7656cb1d edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x765bdf00 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7663696f extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76846985 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x768fa80c pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x769dec6a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76a91b53 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x76b99545 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x76bb78c7 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x76bbbebd mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x76c718f6 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76de58db tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f4ef94 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x76fba4be gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x77002acb kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x770c9664 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771386f0 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x771a0410 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7723f58f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772d0113 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x7731a8a8 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7738b4c7 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x7738d521 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x773c7bfc devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x7741f5c3 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775ef189 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x77662d5b __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7769217f xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7775203d ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x778612d1 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x77912649 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c7a7e9 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x77d62606 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x77e57032 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77eb0c97 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f5ce89 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x77f9104e ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x784b4cf6 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x78506f54 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786b2a97 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x786daa3a phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x786fe958 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7888eeef edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78937f24 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x78964dd9 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a5ae2f platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x78a9acd1 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x78abac74 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x78bf33dc relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x78c772c9 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x78cd58dc dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x78cfff51 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x78d9a361 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x78dd460a dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e983f0 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x78ea2f67 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x78f4088f rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x78fc0f7a mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x790d38bc serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x790e71b1 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791a0e8f platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x791d0b9e iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x791e276f debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x79264017 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7928b227 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x792a4dca devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x792c53d5 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x793174af regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7932505d serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x793c6fbf blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x79481c89 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79533427 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x797ed2a1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7997bb8e power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x79b06b12 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x79b7b5eb kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79bd13bc xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x79c8d71b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x79da1078 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fbbb49 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x79fd2da7 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x7a22c809 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x7a29e6d6 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7a32beec regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a374c23 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a3ac08d devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a672569 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7cf29f crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8f4b5b rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9645d9 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7ab7b552 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7ad42bad ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7ade263f gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b0520d9 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x7b121b2b devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op +EXPORT_SYMBOL_GPL vmlinux 0x7b333dd8 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7b37a2e8 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7b37e13c is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7b3b9e3a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7b414ac9 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x7b45ff53 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b602155 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7c444d extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7b841e33 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b92ef7d uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x7b94f80e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba52186 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bd3ccdb irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bdc62d6 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x7bf54a8c of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7bfdc2cc dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7c002344 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7c0517ed crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7c10776b cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x7c10d303 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x7c1f5b9c rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7c1fe4b7 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7c271ddb crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c300d94 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c40b94c ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c517dca class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x7c52d95c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c6056ec ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c666c87 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x7c7a19e3 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x7c924535 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7c92a86c icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a4700 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9e67e6 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x7ca0d1da hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x7ca55f01 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x7cb10f4e devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7cb74f34 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cca70f4 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd25234 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7cd45bbb device_add +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd90293 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cd9c309 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf69046 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0ff8b4 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7d141a02 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d254030 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x7d363a38 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d38c423 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d5706f8 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5e51b3 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x7d70d156 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x7d713980 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7d745893 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7d7853af serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d7f8102 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x7db1ae12 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7dc5dcf0 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de131c9 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x7de23fbd register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7de9aed7 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7dec432a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7e238d7c regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x7e2640cd pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e678fb4 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7e6a8cc8 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e7133d8 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7e7470aa switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7b60ea gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7ea416da acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec72419 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eeaf842 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x7f0bcd03 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7f0fe993 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x7f103a45 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x7f10b9f1 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7f14e82d devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x7f1ddf70 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f49a0fa usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7f5e1b2d kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f739d75 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8aeb71 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fb3bcf7 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fb7f265 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7fd5169b acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fd5600f iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fe3f26d of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x7fe5f49c relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7feff484 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7ff06bdb dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ff90437 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7ff99662 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x8020b7e3 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x80350623 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x803e782d gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x80420df8 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x804335ba file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x8048ba58 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x805258f1 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x8067529e gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x806e3d2c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808fe339 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x80a2abd3 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x80b6efd5 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f64f69 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x80f6f2eb policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x81035626 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811ffec1 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x8134519b uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x813d06da devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x814312c4 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816e4186 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x817efcc4 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81877b4b dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x819530b8 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a453e7 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81ad9f54 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b069dd pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x81be9a47 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x81c80e82 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x81ded391 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x81ef9be2 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x82104c7d pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x82165d95 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x821c6555 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8223e5d1 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8227cfbb __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x8239713b pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8245a254 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x827add29 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x827c08b1 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828000c4 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x8280dd50 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829a92af ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82ac9b55 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x82bba29a housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c31d55 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x82ce3206 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x82cf3bd8 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x82cf6e03 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x82d003cd rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x831a954f tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x8323d4cd xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x832e38a5 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x8334bc01 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b645f vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ff60e start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8358050c validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x83687e3e __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x8376d017 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x839b00c9 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x839bc2fc init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x83a0319a rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x83a4d391 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x83b441de __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x83b53272 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x83bc721d uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x83c41a76 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x83dcad5b int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x83e4e4b9 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x83f4f623 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x83fa20a4 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x83fd3fd8 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x83ff26b4 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x84076ae1 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841bc76f pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x84294c53 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x842c9c35 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x842cb213 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x842f9b1e spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8443dad2 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x8445dd7f list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x8449eeff __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x846652b4 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x84690b3b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x846b7788 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8489c132 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x8493558b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x84938d73 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x84956ced tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x849a937b usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84acef8a crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x84b70ddd dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x84bb8d32 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x84d9828d dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f4d062 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x84f80d77 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x84fa41a3 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x85062300 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851a3ff0 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x853b053d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x853d1720 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x853e7293 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8556eb39 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8562467d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x85790009 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8586fbd2 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x858e3712 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8590eb28 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85cd28e7 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x85cf6082 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x85d61b9c gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x85dbdaee devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x85e1fc7e devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x85e33db5 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85e4805e inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f1f1b1 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x8610120f netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x86134cec ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x8614662d stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862878b6 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862f7ab7 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x8637a2de fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8639d360 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x863bff36 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x863d119e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865d0f3d i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868a8ca2 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x869e8c28 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b1fcd2 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x86bbaace dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86edf618 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86ff5d2c meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x87049858 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x8709d9b0 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x870f8fa1 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x8735a223 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8747abee dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8753aa43 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x875b6b1c mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x87722a78 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8773ba70 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x87756f47 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x878af0c8 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x878da7fa thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87a06dc7 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x87a19fea to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x87af1e56 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x87bdeb7c mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x87be5684 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x87cb59f2 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x87cde40b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87f5bc45 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x87fe7865 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x8803a9fe blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x8816cc90 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x881d767c crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x8826238d platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x882a0d9e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x8839fc9b copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x883f391d dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8865af79 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x886958b8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x887b559d wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88986ffa xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x88a2d124 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b1298a sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b583b3 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x88b9ebf7 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88d7af1e sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x88ee0303 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x88f3cfd6 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8901de42 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x890427f3 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8921e58e regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89316900 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x89321924 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x8946c6d0 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x895ced13 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x895d3efb dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x89646b47 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x897b2759 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x8988c63f iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x898caa11 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b09046 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x89b15225 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x89b3d51a devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x89b61941 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x89b806e6 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x89bb6587 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bf8ac0 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x89c0bedf pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x89c37272 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89c87e8e amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x89c8a039 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x89c946af usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x89cbdfc8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x89d134f5 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x89d4d512 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x89dfd1fc sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e3dae8 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x89ee7ff0 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x89f7873b clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a04f7ec led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x8a058add of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8a05ed41 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a0fb553 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a105e4f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8a1205aa md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x8a20ad1f dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a29e525 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4cb679 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a55c1dd regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8a55f332 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x8a58fcd4 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a61516d cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6bee0e acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x8a76592e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8e6f4d fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x8ab3413e udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x8ab6cafa hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x8ab723bb vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ab96966 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac0c6cb md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x8ac2d670 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x8ad77547 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x8adbad96 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x8ae02f66 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8aecdfcb of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8afecc1d arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x8b10e91f kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1b1d28 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x8b2cd0c6 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8b391445 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8b4b387d bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x8b5839f7 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8b604529 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x8b64171b tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x8b64b92f k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b9111dd of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x8b9574ad devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8b99449d vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bb6c939 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x8bd9011a of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x8bda20b7 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x8bf47239 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bfdfd5f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x8c013de2 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c10ed97 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x8c1d8202 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x8c21e544 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8c283a73 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x8c3d81c6 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x8c425b6e efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x8c459d9f __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4e5f85 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x8c5c5714 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x8c634dd9 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x8c6ccc4e crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7f5a5c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8dfa77 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8cb3e109 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cb6510e unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8cc0a455 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x8cc191ff dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x8ccfd7de nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x8cdb00ca generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cfb486f dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8d085ff8 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d4262e7 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x8d47a326 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8d5e5b7b net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8d72b15b bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8012ab __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d8a393b of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x8d8e546f regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x8d9c53a4 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbe2bfc acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8deca910 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8df25c0b led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x8dfd01c5 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8dffd1ab __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8e03ae15 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e2412d7 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8e24d1af cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x8e28df16 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e31f930 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x8e3f2dbd irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4c8fe2 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e5e82d4 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8e62c64a espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x8e62de68 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e74ee2a synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e9275fc devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e93f49d __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ed61ac2 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8ed62f58 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x8ee21606 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef6f549 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8efda991 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8effb7b3 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1120ca serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x8f12bdc0 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x8f160197 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x8f2b9f49 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x8f2c3663 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f2f3a71 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate +EXPORT_SYMBOL_GPL vmlinux 0x8f3a6d1d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x8f3f9428 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8f4c75e1 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x8f4edd83 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x8f6b18bb perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6f8bbe serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x8f76bbdc dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f85c4b2 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8f8a68b1 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x8f9533b7 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb79831 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x8fbe6d15 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc28796 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x8fc4a230 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffc638e skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x900730c2 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x9009fc8e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x90333dff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x903b02b0 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903c4d25 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x903efd90 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9040b734 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x904ff744 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x9061164c fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x9083fbae gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x908b7ea7 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x9093e4e5 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x90a6b5c5 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90c147d8 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90c86cc4 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x90d017bf ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90e4d80c clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x90e57615 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x90ebda57 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x90f6e183 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x911f0849 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x9125d038 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x912ee637 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x912f09f0 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x9136daa6 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x913d2ac6 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x91512ca4 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x91523969 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x917c57ca tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x9192bea7 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91936d46 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91b3c909 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x91b768c0 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91bec13a cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d3d8c2 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ebd8f8 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141e89 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x922b3294 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x922fa6cf regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x923384df pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x9237dbbe regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9245bf16 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x92475ef3 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924d2795 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x9273f3d1 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x929fa3be pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x92a36bed fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92cd177d thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d6f844 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92de9f7a fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92fc54c3 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x93115c88 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x931e5672 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93490f52 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x934b84ea dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x93790e4e devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x937f0c3d fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x939a896e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x93a9deb4 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x93aa733b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x93c54862 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cdfd8b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x93cec94a vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x93cf381f pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93e6b9b8 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x93f57cbf clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x93fbc183 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x940d8210 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9428360b ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9432ab37 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94465507 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9478fa02 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x947e172c acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x9488e677 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x94908be7 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x9491e4bd devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949e4d65 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94b95edb sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x94c4ab67 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x94d1eb9a virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x94d6c8c5 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95092522 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x95196fee devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x95238ae3 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952802e0 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x952eeb3e tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95602c66 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x95896f4e of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x958de407 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95aab0ac gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95ae9e3f devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x95b8caf8 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bd026c ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x95c4d246 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x95cfc5f7 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x95de3b66 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95e714cf dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f3630f tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9614868b irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x9615a9a6 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x961d6d6d __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x962e2b35 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x963731ea fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x963f5ab3 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9653ea1a ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96616a3d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x96654bb4 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x967211a0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x96860546 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969ef082 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96a330a2 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x96ba0ca9 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x96c13fc0 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96c78b9d rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x96d62841 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x96de5743 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x96f02736 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x96f0f6d8 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x96f97948 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x971021d8 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9715dcef tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x973704ee trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x9737ac57 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x973b1164 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x974fca6f pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97583909 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x976a8b2d usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9788c9df restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x97974c9d blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x97d0b0f3 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x97d0fb73 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x97d2ed7b efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ded1db usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x97f439f0 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x97f921b1 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98358182 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x983d252e gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x9843eff5 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x98444842 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9846bcac irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x984a6b43 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x986736b9 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x986a2971 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x98705ccb nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987bd029 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x9885e17f crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98929fff of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b5776c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x98bf3d8b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x98c1700d hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98d53d53 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x98e7e7e6 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x9900d2a6 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x9910e0cc switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x99139821 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9922cb13 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x9932f161 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x993b8611 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x994f1b47 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x99596199 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995d803f fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x9961f77c anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x998a505e regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999475c7 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x99a66297 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x99ca4faf __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e983e7 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x99ef2231 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0e3dec cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a2db153 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9a471e32 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9a4a604e platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a60db82 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x9a62b7d0 ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x9a7a8eca usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x9a8c5bad extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9a93864e dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x9a949560 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9aa1c474 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x9aac6b63 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x9abebc54 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac82671 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x9ad22c46 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aec1452 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af59708 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x9afe5ca5 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9b076a1d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b10254c balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9b174b02 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x9b2c5fc5 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b69353c subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b818935 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9838cc fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc4c4e4 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd44207 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x9bd64269 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf9d98c devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c065297 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c169da3 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x9c1db92c xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9c3bc2a5 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x9c3be23e auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9c561c9a dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7df84e pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c864aeb spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x9c981355 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cb93162 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9cc4cb11 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd17431 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce73764 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x9cf031dd of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d00621c fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d242503 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9d2dfc46 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d33ab0f gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9d4341ea debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x9d537185 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x9d73ba0c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9d8fedff nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9d910f36 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x9d9981f8 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9dbb5dea wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x9dbfbd5b usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x9df05444 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9dfb9b42 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x9dfd59f4 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x9e07f00b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9e1960ad input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e65bf32 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x9e7788bf dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x9e7d7f94 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x9e8b7e7b ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x9e907198 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x9e907c94 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x9e91e6c2 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9ea3b89d cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9eb21c06 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9eba85d7 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9ec21638 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ecb0951 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed8680d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x9edd00d4 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x9eebd76b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef20a1b devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x9f187d6e set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x9f1a5493 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9f24e40c usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x9f32fdaa xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x9f3a910a skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9f417c7c netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f46ad42 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f4e23f4 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f61a986 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9f7b1cb6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x9f8305d4 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x9f87f5fc pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x9f9a2775 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x9fa206a9 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x9fa6da30 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x9fb83508 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce0429 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd30423 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x9fd4acb0 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x9fde1a26 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x9fe77353 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa00b0ee0 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xa00e7f5a kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xa00f6e3e virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01c0fb0 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xa02062dd __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa03a77fc crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xa045eed6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0769e7a pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xa07aa826 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa089a8ca trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xa08f9fba pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xa095c8a4 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa0a4cc71 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa0b9d038 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa0bcf526 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa0ccf80c mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d62cd3 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xa0dfc5da to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa0f796eb inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa10f51b1 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa118edd8 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xa1253b3d ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa146dc35 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xa14e7efb devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15faeaa init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xa163ecf8 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa1844c36 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xa18c4edf blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xa1906950 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa198b42a divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xa1a6119c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa1adb30e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa1af8464 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xa1be0797 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xa1c390a9 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1c46c1f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa1d477fd tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ddaa7c debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa207b878 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2305073 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa28925f8 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xa29d3a80 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2afc780 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c9759f virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e752e7 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa2f0f732 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2fbd42c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa333f529 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa335da03 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xa33cf496 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa3593557 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa372142c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa39ebfb2 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b1fad2 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c46bd9 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3dface5 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa3e14add irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa3ea69e1 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa4007ec1 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa406605b ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa418fc93 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xa4279a84 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xa43c567d led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45b05b7 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa466bb3f pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa46864de edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xa473daf4 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa47b48e9 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b12114 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4d196f1 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xa4de85b5 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa4e48a97 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa4e6bee9 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4fa0a01 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xa5115ee3 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa51d9020 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53950d9 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xa54c54b8 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xa559da9e mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xa56ceb21 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa5730f64 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa58db2c0 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xa5a11cb6 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xa5a22f99 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5db0ebc regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa5deb4af devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa5e8274a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa5ee63f2 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f7d116 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6046d27 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xa61075fc led_put +EXPORT_SYMBOL_GPL vmlinux 0xa6220614 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa64051d4 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xa64bffd3 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xa64ee7bc open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa66cd5c5 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xa66cdd08 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa6709c0c wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa675294f ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa679de0e tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xa67c5976 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa6860f46 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xa689c822 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa6940815 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a10f37 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b0403c fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b55026 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6c29eca device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xa6c82955 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xa6cc16b0 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa6d1f12f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e7de14 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xa6e9df00 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6f0e752 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xa6ffdafa wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa706a8b1 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa707229c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa717dad6 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xa728ff02 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73dd497 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xa741a6d9 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xa759a06e pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xa760513d sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xa77d2335 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78a3b40 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa791c388 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa7b42ba6 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xa7b741ef add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xa7b990a2 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7dfc943 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xa7e078cf devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xa7ea0020 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xa800218f set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa802ea2c led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xa805946d hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xa8070884 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xa81222cb devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8133731 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xa81616fd clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xa82622c6 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xa82e2a3e platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa833de7c devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xa8424999 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa8431d09 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa84dc8fb dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa859da01 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa85c8134 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xa86434c3 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xa866f399 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xa86a307b sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa86fc276 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xa881a481 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa89a765f clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8b19aaa crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa8b25eab crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xa8b72cc1 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xa8f9fcd0 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa90b60da ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa90c4270 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xa9238c89 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xa928c220 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa92a5a24 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93c0d3f irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xa93f6823 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa94d98e0 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xa959bc34 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa96b49f4 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa975a0ff dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xa97a09ae of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xa981ead9 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa995f9d8 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a21617 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa9cd47df get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xa9dad6ad power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9fa5914 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xaa03e7a4 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xaa2094e3 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa301223 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xaa365fb8 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xaa392423 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xaa48f9ba pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xaa528d50 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa64821e hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL vmlinux 0xaa689f4c ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7294e6 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xaa78bd37 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0xaa8ba1b0 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0xaa8d7aaa gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xaa91af6a cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa9500a1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa964a5d usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaab515e seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xaabcaf4a xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xaad68191 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xaadc6751 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaaec1706 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xaaedf2be ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xaaf492eb ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xaaf5455c rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xab008737 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab183a6e regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xab19cd8d debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab21c6db mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xab2b4f23 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xab2e0424 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xab4363ed devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xab473c7f shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xab59a39c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xab5b5188 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xab657e4c pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xab7ad282 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab83a8d7 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb3f6ff irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xabb4163a switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabe940d7 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xabf24ddd crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xac1bd806 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xac2183be shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xac38d658 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xac3aa3bf md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xac3c35d3 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xac60f078 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xac77ac5b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xac9020cc __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac99512b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xaca8d071 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc21e09 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xacc9741c kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd3841d imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xacdc14b1 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xacead443 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xacf05d70 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xacf1300f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xacf6b623 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xad06a9e6 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xad0703ed driver_find +EXPORT_SYMBOL_GPL vmlinux 0xad0abcd1 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad2817cb sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xad3401d0 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad535822 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5c4370 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xad62bf9f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad675d63 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad9c6c2f power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadcc7c75 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xaddaa489 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xadef20e3 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xadf1dd78 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xae05b33c pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xae0e5f6e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xae0eb8c4 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1aed81 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xae21b393 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xae25de87 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xae272750 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xae395733 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae5d6012 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xae5fcae4 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xae616240 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7780c0 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8b7aea ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xae8dc530 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xae8e6947 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xae8f02f9 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xae9d50c7 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xaed3556b genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xaedd5832 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xaef2712a device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0aa62c regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf0bac24 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xaf0cc2f2 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xaf0eb011 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf44e9ba register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaf471c55 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xaf50679a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xaf6b8b05 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf6f2fe2 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7fb388 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf85c1b8 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xafa24396 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xafacbb19 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb568a3 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xafc4598f kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafdf70d5 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xafe9d654 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xafea5902 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff31e1a pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xaff40442 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb01c95dd tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xb025012e devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03693c5 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xb03bacb6 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xb03eb227 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xb047a692 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb05cfb2e led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xb06304ae __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb078bb0f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xb079c3ff udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb08a5612 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb09ffb7c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xb0a85b8e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0adf0ef devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb0b33d17 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0beff61 device_move +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d3f4aa fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xb0daec7b __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0f7c34f platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10f26b3 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1234d0c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xb146493e crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xb1469de6 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xb1522a71 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xb152a12b filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16a570f icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb16e4f81 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb1783706 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1845de5 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb1904b51 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xb1b2287d dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xb1b490e0 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1b65867 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb1bae3a7 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c191fd device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xb1c528c4 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xb1cc9a49 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb1d5778d gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb1d88dbd spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22f20ea pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb25255f8 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2652dd5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb26999ff gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xb269b5fd class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27099fe __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xb28a49d9 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb290fe05 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29c41a8 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c72544 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xb2c72ab1 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb2d222ba acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xb2e4fbb8 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2eac88c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb309cbf7 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xb30c7813 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xb31c6b66 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb357422f devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb372b18a gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xb3783437 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xb3853612 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb3875048 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb387724a regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb39bc112 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xb3a759d0 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xb3c31e69 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xb3cd19fe pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xb3ec4772 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb42f8c79 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xb42fbd95 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb433bdd8 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb43fe4ff acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb443e9a1 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb44f8a18 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xb461d1b3 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb479e676 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xb480ea77 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb4854576 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xb488c90d is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c4bd8d nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb4c7d50d devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xb4d1f406 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ee0929 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xb4f084db component_add +EXPORT_SYMBOL_GPL vmlinux 0xb4f6e9a2 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50420eb fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xb504d3f8 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb51a656a gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5207813 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb527cd45 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb530256a of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb55f1981 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xb5651bf3 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xb5768f16 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb577aefa dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb57841ae acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb57bce9c crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb589ad92 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xb5980600 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5bb198c __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xb5bf1392 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xb5ec458d of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb5f53562 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb5fbb012 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xb61ea713 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6390975 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64113f9 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb655223d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb659891f wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb65db9bc bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xb65dc9ad mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xb66845d2 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6765e41 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xb677a5ca elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6a039a1 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xb6a3d066 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xb6a40a47 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6a44b66 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xb6aa8e96 user_read +EXPORT_SYMBOL_GPL vmlinux 0xb6ccbfac usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb6e2e21c pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f984b7 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xb6fac36b ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xb70e7f81 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb70ebd46 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xb71bd3f3 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7343879 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xb736a49d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb74209a8 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb7497d49 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb749abc2 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb7543d50 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb767dc0c rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c2904e tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7ce2a17 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb7d37d23 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xb7e35fe4 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb7ec53c0 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fe7613 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb82e9e64 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xb831098c divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb83fe5c2 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84bc1f7 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb84cd482 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb863fca9 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb87a9b30 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88e6dcc netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b824af of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8bab50a free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8c70d6a tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xb8c8797a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ceedab fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xb8e0333b ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8fbb506 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xb90ca3d8 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb910e530 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9140701 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb91cd6e0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xb92b8f45 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xb9381ea1 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb944378b blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb9567eb1 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb971d0a9 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98990c0 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb998a74d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb9b83c09 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bfb2a8 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c65dca sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d87f10 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xb9ecbf84 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb9f8e33a kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xba0124b4 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xba029dc5 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0a25bf fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3083f6 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xba36b1fe da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xba3f9ff0 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xba418991 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xba419095 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xba4cdb26 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xba5130f3 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xba52363e phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xba66eb45 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xba67e1b1 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xba692f46 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xba6fb781 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xba79bd79 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xba848b3b gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbaa74052 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xbaabe890 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacb82ea reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xbad44152 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xbadd63e3 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbae9e2f2 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf81cb1 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xbb0aabdb crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb255b24 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb3c167c inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xbb582aa3 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xbb5ea598 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xbb604ab2 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb8af855 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9fb092 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xbba223dd of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xbbafe7bf irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbc8a1ae pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xbbd215f9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xbbe0954f regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf22bed pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc03a034 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc104723 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xbc1596d5 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xbc26cc58 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbc2e2be5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc5483a2 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xbc57991e pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7631f3 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xbc82f87c pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc957b4f devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xbc9a5b2d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbc9d936a pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbc9faec6 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbcb6c3ab dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcba881d da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcbb6285 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc2844b cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd601d3 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdef5c6 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd04a8a0 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xbd1a51dd pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xbd3a1ae6 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xbd3a5d8f acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd40f550 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xbd40fa60 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xbd4476cb cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd5a064c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xbd635795 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xbd6b2ce7 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbda8d2cd ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xbdabafc3 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdb977c3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xbdc0cbea fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xbdc302f9 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xbdc446e8 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xbdca109a usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xbdd343d2 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xbddc80cb irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xbdddbf74 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xbde1a201 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xbe04f113 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbe059e7b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xbe0d9c18 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xbe13fa1d fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xbe336974 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xbe346731 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xbe3aa2a4 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xbe430157 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xbe4724cc iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put +EXPORT_SYMBOL_GPL vmlinux 0xbe7c8d07 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe8ca6f7 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xbe8d2210 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xbe9209d9 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea82908 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xbeadc402 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xbeade0a3 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xbec42b9b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbececbf8 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xbee10fb3 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xbee721d3 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xbef1b72c devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xbef4e992 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf085d02 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xbf1ff99f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf298fd3 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xbf2bc64e dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xbf377b30 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xbf3d84a4 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xbf48d0a6 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xbf552361 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xbf64a953 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xbf69d3f6 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xbf6e8c64 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xbf7fe6b3 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf8250e6 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbf842d41 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xbf8e5846 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf8fee7d sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xbfa32b0d kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xbfb0a380 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd4b234 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xbfdc64be __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff453df skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xbff7dcf3 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xbffa29be srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbffe62c4 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xc00f930b iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc014370e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xc0199a05 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc01e5731 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc0287903 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xc0402e7b pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc06e89cf uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xc0796680 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc07d9c7e sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xc0846233 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xc08dcd01 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a00b2b crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b580c1 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc0b6eed6 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xc0b7cfa9 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc0c1a8fe serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xc0c2d08f fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc0da14ee pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10afed8 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xc10e9279 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc10ecc68 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc1169ff1 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc1175716 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc1405c05 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc1461b4d __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc148f873 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xc14f89a3 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xc1657793 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc1711e8d irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18cb95a kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc194f6e1 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xc198eb10 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xc199abb6 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc1a912a4 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc1abee7f of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xc1c384ea __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xc1d490b9 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xc1d5366b dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1f0d901 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1f44078 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xc1f7979b crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc20954f4 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc2215847 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc2297f52 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24710e5 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc2562615 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xc2589cc1 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc265af2d dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26db471 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xc28154d9 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29d3417 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2a9ff5d __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e39cd6 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc2f9ba48 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xc3118eb4 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xc3128200 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xc31b04bd unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xc31c6146 user_update +EXPORT_SYMBOL_GPL vmlinux 0xc32093be led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc329a425 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xc33b6f7c trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xc33c1c6b skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341666f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc348d820 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xc36f3bd6 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc399bec1 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xc3a4ed1e ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xc3addb5f devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xc3b5adc8 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc3c3e87b __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d970f0 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f92c11 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xc3fb9111 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc406ef40 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xc4160f26 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc41ca954 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42d96a3 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xc432f4e8 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4444468 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xc446cef0 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc4693a7e dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47e75e3 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xc48b314c generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc498137d blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc4c1f5bb vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xc4c9092b debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc4ce7010 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc4d2a485 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xc4e29a2c ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc4f01c5e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f8c7aa ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xc505772c usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc5057e68 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5165d6b pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc5169f61 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xc546ae20 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xc547987f mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569ab8d gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56c7330 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc56f9a5f memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5946aef rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5a8abb9 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xc5d9a276 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xc5e4805e bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xc6052e8b pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc60fdca0 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6214beb usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xc62db5c0 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66dcb60 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc67367cc l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc67d1450 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69884c7 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a22c09 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a61bf1 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc6c760e6 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc6cf5b4f bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xc6da3d3d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e09adc psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6f44d06 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70e78bf ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc70f120b security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc71669e6 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xc71e5c54 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc728240c misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xc73f4763 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xc74a8d95 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xc74ea22c mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xc75ddea5 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc7653968 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc771c16f ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc7727ee7 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xc78414eb xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc7914fa0 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7938179 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc79873ae dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xc798d228 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xc79b20e3 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc79d79af spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b91970 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc7baa0e1 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e74fbe pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xc7eb35da bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7ff626b fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xc80ab0b3 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc80bda7e perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xc81dfbd0 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc8220e51 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8318e6a pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc836a320 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc8577e80 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc8669143 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc871b451 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xc877d801 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc8861b51 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc89f5d46 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc8aeeaaf xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xc8c2b833 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc8c3a9c7 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc8d42cca devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc8dc533f __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e25994 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xc8ef1965 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8f41fc7 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92646e9 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93e1963 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94c83b3 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9591fb8 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9655ab5 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xc9664ce8 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xc9667241 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc97bd827 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9828794 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xc98d997a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xc995a46a usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xc9a1d266 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc9c17b92 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xc9c2a4e5 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xc9c9ce96 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xc9df9cda cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xc9e10655 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc9e63096 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca0707cb kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xca08bee8 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xca2ce709 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xca3041df usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xca3e6931 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca46f6ad devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xca5e7ca0 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca837f8a __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xca86da98 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xca9115e0 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xca93ed1a pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9a3e65 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xca9c0728 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xcaab3733 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xcab9f759 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac2bacf crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcac927ea devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xcacc612c inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xcad9591e fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcae4e037 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf5310f rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb18ab89 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xcb18b920 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xcb1f96bc devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3434a1 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcb36ac65 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb6c53a8 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcb76691a of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xcb7a37ce fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb809f9c device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xcb94f434 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xcb96507d usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcbb7e5d2 device_del +EXPORT_SYMBOL_GPL vmlinux 0xcbe35a5d strp_done +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbeacf63 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xcc0e0ba9 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xcc0f4b55 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc163ad3 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcc1b9dba spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xcc1d6499 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xcc27cc2c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xcc2c038a usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2e56f7 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc470a3c inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xcc551d80 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xcc61ceb8 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc843577 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xcc856210 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc876bc2 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc939fa5 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xcc94a73c usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcc9bc59c regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcca10e7f ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xccb44a77 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdab7d5 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xccdef6fb syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0a5220 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xcd1689fa ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xcd231871 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2662e6 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd421b33 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd58a16f tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xcd5d92ba device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcd6149c0 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd723533 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xcd73bfea devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcda8d21a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdc986c0 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd73f05 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xcdd9cdf9 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdeb86ad device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xce0262f3 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce1d23a7 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xce2a8ea6 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xce2efd2e ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce6b3074 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xce6c8432 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xcea3d262 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcebb37bf usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xcedeba15 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef9435f of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcf0017cf pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xcf1da922 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xcf34e7c7 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xcf39a003 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xcf3e3c07 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcf40c092 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xcf47e883 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf4d0b96 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xcf581acc pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xcf65f99a proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xcf79fa24 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf81ce48 put_device +EXPORT_SYMBOL_GPL vmlinux 0xcf8ee796 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0xcfa5cb9c attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfa63dd6 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xcfbb3da3 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xcfc25abd pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfca7f9c rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd4b6fa dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xcfd6355b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xcfe1d4c3 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xcfe3beb7 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd00337b8 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xd00626cc class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd01479da device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd0284008 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd032aea0 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xd037106c thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0459cd9 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd04fb77f usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd057ab98 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xd05935cc dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd093c727 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL vmlinux 0xd096554d __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a1b8f6 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xd0ab0dc2 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd0ac296e iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd0b07066 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd0b1388f dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0b64525 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0df738a devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd0e853a1 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0ebed2a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd0f0fa84 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xd0f7178d dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd100f7dd crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd10310db crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd10b0aa5 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd11a23a6 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd12b669a mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd13b485a dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd184dd34 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd18add23 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xd19cc5f4 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd19effed filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1cb3f50 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd1cb6015 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d3d8e1 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xd1eca965 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xd1ee687d param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd22e2024 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd22ecc6a sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd2384e91 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xd23cd9e6 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xd23e570e inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24e762e pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd2535a69 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd274b4f4 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd29fc8cb clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b91765 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2baa2aa invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xd2bbe4b6 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd2cb6120 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd2d15964 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd30fe192 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd331f989 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd33ada13 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd350087b dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd354a7aa usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xd358aefd regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xd35abf36 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xd35fd0f3 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3af6150 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xd3b0acef pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3ba6c44 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd3bf1cdf virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xd3c283d7 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xd3cb0760 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xd3ce9f7c crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd3d3b08c __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3edaf45 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xd3f0c469 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3ff846b bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4043fc7 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xd40a2572 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xd40b3774 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd41737db tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd41c0151 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43c5485 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd442b313 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd4483332 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45f439d ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4768d4c ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd49a1a04 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd49f6d46 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xd4b076a7 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4ce6cd5 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xd4d00626 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd4d7fe2c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e6df32 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd5055b96 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd5061714 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd51231b4 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xd51c8ef6 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd534945b hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd57d0b36 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xd57f1e9e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd5836c56 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd586d112 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd592a72a net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a9c9e1 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd5b0750a devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xd5c12050 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd5d00b38 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd5d2bce8 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xd5f49332 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd5f74f20 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd60407b4 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xd6049aa3 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xd6094938 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd6185f8a acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd61a5724 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xd63259d4 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xd637156c __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd644859e account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd6461131 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xd64b538f bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd657678e __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd659571a tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xd65b00b3 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd66096e8 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xd6663a0c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6670985 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xd6720c01 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67473ba spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd67afd5e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xd67b7f71 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd68f395f switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xd6910758 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xd6929793 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd69b373f acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xd69b4ce9 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xd6afcde2 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd6be2425 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd6d78232 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6dbf2bc clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6e2e5dd device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd6e62318 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72c0e15 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd731f6d2 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd736f6ba __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74ab563 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd74c8116 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xd75a1282 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76aa079 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77cd46d user_describe +EXPORT_SYMBOL_GPL vmlinux 0xd77da907 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xd792a4d4 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xd79b10eb edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xd7a11898 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd7ae8dfd ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7be5be4 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dc7240 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7de27a6 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd7f8f29d dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xd81440a8 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xd8307890 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85bc31a nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xd86e0017 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd894627e sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xd8d3b649 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8f307ba iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xd8f8786e fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fbe0c9 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9113e86 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd9125a6d ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd913923e dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xd9141cb4 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd91f409d phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9221ae2 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xd92b7cc7 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd92cb52e vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd935994d inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xd9377492 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd958e0c8 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd95cde7d mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9624996 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96e87e6 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd975a538 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd98462b2 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd986967c acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9b3adb5 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9bfaff0 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd9c83123 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xd9d16f60 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xd9d474be wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd9d7c7f4 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xd9d868bd sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xd9da1268 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9f7add7 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda144a95 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xda1ee657 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xda2b0769 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xda2ba20a __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda43486a cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xda61ad37 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xda639cd8 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7c0835 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xda866414 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xda8c4b2c fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda8ed665 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xda8f09cd iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xda91a830 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdad211cc sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xdadf6c49 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xdae7493f blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafa95b7 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xdafea6d3 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb1548df devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdb30977e devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb3e4654 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xdb515e7c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6b19d5 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb889a8f bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb88b75c clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xdb893849 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb92f4e6 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xdb9faee6 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xdbbc7ac4 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xdbd6cb45 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe45fb0 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc01bfd8 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0f071b iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc173b3f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xdc1f034c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xdc41795f ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc5eb3bf kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdc61c9bd dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xdc633ba6 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc676c50 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xdc71dc8f __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xdc7804df sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb01b97 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdcc88f3e ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xdcd10609 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xdce2095b watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xdce24dea devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd08785c pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdd0d1554 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xdd225261 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3fd642 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xdd4201a2 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xdd573e9a powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd630ebb clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xdd668874 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xdd66ccee regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd7a3ec5 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xdd7a68ac scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd843bdf ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd9523cf hisi_format_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xdda2e6e9 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xddb65b81 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc10326 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xddea09ab attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xddedfd49 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf862d7 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xde06c120 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde1256e2 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xde1841eb usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xde1ec704 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xde36ad87 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xde3992b7 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xde52c738 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xde57b48f synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xde617ad8 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xde6a9d11 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xde6e89a7 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde914f69 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9c0972 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xde9c56e3 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xde9f2da4 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xdeb623e6 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xdebbc3ca kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xdecdbf41 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xded5c568 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xded6df98 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xdee0f77c pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xdee14268 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xdeea193a pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdef44176 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf04f93c pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xdf061172 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf17ae1e genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdf266813 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf478d05 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xdf4fdd30 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xdf5011f0 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xdf53ae58 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xdf571fc0 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xdf5bdc73 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0xdf79187b extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xdf7d9bd0 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xdf816ced crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xdf978465 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xdf998539 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xdf9e37f4 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xdfa3086a gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xdfa83e50 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xdfbf7fc6 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfdb91bd kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xdfead874 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xe005f011 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe00875d1 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xe018e4aa usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe0215f10 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xe0299b0f pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03413f6 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xe059648f of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe060c91c ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe0721a18 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xe072c8e7 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xe078f760 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xe080cf89 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xe080e642 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xe0878cd1 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe0a9f534 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b3d46a pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe0c511ab generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe0c532ff irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe0caef25 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0ed0653 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe0ee7a01 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xe1066ed0 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe114ca93 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe126c0e0 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe128425e fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xe12d161c of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xe13870e5 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xe1710fac devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xe175dec0 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18704b1 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xe1873f96 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xe19b8db2 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe19dae08 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1a92e2b spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c5fdde ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1d39861 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xe1e7fb5a __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe1e90755 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe1e95474 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xe1f294a5 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xe1f8145f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe230bbe5 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2518e6d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe25227b1 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe264aa04 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xe26daad1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe278baaa handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe279c4da usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xe27d8b97 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2a2e114 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xe2b2e256 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2bd467a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xe2c418ab devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe2ccf8b0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2cf897f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe2d0fe24 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe2f83bd0 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xe2fa4b5b battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xe30e3578 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xe3119c65 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe32e300f create_signature +EXPORT_SYMBOL_GPL vmlinux 0xe32e40e8 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xe3356b9b meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe33d8601 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe34afd71 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xe36122f9 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xe36ef6ad shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xe374ffef ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe37847c0 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe3886e99 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xe388bc63 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe38943a2 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xe38bba93 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xe392ce93 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b375f0 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3be68ca regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xe3bf2d8d pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d310b4 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe3e294c4 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe3e5976d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xe3ecf288 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xe3f702c3 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xe3fcd911 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4336441 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xe4452f24 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe46cac8e input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe49705de crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4999fd4 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xe49df081 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xe4a94c01 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4cd8a00 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe50c7766 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe522720b __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0xe5280660 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe544ef25 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xe54bec95 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe56f47c5 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xe5882be4 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5923bc6 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xe593c2b2 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5b605f3 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c8a2c5 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5f6ea94 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe5f8ab0a edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe5fd116a tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe600f24b __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xe60374d8 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe614e40f da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xe624adef i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6355b3b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe6470eae __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe660d903 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe66bae0a ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6779a37 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xe6823d91 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xe6879c42 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xe687c9e2 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xe68e298e cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xe6c0c3e6 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e51bf5 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xe6e85ee7 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe71003a8 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe7164333 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xe72a3d04 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xe72e85ae __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe73951f3 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe7423961 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe750bc88 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7548e3e sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe755542e crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xe75ea3f2 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe768fe37 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7756b8a devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe7a7b88d pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xe7c75b56 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7db0021 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xe7e30e6e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe802f1e0 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xe8125fe1 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe821b975 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe843132a metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe84ff2f5 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xe8554381 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe872e879 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xe8747d43 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe89f0eb7 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8a7faed devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe8aaaa4c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xe8b39cc9 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe8b407ac devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8dfc33c pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe8e8c1cc relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe8f0e683 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe9030b84 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xe90c0728 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9138ca4 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xe92f41e3 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xe9343a15 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe946bf2b crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe961ec33 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe97e06d0 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xe989ae7f acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xe98afbb2 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe99e5d98 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xe9bdf144 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9e8531b lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xe9e90a57 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9fb61da gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea108ec2 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea25ca0e xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3ed0ed scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea51a400 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xea583c1f usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xea6bc446 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xea8dfb7d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xeaa4ef60 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xeaadff2f blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeace2ef4 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xead932de request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeb1461df inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeb268323 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xeb2bbcde rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xeb3d63fd spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xeb406518 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb447330 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb54a3b0 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xeb6276d9 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeb6908cc rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb85c2d0 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xeb8c331a acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xebaf950f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xebb13345 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xebb1fe22 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebf11290 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xec1038c1 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec18d494 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xec19b361 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec2ba6a9 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xec3fad78 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec43f666 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xec4701c4 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xec49fa5a fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec4ce7b2 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec749d82 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xec753bc4 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec78f710 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xec79e367 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0xec7f3a12 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xec976b94 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xec9d1fe1 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc5165e badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecdd6c81 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xecde47fe firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xecdedb00 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xece956bd blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xecece0f4 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xecf69c2c crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xecf7ac4d __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xed0b9de1 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed45fd3c __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xed67926b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed818f5a kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xed875ad9 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xed8bd6d9 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xed9408af perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xedab28c1 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xedaf98f8 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xedc80a2b led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xedce2c93 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf847fb get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xedfe0261 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xee049519 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xee0bb572 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee25b533 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee51b1cf of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xee6a2622 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee79a9fb devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xeea14a7d rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xeea1ab8e ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xeeb49bc1 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed49cd2 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xeed5a040 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee4e6e8 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xeee82210 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2a6278 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef35f976 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xef3c8699 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4e116e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xef500ba3 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6bb5f6 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef7a5232 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9bfb1b devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xef9d80f6 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa432b8 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xefa66938 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xefa6bc39 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xefab2b32 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xefba1661 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xefc07db9 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xefc0b16b ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xefd08850 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xefd95005 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xefdcf4d3 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xefe177cc ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xf00a45ab phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf01007b0 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf01db54c trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xf0274dd8 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xf02be065 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xf03311e0 __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf03ece69 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf049877e securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf04ff532 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xf0512cb8 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf0549858 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0629e3b tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf074995e nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf07a8e1f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0876f45 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xf08d8d4b phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09ca27e dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0bc7f72 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf0bf27e0 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xf0c96ea6 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0db5e94 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf0e35186 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf0e625ac device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xf0ef2f9f sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0efba61 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf10eddb6 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xf11002b7 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf1229c2c devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf126d9b7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xf12be0c3 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xf144a8e7 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf144e397 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xf155c879 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf16dbb77 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf17252c8 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf1747c14 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xf177b8fc udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf194cd59 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xf1beb00e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf1d1edd3 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf1d9bba6 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf1f1c0d0 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xf1f1c15e pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xf1f2f5e3 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf1f77c41 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1fe498c pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xf203fd16 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf20626cd cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xf20d2d9d sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf21a29db dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf21e6907 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf224d10f rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xf229a087 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf232c906 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf23b2e54 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf24f4759 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf268d948 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28bfbd9 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf290cc74 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29f9c8f devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf2ab9d61 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b8f9f1 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xf2ec15e7 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf2f26637 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf308cafb efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311036c pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31d56c0 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xf3219c03 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf335d40f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf3395b58 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xf339dfa5 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xf34fd80c __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf36a83e4 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf36fa9b6 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf370d1b8 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37b957f lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xf3919f93 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xf393205e pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xf3aa0ddc subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf3afcf8f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c57745 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf3e88b98 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xf3f9725b vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xf414cc4a bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xf43b1a35 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf4405291 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xf445ef8e regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf447a064 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xf450581b kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xf462c509 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46a7d03 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47f3535 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xf4891711 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf494505e pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4ad1495 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b36621 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4b4e22e strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xf4ba9f8a virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf4bc018c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4df4220 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4e9f6d6 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xf4f8a468 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf4feda34 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf50b9c2d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xf5176d81 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xf51e9e08 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xf53ef219 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf54355b2 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf5489d43 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54f9030 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55577a4 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf56e5f65 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xf56f0fb7 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xf583aa21 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf591787b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5aa2366 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5b7f024 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf5b848ec tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xf5c39124 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xf5d447a6 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf5da0b50 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5eeb50e balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf6035230 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf611853e devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf61cc756 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xf61dbbb3 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf6211adc devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf6471f7d smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf64e1ae2 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xf65b81a3 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6763d86 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf684136b devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a38193 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xf6b0281e k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c0f376 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xf6c7051a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f20bfa mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xf706381a usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf70e9007 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xf70f7f89 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf72327a4 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xf72345cb perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf73e9e23 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf7547f75 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xf75d416e pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xf75ef0b6 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf75f6973 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf762e22b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7a0eb37 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xf7a281e3 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf7af2149 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0xf7af5347 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b52b01 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xf7bacfd4 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d1ddff bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xf7d3d8ae ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7fc7d7c perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xf8033c72 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xf8184a74 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf81b63f7 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf82cda08 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8492860 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85eafe4 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xf85fa640 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xf860fc9f regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf86d5eca i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf88ba45d lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xf88cdfae fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xf893f010 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xf8a0a326 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf8a82e73 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf8ad76ea dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0xf8c26393 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xf8cb4083 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xf8e2c001 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf8e3ce91 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf8e8c882 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf8ecd7d6 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf8f04c33 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf90b3adf scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf917614e of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xf91e28c4 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xf922a194 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95c77b1 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xf967133c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf97aa48a ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xf97bb996 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf97be887 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xf97ccdc8 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xf988a525 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf9985be7 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9c418c8 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf9cafa45 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xf9d583a2 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xf9d7728e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xf9dd3e4e sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf9e73901 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xfa15dcde acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xfa1a1e78 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa298be3 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa2ff795 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa3f3b88 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xfa4a613f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xfa59daee acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa7b1a43 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xfa7e972f kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xfa82cd75 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xfa89ce8f devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfaa070a7 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab5d5a2 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xfac18ecd regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfad4f5bf sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xfad8a075 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfada969a iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfaee7cf9 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xfafa04e7 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xfafd6d35 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xfb114b55 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xfb1ec076 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xfb2f86aa regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb361120 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xfb52cebb devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xfb59a69e kill_device +EXPORT_SYMBOL_GPL vmlinux 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb711011 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xfb7dc9d5 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xfb84cd16 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfb9aae2d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfbaa6800 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xfbaea6a0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xfbb0e12a call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xfbb8c1cc dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbdc28b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xfbce8141 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xfbe1be9f blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xfbe34d25 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfbee1a53 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf4b99b gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xfbf87b8d led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xfbfa5a43 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc09d962 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xfc0a7fd0 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xfc0c0b75 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xfc0c21f3 of_css +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc19f874 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc3bfba1 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xfc400d5f pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xfc4e76da trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xfc4f319d vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xfc65cf56 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc6b1e9e driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xfc7aa787 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfc7fd91b crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xfc82c6c8 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfc83238a watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfc87691d tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xfc87ffdc __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xfc928019 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfca4a9a3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfcbbcea8 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc4aee8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfccb2221 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xfcdd2396 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xfcddb4e6 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xfcde3d57 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xfce2eb41 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xfce596ed devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd00e8c7 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd1fefb3 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xfd2a4132 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xfd2f967a crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfd411654 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xfd56d0e0 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xfd703c73 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7def61 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xfd9da433 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xfda653ca devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfdb49e02 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xfdb92d68 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xfdbc8dbe clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdd79b80 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xfde058ca component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfde1d0de tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdee6d81 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe05eaa3 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xfe0b2941 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe20ebad xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xfe23b841 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xfe25fcea lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3e15ea adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe466e89 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4a043c __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xfe4cc97c tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfe4cf844 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe6400d1 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xfe7c1b07 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb52914 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfebafb7e hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfec10c92 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee02c9f __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xfee192b8 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xfeeb2f57 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfefaf1b4 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff431c32 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xff437ea5 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xff536ae9 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0xff53cf8d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xff57cc0a devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xff6323c6 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xff6be285 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xff6be3b3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xff6c5151 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xff7df99a nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff82d42b device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xff883353 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xff9be341 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xff9f73f2 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xffa73f36 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbd8100 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xffd3c8a9 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xffdc2ca7 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xffde1d85 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xffee5a57 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xfff6fcce eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xfffa4f24 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xfffe5d49 of_pci_dma_range_parser_init +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IIO_HID EXPORT_SYMBOL 0x16e49b1b hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4213b7a0 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4fbfc84a hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5a9399a8 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9b423335 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa16754a8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa9054fb1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xaf3cb2c8 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb4ae303d hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xca4ab460 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe2d2c06b hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe4f3633f hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0f3d1315 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3c70dbb9 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd0b758e0 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdd23591e hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x8c871468 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x9579ae8f ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x061c6846 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x169a1582 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1950966f mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2fe30926 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x438d914b __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4b895200 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5f245cfb mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6cf46fbe mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8c1d0a3f chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd2c5f978 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd2e31d6a mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd3863d94 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd609ad2a mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe9887038 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x33566759 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3d13d388 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6ef903e0 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa2dff877 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb3f63353 nvme_put_ns drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x0bbb4c9d pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1ea13d43 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1fba71c3 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2612229c pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x38ca6a79 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4373cec4 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x503a195b pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6546e3d6 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x73bec600 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c785c35 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7eeb2df3 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x80acf7d8 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8797b85d pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8f03f720 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa99beb5e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb3b7a9e0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbbf768ef pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbdef26b8 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd99a6867 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xef408122 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x74a073c1 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaf3ec09c sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xb8fddbe7 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xea29b9c8 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +USB_STORAGE EXPORT_SYMBOL_GPL 0x0072ba09 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x039fcf75 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x03a412d1 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0850f9bc usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x13bb0ed8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x201bc0c9 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x26d438fb usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3262e343 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3dbede34 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x595ef768 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5a6d2045 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5f8e712b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x721d56ce usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x82208fe9 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb0b81ab2 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc28c15a7 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc85a0bc1 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdcce4a60 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe1f36c5b usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe41f3e00 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb10eefb usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb3be907 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf0102081 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf09e72ae usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage diff --git a/debian.master/abi/arm64/generic-64k b/debian.master/abi/arm64/generic-64k new file mode 100644 index 00000000000000..cc66a9d6687506 --- /dev/null +++ b/debian.master/abi/arm64/generic-64k @@ -0,0 +1,26277 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0be46cd1 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0f3ef0b4 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x21ab53da crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x14ed716e devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2261db7a cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x42889573 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4659f7dc cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4673a6c8 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x64172e5f cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x64a202ef to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7756219b cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7deed193 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x85495ab5 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x881445d5 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x94b4c1bc cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9da1c39b to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa289c52f to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa8c15be9 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbbb0cd2f devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc8890a0d cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfca15247 is_cxl_nvdimm drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xef9f09d1 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x1c3e6e5b poly1305_init_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x6ddf27bc poly1305_update_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0xf39f5240 poly1305_final_arch +EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order +EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0x6402c8df sha512_block_data_order +EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon +EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x691615c5 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x7ce6ae93 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x81172b4c crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xabef77e9 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xb36e9497 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc4367fb8 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x2c054094 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x625e9aab crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x840be66b crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x095bf311 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x4015f884 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xc75cdd87 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xce86325d crypto_sm3_final +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0x2a44fb5c suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x865a76f2 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xefcf5c71 bcma_core_irq +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd06adba2 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6e374ac9 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x611a6a1c mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03d860bc ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6bb5bf3e ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa4d370fb ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xac40a2a8 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6aaa73c7 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x704f2fe8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9b8f5cdf st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaeef6d1d st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x197af5c8 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x200aa132 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe147be51 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6dd01cb6 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7459cf89 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf3da2d9e xillybus_init_endpoint +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1d04f31a atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6788bce5 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb8fa98a4 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1027ac41 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x3f94f20d caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc89cd4d6 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xf0519dc8 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5e3235d4 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9103d740 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa7eccc71 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe69de299 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe794d57d gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x15b69929 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0xa03ce77b caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x769e7b76 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16dee9d0 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b423a4b fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3eb2204f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x424a0547 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49b5437e fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e780886 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e7862f6 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x761ecc72 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7df287f4 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x81bbaf3f fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8521fea5 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86d81671 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8902c6c6 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x909d5fe7 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb75b46c0 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb985cd4f fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe73c795 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7a243b3 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8937011 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd92e1f0f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdab97ccd fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb90bdc2 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3615930 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2092d41 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf69c8d1e fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9e59c57 fw_card_initialize +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x09808f4b imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa7c1e45f imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xe6192cf9 imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x12a2074a dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x71c5b0bd __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x001c80d8 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0291bc1b drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c98e9a drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02fd5ebe drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x030229a9 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03569c93 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ce340c __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x040df588 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d44590 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0540a902 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054732ec drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b74905 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x061e78e5 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f5343d drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f998e9 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x074283a8 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075dcdfd drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x083ce072 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088d9d8c drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c3187db drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c59e24a drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c6eddf5 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c865e3b drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c89db72 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cbac82d drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ccc8080 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf72b26 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d01e7c6 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0d9d7d drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d279e5c drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d44759c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc84de7 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109b1d14 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109f1827 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1147836b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11db4853 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1270742f drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e638a2 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x153f4885 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c5d371 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163cbddb drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x164d81ed drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1818b054 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1843fb25 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1855628a drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ecb33e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1121f6 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a37f9e9 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1af79d3e drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20139deb drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20f653ff drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2131d273 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217e4649 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229b5077 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d4eb21 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237fe23b drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e854ab drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24570567 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x259c9cd5 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262b9c4a drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2694ca6e drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ac3842 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28995902 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29137818 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2975f545 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a8c51a drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b58f9ba drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4a2ac0 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2d04c1 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d391109 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9ba1ed drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea7968f drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eba3343 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f51e143 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa4ef1b drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb34007 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30307e97 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f17316 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30fc7297 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f166f2 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f61acf drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3248e55b drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d430d2 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35074a14 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x353b2784 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3656f3ed drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3759d540 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a576d5 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386d0d16 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39014164 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39071705 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b10e3b1 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d274bad drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d460e6a drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dc5eff6 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e800cb5 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f176272 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fde1662 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4060e1fa drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4060f057 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40720f23 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4126b57c drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41693122 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41bb2b58 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4327af8d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x456b04fd drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4728fc89 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x477a8701 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b73847 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae2a0d3 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b55d1a5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cb51d8e drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e73b268 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4ee06a drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f77f680 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa7272d __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5233135c drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52556e4b drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e2e30f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d54573 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b2e43b drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c77d9e drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c55083 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x574ee22c drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d3a009 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x591239af drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597ba9fa drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afc9ad1 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1741cd drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb3366f drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bc518d9 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9907fa drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2decd1 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dee71d8 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb59cef drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ece9288 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60e3f993 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62b091c5 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6332cab4 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634e5d10 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64059f65 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65df21f8 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ec8f21 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x661ebf4d __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d833cf drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6773342b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6780523d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e77142 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68019abf drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6915ce23 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x696a3a63 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a903cfc drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac416e9 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3425c3 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c43fb29 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c635388 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d59ea31 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da89e74 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0ba3cd drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b59ea9 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c66c7a __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c72462 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7313e7e7 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74650464 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74e5b689 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75bf75bb drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7767a8ce drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7785a017 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79eb6093 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a2e9ef5 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ab4ee9b drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb3e59d drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7a9301 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ccbeb59 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce82097 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e56baed drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee6c85c drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ef81c58 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f60e8ea drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f6c8051 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x805a7cb4 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8076750f drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8091bb45 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x813d7d7f drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x814a9d91 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b27234 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82458b88 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82887a62 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d08c4c drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82efdf3a drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8398fe1b drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d3801b drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842717f4 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8428fd87 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8503d44f drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865b79a4 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ebe8b9 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a87dd5 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886c6de8 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c497e2 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b63fb3f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c5f461d drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c96ebc4 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8a1686 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9cb105 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd39ead drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef7540f drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f525db5 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f88f343 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fece89f drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b2b0f7 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9227a841 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x926e91d6 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92df8fdc drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92e9e6b9 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93431772 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x938aa636 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x942e4c4b drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x944638a4 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c16595 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b09306 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c3ed39 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97121c28 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97318cdc drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9790032b drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9848e7e2 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98b8a589 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x997f9850 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a4b68d5 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aac5294 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3fb356 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bac3bc7 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bede1ad drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c7fb997 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e11cd09 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0bd26a drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5a0f4e drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa043333a drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ffcd26 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa261e9fd drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29035ab drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30ce5be __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa33b369f drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4931548 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa51ea06d drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa53945c9 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a9cd10 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7b46338 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa928e2d9 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa996e52f drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa2ef55f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab349a4a drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6f6bf3 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2acdb3 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7f62fb drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa64827 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb985c1 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafca1b2f drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcff7db drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb16f1cc5 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e8f03d drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2549bbd drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e91f0f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45d6b27 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5edeeed drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6d8d20a drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d6d1c8 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85bfe52 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb91d3083 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b8c8da drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9bcbfab drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9d87e8 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb8cea56 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbde753 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbcafbb4 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc927677 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcd9e98a drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd348622 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd6c281 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe552229 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf383bd4 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc1eecd drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02799d2 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc07d8be4 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ab544c drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32d56d5 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3ae5e3d drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49729ed drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ed9e72 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc594afdf drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6c61f31 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70f7e8e drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7830c33 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a2f83c drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7e68425 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8262b03 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc87e29b1 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc925d16a drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca063f75 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa0dcb6 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa4cee2 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb661082 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb7d8db9 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc059ceb drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc6b3129 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd34773d drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd6c0df8 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2b7c12 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef09088 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf32bd69 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd02f26ab drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd148f30a drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a0b545 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd369548f drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c32564 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5ba845b drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd636ac69 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c09158 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80c6cf8 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8313d96 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86fe532 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bf2c54 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b4385a drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9dd5997 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda47ad64 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7b89b3 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae2f016 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf3791f drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca47c89 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd2ab0b9 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd48a384 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb2aa10 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea04fff drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfaa0f53 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe092f118 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13df988 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30ff2f2 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe384bc4d drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ed5812 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5a91a46 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65741a5 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6889eb1 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe811ea5e drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9059514 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea23a028 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec8c595b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecdc809c drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedbd660a drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef42364c drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdd0dc2 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf016a1bc drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf055017e drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf099af5f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10521f6 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf11fcf53 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1ea21d4 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ba27b7 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf448b585 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f1268a drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf600370a drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f2c6f4 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7528403 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf767ac0a drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7773360 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7792eb5 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf814bd87 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9508961 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9bee4bb drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4a8f5d drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf4172d drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb5c9f2e drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc57fa01 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8ed63c drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffcff527 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd8bf7d devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff7a46f drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x010f9379 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01a03a1d drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02464a61 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x032667bb drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045c28a8 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0469e845 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e6568e drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09576c72 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d8f6a3 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a701abc drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0af4aa6b drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b28f1be drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c21a18d drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ebfd9b4 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11393e18 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11d67272 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1404c2da drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15306eb0 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15bdcf1e __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x169fb8ec drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x179ec87d drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x190831ee __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b639f14 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1be46b9b drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c493106 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e0ab55e drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e94c288 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2229b1f7 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x236df4a5 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24d0d2da drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2520143c drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25375546 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x263b0b8b drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x265a6d56 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x284c3cf3 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28d36f8e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29ee8a07 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b1534a7 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba9f376 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd87d74 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d518f94 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6dcfb9 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e8dedad drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eca4bab drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f767ff1 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f8a407e drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3143cf5b drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31513348 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36859d9a drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37334483 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3808e23a drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x390e5950 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8ec35f drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ac27f1d drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b4c32ec drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b6ead25 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bfec4c0 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dc376e5 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fc2544d __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4087f00b drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4202329c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4290511b drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42bac81b drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x479673e7 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b6e1fb drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4819efee drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48be7adf drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e94b71 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ae87791 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b08b85f drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b8d9b61 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ba6d483 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c6d9c8e drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d8b6dba drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ebac100 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee46cf3 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x521ff10e drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53dd5e06 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x542b2461 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x542f63f5 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5467b881 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55873fb7 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d8362e drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574a7014 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59cecdd7 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a54a0e9 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d05a21e drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62606399 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x627646fc drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6283b844 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63eb13a1 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x644e6131 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6463d17b drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x646966a1 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x650e61d8 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f2bb96 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6677ebc8 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x678ddd00 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x679fd385 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x681dd840 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68de3b67 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x692f2177 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69ad863d drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a032088 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b6242cb drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b6e559f drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cf333e6 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f9bbddb drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700e35ce drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73435170 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x757cca94 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7838a060 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d893dfd drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e2114f2 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80947f10 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x814a1c92 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8212db71 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8359e843 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85c7ec1e drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86a30326 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x880932d1 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8921ba5b drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x896bcf3b drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a8e1ad0 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a9c8fcf drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8be2e9c4 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c66cfb6 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca85937 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db0c4a2 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e74600e drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f409e95 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fd83205 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff248f3 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90a96749 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90fcdb16 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91525905 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x929c1e4c __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95f2f7d4 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x963c2b45 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96441d92 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96954556 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f370fe drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9865c24f drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a62fafd drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b4fa9b2 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b81fd27 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ba01b7e drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c7ce2d4 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cf0dc22 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa02afa46 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0689297 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e4c01a drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2e147e8 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa43e04c8 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa78296ca drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8a8b048 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d72c50 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa91b4c53 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa925ef69 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab129b64 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabf23ac5 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabf65f97 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad2b0538 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad8734db drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad92d864 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaef483f4 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb005b074 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb01126a6 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb04136b3 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0e29960 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb12f323b drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb290140a drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3807e1f drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a56518 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb43787cc drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5203bae drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5220827 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb61e70a8 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6293a9c drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6d551e1 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7c4d905 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86958fb drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91c7f46 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9604e0b drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba81a274 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb268cca __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb63f5a8 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbad1da0 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd5922d0 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe2bfcfb drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeba0ca1 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf726bf2 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf89d13d drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf9b2202 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc08b5527 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc09b8cfe drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0ae198b __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0ca3722 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1474832 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc24f80be drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25a8614 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2d4f9e5 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7faa688 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93a87e2 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca59d960 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca7b3594 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcad591db drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb64f9fe drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd2977c6 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdcc76db drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf5fb5a0 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfd67f03 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1f3b680 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd269a220 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd49a7a87 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd55ec51a drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5e04f79 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6d6d49c drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd70e29d9 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd77d5e13 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8ac2303 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93d15c5 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd955e8b6 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda099eb3 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdac81db1 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc18c296 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcc5bdd0 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde8018d4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde821ac6 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02d05d4 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe09b4178 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0dd337e drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18a8979 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe35e08dd drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5ed2755 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe785ceeb drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea755cd1 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb1abbc6 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec5c2c3d devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed936875 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xede5412a drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef6e5d66 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefcc5d21 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf017ca83 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf027c1c0 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0ac672d drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0f64172 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0fe1e53 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ce67d8 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d44c59 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ecc978 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf666fa33 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf764ae22 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb98210f drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5963c2 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe814b3d drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x03394fac mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0ec1a210 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x258aa7c3 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x278913e6 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2f7d710f mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4242300a mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4b6ef928 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c496bbf mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6bc4c78a mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6ca09a91 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7a3957df mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x87e0c1a0 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcdfc57d8 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe64dfed1 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf288c300 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf5600908 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfa10762d mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x01b8814a drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1bdbf7ad drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x776f7544 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa3a372df drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc5097db8 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1d66e6ac drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2be7b1b4 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x30fb6d17 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x571698ff drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d3a3520 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x69c64846 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6da94b2d drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xadf42d89 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb8447a1c drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc4a0d2e2 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xda82fc14 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdec17552 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe6214dbc drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf17e48d2 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf85dfcfb drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfb832532 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x8263a85b rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0772f8d4 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ea34f40 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x20a8d7a6 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24596163 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3124b151 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3193ece4 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32785798 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x380b4064 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a40de71 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43fb6d2b drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x45784757 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5267365b drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x578aed71 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x70b97127 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x73128f82 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x741152f4 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7afb4be7 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f747c2f drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa195d47b drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3b1d6a8 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb0479dd5 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe526e482 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xed309321 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfbe69573 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x02fe7336 sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3149f561 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xae9199e9 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xc54a0469 sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xea55ec89 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xfb749b0b sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x09b01986 sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4ddd60fd sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5b6b00c0 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x7e8fa803 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x9ae6cb4e sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xc981eb8f sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x083f0422 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x3ac18fdf sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03b11162 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03ec8efd ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0424b0ff ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04b22d90 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0921ec51 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0feb1980 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12548989 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x151773df ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21682195 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x241dd817 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27446e6e ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27a61371 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2928a3a1 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d15c069 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x413da0b9 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5190f18e ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x593bd77d ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e146448 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60cb7fdf ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x686f7b99 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x687f9202 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a8308ea ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b01564f ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bbfe6ca ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74461801 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b3d73fd ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cfd384c ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d120479 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fdaca8e ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fe85de9 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95df6a33 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x996866aa ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa031fd58 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4a4b225 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7b38986 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac1232b3 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0345095 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1a2d49b ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9ce5c59 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdc93293 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3fbc550 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5ba316b ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaed8d23 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbe08325 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd52740a8 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd54aa5ea ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd835969b ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd56bd59 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddb329cc ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3a8ab76 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf413a3b4 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc3c97d7 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x661ddba1 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xaf3a2d09 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xc14f4012 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x014c5eaf host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x04a0e801 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0b692e27 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0c0137d5 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x193711d2 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x218103c2 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x23e82e16 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3349aa43 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35ebc41d host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x366bf30f host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3c1c034e host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40971898 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5e87f64d tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5f3e0600 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6ab90c3a host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6b77b396 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6f226adb host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x73f3028f host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7c208392 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8608d8cf host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x881f2816 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x89e0e79f host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8a3ce9ad host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8a6b627f host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8b68ba54 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9911614e host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa36ec4b0 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa68e4503 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa698c88d host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa99549e1 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xab116896 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb69a7a25 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc10fe503 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc72e7dfd __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd8fdb077 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe55dd819 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf156a28b host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfa6522b0 host1x_job_add_wait +EXPORT_SYMBOL drivers/hid/hid 0x6ba88c46 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9851c1cc vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd638de9f vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xc7407c4f sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5f2678d9 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa12e2435 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfddd2b33 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb6683fe9 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbe25e134 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xcd8fca44 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x94b8a4ab bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xd0d8a62e bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xfb21ae5e bma400_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x09118139 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x18853d3f kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x857b6a1a kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x09241c60 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b53eaef mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2b8b1da2 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x36f6563c mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4176a3a0 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x54145dca mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x67f0dfaa mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6fdae78c mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x830948bd mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x846975c3 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaa15b78b mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcee542da mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcf83a607 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe29db575 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5ba1a52 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe7d23f22 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x75aad986 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbce89598 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xf2f5a0d8 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x3b4fb908 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb4032788 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6868cb06 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x72e1ebaf iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xc2053ed5 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x146f896a scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x3969706d scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xa44444f3 scd30_resume +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0811d5c5 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x33302ed5 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5dc2a332 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x696630b0 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x821be728 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x84135c1c ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa9360c98 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaeed92f3 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbc158450 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x00c6eefb ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x36d09795 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xad85807c ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb52fc16e ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbe48d317 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x21c94dda ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x658e95b4 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb9ecdd67 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ca9ce11 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0d1267b7 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x15d585d1 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3bcd5d2c st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x45e9573b st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x70e64521 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x72b50c59 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x814c4dcb st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d15147b st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d4938f3 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa48ebd77 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xad506c4a st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xadbdcdc6 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb0d76f31 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd7936906 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdf235ec9 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4e27d4f st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd97b218 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x200d88e0 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x70794e65 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x3fb3d44d mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x6755a9f9 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x8a5b6cb4 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4bc3001f st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xba8c4927 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xed52d189 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x42a390f4 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x5a0faac2 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1182baf7 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xe9a6bc9e adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x40bfee8f bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x61842b62 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x160b8ff1 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3cd6b792 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x01c7332b iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x056c9fc2 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x19299529 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x1f2f2d06 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x24ed9f1f iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x28df1584 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x46a0a9fc iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4c1c69fb iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x601e0848 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x65f8ca01 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x6e2752e2 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7d41fd2f iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x7f5a3358 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xa935f364 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xb171a33d iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xbc9eb2f6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xde2d64bc iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe4b51887 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xe54a1ed0 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xefd7c29d iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xfbb25eee __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xfd8c51e2 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xff769434 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xe8b0c22f iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x126f7f14 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x519b0a4a iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9e46fa40 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe3cc88dc iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6eec9a1a iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xac1215df iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xacfac843 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc4a678aa iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6dc1b19c iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x764acfea iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x2dfa210d st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x418dab80 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x12e31dd0 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x19527665 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x60cac0a2 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x92ee3166 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2d7619a7 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2f6ec90a hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x34c1aa5a hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xcba8eba1 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x269a69e6 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xda37cbbe st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf274b94d st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5c94063b bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6651477c bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x771f9161 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb612db59 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x68c2ea85 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x8f5abcd4 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5d1af224 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xba8cbfd6 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc10e88e3 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x22f662f3 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x411bafff ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44b522ff ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a8508ad ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6933f05f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75471714 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82168f69 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9fa288db ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa05af09c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa5ff184f ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa95e3eb ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac86c6b5 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba222d62 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0dcbaf2 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff2ac159 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0120942a rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01ea57b2 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0272ad66 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05068bef ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x055ec462 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06a500ce rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07eabaa0 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a52c99e rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e0cd21f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e1d8047 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f0dc312 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbf8c70 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10347b0e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x105b89ec rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x123e08ef rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x146a585a ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14ad3d74 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14b9d868 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x153e3ca6 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15aea1da ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16713604 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x169b5c12 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16d14175 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16f5685e ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18007985 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b6aa5e9 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c5709c2 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20c779ac ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22a28985 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25147fd1 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x256c3347 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2590d173 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25a9c2c9 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26331570 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271df2e2 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x286e989d ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x298d41fa ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f2926c3 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3081a9e7 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32219f54 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32649fa6 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34fc222b ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3502086e ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x357aadae rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36eb9c2e ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38e7adab rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3957f1d8 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3518c7 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bffe1aa rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d3d0db1 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d801fc7 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40aa042e ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x431c4203 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c77d22 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45abefe6 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46267a3e rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46fcad9c ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4776d1c9 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f08fbb ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x492d16cf rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49bca017 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d06ddf5 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e1bc56a ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ea06e39 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f8db1c5 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53e09565 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x541db82f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x545274b4 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d9ef99 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55072ca8 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58fd4b69 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a6d47c5 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a70bc60 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b23a149 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0b2a45 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f0423c2 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5faa9adf ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x601da858 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x648c7f4b rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66ae42ed ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6868f8e2 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69dff2e8 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b962df9 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dbcd045 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f131bcb rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x702a6e87 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7252d399 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x738e0fba rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74276f6c ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748d3c60 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75cd2dc2 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x764a0ad6 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77bf1deb rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7938a9f0 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x798b32af ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a3077c7 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf792c3 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d13c6d0 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dc47506 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f2b176a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x803262a2 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x815c3dbc ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8288db40 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8365898a rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86689152 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86e56197 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x874d0389 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8781f673 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88535ca3 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x894432ab ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b995e31 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf0ec97 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d67d4e4 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eb746f6 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x908db940 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f8835f ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9821a5aa ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9836eb7c rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ee68f47 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa07e0127 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1f68a94 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa205b914 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa219f40d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e9bccd ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3157a03 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa43a0941 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa519b9d3 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57aa24c __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa63386cd ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9dc2fc2 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac1fd550 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad46ba73 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2bf3ef7 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3f0fffd rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4217ced ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb475ea29 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f82b80 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb70bbfdb rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb77a0974 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99cd377 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9a86d37 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba7a6b22 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc07cb9b ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc99dec7 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcc6d8f0 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdd5bf92 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf9fbedd ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbff8e6f8 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1019142 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc19eda01 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3ca29e6 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3cdcb1f ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e4a054 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca3e094e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb689485 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd66a844 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf22df49 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd46d7228 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd77927d6 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a029d2 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8311488 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd87745a3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9b3c01c ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda26e261 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda48c114 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbabfe35 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc654d0f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1417189 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe21d28f9 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe30c1db5 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe375a38c ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46322a2 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63082b0 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe76fdbd8 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe82281c7 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c4c816 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea532169 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb3aabaf ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecbd67c8 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2a000f6 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf328632a rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf667c4b6 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9dc9df1 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc4acb28 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd777c83 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfecbcc18 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0a3ee5fe uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f501ff9 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10721f4e uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x116dc42e ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e6f7596 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x258b6e08 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26ef9ab2 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c1569f7 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d982a70 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2de5b024 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2f950624 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30f7c416 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34d52da8 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x45da450f ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e2d21dc _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6834447f ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6b45d289 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ec1a51b ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x716c27e2 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7895ddbd ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x893ba020 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ef29867 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3333d15 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xae807156 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb48f8e84 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb53ac0eb ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc667b1d uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc833d554 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd28e51a uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1125edb ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7a0366f uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xee74e427 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x322321ba iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5f5055ef iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaae14488 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad92a714 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbc3f3908 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd2a12552 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe6b56528 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf6c07a23 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ab31a46 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c653865 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13b512a2 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x160cd6a9 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17b1547a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17d5157b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c939a49 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26ebb068 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32901beb rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x579e9533 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x600541bd __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x686638a2 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69ffd3ab rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84bca018 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87e538c5 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88d8c871 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a426fae rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ddf21a8 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95478af9 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9579a5c0 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97e982e9 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cc776bb rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa41f971d rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb87c7c56 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbfefdf03 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc200b3aa rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3428042 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcce2e740 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3052326 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4c8a02a rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf25091dd rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4d77047 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf931038f rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfca30c4d rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1bb096b9 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x365e196e rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4fd45b95 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8a7ff6e3 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x927839ce rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x965bc41d rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf8acf2fc rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0dcd662a rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x94a746f9 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xec804787 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf06cb8b2 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x08fd354b rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2d2f3e28 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3551b00e rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbeff0e14 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcc40834e rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeceb9ee2 rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x531d81d1 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x542b8d2c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7c8e757b gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc348b32c __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xccb5cbae gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd1d54092 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe393c9a8 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf848a815 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf968eb51 gameport_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x542e6cff iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa7d2e39d iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xab11791e iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x5b33fc2b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4df09f0f ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xbcc870da ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7ac65ec ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x2b3ecf23 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xb276662d rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x07d8e9e2 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x26904300 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x94a45228 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc884cb55 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xee4315ea sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x475b7195 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4ffe0a2d ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x1722ae7c qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xadd2741b qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x877393ef attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe0a05e8d capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe4550bd9 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea10bc3f capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfc09289b detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1c9884f0 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2afc8072 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7b34098d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xebc14247 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2fd1bc8e mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd3edb016 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bbef0e5 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0eb44081 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17afe102 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cddf69f mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f560f23 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3328fac0 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3efd8822 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c33e929 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61e3d653 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67235095 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x765be08c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e2f415d dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90380116 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa43a9aa1 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9b8a711 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0ce52d9 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb7f19e36 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd597d38a mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1c2d671 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe77a3373 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe84690ce recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf09dab98 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc162ab6 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x08181553 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x51ded5d0 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xdc5dca12 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2403d449 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x5f12c131 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa8b39eb2 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0xbd09ac58 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xc01d16f2 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xe09821aa dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xebe16b2a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2bbdbeae dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x50818bd2 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x86cf59a0 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb8dbaed4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc8fa9610 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcc677b70 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x2c7966da r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xb6f12382 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d364155 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d4d8e4d flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59b2d7c3 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7af2395c flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x924d024c flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa39e77eb flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5aa031b flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf36755a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc4a33cc flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc20c552f flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcf13d752 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbc8cb2a flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe0c01fcc flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/cx2341x 0x00359899 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55f9b41d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8f6ce991 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xfc41469e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xc5f76cf4 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x45267774 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x2cc3f6a7 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe2267a16 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf03402eb vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x35128389 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x492847a7 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x97d12117 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9cfe17d0 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xaab4cfaa vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfc19452a vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xd0964f85 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x028327e6 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x24a48269 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x30496d4c dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31a28eec dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a465232 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x40bfb877 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42e7a65d dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44140817 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x447418a9 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f817843 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x514f3a6d dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67db2125 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x686c976a dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fc6bcc7 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x983fc87e dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a06afc2 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8411e41 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb1dea438 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc434f8bc dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc489a713 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9855229 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca232814 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd86a8f3d dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7ce404e dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc6a3e343 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xef58915a atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x230f8219 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x30b8e1cd au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x571428d3 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa0e949ca au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa93993e2 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe0aa922a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf77a9b84 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf8d04bdf au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf9b3902f au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xdd10cba0 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0684b414 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3346d9be cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x1514abae cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x285693d1 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xbd62d8bc cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xef3d5feb cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x377b4e16 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xbacecf87 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3f205034 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4adc9202 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xa208d22c cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3e419c0a cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x99bb4cda cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x617857e4 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6c349664 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7d951cc7 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8694cdaa dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9a09980a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdabea637 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x01b59f2f dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x01b82c13 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x07bc7b1d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0bd3b4cd dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0d622024 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x172b09ca dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x25e7510f dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x519f3504 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x59857842 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a398d75 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb4052e68 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6e6ce9f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd9339555 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8211304 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe976e979 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7b5ab7d5 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1e9ad6aa dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x72913d6a dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xafdf69e7 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcadad99d dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe1c413ae dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe2bba627 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x297d9bd6 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb6da1140 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd1713976 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe188bb37 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x2337089d dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x897f4fc7 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x24ea759f dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x26942bd0 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x291e952b dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2e3c5152 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x35c9f56f dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5a92abc5 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5aa86025 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8e2453de dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9bf20df1 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb7682575 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbc9887cc dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfbdeca5a dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xffbab42b dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3c307f55 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x623cc8d0 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8b252c8c dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96e06b52 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb9e4a477 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x2948613e drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb5770c11 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x55bddef9 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x4c0ce864 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x4dde5e84 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x24d8c41b dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4faef27b dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe460d613 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x69e75a62 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6de4c489 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xe9c330b4 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x79318948 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x09af0e2e isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xc11d5df4 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x7c605afc isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x873671bc itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xf8e11008 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x1ba4b68d l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x44edce85 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xd828d06c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x53bfa574 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x68e4be17 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x6abec532 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x9b1b6712 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xdfd4d8b3 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x61f862c4 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x48f6f023 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc77a10b3 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xcf2494d6 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x849dbf77 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xdb32bbd6 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x1eb443e7 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x1c73316a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x8d149f29 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6b71337f mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x59cc951b mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x3c8c9b84 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x94ad99b1 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xde3feb58 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe3dbf875 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xbc5225c3 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xadb8f731 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x792f5deb s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x93a2fe85 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xa309daed s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xccf72213 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x1bff6724 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1e7f156e sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xe4092ae3 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x93db9e4d stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xde0ef01e stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x5330b404 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x444a5021 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x72277fd4 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x381d1916 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x89dffd41 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb92fe37b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xfe1f58b1 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x69737d23 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xb39c7469 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6abb265a stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xdbd2ed05 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x8e78f78d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xb756b6c0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5b40be6f tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x60cda11b tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x05b82639 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xed2ebbe0 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x5c472df8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x63363f0c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xfc9047ad tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xd7265f6b ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x0117aea9 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x6026fe94 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x98aba46e ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x2e008fbb zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x83de4220 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc13a6760 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa0b4f496 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x71af727f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x093ef417 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x490a2e42 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x706ba711 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8b3d0c9c flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9204cc05 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb0d058a2 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xefdca610 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x01e2540a bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x30cfdb11 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x37a7d523 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcaa8b9c2 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3e228614 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x91eac084 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcf68de07 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x13f20e26 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x16702a7d dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x23fa27b0 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3f82b8e2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5ad80fa8 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc422a3dc dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd5efea96 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf86fe2d7 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf9ae7c16 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x75e532ad dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3567909e cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3c44ef93 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x47caae68 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x775b3329 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbb973bad cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2bc56792 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x414d8d84 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4582bbf1 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4924c4b7 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4a1a7675 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x597f2a26 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc9c21b04 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc35f67a2 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe21c6b47 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0f62f8b9 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x478a3837 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x79a28549 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x85b2f013 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0630bfbc cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ef7eac8 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3163174e cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x361f596e cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4dc65e0b cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x846c4e94 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcbbcbf19 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11a3044c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1324a376 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1ced0404 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x21d95e8c cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5471c6a7 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6862e828 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71054ccb cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ac4e75d cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8bde3cb7 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92505de7 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9992befe cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa86a19bc cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaacbcaf3 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xabf7bcda cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb30faef9 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc71ac01c cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb4f8c47 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe18f0cb0 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe382a7fa cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf583b68a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x8bb1da89 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1776eb10 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2958c341 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x348c083b ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3810429f ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x39ce2c5a ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5507bb13 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x559b2b85 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e05799e ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8220c861 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x858981aa ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1d0ced4 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb30655f5 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeaca9bc3 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee6d1a73 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf0d02ea5 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9e3c17d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd89ce8a ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0c5e312a saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x110b5b11 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c73bd0a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2538f0fc saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b99b1b3 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x606d7d82 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8ad08374 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc64678e7 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd5fef023 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe61c95b1 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfb3ad244 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1bfe534a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x229caf0f snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x25fabe64 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3e8e0c43 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b441f00 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x633a8d3c snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6aca0ad3 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xaba197d2 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe9ee856f ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xea8419aa fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5b2aa6bb fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6de8bc0c fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9a3c46fe fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdd945549 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x58bf691b max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb9afd5d6 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x918dedda mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8c117fd2 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc4d042a5 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x6b8a27b8 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x69c611a1 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf6b7bb1b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x71200a94 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x279e4eda xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2c71782c xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x32fd493d cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xdcb4f24d cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0976b7fe dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1af7e23f dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1babb59d dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x66bb4000 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d2eac62 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x93166b7a dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99e6cce1 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb7bb8454 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcab5d6f8 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0e6aaca6 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2e2b893a dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x425fb09f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5cad80e3 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xabd0045b dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb86b601a dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x70641cd4 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x015d38fb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2b37412f dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3d3de640 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7489b25e dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x81fe0e64 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xae58437f dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcf717216 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdf4efaee dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf88a11dc dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x3dd1a90a dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x8a4a1ee8 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x37b6a705 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4b8bad33 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0912774b go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2518f7cd go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3d5144d9 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x52e3d490 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74e3a3e3 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8cde812e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9572a4a6 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa2d772b5 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbf9fa190 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x065a382e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ad22c45 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6dd98d49 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x84f96ee1 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xabc9f27a gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbe7f968a gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc73d8908 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf563c49a gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd273a21b tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdf5ff78e tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xec577bfb tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x00f03933 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2b3738f9 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x206f24b9 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2eb5e2ab v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x37e0789f v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc62a9993 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xca25a97d v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf1d234c6 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x13daa9aa v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x30192169 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8a2dac74 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbb2cba10 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x063a3e41 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x093fcb04 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0975e6bd v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x103485e8 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12e37ce6 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b647e0d v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b7b2ac3 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a848fc6 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3059f2bc v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44068a2a v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48e113ff v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c5a153f v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59b6384c v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x644cc0d1 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x647dbfbc v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67789645 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e5bfd27 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74aae947 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79295adf v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8015df74 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83a84ebd __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8db3a472 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91351dea v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93b8ab5d v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d3e5cd3 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2ca200a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa452d5d __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabd40088 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaeea30db __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5cd7735 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb922c947 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc032fae3 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8b38a1c v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb91f89c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf450243 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd10327f2 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4df8bcc __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbd75c5d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcf267b8 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe25366fa video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe706c6cd v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7110768 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7d1b8e6 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9ccd576 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebef58d5 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef7fd0ef video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef9f89ac video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf22b7feb __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf96040c9 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa83c37c v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff0d9f06 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x27355f8d rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x60d15571 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb47a395a rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe1c803b5 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfa2c19fb rpcif_sw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x20e3b564 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2a5fb3de memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4469a362 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x494dfb30 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5a1cd48d memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5ab52acc memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d0e293e memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6e1ed1f6 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x80889e38 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9678b4c4 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda9fd417 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb9b83b9 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08edfe54 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0c30be0c mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0c89bebe mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17af0f95 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b14bc65 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x276047ea mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2960e126 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b0b97dc mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f6582b0 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x408e7133 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50eaa96c mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ba38f79 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5cd26913 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x683373f6 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x69bcbe27 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c83f41b mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e066f67 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ae659d9 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95583ca5 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa66c4aa5 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa5d5987 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad25755e mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xada7ce6f mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb448fa1f mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdc35d9b mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcef9fe72 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdac59e8d mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe2520f8f mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeccdd9ad mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0add937f mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fcc90b6 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x177554d5 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x243359ed mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26e3ab45 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x371176e5 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4238aa16 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44fe7749 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5617f5ac mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59015fbd mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62661270 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e4b8385 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fe05c0f mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x75e82682 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x767bd9ef mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96d97aba mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9f869d0 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbae5dcb2 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5cbd1e5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcaba3065 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcba51f05 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd71fdb12 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdee03cf7 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5a2d9f7 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf223cfaf mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf376f30f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb28cfa6 mptscsih_bios_param +EXPORT_SYMBOL drivers/mfd/axp20x 0x32506346 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x5f63086c axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xa5a053dd axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x8fbfd678 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbd9ace8e dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xc4253400 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x36a2231b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x371682a5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1273141f mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1d4ee588 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2612740b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x305f2089 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6f7903d8 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8901e909 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa5d7affe mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa73bb068 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbb438060 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe0952493 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfd7aa94c mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x15d1eccd wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8ab3eee0 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9b454d5a wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xac34dd11 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb8895579 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xfbdd593d wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x42b88ab6 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x435762e6 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xbd7e9a9a c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xfce2a148 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x083978f7 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0c929616 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x2ee070d9 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3a908425 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x58f1513d tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7eed2e80 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x93541ee1 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9ef511f5 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xba409645 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xc15dd96a tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xdc10dd9b tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe39a13af tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x88bf42d3 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8bc79b39 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9209caf1 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa6def5f9 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xabc6d150 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x111e8a58 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4829ad95 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x48bd27f3 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x70de204d dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x09e0a5dd mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf865a7f0 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x524cded8 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5f8a2e5d cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5fc1a54a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x966bf4ea cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe38aeba2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xed945372 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf986f243 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x68398a7a register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x90cec55b do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb017ccb2 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd5ebaf2b unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x08c12a74 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb6858b2c lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xa47462b5 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x582d3716 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xb581ae59 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x075d1bf7 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x09852695 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0d9b1d64 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0ece8964 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x227fb62c nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x31f9b884 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3d99a85d nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x48870e37 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4e50c9a0 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79a5d4e0 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x87fca117 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8cfa6f46 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x97f2df2d nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa0b1f655 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa2c52415 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa55a2dfa nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc15deba0 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf5650723 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x287a524c flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x9be57508 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb00dfddd denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb8d22b40 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x51c5a9a4 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x080bcb27 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x29a8683b rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x30b28e7f nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x379d1477 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3b9f80da nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4172be39 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x43992de3 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5506962b nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8180a598 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9a9e3b17 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9dce27df rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa57049bb nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbb8539e8 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcd9c8658 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd4432b5b nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdd486452 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf06f3821 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10738d50 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x13b33753 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15ca35d2 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c2540bc arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x43ea1ffb arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x57e74ef3 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c76414d free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7afc1097 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8ad1655b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xda89ccb3 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfe72e12e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2be0b629 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x368567cd com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x626b308e com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0678b63b b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b046819 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x240891bb b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2909cb56 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ae0a7a6 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x307610c0 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x435c5548 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46c4f248 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51bbd831 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51fa24b2 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x541bfceb b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x576c0337 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x597b95e3 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a05b068 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ad29d30 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5bf533fe b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c76d59f b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5db1c04d b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x655bcfd7 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6676376b b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c330c63 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8053c1f6 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85981d0a b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f7f3ce3 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x929fb618 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c2359d0 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0510f8e b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3860c9e b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xacd93291 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xae77d0aa b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf41d032 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0b40a96 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3e060e8 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb822ba01 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd4b696a b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcdbe22e3 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd08341d4 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8356b86 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe03219d9 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe764314d b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf198c5b2 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x41f9e7e1 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x52a3b375 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6610344e b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8b0b1780 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa048e5cf b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfcebb711 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3cb8796e lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x62e70ae8 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8c5a787b lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x2e90d0b5 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x345cae28 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1347a517 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2f1280b2 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe597c994 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x65428e38 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc97a35da vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfd0ef00a vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x149ea9de xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3d3d5281 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x479668dc xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8ad7c1ea xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0f0998e6 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x19947693 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x35da74db __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f9f8db0 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9bfd964e ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa2bae04a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa64f9c17 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb00e2375 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1b1f5b6 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf18dcfef ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xbd9854ab bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd449738b cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xa33c2318 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xf7e4a2ba cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x01a0b62e t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06c30d77 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20127683 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2c4fd7d6 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3543393f cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x37089007 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4b782d1f cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4b942a02 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5463432e cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5494b10f cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x629bd430 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8df65069 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x956f0d2d cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe482797 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdf69251e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf2ab7d5e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01256a06 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x055ffae8 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x130292d7 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b1929f7 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20b6fc32 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d3495ec cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e3aad73 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x311357ce cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3afbe0c4 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c7a08f6 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x402761f2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41c11127 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49fe5a0f cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ab3f0be cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b5705c4 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x566548dd cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57f3e8a2 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60327041 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66297d9c cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67a20a7e cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69efe1c0 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ee848ea cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74b8fc76 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x755cc36e cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75f63def cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b9cc15e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x818c6eea cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82c49229 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8dc9375a cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f4a6049 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93d07137 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9dcc0559 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa40e4cbc cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa981666a cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed34f80 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8f6f135 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc1ee1a9 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd72d38f cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc541e76a cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6dffc4e cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xceb49f44 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5883f59 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe66ecada cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xede78957 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf72b15f3 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe9a2d34 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x15f3e84a cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2bec7d83 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x36ae4117 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7c418b8f cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x87cbecb4 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x942a8c9b cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9b85a2f0 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x43b59694 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4e1b77e3 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x51ba726c enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5738ba27 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6c4697cd vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfa1ca085 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x422b99e0 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc04b06c2 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xaa934018 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x8f2dd99e enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1a323942 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4089c6ef hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb686b423 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb9f8891e hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xeb61f9df hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xd4ebf04e hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x16c08b87 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3da5d8a0 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4796ab39 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6cf3f81e hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x74aba6fe hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8cae7294 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9c28e552 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa5692c34 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4938c419 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb58de052 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x01de51f0 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x030ee146 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x280565e6 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x342d0906 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3cc098f4 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x49286d3c __tracepoint_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d84c2a6 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6f2fc6e4 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x77ab99c5 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7c708495 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8a838215 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa0f73a4e otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaf24c07c otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc1335a48 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd25a185c __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf43a4909 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf45b08f3 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x09b21be5 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1f5694c7 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1ff674fd otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x27d081a5 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2bca49ec otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5a0c8db2 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x767947f0 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x77c62554 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x82f30386 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x91265756 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x92e4a234 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9fc9d279 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa982096e otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xab0ca0a9 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc575520d otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xce2b02e0 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd03c9b20 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd57891fe otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe39588ed cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe8756de1 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf1ef462e otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf3af57c9 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf716f4e7 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x42f7cb6f prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xf0959d30 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cb935f2 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cd028ee mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134aa9de mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a8f2f62 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21bc6f7f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2685a426 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2df3b2e8 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a1a8142 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ecef484 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51859025 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5462ae50 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57343e56 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59641b40 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c454c3d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fc5c30c mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x618ae633 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x636270cc mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6852bddc mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9f7913 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aea877f mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x812e90f5 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85118ef8 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87873b2f mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a16a5e5 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b17ab1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97bd221d mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be1c3b2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab1c7176 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadde73ef set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb259c068 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb56e80ae mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb57caf58 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba19de95 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc110d520 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd588f0f3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6b3f5eb get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd93f9fe4 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcbd30d4 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e50902 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe984006b mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea10a225 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf272cfc6 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdf78f14 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfefe2e0b mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0001f3a4 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06b47e46 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ce0a05 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07da400d mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c040baa mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0df2188b mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f17926a mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f19808 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14865013 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14c54cae mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x152c6042 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1765e676 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x178e571c mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2d7a85 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ab78901 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1af4ea09 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b62246e mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d723e94 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e9d474c mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f50c626 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f91b1f0 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fa553ef mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd83402 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22017c25 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27be9c3f __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb89054 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x315e2fd1 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x331fd113 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3351f7de mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x344d12fb mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369ba525 __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3746cc9d mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a14ebf0 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4a3182 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ec06dd1 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412bc3dc mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44a8859a mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49580652 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ae1cf45 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f4bf63a mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50256bec mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51eb5e6a mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5473bdac mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b88c73 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x580ca197 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d65d769 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ea399e5 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60238c5c mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61cd1715 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66713241 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67890c4d mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x681ce07e mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e2c6674 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f37072d mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70194aa7 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71e00b2f mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x720cbfd3 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77c43373 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a6d2351 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b5836e7 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bf17c30 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x807f222e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81487c83 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ac1d24 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x863c4475 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86b84b60 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x877bb730 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87b5435e mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89083e6c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8965d5f5 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a9bb652 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b0bba66 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8df563e2 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e61c2ba mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90904f4e __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91443f27 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92fb9ccf mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a29544 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f8ceff mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983b3278 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985ac870 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985d7edc mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9952bf93 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a97d3af mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bec477b mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d1a4f5a mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6c5e2e mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fdc1ced mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa036cfa1 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1bf0b30 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f9e6b1 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7e3fd33 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa812363f __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa853e0a0 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb49ebb78 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb542a901 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86cdac0 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc0785a9 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf1805c7 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc21f4b00 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3abf15c mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc822c046 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc864e5b3 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc98eb6f3 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb2c1917 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb5b9c87 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc5fe092 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3423e07 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59189e8 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8a12a67 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc836587 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde4be926 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4d04acc mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe62e86d2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6c49802 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7041347 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe846c1e7 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9b3c8c3 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea9271b9 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec805504 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b1bb55 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c16c77 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf72c4593 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cb6563 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa6597e8 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfab7686a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfca5dea9 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe151942 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0a875bcf mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1458b88c mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1ab33755 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f3ed5b1 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f6019a7 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c616406 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x561413db mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x655d778f mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67c447a5 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x70824cbe mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b5678fe mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x84fadbb6 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a4417b4 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x90f79823 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa63c49d2 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd6f44db3 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9d6591a mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x35b38962 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x3edac5c7 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x33d20ffd mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xd30aad18 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x011c1487 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0153ebe8 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01862f95 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0349423c ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0974b9f9 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e4850e6 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f3a4b24 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f3adc41 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x119da637 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13cd9ff0 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17faf9d3 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1df7bc26 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x202e3d31 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21f5930c ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2348d8df ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x288b3dfc ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ac387a7 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f0b0d55 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34c65017 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b638218 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40713c71 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43ea2f76 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49801f46 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4df688b3 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5597fbee ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x576c2e6f ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x597d8acd ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d1d16b2 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61b3caf8 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64260503 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x667df601 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b023452 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b7aa201 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72082b19 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72441cd3 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72c5e7d8 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75fea601 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ddb65e9 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e6d4c8c ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c0792c6 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ef711e4 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93faeb65 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x981a97b8 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c1b56e5 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d771838 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9dc88d32 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa41661f7 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6cf1fff ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb872a782 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc4ffd0d ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc48be708 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc781dd4d ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9360dfe ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcabbf392 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce74abfe ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdaaa5697 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc7ec0e5 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc9de95b ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xded3193c ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5209beb ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5b4b4af ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb3624ca ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb662102 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed71679b ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf50f9e32 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa1bdcc3 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb262e06 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x61da06a6 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8cb13574 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xccdf2d9a qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xceeba9b6 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x5fc1cd39 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xe52a2ca8 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x08b5e941 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x379fa440 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4b94a5f1 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa23a9ec6 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf33b27e6 hdlcdrv_register +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x42420f31 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x45907724 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x857f2a56 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9ddc72f9 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1d5f150d cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xc9e23b6a cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3ab83193 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x484ebe91 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x83f0687a xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd4024a8d xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd4d39aad xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x4a3946de lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7f7ca819 lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x252bd794 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x571f6637 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9a77f71e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc0d076a2 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe371b3d0 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x39ff7113 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1e154339 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x22167aca team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x262d7690 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x4eeec1fb team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x5da83e52 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9df3805e team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xc1e584cc team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xc58e50c1 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7269c9df usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9e4e98e7 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb5e8a494 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x50162450 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x56ec986e unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7d912ec6 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9a1c3de2 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa51dee1f hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xad0224d2 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8909411 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb9985488 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc35fdcec hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdceba74e unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0f96c894 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x16d59e5b ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2364cb14 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3203c9a1 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5298cae7 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x636e3a2f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7f2f6718 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ff2d06b ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9dc185ed dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xacaf19c5 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb42f63b9 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd7a7a8e9 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xec87fde2 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0213ae0b ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06950bf0 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06ebc0a2 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bbf7f24 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c0e7dbc ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ca4c601 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x226dfe42 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26e3e921 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a03dc80 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41b521ae ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44dc7a5d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48c61712 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x533bf2d8 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5760891f ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59c7407a ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a64b133 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e197127 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ee1db71 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f0ec966 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x616e2d95 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64041842 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64635404 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66db8a9d ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78973e7e __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78a8ecbf ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82555a38 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ae78958 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b1a4406 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90b6f9e0 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9146c02e ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9178123b ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94045110 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c3faedf ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa24bb713 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa59c683d ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5f4423d ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa62e9e32 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa718c902 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa83ae225 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb389cc05 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc6cf41c ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf6821c7 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc23b0a93 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca4a8d9e ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6f7ea05 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9f958e9 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda69ceda ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaa06477 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdbe1194a ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc2b6250 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddf0c9a5 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed796457 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0344091 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3bd3a35 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfda77a98 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff53f9ca __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0325c1fe ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x115f96b5 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e9aed9f ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2145fda5 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3626f1be ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x40c51d61 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4656eb55 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x57871197 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x66723c36 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7427bffa ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85a02744 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8fcb0806 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x94ae3407 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9caeed6d ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9ddf2be9 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb823e858 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xba7b1f6e ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc1e392f8 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdc9d86a9 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdd44d79f ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe3f06b15 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf4fca0c0 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2681b0fa ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x46f0c07a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4a807cb9 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5024bb62 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f1f130f ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa7cff6ba ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa8513e89 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaa38e4f9 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb40f101e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb4476c4b ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdc1c1941 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08597e0e ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1bb37fbd ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f80dc29 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x246a2a1f ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25961e03 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28b3dd06 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3918cb91 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x58622a90 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73b02000 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b81beaf ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d54f89f ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa041a633 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa887195a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9961139 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1ce0771 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce4dcb8a ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd43eaf5b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd1631e0 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdf0595f0 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xedd3d38b ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf02c238a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3038177 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc0f40f1 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02bad616 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0384cdc7 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05dacfa7 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x088942da ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0958c496 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e190371 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e1f6c11 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f1e1bb4 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13fe124a ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15f96794 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16aa1098 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1737c889 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1763ccea ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x199cc28a ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a235e7f ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a451776 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c4cd495 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ec584cc ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f6d02e2 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2183e3ff ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e5c910 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x224b03f1 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23f497f5 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e0ae74 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c7253ba ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30e3eab8 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32943c46 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36a6aac9 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3afd132f ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b0a9ff2 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c16a169 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ebad9c3 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x433bae70 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43ac271b ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46a5ea15 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47105397 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49d2b459 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c10abd3 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d83b9f2 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4da1d42f ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4defacf0 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e1e700e ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f460904 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x503ca135 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50ece84a ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x519c1f30 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55cac555 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x588e4f18 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ca191b5 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dd4c56f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6073c837 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6343aa20 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b9be0ed ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c126d58 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77e62c21 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x797015c7 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c9c7eae ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f5e87f6 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x818085da ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x843a497c ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a94f3ae ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8befedca ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c17ab0a ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c600a8f ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d3bde96 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f06cb85 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x912cd393 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93ce8367 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96c0ffdc ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9751e6d0 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98365e3c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cb809ac ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e9766d9 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3684509 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6fa3b75 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa4ef636 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaced7a60 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafa3380a ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1557fb7 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb652fb0a ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb69cc93c ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8dcc232 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbed2ccb5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1a3c0a6 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc88bbf54 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc233f85 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdcc461e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd28b787c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd31086e8 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd54e9198 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9b0a439 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd4fe7f2 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0396a5b ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe095f821 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe74ee4b8 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef28a4cf ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef8830e9 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0a34c64 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2c4643f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3edd5d6 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3ff7a3f ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf68ea167 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf721e634 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8022cc5 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9da5ceb ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaa31c00 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfed592f8 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8acd950d init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x929b37a9 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd2ff006d stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0828bef5 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1286457d brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x13d57db8 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x247b5dea brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4c9bd492 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x81474c14 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x83d96335 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc627eb4b brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc94c9e39 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcb62e208 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe62093f2 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf2b22520 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf6cea5fe brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x071f3f1c libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x134d8dfc libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x34930795 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3785bf29 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x47808039 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x61b76e25 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x759fe878 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x760021ba libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x782beb9f libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x861e9599 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9f449d4e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9f863008 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xabb40b6b libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbd60765c libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe0730fd libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2111d8b libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc476f6c9 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcfcfe532 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xea425000 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf922e1ca libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0098b6a8 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0309ff7a il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x078f7379 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08555b47 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0939f581 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1079f0d8 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13b8ea36 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14eb39e8 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x158dd375 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15ede987 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x161e5658 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19979e51 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x221217b3 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2462fe56 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29e7bca3 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cbfc63d il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x303453af il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31201b15 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33d9e407 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34aaa8c3 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38026d46 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x387d83f8 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ba852b6 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c19f409 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc0862a il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f7e1c9a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42c53f1c il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4344ffb6 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4770fd9d il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48249ff2 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x499d4767 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c617fb0 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d1efa89 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f965185 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50845e28 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x522e0991 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x568d11ed il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58c2900e il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58d82d1a il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c5f1c31 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f2c6870 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6105029a il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x665eb285 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x678068d0 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bfc8b3f il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x739db180 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74be2be9 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77b29e54 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78499b26 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7aa1f92b il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7edef412 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ff364de il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x841a6de8 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86b1aee3 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86b306b0 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87ab5abe il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x896e72a9 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a13a8e7 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8aab189c il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bc2094b il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ccf12ab il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91653ea3 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98c0597e il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0e1b3c1 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1a04763 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa48f9d63 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa5a92ea il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf4312c5 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0770dd8 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb36210fb il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3ca0b64 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb50b0634 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb565d558 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb76d8deb il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8365cf6 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd9592ee il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbef799a9 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf30a52f il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0b39c16 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7481942 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9675a9d il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb6ebea9 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1a1854d il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3094bf2 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd31a0f2d il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd47dfaa0 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb340618 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3ff6bfe il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4d71f08 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe53626a8 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7a743bb il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee1a9fb0 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee8934f6 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefc907f7 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2d86472 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf40b306e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa0f3b18 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaf4a04a il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x00dc99e6 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53b56174 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d1ac8fa __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b2c15fd hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b92fc59 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1379bd0c hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27c81ec2 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3ecc1195 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x43a756e2 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x44baa793 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a061f61 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c4fb50e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x61d96ea4 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6737b1a0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x749a4ff4 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7565eddc hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7a948f36 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x884638b9 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x998ea6b6 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a26007a hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa16aa97f hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa60c5803 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa689cd75 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbf579750 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd25a8691 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd79406d7 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf79d9df8 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf7b9e6f2 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1c881c24 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x34034f04 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x37356c66 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3f66dc0b orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x61d5b985 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x97fd0dc0 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x995f055d orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99cb4dca orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb03c6667 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc4130a10 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd68b8cd2 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xda5d2f38 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdc15bcb8 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xec4f3cf4 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffdf1d24 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xaf6a84f9 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x069ecb0c rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x022c5e15 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07b846c6 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a3e6a90 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bec8bca rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d9e129b rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e4e9b8a _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x277e012e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33a85a34 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a8fa75a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ebbd783 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40de4cf4 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f6505b6 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ad25712 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ae02f82 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63d41972 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cb835e8 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x729e45dc _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x757cc7f5 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e73c2c0 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8dd114e1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94c3b93f rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96c09a8c rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa520270b rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa756e27a rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb46bc978 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb94e0b73 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaf7defc rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcf00a3a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfc195ff rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0a9595a rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc23d8f15 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7a169ca rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc83230ae rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1153bbd rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5506dbc rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7a0d006 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2074ffe rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf098e788 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5442a04 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5d9077b rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8097fbd rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x04bffb3e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1b12339c rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd2ceccfb rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xec9f0189 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3209ca59 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6f36b51c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8523b374 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8bcd774d rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01ef84a9 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a6c9553 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0acf03de rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f4d7826 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b1ab032 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a2ce224 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c30b00b rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3349a149 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38e0c1c4 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44c2524c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46796f10 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4766723d rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d45d86f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5219b1a0 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c3b984f rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7007b466 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bd49e4e rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b41bc6e rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb00a94a7 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1e9c38b rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc617fe1f rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2c1b95d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe6444e4d efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe788230e rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8a13df7 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec37e7b7 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecd8369f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf36eebba efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf633709e rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7e31ad2 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x77543b10 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xea944c9d rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x9cb441a2 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x73762a9c rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0390247c rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f8f1e0a rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fdde120 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1584d1ca rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1af53f7a rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23b422e2 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x240f4c1c rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27c45d1e rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28747936 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3127c814 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x350fb2b7 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e3139e0 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ed15e6c rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47ebfd06 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49d258c9 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b84f66f rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4faecbdf rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x574484ac rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5852db9a rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5abb7609 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6407da33 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c6b7b80 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f88e269 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72f0a8e2 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74c1b16f rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7777e2ab rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86db783e rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ad8b37c rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f07f880 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9319fe00 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94528d40 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x972c3e90 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d19d990 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2776071 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3567de3 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa741bf63 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8b90d60 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2a372c5 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc85795c0 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca9e40ec rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd244bdbb rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3e4e710 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3ea3e53 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5bb750f rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9d75775 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdadde921 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb56b3a0 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1241954 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe19c6f43 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1b44ca5 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe27c920f rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5bcdd2f rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe627b640 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6baeeb4 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf21731e4 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf960b2f5 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa679bba rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x05080bd2 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x38ba695b rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x38f371a6 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe6b1a143 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09712f6b rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0ab4fad9 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0bc32550 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12acfed5 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fa56233 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x543c1368 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x594c879f rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x62137cd4 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6632ac1e rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x84230234 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x842746cc rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x873b0683 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x88f64366 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8c5a5873 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x912557d3 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa62032ec rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb9b26951 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc4cd5062 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc98fc706 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf27f591e rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9d440b76 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xcd4cda52 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4567004c wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x734662f2 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc66a52e0 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xccd0aa40 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2b973478 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x69f9b444 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x3679e6db microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4fa9a9b2 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x12667586 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5a62a2cb nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9c005918 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xa5bfb7af pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x49bd6510 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xfc409572 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0d85666d s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3acbcfaf s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xac48e234 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfde1bc0f s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x114e12d8 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x265dd106 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4bd54393 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x62c50c7b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x91405e20 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x91425ff6 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc69d2371 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd9dddc62 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xed7eab59 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5b7cbc9 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02cbfb52 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09659fad st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f13af11 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36f66429 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3ec7da72 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x59a177ff st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e871e59 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7a087caf st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7e1256a3 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7e70177f st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b7edd7d st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f436af7 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99a1ca25 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb62b8baa st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4567531 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd730914b st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf7e984b st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf7522c2d st21nfca_dep_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x0cd2c968 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x255de9a9 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2ea5039e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2fcfdec1 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x43da3cc4 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x528052cf ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x6801e3fb ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x704271a8 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x86cf4113 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb249c5cc ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xb49fd04c ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xb52e71ef ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb66776cd ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xbbe87d42 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xcf28904b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xd0f45117 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xd207e1be ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xe059430d ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xe37738e3 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xf1884785 ntb_msi_init +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x900554a6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfe6bc00c nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x060d54c8 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x0c7ddf0a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0c80ff60 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x0c9ff00e parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x1399d215 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x13e79dac parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x239b09c0 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2a057a06 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x2d91d1f7 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x355f824e parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x3745c55e parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x4610ed83 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4cef878d parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4ef556ea parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x56184b19 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x5d3c443d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x5d888d96 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6521e84e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x69c0d7fb parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6a30764b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8527d5e9 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8c0bad3a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x8cbb5c1d parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8d113da4 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa19faf27 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb7d663dd parport_write +EXPORT_SYMBOL drivers/parport/parport 0xc02663b2 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xcd610134 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xd5ccaad6 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd9337022 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xf16f0597 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x91ff7a7f iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xf1e94c81 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0ae52056 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0d41e1a5 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x17494155 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x444ff2fb pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47c484c8 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5b6b5bc8 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7b98fce4 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8d94a742 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaebaa723 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb575f757 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x6808e5b5 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x29604145 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x47a9c79e cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x8125103c cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc63ae561 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x72efc5da rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xc4000567 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24a07876 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37eff1ad rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ac8cb14 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x494ca346 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5b684647 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x67dfcf66 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7945436f rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b73e970 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8afb51de rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9a6a055e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9a77b567 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa7b6d534 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb569ff68 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb7033491 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf0c6bf21 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xff935941 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x0b5dfb15 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x90b6cecf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0f6f5bb6 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x39647812 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9c6a943a scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfecd0af5 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00789256 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1cb0cf4b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1edd6f49 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f760cdf fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x24cc4e66 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x28c9a0ed fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3b416bec fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c3f83b9 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x91a59f1b fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9900a0be fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b1c3d6c fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0bd44232 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ab6f68a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bd98725 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2062fcfe fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22ca3f8e fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x233e630a fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x246836fd fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a718740 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f1b4b72 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32b28209 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39072bde libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a110208 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3dc7278e fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3dfbde3b fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ed5c7a3 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4452f5e6 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x459d62ae fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c91c47a fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d848851 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x521f29cc fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57002258 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x596709aa fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fc9720c fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66290bd2 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6658a918 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fb6c758 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75338b4e fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fe0573d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82dc8d69 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bdafe1f fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9007e02a fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9825462f fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6c13c44 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa745840e fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8c77527 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb142156e fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9f78bca fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf6f212d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0510245 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2680193 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4de8685 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc160e74 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4188575 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5706157 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea3be33d fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf05a13cc fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e72f2e fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2eeb148 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9bb120b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff67b5f8 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2a7bf3b2 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2d1962a1 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x68b1bab9 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xf20e8d1e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1e2f17c4 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f563bc1 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x26f8ca9b qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x27ab8d05 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x34412a82 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c39b79f qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x49e48b23 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5c2b580b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8e2ef30a qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd2e4515e qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2bb68f0 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfbd5358e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/raid_class 0x17393be3 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x599efed8 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x97cfe32c raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0b045d02 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14268e69 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15d8d829 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16f76fbb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x360a7015 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43b83fa9 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x58eeb1d6 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61fb4fc3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7499fb3f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ec27dee fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb522675c fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4a9bcee fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3773811 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde625f66 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7e0a331 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf4c1813f fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfa24bcdd fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07683a01 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e32dcff sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16187757 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29b13fce sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ba29160 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d8cb3a0 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b5462c5 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x555468cf sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ea17599 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x618b6f4f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x659d0ff9 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x733292d8 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7de1368a sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99e14bb9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab791118 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae005534 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae775957 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7509f95 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc44f6707 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccffd43d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcefcdd1b scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf4636e4 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0afd9b2 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe42bbce7 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4806f69 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe491e683 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xebb0c41e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedb992b0 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf07d58f3 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x08e02635 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x23acb68d spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x70b268bd spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb111fc0d spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe52d4633 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x17f28553 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3f6a615d srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6a78d68b srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xaf2181d7 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb71d9a6a srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x749dabcc tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xe4813e11 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x24a0fc62 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x30f62a26 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3268261a ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4d0ab425 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5c6fddb2 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xaa5f4677 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe3c5b6b6 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xef476875 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x6b85db39 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x718b2169 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdb008703 dpaa2_io_service_enqueue_multiple_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0f67b93 dpaa2_io_service_enqueue_multiple_desc_fq +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f4b7285 cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c91b6c6 cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1eb577f5 cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x27f7a778 cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x305a325c cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3203b71d cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x35f7a3cf cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3bc70297 cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3d3c435f cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x461737cb cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4dd68ea8 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bcc91ec cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x62622035 cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6482132a cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6e8c7fcb cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x81232e95 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf79754da cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf80937c2 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb55916e cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x039c15af of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0064cd19 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x046a9f6d geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4946fd04 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4ac77027 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x660e89b7 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x68bab43f geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x72418e88 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x740455dc geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x74907e34 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x878eb99d geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x92a8623a geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x95a99ec4 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbcda87bb geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc8985279 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd199482e geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdcf2afa8 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf89a5ecf geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x16cfc7cc qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2670205d qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42db2be4 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x53a9ff9e qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x541b65b2 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6cbb0417 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x82cf77ca qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9ae2eb16 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2f42a9f qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe92b4260 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x89b0abcf qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x060f301b sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f9301eb sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2bc58231 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2c3574b3 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2da7cf91 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2fd7402c sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x391a5f29 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3d43058a sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x599aebe8 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x637e90e9 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x65847616 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x692c1255 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6a6f2022 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7f211224 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85a90653 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x917eedf2 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x922f3922 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb4742be9 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb72af974 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbaabf622 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc45f7d27 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9d5184b sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcdebe494 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe1c34473 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xee891534 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf30a3a51 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x200facb4 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2de30c99 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x369182c3 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x386d42b5 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6cb28e28 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7444b5bb sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x780bde45 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x80cc5d52 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb9de8876 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbb7b6194 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbfbbc26b cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd610245d sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdd55676d cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe5aacc50 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf231d388 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf90f53ad cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x132d6850 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x0088c7ce ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x3314a395 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3ea44774 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4ce010fa ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x4fb280f4 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x67b5a966 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6be97ecd ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7ce83de0 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x83b1453e ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x856a9642 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x85ee02b2 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x97630604 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9d7d1119 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xa340b104 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xaaaf320a ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xb16b4959 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf385143 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe08ca43e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xe1731c76 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xeb045fc4 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0409b07b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d5523f5 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x103f0833 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11989e61 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13b420cf fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x186ed519 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f48d933 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2508a7d4 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3728a224 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57ea0d93 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x63c6f02f fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74cbb710 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7505f422 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x759c6564 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76767a63 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79c2d286 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x888c4384 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8899def6 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7354951 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa909b93a fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaea94bfd fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc29e48cc fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd73a1cf4 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc2a046a fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe22f1375 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x055ead16 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa9e79b0b gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xaf3b828d gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x31044bb7 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x1a36ab55 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xc6441ead sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x09fde759 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x193752fa videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xe8154b69 videocodec_unregister +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xf893c2e2 videocodec_detach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x69999bbc nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xe3afc674 nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x004518ec notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05e7e8e9 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d93be47 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ed599c7 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x118f2397 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1532f2a3 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c350c93 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d429eb6 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35592ff9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35927dd5 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x369e77d5 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x373986e1 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38b5b836 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e7f19ff rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f11c990 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b0b46af rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bdd716c rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x603d1a81 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x669d2903 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cdadbc5 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74505200 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8bb48202 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e811411 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x917101fb rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c8ed87e rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0980f8e rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0c04d45 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa1da52d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae37861c rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0d0254d rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb26b3001 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb810c929 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbad842c9 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc514c4d3 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6435a32 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca94467f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb348290 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc90f336 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdc94cdb dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdfe2359 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf1a35ba rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1669dd9 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd62ec2a5 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc3a9ebf rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde20e8ee rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe66b06fc rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6b3c805 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee201a3e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe170f93 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0244204b ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x116f6ea9 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29afc05e ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d908d0c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32dd75bc ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x367dea4a dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3827f5f3 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3da73c26 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e42e368 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45624c9f dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b87538b ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eeff050 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fa22e60 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50785e98 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x576c0e1a ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x608acdfd ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63700b66 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67f17e6c ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74bb4d7a ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77304552 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78879412 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a8fa07c ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d45ab59 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88152e68 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88c49fc7 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8905de3e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8eaf25b2 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x918554ad ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2cd4299 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa59b395a ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5e407d3 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6f20fcb ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa195f86 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb11445e3 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb69e83a6 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6f96bc0 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbea8d96c ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf984394 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0568391 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0823053 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc22cce9b ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd786341e ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb771ab2 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdef8282a ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe52c4ff3 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb5c4ddf notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf034b253 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf218c2c4 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf451777e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf78c0005 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa5ca944 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdb18767 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdc4a6f2 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x2d020e28 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d5ef163 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x73c88bfb vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8ff6c2b1 vchiq_get_peer_version +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x92b2feb4 vchiq_bulk_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9d6478fe vchiq_use_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xec21557f vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xf8235723 vchiq_connect +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0180d47c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0354362b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06f76a1a iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d6ce256 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fa8fcfd iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fb138b8 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fe9cd84 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19ddbfdb iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d300438 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e6e64e1 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2081347c iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d18a22a iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2fb8dc55 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3330f6c7 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d070a42 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55b64b0d __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55b8f5f5 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x598221fb iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59e09ab6 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f7730c6 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fbb9989 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73a7acdf iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74d30602 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x791084fb iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c461894 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x865ea9b6 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8908f015 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d8e071a iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e0fbcb6 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ec84e4c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fe6bd01 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9be7c3cc iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ed47b15 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa46ee0d5 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa65b04ab iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa846c925 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb77a6650 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8a7eec9 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc24951cc iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4023dc2 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4e2ccdd iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec42f4dc iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeea00ac5 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef36f5aa iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/target_core_mod 0x075aa925 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x0843371c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x10e2146d target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x22e5fade passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x230b645a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x26698737 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ad97aed spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x32529748 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x334ab29d spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x38dcd5c1 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4440d1fb target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a486846 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bc77128 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d32d32e target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d530adc passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ebadea target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x50ebf984 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x512e369e transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x53777043 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x58516cfb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bc6910d transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x62764849 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x643bf64a core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x65dcdb04 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x68cc809d target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a56b009 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6aa22fae target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cd5376c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x7500f5a8 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7636a889 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x770da480 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x785901e4 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d9b162c transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d9c9b5d __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e81933f target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fb4b72a sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x853649bc target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a34aa43 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e5faa81 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x9395c151 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x95205339 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b6be531 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b9d2a28 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d34d30a target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d58119a target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de94e22 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa33cd38c transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7e86d64 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaeca5dc8 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb253b9c1 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb64e428d sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7e85f69 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc26c488e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3bfd962 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc75d9ce4 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd29b6bb7 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3caa9c8 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3cf6fd2 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5451480 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9aa0f02 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb076b50 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcf31dec target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf001759 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe253cfe6 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3d2db27 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe92ce142 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xebc807b6 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xecf88062 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xed4edfc3 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf18c862c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1c5bed6 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3920205 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdebf8f1 sbc_attrib_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x607c31a2 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1159ecea usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xcab18b7e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1003a874 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c431e13 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x45f51bf2 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x53c2c668 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5706bfd8 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6304e9a1 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8721b69b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x87b2934b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcca877f0 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xee1308d4 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xffb8a38b usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x791a72a8 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xce84c00e usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x232c4a2a mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x729141fc mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8b7c4810 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc2cc7a98 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc85affb2 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc980ae06 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdeff9a67 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe8dd49a8 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x00e0ded7 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x085ebe26 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xb446a2c4 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xe39ffe75 vfio_register_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x173d73c2 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xb41ac0b2 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7e203403 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7f57b00d devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd11ec58d devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd485b373 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2345b145 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2f35f2f8 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x48e101d1 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x54f59fa8 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x816faa65 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x990e0824 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb86746c3 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x7d251578 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x924b995e sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xbf207d3d sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xd80968cb cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xcd11734c mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb82f8677 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd528a9e7 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdd8efada g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x486b6192 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x700be354 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7a253241 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xeb89591d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x72697ba0 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x634a4982 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x011e9aa4 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0803d8f8 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7295b8fc matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7ab0833b matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x64120c36 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x81722e6a matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1211c43b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c8d3e78 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6127bd0b matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8bf4fe60 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xde038fb1 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x503f07e6 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9d59def0 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc813c2cf virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xecfc56ba virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6b216d87 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6ca0a763 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x442863d4 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9aa5d843 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x2088bc46 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x55d2f438 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x79fd3b11 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf371e113 w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x12b36635 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x13c0c7e5 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x14d3f716 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x184ecb3e __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x21326f35 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x28fded02 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2b1a5821 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x37ac230e fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x39ea58af fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x3b78dbe1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4e3acaef __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x55df8294 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x5eb1071c fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x625ec611 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6697fcd0 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6d9d6744 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7fe3f049 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x83b78640 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x97096f00 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xa5e62737 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa87f5e00 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb41a7917 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xb5741c5c fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xb62aa72c __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xb79373b2 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xbc2aa6e1 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xbcc77210 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbe323a4c __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc334bbd5 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd387e27c __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xd3f6ff39 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xd4072322 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd63fe805 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xdec7e1a5 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdf804103 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xe5cd044c __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xeb572d20 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xed1200d0 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf241868f fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xf53dcf39 __fscache_check_page_write +EXPORT_SYMBOL fs/netfs/netfs 0x0016467a netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4cd711c8 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x4d0bd437 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x66e57de7 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x717e0628 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1a2c73d3 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x38f58ad7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4577a367 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x6b9eeee9 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc0fac21c qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xc1c42861 qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x00475622 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb245709c lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x2b4846a1 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3c2747bd lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x612c8c7c lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9d46c0f2 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcbc65367 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdb95f068 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfe0e020f lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x06635533 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xde1881b6 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x25c62241 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xd944c30c unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01722957 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0514f235 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x104f94df p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x106a3ade p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x1430723c p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x1ad8a2e9 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1af7a8a1 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x31a23dcb p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x365a6999 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x3cc36a18 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40a05884 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x43430656 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x49bec0d5 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4d907498 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x52c039d4 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x604686ff p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x64c1bb75 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x666ca738 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x66f25df7 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x67b97306 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x7104270d p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x77320c50 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x7f4f48cc p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x85b1314c p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x870872f0 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x8bc17d03 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x8e60d846 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x8fbaf538 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xa4aa77ad p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xaa53019c p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xb146220e p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb90564ad p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xba4363c8 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xc902bc63 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xcb5e50c9 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xcf484156 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xe3ae0c20 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe81f4347 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xe876e28c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeacb84d2 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf2423bdc p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xf31ea1eb p9_client_cb +EXPORT_SYMBOL net/appletalk/appletalk 0x07fdaea3 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x76312a39 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7e7e4e31 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xafb8b027 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x005335d2 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x0b7c8094 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x1adb9905 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3b5c985f atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x4e8bd49c atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4f3cb42a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x65ef09da atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x669e2dcb atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x6753b050 atm_charge +EXPORT_SYMBOL net/atm/atm 0x76227179 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7a76e776 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x864b71d6 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xcc5a7e3a vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x193d0f0f ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x238c964b ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3286f0cd ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9a4bb992 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xbe12c7bf ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd4fb6e7e ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xe89ae72c ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf6f312cd ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b4ec51a hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x147e8b58 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17de4a4f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17fa45ec bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x182809af l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x199d4145 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36943edf hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ff6769d hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x444cf6cb bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5006a3a8 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x567c788e bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58455286 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5be4797e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63317152 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67526406 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7089d86c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x732e2d5b bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79d25091 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5e6f72 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x800b7b69 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80aa3943 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8598d6a1 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85edcc3f hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9398c03d bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9aa5a1d8 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa56e15fd hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6c1b814 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa971d223 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaaa4a8e1 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb204a51b hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6857572 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6bb865f bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8c270e9 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd89e5d3 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf7cc6fa hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf7e7f5c bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5d782b4 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf2ca4e0 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3dd83fd hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb338cc3 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec8e3ce3 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef2e5110 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeff8946b bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeffd37df hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf89c1e8c __hci_cmd_sync_ev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4e665cc3 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x649231ae ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7c82bbb5 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbb253003 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd0a8cb48 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe44fc3a1 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6d6b27eb caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8d46e4e9 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x8e3071e0 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x8e9462b0 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x9199e11d caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x3b1afaa2 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x4c7fa32f can_rx_register +EXPORT_SYMBOL net/can/can 0x5a8e664e can_rx_unregister +EXPORT_SYMBOL net/can/can 0x99dc5171 can_proto_register +EXPORT_SYMBOL net/can/can 0xb0094440 can_send +EXPORT_SYMBOL net/can/can 0xb522963b can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0070e96b ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x01036ae2 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x01cdf99e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x06053e09 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x0724c68c ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x0fe2fc5a ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x155ce41e ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1561b9a3 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x15a8a3ca ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x1cda4bf3 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1d1f5344 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2390b1b0 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x254e066f ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x28d07ee3 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x29030425 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c6241c6 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x2ec661c7 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x30d38967 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x36a4369f osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x38505e28 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x38832615 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3ab2a435 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x3b84b62d ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d69cd56 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3da8f399 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x49ba9505 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x4c727845 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x518270ee ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x5207291d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x56415785 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x586e6f47 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x59a9adac ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c39163e ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x5f75441d osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x5f83fbf3 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x604124f2 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x62f51f72 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x633d824f ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x641580af ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x64478507 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x64c13ec5 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x64eb5526 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x66654347 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6cf98120 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x71524d6c ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x71b3fb85 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x73748294 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x75240b7f ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x75ad4982 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x7c6ab9e6 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x7dfcf42d ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x80d4108e ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x81da6824 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x85135385 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x884cda0d ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8ba974dc ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x8c63ff7c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x8f0e6ae2 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x922e116d osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x9638d1e8 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x971a456b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x996426e8 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9eaa3b78 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x9f1071ee ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa0ff52c4 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xa296bf35 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa7e2673a ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xaa056b68 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb11a9543 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7d53c21 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xb995bff6 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd8cde47 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc156419f __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc20e1e35 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc57e21df ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xca1fd8b6 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcd34c2bf osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xcdb78ab2 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xce116b2e ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xd05639f0 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xd08feb6f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd226f31c ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xd37e91c9 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xda32ed3a ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xdc26d567 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xdce6f99b ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xde940199 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe676fc9f ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xe70e6bca ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xea197a38 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xebf70f41 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xed161ce1 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xed24d721 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee2e57c4 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef1e11b8 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf29551b3 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf5885739 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf6904e49 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xf97c7250 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xfdad4238 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x05beedba dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x92c0fd10 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x51ff682b is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xbf594b60 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x030ffdfa wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c877a95 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x77f0f254 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8a100d60 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa85cf045 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd3ec30c7 wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x469ec3ae __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe631efd0 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xffa468fd gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x290fd49a ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8dc20013 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc534d8ed ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xffc64b35 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x26c48c0c arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8fca3504 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x96e4b2a2 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdd80ef6c arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2ac8a540 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x699c2dce ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd2389c3e ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda2ed920 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x37d87d08 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x53c4864f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xad5d927b udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x269dba5e ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x282463bb ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4b13e175 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x551c0ae3 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x615183d1 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8f317cca ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x97e6dc26 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa59d0079 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa8269ac0 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3e64370c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x96e84836 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x990ad420 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdfd36547 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x32a4113f xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x4ab91b36 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x437f6048 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x77eb485e xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x0726ba72 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x23f1ae0f lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x3b77f6e2 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x441eba4e lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x9fb63f09 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xa21ef233 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xca0e1079 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf6fd63dc lapb_register +EXPORT_SYMBOL net/llc/llc 0x0f7526ff llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x42126589 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5a4b0165 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x898d4803 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x9ba571ad llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xb4f8e6af llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xf8e50e84 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x02006c70 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x029c5819 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x04c2b633 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x05dc620b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0706d412 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x07995809 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x07d1f366 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x1577dd07 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x19b47e6b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x19e30bc1 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a65ff99 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1ac9eec3 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x1ea0866e ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x1f20e7e1 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x233d8a09 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x23d0a29c ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x24f2293c ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x25fbf3ab ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x26be3ba5 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x27141789 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x30ea17d5 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x36020f71 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x364caa74 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x37018f46 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3a3cf837 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3a4627ed ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3ae20dcd ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x3be9e0e3 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x430f2730 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x44d43e6b ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x4545f5bf ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x51dfdf5c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x524d001d ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x57f85b04 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5891d6f0 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5ebad9af ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x5ebc86d8 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x611bda1a ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x65cdaf2a ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6a017064 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x756f02be ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x80ed0c40 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8174857a ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x85032062 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8604da7a ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x869aa750 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8739f310 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8b4870aa ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x8b60008c ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x8c895403 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9089ec11 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x929c7b43 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x92b753a6 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x933e49f4 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x97a58b3d __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x99aa3553 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x99bca581 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9b31a44c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x9b52b125 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x9c3db7b7 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9e219f3e __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa020d2d4 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xa1346f69 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xa3a0368c ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa5668765 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xa7932ecb ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xa7bf907e ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xa9466e30 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xaca435b5 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xaca9eb20 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xae2e81d1 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xb3305f70 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xb48829c1 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb524e485 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xbae9616f ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xc1b78def ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xc3181210 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc56a54ae ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xca5971c4 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcb289d12 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xce61e0e2 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xd290a988 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd3ee9555 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xd470eb26 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xd812c26f ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd830127d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe1f7571a ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe7442110 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xeef8bec5 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xf0094b80 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xf0213143 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf131594d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf3b43476 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf4c30bee ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf6714527 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf85f6670 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xfb4e5929 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xfe08e784 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xfed49137 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x0a923463 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1fcebd87 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x3729aa8d ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x6c256cfd ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x92ad4114 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd401fa44 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xde4567a3 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf6ff4253 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x01b769a0 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0a38d2fd register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d68b272 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f527134 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x267280be ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x41ca0cf9 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x44ad9a1b ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f78ab05 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x87041aea ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2041a4a register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa588970e unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xab66c5c0 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc1d97106 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc5f041e4 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce290cd9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc6ed2b47 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x42402380 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5f92e8bb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbbc28fd1 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc9d029ac __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x38f5aaf9 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x7846f9d8 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x79109a76 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7f0b9004 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x94fd92af xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa0c7606f xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb447c751 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xbaf19472 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xc18aac93 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdaed758e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x11a9784c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x192b2a4b nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x24db4a98 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x260becb6 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2ab179c7 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x308bf0ef nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x3e2d489a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x3f99b801 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3fe510ed nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x64bcdcb6 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x86de8bf7 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x885b5a92 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x9388af72 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xa127ad3f nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa6154dd2 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xac4b22bf nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xb2aa723d nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb372b99f nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xb58ad652 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xd2d71b70 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xf2e09258 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/nci/nci 0x0d987f56 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x15b8a1b1 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x1d05fb49 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1d6aab48 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x2859c6e5 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x2ceb15ee nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2d407377 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3bf9f886 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x43a7dd4d nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x467df0b9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x4895a0be nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x502a8150 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x593229fa nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x5c363a64 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x71f1e8b0 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x72146b09 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x78e65a12 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7b25b16e nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x8774f830 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x89365b98 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8c84f72a nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x9f7465de nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xb41fcc4d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd1c81fa1 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xd36f6c38 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd58b6a3f nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xdfa738c7 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdfc75284 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf6de353e nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nfc 0x04e730b0 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x1027420b nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x177ae940 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x17fa8ab1 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x2af80fd0 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x3370c37c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x3a0afe9b nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x43223fd2 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x43b46d68 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x48b9af47 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x48f50310 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x57be8bdb nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x646e4115 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7f1d9cdf nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x892bb331 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x90c4e51e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xa1c494be nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xa3dd6962 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xa61be379 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xae936dd1 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xbc2bfa0b nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xbf027fa1 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xd6b050eb nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xe59521df nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xee167daa nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc_digital 0x61a144ad nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x70e8ef46 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xec238210 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf0c7d4f5 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x0ff83ccf pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x39866734 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5161938f phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x55acdc58 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x8198fb09 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x83f0d00c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x9563d789 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xbfb26f0a phonet_header_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1106a55e rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1be08df5 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20b5670d rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x30272ea2 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39daadc5 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4806bbbc rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x52e54bfd rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5de56120 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b6b6db0 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa2f58ed6 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa855eb08 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb1ec7e89 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc895da56 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xccf5b2d2 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd31acf74 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd69b79c5 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdaa80478 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xddc036ca rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0x3ff2335e sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x632a8300 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8d17b292 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf79572c4 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x755c6d35 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7e4e4598 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xcebca844 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xda7c9edd xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x207f4391 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x37ae4ae6 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x6c469940 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xea7c5849 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x71b7bfa4 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x01650d1f cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x03ad72d0 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x04d7dca0 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x0509e4f8 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x0967fda6 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x09dbac0e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x149e8f5e cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x167f7bcb __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x194e39e4 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1a9984b7 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x1c807a8c cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d3af5ca cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1dbfb3da __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2079466f cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x29bd61ba cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2af3c822 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2d0a6d71 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x2f039de2 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x2f395ed5 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x301ba893 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x34941817 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x3d1b09a6 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3d483eca wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x46b8b44f ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x4fe86753 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x525eca2b cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x52feb2b2 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x550b945d cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x559e08f2 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x58480e3b cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5a670019 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5f66d351 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x659c0509 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x66630d47 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a8125da cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6c28ff cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x70ac1bca wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x71e25822 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x743dabfc cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7d463294 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x80a48e2d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x80ab7126 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8286de0f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x84051699 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x861d852f get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x884f82ba wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x8a3f0cdf cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x8d09f9c6 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x8e0a1657 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x8ee8221f cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x93373563 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x942cdb44 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x95be61fd ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x98821bee ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x988316ab cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9b093726 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9d8fd26a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xa0f5cde9 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa5065b6f cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa5e8c3c5 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xa854f940 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa856d672 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xa8f6ae2b regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xaa5e8fec cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb13ca874 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb26685cf cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xb62cd8f4 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xb7216d4f cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc30adb15 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc3b8a33d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc80dbd71 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xc87b85af cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xcb086943 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xcb119ec7 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcebb3e2c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xcfb48a91 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd38e09b6 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd419c585 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xd5336b2f cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd6790728 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xdb2aa70c cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbd9c58c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xddc1c6d4 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe0584632 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe404fd81 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe4c5b80b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe4c5d810 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe5813335 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xebaa8d00 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xebc27ef4 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xee6aee1b cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf81700c0 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf857141d cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfa322999 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xfe416a5b cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xfe5080b4 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xff4257d5 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xff724d5a cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/lib80211 0x4d78d7b3 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7d3e5b32 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x83f37c21 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xac1bbf56 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdb7492ea lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xea65ae34 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x75cbe3f9 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3447230e snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x41d6e7bf snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x53158c82 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x965c5691 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb3d655ee snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x4b02c08d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0278b6ef snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x067963d4 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x0702580b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x097b9d3d snd_card_free +EXPORT_SYMBOL sound/core/snd 0x0f34a661 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x14d00293 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x17289d47 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1c6e40f4 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2c539e35 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x2e3967c0 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x2ebeaf38 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x38b2c302 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x38fc1394 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3afe352f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x50eb0757 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x538fe275 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x55370591 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x57e184ee snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5a9ddb4f snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x61904bf8 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x67d4f243 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x741a4325 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x7aef10d3 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x864bfb7f snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x8833b583 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x8dac6ff0 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8fcc7ae5 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x937dc0c4 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x94ad4060 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x97a438e4 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x99cfe2c3 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x9df362ad snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa24148c3 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa5e77773 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xac72eae5 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xad0a79b3 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbe4b8ef8 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xc4240da5 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xc5437502 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc631957a snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd5b39864 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xd609b9e0 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xe4d425ac snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xeeb148dd snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xeed260f3 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xefae107a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xf6ae7d1c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf9d27432 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x05225b30 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x1e7e198f snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x3b902418 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0104f735 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03aef4d1 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x06964580 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x09a0e8ab snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x0a5daf8b snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x0cc56f97 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0e999fe3 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x12b32a5a snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x1458c2d2 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2629020b snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x2f560053 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x3412e753 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x3534ab06 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x37183947 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x376bff21 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3bbce320 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3f35889f snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x49415f01 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x4aa7bcff snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x576e59a5 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x5d33884c snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5d8a58d1 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5f65bcd6 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x60a6ec35 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6a3eb09d snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6bf13fa3 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x75b37bb0 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x7dba8d73 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8ac3699a snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8ef443cb snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x9396a0d5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa3bc1df3 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9b095e8 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xae8f8345 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb4283767 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xb479b857 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb8a41174 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb50aea5 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xbc393e80 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xbe1421bf snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xc0733566 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xde9957e8 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeecc727c snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xef75f10d snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xef8d7bd2 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xfdc938d6 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xfde6486e snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffa67d6c snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-rawmidi 0x091db64f snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x095454c8 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0cc4ba4e snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0deca9d0 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x23fb2d8e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b9da132 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33fdb8e9 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3bfe0279 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a556c3b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x617b8ad4 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x725ac6fe snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x804da3bf snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ccb64b snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb9fb157b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd88dbe24 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd138fa9 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe66e9b05 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee659f6f snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee96784f snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7cada7c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xb6c12140 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0205c340 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x0d5e0ef1 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x279d5cbe snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x32dde330 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x338da563 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x3d388b61 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x6ab796f6 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x786447f4 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x9da38ba9 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xa6f93f49 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xa7f78c5c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xf12fff0c snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf188e4f8 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xf6fbbd26 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfc518aaf snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x7c5e5251 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0162de51 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x027d1265 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0ae1fc9c snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x34f59ea6 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5869df38 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6930953a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbf1518a4 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc28ca0bc snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd619130f snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x06a56a6f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x080368f6 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x12efc69f snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x31439031 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4fa3b617 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x842d056a snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb43f0746 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd8560281 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfef2a52a snd_vx_setup_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01b10b7d amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x112cb5ba amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17eba494 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x264ed987 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37c12159 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c10e7be amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c3c9c2c cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f1ee14b fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fd411a1 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60f1058a fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x613c0009 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6cce5bbf fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72a1af65 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75fe2bab fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x761830f1 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cb7602c snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8634275e amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b87da07 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94179238 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b806829 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b864ae4 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa68f9b2e fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1e0581c fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4fcedfa cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc23d9e23 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6b17a61 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcba60fba amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3e3675e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9add5d9 iso_packets_buffer_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x22cf0310 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8b9fdf26 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1c9f8285 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2c7a4324 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x70b591ef snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x74baa18a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x76b7624b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7e21ec2f snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbaf0cb87 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xce1cc758 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4bcf867c snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4dd3edf3 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x845810cb snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x86e787ee snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3ebe005d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4db1bcc9 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x80fc54c7 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8b16ae7f snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc8a94a8d snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeeb0ca31 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfe05674f snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xff855504 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x11bebf7e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x31b8c8ad snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x55d3833b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x94881088 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc581a989 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xed3bed5b snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ea6a342 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3132a6dc snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x432eebe7 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45bd8449 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49aa5c2d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6887392c snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c6ff3ae snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x86b40d0e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8dd3306e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x95540ba6 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6c98bae snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb307ac47 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd1f0e569 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd5362e64 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd662a55d snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd71a7e27 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd4c15c7 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x03cc84ff snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0e7aa867 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3350b2c5 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x36883a87 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7b68be5b snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9c085af0 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xacfbe1b2 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xda4e11fb snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfa3c25b2 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x511db0e3 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8f0bf885 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbfb77fd8 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c99cb18 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1749ef9f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19490fca oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34b0b51d oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36f49a2b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3737ffd7 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b6371aa oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d8d6e75 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7ebd169b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90a35db5 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a50ac59 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8214922 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc14b18c2 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7178ceb oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7726f83 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd859b80 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd8e8c01 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdbe55f5c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe280ec2f oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe8d73210 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4ed8ff91 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5721dd82 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7c1e1102 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa025ccc8 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf29a8791 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xe6cfe2cb adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xb7c149fd wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x582de6a9 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x69d71c49 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x976f0e3b tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9c4281e7 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4c4182bc aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x939a1cd4 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb2a61dbc aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x513544e6 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x5822b6ed aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x6f1d089a wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa36e202b wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xde8f629d wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xdb63acb6 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xe2595030 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x970536ea q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xb42eebfb q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x1f53c6b4 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xb122fd7b snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x050603b8 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x0e29945e sof_imx8x_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xb089a07b sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x760ad2ef sof_imx8m_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a75a42e sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0abcaeae snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d8fa8a0 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x129afe29 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x140eac9f sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c0ed5e7 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2422a20d snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c1af696 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x314a94ba sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x380bdd62 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3caf446d snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d4f600d snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f4dd032 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x409ea78c sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49ccd3b6 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c2282b5 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f709a11 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53ac842a snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5506a8c7 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fdbb55b snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61b47224 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79576390 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a8bfc4a snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7da8bb53 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f22c84b sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88b57a57 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8938db75 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ad80fe5 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c78882e snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8cfd01a2 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9741df8d snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa00c6099 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa651885c sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa83f9f7f snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad770657 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae16ea83 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae6d1b9a snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb25e931c snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb437c0c3 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb9ab8417 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbc479dc snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd77aa80 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe3ca92a sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf609a55 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0480de7 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc148d07b snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc14aeb8c snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4c3e76b snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc51de5f1 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc79c8cf2 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcddef8ef snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdcc9be6f snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe537bf78 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7f1753e snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9ad3fc6 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeea3335e sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf75b6cab sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8c016ea sof_machine_check +EXPORT_SYMBOL sound/soundcore 0x2fb4c5bb register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x5d1bfc0b sound_class +EXPORT_SYMBOL sound/soundcore 0x76f9a811 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x87e89334 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x901fc85d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x20c8cc30 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2c306ab1 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6dee8f2b snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7a1ec19c snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x890da37d snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf6cce85f snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xa62907ce __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00298d9b netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x00324822 pci_iounmap +EXPORT_SYMBOL vmlinux 0x0037b397 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x009ea28f bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b53311 may_umount_tree +EXPORT_SYMBOL vmlinux 0x00cdc6ac sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e4cf4e scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x00e9e434 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0107c0c6 tso_start +EXPORT_SYMBOL vmlinux 0x010c24b2 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x01104ae3 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x01111ab9 param_ops_bool +EXPORT_SYMBOL vmlinux 0x01158ed0 cdrom_open +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x011ff3e7 generic_update_time +EXPORT_SYMBOL vmlinux 0x0127bf28 blk_get_request +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x013b7d45 kernel_listen +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01517761 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x015b2358 input_unregister_device +EXPORT_SYMBOL vmlinux 0x01704a48 set_page_dirty +EXPORT_SYMBOL vmlinux 0x01733048 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x017513dd cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01764d18 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0180a431 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x0191547c netlink_broadcast +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x019df67b fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x01afa048 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c7aa01 module_layout +EXPORT_SYMBOL vmlinux 0x01ead472 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022a7add simple_write_begin +EXPORT_SYMBOL vmlinux 0x023bd539 param_set_int +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024e190b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x024ff210 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x0256fb77 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029a4b96 locks_init_lock +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02ae7750 seq_escape +EXPORT_SYMBOL vmlinux 0x02b037c7 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02ce8450 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x02d4713c __register_nls +EXPORT_SYMBOL vmlinux 0x02d938a2 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x0331a94d keyring_clear +EXPORT_SYMBOL vmlinux 0x03320268 key_task_permission +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03488ac6 d_add +EXPORT_SYMBOL vmlinux 0x03553dfe tty_port_put +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036ca92b inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x03721de4 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x0379f1ba blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039db464 mpage_readpage +EXPORT_SYMBOL vmlinux 0x03a98360 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c86f84 qdisc_put +EXPORT_SYMBOL vmlinux 0x03cd891d netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x03f23079 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040129e7 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x0409cc71 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x041e7ad1 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x0429c983 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x045d917a xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x04683908 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x046b138e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x04712a5f inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x0472e488 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0491e9d6 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x04977d80 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x049f15aa pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x04a128b5 file_ns_capable +EXPORT_SYMBOL vmlinux 0x04b7f25e mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x04bcc9db skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x04c54584 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x04c9146a vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x04cfceca truncate_pagecache +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04da192e kill_anon_super +EXPORT_SYMBOL vmlinux 0x04e2d62b ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05218f60 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x052371b8 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052fdba2 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x05375ac3 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054f70c8 dev_load +EXPORT_SYMBOL vmlinux 0x0556b5bf phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x05704938 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x0588a254 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x05941f7b __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05b7413e unlock_rename +EXPORT_SYMBOL vmlinux 0x05c76876 seq_puts +EXPORT_SYMBOL vmlinux 0x05cdb6f2 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x05ce3453 phy_init_hw +EXPORT_SYMBOL vmlinux 0x05cfdd8c xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x05d5dab4 block_write_begin +EXPORT_SYMBOL vmlinux 0x05ddb5b9 write_inode_now +EXPORT_SYMBOL vmlinux 0x0609acd9 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x0614608c ppp_input +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062ef634 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066cfc4a dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x067b2714 __frontswap_load +EXPORT_SYMBOL vmlinux 0x068a0a05 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x068ecfa1 igrab +EXPORT_SYMBOL vmlinux 0x06a04382 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x06a53239 vfs_link +EXPORT_SYMBOL vmlinux 0x06a8c659 tty_register_driver +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06beb323 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06d3d113 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x06d8c9ad in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x06e2db42 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x06e3784f simple_release_fs +EXPORT_SYMBOL vmlinux 0x06eac325 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x071ffba0 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x072a5509 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x074cb5b5 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x075c08e1 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x075fb2d1 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x0772c960 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x078e10a9 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x078e4617 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07beb18a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x07bfb267 datagram_poll +EXPORT_SYMBOL vmlinux 0x07c5c18a tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07e04082 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x07ec8d8d __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x07ecad15 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fdb4af seq_vprintf +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x0809897d ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081d4118 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x08368c06 blkdev_put +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x083f38f7 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x0851d241 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x0854c9d0 seq_dentry +EXPORT_SYMBOL vmlinux 0x0857d7c1 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x08731f77 netlink_set_err +EXPORT_SYMBOL vmlinux 0x0875ae50 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x088e2cc4 __page_symlink +EXPORT_SYMBOL vmlinux 0x08901e93 udp_prot +EXPORT_SYMBOL vmlinux 0x08a029da fb_show_logo +EXPORT_SYMBOL vmlinux 0x08a80c25 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x08be54eb rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x08c1662e xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f63ed1 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x08ffb489 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x0907ae04 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x0914c8a5 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x092494f9 dev_uc_del +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x0933db35 mdiobus_read +EXPORT_SYMBOL vmlinux 0x0936f8ed dquot_get_state +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093a0972 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x094bedd3 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x095b1384 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x09634172 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097bdc7f inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x097f323c udplite_prot +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099a3f7b secpath_set +EXPORT_SYMBOL vmlinux 0x09a1eded dev_driver_string +EXPORT_SYMBOL vmlinux 0x09b016ba generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e10d41 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x09f44217 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1056ee end_page_private_2 +EXPORT_SYMBOL vmlinux 0x0a1d1626 phy_get_pause +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append +EXPORT_SYMBOL vmlinux 0x0a2d4347 mmc_start_request +EXPORT_SYMBOL vmlinux 0x0a4acf2d msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x0a59ad34 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7f1f82 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x0a8282c1 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab10132 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x0ab97a78 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae105a2 init_special_inode +EXPORT_SYMBOL vmlinux 0x0af75376 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x0b06879e padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x0b151a63 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b29493e nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b35c460 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x0b4179a3 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x0b4976e6 fiemap_prep +EXPORT_SYMBOL vmlinux 0x0b576c76 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0b6c3232 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb8cc4d i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x0bbc2be7 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x0bbcb6ae flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd10f2d writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x0bde206d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x0bebc219 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x0becdad8 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x0bf0d1ce nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0add52 single_open +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c236929 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c36366d sg_miter_start +EXPORT_SYMBOL vmlinux 0x0c3da9ce tcp_prot +EXPORT_SYMBOL vmlinux 0x0c4502c1 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c690cb3 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c823f40 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x0c853771 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x0ca2d96d fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb33e20 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x0cb925e6 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc53f4a netdev_update_features +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdc1507 read_cache_page +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdd7fef page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0d036675 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0e7a7f pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x0d1dbd5b uart_resume_port +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d346434 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d3fce42 bioset_init +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5b1770 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6272f2 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0db8c9f4 put_watch_queue +EXPORT_SYMBOL vmlinux 0x0dce0ad3 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x0dd0930d dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x0dd997c8 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e276933 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0e5e19ef sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x0e64e1ba unix_attach_fds +EXPORT_SYMBOL vmlinux 0x0e6eaab7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0e70f7fd netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0ea3b394 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea40d89 scsi_print_result +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea6fd6e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x0eb5d351 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec5ce47 devm_memremap +EXPORT_SYMBOL vmlinux 0x0ed52f30 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x0ed704ee security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x0ede742b proc_set_user +EXPORT_SYMBOL vmlinux 0x0efbbd1a devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x0f02f207 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0e6c94 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f443151 arp_tbl +EXPORT_SYMBOL vmlinux 0x0f4496dd phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8f142b mod_node_page_state +EXPORT_SYMBOL vmlinux 0x0fa4dd87 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb8a6d0 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x0fcd718c iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x0fd77848 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fd9ede0 input_match_device_id +EXPORT_SYMBOL vmlinux 0x0fe276b2 inet_accept +EXPORT_SYMBOL vmlinux 0x0fe7cad0 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x102a8775 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x102bc8c1 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104e1676 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106b5362 page_symlink +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10898af3 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x109adca8 _dev_printk +EXPORT_SYMBOL vmlinux 0x10b1668d super_setup_bdi +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10ce921f vfs_iter_write +EXPORT_SYMBOL vmlinux 0x10d1a284 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e383a7 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ef3980 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x10f6afa0 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111250ef tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x111a180a textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x11239048 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x1127d3f4 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1132a0d3 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x11351dfd devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x114dcb55 dma_resv_init +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1171492a skb_push +EXPORT_SYMBOL vmlinux 0x1172454d tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x1195ebfd ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x11bc23bc of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x11bccaed d_delete +EXPORT_SYMBOL vmlinux 0x11c91d87 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d52909 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x11db1363 key_type_keyring +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f02401 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120122ff ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12135063 pci_find_capability +EXPORT_SYMBOL vmlinux 0x12421913 block_write_end +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124e2c84 build_skb_around +EXPORT_SYMBOL vmlinux 0x125fe89d lru_cache_add +EXPORT_SYMBOL vmlinux 0x126ef125 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x12835c7e proc_mkdir +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12c724c8 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cb7134 __icmp_send +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13094c3f tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1312e596 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x1314ad51 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x13168b99 simple_fill_super +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131a9c90 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x133cbefe backlight_device_register +EXPORT_SYMBOL vmlinux 0x1346f962 unregister_nls +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135ceaeb pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1376761b __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x13789c95 dev_change_flags +EXPORT_SYMBOL vmlinux 0x13830d8e param_array_ops +EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13b16b79 inet6_release +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d8ce2a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13ddb143 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x13e40967 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x13edb200 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x14098b97 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141e8eb5 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x14276566 dev_mc_add +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1449ca3c vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x14570806 dst_destroy +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14641ada mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x146696f1 clk_get +EXPORT_SYMBOL vmlinux 0x1466cb90 send_sig_info +EXPORT_SYMBOL vmlinux 0x146cebc8 make_kprojid +EXPORT_SYMBOL vmlinux 0x147569da scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148ae2d3 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x148f9652 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cba64c inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x14d63e5c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x14de69c8 of_root +EXPORT_SYMBOL vmlinux 0x14e0d698 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x14f26d2f mmc_put_card +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x151101b3 input_close_device +EXPORT_SYMBOL vmlinux 0x1513ceeb generic_file_fsync +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153ad69c __skb_get_hash +EXPORT_SYMBOL vmlinux 0x1543ba03 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x1545915e tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154d1364 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x1553c4e9 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x155dac45 kset_unregister +EXPORT_SYMBOL vmlinux 0x1598c55f lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x15a0c0b0 ram_aops +EXPORT_SYMBOL vmlinux 0x15b3c134 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x15b9b8fd thaw_bdev +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15cad6d7 vm_mmap +EXPORT_SYMBOL vmlinux 0x15cd7589 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x15ed1a37 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x15efb021 path_put +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16453e28 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x16537049 input_grab_device +EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x165b8b1f devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x166cd437 generic_file_open +EXPORT_SYMBOL vmlinux 0x166f1564 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x1670301e blk_integrity_register +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169ef353 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16ed82cf sget +EXPORT_SYMBOL vmlinux 0x17049325 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x171cd10b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x17353d0a of_n_size_cells +EXPORT_SYMBOL vmlinux 0x174659e1 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x1770d0af iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x1781ea54 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x1796cc63 dcache_readdir +EXPORT_SYMBOL vmlinux 0x17b8cc62 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x17d726af from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x180a8089 config_group_init +EXPORT_SYMBOL vmlinux 0x181aab3c may_setattr +EXPORT_SYMBOL vmlinux 0x182fb51d sk_net_capable +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x184c7cef rio_query_mport +EXPORT_SYMBOL vmlinux 0x18593948 device_add_disk +EXPORT_SYMBOL vmlinux 0x18659e2b __ip_dev_find +EXPORT_SYMBOL vmlinux 0x1868d6b4 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x186aa1c2 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a60afa get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x18abd921 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x18b1c856 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18b66c2d __skb_checksum +EXPORT_SYMBOL vmlinux 0x18d60570 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e90499 tty_port_open +EXPORT_SYMBOL vmlinux 0x18edc351 discard_new_inode +EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x1921e879 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x193cfbb8 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x194f7ec1 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x196dc943 __fs_parse +EXPORT_SYMBOL vmlinux 0x197963f9 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a72dd7 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x19b7c056 generic_fillattr +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bf0809 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x19bfd2d4 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x19d9b64e arp_send +EXPORT_SYMBOL vmlinux 0x1a016c54 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x1a0191c8 default_llseek +EXPORT_SYMBOL vmlinux 0x1a14b044 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x1a19d9a8 simple_link +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a207f0b __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x1a4498e6 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a495da9 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x1a763b98 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x1a79afea netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x1a844f19 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x1a9a1da6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa4dd92 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x1aa66558 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ae57271 dst_alloc +EXPORT_SYMBOL vmlinux 0x1af23a95 md_register_thread +EXPORT_SYMBOL vmlinux 0x1afe4402 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b3f7f98 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b65f1c5 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x1b6ebd18 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x1b6ec944 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7c6676 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb5ffeb drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x1bb74356 eth_type_trans +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bc827c6 genphy_suspend +EXPORT_SYMBOL vmlinux 0x1bd1f521 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x1bd4c65e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1c3044b3 set_anon_super +EXPORT_SYMBOL vmlinux 0x1c3ae4f3 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x1c4ba4cb blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c651978 dquot_disable +EXPORT_SYMBOL vmlinux 0x1c7bbecc pci_select_bars +EXPORT_SYMBOL vmlinux 0x1ca0b2b7 kern_path +EXPORT_SYMBOL vmlinux 0x1ca5d26a xp_dma_map +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb44f03 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc963ed vfs_iter_read +EXPORT_SYMBOL vmlinux 0x1ccd1d38 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cd91691 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x1cdbbce6 netdev_emerg +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d0019a6 inet_protos +EXPORT_SYMBOL vmlinux 0x1d071d2c mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d16eb6f udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x1d18ff43 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x1d1a8a8d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d1c4b18 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x1d1dd539 km_query +EXPORT_SYMBOL vmlinux 0x1d22c4c4 md_write_end +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d278dba padata_alloc +EXPORT_SYMBOL vmlinux 0x1d2825ed sock_no_listen +EXPORT_SYMBOL vmlinux 0x1d29bb98 netif_napi_add +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d694398 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x1d71826e __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x1d752e3f netlink_capable +EXPORT_SYMBOL vmlinux 0x1d753b70 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x1d9e9c71 phy_device_remove +EXPORT_SYMBOL vmlinux 0x1daa077a __pagevec_release +EXPORT_SYMBOL vmlinux 0x1dbb98ac iget5_locked +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd672f1 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key +EXPORT_SYMBOL vmlinux 0x1de64d64 of_node_put +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0b473a jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e19dbca neigh_connected_output +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e3c7979 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x1e40e46c from_kprojid +EXPORT_SYMBOL vmlinux 0x1e4da9a7 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x1e57652f skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x1e5fdcaa dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e703b95 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x1e74b38d inet6_protos +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea7597e t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edb6d59 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x1edf86c3 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x1ee6dd1f cdrom_check_events +EXPORT_SYMBOL vmlinux 0x1eeddf8a reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x1f0b5769 vc_cons +EXPORT_SYMBOL vmlinux 0x1f0bc8d0 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x1f0e0b97 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x1f186edb find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x1f2cf6be md_check_recovery +EXPORT_SYMBOL vmlinux 0x1f42b96a of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f56eb45 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x1fabf47d nd_integrity_init +EXPORT_SYMBOL vmlinux 0x1fbbb3da dev_deactivate +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc8c823 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x1fc9d4c9 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd65de3 simple_statfs +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2000f883 netif_rx +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2010871f arp_create +EXPORT_SYMBOL vmlinux 0x20311784 proc_remove +EXPORT_SYMBOL vmlinux 0x2031291e xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x20497187 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20608ea2 mr_dump +EXPORT_SYMBOL vmlinux 0x2062547b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x20861b43 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x20a6850d scmd_printk +EXPORT_SYMBOL vmlinux 0x20a6c466 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b416d2 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x20bc0826 pci_dev_put +EXPORT_SYMBOL vmlinux 0x20bfc4e2 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d8a4ed kernel_accept +EXPORT_SYMBOL vmlinux 0x20d9f630 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x20e25311 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x20e5e435 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20efa3e3 posix_test_lock +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2100c27a devm_clk_put +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x21070c62 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x211444e2 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x212569a1 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x212ee7fd ip_setsockopt +EXPORT_SYMBOL vmlinux 0x21360e91 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x214563dc pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x2147b7bb phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x214f7836 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x215273a2 tcf_block_put +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x2162097e rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x217f09bb cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x217fcb25 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21924829 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x21a0aa16 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x21a6d5f2 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x21a8a8cf udp_seq_ops +EXPORT_SYMBOL vmlinux 0x21ad502b acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c04dac rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x21dbef81 setup_new_exec +EXPORT_SYMBOL vmlinux 0x21df25b6 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f911fd dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x220f3eee skb_vlan_push +EXPORT_SYMBOL vmlinux 0x2210e3b8 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x222003fd __skb_pad +EXPORT_SYMBOL vmlinux 0x22263405 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x222be804 keyring_alloc +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f46dc cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x223f98e9 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x2244a0f5 security_path_unlink +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x22615758 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x2263eac3 release_pages +EXPORT_SYMBOL vmlinux 0x227429e7 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x227a35c0 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x2283250d pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x22870e02 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x229af51c sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x22a911fd dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b47507 pci_set_master +EXPORT_SYMBOL vmlinux 0x22bcc448 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x22e0e8bd __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x22e8aad4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x22e8e58a seq_read +EXPORT_SYMBOL vmlinux 0x230924be skb_split +EXPORT_SYMBOL vmlinux 0x231cae46 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x232152fb peernet2id +EXPORT_SYMBOL vmlinux 0x232746ec pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x2340602f napi_gro_frags +EXPORT_SYMBOL vmlinux 0x2350d1bc phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x23572995 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23996945 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23cdaaab dquot_scan_active +EXPORT_SYMBOL vmlinux 0x23cf59f3 drop_nlink +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24030198 pci_release_resource +EXPORT_SYMBOL vmlinux 0x24096f54 kobject_add +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242e103e inode_io_list_del +EXPORT_SYMBOL vmlinux 0x242f8cf4 bdi_register +EXPORT_SYMBOL vmlinux 0x24369b8c skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x243f683f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244b2975 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248ec450 vme_slave_request +EXPORT_SYMBOL vmlinux 0x24b00026 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x24b6d8db nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d8634d con_copy_unimap +EXPORT_SYMBOL vmlinux 0x24dfc968 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x24ec89c7 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x25140a17 netdev_change_features +EXPORT_SYMBOL vmlinux 0x2518b9a3 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x254e7703 input_reset_device +EXPORT_SYMBOL vmlinux 0x2562b23a phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x257c28a6 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25946eab netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x2597da93 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x25a40613 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x25c57521 locks_free_lock +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f0d040 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x25f61a18 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x25f800b5 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260fea28 input_event +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x2641de4e framebuffer_release +EXPORT_SYMBOL vmlinux 0x2647b44f fb_get_mode +EXPORT_SYMBOL vmlinux 0x26751cda netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x267eb43c cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x268205be mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x269c6bc7 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x26adbd85 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26df5cbe simple_rmdir +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x27006ef8 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270d25f0 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x27198813 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x271c157a register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272f5be1 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2737486a dev_add_pack +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d0efc __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x274f43aa neigh_lookup +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2772e5aa mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278b7cee bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2791bc81 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x27aeb939 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd5a47 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27c9f090 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x28091227 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281dd07f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x282ab899 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x2859466f __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x28640636 padata_do_serial +EXPORT_SYMBOL vmlinux 0x286950b7 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x286d9a01 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28955118 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x2895dcce sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x2898fa7b acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x289b58e1 begin_new_exec +EXPORT_SYMBOL vmlinux 0x289c42eb flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x28a7b74c mdiobus_free +EXPORT_SYMBOL vmlinux 0x28aca367 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x28accec6 phy_find_first +EXPORT_SYMBOL vmlinux 0x28b13cd0 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x28bd093f set_create_files_as +EXPORT_SYMBOL vmlinux 0x28c9e8e1 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x28cf0196 fget +EXPORT_SYMBOL vmlinux 0x28d118d3 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x28e06714 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x28edcdce phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x28eed25d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x28f4f1ac vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x28f6cf03 dquot_drop +EXPORT_SYMBOL vmlinux 0x28fdfafa _copy_to_iter +EXPORT_SYMBOL vmlinux 0x29018bdd lock_rename +EXPORT_SYMBOL vmlinux 0x2909521c amba_driver_register +EXPORT_SYMBOL vmlinux 0x294fafdb mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x295468a9 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x295a29c1 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x295ddf5c skb_tx_error +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29682791 bio_chain +EXPORT_SYMBOL vmlinux 0x297fe0bd tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x2986a7ef generic_perform_write +EXPORT_SYMBOL vmlinux 0x299767f4 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x29a66ff3 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x29b25394 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x29b2ac79 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x29c2fc68 sock_bind_add +EXPORT_SYMBOL vmlinux 0x29c7619e pci_remove_bus +EXPORT_SYMBOL vmlinux 0x29d3aaf5 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x29e0adb4 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x29e1a430 genlmsg_put +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29ef8704 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x2a101929 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x2a203a22 account_page_redirty +EXPORT_SYMBOL vmlinux 0x2a2e043a fb_blank +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a42dd78 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x2a79012d sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2a852090 _dev_info +EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a9262c4 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9ccadf skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aaf3f6c request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab3f22d security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2ad8e9aa clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x2afb77cb cdev_device_add +EXPORT_SYMBOL vmlinux 0x2aff93f3 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x2b0c1e5f bio_uninit +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b1eb3ad remove_arg_zero +EXPORT_SYMBOL vmlinux 0x2b3120d0 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x2b34294e flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x2b3d30b8 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x2b43cb14 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x2b4e6401 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb3c248 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x2bb4094b sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bba8efe i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c0c2fca phy_attached_info +EXPORT_SYMBOL vmlinux 0x2c18b96b skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c26407d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c37743e da903x_query_status +EXPORT_SYMBOL vmlinux 0x2c4acd74 phy_write_paged +EXPORT_SYMBOL vmlinux 0x2c4f83de __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c8c31ab __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2c9adc98 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x2ca42c88 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x2ca8f8be elevator_alloc +EXPORT_SYMBOL vmlinux 0x2cb98305 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x2cbfb556 no_llseek +EXPORT_SYMBOL vmlinux 0x2cc9b672 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x2ccd058a wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd94b5a tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce3c56d pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x2cebe90d serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d547545 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x2d54b32d dm_table_event +EXPORT_SYMBOL vmlinux 0x2d60306a imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x2d621d77 keyring_search +EXPORT_SYMBOL vmlinux 0x2d6c5df7 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x2d83498c redraw_screen +EXPORT_SYMBOL vmlinux 0x2d8564f6 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d9286ab ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x2d979964 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2daf0608 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x2dba2432 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dce6809 devm_free_irq +EXPORT_SYMBOL vmlinux 0x2dd0a49f dcache_dir_close +EXPORT_SYMBOL vmlinux 0x2de78ce4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x2debc03e vfs_unlink +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0ca4a3 freeze_bdev +EXPORT_SYMBOL vmlinux 0x2e1945b7 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e22d21b vlan_for_each +EXPORT_SYMBOL vmlinux 0x2e2371a4 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3d44db sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e5e758a dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e789f93 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x2e80c660 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2ebcb1e4 mdio_device_free +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0f2075 set_disk_ro +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1afba4 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x2f2724d7 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f38dc49 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x2f4581c4 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x2f5a2cca skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7a0b02 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x2f89b90f __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2f9ea1d2 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x2faa1dd5 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fcc79a3 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x2fceb3e7 page_readlink +EXPORT_SYMBOL vmlinux 0x2fd00c8d simple_nosetlease +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff874b9 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x300bebf7 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x300cf53f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x302780ae sk_reset_timer +EXPORT_SYMBOL vmlinux 0x302b6c22 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x303710ff security_inode_init_security +EXPORT_SYMBOL vmlinux 0x305b39ea locks_copy_lock +EXPORT_SYMBOL vmlinux 0x306f39cc netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x308740ae phy_drivers_register +EXPORT_SYMBOL vmlinux 0x308d232d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x309025fc pci_clear_master +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c3f112 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x30d55283 netdev_alert +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ecb86c wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x30eccc5d sock_no_getname +EXPORT_SYMBOL vmlinux 0x30ef4392 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x30f39ebc blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x31051fa0 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3136156f follow_pfn +EXPORT_SYMBOL vmlinux 0x314a4e41 mpage_readahead +EXPORT_SYMBOL vmlinux 0x3154ec89 pci_get_class +EXPORT_SYMBOL vmlinux 0x31597d8c iterate_supers_type +EXPORT_SYMBOL vmlinux 0x316140ad xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x316e7e32 ip6_output +EXPORT_SYMBOL vmlinux 0x317467d7 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x3175a7e3 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x317f2449 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x3187d2ff configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31bb5531 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x31c80e81 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x31e11968 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x31f5c5dd pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x32048426 d_obtain_root +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323b20dd udp_seq_stop +EXPORT_SYMBOL vmlinux 0x324f3bc7 page_mapped +EXPORT_SYMBOL vmlinux 0x3269efd9 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x3278a781 bio_reset +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3280cd1f pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32b3dbd8 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x32bde234 get_tree_single +EXPORT_SYMBOL vmlinux 0x32c4f90f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32cfb348 of_get_parent +EXPORT_SYMBOL vmlinux 0x32cfc073 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x32d31e39 pin_user_pages +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x330f865e scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x33126294 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3327e32d input_open_device +EXPORT_SYMBOL vmlinux 0x3331abec dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x334d0e76 param_get_string +EXPORT_SYMBOL vmlinux 0x33545765 input_set_keycode +EXPORT_SYMBOL vmlinux 0x336a7565 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x336a97cb dev_lstats_read +EXPORT_SYMBOL vmlinux 0x336ac052 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x336bb717 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33754b8a rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x33766985 input_setup_polling +EXPORT_SYMBOL vmlinux 0x33975c4f iput +EXPORT_SYMBOL vmlinux 0x33a31fb3 vmap +EXPORT_SYMBOL vmlinux 0x33cae0c5 register_console +EXPORT_SYMBOL vmlinux 0x33d08f3e vfs_setpos +EXPORT_SYMBOL vmlinux 0x33dfe794 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x33e57094 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x33e73cf5 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3403c644 skb_queue_head +EXPORT_SYMBOL vmlinux 0x34125a4e nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x342398e0 km_state_notify +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3444a6e8 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x3448f2d5 vfs_get_link +EXPORT_SYMBOL vmlinux 0x344b983e ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x34665ea1 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x348b6d71 fs_bio_set +EXPORT_SYMBOL vmlinux 0x34953a5a tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34bb469e pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x34c53273 icmp6_send +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34caf78a of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x34de51fa tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f7f6f8 skb_find_text +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354ec840 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x354fc4ab security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3569325b zpool_register_driver +EXPORT_SYMBOL vmlinux 0x357eb566 udp_read_sock +EXPORT_SYMBOL vmlinux 0x35887440 dcb_setapp +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aba899 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x35af51ef tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x35b13de6 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x35b1b3cd dev_remove_offload +EXPORT_SYMBOL vmlinux 0x35c26a41 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x35cadfa6 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x35cfeeec tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x35ec8a72 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x35f07c83 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x35fc473f gro_cells_receive +EXPORT_SYMBOL vmlinux 0x36082de3 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x363ab511 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x363bbea7 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x367226dd __devm_release_region +EXPORT_SYMBOL vmlinux 0x36767a8d netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x3680ceda xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x369ba121 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x369cdd53 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36bb0d4f wake_up_process +EXPORT_SYMBOL vmlinux 0x36d2e955 netdev_crit +EXPORT_SYMBOL vmlinux 0x36fcc694 filemap_fault +EXPORT_SYMBOL vmlinux 0x370814cf devm_request_resource +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37194ab1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x372938a1 tcp_req_err +EXPORT_SYMBOL vmlinux 0x3729b235 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3762d633 dm_io +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x3777d996 write_cache_pages +EXPORT_SYMBOL vmlinux 0x37792be4 d_rehash +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37993641 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x379a2d60 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x379c7565 cad_pid +EXPORT_SYMBOL vmlinux 0x37a6bf90 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37dc3b93 skb_append +EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states +EXPORT_SYMBOL vmlinux 0x37e84df0 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x37eab718 d_move +EXPORT_SYMBOL vmlinux 0x37f26423 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x381975b9 input_set_capability +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3840ba07 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x38485b4b mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x386e52e2 iov_iter_init +EXPORT_SYMBOL vmlinux 0x386fa0b4 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x386fa5dd __dquot_free_space +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388ecb08 phy_device_free +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3893ba61 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x389417e5 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x3897f34b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38aa8576 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x38d93d56 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x39049c04 __kfree_skb +EXPORT_SYMBOL vmlinux 0x3918a407 bio_endio +EXPORT_SYMBOL vmlinux 0x39198147 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x392165c6 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393f13c7 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x395581ae jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3962609c scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x397ad0c4 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x39991547 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b1cf85 simple_empty +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39bd1ae8 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c49572 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x39c95e4f mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x39fc6f37 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a141ea0 tty_vhangup +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a40115b processors +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a7dfac6 nf_log_trace +EXPORT_SYMBOL vmlinux 0x3a84e4fd sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x3a8e3270 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aba0fb1 to_ndd +EXPORT_SYMBOL vmlinux 0x3abedb84 request_firmware +EXPORT_SYMBOL vmlinux 0x3ac583ba vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3adaf158 mpage_writepages +EXPORT_SYMBOL vmlinux 0x3ae65c83 netdev_err +EXPORT_SYMBOL vmlinux 0x3aefc7e1 tcf_classify +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b081414 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b123959 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b28e40e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x3b31582f iproc_msi_init +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b338d05 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x3b34705e dquot_resume +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b66820e sock_set_priority +EXPORT_SYMBOL vmlinux 0x3b67d559 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b703795 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x3b7f3154 udp_ioctl +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bbce2eb seq_pad +EXPORT_SYMBOL vmlinux 0x3bc083a2 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf31d50 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x3c0c9c63 of_match_node +EXPORT_SYMBOL vmlinux 0x3c12bce7 neigh_update +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c2fe6d0 file_modified +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c87a567 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x3c95ac38 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x3caac1c4 napi_build_skb +EXPORT_SYMBOL vmlinux 0x3cb0fe8f is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d086868 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3d130233 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d27b90f edac_mc_find +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d68f46c mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x3d763f15 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x3d7b1415 key_put +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9dae74 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dbb65f6 of_device_unregister +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd6081e fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3df787aa adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e15de4c xfrm_state_free +EXPORT_SYMBOL vmlinux 0x3e299a95 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4ab821 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x3e5eb0f8 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x3e74256e fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e7d29a4 udp_poll +EXPORT_SYMBOL vmlinux 0x3e853e9e kobject_set_name +EXPORT_SYMBOL vmlinux 0x3ea53ec4 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x3ebba665 d_make_root +EXPORT_SYMBOL vmlinux 0x3ed016ee tcp_poll +EXPORT_SYMBOL vmlinux 0x3edace1e netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3eed4a0f dev_change_carrier +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0ab1ff param_get_bool +EXPORT_SYMBOL vmlinux 0x3f0b1fca __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x3f608de3 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x3f6b0389 __inet_hash +EXPORT_SYMBOL vmlinux 0x3f6c13db inet_offloads +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f94718c __i2c_transfer +EXPORT_SYMBOL vmlinux 0x3f9ab6a0 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x3f9bb2b9 user_path_create +EXPORT_SYMBOL vmlinux 0x3fb06814 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x3fba5ce6 dquot_initialize +EXPORT_SYMBOL vmlinux 0x3fbbd62a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fbf680d input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fde319b param_set_byte +EXPORT_SYMBOL vmlinux 0x3fde6e97 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fee72dd param_get_ulong +EXPORT_SYMBOL vmlinux 0x3ff08c5f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x400f36f3 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x4049ac0d kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x40524bb8 finish_swait +EXPORT_SYMBOL vmlinux 0x4056c4ee blk_rq_init +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40990f3e poll_initwait +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b22dd0 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x40b8a582 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x40bd65d0 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c8d117 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40e1af28 simple_unlink +EXPORT_SYMBOL vmlinux 0x40e39b8b fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x40e577ce pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x40ee91c2 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x412797e5 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x412bf916 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4132ffe8 audit_log_start +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x4162b7f7 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x41689083 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x417973da devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x4183c591 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41ee6a13 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fa5fe6 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x41ffea5e tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420ebac5 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x420fa406 __break_lease +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421f8af4 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x424327f7 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424ea17c _dev_emerg +EXPORT_SYMBOL vmlinux 0x424ef64a notify_change +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x4273cd69 __block_write_begin +EXPORT_SYMBOL vmlinux 0x428bc015 __brelse +EXPORT_SYMBOL vmlinux 0x4295d8d1 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x429c70ad register_cdrom +EXPORT_SYMBOL vmlinux 0x429eddce of_match_device +EXPORT_SYMBOL vmlinux 0x42a3ebad ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x42a5f9b2 skb_trim +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d3c508 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f437d5 fman_register_intr +EXPORT_SYMBOL vmlinux 0x4301ba67 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431ce881 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4335cb7c dev_uc_init +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43373f05 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4351fa44 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438773ac sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x43a49b29 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e244fe rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x43f8553c amba_device_register +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x443896f1 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4448f9ff of_translate_address +EXPORT_SYMBOL vmlinux 0x445fc84e phy_stop +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x44704204 try_to_release_page +EXPORT_SYMBOL vmlinux 0x448070ad blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449da7c2 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44ac2e1d __register_chrdev +EXPORT_SYMBOL vmlinux 0x44c2fefb device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x44c935dd input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x44c9522b netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x44d4949d dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f3a10d mmc_get_card +EXPORT_SYMBOL vmlinux 0x44f50747 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x45258454 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x4525ea43 __free_pages +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4534c8cd acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x453c1b4c to_nd_btt +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4546b178 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4550a81f netif_carrier_on +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4556e7f8 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x455d34ca pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458f8641 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x45ae6646 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x45b0a4af tty_unthrottle +EXPORT_SYMBOL vmlinux 0x45bd7248 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x45d1a57e phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x45fbbef4 register_quota_format +EXPORT_SYMBOL vmlinux 0x45fe4a12 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46318c3f vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x464fa302 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x465bb699 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466a85ad udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x469f5da1 stop_tty +EXPORT_SYMBOL vmlinux 0x46ae1cf7 md_done_sync +EXPORT_SYMBOL vmlinux 0x46c1034b tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cc8786 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x46cd7b4d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x46dfc424 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x46e3c3dc mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x46edb16b acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x46ef7394 __f_setown +EXPORT_SYMBOL vmlinux 0x46f20f1c _dev_err +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x470eaff0 input_register_handler +EXPORT_SYMBOL vmlinux 0x470f137a __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47210a04 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x4729afc3 can_nice +EXPORT_SYMBOL vmlinux 0x4737a973 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x47643e6d rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47b4de53 seq_release_private +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47fc0a18 vme_slot_num +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4827d1c2 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4832298a seq_write +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x48396d70 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485a1fd3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x48850428 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x488ffd23 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x48907319 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x489a75bb arp_xmit +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x489ff646 d_tmpfile +EXPORT_SYMBOL vmlinux 0x48a27d1e serio_rescan +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b6895b scsi_device_get +EXPORT_SYMBOL vmlinux 0x48b98ed8 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48f6aeba security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x48ff0f1e tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x4900368f pipe_unlock +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49063e97 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x49142cf5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x49149e4c fddi_type_trans +EXPORT_SYMBOL vmlinux 0x491cc4a4 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x491d3e4c scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x4928361a inet_del_offload +EXPORT_SYMBOL vmlinux 0x4940cbaf neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x49444ebf starget_for_each_device +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495479d6 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x495db773 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x4986b50c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x498ed816 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a0b410 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x49a38e10 __alloc_pages +EXPORT_SYMBOL vmlinux 0x49a88095 vfs_readlink +EXPORT_SYMBOL vmlinux 0x49b12bb7 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b8b382 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x49c42bb7 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x49e9fe95 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x4a06cdee configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x4a1e303b scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x4a20a6e0 d_alloc +EXPORT_SYMBOL vmlinux 0x4a271df9 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x4a318538 inet_getname +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3c3cb6 put_cmsg +EXPORT_SYMBOL vmlinux 0x4a527bca netif_skb_features +EXPORT_SYMBOL vmlinux 0x4a5f8dbe configfs_register_group +EXPORT_SYMBOL vmlinux 0x4a5ff38f scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4a74c2a3 __scsi_execute +EXPORT_SYMBOL vmlinux 0x4a824c4f ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a8b027e inet_select_addr +EXPORT_SYMBOL vmlinux 0x4a9023f7 pipe_lock +EXPORT_SYMBOL vmlinux 0x4a931ca2 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9a589b pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x4a9f84ae nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x4aa0e063 fman_set_port_params +EXPORT_SYMBOL vmlinux 0x4aab6e9f seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x4ab0291d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4abd4de7 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x4ac9a7e1 clk_add_alias +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b07f2db mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b1b5e0b napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x4b1ca513 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x4b22cd38 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x4b404ca1 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x4b4ba29d unregister_quota_format +EXPORT_SYMBOL vmlinux 0x4b4c7fd7 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x4b4e70a6 dev_set_group +EXPORT_SYMBOL vmlinux 0x4b5c7956 migrate_page +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6c1c21 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b6fb592 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x4b98ed8a pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x4b9b3165 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x4ba0a657 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x4bb7b5d4 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4be41304 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf346de kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bfe6920 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x4bfe9347 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x4bff85f8 make_kgid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c08166b max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x4c0deb14 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4c185f0b inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4c22e377 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x4c305571 dquot_commit +EXPORT_SYMBOL vmlinux 0x4c31194a vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x4c31cb73 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c72b499 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x4c7583cc tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4c98d79b cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x4ca1e6e6 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x4ca2ba13 ps2_end_command +EXPORT_SYMBOL vmlinux 0x4ca88d50 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x4cb064e4 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbade4d regset_get_alloc +EXPORT_SYMBOL vmlinux 0x4cc3a750 input_free_device +EXPORT_SYMBOL vmlinux 0x4cddea72 sock_no_connect +EXPORT_SYMBOL vmlinux 0x4cf63a25 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0d7c33 param_get_int +EXPORT_SYMBOL vmlinux 0x4d0f554e pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x4d1c91ed mmput_async +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6de930 param_get_invbool +EXPORT_SYMBOL vmlinux 0x4d87b068 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dcb5f51 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x4dd1ccf0 end_page_writeback +EXPORT_SYMBOL vmlinux 0x4dd22c74 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x4ddbe8f1 uart_register_driver +EXPORT_SYMBOL vmlinux 0x4de691c9 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4deef387 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e132961 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4e13663d cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e308bc8 write_one_page +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4302d0 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x4e49da93 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x4e4e2042 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e51eed8 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e57044b kmem_cache_size +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e719bca skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x4e9be889 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x4e9dbf29 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb67421 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ee62c89 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4ef89ff2 param_get_long +EXPORT_SYMBOL vmlinux 0x4efc3c5e netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x4f000615 vfs_mknod +EXPORT_SYMBOL vmlinux 0x4f014e84 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x4f0c832a mntput +EXPORT_SYMBOL vmlinux 0x4f0ec451 __do_once_done +EXPORT_SYMBOL vmlinux 0x4f0ee54c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x4f1c157c security_path_rename +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f322b46 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x4f435d14 put_disk +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f648e78 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f6add59 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f7653a8 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4f79522c dget_parent +EXPORT_SYMBOL vmlinux 0x4faba4c2 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x4fabfc2a tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x4fcb0238 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x4fea15f4 noop_fsync +EXPORT_SYMBOL vmlinux 0x4fef74a6 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4fff5975 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x50085666 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5027c88b netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x5027e27b unregister_console +EXPORT_SYMBOL vmlinux 0x5034728f get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x5043f12b dev_addr_init +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5076926e key_reject_and_link +EXPORT_SYMBOL vmlinux 0x508d7029 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x5095a73f __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50ae19c1 sock_pfree +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50bb4e0c __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50efbfeb nf_hook_slow +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x510c9316 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x510ff2d3 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x511ce24b node_data +EXPORT_SYMBOL vmlinux 0x5125128f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x514ce1af lookup_one +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x515207f8 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x515b15ce netdev_features_change +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5172b510 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x5176f3a3 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x5178be08 nd_device_notify +EXPORT_SYMBOL vmlinux 0x51808112 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x518d377b of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x51a12187 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x51a67c2f try_module_get +EXPORT_SYMBOL vmlinux 0x51b27cde alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d21b41 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x51d9875c alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x51e0d844 vme_bus_type +EXPORT_SYMBOL vmlinux 0x51e193b4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f4e371 seq_putc +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x52239a81 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x523681e5 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5276980a vma_set_file +EXPORT_SYMBOL vmlinux 0x527f4afc key_link +EXPORT_SYMBOL vmlinux 0x5285f455 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529a04ac __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x529e1bcf pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x52adb5e8 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52d3cf3c msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e0e3db kill_pid +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f0a4e0 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x5306cde2 pps_event +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531bd7bf seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x531cd43e user_revoke +EXPORT_SYMBOL vmlinux 0x532abee8 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x532bddd2 tty_unlock +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x5334e0be __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x535511eb skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x535704e6 pci_request_regions +EXPORT_SYMBOL vmlinux 0x536d53e2 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x53938c51 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x539937d5 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53be7f6b tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x53db2c80 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f53b04 dcb_getapp +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x53fd81dc flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x541683fd of_device_is_available +EXPORT_SYMBOL vmlinux 0x54213a82 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x5423a9b8 of_get_next_child +EXPORT_SYMBOL vmlinux 0x542739a3 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54494258 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x544a6b59 load_nls_default +EXPORT_SYMBOL vmlinux 0x544c8a5b pcim_enable_device +EXPORT_SYMBOL vmlinux 0x545be0d3 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x546a9ccc rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x5472e475 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x548358ea lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5492d824 param_set_bint +EXPORT_SYMBOL vmlinux 0x54993994 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x54afd888 genphy_read_status +EXPORT_SYMBOL vmlinux 0x54b40c36 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x54b9bc41 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x54d32aca skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x54e6f23a ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54ead991 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x55037a36 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5507c420 skb_clone +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x5514af54 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bfbe3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x553d7fcb flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5551fee1 elv_rb_find +EXPORT_SYMBOL vmlinux 0x556424d9 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556bdf3c inet6_add_offload +EXPORT_SYMBOL vmlinux 0x5570bbd0 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55acd522 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x55addaab invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x55aea02e ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x55cafc31 ihold +EXPORT_SYMBOL vmlinux 0x55d13945 dev_get_stats +EXPORT_SYMBOL vmlinux 0x55d962ed twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x55dba5d7 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x55deb86b dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eee371 seq_path +EXPORT_SYMBOL vmlinux 0x55fd8aa9 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x560fdd3e sync_blockdev +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x562ed184 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x566c59d1 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56a75cf0 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x56a9351a uart_update_timeout +EXPORT_SYMBOL vmlinux 0x56b14135 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c7e1ae lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56f47a47 sk_capable +EXPORT_SYMBOL vmlinux 0x570f3a65 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x570fae1a generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5720607b flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x57219717 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x576430ff skb_copy_bits +EXPORT_SYMBOL vmlinux 0x5766e83a tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576f87ab __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579cc320 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x57b642df __lock_page +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57f74531 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x57fdbf56 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x580ae87b pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5821719d skb_put +EXPORT_SYMBOL vmlinux 0x582283db mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x5823138a gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5842459e proc_set_size +EXPORT_SYMBOL vmlinux 0x5843a0f7 elv_rb_add +EXPORT_SYMBOL vmlinux 0x58460be3 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x584d6c34 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x587b04af sync_filesystem +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x589b8ca4 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x589fb6a3 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x58a515f8 dm_put_device +EXPORT_SYMBOL vmlinux 0x58a6697a skb_dump +EXPORT_SYMBOL vmlinux 0x58a9b191 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58af82e6 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58b93205 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x58c0cf03 inet_bind +EXPORT_SYMBOL vmlinux 0x58d65a77 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x58daaa59 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x592313f0 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x59298205 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x592d0a00 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5938401b bio_free_pages +EXPORT_SYMBOL vmlinux 0x5955f70f irq_set_chip +EXPORT_SYMBOL vmlinux 0x5958f5c4 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x597b1a89 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x598e654a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a7e839 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b581b2 param_get_charp +EXPORT_SYMBOL vmlinux 0x59da1372 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x59ebe27b vif_device_init +EXPORT_SYMBOL vmlinux 0x59f96541 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a20f9dc vga_get +EXPORT_SYMBOL vmlinux 0x5a215a95 console_start +EXPORT_SYMBOL vmlinux 0x5a2689a5 noop_qdisc +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a352cf9 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4b3f6f xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a579620 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a63e52a generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x5a6466b7 touch_buffer +EXPORT_SYMBOL vmlinux 0x5a844084 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x5a864ba7 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page +EXPORT_SYMBOL vmlinux 0x5a9d6e58 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa0c940 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x5abcb625 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5ac0ea7e read_cache_pages +EXPORT_SYMBOL vmlinux 0x5ad48d30 unlock_buffer +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae2f7d5 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x5ae5ee7f mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x5b0b0f89 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x5b1935fb dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b320a13 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b419361 genl_notify +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b79b9b4 bdevname +EXPORT_SYMBOL vmlinux 0x5b970ac3 rpmh_write +EXPORT_SYMBOL vmlinux 0x5ba4c38a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x5baeef1b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x5bb32bba padata_free_shell +EXPORT_SYMBOL vmlinux 0x5bc21545 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5be01b13 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf8c794 mmc_free_host +EXPORT_SYMBOL vmlinux 0x5c03e852 del_gendisk +EXPORT_SYMBOL vmlinux 0x5c095ae6 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x5c0c54fe __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x5c171724 param_ops_long +EXPORT_SYMBOL vmlinux 0x5c242fb3 poll_freewait +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4c199c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x5c4c45b0 registered_fb +EXPORT_SYMBOL vmlinux 0x5c612406 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x5c689fc6 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x5c9cfd95 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x5ca18afe ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x5cd87172 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x5cf206e2 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfdd8c2 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x5cfe1016 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x5d0bcf3d sock_edemux +EXPORT_SYMBOL vmlinux 0x5d0f6ea2 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d1ce1d2 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x5d24410e phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x5d254c8b scsi_host_busy +EXPORT_SYMBOL vmlinux 0x5d33e663 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x5d40cf63 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4c711a pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5d5ad141 zap_page_range +EXPORT_SYMBOL vmlinux 0x5d66ccb2 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x5d6f5c5b tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x5d7d70a0 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x5d87bec5 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5d88afbd pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5daf0ef1 of_device_register +EXPORT_SYMBOL vmlinux 0x5dc8966d md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5dcb0226 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x5de03435 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x5de1b7ee follow_down_one +EXPORT_SYMBOL vmlinux 0x5df1de7d mr_table_dump +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e02c0a7 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e0d3253 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x5e2adcf8 param_set_bool +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e39af34 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x5e55bc87 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x5e5cd586 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e877b85 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x5e89fc63 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eaca9bc inode_add_bytes +EXPORT_SYMBOL vmlinux 0x5ead3872 vme_lm_request +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ef44631 sk_alloc +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f375917 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x5f3b4f22 iptun_encaps +EXPORT_SYMBOL vmlinux 0x5f3b6777 __napi_schedule +EXPORT_SYMBOL vmlinux 0x5f4e4904 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x5f601418 locks_delete_block +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f8b8943 fsync_bdev +EXPORT_SYMBOL vmlinux 0x5f8ea3f0 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x5f91f116 netlink_unicast +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9c9da5 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x5fa0edf2 inet_shutdown +EXPORT_SYMBOL vmlinux 0x5fa12e81 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fdcf7d4 netif_device_detach +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600baa9e genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602b552c config_group_find_item +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6037110d d_exact_alias +EXPORT_SYMBOL vmlinux 0x603cb715 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x604688cc __scm_send +EXPORT_SYMBOL vmlinux 0x60570f83 tty_hangup +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x607d6102 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608a465b __pci_register_driver +EXPORT_SYMBOL vmlinux 0x608b597d dst_discard_out +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60934057 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a5efdd posix_lock_file +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60bdc32d ppp_input_error +EXPORT_SYMBOL vmlinux 0x60d818b8 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60da79f6 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x60f6eddf pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x6105a3c2 nonseekable_open +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x611af734 proc_create_data +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6136336c __invalidate_device +EXPORT_SYMBOL vmlinux 0x6138d412 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x6145b15f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6174a897 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x617d2cee scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b2a3b2 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c9ed24 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x61cb1ad7 __phy_resume +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e70a39 inet_release +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61fa8a58 bio_put +EXPORT_SYMBOL vmlinux 0x61fe595e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x62112a62 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623601e9 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x623bf3cb genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x624bc17d make_kuid +EXPORT_SYMBOL vmlinux 0x625ec81b kill_pgrp +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628b064c tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62938b8e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x629c8361 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x62a6f62e of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x62afa900 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62e01466 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x6305b0c9 fb_set_var +EXPORT_SYMBOL vmlinux 0x630c2ee2 logfc +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x631ec82e pagecache_get_page +EXPORT_SYMBOL vmlinux 0x63261044 pci_request_irq +EXPORT_SYMBOL vmlinux 0x6327d8a0 pps_register_source +EXPORT_SYMBOL vmlinux 0x6328a484 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x633ac030 devm_memunmap +EXPORT_SYMBOL vmlinux 0x633b47ad cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x633c9af5 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x635b67d2 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x635ee68d thread_group_exited +EXPORT_SYMBOL vmlinux 0x6360369d dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x6362b443 skb_seq_read +EXPORT_SYMBOL vmlinux 0x6370041d param_ops_hexint +EXPORT_SYMBOL vmlinux 0x6373c3bf __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x639b0041 kern_unmount +EXPORT_SYMBOL vmlinux 0x639dbcb8 param_get_ushort +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a5f6ce devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d4d05d __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x63e69204 pci_disable_device +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63eee835 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x63f53791 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x6405f89e mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x642fbf57 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x6431751e configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x643725fb cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x643e8003 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x644c0526 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x64670a1e t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x64782fce component_match_add_release +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a58a81 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b6a463 sock_no_bind +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c9ced0 block_write_full_page +EXPORT_SYMBOL vmlinux 0x64d164a9 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x64d7c1aa netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x64df9814 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x64f321ee __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x64f9d2f3 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x64fb0b5f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6517552e dev_close +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x65594761 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x655e4871 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x65676b15 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x6579c927 kobject_put +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659893e9 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x659d09b5 block_read_full_page +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x659e072a reuseport_alloc +EXPORT_SYMBOL vmlinux 0x65ae9cd9 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e08a3c config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e88114 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x65fc72b8 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x66084b4f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x6623db55 rproc_detach +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662c0768 path_get +EXPORT_SYMBOL vmlinux 0x66389180 skb_checksum +EXPORT_SYMBOL vmlinux 0x66461d77 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x6661f8a0 dev_open +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x66671f1b xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667b95b1 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668bc7e0 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6698c684 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x66a39200 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bf4a41 blk_queue_split +EXPORT_SYMBOL vmlinux 0x66c63c7b ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x66e0d960 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x66ee4468 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x670b6992 inet_ioctl +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6738671b param_set_short +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675f67da blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x676f9f7c udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67903d2f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x67a44c2d rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x67a7c9b4 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x67ae2666 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c07f38 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c49ab7 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x67d94a88 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x67dfa8b4 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x6817f247 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x681be1df mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x68421d85 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x6856e2e6 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x6876e457 pci_find_resource +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6886e32d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x68a6fec9 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x68c0534e i2c_verify_client +EXPORT_SYMBOL vmlinux 0x68ceb65e phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x68de23c9 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x68e714e0 security_path_mknod +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x691c7c50 inet6_getname +EXPORT_SYMBOL vmlinux 0x692191dc filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6925433d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x6927f845 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x693e7369 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x69487b3e serio_reconnect +EXPORT_SYMBOL vmlinux 0x694c38dd pci_reenable_device +EXPORT_SYMBOL vmlinux 0x6952b76e d_path +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697e66f4 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x698ae687 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x69a22620 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x69a370b8 vme_register_driver +EXPORT_SYMBOL vmlinux 0x69abe2ff mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x69ad20e9 path_is_under +EXPORT_SYMBOL vmlinux 0x69b27453 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e9e3ca inet6_offloads +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a049d23 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x6a09bc5e fb_validate_mode +EXPORT_SYMBOL vmlinux 0x6a24c5c8 pskb_extract +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a38b375 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a454e7f inet_frags_init +EXPORT_SYMBOL vmlinux 0x6a49cf58 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x6a4e0b57 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x6a5423bf jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aaf14df __check_sticky +EXPORT_SYMBOL vmlinux 0x6ac676b1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af62550 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6b0dcb0d bio_devname +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b300163 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x6b35316f ipv4_specific +EXPORT_SYMBOL vmlinux 0x6b4187a9 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x6b499437 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b4ec032 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a3467 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6bab578f xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x6bbca79e sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x6bbcda26 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6bc15495 shmem_aops +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc7eabf tty_do_resize +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be722d7 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6c0b2fa0 follow_up +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c26b4aa rproc_add +EXPORT_SYMBOL vmlinux 0x6c2854b6 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x6c352674 seq_bprintf +EXPORT_SYMBOL vmlinux 0x6c3b8ad0 of_node_get +EXPORT_SYMBOL vmlinux 0x6c41d556 to_nd_dax +EXPORT_SYMBOL vmlinux 0x6c4f7f81 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c5f298e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c9508c5 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x6ca06dbb bmap +EXPORT_SYMBOL vmlinux 0x6ca12306 nf_reinject +EXPORT_SYMBOL vmlinux 0x6ca2be81 audit_log +EXPORT_SYMBOL vmlinux 0x6cab00a8 rproc_boot +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb6eb78 seq_printf +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cbcce8c tty_kref_put +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf94965 dump_page +EXPORT_SYMBOL vmlinux 0x6d006250 kernel_connect +EXPORT_SYMBOL vmlinux 0x6d13bbfe of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3854c1 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x6d503fa0 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x6d59d943 ether_setup +EXPORT_SYMBOL vmlinux 0x6d5e1031 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6db58c39 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc9d919 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x6dcc6fec of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd642db task_work_add +EXPORT_SYMBOL vmlinux 0x6debc3a2 copy_highpage +EXPORT_SYMBOL vmlinux 0x6dec5463 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df23da1 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e25263f sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e64373d of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x6e707edf param_ops_charp +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e78c066 dst_dev_put +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec50730 tcp_close +EXPORT_SYMBOL vmlinux 0x6ee47beb phy_suspend +EXPORT_SYMBOL vmlinux 0x6f04b735 uart_match_port +EXPORT_SYMBOL vmlinux 0x6f08cecb __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6f21f88c phy_read_paged +EXPORT_SYMBOL vmlinux 0x6f223596 dst_init +EXPORT_SYMBOL vmlinux 0x6f2a2b3c serio_bus +EXPORT_SYMBOL vmlinux 0x6f2f0419 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f426a41 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x6f47cffa skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6f54dedc uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f704d21 register_qdisc +EXPORT_SYMBOL vmlinux 0x6f813814 phy_disconnect +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fae3131 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x6fb1168a blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb99af3 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc156e5 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x6fff87f0 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x6fffc5da blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70068e74 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x70082ec7 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7020d741 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7027e19d __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702a4110 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x705f6b79 iget_failed +EXPORT_SYMBOL vmlinux 0x706b67c6 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x7071b91e mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x70730ba6 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x70a0604e dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x70ab5989 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b4e192 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x70b85209 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x70bcc616 kobject_get +EXPORT_SYMBOL vmlinux 0x70c5b2bc __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x70ceaa0e dquot_quota_off +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70d49012 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x70f4cec1 sk_wait_data +EXPORT_SYMBOL vmlinux 0x71038c26 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7135d491 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7140adeb __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x7156ea03 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c58ee0 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x71c979d3 ilookup +EXPORT_SYMBOL vmlinux 0x71df8285 submit_bh +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72134119 _dev_crit +EXPORT_SYMBOL vmlinux 0x721c830f proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x721d1e09 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7227511e netif_device_attach +EXPORT_SYMBOL vmlinux 0x72302302 tty_lock +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x72539728 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x7253c196 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x72599fd8 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x726404a2 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x726dea5e irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x727de424 mem_section +EXPORT_SYMBOL vmlinux 0x72940084 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7296d4c5 iterate_dir +EXPORT_SYMBOL vmlinux 0x729e2154 fasync_helper +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a954d5 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x72aa25cd devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x72addebd neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x72b02b12 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bca5da pcie_get_mps +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x7328514c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7331d97f from_kuid +EXPORT_SYMBOL vmlinux 0x734880b3 dev_addr_add +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73846edc ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x73983d83 load_nls +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739ed786 mount_single +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b4b778 generic_setlease +EXPORT_SYMBOL vmlinux 0x73cb947b acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x73e47ce9 unregister_key_type +EXPORT_SYMBOL vmlinux 0x73efd008 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x73f53a1c cdrom_release +EXPORT_SYMBOL vmlinux 0x73fbbe93 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x73fce643 lease_modify +EXPORT_SYMBOL vmlinux 0x740ae3c2 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74295739 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7434ec92 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7436e885 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x743c9f41 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x7440545c phy_loopback +EXPORT_SYMBOL vmlinux 0x74441ab6 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7467ccca fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x746c9c77 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7478a443 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7489064a d_find_any_alias +EXPORT_SYMBOL vmlinux 0x74a53dcd inet_frag_find +EXPORT_SYMBOL vmlinux 0x74ab58c4 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c9ec34 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x74db2395 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x74e26ebd jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eb1d2e tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x750121ee of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x7510513d mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x751d2cd2 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x752bf191 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x754f0d32 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x7563fc99 param_ops_uint +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75928ccc clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x75b4f834 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x75b85427 ip_output +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75dca9d7 mount_bdev +EXPORT_SYMBOL vmlinux 0x75de2f8b of_find_property +EXPORT_SYMBOL vmlinux 0x75e96edf blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761a0026 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765a30e5 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767bc0eb ip_local_deliver +EXPORT_SYMBOL vmlinux 0x767e852e netif_receive_skb +EXPORT_SYMBOL vmlinux 0x769e3090 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x769e984c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a299cf scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e104b0 nf_log_unset +EXPORT_SYMBOL vmlinux 0x76e7fdaa netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x76eddd9a bdi_alloc +EXPORT_SYMBOL vmlinux 0x76fb5897 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x7701f89c fman_port_bind +EXPORT_SYMBOL vmlinux 0x77121936 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x7712973a kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x77170b2c dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x7721d6c3 update_region +EXPORT_SYMBOL vmlinux 0x772a8414 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x7738013a netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x773dc2eb vfs_mkdir +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774ccf42 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7765b4ce input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x7797c80f __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x77b041de par_io_of_config +EXPORT_SYMBOL vmlinux 0x77b57549 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c12041 inode_init_always +EXPORT_SYMBOL vmlinux 0x77c989b5 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780b93a2 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x780eff09 simple_setattr +EXPORT_SYMBOL vmlinux 0x78126c82 vfs_statfs +EXPORT_SYMBOL vmlinux 0x782c17a2 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x782f4144 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x783ded13 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7869b375 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78850250 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x78948b95 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x789872c7 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a74eca generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bbac3a genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x78c07af9 xattr_full_name +EXPORT_SYMBOL vmlinux 0x78ce3afe bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e86e07 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x78e9c0a9 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x78ff1fd4 d_genocide +EXPORT_SYMBOL vmlinux 0x7900e786 vm_map_ram +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x790c5085 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x790c9ddf ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x793b16b9 phy_attach +EXPORT_SYMBOL vmlinux 0x7941d067 of_get_property +EXPORT_SYMBOL vmlinux 0x795025a9 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x7968f55e rpmh_write_async +EXPORT_SYMBOL vmlinux 0x796e30b4 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7988d4e8 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x798a4af4 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x7997beaf rproc_put +EXPORT_SYMBOL vmlinux 0x7998c1a8 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x799b21d6 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x799da349 pci_pme_active +EXPORT_SYMBOL vmlinux 0x799de5bf sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a54b74 phy_print_status +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79add5d9 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x79c66cbc dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x79e0a6d0 eth_header_cache +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79efd3e1 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x79fbfbad free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x7a03112c scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1ce876 security_sock_graft +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a5ac1a9 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7a65e035 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x7a80c888 current_in_userns +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aadcce1 build_skb +EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abab99f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7abad2dd simple_pin_fs +EXPORT_SYMBOL vmlinux 0x7abb6a5a tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7ac6b0b6 netlink_ack +EXPORT_SYMBOL vmlinux 0x7ac7ae0a d_add_ci +EXPORT_SYMBOL vmlinux 0x7acec1f4 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x7acedf2c netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af62a0b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x7b161b78 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x7b1fed59 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x7b22e361 pcim_iomap +EXPORT_SYMBOL vmlinux 0x7b2dcbfb bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b850ec5 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7badf586 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x7bb4f450 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bcce821 bio_split +EXPORT_SYMBOL vmlinux 0x7bcff23b sock_init_data +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c6305d9 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7c643b2f param_set_charp +EXPORT_SYMBOL vmlinux 0x7c658198 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7c65c184 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7c695450 devm_release_resource +EXPORT_SYMBOL vmlinux 0x7c76724e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7c869b74 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7c8dd507 nobh_writepage +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9d9170 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7ca7d522 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cbaaf86 has_capability +EXPORT_SYMBOL vmlinux 0x7cc123bb devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7cc1e2b0 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7cc2795b ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7cc9b416 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cef9ca7 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4ce5ab loop_register_transfer +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d626468 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d7c7013 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x7d9c39cf remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dddae77 param_set_ushort +EXPORT_SYMBOL vmlinux 0x7de73b3b first_ec +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e1e770f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e31f1cf security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x7e367ff8 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x7e38c1e9 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x7e4c75b5 security_sk_clone +EXPORT_SYMBOL vmlinux 0x7e4cc80d current_time +EXPORT_SYMBOL vmlinux 0x7e531b54 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x7e5bfede max8925_reg_read +EXPORT_SYMBOL vmlinux 0x7e680760 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x7e6ac8a5 dump_align +EXPORT_SYMBOL vmlinux 0x7e7c130c input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x7e8d7e77 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x7e9168e6 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7ea53367 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f04c90c devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2a50ef dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x7f2a8515 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x7f440e23 nf_log_register +EXPORT_SYMBOL vmlinux 0x7f47fd78 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7f49d2c9 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f76272e dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8a77a4 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7f975c0f register_filesystem +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fcff33d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7fd04fa9 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x7fda4b93 napi_get_frags +EXPORT_SYMBOL vmlinux 0x7fdc94bf kernel_read +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe5fb84 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x800d3672 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x8035623e unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80528430 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8055ff60 sync_file_create +EXPORT_SYMBOL vmlinux 0x807f9ff5 serio_interrupt +EXPORT_SYMBOL vmlinux 0x808d1bf7 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x80961ff2 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80991a49 dev_trans_start +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80a85f02 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x80aa55db reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x80ab86a7 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x80ade672 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cf58ab devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d69948 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e9cd2b of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80f48a46 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x80fff543 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8144d3ff netdev_notice +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x817cc308 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81984e4d kernel_write +EXPORT_SYMBOL vmlinux 0x81a75e4d of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x81ae342a of_chosen +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81c4930b xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x81d52c2b iget_locked +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ef092d mpage_writepage +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x82407a8f tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x82411ed1 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8263ec83 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x826d283c tty_port_init +EXPORT_SYMBOL vmlinux 0x8274ca64 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82aadd69 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x82af6b33 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x82b51027 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x82bd27cb __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d5cc16 init_task +EXPORT_SYMBOL vmlinux 0x831ce0ab bioset_exit +EXPORT_SYMBOL vmlinux 0x831ec528 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x8325b20a cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x8346b02a blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x83497434 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x834f69cd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835dd27c vlan_vid_del +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x839b25b2 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x83a50608 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83ca4be7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x83cd989e ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x83f30a34 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840cfb8c fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x84117757 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x841a4ba8 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x84423b1e is_subdir +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84588f52 request_key_tag +EXPORT_SYMBOL vmlinux 0x8459cd6f key_validate +EXPORT_SYMBOL vmlinux 0x845f310e inode_needs_sync +EXPORT_SYMBOL vmlinux 0x84665361 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x84688331 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x847269ba genphy_update_link +EXPORT_SYMBOL vmlinux 0x847ce76c __breadahead +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x849fa5e4 may_umount +EXPORT_SYMBOL vmlinux 0x849fcfa0 register_md_personality +EXPORT_SYMBOL vmlinux 0x84a36b23 blk_put_request +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c87cd2 simple_getattr +EXPORT_SYMBOL vmlinux 0x84fb0188 __find_get_block +EXPORT_SYMBOL vmlinux 0x85079e58 ip_options_compile +EXPORT_SYMBOL vmlinux 0x85126ad0 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x854b15c6 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x8556b6c0 con_is_visible +EXPORT_SYMBOL vmlinux 0x855ae4df is_bad_inode +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857f5903 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85992637 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x85a98419 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x85ae1458 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c0ee0c crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x85d0425d tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e3b4e4 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x85e7fd35 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x85ee1574 register_netdevice +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x86137547 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x86328f34 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863ab8c0 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x863bce0f mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x863d7c14 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x864932e3 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x867b4ff5 bh_submit_read +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868b85b1 sock_create_kern +EXPORT_SYMBOL vmlinux 0x86a59797 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x86b99a99 skb_ext_add +EXPORT_SYMBOL vmlinux 0x86d06992 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x86d14fad __skb_ext_del +EXPORT_SYMBOL vmlinux 0x86d163e9 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d63675 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x86db3e84 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x86e97b26 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x86f75144 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87105cf3 napi_enable +EXPORT_SYMBOL vmlinux 0x872cb431 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x8747991f page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8784a486 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x8786e350 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x878ec050 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x87986baa sg_miter_stop +EXPORT_SYMBOL vmlinux 0x879bd861 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x87a2473b rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x87ac1416 skb_copy_header +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c02562 cdev_alloc +EXPORT_SYMBOL vmlinux 0x87dca6de sock_i_ino +EXPORT_SYMBOL vmlinux 0x87e2b78f tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x88074f4c blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x880bdb6d security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x880eb0c1 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8813094c of_get_mac_address +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8827ff43 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x88283016 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x8837ca26 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x8862976f neigh_direct_output +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88b587b4 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x88c567ad configfs_depend_item +EXPORT_SYMBOL vmlinux 0x88c5f78d dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x88db8dad xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e127f2 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e663d5 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x88f4ba4c udp_disconnect +EXPORT_SYMBOL vmlinux 0x88f7aaad fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x8908c7c8 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x893f3bff tcp_splice_read +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x895bd0dd __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x896c2326 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x897667f1 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x897b6fab nd_device_register +EXPORT_SYMBOL vmlinux 0x897b99df pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x897cde9b kthread_stop +EXPORT_SYMBOL vmlinux 0x8991ff62 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89a3f3af sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x89e77b4e of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x89fb656b tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x8a02c719 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x8a1ddcd6 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a63367a mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x8a6db361 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7ead8a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8a8d156b security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9f7c88 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x8aa5bada genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x8aa9ad7d kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x8ab2d6b1 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x8ab7221b iov_iter_advance +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac5175b skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x8ac57096 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ada919f ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b141cb6 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b3511b1 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x8b3dd5a8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x8b431242 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b733a8f i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8a1a4e inc_nlink +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba100cb serio_open +EXPORT_SYMBOL vmlinux 0x8ba9c413 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x8bcb20cc ip_do_fragment +EXPORT_SYMBOL vmlinux 0x8bcc0504 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8bd4f1d6 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x8bd74829 phy_detach +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be25875 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x8be72728 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x8c1b27b0 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2cb18e unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x8c3b39c7 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x8c3c4fea acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x8c4a1e11 proto_register +EXPORT_SYMBOL vmlinux 0x8c593dc0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x8c652b77 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x8c657034 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c6b5c19 truncate_setsize +EXPORT_SYMBOL vmlinux 0x8c759e05 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x8c7857ac __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8c7c3fa5 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x8c80ebbc netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c86d1f1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x8c9387d8 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x8c989489 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca3b9ba of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x8cadff81 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbab1e1 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce31562 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x8ce6cf5c __destroy_inode +EXPORT_SYMBOL vmlinux 0x8cf075c1 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x8cf12b5e bio_init +EXPORT_SYMBOL vmlinux 0x8cfcdabf rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x8d18164c show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x8d1fcc1b scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d43a7d3 vfs_fsync +EXPORT_SYMBOL vmlinux 0x8d4e252e touch_atime +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d56c827 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x8d632af5 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x8d6c9246 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d780ec5 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x8d976404 sget_fc +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da18a4f pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8dd01105 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x8ddb64d9 kill_fasync +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de93dda nlmsg_notify +EXPORT_SYMBOL vmlinux 0x8dea6f9b always_delete_dentry +EXPORT_SYMBOL vmlinux 0x8df20f47 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dae3 free_netdev +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e16b815 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e2ab6ef skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x8e3a6861 new_inode +EXPORT_SYMBOL vmlinux 0x8e3d9180 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e50b9fc mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x8e5be223 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x8e5c6037 tcp_child_process +EXPORT_SYMBOL vmlinux 0x8e6a919e tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x8e78ccfa eth_validate_addr +EXPORT_SYMBOL vmlinux 0x8e846acf udp_seq_start +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8eb4b51e mount_subtree +EXPORT_SYMBOL vmlinux 0x8ec4d218 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x8ec96b47 scsi_add_device +EXPORT_SYMBOL vmlinux 0x8ed29748 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x8edae0dc ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x8ee8aaaa __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x8efc22cf qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f03cc35 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8f174222 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x8f2b2d5a pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x8f3254b3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8f32f867 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x8f32f8a6 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x8f334b72 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x8f7e4f56 lookup_one_len +EXPORT_SYMBOL vmlinux 0x8f7ece18 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x8f934d98 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f99710a fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x8f9fe8d8 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x8fa0be37 of_clk_get +EXPORT_SYMBOL vmlinux 0x8fa22527 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fbd4115 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x8fc02443 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd364b9 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8fda6a7f __next_node_in +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fe80a0b __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x8ff53225 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffe6c3e devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9009628a simple_rename +EXPORT_SYMBOL vmlinux 0x9013fbfd inet6_ioctl +EXPORT_SYMBOL vmlinux 0x9016f83d tso_build_data +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x903a5771 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x9044b924 register_key_type +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905a4b21 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x905cb51b tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x9061a882 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x906418ec sock_recvmsg +EXPORT_SYMBOL vmlinux 0x9071b97b scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x90a7affd dm_register_target +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e347ad posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x90ee6b98 get_phy_device +EXPORT_SYMBOL vmlinux 0x90f52b0f ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x90f97e9a seq_open_private +EXPORT_SYMBOL vmlinux 0x910289ff twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x910dec5e blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x914b2333 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x917e9754 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919df155 config_item_get +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d2ea81 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x91e428d8 __put_page +EXPORT_SYMBOL vmlinux 0x91e5a841 tty_write_room +EXPORT_SYMBOL vmlinux 0x91eee974 seq_release +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fa1e6f xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x91fd6d0f __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x920ea22f inet_sendmsg +EXPORT_SYMBOL vmlinux 0x9228f481 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92439c64 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x925481a0 d_instantiate +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9268417f finish_no_open +EXPORT_SYMBOL vmlinux 0x926d4eea tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x926ed0fd clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927b2507 generic_read_dir +EXPORT_SYMBOL vmlinux 0x92872626 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a37b45 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x92b1cbd4 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dbe20a pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x92e27d62 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92edff2e __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x92f9e00a find_inode_nowait +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931a8588 ata_link_printk +EXPORT_SYMBOL vmlinux 0x93318f0c elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x9336dc6c devfreq_update_status +EXPORT_SYMBOL vmlinux 0x934fa877 pci_get_device +EXPORT_SYMBOL vmlinux 0x9352f5f0 elv_rb_del +EXPORT_SYMBOL vmlinux 0x935aac3c nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938181f9 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x938722dc jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x938bc601 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x938cc3cb netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x939287d7 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a76d9f dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cc3b24 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93d76919 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x93ec8e75 ata_print_version +EXPORT_SYMBOL vmlinux 0x93f12561 nla_put +EXPORT_SYMBOL vmlinux 0x93f5b6bc sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x940630c3 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x9406d37e trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9409c14a dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x9412e2e5 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x941be648 d_invalidate +EXPORT_SYMBOL vmlinux 0x941d7bca mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x942536ba phy_attach_direct +EXPORT_SYMBOL vmlinux 0x9427ee13 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9433828c nobh_write_begin +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945d5d93 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x945f970a jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x94877492 kobject_del +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948c4ad5 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x948ef130 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x949092e3 napi_complete_done +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ad0a8d __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x94bb2579 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94ca71a6 param_get_byte +EXPORT_SYMBOL vmlinux 0x94d62509 fb_find_mode +EXPORT_SYMBOL vmlinux 0x94de39fa scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x94e3b316 ll_rw_block +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94f53e0d sk_stream_error +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9521cb3f bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x953095f8 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x95541e47 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x95769650 nf_log_set +EXPORT_SYMBOL vmlinux 0x95876f97 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x9589c4e3 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x958e6b4e jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95be95eb input_inject_event +EXPORT_SYMBOL vmlinux 0x95cb5109 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x95dad5b2 pci_dev_get +EXPORT_SYMBOL vmlinux 0x95e14953 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x95fda6aa seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x96032abe skb_copy +EXPORT_SYMBOL vmlinux 0x96070656 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x9621c960 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x96374868 pci_enable_device +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x969d34ed posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x96a7f1e8 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x96ac6f78 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b79197 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c76ccf sock_kmalloc +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x971ac5ed mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x971d6bd4 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x972b36ba serio_close +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9742ce9b nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x97451498 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x977b9e82 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x978226c8 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x9788d7e1 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x978eaeaa alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97944c2f __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x979aa4d1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x979b2bde rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x97a1ad9a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b0f563 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c7e839 __of_get_address +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97e40742 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x97ec4a25 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97f5fc68 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x97f8c242 console_stop +EXPORT_SYMBOL vmlinux 0x97fca4f0 pci_iomap +EXPORT_SYMBOL vmlinux 0x9801e2c3 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x980220bc tty_register_device +EXPORT_SYMBOL vmlinux 0x9802e7db tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x98306320 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x9846bc13 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x9848d519 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x98502ff5 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x98681fd8 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x98830541 kill_block_super +EXPORT_SYMBOL vmlinux 0x9886796b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x989b7873 sk_common_release +EXPORT_SYMBOL vmlinux 0x98a5e4e9 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x98a74fe2 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x98a9817b jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x98b104b8 dns_query +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c1f52e __frontswap_store +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cb89ea pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d6ed10 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x98e412c6 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ecf355 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x99041f61 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x99113621 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x991319d7 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x99265c50 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99406379 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9960b66b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x99692938 cdev_add +EXPORT_SYMBOL vmlinux 0x996d9fe2 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x997f1ab9 file_path +EXPORT_SYMBOL vmlinux 0x9999e893 dev_set_alias +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a232f2 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x99a92f0c devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99a9a074 phy_device_create +EXPORT_SYMBOL vmlinux 0x99cd1722 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x99ced333 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e312ce kthread_blkcg +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a19b7cb __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a27648f fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x9a285cec file_open_root +EXPORT_SYMBOL vmlinux 0x9a2a45d6 input_register_handle +EXPORT_SYMBOL vmlinux 0x9a5786af of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a660733 xp_free +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a753057 seq_read_iter +EXPORT_SYMBOL vmlinux 0x9a9d738a phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x9aa44449 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac79660 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x9ad282e7 do_splice_direct +EXPORT_SYMBOL vmlinux 0x9ad847e0 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x9add8f5c disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aecfb80 km_new_mapping +EXPORT_SYMBOL vmlinux 0x9b01d7ab tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b16c6dd register_fib_notifier +EXPORT_SYMBOL vmlinux 0x9b24a027 init_net +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2bf41a dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3b0d3d pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x9b3edc05 passthru_features_check +EXPORT_SYMBOL vmlinux 0x9b4006e5 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4db94b sock_efree +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b7b857d xudma_get_device +EXPORT_SYMBOL vmlinux 0x9b7cd0a2 dentry_open +EXPORT_SYMBOL vmlinux 0x9ba92579 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x9bb6ba19 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x9bbe5d5f pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x9bc096f5 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x9bca5155 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x9be24212 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9bfbea55 config_item_put +EXPORT_SYMBOL vmlinux 0x9c04affc netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x9c11c926 send_sig +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1b1356 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x9c1cd7eb nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c5848db sock_no_linger +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c657088 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x9c6bdcb2 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x9c7631a4 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9ca09403 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9ca50f09 generic_fadvise +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb395b6 generic_write_checks +EXPORT_SYMBOL vmlinux 0x9cc08747 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd50f5e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x9cd5818b tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9cd718c1 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce5390b qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x9cec6a9c rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x9cfcb1af udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d6f22ba security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x9d785746 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d99ab78 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x9d9d680b rt6_lookup +EXPORT_SYMBOL vmlinux 0x9da599b2 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x9da9acf5 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9db87708 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x9dd51cb9 key_unlink +EXPORT_SYMBOL vmlinux 0x9dd6a3b9 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x9ddc76f9 con_is_bound +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e213ddc buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e2ea1be phy_register_fixup +EXPORT_SYMBOL vmlinux 0x9e36fc75 __bread_gfp +EXPORT_SYMBOL vmlinux 0x9e3e2952 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5a699e fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6751b3 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x9e6bb10b vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e926403 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x9e95ae2b sock_release +EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea11ca9 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x9ea75cd9 ps2_init +EXPORT_SYMBOL vmlinux 0x9ea7bca2 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9eb2d2ae neigh_for_each +EXPORT_SYMBOL vmlinux 0x9eb76503 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9edfac04 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x9ee62c7f pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x9ef31dfb dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x9ef46838 softnet_data +EXPORT_SYMBOL vmlinux 0x9f0131ef tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x9f05a462 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x9f089975 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9f0d1471 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9f17ef48 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x9f1c7f52 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x9f3be6fc xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x9f3ed42f __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x9f43cfd6 mii_check_link +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f59cfaa iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x9f5ad422 vm_map_pages +EXPORT_SYMBOL vmlinux 0x9f71da73 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9f747e0c security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f8fc61a scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x9f97f841 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99a54e mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x9f9e01a8 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb46ca7 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x9fb54dcb tcf_exts_change +EXPORT_SYMBOL vmlinux 0x9fb64548 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x9fbee5b3 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x9fc1f18c jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x9fd7619f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9fd8ff6f import_iovec +EXPORT_SYMBOL vmlinux 0x9fdc4e24 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe0efd8 netdev_state_change +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff2f043 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa0280e8e eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02afa3b netlink_net_capable +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa04f1f55 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa070e7fa dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xa07a04a2 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08cdc7c of_parse_phandle +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aefe65 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b51459 import_single_range +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dac9ae msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e24c23 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0f122a0 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xa0f6ca57 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa102f5b2 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xa10858f2 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa118139f phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xa124c6c6 __quota_error +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa14c8fe1 cdev_del +EXPORT_SYMBOL vmlinux 0xa152d713 seq_lseek +EXPORT_SYMBOL vmlinux 0xa15623aa jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xa177647c dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa1b9353e i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa1caf44c scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa1cf4019 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xa1dc9fda tcf_em_register +EXPORT_SYMBOL vmlinux 0xa1e62978 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa1eb9abd kobject_init +EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa27f3e87 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2aa20ca of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xa2af507b __scsi_add_device +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d61c52 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e0cfc3 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xa2f1f66f xp_alloc +EXPORT_SYMBOL vmlinux 0xa3109b41 dump_skip_to +EXPORT_SYMBOL vmlinux 0xa319d265 dquot_file_open +EXPORT_SYMBOL vmlinux 0xa3256b6f skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa3425859 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xa34c295d page_pool_destroy +EXPORT_SYMBOL vmlinux 0xa34cf954 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa352cde3 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa36ad100 pci_match_id +EXPORT_SYMBOL vmlinux 0xa36c643d neigh_table_clear +EXPORT_SYMBOL vmlinux 0xa36e14d2 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xa3773cd1 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xa37b7d76 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xa38aa42d mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xa3a45094 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa3b1f71f seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xa3bbc5a2 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xa3d6cb84 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xa3d9e0dc padata_free +EXPORT_SYMBOL vmlinux 0xa3eb8379 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xa3f966b5 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa4029d55 ethtool_notify +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa449bc4b xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa454aea6 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xa45817d8 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xa4657bee blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa46abde0 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa46b9284 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa480eb72 alloc_pages +EXPORT_SYMBOL vmlinux 0xa482e61c vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xa48b0034 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xa4984f30 param_set_ullong +EXPORT_SYMBOL vmlinux 0xa49e2175 generic_permission +EXPORT_SYMBOL vmlinux 0xa4a96a08 tcp_filter +EXPORT_SYMBOL vmlinux 0xa4b7f9b8 dma_map_resource +EXPORT_SYMBOL vmlinux 0xa4da6a42 tty_check_change +EXPORT_SYMBOL vmlinux 0xa4fa5a90 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xa4fbf847 netdev_printk +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xa509280c alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa51282db ip6_xmit +EXPORT_SYMBOL vmlinux 0xa51c8b4d sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa558a116 simple_get_link +EXPORT_SYMBOL vmlinux 0xa55fdfdb sockfd_lookup +EXPORT_SYMBOL vmlinux 0xa56486af set_posix_acl +EXPORT_SYMBOL vmlinux 0xa566d98d ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xa577b00c tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa594c4db pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b1011b rproc_alloc +EXPORT_SYMBOL vmlinux 0xa5b2dd38 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xa5b3bccc frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xa5bd0142 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xa5cf1ba5 __neigh_create +EXPORT_SYMBOL vmlinux 0xa5d33f94 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xa5e89e3b jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa5ec25f4 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa6317034 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xa63272f2 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xa63ccaab param_get_hexint +EXPORT_SYMBOL vmlinux 0xa65b00e4 vfs_symlink +EXPORT_SYMBOL vmlinux 0xa66e7d50 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa6802283 vfs_rename +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6ae8edb vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa6b75e73 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa6cddce1 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xa6d55f6b phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xa6e458e5 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xa6ea2227 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa6effbff scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa71ea704 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xa71ec6b9 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa73c75fb pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74cbdff phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xa750bfb5 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xa75d4b43 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xa76ba311 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7a3b70b param_ops_bint +EXPORT_SYMBOL vmlinux 0xa7ca9544 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa7d453f1 nd_btt_version +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7ec621a pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f14e14 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa819971d __register_binfmt +EXPORT_SYMBOL vmlinux 0xa81f0b1d put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xa81f7818 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xa82abd86 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xa8331812 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84c4465 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa8516835 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85e771d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8800257 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xa8852ef1 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a3cd3c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b02b03 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa8b3a091 bio_advance +EXPORT_SYMBOL vmlinux 0xa8bedfde of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e684b9 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f2304a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90df7d7 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xa912bf24 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa9581acd setattr_prepare +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9830b49 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa985f2b3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xa98f6553 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xa993b9cd elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99b5bac iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xa99d339f make_bad_inode +EXPORT_SYMBOL vmlinux 0xa9c2ff7e tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0xa9d0d810 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xa9ec68d8 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f28302 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xa9fb92af misc_deregister +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1e9351 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xaa1f1439 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xaa2c1c9f param_set_uint +EXPORT_SYMBOL vmlinux 0xaa2ca870 km_report +EXPORT_SYMBOL vmlinux 0xaa30d4c7 netdev_info +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa4cc284 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xaa5de137 inode_permission +EXPORT_SYMBOL vmlinux 0xaa5f67ad __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xaa61b364 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xaa627e87 put_fs_context +EXPORT_SYMBOL vmlinux 0xaa6352ac amba_device_unregister +EXPORT_SYMBOL vmlinux 0xaa6bda02 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7f3a45 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa823b16 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xaa8d3efe generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xaa99baff stream_open +EXPORT_SYMBOL vmlinux 0xaa9cce20 neigh_table_init +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae7f20f dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab18feb0 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xab1a5a91 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab5e45e0 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab69ad53 would_dump +EXPORT_SYMBOL vmlinux 0xab750f35 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8bbeb7 proto_unregister +EXPORT_SYMBOL vmlinux 0xab8d522f call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xab9b9950 devm_clk_get +EXPORT_SYMBOL vmlinux 0xabb25a41 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xabde8b56 is_nd_btt +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac018fe8 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xac16f791 mmc_request_done +EXPORT_SYMBOL vmlinux 0xac1867d8 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac279747 input_allocate_device +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac5263bf mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7acb51 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac994f89 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xaca2762d xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xaca4128d devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5c8e7 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xaccc9de8 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf84f16 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad04e48f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad31db54 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad4bb1b9 mii_link_ok +EXPORT_SYMBOL vmlinux 0xad5ad565 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad6b0a78 fman_port_get_device +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadab9a4f mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xadb51c80 set_binfmt +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc451ed netdev_warn +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xaddd13ba dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae1ea8ed freeze_super +EXPORT_SYMBOL vmlinux 0xae272c6a rt_dst_clone +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae3255a0 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae42a80f cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xae4d0edb blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae70c62d inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xae743d53 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xae846104 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xae8feca8 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaebd1b18 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaecbc9d7 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xaecf21a8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xaf1081a7 sock_rfree +EXPORT_SYMBOL vmlinux 0xaf16960d unregister_binfmt +EXPORT_SYMBOL vmlinux 0xaf1d8c42 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xaf3a97a8 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xaf3aa60c dqget +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e1256 phy_driver_register +EXPORT_SYMBOL vmlinux 0xaf4d91f3 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf6fb35b scsi_device_put +EXPORT_SYMBOL vmlinux 0xaf8f7907 skb_pull +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xb005dbe3 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xb0062e97 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xb0064de7 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xb017a2ac generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb03c4b86 cont_write_begin +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb05748a6 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xb05d6e13 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb084074e block_commit_write +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a0e863 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ca00ce sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xb0caa2c1 fqdir_exit +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ef7dd5 __ps2_command +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f5b133 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb10d87f6 of_device_alloc +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11e6f19 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12695c5 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb133711c md_flush_request +EXPORT_SYMBOL vmlinux 0xb1432126 pci_release_region +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb15dc24f mntget +EXPORT_SYMBOL vmlinux 0xb16d0333 vme_dma_request +EXPORT_SYMBOL vmlinux 0xb173c358 sock_set_mark +EXPORT_SYMBOL vmlinux 0xb17a1c24 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb19a2bd8 clear_nlink +EXPORT_SYMBOL vmlinux 0xb1bf7f8e dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d2ccbb phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e0923f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xb1e75f3e of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xb1fb7b1c input_get_keycode +EXPORT_SYMBOL vmlinux 0xb2041338 get_vm_area +EXPORT_SYMBOL vmlinux 0xb22ad040 set_nlink +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb23a4302 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xb23b85d3 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb2436984 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xb24b0f52 ps2_drain +EXPORT_SYMBOL vmlinux 0xb24bf154 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xb252f72c blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0xb25b3a27 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xb26facd8 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb285e777 phy_start +EXPORT_SYMBOL vmlinux 0xb2992ff5 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb2a68f92 mount_nodev +EXPORT_SYMBOL vmlinux 0xb2a6d9da twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2e46688 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f43e0d __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2f818d6 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30fb499 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb31a0aea genphy_loopback +EXPORT_SYMBOL vmlinux 0xb31ab09d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32a2379 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb342c8bf ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xb3488968 set_cached_acl +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3522844 genphy_resume +EXPORT_SYMBOL vmlinux 0xb355510b skb_free_datagram +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3704590 PDE_DATA +EXPORT_SYMBOL vmlinux 0xb373f7e4 cdev_init +EXPORT_SYMBOL vmlinux 0xb37f890e unlock_page +EXPORT_SYMBOL vmlinux 0xb38d781e d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3a9f7a6 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3d0f529 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb401be08 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb4094101 iunique +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb439ec51 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xb4410f85 dev_get_flags +EXPORT_SYMBOL vmlinux 0xb44eadc5 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb44ee24a mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb459ee71 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb4619572 free_buffer_head +EXPORT_SYMBOL vmlinux 0xb4696426 blk_put_queue +EXPORT_SYMBOL vmlinux 0xb471cad1 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xb4798e3b xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4b30d26 blk_get_queue +EXPORT_SYMBOL vmlinux 0xb4b3807c pci_choose_state +EXPORT_SYMBOL vmlinux 0xb4b8cb7a scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb4c847b1 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xb4d5497f dma_pool_create +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb54229be pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xb542f4dc mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xb557b7e2 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb565b1c2 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xb567dbfc dquot_acquire +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb577afd3 simple_lookup +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5971cca tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xb59f6218 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b3e751 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5beb4a4 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xb5d288ad migrate_page_copy +EXPORT_SYMBOL vmlinux 0xb5d2e522 param_ops_byte +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f2aafa sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb6117cb9 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xb615fc36 ps2_command +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb62b0b17 page_pool_create +EXPORT_SYMBOL vmlinux 0xb62e895f twl6040_power +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63f2047 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6692baa blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xb675eaf4 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67f8123 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xb67fb1b0 netpoll_setup +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb685778a dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a14f4d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b31848 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xb6bfcd07 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb6c86b0e jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xb6fc43da generic_listxattr +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb6ff59bb submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xb708f7a9 md_write_inc +EXPORT_SYMBOL vmlinux 0xb70d2af3 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb70d8a73 fman_bind +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71d5e86 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72cc25b tty_devnum +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb748de32 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xb7516c67 __put_user_ns +EXPORT_SYMBOL vmlinux 0xb7541cdc sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb772cfcf __bforget +EXPORT_SYMBOL vmlinux 0xb772fbe8 find_vma +EXPORT_SYMBOL vmlinux 0xb777d9ad skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xb77f9e0f inode_set_flags +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb791199c sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb7aa790b sock_wmalloc +EXPORT_SYMBOL vmlinux 0xb7b5830b of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7bf147c skb_store_bits +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c732a6 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xb7cca32f __sock_create +EXPORT_SYMBOL vmlinux 0xb7d2a0f4 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xb7f6e222 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xb806cf20 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xb80ffbb1 migrate_page_states +EXPORT_SYMBOL vmlinux 0xb81782dc udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xb824ab67 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb83790a2 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xb841a1b8 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb84a8e61 get_fs_type +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb866a4c6 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb88376ce ip_frag_init +EXPORT_SYMBOL vmlinux 0xb88ef3f4 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb895aecb fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89c686c secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb89f9dcb rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c3e9d7 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xb8ead675 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb8ff855a tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb911c552 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xb9154a80 consume_skb +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb949a278 do_SAK +EXPORT_SYMBOL vmlinux 0xb956911f seq_hex_dump +EXPORT_SYMBOL vmlinux 0xb956b33e deactivate_super +EXPORT_SYMBOL vmlinux 0xb958181b netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xb95f0823 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bcf1fd scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb9c58d93 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xb9de135e try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f3faa9 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1fc46e touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xba29a58c rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xba2d6c60 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xba316dfd remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xba436489 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5564f6 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xba5b1963 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba72ef26 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xba7ce976 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xba7efe94 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xba85bd48 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xba8b5cb5 dquot_destroy +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb05c405 init_pseudo +EXPORT_SYMBOL vmlinux 0xbb09131b pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb273e4f iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xbb276ff4 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3b802c pci_restore_state +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb554cca of_phy_connect +EXPORT_SYMBOL vmlinux 0xbb5c9c5b __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb640c33 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb9c3703 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba9186c pci_find_bus +EXPORT_SYMBOL vmlinux 0xbbaea094 ilookup5 +EXPORT_SYMBOL vmlinux 0xbbd1d5af submit_bio +EXPORT_SYMBOL vmlinux 0xbbd79fc1 tso_count_descs +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbee83ef pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3f442f drop_super +EXPORT_SYMBOL vmlinux 0xbc527ca3 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xbc61c1a0 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xbc661ae4 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xbc69ae87 tcp_mmap +EXPORT_SYMBOL vmlinux 0xbc7d5c92 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xbc82779c __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb1849a blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xbcb35218 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xbcd18e8f dev_disable_lro +EXPORT_SYMBOL vmlinux 0xbcdfad48 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xbd016dd1 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xbd0f7767 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xbd188024 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xbd1f41ee generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xbd271e10 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbd3b68b4 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xbd3dd6df rproc_free +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd747a8d pci_get_slot +EXPORT_SYMBOL vmlinux 0xbd8e17c2 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xbda98018 skb_dequeue +EXPORT_SYMBOL vmlinux 0xbdb20e7b kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xbdc9818c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xbdd14e7d pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xbddc9230 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xbde552bf kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xbdea6716 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xbdfd4148 pci_free_irq +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe16e4d8 add_to_pipe +EXPORT_SYMBOL vmlinux 0xbe1d7ab2 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xbe1f9028 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe54a300 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5e4733 dump_emit +EXPORT_SYMBOL vmlinux 0xbe6a3424 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe763d54 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe8f3632 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xbea78d31 __d_drop +EXPORT_SYMBOL vmlinux 0xbeb794dc vme_master_request +EXPORT_SYMBOL vmlinux 0xbede3137 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xbeecc51e __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf126168 start_tty +EXPORT_SYMBOL vmlinux 0xbf2df0df phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xbf45151c d_prune_aliases +EXPORT_SYMBOL vmlinux 0xbf4a1161 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xbf538097 vfs_create +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf685f82 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xbf8dae4e vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa22d95 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xbfae75eb __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xbfbe2376 page_pool_put_page +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfe2e28c seq_file_path +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff04cf0 rproc_del +EXPORT_SYMBOL vmlinux 0xbff18064 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbff4f39a sock_create +EXPORT_SYMBOL vmlinux 0xbffbe5ec pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xbffed1a4 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xc013d0c8 amba_release_regions +EXPORT_SYMBOL vmlinux 0xc01a9af9 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xc0208446 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc03f1439 unix_get_socket +EXPORT_SYMBOL vmlinux 0xc0441a85 update_devfreq +EXPORT_SYMBOL vmlinux 0xc053fe63 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc05a5ed5 udp_set_csum +EXPORT_SYMBOL vmlinux 0xc063f0f8 vfs_get_super +EXPORT_SYMBOL vmlinux 0xc064fc21 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xc06919b0 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xc06965fa mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0a4c22b unregister_netdev +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b2ccd8 tcp_connect +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c25e6f fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xc0dbbc83 sock_i_uid +EXPORT_SYMBOL vmlinux 0xc0ef520c tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1106d1a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xc12d9f43 neigh_destroy +EXPORT_SYMBOL vmlinux 0xc1333e9c mdio_device_reset +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15575a9 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc166b4bf xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16d27b1 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xc17f60cf tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xc1932d7f netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xc1afe996 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xc1ce3ad0 param_get_ullong +EXPORT_SYMBOL vmlinux 0xc1d06718 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc1d14ae9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d80ecb mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1f798b6 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xc20341d2 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc20ed179 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc22866aa vfs_rmdir +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc27eda04 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a00fdc inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2a874e3 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc2ad409d netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xc2cf21d5 vme_bus_num +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc2f6e100 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xc2fe1be8 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc3002c94 sock_alloc +EXPORT_SYMBOL vmlinux 0xc30b8826 km_policy_expired +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc314da70 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3208313 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3333df6 finalize_exec +EXPORT_SYMBOL vmlinux 0xc3431224 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xc347759f pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xc34b2293 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38af761 __devm_request_region +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38cdcac gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc3964e40 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc39b633d inet_listen +EXPORT_SYMBOL vmlinux 0xc39e96a3 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xc3c31323 sg_miter_next +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3cd424b mmc_can_trim +EXPORT_SYMBOL vmlinux 0xc3cdecbc tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xc3d21682 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xc3d760c0 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xc3dd9a00 from_kgid +EXPORT_SYMBOL vmlinux 0xc3f7c790 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc404b6c0 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xc40721e4 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xc407ea9f input_unregister_handle +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc43dfa5a jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xc455eac3 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xc461e758 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47fe4a2 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xc48f694e mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xc49c3cd3 empty_aops +EXPORT_SYMBOL vmlinux 0xc4a49c7e vc_resize +EXPORT_SYMBOL vmlinux 0xc4a9dd9e proc_symlink +EXPORT_SYMBOL vmlinux 0xc4af341b tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4c91796 fman_get_revision +EXPORT_SYMBOL vmlinux 0xc4d8cbe2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc4e99218 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xc4ef7b17 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xc50dd7c8 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xc513eac5 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc514531a tcf_register_action +EXPORT_SYMBOL vmlinux 0xc5166c50 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xc5254b93 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xc526e1e8 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc5697b77 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc56ee2dc dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59bbd6d alloc_fddidev +EXPORT_SYMBOL vmlinux 0xc59ee450 param_ops_int +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5b3c8b5 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xc5b5e4e0 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c89eaf __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xc5d43142 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xc5dafbc5 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e9aa89 skb_unlink +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc618e7fe __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc648f406 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc67594f1 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xc6766827 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xc6909f02 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xc691dc3a dev_mc_init +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6b95641 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xc6b9a465 bdev_read_only +EXPORT_SYMBOL vmlinux 0xc6c99d4f pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cbf5a1 module_refcount +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6eb533a dquot_alloc +EXPORT_SYMBOL vmlinux 0xc6ec82b6 follow_down +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc70b720e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc716b0be lock_page_memcg +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc724c441 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc72faa65 config_item_set_name +EXPORT_SYMBOL vmlinux 0xc757d8cf fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xc767b221 get_tz_trend +EXPORT_SYMBOL vmlinux 0xc76a7d87 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xc76c130a dquot_operations +EXPORT_SYMBOL vmlinux 0xc77caa27 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc785906a mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xc78af5db rtnl_notify +EXPORT_SYMBOL vmlinux 0xc79900d2 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xc7990cc0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a930c6 genl_register_family +EXPORT_SYMBOL vmlinux 0xc7b9a941 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7ecf02c of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xc7f056de dev_uc_add +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc83d970c param_get_short +EXPORT_SYMBOL vmlinux 0xc842cada sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xc849f165 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc861f227 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc869f802 ip_defrag +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88a8476 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8c44f34 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f73332 udp_seq_next +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc927ec1c cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc95efc1d ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96a5f04 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc979e648 free_task +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc9899501 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9cfe5fb devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9f081c6 phy_error +EXPORT_SYMBOL vmlinux 0xc9f4a840 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xc9fa03a8 __alloc_skb +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1d3dfc blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xca20d77b dquot_release +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca781189 complete_request_key +EXPORT_SYMBOL vmlinux 0xca8a7039 generic_writepages +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9bc2a9 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcac539ff md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafa8701 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xcafe96a6 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb04e841 tty_name +EXPORT_SYMBOL vmlinux 0xcb29592b get_tree_keyed +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3dd913 devm_ioremap +EXPORT_SYMBOL vmlinux 0xcb5260ec mmc_add_host +EXPORT_SYMBOL vmlinux 0xcb5c5335 vga_put +EXPORT_SYMBOL vmlinux 0xcb6b0b97 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xcb6e45df pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xcb726726 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8e09ae add_watch_to_object +EXPORT_SYMBOL vmlinux 0xcb942475 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xcb95ea18 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xcb966504 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xcba39f59 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xcbae8ab3 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xcbaedaec single_open_size +EXPORT_SYMBOL vmlinux 0xcbb4c2a7 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xcbb82c98 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xcbb9c4b4 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbd0756c phy_connect +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd96ac0 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xcbe1e716 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xcbea0ba1 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xcbed22ea clkdev_drop +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc0b4e22 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xcc0e1464 register_framebuffer +EXPORT_SYMBOL vmlinux 0xcc16c53f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xcc1b09a3 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc40b95f scsi_remove_host +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6d2b1e icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xcc70a357 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xcca4a674 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccd04c6a page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xccd0778e blk_sync_queue +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce5290e nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf080dc pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfc3680 dma_supported +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd1efe95 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd29d605 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xcd3d0588 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xcd4376bd f_setown +EXPORT_SYMBOL vmlinux 0xcd4a9143 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcd4ef709 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xcd66eb5a sk_dst_check +EXPORT_SYMBOL vmlinux 0xcd6a6fb2 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xcd850cbd input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcdaaef7f sk_free +EXPORT_SYMBOL vmlinux 0xcdadff5c fget_raw +EXPORT_SYMBOL vmlinux 0xcdc34601 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc5d2dc tcf_block_get +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdfa1dcd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xcdfca809 dev_add_offload +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce0d0522 inet_put_port +EXPORT_SYMBOL vmlinux 0xce1521dc phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2dbb6e filemap_flush +EXPORT_SYMBOL vmlinux 0xce3c62a2 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce51365c dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce9be944 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec398fc tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xcec4db10 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xcec5379d kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced92076 mmc_command_done +EXPORT_SYMBOL vmlinux 0xceddfd53 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf1b9cf5 md_update_sb +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf55ee66 inode_insert5 +EXPORT_SYMBOL vmlinux 0xcf7ae4a8 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xcf7e41ca of_iomap +EXPORT_SYMBOL vmlinux 0xcf8328e3 is_nd_dax +EXPORT_SYMBOL vmlinux 0xcf9a33e2 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb861a2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xd005ef0e ptp_find_pin +EXPORT_SYMBOL vmlinux 0xd00811a3 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xd01ba8b8 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd02b78ba kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xd02d8ff3 key_alloc +EXPORT_SYMBOL vmlinux 0xd0341dbe i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xd04aa57c clear_inode +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd07245b7 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0a9f892 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xd0ad7408 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0befa13 vfs_llseek +EXPORT_SYMBOL vmlinux 0xd0eb51e2 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd10d6de3 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xd11e2678 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd14b75e6 dput +EXPORT_SYMBOL vmlinux 0xd157c55a _dev_alert +EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1832caf dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xd1939b40 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xd194bee9 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1a5af16 amba_find_device +EXPORT_SYMBOL vmlinux 0xd1bc079e xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd1c541d5 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xd1d27441 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f65eca rtnl_create_link +EXPORT_SYMBOL vmlinux 0xd2049af3 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd23b07c0 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xd23b4f68 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xd23b772d rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd240a5aa tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xd247bc4b default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd24dfa82 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd2573a0c sk_mc_loop +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25f4e73 register_netdev +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27bcd63 dma_set_mask +EXPORT_SYMBOL vmlinux 0xd293b066 get_cached_acl +EXPORT_SYMBOL vmlinux 0xd2b5394c fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2ded555 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd31a2ea8 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31d4492 md_reload_sb +EXPORT_SYMBOL vmlinux 0xd32e30b0 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xd338f8eb copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd33f767d __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd354bc1b set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37cfe0c readahead_expand +EXPORT_SYMBOL vmlinux 0xd386ba3d tcf_idr_search +EXPORT_SYMBOL vmlinux 0xd39e929f xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xd3a19db2 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd3aaa716 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xd3c2490e bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xd3df5bd0 input_flush_device +EXPORT_SYMBOL vmlinux 0xd3e97074 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f17bcf ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xd3f6ff95 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xd3fc2f76 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd4018bfe fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd40a1843 inet_add_offload +EXPORT_SYMBOL vmlinux 0xd40f2e7c netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xd4172bfa devfreq_update_target +EXPORT_SYMBOL vmlinux 0xd4190617 fqdir_init +EXPORT_SYMBOL vmlinux 0xd41a10a3 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xd429f4ec register_shrinker +EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd49b0786 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4aefe62 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c41711 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xd4c9dcf5 inet6_bind +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4f00636 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5058e3c mdio_device_create +EXPORT_SYMBOL vmlinux 0xd52334e8 mii_check_media +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd54eb494 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xd56969b4 done_path_create +EXPORT_SYMBOL vmlinux 0xd572da9e md_write_start +EXPORT_SYMBOL vmlinux 0xd57d915f qdisc_reset +EXPORT_SYMBOL vmlinux 0xd58e5e05 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5e01554 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6294a7b should_remove_suid +EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd648529a mmc_release_host +EXPORT_SYMBOL vmlinux 0xd6622e69 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd6750c1d dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd6863ea0 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b5bfa9 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xd6bbe023 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd6c95a40 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd6d98f29 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xd6e0384a pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f0ca44 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7009582 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd71a80df netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xd71e8250 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7478a65 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xd752da4e path_has_submounts +EXPORT_SYMBOL vmlinux 0xd771950e dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd77258a1 sk_error_report +EXPORT_SYMBOL vmlinux 0xd7837b8c pci_write_vpd +EXPORT_SYMBOL vmlinux 0xd79055ff fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xd7975b3f unpin_user_page +EXPORT_SYMBOL vmlinux 0xd7a47522 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xd7a9763e textsearch_register +EXPORT_SYMBOL vmlinux 0xd7cfae31 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xd7d0e3cf md_handle_request +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd80250a6 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd81646c4 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xd81e0ac0 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd835e034 fput +EXPORT_SYMBOL vmlinux 0xd8433228 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xd8548630 md_integrity_register +EXPORT_SYMBOL vmlinux 0xd86c26bd neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd86df07f kfree_skb_list +EXPORT_SYMBOL vmlinux 0xd879ee47 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a3f8cb tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ad6ec7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8bfb5eb kfree_skb +EXPORT_SYMBOL vmlinux 0xd8c93658 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xd8cc3ac5 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xd8ce23e5 setattr_copy +EXPORT_SYMBOL vmlinux 0xd8d701b4 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92662f7 fb_pan_display +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd95b1218 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd95fef7b __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xd965f03e amba_request_regions +EXPORT_SYMBOL vmlinux 0xd9733d81 unload_nls +EXPORT_SYMBOL vmlinux 0xd97582e4 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98fc995 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd99b0796 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e3e45d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xd9e54431 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xd9e8fec5 fb_class +EXPORT_SYMBOL vmlinux 0xd9f67e3a sock_register +EXPORT_SYMBOL vmlinux 0xda04931c param_set_ulong +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda12354f sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xda17da2a dma_resv_fini +EXPORT_SYMBOL vmlinux 0xda3747ae input_unregister_handler +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda426bf5 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xda4e5458 file_remove_privs +EXPORT_SYMBOL vmlinux 0xda692f58 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xda705c7b scsi_scan_target +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7d96b7 security_sb_remount +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xdaae2dc5 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xdabfdc14 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad2a698 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xdaed5154 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xdaf15e47 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xdaf3a741 dev_mc_del +EXPORT_SYMBOL vmlinux 0xdb13e0a0 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdb178b2d genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xdb3c274c get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xdb40d2e4 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbac2ce7 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xdbcdae11 release_sock +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdd7fe8 rtc_add_group +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe92ff6 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xdc0f66ea sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc206486 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xdc2899c3 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xdc2cb367 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc526492 finish_open +EXPORT_SYMBOL vmlinux 0xdc649b95 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xdc6d704c pnp_device_detach +EXPORT_SYMBOL vmlinux 0xdc734840 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xdc7a0b67 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xdc7a525a param_set_invbool +EXPORT_SYMBOL vmlinux 0xdca26ab1 fc_mount +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdccf7da6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xdcd4757a scsi_partsize +EXPORT_SYMBOL vmlinux 0xdcd76d7b brioctl_set +EXPORT_SYMBOL vmlinux 0xdcdd1356 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xdcea46ef dup_iter +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd067c91 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd199351 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xdd214f31 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xdd2bf2cc block_truncate_page +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd420089 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xdd6457cf dm_get_device +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7179c2 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd953d96 param_set_copystring +EXPORT_SYMBOL vmlinux 0xdd9582df security_unix_may_send +EXPORT_SYMBOL vmlinux 0xdda2dd0d of_phy_find_device +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddbb7d57 set_bh_page +EXPORT_SYMBOL vmlinux 0xddc9a97b simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xddd16543 iterate_fd +EXPORT_SYMBOL vmlinux 0xdddc536a _copy_from_iter +EXPORT_SYMBOL vmlinux 0xddee6114 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xddf1ac8b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddf9740a __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xde00174f bio_copy_data +EXPORT_SYMBOL vmlinux 0xde20a6ac fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde3304f7 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xde3d72e2 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xde42d867 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde64d268 seq_open +EXPORT_SYMBOL vmlinux 0xde651648 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xde8fa492 generic_write_end +EXPORT_SYMBOL vmlinux 0xdec01807 pci_release_regions +EXPORT_SYMBOL vmlinux 0xdec02e0d seq_escape_mem +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded69cab pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xded984e5 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xdedd8122 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf328747 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xdf337023 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf437234 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf58ad54 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdf67f9f1 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf7772a7 eth_header +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8e95e4 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9b3f97 wireless_send_event +EXPORT_SYMBOL vmlinux 0xdf9ebd20 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xdfb173d4 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xdfbac17f gro_cells_init +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd784b0 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0185d79 __serio_register_port +EXPORT_SYMBOL vmlinux 0xe027a116 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe03f3035 vfs_getattr +EXPORT_SYMBOL vmlinux 0xe0418adf param_ops_ushort +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe049d84c tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0a39e4b netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b91391 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0d67cbd rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xe0d68284 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe0f0d2c1 pci_map_rom +EXPORT_SYMBOL vmlinux 0xe10327fb skb_eth_push +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe11de7c9 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1595d5e __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xe16889fc sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe19c2461 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1a65bd8 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xe1aa421a neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe1c77a2a vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xe1cb13e2 __scm_destroy +EXPORT_SYMBOL vmlinux 0xe1d6fcca key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe2009973 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe23feb7a sock_no_accept +EXPORT_SYMBOL vmlinux 0xe24b822c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xe24dbab0 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xe2509850 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xe2555055 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xe25713d5 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xe25fee2f vme_irq_request +EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe276d78f pid_task +EXPORT_SYMBOL vmlinux 0xe27b85c8 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xe29b2305 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xe2a6662d sk_stop_timer +EXPORT_SYMBOL vmlinux 0xe2c81896 set_blocksize +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2de6c0d page_mapping +EXPORT_SYMBOL vmlinux 0xe2f3df65 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe2fc57cc sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe2ff4c62 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xe30d3e56 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe33def19 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe33fa2c5 input_release_device +EXPORT_SYMBOL vmlinux 0xe340932c inode_init_once +EXPORT_SYMBOL vmlinux 0xe341b349 input_register_device +EXPORT_SYMBOL vmlinux 0xe34f11d3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xe353b52a acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xe36f1673 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe39d9590 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe3a8503a __post_watch_notification +EXPORT_SYMBOL vmlinux 0xe3b9682d wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xe3c354c1 km_policy_notify +EXPORT_SYMBOL vmlinux 0xe3c64df8 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ef5049 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xe3f80eee nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xe3f956ab blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe40fc7e4 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe44c749d pci_save_state +EXPORT_SYMBOL vmlinux 0xe456305b dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe47b30d7 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xe47b7e3d dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xe485084f nd_dax_probe +EXPORT_SYMBOL vmlinux 0xe489f026 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xe4a0e88b generic_block_bmap +EXPORT_SYMBOL vmlinux 0xe4af0d4b fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4f5c5c2 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xe5123265 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xe51660e9 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xe516830d skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xe5198208 param_set_long +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5316e87 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xe5377dc4 bio_add_page +EXPORT_SYMBOL vmlinux 0xe53b2a50 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xe53faedb eth_get_headlen +EXPORT_SYMBOL vmlinux 0xe54c6934 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xe54df58e dev_activate +EXPORT_SYMBOL vmlinux 0xe57c4424 param_ops_string +EXPORT_SYMBOL vmlinux 0xe57e09c4 km_state_expired +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a22cd4 give_up_console +EXPORT_SYMBOL vmlinux 0xe5a2bb5e blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe5ad93ca scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ebac24 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xe611d2c6 dquot_transfer +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe620974e tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xe63a78be md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xe65a7dec devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xe65e84f4 flush_signals +EXPORT_SYMBOL vmlinux 0xe67d48a2 vga_client_register +EXPORT_SYMBOL vmlinux 0xe681b89b md_error +EXPORT_SYMBOL vmlinux 0xe6878ae1 tty_port_close +EXPORT_SYMBOL vmlinux 0xe688bc4e scsi_host_put +EXPORT_SYMBOL vmlinux 0xe68e100c d_drop +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe69ba91c pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe6b8c2f0 eth_header_parse +EXPORT_SYMBOL vmlinux 0xe6c43570 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe6cbeb28 get_task_cred +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d37e13 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xe6dd65e4 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xe6de2a1e phy_attached_print +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe703195c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7372488 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xe73e5f2a I_BDEV +EXPORT_SYMBOL vmlinux 0xe743806d noop_llseek +EXPORT_SYMBOL vmlinux 0xe763ebbe xsk_tx_release +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe7966800 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe79de972 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a34e9e md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7cf73af sock_create_lite +EXPORT_SYMBOL vmlinux 0xe7d19758 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d7560c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xe7e1e69f dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe7e2ae48 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe800bd90 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xe8102f86 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe818b154 set_capacity +EXPORT_SYMBOL vmlinux 0xe823440c reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xe8292537 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe8490dbc netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe84d20fe security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xe8584c46 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xe85a0521 backlight_force_update +EXPORT_SYMBOL vmlinux 0xe85d7ac3 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8602914 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe869d95d dev_set_threaded +EXPORT_SYMBOL vmlinux 0xe87ba4e8 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xe89722dc devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xe8a1be73 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8eb1874 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xe8f63c22 page_get_link +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe9092805 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe915ce73 param_ops_short +EXPORT_SYMBOL vmlinux 0xe91f79be __d_lookup_done +EXPORT_SYMBOL vmlinux 0xe926f1b0 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xe9392bc9 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xe93a4166 key_invalidate +EXPORT_SYMBOL vmlinux 0xe93d2f86 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe997d1db __seq_open_private +EXPORT_SYMBOL vmlinux 0xe9a21ceb t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe9a81d6f backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b2defa phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xe9bc42c2 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xe9e5830d config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fe0a22 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea097e75 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xea0c1ba5 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xea1c1863 d_alloc_name +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea31acc5 scsi_host_get +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4db0f9 thaw_super +EXPORT_SYMBOL vmlinux 0xea65da77 param_get_uint +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea8fc13b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xead7e22b nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xead9e5e9 filp_close +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb2d8f7a __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3fc2b1 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb45c894 mii_nway_restart +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb8708b4 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebc4991e vm_insert_page +EXPORT_SYMBOL vmlinux 0xebccae03 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xebd8dd56 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xebe599ec xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xec03c463 regset_get +EXPORT_SYMBOL vmlinux 0xec21a23b xfrm_register_km +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec58287c devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xec5931b1 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xec82db47 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xecbee1e6 param_set_hexint +EXPORT_SYMBOL vmlinux 0xeccb5328 ata_port_printk +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed02137a kernel_bind +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed531bf0 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed585cd0 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed77dedd get_acl +EXPORT_SYMBOL vmlinux 0xed7b8f63 proc_create +EXPORT_SYMBOL vmlinux 0xed88b8a2 sock_wake_async +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed9c2e7e vme_irq_handler +EXPORT_SYMBOL vmlinux 0xedb60026 skb_expand_head +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd32514 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xedde2145 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xee02e5f9 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee41b2a5 bdi_put +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb77ef0 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xeec7acc3 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xeec91adc xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xeecbf180 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xeed0c2d2 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xeed3a558 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeef8fe88 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xef0e822b jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xef16111d kset_register +EXPORT_SYMBOL vmlinux 0xef276011 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xef3910d2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xef4d0c38 dump_skip +EXPORT_SYMBOL vmlinux 0xef6dbc4c vme_register_bridge +EXPORT_SYMBOL vmlinux 0xef6f9374 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xef75d786 kthread_bind +EXPORT_SYMBOL vmlinux 0xef80a112 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef96396f migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xefa12a84 dev_addr_del +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb7c504 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xefc1a693 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd18cc9 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xefd404c6 dst_release +EXPORT_SYMBOL vmlinux 0xefedd9a1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff04cf2 module_put +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf01acfc1 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xf0230fbb address_space_init_once +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf02ed91f jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf035f2b6 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xf070dd11 nf_log_packet +EXPORT_SYMBOL vmlinux 0xf08df86e clocksource_unregister +EXPORT_SYMBOL vmlinux 0xf099d1cd acpi_device_hid +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a6340b __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0c94e09 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xf0e927ba is_nd_pfn +EXPORT_SYMBOL vmlinux 0xf10159af ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf1072a42 d_lookup +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf122e1a3 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf129622c copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xf1660037 phy_device_register +EXPORT_SYMBOL vmlinux 0xf175aa24 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xf1799ad3 key_move +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf193e1d8 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19f534f open_exec +EXPORT_SYMBOL vmlinux 0xf1b111a0 mdiobus_write +EXPORT_SYMBOL vmlinux 0xf1d2128f phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf1d78bed ping_prot +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e40b49 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f4ae0a eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xf1febeec insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xf232d429 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xf239f00b file_update_time +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2482f40 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xf250a17d get_user_pages +EXPORT_SYMBOL vmlinux 0xf252d4fa ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf275064f security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29d7ce2 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b523fc write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf2b75c93 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf2ba2223 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c5cdd2 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xf2def2ea __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2ff6be8 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xf30f4036 _dev_warn +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf332113e xfrm_input +EXPORT_SYMBOL vmlinux 0xf33e9a3e __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xf3429e5a pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34a6c03 mmc_erase +EXPORT_SYMBOL vmlinux 0xf350f48a kern_path_create +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf359fb6d filp_open +EXPORT_SYMBOL vmlinux 0xf362a77a trace_event_printf +EXPORT_SYMBOL vmlinux 0xf3688a06 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xf36a1a80 fd_install +EXPORT_SYMBOL vmlinux 0xf370c21c tcp_peek_len +EXPORT_SYMBOL vmlinux 0xf379be86 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a4a59b __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a76e74 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf3b25307 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b5fce7 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xf3b875ec pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xf3d62610 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f9981f fman_get_mem_region +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf420709e file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf45a9271 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48c0a36 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xf48d221f ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xf4aaf23d napi_disable +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4b8b805 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c3fb19 sock_wfree +EXPORT_SYMBOL vmlinux 0xf4c9a937 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xf4d21f55 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc1785 sock_from_file +EXPORT_SYMBOL vmlinux 0xf4e16a9a flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xf4e4fdbc clkdev_add +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf503cbe8 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf50e617d dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xf515a118 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xf5207918 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf538610f max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf565a4d9 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xf56c4427 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xf56ff121 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf57adfb5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf59a00d3 single_release +EXPORT_SYMBOL vmlinux 0xf59de37a send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xf59e335e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a6912d of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xf5ac81ea dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf5ad9986 phy_resume +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5bec402 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xf5d72aeb ___pskb_trim +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf60902ff d_set_d_op +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf62f2ea5 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xf635b6e2 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xf63fdf71 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xf6422e1e phy_init_eee +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf65d7b4b pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf667639d vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xf67030fc misc_register +EXPORT_SYMBOL vmlinux 0xf67d05cb file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf681ca51 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68b1e9c tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xf6b99834 dqput +EXPORT_SYMBOL vmlinux 0xf6d6f3e6 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xf6d8c1a2 key_revoke +EXPORT_SYMBOL vmlinux 0xf6de6bbc iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xf6e37efd __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xf6e8eacf blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f39b0c __frontswap_test +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7100ff6 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf7189f96 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf7364566 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7612e02 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf7a0d47c jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xf7ab280c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xf7b14b13 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xf7c283c8 __lock_buffer +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7c519dc neigh_xmit +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d8dd4a kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f956b2 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xf80ec852 pci_bus_type +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81c68da inode_set_bytes +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82d25f9 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83d3498 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xf83e9b1e netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf868c946 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xf885a966 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf891c320 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xf8a7054f mdio_device_register +EXPORT_SYMBOL vmlinux 0xf8a98540 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve +EXPORT_SYMBOL vmlinux 0xf8b785af tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf8ba0aa1 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8c3be9f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xf8c7beb8 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d7f443 _dev_notice +EXPORT_SYMBOL vmlinux 0xf8f56708 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf905fa2b textsearch_prepare +EXPORT_SYMBOL vmlinux 0xf9117aac inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf917740f ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9536270 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9873fe0 request_key_rcu +EXPORT_SYMBOL vmlinux 0xf98818d9 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf9a13cf2 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a645a8 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf9a7d2ec backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xf9aec0ff pskb_expand_head +EXPORT_SYMBOL vmlinux 0xf9bc3447 simple_open +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c81cab jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9fc3808 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xfa00b80c con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0e88cd security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa35962a put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xfa516b52 PageMovable +EXPORT_SYMBOL vmlinux 0xfa5338a9 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfa536bf5 nobh_write_end +EXPORT_SYMBOL vmlinux 0xfa548235 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5cb733 set_user_nice +EXPORT_SYMBOL vmlinux 0xfa668241 inode_init_owner +EXPORT_SYMBOL vmlinux 0xfa6c179b mdiobus_scan +EXPORT_SYMBOL vmlinux 0xfa6cb285 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xfa6f5939 dma_find_channel +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa9a43f5 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaadeedf locks_remove_posix +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaccacb5 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xfb04af5a __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb452573 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80bec2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbb6c06 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd0b7d9 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc017c45 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xfc0b6f35 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xfc2fe001 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc73f0d1 i2c_transfer +EXPORT_SYMBOL vmlinux 0xfc7cec48 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc8f70af pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xfc9e1532 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca0bd13 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xfca731d6 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xfcb3e2c8 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xfcb73b46 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xfcb96d6a d_find_alias +EXPORT_SYMBOL vmlinux 0xfcbd42c8 d_splice_alias +EXPORT_SYMBOL vmlinux 0xfcc2d865 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfc0f07 ip_frag_next +EXPORT_SYMBOL vmlinux 0xfd08ef26 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xfd55ed15 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xfd6047eb vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xfd642f26 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xfd782186 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xfd7dfc60 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xfda7c2ab blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdab2b0b mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xfdc937ac kill_litter_super +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdceb8d2 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xfde17057 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xfdef31de __module_get +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1b67d8 get_watch_queue +EXPORT_SYMBOL vmlinux 0xfe1c0949 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xfe1c1aec jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe28391b qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xfe36477b devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xfe48684e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4c28c7 cdev_device_del +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe64d34c jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xfe74baeb unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xfe796ce4 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb123c1 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfed725ad pci_request_region +EXPORT_SYMBOL vmlinux 0xfedc82b0 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfede575f udp_pre_connect +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef86d7f vme_irq_free +EXPORT_SYMBOL vmlinux 0xfefbf106 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2c5ad8 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xff4570ea truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xff61fae4 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6b511c dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffb03c3d unregister_shrinker +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd0df71 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xffe2e01b pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xffe61f2e take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x0801474d af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ea40d43 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x11f99007 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x3287e648 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3856bff4 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x3bf12ce6 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x44ef5565 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x5239aff3 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x55666d82 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x684d7edb af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x68af5bbc af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x88e9e573 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x914ef9a0 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x94b273b0 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa1480bac af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xa9d9f537 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf02a8122 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf797360f af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xca168d61 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1a0bf628 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4c2a06f9 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x95813aa4 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x29a9f417 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3401f6b2 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9a0b11f0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa149bcb8 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbf27b78f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe18a1384 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1f928db6 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8ed6a06e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa46579dc async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe6dc637f async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x84720b0f blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9bdeccdb cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1d8686a6 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x093fb600 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x0f1efd06 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x1cccc463 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x23da4d70 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x770ce47e cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x78687377 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x78d88893 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x7b42fca3 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8eb4b101 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd7787b2f cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xea6f4f7c cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf431701f cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfc768478 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04beeabf crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2fe563c7 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x79b375d7 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80446916 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x84433fb8 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9bba30c2 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa89e3eac crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbfeb3a03 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcbcb5ab0 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeb040c5d crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf2f56fce crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf54b1f8b crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf6826d95 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x03de8c40 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x075f4bc3 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc59264d9 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xddb07cbc simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x3c6d9c96 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x44c19da5 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x106d21b2 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x265e2d76 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6c2ea54b __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x886a7f49 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9228e39e acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove +EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xfdf1884d __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xe3d23fab sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x464fb9e2 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x784366c0 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xdfc8697b regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x0a9fa530 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x8b2c4f07 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xed8dd541 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x11526522 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x95556794 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x31ea0896 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xafe31c40 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x92a57c9d __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xd669fa24 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1322787f __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb4c25332 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x87211502 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xafe05202 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcbfeb6e5 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf26d321b __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xba184d1e __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd8d57017 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0275c498 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b5d9009 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26b23277 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2d8d8af2 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52e0b219 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5fb3d809 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d6afa53 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a1a1ee4 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8dd1572d bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9351ce7a bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x95f981ae bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x960598b7 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f5b9d0f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa369bd10 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa4aa28fc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7f97ad2 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaacbd469 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb40216ad bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf045e41 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce7365d8 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6c72068 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec8d6779 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee0c457c bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeed833b0 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3dfb0dae btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5b8e5c3d btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5ee2281c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x67f1f6d7 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbaae5f40 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe5888ead btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeb7fa159 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xef3a7858 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x091d828a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2601e798 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2cbba64d btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3581beff btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x540bdd54 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7a563662 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ab978e4 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ede37bd btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84f16fee btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8afdd3f3 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5772384 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc618face btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xca5f7e58 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd02820e2 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdd5d7e69 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe63a26b0 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x11e7a98d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1b2d2ea7 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x49c40a03 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d1b404c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa4d88bf3 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb6287fbc btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc5747b1e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe19661ba btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf12c46e0 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf17def1d btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfeb8dcc7 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x085bea66 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x20ebe88c qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2d7e8789 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4bd8ea92 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc076ef3c qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x03a029fa btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1acc50b5 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3571746d btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3fba05de btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x95724a0d btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf9f22040 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x516e6f13 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5feba210 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6278eadd hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa38e8480 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0c296e67 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x18729638 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1c843726 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x287f39e0 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2a60931f mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x43440a26 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x46cdce3b mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x47b3045c mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x51841575 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5755db5b mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5f7f27c6 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x63a304e5 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x668eb791 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x711371b7 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x72e3553a mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x84667993 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9195f629 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x91aca30b mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9fc16dd2 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa3662882 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xad27d702 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xad8aef1c mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb5d9c6ec mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb677edc9 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb96fee9d mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xcd66205c mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf2804715 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf78da928 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf8c510d7 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4f39fdb2 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x58bd4317 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x763ccbb0 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb1b4029a moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x3db08f8d __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xe40cf48a sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x22d30a58 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x311fd3d8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa40516b7 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xec8cf775 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e5f8a53 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e98da3d clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x17d44071 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28a2f5c4 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3d934b2d gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x794c2f43 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7a7d500f clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x919231fc qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9b7543e9 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb41b4ecf qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc3e9996a qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc92c0946 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd8e80184 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdc014e02 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x096aa17b sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0a3ec278 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x14212841 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1ca519ca sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cad4f51 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4f93d75f sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x597905e4 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x61ccca62 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9925914a sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf833f64 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc13c2e22 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0690b470 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09692934 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0bb2a90b comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x10ea796e comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x12c1bf9b comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x229024fe comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x24272e36 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x243a10d2 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x274c3b25 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ac236de comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33e45866 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3eac95ce comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a5bb226 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4deef6df comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fb726e8 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54da738f comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58112729 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x60e8a831 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x612f7cb3 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64068f0b comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64c4f406 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x86a705f6 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a4bd746 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97fa5733 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9c27cfd comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbded3b5e comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc2285a2a __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc96f9233 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcb661e10 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcdfb7aed comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce9b78cc comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcf102b43 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7366c6a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe79d07f4 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf848b6b5 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfec28685 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1842694b comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x22e63118 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4513ee0f comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4f32a626 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x66e3355b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x68e61b2b comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x751b7bc3 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7ba835e6 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x04cbc82b comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x39270346 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4ca7566f comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8743ab81 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9e71b4ad comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd6ba2158 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x833778b8 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x08e4b06d amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xa5235c79 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x9d7c5a39 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x11c43515 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x23bc7961 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x352e5d69 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3ed1197b comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x424b1b01 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4b47afb9 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6b0fe7b2 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa5264845 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaa1a9be2 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd29c4b90 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe85d0311 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe91f3dc0 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf57ecae3 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0a138f67 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1cfc00fe subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x23abf046 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x0acc61c9 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x006c235f mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x039d1163 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0f614310 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2404a94e mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2cfdb1cd mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a40f01b mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7611a024 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x85521e82 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8efc459f mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x96c60cb3 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb4d88ff0 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb6d78bd9 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbacd639c mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcec2164c mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcffe6447 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf2c09ff1 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x5df3c72d labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7c13d649 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1370e8ee ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2eefc985 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f2380b0 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x41f3dea9 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x427f4b51 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7529f872 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8f47aa7b ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9570b2c5 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb5f5570b ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xba4f7f2c ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbd8d8d0f ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc5c9d054 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd9e65d57 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdd23e825 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfa83c097 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfd9bc231 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x19e93bad ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8c429b73 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9813f141 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb0e536a7 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc2c6409b ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf32ff8dd ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3c3f573b comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x682b5079 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8465501d comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb6c0b132 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xca43c749 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcd985559 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd884aba2 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0cf90933 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x160894a4 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x16e034c5 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x649829ae devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x66d72c11 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x71991ba0 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x71bd4ede counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7586f63d counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x78e767e3 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8044c7e3 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x9cf018a2 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb898abb1 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf33624d9 devm_counter_register +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xff579a9a ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x026b0aa1 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x080eb0ae hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0bda7963 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x11dc89e8 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x19ff9cb2 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1b5bbb2d hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1d41f303 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2179f577 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2844f8d2 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x28ba49dd hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2b6b2480 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3e2b737d hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4099b783 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4a5cb113 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4af5c724 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4bef1cc9 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4dbc7a7e hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x558a81d6 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5c001325 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7770d0be hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x812a498a hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x88f8723d hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8ef0647e hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x90a4d433 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x93a92515 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x95f8f1a7 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x96a088bd hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9c411bc8 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa221bd4a hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xad2bb98c hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb421302c hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb9351f52 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbe3c2bc3 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc3df73d0 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd23d63d9 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdc5a69e4 hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe707bbda hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xec99b0bc hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfbe2dac1 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x8ef52864 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x608198ef dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xa6884334 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa05fa2a0 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc2b242c9 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1f2c8eae dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1f5af0a3 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6a366f74 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6ee1109a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x721376fc idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x96c33742 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcda9b2fc dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe862e7bf dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf063800a do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x020a2636 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x25b02876 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3f4d64c8 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x515f7724 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6776d7e7 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6e25d7dc dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8bc987da dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xeb8da51b dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xede714d9 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfd904927 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1952c549 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1c6c4369 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x24bd3da1 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2db5f4cc fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x44b69eb4 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x52bd047a fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6ca5cc9b fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x74ff6ebf fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x76cd7bc4 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8cf6853a fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x984b0ad3 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2988dac fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb365a621 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xee33fa82 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf5bdcb3f fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xffbd52dd fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5dd69c77 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7a3e7fcc hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0ed090cd ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x717a54e6 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x997bd349 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd66e274a ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xed0a8396 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf782ed80 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xf1af3666 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x474bc19c stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x5db84c3d alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x018e152a __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0548fbb6 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1062a8e9 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18b06134 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x28710316 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x30470ef1 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ef4de3 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x367020c2 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x36f8d5c0 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3b60eec5 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3bbe9af6 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x548000a9 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e13baeb dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e21cda5 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6bedd588 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x73d23756 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7a05f27f dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa165281d dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa2335eb0 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa256bc01 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc2e752da dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5cd657c dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfa285d62 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x018df909 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x040022a8 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x405d8e2f fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4c5150d0 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x55b5aed1 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5bc050c4 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc36f28f0 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc89bc4a1 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd434f36b of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe48cf9f4 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf8366fe5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfb801978 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x06c3d037 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x10d8c46c of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x15da46f8 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1bc37503 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1f381ef1 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x271c3500 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4f1a4144 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6448f503 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x70c064d4 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x786f2204 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7cf01d77 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x87568944 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe7836060 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeeb716d0 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x08e743cd fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x72559a11 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7c03a7da fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8cb0ca68 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa3dab1f9 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc9383337 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc9758b47 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1c6364b4 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x382045dc fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3f855301 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4fee10b0 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x73f20a6f fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x94117f2c fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb4cff7ed fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba98ea92 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc591c2a5 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfdea325f fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x5c04f39d fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x71f7d008 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x815ef452 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1412bdfb gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x32f3cc77 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x39e5a0be gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe624fb56 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf71c9ee0 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4b264467 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x948f4c42 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa33bc49c gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc9c3216a gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xff4b2a72 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7bd7f682 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa554a238 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x2c3e9016 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xe0a74820 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x18281afd analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x84eaa218 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x97adda9f analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcf673c31 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd4af4081 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe9a1d5e6 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xea5eda86 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfa258002 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x18a7cff1 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2e2e5507 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9477a08b dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xfd74a09f dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x118671b5 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x6b8fdffd dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02864a0e drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03028f4f drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b2db3da drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ff58c26 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1120bae1 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13ab8bb5 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x213e6f17 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e917a84 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30497774 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x408c088e drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47489e24 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4a64ce10 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4bb2e968 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x50392ed1 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56286b62 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57c16a06 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65b5ee45 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6866cf59 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6bb6f074 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e689a13 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c1efe58 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ca994b2 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ec68bc1 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x981106e1 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa490c623 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb5b190dc drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb6f64ad1 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbea9c200 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xce659e7c drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd31f604d drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9f3cb0f drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe07cf1fa drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1af3b22 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1c2c403 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf818a704 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x6f769d26 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xb3148694 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xc9c27aab of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xe5237097 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x05651186 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0af9da43 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0d748d42 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1ef2f1ed drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x26b66017 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2db099fb drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4a140b32 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6f5bdbc7 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7056a047 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9c23c020 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaaaf8db2 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcf31869e drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe7151905 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x0ff854ea meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x3cda662e meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa91c34b1 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd6cc9522 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x31b72e83 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe803c46b s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x734a4ea1 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x1155b9fd rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3578eb24 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4d8f0198 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x768235c5 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x06c05e16 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x6a879f96 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x861e00b6 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xab427a20 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x144cd28f rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb1360889 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x033f3108 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05ca1b09 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1183ffe4 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x129511ab gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f4bcc66 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23c65b32 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x248ed153 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2c5b2e95 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36820300 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37df1b3e __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39ee2ce0 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3cdbae0c gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x442f1db9 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4707fcf3 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49c7ce65 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ba4e41f gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ca545c4 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f21f762 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56990f91 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d6f2d8f greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a2c3a10 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6bea472e gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c8d3d0a gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7433ed2f gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ac2089f greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d117410 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81dcd96d gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92097300 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x975d4e15 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98d185b5 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc645136 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcda1953a __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcde1c0b4 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd040fe75 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3762453 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5759648 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb3561b2 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc581d21 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2a6eaa1 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeae5c826 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf120bf29 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf6e98f9d gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf83b7fa3 gb_hd_create +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07941efd hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0cb87174 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13ef2df8 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17298844 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c9a1e6a hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ff29b01 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x229a71d1 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x235eb5bc __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x350277a5 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e1228fe hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41b384d1 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42988289 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4300ef48 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44bf7894 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44f5bdb3 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cf6f3b5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5af2b958 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fba3392 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62ce966f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x648234a2 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64c80dda hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6961bbe3 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x697d897d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6eabdf32 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7107e91f hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x768ecf01 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ed06f32 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a46b264 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bac203a hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e0c6b05 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x966c8f9a hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa226719b hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa32e977c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa75feab4 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa841bd51 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8be7951 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa51ba1f hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf511702 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd47b707 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea66407b hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee56dd3a hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4ae4d53 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf600094e hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf71d7846 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x950ee782 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3af52d47 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x43af1f2c roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4b58dea7 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5bdedc57 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fcebafd roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd32fd793 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x144abc2c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2070221b sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a4f3164 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x42acf02a hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7b2549ba sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x89cd3b1e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb6c115aa sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc8900ac9 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfeb23115 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x374de335 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6349654f i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x67dd68ba i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6fb0cb7d i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x92a87896 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xac18bd32 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xc0e75b51 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd2f7cf2d surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xc3a44506 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x016d6fea hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf65831c5 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x184c73f2 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x228adfc7 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2500a81d hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2bd4412a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35aba8a6 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40d24459 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x43c3dd3a hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48e6c066 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x57540bd9 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b4e8d89 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x711135b7 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a10990d hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x948acbbe hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xabad2513 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba56a526 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd07751de hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf08f9cbb hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfc9284a8 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07774b0e vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x227707a3 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x32fffd9c hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fabe4c2 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x54c97f3d vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x57703328 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x60977e08 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62716842 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7bd39698 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x84136a10 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x860a6494 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a6d2753 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9407bd14 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9a0d0478 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa202b5a4 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8d5fbe5 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc18ecc6f vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc6bcfdbc vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc8b01b05 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd03340e0 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd494b599 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd4b56ce9 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd99b3e13 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdd323e35 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe14c2ead vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe214fd08 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xee96a35f vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe0b7365 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x64dade7c adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x784f83e2 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfe151f7a adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x83af764a ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x00f1c0b7 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x074c30fb intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x392b77e0 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4e35e93b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4e762585 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x766132cd intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x85c96405 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9faa233a intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd9ae1edf intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3822cfe6 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5e630acc intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa5f3c9f5 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1cb483fa stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1d7ddfe4 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3de9d8f2 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5d7ec510 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x912033be stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c070b50 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb2e2e21b stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd39234f6 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf4485eb2 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1a4ae3a0 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb2ea21e4 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcf3fa0de i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xec1e0738 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x86b56190 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa4c64fb1 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbf37e0eb i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xce7c1014 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0f33ddc6 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0ff895d3 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x117f26de i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x15e3052a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1b04f204 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1d06457e i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1d8e15a3 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1de13142 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3abe3eaa i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x416d73de i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4c45dc1e i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x530de652 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6ebfbf7b i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f41f7af i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x75fae646 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7bc03427 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97836622 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9faa83a3 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb49b2356 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc2ddb6f7 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xccb7ecab dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdc31b8f1 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe652fe2b i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xecb4cdb7 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xecd27ae0 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x41144d90 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x6de009b9 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1cd53183 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x314dd2cc bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x69ff8547 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7f4a87d5 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x752f4354 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x94087468 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbc25fda7 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbfc304c3 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x64993c34 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xe1543247 fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf72c61ae fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x00490ae1 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3158db5f mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x60d129f5 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x0e55aec1 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x811bd90c ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x072e5593 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xbbda8b97 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x016fb8a2 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x33f931fd ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4e697132 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7dc47693 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x84172487 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x957900b5 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb74a8dd4 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd1ce5879 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe620880c devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf995c5a7 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x0ba9d4be adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x65c5c50b devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2bb09000 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x60565044 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6d7fcfe7 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x06d67ccc iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0ba135c6 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2d6d9a8f iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x544871ad iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x57c3765f iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x58a0e23b iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbb262158 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc0a2ab89 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xccb2372c iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xece801c1 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf12d175a iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xff79ab5d iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xce61893a devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x086baf2d iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe46268d3 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xe8207e34 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x8957f0ae devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xd7761d7e bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x56780641 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0921b8ca cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b28d83e cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10b42cff cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2054d978 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x44cd726e cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ede93a4 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb229a295 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd224879d cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe9b7ead4 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfb373a4b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x3e613c19 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7059fc82 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x311259ed ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xc7ea7967 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x047de92f bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1721cbde bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x50888117 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x4f822c9b fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x53f3288b fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5526d232 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x194d194c adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4bd8611d __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4d673b2f __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5ae9a5ba __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x66c14425 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x877e0985 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9909bbb1 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9d766ce2 __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa45a7631 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb9a3d203 devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe5b41838 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x574b0ae7 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xe7a27cf3 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3975990c inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x88f06d41 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xb7919dae inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5958eb87 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x9de97969 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9fc99df5 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xf861512a st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0111b66d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x092db9ee iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ab4835f iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bc522d9 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c497f39 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10f5345e iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f9a95fd devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2586cbff iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e608e5f iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3163f08f iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x375f20b9 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ab09830 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x528c3415 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e3b6329 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6010d1c8 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x605900c0 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6108f27f iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x677ef112 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7018f7e4 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79eac588 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ce9d091 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8149f99d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8965f773 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f04697f iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x931a79e0 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa69f3584 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa89c2504 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0411ab4 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0ec3864 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4a3a3d1 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb65922bb iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbeb750d8 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf1fc6ae devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf5ec4f5 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8661b3f iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf5e6ec6 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0beac21 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5dc9f18 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5d51cc4 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe780b003 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe81d7b19 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea758558 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef29a076 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0ec3bcb devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb684369 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfde416c4 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfeb046c4 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x656c1502 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xf5a8a065 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4aca96ac zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa2138b0d zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb6167cca zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xf06602d4 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xfaa429b0 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xfdf2df6b zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13639e74 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x253e11f2 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5a8e1d2c rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6014428b rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x75307f65 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a41e7b9 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x89969e31 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f9097a1 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90da24bb rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x91e3162b rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9c4fa128 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbded5f55 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xeb4ef361 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xca0b9481 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1971bb8e adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0ff5a522 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x141133d8 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x33d51a1d rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x389fdab0 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3bea741e rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5edd5cec rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6acbd994 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6c49f9df rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x87b7d77f rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9bad18dd rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9bc67997 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa296fc28 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xee0afda4 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6f72aa25 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9cf7d036 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfbbac464 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5d00b947 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd3116861 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x83dc082d cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb7ccfda0 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x07727347 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x250144a2 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd8365379 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf35b4e21 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x071122f5 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38addaba wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x40767050 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x77839048 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x862b2a6f wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa6978d8c wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa95914e wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb1198f4c wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbb2990d6 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbf941381 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc45389b wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfba94af8 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xdd86534d imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf9a1253a imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0253e279 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0xe1115ebc of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0107afb1 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0384fe4d qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x244cb7e5 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x502e611d qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x77ae00f2 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x99f8db27 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc34ae16c qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x434ed400 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5ce27094 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x63032fd5 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8098497a ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x98bbff6a ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbe30b63e ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd82d8c79 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeaf12050 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xef6ea38f ipack_device_add +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x02a8ef34 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3d862693 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4cebdc69 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6e71abf3 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x78d9c7f5 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb136436d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd84181d3 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe12b98c7 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1cb607ba led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5dbba8e6 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x73ee4af5 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x980fff47 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xec2df646 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1dfbc0a5 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b8d359b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x430dafb0 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x84a49fea lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9db6130b lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb31ba69b lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb32d6c0d lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe3aa9025 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xea599976 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeb25432e lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bd67e4f __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13a2a59e __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22b80be0 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b256d2f __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c3a3264 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x387c71bb __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5718e66d __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5748b0a7 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cabf03d __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66b74fb4 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x819c7502 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84959536 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cb2fdd5 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafce8bd1 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9c47e02 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbec6a06 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc60fa5a2 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc84e681b __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcaebacf7 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd515e44f __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5b3e70d __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0035e8d __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4085c9e __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf07d32d3 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x029eed8b dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0326a097 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2c8ae15c dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39c05c60 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x493b52f3 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a323f41 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c470adf dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x73a4a272 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x743e2ebf dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9cab5165 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa7851c2c dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb2d4f247 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb7a52f60 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe9456f4e dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xedfedc12 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf4410a6c dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf7414a89 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2996ed92 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcb523969 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf48bdec7 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x87a3f468 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfd1a2e03 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x087b84f0 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1b056a42 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x308e862a dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3cdbedd1 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4b5e6fca dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x93322948 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe065bf2b dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x06452380 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0d76ab59 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0f4363de cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x257b325b cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2e2bfe71 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x39d326b8 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x47a91506 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4d44fcb5 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5d158c5e cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x777e1967 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x89b79d47 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8cf2cb25 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x92580a49 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x99cfac4f cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa46b3f10 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb7cd421e cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbd3ba2c0 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf46499b cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc4bb0cb8 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd7490614 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd89a1ef7 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf82a8347 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x14237c08 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x30a25c06 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4425bd3c saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6307535b saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x72bf9fcf saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7e058a6b saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8d5c4b82 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbbbe9db4 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeda194c3 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfbf86f23 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0774a663 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x73525950 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x79b51e6f saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7b02e114 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa30cc9d3 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaa2bd916 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf6f09b8d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b710f00 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x17374054 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3224e0e8 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4177c60e sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4862a610 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x525bf081 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5631769e sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a969423 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f44ab79 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cb9cfeb smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9dba6354 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbdb674b1 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf536e8c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc8895c57 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd963e1d6 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc2d5a45 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe831deb5 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x08c4b529 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1251b5d8 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x196a1a65 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1fa1687e __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b074411 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b959499 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x45c23245 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x461ffe3d vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47f89296 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b44b3b2 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61d22f84 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f65086b vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7757089d vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x77f56c20 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80f8e632 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8141c1fb __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x862f7b8b __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9358d10c vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1e06471 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaea7f315 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb8fed9bc vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbccfb456 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe069a8a vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1fbb3ba vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe00e80a5 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe4b2a24f vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe6a3391b vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf11b8be0 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6e0d1c7 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc405c2cc vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe0eca492 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x8238617e vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x113e9e2d vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x115206a0 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1aa254f1 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2c8c7d3e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e843c26 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ebe0ac5 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f935d34 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ad11058 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40f41f96 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d2dc461 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4de35ba0 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b6a79b7 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64e30e3b vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x66664fe5 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x66f7994e vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6a2d1f58 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x73442f34 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x73928bff vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76c51f12 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x873948b6 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x975e037f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x99160ef7 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xae981d98 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaefa74f9 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb50df935 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd5f8ae0 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc92456b5 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd687cc4 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe3329a5d vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4532828 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe510433e vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe66614bd vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe86b7cc5 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe8754454 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf298a276 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xcee21e67 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x01178e29 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x02ca5291 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7b133b6b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xb97b1af3 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xe674f388 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x903932fd gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x722825dc mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x311b7216 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x667d5f20 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x3a82237a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x2f679bf9 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x62217092 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0e4ab3b1 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x21ceaa4a max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x48795d3f max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x50ffefac max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6a4eda48 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8deb4b4c max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9a4ffbdc max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa1703d5a max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa3453643 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbe8929c8 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcc9b5346 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd5af5593 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd6a8cc35 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0565ed2f media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x06ee1098 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ac87807 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12a16aaf media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13b355f1 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x154c9166 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x171413ae media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c053c09 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e6a2d21 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20004ee0 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21dfbc9f media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34aa3031 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x374040ed media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a746522 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d792552 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4318dc2d media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44122e82 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x447ddb43 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4dfd3a2c media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4eccbbf7 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x645ce710 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65a65e1d media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x748dbdde media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7799d040 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7cb167e7 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7cc646b5 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x810e8fdd __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x89b76828 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90239495 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95e2b1f8 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9626f838 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b29d268 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ecfc62e media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3d9ec27 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5c55eef media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc17d450f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc5c24e88 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc79f242d media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc794af8 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd096371e media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4926e87 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6119d40 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda40f23a media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf335203f __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe876b78 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfed2ed9c media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x8ac5cf47 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x168d6538 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19fc0fa8 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3049edc5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3ae3746f mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3da15d85 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4089674c mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c2307ef mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4ee735dc mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5dc5a301 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x63e4f224 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88412479 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x963c05f7 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa4bc07c2 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xab05238f mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad0f3d54 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd19453f mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd27c7442 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd93ffce4 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xded614e1 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x230796d3 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x275c13b2 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2840df33 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3d503410 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48e0f7cb saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6962bea2 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a30b82f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d58c3df saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7ffe370e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8484911c saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c801018 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbc027c0b saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd276cd3 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcef1190b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcfbc6f83 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8153852 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa9dd23f saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfafe1d62 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfe186b64 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x02172832 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0ef39b48 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5cbfd1e3 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8369ace8 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8b4b6f13 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdd3670ac ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdde9d742 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0b5067e7 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0bd880ab nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x23c0941f nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x45468550 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x75bd1fff nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x75d8d20e nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7ab54c91 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8a34e981 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb8ca0a30 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc4567fce nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xec78e9c2 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xed62a9d3 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf16462f7 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf8e75af3 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x1cbfb56c mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x20535967 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4e37c7b8 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x7e048dc2 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x89414607 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x2923c6a9 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x497b7230 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x77099724 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x89f85c22 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa31a9c15 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd2d86214 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd84feda1 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xed7f3b07 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04756a32 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05169ae6 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x06668765 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0dc34f63 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e91ceaf venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1507d207 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x159eeee3 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x19700625 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x20d444a0 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x31a60e9e venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x324614fb venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x355b7c37 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3b2dd0d8 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4670cbd6 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4a38829d venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4ce7d9cb hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x54d7a762 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x58377154 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x58b17f79 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x604f0b96 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x64793a44 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x657db4fa venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6b8029a4 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7686ddd3 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d11a9e5 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7f62dc73 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8aa60247 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x917d3d7b hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x91d7756a venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x936d3acd venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x95eba218 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x973a69dd venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x99ac5c8a hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9ce08ce9 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9e302101 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb10ccb31 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb33c9bd1 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbc55f762 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc8d8baf2 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd04e3695 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd2e52081 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd88a1b82 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd8cf3679 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdd94c09d hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xde312c85 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe692306e venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xed67d969 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf1cd59d4 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf3b78bd2 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfbe4c3a7 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfd0354b2 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0xc90652d5 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x18adbeef vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x4202f457 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x727fd152 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7daa8e64 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa32783a2 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xaab750b8 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb2acab2e vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x218b9246 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2692ee77 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5a81a4cd xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6574ab61 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x675c7c65 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc6d19f23 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xca1b05ac xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x8954d6c6 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x88420d68 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe3c79e9c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3084e7c9 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5127506f si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7e8a615f si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa8f9cd72 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe279382e si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0415c4d3 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x04d9ba68 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e797eb9 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x40023cf4 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d0cc01f rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6043b806 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x688f04c7 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x68aa562b rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6f97de18 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70f9a205 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x93635967 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x949025ab ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2aace53 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2e92af3 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb2fad600 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba0a26f0 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5e4cb1b lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4876bbd rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe76103e7 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x6857b031 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x2093db66 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xbff3e54b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xbf8762ae tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5fd15fde tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1b934bfc tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x8f1a6203 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x30dd538d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x99804310 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xbb45adf8 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xa429eaf0 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xda2e4850 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa7da0caa simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x00e9a8a1 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x05b2e09c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1451e348 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a9e772d cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x50799cdb cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c8c0add cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61dd0822 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67fe5ad2 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68a920d0 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6b2f78f0 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f1f0881 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x708c0df4 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x756c8d5d cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e7eda2d cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f217ae9 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8547129e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbac71a87 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1c52d06 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb665586 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe6c4fdb5 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd1fa6345 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xaf81ff05 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x019ecfea em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x044c3af4 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0b351ead em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0bb03fe7 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3740244f em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a65ba0a em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7bb69a26 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9712e558 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9d6e84ee em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa11d693a em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaca0351c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf0dca4d em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc031dfde em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd50471e2 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd560f6bf em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf63b16e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe7c4d41 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff6c959b em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x068f7907 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x84674b68 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8c3b7edd tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf2211047 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x436b705d __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5eb196cd __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xba4dca63 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcd25d77e __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd0e40dd4 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x14ebbe87 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x90d62237 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa9c280a9 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x031fe08d v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2a3b4068 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x499f125a v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x628a064a v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x92f9a783 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x952eef16 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa2dd8dab v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa48b3169 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xed31ad82 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf02164b8 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x30b5ebc6 v4l2_jpeg_parse_scan_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xcbfdf5cb v4l2_jpeg_parse_frame_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8956e3f v4l2_jpeg_parse_huffman_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8f40f9e v4l2_jpeg_parse_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xf8ffd565 v4l2_jpeg_parse_quantization_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05efc637 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x190d6442 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d5ef381 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1eb91f99 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26f8bbc8 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x302707fc v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x392388ae v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x466baf3f v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x51269ef3 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52c38b9a v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x581e3904 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d8558e8 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ead470e v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x605aff88 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60b887fe v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ad2741b v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f3dcc8a v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f6fa5f9 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7371f53f v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7646bfb5 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d8f9c71 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x832ed56f v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90c24a86 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9199ad56 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a6f625b v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa388ecd8 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfd6d7ee v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc30a85c9 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc432b738 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9b35577 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc4e2e81 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcdc54c2f v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce194154 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde8e80da v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1169e6c v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2406bab v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb10b8c6 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebec283f v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf47c48cc v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf71c5506 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf80b4bdc v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfafb04ca v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd78a7cd v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff1a1976 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03a378c6 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34ac89b7 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d3500ce videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53bc8cfc videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x549ad0ee videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5d280cc2 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x67dca9f6 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f79cd5d videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x710ea29b __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x71d6250d videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7580434e videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f9bd2b0 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x996d7c3e videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb2072446 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb50a970c videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc049bfdc videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc980545f videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe212e59f videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe563df7e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe8dcf2f4 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe953d723 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed6f716d videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee4b9dd2 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf728c070 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x31eb4a54 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5639a40c videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbdb22922 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xef13e02e videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x23495e8f videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x46eba00d videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc318bb32 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01298fbc v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x021dad2e v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b734c5d __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dbd6380 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eed244b v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1880bb42 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a0af1e1 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c77bfdc v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e1f0d25 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25c4cb5d v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29bf08bb v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a675fbc v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f1003ba v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31f1fa0e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33fa9b94 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ebf893d v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4194ee74 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42c928e7 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45532e65 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x474d5818 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a39f4fc v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54c55bb9 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54fae344 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b353767 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b45dfdc v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6845fa9c v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a6d4bb5 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7048e10a v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71c52226 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74059896 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x790301d0 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8044ef73 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x851e941b v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8805785c v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d02601b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f789882 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d23f944 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f12f11e __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6257049 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa90df024 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad0c54d1 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae274b3b v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2876a63 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb58b455a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbafa88d6 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbedc0eac v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3f47754 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8f13b6f v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2dc413b v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd65a4535 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7942b36 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9a7a3cb __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe362c110 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4e13a20 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8cc040e v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb346d94 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1f509a5 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb89195e v4l2_device_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xca75af8f mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xfa7e0cb5 mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x000a8b6e pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2e9c9c0e pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb2d3901b pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x00016f3c wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e2db35d arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2771ba09 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e7c9e88 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x36836cfd wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x392194b9 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x51ff083e arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x70072079 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x70845058 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72145fd0 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x75bbadb1 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7a510d51 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88e8f98c wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xac49f712 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbecc931a arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcbd038c0 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd21e064f arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdab53456 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1a889b15 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5ab93d8a atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0221c324 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0bbd7a0e da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1265cd78 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x336a6c21 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa4fdfa01 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa85b1565 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe0ea6751 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b6e5fd5 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x154624e3 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x26c357c6 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x446a5b1f kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4eb10f91 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x68800ef4 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7db5242b kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x93d27771 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5200775c lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7e4f3a3e lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf136c46e lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1fd22fff lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x525f7bf2 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6aa5e63e lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7776c5cb lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8cf33a05 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb248ba8a lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf36f5e6d lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0955565d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4d51c6d9 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x837512ed lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x08e6c0f3 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a2678d3 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a2ba493 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17008fe6 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x170d53a6 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2081941b cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x208c485b cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c4562e5 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3854e3ab cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38593feb cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x40a86641 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x491365df cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x491eb99f cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4f86528b madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x543592ea cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54384eaa cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x55437aa6 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63b48917 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63b95557 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6609774c madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b61fea7 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b6c22e7 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x83d0cf13 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x83dd1353 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa89dd32 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc0e5d21f cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc0e80e5f cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfc1a8a77 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x399eb1fa mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6fb80068 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87ec6dd5 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95e398bd mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xad06f037 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc75626f5 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2f09a34d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31329990 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5715a20f pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x89260970 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa0758582 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad015f58 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xafd49f45 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb7b026e6 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc05b91a6 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd2cbae58 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf5b6cadf pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x91d1816f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa187f9e9 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x108db2cf pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x12e5f1e6 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa2bf9d50 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd518394c pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfc91e69f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x56f5e686 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04347b85 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05196cad si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07bd5f2d si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0cba7f96 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14bce352 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20bb61b9 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24fd49f6 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2788b10f si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3759de5b si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43f92d6c si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45ea5019 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47fe961e si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4adc1d2e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d89e180 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a332108 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5eab0925 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cb89ec4 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x736406ae si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76a5b798 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b8e0315 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8447da30 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98f12d44 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0c365c2 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7acd206 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7ef5cc6 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1106197 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb161b448 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb85f70a6 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9f96099 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd6e080d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3925545 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeaaff1e si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8c6f527 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc81d18a si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0ca10421 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1342499b sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2fbd93e6 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x75c5b6ac sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8786d4e9 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xb9bd1a11 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x0befa507 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x4421f0c9 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x65de8226 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb6cd4a5c am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea7dcada am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea7e70b8 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb015e43f tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb8079876 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd9a8e92d tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe9f12c39 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x84c18605 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8c3ee61b tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa1a349f4 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xf1a75e0f ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5184b99e alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x710d4966 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xaa522d41 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb3043797 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb5ca4e82 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xea083adf alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf4ed3eab alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0013abe3 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0ff8fd64 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x14b5dcde rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x16a3e713 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17853051 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x19dbf941 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2386c5c3 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x29ada4af rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x447e39e5 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x649c2590 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x78d69d5c rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x92c58dcf rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9661dbb5 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x969bedb3 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9e35f0a9 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa873d32c rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc18f1fa7 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2659b79 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc5b8a332 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xca0d77f0 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4b5b0a6 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeb8ad0cd rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed8a0224 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf67474ae rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0d85aca3 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1f791e8f rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2b907ddc rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3a9cd81a rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x55db10fe rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f8a6d72 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7ea12b97 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x938feb84 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x99084b61 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa706cf0a rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb8a7d05f rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd1fac9e7 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xeafc6de5 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2b2c253f cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3fd500f2 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xacd4cec5 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd33f30db cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x12dc632a enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ef54a62 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a1a2064 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4ee023f7 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x98713966 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb58a3790 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xee5e22b2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf67a9a8f enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x329878e0 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x35f25e8f lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x361706bf lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x36fd61cd lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6bc65363 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9343a945 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb1411511 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe31832f8 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x5278eb9e devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x63161dbb uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x872be174 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xaa121f4d uacce_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x13efd611 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x32de4cb6 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xec55476b dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x15a04f3a mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x51babaf8 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x75277690 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xf58539d9 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x36ebefff renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xec683cf1 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0369175b sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05af28e6 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07e40c29 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08b86f3c sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08e4a2fd sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1bd77b63 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1de7caa6 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25a59cb3 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x27543c35 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35eeb5ce sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x368551e3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4032a108 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43739430 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x475fd4fe sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d816a4b sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5003a62e sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5126b817 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x512dc6c9 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x562ef382 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6259c150 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x721e2855 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ab048fa sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d816c78 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81a20d0b sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b6f3c71 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c2d62d8 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f1f0b29 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9115b589 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96823b5e sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa446a511 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa65822dd sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa6a0302a sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa3773c0 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaedd2031 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb0ea0345 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8248b6d sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd01a632 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd372eb6 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe8813fc6 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebf4ab97 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeff4f9e8 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x061376fd sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0710fc53 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x314317d5 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4ab7c371 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x60e5add8 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa6c39eaf sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xac3ca821 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbd7c24b1 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd5ec9b66 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0aa136ba tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3835a63f tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3a75ddc0 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x573fbe93 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x595a7b29 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x62c7090c tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa44c6f23 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc44eee93 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcc9a2785 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/most/most_core 0x13786b37 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5bd9e28e most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5e9fb12f most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x61e915c0 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6bcce4a1 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6e7e327b most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7ceda407 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x84e28fd3 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x89b2684e most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9d3a48ef most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9ff2e929 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa7ba1217 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbd3295cf most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdeb679bc channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2da03b6c cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd0be1efa cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xef973b12 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3cd34388 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb178c7de cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcf2a8c0e cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5eedea89 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1443bdcc cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8e3ef2af cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xffa96e1f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5488fb7a hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5e847c88 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x042441ca mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c1714b5 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cd4aeb0 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x140ac2e0 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14e48f48 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15142682 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24745ab4 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26756f18 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2cd8aad9 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f96fcc5 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2fad9c6e mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30c2f809 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33858759 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35175ce0 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x394f9a75 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ce9bf40 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d7a2974 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x563f18b7 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5bec49dd mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5c80b3dc deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x692275d2 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a2ef00e mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cc43808 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x727323cc mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73ef3bba mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78293e19 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7947f32e __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7970c81a mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86ecd131 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9192f9c0 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91e23fd5 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9580ec65 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98a47f54 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa37be8fc mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6567244 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa66a4bf7 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa84f5d6e mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8804d55 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8d893cc get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbbbcb5c7 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe956e47 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8713daa mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccb9132c mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd40dab08 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd418fbbd mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5de0a60 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7fc666e mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb37c7ed mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe90bee74 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef90f368 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf59c780c put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9b0f8f8 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff251ce0 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x43b30e89 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x49826f95 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x82cf3d7f mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdbb8e288 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdfb48f31 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x076f1bea nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0a5a15d7 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21a56608 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x28b44805 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3d4b6478 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4b425689 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4ed01953 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60d26090 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6ce9e209 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x79eb6ee1 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7e4192a0 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7fb8caed nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89d4a03e nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x95ebdc54 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d23736c nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xab3ddb2c nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc06799f5 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7038ddc nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7d1c704 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc89d72d1 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd68ab0ea nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xed78f050 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1e3b8ca8 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x20a27c1c onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x2306b0cf brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xb7df8b54 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xdbf4de97 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x16e5556a denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1b434e1b nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1b5be8ab nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1dbda1cd nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3014e44c nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x34909786 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x390e4705 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x463c50fd nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x47b24347 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x50762629 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x72580f59 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7408d824 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76b25532 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7e3c8891 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84eaf5f4 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84f9b3c0 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ce136f4 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8f6f0a29 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9640722f nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9f91f88f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaa8f756f nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb0ff9d9b nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb2ed46f1 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc1020191 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x725c5b82 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x408526f2 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x40e086e3 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1e3a2fe7 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x23e278ad ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32e31486 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3bd5a96c ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4fc170de ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5b0db500 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6bb0ce05 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7bf6c90f ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5bc0435 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xae662a15 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb95ec011 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda94cac5 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe06bbdab ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8c266e9 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x43d2c1a5 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5762843b mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5c0e6638 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8c471cb7 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x90e51688 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x943a7563 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa2231b04 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbacfcf0b devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc46e65dd mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc806cc4e devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd356b258 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffd69986 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffe4646a mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x11139f59 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xffd4d9b0 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xa582d2a6 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x39d0eab8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7048f8cf c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9d38f206 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9e9f95f6 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa47fe317 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe9231430 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x57fea0b3 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x65862650 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6e2273d5 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc416df56 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00eaeb00 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17f95cd0 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x21a5c9ae can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25fc0d84 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b5b9d28 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c1397cb register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38fc683e can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f350a08 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50f5898b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x59873fc9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x66e04163 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x703f11fc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d95c449 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x80215076 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8d254f2f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91a4fda5 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96b73a9e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1b23813 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa99b3579 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa4deb44 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae87450f close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb291d3f8 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5d24c6f can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda24f0bd can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe3736fee can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe74a18a7 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xee576956 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf1be2eae alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf4fb3bd3 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfbbaf877 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x311c4f91 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x43f85b1a m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaf5fc9c3 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe1e39886 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xed9031a7 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf189e331 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf1b996e6 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf9c0933e m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3803af6f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x59b84de5 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdbb05783 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf7cd2110 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc09d46e1 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2850fd3a ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3037b185 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3a794a7e ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3f930767 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x452721a3 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4de9019b ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x515b98cf ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5d6d4500 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x61e2d1da ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7b6c35b9 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8d6ee4b9 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac61e698 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe1bb773b ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe65b8850 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f3c5127 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x32204cf2 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3837f9e6 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3e70d3b1 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5f573840 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x67c67464 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x762f6f10 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x88acd455 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa5de0086 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xae581b89 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb5493945 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbaa18c36 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdc8267bf rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf0effa77 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf5912062 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x2d4de790 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xfa680914 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x17173f9e enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5a3817a6 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd2bfc6dc enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x92c22239 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe2527966 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4b007aa6 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8c152cc7 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xab1f192d ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xddfea8bb ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfb9f26e8 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a8c1c0 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0110d655 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02f8faf8 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ab5465 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c133d55 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c3147d3 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e767d5 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15a54093 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x167eb692 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1732122f mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17741985 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a16a5b9 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3419cd mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227170d6 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22bffc0f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25136e05 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26bbdc90 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27ac3644 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27f626b0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28487fcc mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29e549b4 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a251001 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b7c6d71 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c1347ba mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c6b130a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31dd0f7f mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39d79ce7 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a64d98 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43a5c2f1 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4853d506 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4990af8b __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49f2a649 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aaa9bd3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d644627 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ebbb9a9 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56404db6 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a0573c4 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b05a0f1 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b133545 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6408ccbd mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65b6def0 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d53a3c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68857291 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6af2f84c mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72622d04 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72ef4cc3 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73d41b73 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ebe7a1 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76446e9f mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79735530 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79764439 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a61143f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x807b6640 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8313c683 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b17a4b mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8938d20f mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b378a1 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89c1669f mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a414faf mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aadb503 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ae4634c mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b5f7c4e __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c4eb4f8 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d066fe3 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ed4e688 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9635c69f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9676ece3 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96c4393f mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9808424c mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c22b336 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c24cd8e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d1ecfd5 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4a46264 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9518192 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaad2710f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab5b9d03 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab9dbcf0 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac7177f7 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf378813 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0878021 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb392fb0c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb62fe779 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb63238f1 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7fba550 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9843247 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb073f54 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd6e442 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd66433a mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0918f7 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0a1757 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbed47a1f mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf24b475 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfd38ec0 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc46caf10 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5fc414e mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc73e7803 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc800d7b6 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d7c9bc mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca776d4c mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbb0b755 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc905b4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1a55742 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d00946 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2deb92d __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd46c404a mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd62a1b27 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8acff59 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3c1093 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf6d2bca mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe27bb9a9 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63ac377 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea5e9a71 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebdeb95c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeca183aa mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9c16c7 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14c236d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14ea908 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8e1552e mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9a0c0c5 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb45ece9 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe494045 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03d55dea mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0477951b mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04c5356f mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x055102b9 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08ff159f mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a460534 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ae5b912 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x170bbfc1 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18926c23 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f28917 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c1ce479 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e6d14a6 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26ba59e2 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e3a1e4 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f95cbe9 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355489bb mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35676b2d mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39a527f9 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39b4888f mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b85a9f7 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6b4c87 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50922a48 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56a4d0f9 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd7f87a mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6754992e mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67aea935 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x815eed5e mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83492a48 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8424e5e0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a2de0d7 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90c016e5 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b3f9d0 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x972e0917 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b15aa71 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d60ae2c mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f0f5f93 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa566a19b mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa675af10 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b2e22e mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaf725a3 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf913a1a mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3350f75 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7f0a008 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbebd6c31 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbecd7b33 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbefe12c9 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbffd33dc mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1756034 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e9dacd mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7edecf5 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca34ee0a mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaad387b mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb06e881 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3774b4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcff59f2f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ff10c7 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd10698af mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd50ea73e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd767f56f mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f227cc mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb2f2814 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe16cf881 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe23574c9 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c15ff3 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec9ce137 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef916634 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf153b645 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf28010fc mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8cda1a5 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8b9c20 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffbddcbf mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x64d43afd ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x69649154 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa4b9a801 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xba0d8533 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xb76c3e75 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x018d872a ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11c10f10 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24d06afb ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x506964ab ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x866b166d ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a2dc936 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ded56c7 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91cc8fab ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98ce0804 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3efa9ed ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeae0ad38 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3fa8925 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff515e9c ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3b530f99 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6e970c5f stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcc8958a7 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd8875c8f stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xee1f4f57 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7322f1df stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x99ac012d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a256648 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xef4c875b stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf0b8e858 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xd20d1e89 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xd8df95c8 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xdddfdfea am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3069e04b w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb9d0cdd9 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbaf1ffd2 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd6b60e2a w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x7617a6a6 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x00ce0708 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2103dfbe ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6d805996 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x78a36acc ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x97d4b2dd ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x8f67c543 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x262aa545 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9129a330 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xafcc7d4f macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xefe12a3d macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x691171c4 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9456213a net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x99629970 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5a9bd708 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x62fbfe85 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa7ef3484 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xadcbc7f1 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd2653b68 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd5b5e17e xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0022009b bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a8528c2 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x11970445 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x22b0af2d __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x257b4a40 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2801350b __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f2725b5 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31d78c45 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a7bb699 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ba0536d bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x694fbe62 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c1ef1b3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d713f8a bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ea487ac bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fe88477 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81fadac5 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8340cf9d bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85640530 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x856f7447 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8ed74505 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xadd5f075 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb01f9787 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf0e7267 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbffb8a8d bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc97e50f1 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd019ca6e bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7dc6d94 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd80b7806 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd8ef3be9 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe15d6561 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7964040 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe94d3996 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf26f6191 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf937cf1d bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0bacfc79 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x21c15fd5 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x24bb7e0f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x54814dc9 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94e141e4 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ada0f1b phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa4f25ef2 phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcbffcdd8 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdbe5a396 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0e7e10f7 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x249c5cf1 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x308571ca tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x585f18f3 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x62fd8726 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x9574a4db tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xacc384ab tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xfc96463a tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xfe959f43 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e4861fc usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x46cb8bf2 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x51bc95f6 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x53999e9c usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7534bcf4 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xce77bd28 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x170f9675 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37591de2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4a5b839f cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4c280cc2 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x927584a9 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x99c563e4 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f8f57d4 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb4c0de94 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb95d0221 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xce07c010 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfa269700 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb6c35d7e rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1f55b42c generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x45e0e33e rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9a3b8d1f rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa03f7441 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbfc562b2 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe4c887b9 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x074c4b81 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b5f7863 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f4309f4 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f5a21c4 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x353931c4 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f869c2f usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4131776e usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x426a2051 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4950f122 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4971c56c usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a842458 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d6e23f5 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50a779be usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59cf30c6 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6459e27a usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69e6cb20 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b7265ce usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c523696 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e06516b usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71cb915b usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88b7785c usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x899f05a8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ae2bbc5 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x936f966e usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb01030e6 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba8c420d usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc01997d1 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4cd5424 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc69a20ab usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcda00913 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd68dc230 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6f4ae34 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe865eac5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef35dad8 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x106c6cee vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x977742cb vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xac666895 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xea50df65 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1c665186 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10fd2bd0 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x245a8fca _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f770b12 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f2b7178 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80a08c0a il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07f99124 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c7afb91 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0dfbf4c5 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e881a7f iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12ebfed9 iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x134c9a0e iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16e0ca72 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ba21431 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c3964c5 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x254c3cd6 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26404d8f iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x266de986 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a6fa183 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2bcf621c iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e10b3e9 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x323ecf43 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3352d9bf iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x34077a29 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3634dc16 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c2dc111 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f0ccc2c iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e3bbbd2 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53a87d42 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x571148ea iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5909fa8d iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5988395c iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d6fa5c7 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6cae7e4d iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6eccec0c iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f2fe77a iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x738a4789 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73b94943 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a4ae093 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80595721 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8268c130 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82ba7072 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x832d151a iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8482543a iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8729cb63 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88ad1b44 iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x895e704b __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ae2b5f8 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bc1e4b7 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bf50195 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9483c095 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95dd792f iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b496ffd iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c81a7dd __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c86e0b4 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9df61c47 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa26a85f0 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6ed01e4 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa8a829d iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb01120fc iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3ee1f4b iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb880416a iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6e03f81 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc970132 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4abf8c0 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd6218b67 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdceea41d iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xddf7dcc3 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdfe58cd4 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3497bc2 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe42e39c2 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf40d82bf iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6134b3a iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf7af6612 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf94d2e72 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc7bde38 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfde7c720 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x129c43ac p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1668f050 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1c868727 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38f9f502 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4e7e9639 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5053ca8f p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x603af677 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x638982b8 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf90fecdf p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0c780fb4 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0f846fac lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x498dd6d5 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6068763d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x66b675c7 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6707493a lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x74aac946 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaad0eb29 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb6e66726 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbac2e675 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd0bdd681 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd1bafec8 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd6e008a0 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd8dbbe48 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe5dd5dac lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe61b13a1 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2e5915e2 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x43ee6340 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x442cf1e8 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x74c49526 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x75ae4f95 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x78a1763f lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x876cf21c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc471ff0f lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x10805d9c mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e452806 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43efeba1 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ccf3599 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4cf387dc mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57996250 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6cbcfcce mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6dafc19a mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x844ee43c mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f652d40 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9173c584 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x98cd1e14 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa1c4ee90 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xafa8bd90 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6ec1376 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1a37a7b mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcbfbfb32 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda43ddf4 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde48d0fc mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe8e0d7e8 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9fb6f47 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfa2876af mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfdbc3727 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfed9eb40 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03cd3bf7 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07b3242b mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0dafc4fa mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ddf482a __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f65dde9 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11230b3d __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1128225d mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14d5efe5 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c4f2d09 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x260ed424 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28ff229c mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b5494f0 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35d54a67 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37a23443 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38279db1 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3841e956 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38616692 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38b67048 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c25e961 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c865e05 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x424cf6c7 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43941ac9 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49442a15 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a3cfc8a mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c4af5ba mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cfcbb11 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x507cfc2a __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b0f521a __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6025bcaf mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x633c03ed mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x652a4b28 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x672607d6 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6973816e mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x697f052a mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ad9cfef mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c88185b mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70696e58 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74151f6e mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a7423db mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b1f2c42 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82b09d89 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8626c244 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8910bc9c mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x900f9905 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c2c1750 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e3ebd58 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e77df03 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f2f2d52 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8ee546b mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa92f94d1 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae37e84d mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc1b6f8e mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf01a071 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2dfb283 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc355b8aa mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc571eb68 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8913197 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9cb6a7d mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd06c257c mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0eb0a76 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd43ca137 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd48fdd0c mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd49d118c mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd66a79c5 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd94d8c6f mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc1911ae mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde02eea3 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe417470c mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5d3548e mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef362b0b __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf08aab80 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2b4d1b2 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf747af7c mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeded3a6 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff21acfa mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x02007d03 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b81da95 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d8b96a4 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x149e7ca7 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a49702d mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x21a1f633 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25d39fe0 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2dd27375 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x328105c1 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x390e39cb mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f5854c4 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x422305a0 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4afe940f mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53d46c49 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58d815cc mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c72ff05 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5da7e59d mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60c479f6 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66ab43c1 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c3e48bb mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83c2cebe mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a4f7998 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a522a87 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98888418 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa27f2e87 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa52e501d mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae9d1b3a mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb5eebc8e mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc03084a9 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc66e7936 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc834f86b mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4028940 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd437eac2 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd922e7bb mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdaf20c24 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbb8cdc7 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe05216ed mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3e0430e mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5e260d7 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xefcabb9c mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0777e83 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4edc762 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf755a80b mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x16b740f2 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1fa840b7 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc0686085 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0e3c0997 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x15c9a4c5 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x515e8ad9 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x540c3453 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5e078785 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x75c15714 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe2d52b5e mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6f4b324 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfb7aa59f mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d587159 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2066358f mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27f56dff mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d9930b4 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46c38f50 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x52209b5e mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x53be5f33 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5b3ed8b1 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x680e5fec mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b08b31a mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7bda85bc mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x81cbcd52 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x81d79fd7 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c69325f __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8d990df8 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9a8090d9 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9efe62bf mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa346c167 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaa22e123 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaa297c10 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb4136f19 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb728285d mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb867c015 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca09f5a3 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1545ee3 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe30d218a mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe726ab79 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf7eb1930 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfdea5c55 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xc734ee44 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x39858386 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x902a47c7 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf4a09ebf mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf9bff72a mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1be21ac0 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x216e1190 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x667e19bb mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8e908323 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd48c527f mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe8d5d756 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00fa12a5 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02a4b9a8 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03191004 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x048d6553 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06f9e7fc mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16c9feeb mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16f92f06 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x185846b8 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19dd7d2f mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x202833c7 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20307c3f mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21b8379b mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x263d2c42 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27145314 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x312a8dd6 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4067a84d mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x413e49e4 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4284684d mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x443eec96 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x450f794e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x481422bd mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4967fbb3 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e2ed8c2 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f7a74f4 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x534c60bf mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54d2d029 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x595d80f0 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a98bb6f mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f6e1080 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ff3692f mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x60b88423 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6367fb08 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x678f02e9 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7018f407 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7616e41b mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7869fde8 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7885f1fa mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79acf2c8 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7cf5c7d8 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ed635e4 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f2da815 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x820da50f mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x826a9664 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b5e51ee mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90b6bafd mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96c038da mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f67f9d7 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0bee0f9 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1314224 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6171cbd mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa661f22e mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3d470ed mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc59eee58 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc905be5a mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce78355d mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4318f9a mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4e0729a mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe01f510f mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3fe7b56 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef48fa80 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf243f30d mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf466bf20 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7139393 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfca13bfd mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdab8cb7 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff2c0e87 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x260a6461 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3aebdb22 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x501c866d mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fb8d2ae mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8546a267 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8fffb0f5 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x93adf1d4 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd9125030 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x33f28451 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x343a843f mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x47dbd0f3 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4dca765a mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4fef60fc mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5225e7fc mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5acc2511 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6326c49a mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7e4f8d27 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x916dbe1b mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x95eb8b6e mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x96f2217d mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ffdff6f mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xadbc186b mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb827eb0d mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc7c27217 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd8b61a07 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdafc4e91 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4cd0c0f mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1993b732 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3663c518 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa459a0aa chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xaeca637d wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb426f043 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc658932c wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfae041a4 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1a36aeef qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5babbe42 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7f2c42d6 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcb68baaa qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe431f1e6 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xff3ae65d qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00347ab7 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b7ee981 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x12d507a9 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14ce2bfe rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a8b05f5 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c9dcd8d rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x202ecc67 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2222757e rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x28b074f5 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x367bc95f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36994edf rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38c67a34 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x472403c3 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x47de292c rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x57029d3c rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ac4ebe0 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68f67aa8 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6aca6558 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e13e202 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e921baa rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e9d17e1 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f5a1074 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7501be0f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x752145e3 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x78abd693 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7908fe20 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b281a94 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fc88113 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8227c8b4 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87376ced rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x88e2df44 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a285616 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c10f7eb rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9312d22a rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93233f67 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x933bc2d1 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ce5daa5 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4c08bc1 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb81be10a rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccdc1629 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd1c4462 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd9d0068a rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2b0f2b5 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedf35aaa rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1207a74c rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1abcf114 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x273766f0 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2856d308 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3f64add6 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x408ffc10 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x62b46f29 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xae2e056d rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc191c2bb rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc5a0cd02 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc9a58bc7 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd82fbdf5 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd9ed033 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdde45530 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe495e57e rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee67a95f rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06565895 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0cce280e rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x196f613a rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d32d8ff rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21c7033f rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x221bef25 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a9c665a rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x321fa54d rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39df958e rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x467537de rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4839f82a rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4bb749ab rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f18bafc rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f7a27c3 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63cedb6a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b6091b2 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e22c372 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7186d9bc rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73a4fa22 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a66ff2e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f5d0bfe rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82b982de rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8dec1c33 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9bb9b8a1 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fdd266e rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa20d1958 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa250ae4e rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa45de25f rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7a5294d rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb2d1750d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb69ad8d6 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbaf3ba7a rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe31372c rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe82d509 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0b9da3d rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc3db9fe3 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc44fc705 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8b49588 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcce5e271 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2221a0f rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd70ca6c7 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc3eae41 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe58e067a rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedc1eefe rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xefecb15f rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3b489d3 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfcd84416 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x194a58a1 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x69741e9b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x914c7130 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbfa60c16 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc31f24b3 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x170b5027 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x90c12a48 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xaf1d4814 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18b850e2 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1cec2501 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x28c4466b rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x482cfa89 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5a55d5b8 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f7884a5 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x74334ee0 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x75c73c06 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x78e067c5 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7a1abbd0 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8146383a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x889560ce rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x975f7d5b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc1835385 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd6177d3d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe217549b rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f6a048b dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80a4cd25 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95f0c7e9 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd434f334 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03c498f9 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04465365 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x082137fe rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f92dfcd rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a61a030 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b20a552 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bf5adce rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2696e473 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2dbe619e rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e384070 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x334c2927 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76ef741d rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x792be3a6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f9652e4 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80a1fa88 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d00f789 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5f6951e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbca4c140 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc83dfede rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb0c8a9c rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd218fcf0 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd29c74e6 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda6bc149 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa8951fa rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfea456b2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x040fa6a5 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04cbc9c1 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x050da43b rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19447c84 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2500fe85 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x329167d6 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a171fd4 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40573939 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47d37ec6 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x642ba999 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67e19fdf rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6cbea976 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91e2678b rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c7c576d rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f8fc691 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa771ed13 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad1cf852 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2564b30 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc49c0d8e read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc77f3b53 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf40617a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd78c236e rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef59b5f6 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd8662ef rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfdfe180e rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x054d6750 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3dfb7843 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8ffa9b1b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x95fd7b2e rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfda32920 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2e124a4b cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x40dee4de cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd24b8cdf cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf192926d cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x41327d91 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x872b4832 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe0313a75 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b2a2061 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x107e8f3f wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e04f0a6 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f62f6e5 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20b51064 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23ee85d3 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28c61ee4 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30385f91 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33a0557a wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35154375 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36df2c57 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x401e17f8 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43dc6c05 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4714f53e wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b027bc0 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bd17872 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x523a7acc wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x557240d6 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6aef2782 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7126bd12 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x723b1e81 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7864bf5b wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85117132 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9101ed15 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1f0b942 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa29b51ab wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5bc2cf2 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae85bbe8 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb93f293b wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba02d4cb wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc228abfe wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8f6fa6a wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb6291bb wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd25afd1c wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd273e21b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde67f802 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0467feb wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe054aff4 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe64f6a9e wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xedc35b25 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf32a1e8e wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa2f1e77 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe811ac5 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x62ecb033 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7036626d nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x93c000d1 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd768a967 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1373e29e pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3c3140f4 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3cc3c3c7 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x493f3a16 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x65dd904a pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8896ca7c pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xabd9f61d pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x02cfe9db st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x032044d0 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7b0f0049 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x81594e50 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8ddfd69f st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbac60403 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbbbec3d0 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xea8e3d3f st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x39ad0313 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x8fd8ffd7 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe114b61b st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x081affcd ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2360135b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x86acc12d ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x2f8c6190 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x35a4efe1 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d9eedaa nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13036354 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14165dad nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17696578 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x18301e8d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24e94775 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30ea450d nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x323bf6db nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f9c5c4b nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3fabc6d6 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4077a747 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x462624ad nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50cb1cff nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5de6880b nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x616e8b5d nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62c3107b nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d0403a3 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e113b40 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f081d81 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x723a8ac8 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80d67196 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8102bcba nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8528dd69 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b60e04b nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x946cca5e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94ecf2cf nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98f062b7 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a23ec70 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3380069 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc556c8e1 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbb01477 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf4083b0 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf7b2716 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8da01f1 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2f0380c nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe595d3b7 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe67ef7da nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8407c1c nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebea7857 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf131664e nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf185bfc9 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0999b8ec nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x149d6fd3 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x15ae5339 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x28858c80 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3479e698 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x38cbd2cc nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6ceef204 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xabcfc2ab nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb74f7be5 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf1b270ef nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xb7b5967d nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x10337acc nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x12a5af20 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1ee80ed3 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x69047f73 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7840f1a9 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9101748c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa2c3bdd8 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb85b42a1 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd69a9c62 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe80780f7 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xec8fb25e nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xd97a3378 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x187d6c31 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xe4ef17d3 switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xe72b90fa sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x04b0f4cd tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x221f6468 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2c2fd35d tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2e8a6f7e tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x43105598 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4721bdbb tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x65e6115d tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7148d46e tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x769b9ae2 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9126be43 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x99df5206 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc23aae11 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc770438e tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe9e7ceb4 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xee08e19f tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeeb0d2d1 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xff3c82db tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x8a020c66 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb314f02a mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xba79a889 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x83842690 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x9c692674 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0e2e2acc ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x16ecdf36 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b73618f ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2d583677 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x32492389 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3cd46050 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x408b162d ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x40f16435 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x42c29799 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x46e251b3 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4cb3e1e3 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x69c6b609 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x789cc1a9 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7a35240b ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x81a4a5a7 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x852069d8 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x860cfb2f ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89b26806 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x915e6a8e ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb083a06e ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc231f0ea ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6ceef92 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc8830106 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf4ebf8d __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd6676de5 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xda562115 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdc198728 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdeb02913 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfdbc5a72 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xff50314d ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x294f3db7 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x007fdb52 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6fa32bb6 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x79284823 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x89afb710 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x9f18b366 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa21f5d3c bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbdae16c9 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x643d29cb pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x70466b0d pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb88ed794 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x30b18186 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5d28cf33 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x681f7c12 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6a29b372 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x722e4a6f ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fadf578 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x92358cde extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9dfa9aff ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x364b3e43 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8c2fdd18 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xaa5fc3b3 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd91a9028 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd9721f7b mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x341ec7b2 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3eb61bf9 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4f701934 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9e10dc4c wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa6f14a41 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdb379010 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x5b05f055 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x438958aa scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x51537f6c scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x596b2b55 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6a88b175 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8994c501 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x97244afe scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xdbf84c96 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3d3d2e48 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5a13095d scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5db76d64 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6de93b9f scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbddd1656 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x148ecd5e qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x320826a3 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4232bbb4 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x45f71fd3 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4bb26644 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8c90aa4b qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe0627a70 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe8803ecb qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4f333a23 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x82428065 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x86117892 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa124e2ab qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb35f5e41 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdffbaba5 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x5de4f157 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x5d1522c1 mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xd1c23780 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x80042fb9 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x035a9175 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x078f256e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x099b6d42 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1392b7fc cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x181fc1c5 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c4ed3d2 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e13a6ce cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d8edb50 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x314a9c73 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x362268b4 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39599ebd cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3aa55c38 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dd5393d cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42ba69eb cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47007f0e cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x594a3f0a cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c0b7738 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cf28006 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e58f65b cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ec575e0 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62f1374f cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x647b18d1 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7290072c cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7383a140 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x745ba50b cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74aafa20 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81d4e74b cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9948363c cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a68bdb2 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9dcd1942 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2d723d4 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa93b61e0 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0f6f016 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb49725c6 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb586a62 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8ccc6d6 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca21e161 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcce20b93 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe76113ac cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf31033a7 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf93e05da cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd7d047d cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe9a0946 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff78bd3e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x09206c54 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1ce6079b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20b9f8a2 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4eec344c __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x638b2933 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6f6e36ec fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7072d92 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac6f825b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbde53240 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3841e0a fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe08c0fea fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe844cda0 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeca01a80 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xed1d5ef8 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9fea39a fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xffa562f1 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x28b4a19b fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x68a30885 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0b185c09 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x10dc3ac2 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1acef714 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3afb47ef hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3d0a2b44 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fefed90 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x73f28dda hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x829987bd hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8731b4ec hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b52377e to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b807c91 hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9d84b271 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa79a7fcf hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb8ac76f2 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc26e00fa hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc5f87c67 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd046fe38 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd5258865 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdc3e63c5 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe470520b hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf1d463b5 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf63fcc65 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf9771e85 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfbef1819 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x15ac08d2 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x21ce1fa6 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3298d28f iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbd226f1f iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc8cee26b iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xec8d1cd8 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xed0f787a iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02e14bbb iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1082f1c1 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11be3dc9 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1dd42960 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22dc289c iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x245932f7 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x299a8f75 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ba99665 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e35be2c iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32008218 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3712d1a7 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3aedd15c iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41bc0f69 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4649ae81 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x474ab22d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x515cd30f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57547526 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a0a9505 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a6a8191 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bd1bf78 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c03d777 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61d130b4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7242c31d __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75c30330 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x775e1da6 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cd79314 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95e0c53d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97971259 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c411de4 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d19d2db iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa228994d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3c890d9 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4338d23 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3efe071 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbae9ba33 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb7c8211 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9d792a9 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8e4235a __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd901a70 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0803ea3 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6bfbe5e iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed24d054 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeebdee5c iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefb4e47c iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0c9f7837 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d0ce699 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2dca1367 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x519e432b iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69ab28b0 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69af2d10 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6bf60331 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81269ef0 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f76eff4 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9fc96d75 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa042f229 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa0a264c6 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb50a34bf iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbec50766 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf9c5eeb iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc9abfe4a iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf356e936 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a56898e sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x166c9db6 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x177fa6c4 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f9cdcf0 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22879674 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36de46b8 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x424ec3cb sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49cab6a1 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b0457e8 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x534ed640 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58d27822 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x646db295 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f59c521 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f9fda33 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x705c9e55 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c03a500 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8910d938 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb530beaa sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbaf97280 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4cc02cb sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc60a2f39 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd68fb3f sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7839a70 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd99255ec sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda3968a2 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe46ddb4e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec35444f sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x18bcf7c9 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03dfe44b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05d8f7b6 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x081bbe8e iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09ea2825 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x129b1f6d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13bdb75c iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d35c5aa iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2335b549 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30b2b4b2 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37ed4caa __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x442418e4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46b41499 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a7aa31f iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ae6bdd1 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ee040a8 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50b6b1e7 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b4774af iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c485b00 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e7ce5dc iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x631db4b3 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64dd6bd3 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6836b5c2 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b2f59f4 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6deb5258 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70139148 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73b08a6d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x756b85dd iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81a279aa iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d86b030 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x954ca747 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96b2df98 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x981704cc iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cb88b1d iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa064a85 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae3563ae iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8813e84 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca384e46 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf72be39 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda9ba254 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdce2e82c iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe78050d8 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8bb30ad iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xead153ef iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeaf52b45 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf00b6006 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4b2eaff iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6a8d99c __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x28139d26 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5b71e261 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9398d693 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd914995a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8414527b spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x02d00cdb srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x49288dee srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x528a3671 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbb7076cd srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xeadbf955 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf4e5c8f1 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x08c6b447 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x11035d1f ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x15878efe ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x293896d7 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2f3bedb4 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x409a5677 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4c3cfc09 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5c1ed244 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6c9b68c4 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x776ce2cb ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x818f9501 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8490a505 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9615f2a4 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9fc2ed42 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaed3c09d ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xafa3e721 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb370d0e2 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeaef381a ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xec0fd3cf ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf7fc4c04 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x77549cdd ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7fe3d890 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4e85cb9b siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7ee422bd siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb4f2dffa __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc6aa60d1 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc8da6758 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xce9b905f siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x06f23bfe slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a50ce1f slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b79abe3 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22d49582 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3541c91b slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x385a86c1 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x399d8aef slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4aeadd10 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x508e9493 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x571d8b7c of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x595baaee slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61544d79 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x654039e7 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ba38162 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x89a38630 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x95976896 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x975341a7 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x99411030 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9d72a290 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa0e0261f slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb15a28f2 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbbe037b3 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc3251c7b slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8b53d22 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfdbf143 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf888d12f slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xa63b93ca meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xab356881 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe8a8aad1 dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xee618ac2 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5a118748 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8a8e2162 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xd858fdb2 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xd974d428 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x078ef586 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf2868d0c qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x630603b6 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x82a5e55f sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x89ff5d52 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x7183cfb7 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xd8e10f65 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x0f9ae227 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x352e7651 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x7c90f61b bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0c49c63e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1690e37e spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x44837665 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x80c679ad spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa80e23ab spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd5b19199 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1c774635 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2ee16d03 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x36a51968 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x41e6cc65 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x49daa4d1 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x714dbe0e dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb1e8b0b8 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcf6a04b9 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe654627d dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8acca5de spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc742320b spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe02a7ce1 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0937066f spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f5b4480 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11ae44f7 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ded2882 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20a616ed spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2bc3df41 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46d8f5b8 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6db55a78 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7a945565 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x84fc6537 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x957fd27b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0713421 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf14afdf spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe28cbe7c spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe90efde8 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeb7c2141 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf7873a99 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfbc4cf69 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x8f0792ea ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x01689c1d anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x065c7894 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2d696549 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x30b23bf7 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4086fee0 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4e76fe3b devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6d458d06 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8ad0aa0e anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xabc9c103 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc67b7c8b anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd800f58e anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdd42e701 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe4dbe898 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6a4d9ebb fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8367f398 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8a6202dd fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd9598f87 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x07cb8442 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0c501c05 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x11a5e609 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1f53c329 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7e1b35aa gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8ce8deaf gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa6f45a65 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xafefad3e gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbb01a069 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc82e61a7 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd4bf73ca gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf372d346 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb50680d gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x12486384 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x24d004d3 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x507c452d gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5d3a74cf gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x60124bae gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x74f996a3 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x78de5e02 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x97ddcabc gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9985e75a gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa38b7aea gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xafacb24b gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbbeaa0e4 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcefa916a gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x03a64abe gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79b00ada gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xaefa0564 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb23a260e gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x97c7bb9c gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xffa43c2c gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0807ac9e adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x014d1bfa imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x074ad9f8 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x230544c5 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x27307594 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x27623a11 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x44a4f815 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4a2fc5dc imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4f637fed imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x53e1d034 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x55bc607a imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5ba7a16f imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5fedf652 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x66fa5a41 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6ec0a550 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8b7f6ca6 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8e231fb0 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x911142af imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x95b354de imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa3b51e96 imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd2cd6cbe imx_media_ipu_image_to_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd3651baf imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd3df3120 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf5c8707e imx_media_mbus_fmt_to_ipu_image +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfd3b01a0 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfeaa5fb8 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0692a970 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x07b60c7f amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0f25659c amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2f364705 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43a33ca1 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x475921b0 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4dfe679a amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x50ece37a amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x62c5bb14 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7ef4d0a7 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x802cef6c amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8146542c amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x82bcbb8b codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9f55b384 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa8650bee amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaf21bf32 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb7b50930 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd91d1216 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe1bc5d98 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe449f36d codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xefac3336 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x0ec61710 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7b28c829 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xfd441cbf nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x1b676018 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x281895b8 vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x32df37b9 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x35afa37f vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3d41651e vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x4b3b1db9 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x781dfdf2 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa170f8ae vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xb2dd7b56 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xba9a0bcf vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd4d38f05 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd4fa5d6c mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf372c12d vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x163cc7db target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x22755252 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x89bec842 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf2e11ad3 target_init_cmd +EXPORT_SYMBOL_GPL drivers/tee/tee 0x045f395e tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x04eb3f9e tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x09b6e7f4 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0dd6d36a tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x14d08a23 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1e2740a6 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x254d41f4 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x260ace26 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2b0c7d32 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2f388daf tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3236e8d0 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3a010506 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4585f07d tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4854fbc0 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52b59e57 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5af96b55 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x66898e39 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6909204f tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6ef8e541 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x77b5caa6 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8aeee41c tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x97ae70ab tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9275621 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd803631d tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda6721f8 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x08430f02 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0d5d4fd9 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a713817 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24ea8dc4 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2de32248 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d048919 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3e66f701 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x46204bb4 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x49277206 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4efc9904 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x509a9667 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x714a0ada tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x76c5d469 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1865d63 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0f9bf96 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbec57c52 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcde2a90a tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd25069e9 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd38f1612 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd51a3baa tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd97c973f tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe1832970 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf01e11c5 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfd0b04ff tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/uio/uio 0x15e1e885 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x48c4ea8c __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x848313a4 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf66a7a80 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x57b8b2e0 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x71a1bb93 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0e0ee45f cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x575b10da cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x68db64a5 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7516facc cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x799a0ca1 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7d0a09df cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x824b630e cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd82ff367 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe6af2613 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x13b721e5 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa321b494 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xac300131 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf1a7d2a0 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x06eeb598 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1e8f402a imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7dce573d imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8492f858 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xab19ef12 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc40a6df8 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x13b76b20 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x34128b0e ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x384df795 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3a2553c8 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4fffa6c4 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa64da3a3 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x11f478c0 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2c6e8f93 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3dda41c0 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x48fb2560 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x664b5cd3 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x873a29c8 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x95142993 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x95448dbf u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9e82318b u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb55b6f29 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x335745a3 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x342322cf gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x418411c6 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5495af62 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8367ef8c gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8975f41b gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f37baa6 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9ad40e56 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9eb9a3a7 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb7a2dd57 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2bd3330 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce914fbd gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7044f71 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe239dc3b gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe33c1cc3 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff75112a gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4e1ac6a0 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5b99cd04 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xaabce34c gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc3d715d4 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5236aab4 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8a6b3e5f ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1cb0359f fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23b7b75d fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x36e2393f fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x415ac140 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4581fcd9 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x51290020 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6057412e fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6851ce08 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6d6de797 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6edd4be0 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5de11d9 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaecf0820 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb0c6bd6a fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcc521cee fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd98403fe fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0f182e2 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf5b150a6 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x051eaf7c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1e13ba40 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ae0f5ba rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x51fe49e3 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5fb6f7b2 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d947120 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafb3e794 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcbe78ede rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce6075e3 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf009d7f rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd0b0c746 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdba405a3 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdbade5e3 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdf3dc908 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf55a48e2 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x085a4ac2 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d5c9659 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2499521c usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25a90220 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27b06b5a usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x294b8c26 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3166bd01 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ceffe07 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47a09df7 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a4b52aa usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x512fe428 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54cf18c3 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55c0defd usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6575707c usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ce5aaf5 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77f734fe usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7886cdd0 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d01481b usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b463470 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x934c85ea config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9cdfa03a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e9454cd usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4f14d03 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb36023bd config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1298a3c usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc30a2a0c usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb4ec617 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce022fe8 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0e1cffb usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3fcb98b usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa93ccd2 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x114d6bbc udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x14b75d09 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2a334ce8 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4285b56d udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9af1e09b udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xaae266de udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf0ece73d free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf7584ef2 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfaa8b71c udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03f3e85b usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0559c8cc usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x15249c7e usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18590670 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x231bc02a gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27c53d12 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27defb90 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e139b73 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2eb4323d usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ba07242 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x44c2bd4b usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4f87c3e8 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x514673b9 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x53794f3a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x62202427 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x654f8299 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bb59354 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6d236450 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d6c9381 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac55613b usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4a2ef8e usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3344167 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc80dc956 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd3930611 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1f4fb0f usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe283ab74 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7c8dbcd usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf442a807 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf4929ead usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x515038ed renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x67bf002a ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6c8cd71b ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x01fbb5d4 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0294f6f4 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x02f38a83 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a26901d usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x582e209e ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x68eb32d4 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8290d31b usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbc0852be usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdf1e4dae usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x42737481 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5601ec88 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x600db1e8 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8ab4f84b musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9eb8413d musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xfd4744c5 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x12823eaf usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x41df7add usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6525a455 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6b829d8f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb8234c32 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1d9367ab isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x583336ff tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5861245a tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xa04bee1b tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xaf8002d3 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xb3db5883 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x072cc948 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x178d56c7 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x294a5172 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46a7607e usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b60df1c usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51b8e14e usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ad9fa77 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a4eb317 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8af4ffb5 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c556c10 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d99974f usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba2457fa usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc48cc532 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc992e93f usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xde3b4ca8 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1be2651 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe2199905 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6f3108f usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf0aa928e usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8269fa1 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x08c2f4e1 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xe6a58815 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xac26c8d6 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc9b3e43a tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07f5059b typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1162f38d typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1612d523 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ce83c01 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f665f9b typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26931c4f typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a96b1e7 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2dc7ac19 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e46e457 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2eeb6066 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x318105f0 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ca17f83 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e0e3853 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e64dc71 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f1f5051 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47785217 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48db69a7 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a2c6c25 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f31151a typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d3a68e9 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63b35290 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x65e09bab typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67699a57 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d1729a3 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d697958 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x739a181e typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77fb628f typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e847b93 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82571513 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x831967db typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e426249 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e500d10 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x960ec208 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99675687 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a2d0290 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9aa708c9 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b25cb84 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c5d4b5f typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9da5b48a typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0e32a4e typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa337fbda typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb650c562 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6adf04d typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7d9e2a3 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbae36b9e typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5447ced typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9ffb9b9 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc715d51 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf09c08f typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4e931a2 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5159575 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5322ddd typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd82960a9 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcf88f65 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0c478d1 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1158fea typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe74af60f typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec1b8245 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeea5cb1f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1ab963a typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0952cf43 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x11661e65 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x416154d0 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4eb54d7d ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8c3818b1 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x93b4868b ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb67e539c ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe4ef7abf ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf59d5127 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x04efdbf7 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x165173bf usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1ac1fca7 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2493afa4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x286fc3ad usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x36f2b3e3 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x48c53f33 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8770dfdd usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8781a21f usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9588130a usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd294898 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd0631d24 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf37c6e2b dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1aea9fff vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x296a6e4d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3b0bc34b vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x46b3b105 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7bf99d6d __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7f60b846 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x88a97596 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x93a10d90 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdefd41bd vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xc55b314d vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x1839f89f mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0ea226f5 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x13586bac vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1df6017b vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4312828e vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4befadb0 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x542549e3 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x64e7a696 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68854344 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x700aafeb vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8d29194d vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x957a9478 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9e1d175f vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa7effa6a vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb0e35ca1 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc777f8cf vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf78b15bb vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfc9505af vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0b3409c6 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x138028f3 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb150b849 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfff08861 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0fac0f1d vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x14e7bb7e vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1575b04b vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x21e3ef33 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x47050d0e vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4b2f3f3f vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c36941c vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x56e35087 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6c4d3edb vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8381fed5 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa9415d36 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc66176dc vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xda26d84d vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe5b5ae2e vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf51d13a8 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x20351a48 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x64e2d1bf vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04daec8e vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0db3fc20 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x131d110c vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16b2df08 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x175ab383 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17c2c891 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19112e0c vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x283e3177 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2fd8ef70 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x415dc72c vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46a81819 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49b4b3af vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49d7289e vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ff837f1 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ca19e7c vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f769a17 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x783113f3 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8854049c vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d7a23d1 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9da77169 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7015593 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa796b184 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadc46bb2 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb42aa383 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb83ed23f vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba6803c0 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2120402 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcece1bad vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2388e83 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd39d771b vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4d80977 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd787d3ec vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0b28119 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8912bc2 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeba70439 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed107abf vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed616ae3 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf603c538 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6aebefd vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf841cfa8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x381e706a ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x578c5094 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x98b801e2 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7edb1a6 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xafafc08c ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xda819ffc ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe964adf5 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xcc115463 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6d266ec3 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xdd7931ff fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7f41685d sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x89335dac sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0a554a2a w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x389322b8 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x523b9ac8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x59c3a2fd w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5d474e8b w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6165d0b1 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa8b3fef7 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc2af0caf w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe0930514 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf63d239e w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfbec099f w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x044003d4 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1317dcdd xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2c04dd39 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x665bbd8e xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x94cb9b1e xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4c56b393 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xe3cebaf2 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4c66419a dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc71a49a6 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe8d5c84b dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2737abca nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x50775bef nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x813c6bc4 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8a576f4f nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe80dfd74 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf1826872 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xffaa7622 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00eb29ad nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022627f8 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x024df3bb nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07030704 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08357f3a nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a9c55fa nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ad0ad12 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0be8ae1b nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x104ca85a nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e3940a nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14feb109 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15857610 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aa292f9 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b1101cc nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d57f654 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2096cad7 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21fc834b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x231b6b7c nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23729406 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2687c020 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2714c758 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28dcdbb4 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b61595f nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d0d56e3 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33cdf567 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36b43866 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3738e6fd nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a0f15a2 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b3fc786 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b9821b2 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cdd4ef1 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dff1ad4 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e62dabf nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ebd8aa9 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ecf982a nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x418ef154 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44f11f80 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x452cad3c nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45608a3b nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49bfdb37 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b2a62a6 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c3a5dd8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d172c7a nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aad8301 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d11b9f3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5de012f7 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ffe9c66 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x612f6197 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6379efd5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63a8183d nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678baad0 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x679ce5cd nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68fab911 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d7f863 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69f5452e nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712a0882 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71bd8bc4 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x720d997c nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7214d4ae nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7216f334 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x732e6567 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7371debe put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x747ef982 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x773f33db nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78ef8c4b nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7900c8cf nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79423428 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b15dfaa nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7be2a17b nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fedc7e0 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x839d5547 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x863c9510 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89fbf469 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cb8486a nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x925b99a7 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c025d7 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e6e1d1 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9bd56c nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bb2dfdf nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c52efe3 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa114c09f nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa42fd14c nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4410f02 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa47848d7 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa66d87cf nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa779a5a3 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa854d14c nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9e3a6d8 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa53915d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab6ef62a nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaca2a7e1 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadc71d4d nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb838791d unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb91ece7e nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe5ba245 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1691253 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3bec5f5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb6c8540 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc7f4525 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce221111 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0bebae3 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd19043e4 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd20a5467 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d03890 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2ee9e9f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5affd02 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6e347d6 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda159c89 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda655be3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddd42844 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe019cc22 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe04ba5ac nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe44a3df7 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe465da48 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe51bdabc nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6e9072e nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe77e1d63 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea23a97b nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea99e6cc nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec852cf5 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeede69f1 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefdad9c0 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf13edf76 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15815f7 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf306a101 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf485eab3 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4bf4adc nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5b5e94c nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5e74626 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7be52cb nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8750200 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfafc4d76 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcc53b4c nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcdecff7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcf35c3e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xd11887ff nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06a7621f __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077f7b76 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x083f7aa4 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a3a7c01 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff87c55 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1658a465 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16ea77b2 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18cd411f pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1adcda6f __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c4be6da __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d38c647 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f53a7bf pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x265c5a30 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27431602 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ab418c3 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fdbb0fd __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a661ef3 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c5106c9 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3db6409c pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4646f831 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46fc6753 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4786337c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4854e8de nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ad96289 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e9ea530 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x536dd1b0 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56dd7021 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a88c3de pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b91b49d nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6075e705 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x685b2b4e nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6add276d pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c3d85f7 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d3b2198 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e96cd66 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7385048b pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74db22b6 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77dc36c1 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bb5ce44 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cee9120 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f8453ef __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82a626e9 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8471871c pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85705bd1 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x859edf9f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c68c6a8 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90240287 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9537fc70 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95e1d2d3 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97efa8d4 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2781357 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa35bca1e nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7b42322 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf1f24ea __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb402b3b5 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb59db262 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8b5d99c nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb77f50e nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdf6760a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf011f5f pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfb4cb64 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2f49712 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbf2855c pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21a6d76 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4dd8f85 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9f731c7 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda5eee67 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc3ef138 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe11e4109 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1d0bf30 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe36ca080 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe374a6aa nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeadeea2f nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebf39bb4 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed963c6d pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee93fca7 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee977b95 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1206682 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd0c56df __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1873ef0a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5a46769b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa70728da locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5bed0241 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x76edd8ea nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb180e098 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdee7aaf7 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9e353b3b nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2cd7768f o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x33d5d1b9 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3b61ede8 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x807d3c9f o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8b75376b o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9441677c o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf4661b67 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x29bbe8d1 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x37c7b828 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x49c5aec5 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5fc64e44 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x65d4da20 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeaee4115 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5119f455 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x95d57119 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbc3c19e3 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfcbfd28b ocfs2_plock +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x831d1cb6 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xaa46deac notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x421e78c5 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7e9a7689 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x03a80dac garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x76299761 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x99556b36 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc65783e7 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc7579796 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xd87f941d garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x13352724 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x19e99b98 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x4f0223ef mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8701c8bf mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x919c8f09 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc1855115 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x4178cda2 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xb92f95a9 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0b5185f0 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2a529043 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xc3202417 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0a6fa009 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x593dd691 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x72ac6092 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x72e15fa3 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb47ecd73 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbbf2879b l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbf4f8083 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6150987 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe65dedee l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x0f8ff8f3 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x05f3e85f br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x09c5b25f br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x19fd1366 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1ad50bbd br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1eda087d nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x21ab42de br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2bb9673d br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3eea26a9 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d4a6445 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e6acbf5 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e78228f br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6303d914 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6349e1fa br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x64518ea8 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x89bd2707 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x991f5632 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a79a11b br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa76b1801 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb76bad75 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbda7b8b2 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb074c92 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf6c433c4 br_forward +EXPORT_SYMBOL_GPL net/core/failover 0x47573f0d failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x50d6197b failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xd68b246b failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00fed87c dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10080802 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14c8ec02 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c000b23 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d057e5d dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21dd6a77 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x413e1640 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46443168 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46867770 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x491778b2 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49f1bbf8 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a839a63 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b240b3d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4e0c20 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x650fb856 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ff4ec40 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87a0bf4b dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88ea39e9 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f25029a dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2811dce dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4c7a926 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6d02ff7 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba493998 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbac6806d dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8d3e24f dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb92a866 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd39533de dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe19415af dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf15999b7 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf56d430a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbd3803a dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x29759c10 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x59800a08 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa5c2ba1e dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc649649f dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xda21f49d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xda7844c3 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x012c2585 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01767798 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01b022ff dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x05fc4830 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x13a11ff3 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18c043f9 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19a1d77f dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x226278e2 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x323abe17 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x377870bd dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d4a3601 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d91cdd3 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x478947b7 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c87a31d dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x638c2a48 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x63d75fc7 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69861fcf dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d36e56c dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79ad25a4 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80281299 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82f23e94 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x85cf0b41 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9241d373 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa481f5a1 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa5c755cb dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad3e8812 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb700db93 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2c0fa83 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd64fc4d0 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd78c4720 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdce262eb dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4089fe1 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe46b38e1 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4b0f108 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x75fb35b8 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9aeb934d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa67b81e0 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xab26f4a6 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x378c313f ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x92034e6b ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x147882a9 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1c498f5b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x914c9476 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x017dffe8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x8d9f1c78 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1c1c1fbc inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x25a34e1b inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2d9b4f32 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x40c0a267 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5ee5aa64 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9eea365c inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb1d52142 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xed115432 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xeea8b9ce inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x3f29ddab gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x321af79e ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3cc4eaa1 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46920239 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ab89599 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x546856f6 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x55753f08 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6a036d67 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6da2fce3 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x89eb2cfe ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f4d7cf6 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96163e26 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa9516fc ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbd27225c ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5fbbc6d ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc5d4068 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdeb43aa4 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfb97e92b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x88f1d368 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xe786dbac ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x09899d6a nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa0e8c0fc nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe86819ed nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x07d531ce nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2fa64c26 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x336f833b nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79e38ce4 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9640f488 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa7fd89f5 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf2c7a30c nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb16d264d nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa55173d6 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc9b92f97 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf5f99a64 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8036d18b nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe5df956c nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x255d93da tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3cbfd74a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x59a1f270 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6cee3f7d tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed0096b6 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x072c365f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2504bf24 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2732ad8f setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5dd16caa udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5e589558 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x70c7c46f udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa21333db udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf27ca9cc udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5184bab0 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd498032d esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfb52d7cb esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1a063b6c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa032645b ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xff4cb70c ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x69db89af udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfc492657 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x57d19ea0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x55d977b6 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xba12ca54 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd01c53fb nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x26e46428 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x002bf247 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ccdac81 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1e53c6af nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x29d8d748 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9e6ed8e6 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd05f2919 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd58795d8 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x360a8724 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x96d3f12d nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa0af7945 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfcf81bb6 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5cd2d09f nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbc231640 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0dd94ba7 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e7a895e l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x368d0d94 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d83df06 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3f929cc6 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x480ad199 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e48320a l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fe471d3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5482c376 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x63d2d778 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f2bddb6 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7591ad87 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f0b0953 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b56b093 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x999229bb l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9aa2caee l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd26eddb l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbfd16d6c l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd9435b2f l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef4c5f2e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfd63a8f7 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xaf7463a9 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe42e2be4 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29827746 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a67d803 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x436e80d6 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44c2606e ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45cd8e84 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48201ab1 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x51f8064a ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5f929764 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x61da4019 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c486b4f ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71e419cd ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7d2798e3 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c2e6d9c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc05580b6 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc52a6cd5 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd44b22f5 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd59a701a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd748b8cf ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd773d980 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea3dcc79 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x67252c6b mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8251aeb7 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9de97380 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa7d40fdf mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb7506363 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b6d57f5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30bb4b25 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b76de45 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53645909 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x567a5b9c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x57e1fd4c ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a77faed ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61991364 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x738aecc7 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76504eca ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8042e504 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87da1ca6 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8cef0eaa ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb15b111b ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdbf4379a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe58c11ca ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe61912fe ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecffca47 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf2f9ed92 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5722949d ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x64e4ee85 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x692914f5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfe4b6691 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x15e200bc nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x38496175 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x584ae817 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x62370c35 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdbb16aad nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0055a0c0 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01de5ee9 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c8397c nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0306fc5f nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05b5e7de nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07fb40c3 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x089b6179 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x105c337f nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x152752d8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1565c7a1 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17130874 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17f4f6ee nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1930cd88 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b7cab41 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e5aa3d5 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ffc9c96 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2157ea17 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23c9562c nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x240b3ec4 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2945850e nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a9d2984 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b28b9ea nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bda8e6a nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39cb2516 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c4d6be4 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cf4e219 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d1201d2 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x409d7644 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x420b8589 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42417126 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x452925e1 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4da3aab2 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53d5798b nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e2e0a05 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f84312a nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6222ca5d nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e1c4a2 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x658aca9a nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67251001 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6874e85e nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e229a07 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73ba8593 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7955e28c nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bf2e8bb nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c848fec nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cd3f5b6 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7da5176c nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e50ae71 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84855c10 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x856c4152 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88cc0484 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92c5bfce nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9450c96b nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98f9d9af nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99d9bcf5 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cf48b1d nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9df85fca nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e3ac113 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f8fe160 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1438a0 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad420673 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5bf68fe nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4b1d58 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc7c449c nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca11d245 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd308b51f nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd362fe3d nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd45cfcd0 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd812b83a nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe128ebff nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe290560d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5b09166 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebbf3072 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec30f0a3 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef7311ff nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf71444cc nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa6f632c nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc9021ab nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcf55020 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdb3c9bb __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x38694553 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe62f43b8 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x164ed01f nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x688c8690 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6d48e21c set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x72a6d2c1 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa5186c6c set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb1678559 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbd58f072 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc958dafa nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcace1d46 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcdbbe56e nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xec1bdf78 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x69073e70 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1ed39fea nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x400a1dad nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaaa3b3c6 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc8349601 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3a947553 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb3888f95 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc3c48791 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc65cf5d0 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd417045d nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd881ed0a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xee9b6f77 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xeb38cd30 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4837d29f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2c0544d6 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6c882cc0 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6d779be8 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1afee173 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ed8ae65 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21c20591 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x235afadc nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3916c666 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b920779 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40865c68 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8b44fbbc flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x946cceb5 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xab46cd84 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc1ab08f0 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc485ac71 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd244aba7 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe8dce695 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec818831 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xefa1979c nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1666a23 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03a5c02f nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17f4c7eb nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x18ba7773 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1a2c1085 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f36ead9 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28ea35df nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c572a60 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43eb505f nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x44bee155 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d5ec0bd nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87f1623e nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0522732 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc9603dcd nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc9ccc228 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcfba26ac nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf69929fa nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x02b023f2 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0a17b1c0 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x28100c91 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x469897bc ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x55beaed9 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x59d1ad73 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa02ab182 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb942df1d synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd8413ca nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe442215a ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe7dc0ff6 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0823e934 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0beedf3c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d6f2ae0 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16023111 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1861ed43 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a0f4066 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e468daa nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39673d5c nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a1d4175 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f0034f3 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40e6df7e nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4657a941 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f7950c9 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5958830b nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5985cd37 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e2dbd88 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb1b26e nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x673ff5b7 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6789d9af nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f51a7cd nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f758b98 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x864f20e7 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f8c90d6 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa69e3ff2 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa93483df nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae74edc5 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb278b94d nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5fc4f01 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc61b1499 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2b212cc nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3e7f0ba nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe488804e nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea840f29 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed12da3a nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4ebd6fa nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04420c39 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0e8e4583 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2cb1a90e nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5df42c6c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x85a376f2 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbbc1ab28 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd5837d92 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x783ae1c4 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb2ec3932 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb8d99571 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x21c52506 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe5960002 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x635614d2 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc64e2647 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xdb4707ac nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xeb7aae56 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4a383956 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x847eeea8 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf58055c5 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01207b85 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04fc2005 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f8febf5 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ca6e3fe xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x213da506 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x26a71bfe xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c164cfc xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c75094c xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3da7daa0 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a545aa1 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6193768a xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66cad5d1 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a70e468 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77fecf36 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7960f829 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7aa57f6e xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8fc7e0c6 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x919cefd4 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa413b226 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc73da2e xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc98e83ca xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xedda970f xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff059eeb xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x651d520f xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc523e666 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x15cafb21 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1a178357 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x573ebb0d nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x99dc9ebb nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcc3730f0 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf1e2948d nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x5cc9476c nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xb3855fa0 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0507c40d ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1e34ef5f ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x45e7309c ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x85e087e1 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa435edac ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa4aa57bb __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x0a14466b psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x2405f6ae psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xa3585964 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xabe37864 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x32ac5044 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8856e704 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfade6036 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x09e1491b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x0fd174cc rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1301d52e rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1e0b88c6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x25038a78 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x27e6f00e rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x342e924d rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x34d3c5cf rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x39a5ebeb rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x3bcc7ec7 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x465badc7 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x52873061 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x578317ee rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5bd8d03c rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x69e2f583 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x72d835d7 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x87f9942b rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8b943dce rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x907182ce rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x9f560207 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xaa6a0573 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xaf7a7c10 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb3bc1b83 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb9a1cb0d rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xbc3a2d72 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc12c490f rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd2408ccd rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe4733404 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xffc14adc rds_recv_incoming +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3c79ac48 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x63ae072d pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x04a9d159 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0bd632bc sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x88338f76 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe3094b16 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/smc/smc 0x071915ac smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2a435d59 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xa83f24b4 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xa913807c smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xad2746fc smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbcbb7ed8 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xc3b2c6e9 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xe769d09f smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xf34b48b8 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfdec70ac smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2f72a97e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4b32bc0c svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7602b93a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7c835def gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a1fd6d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d1509f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d1fa4a rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02747c82 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a296d6 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080b6dcf svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082dfbfe rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x085a0ab0 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c81a10 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09082e98 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ab1bc7d xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f658fdd xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10e458ff svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13035efb xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13573d2c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x148b942b svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1933aabd sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x195d6bb6 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae9f878 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b2d18a1 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bacfcd3 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5f5c45 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8eea5f auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6b5978 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f26f7c2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2043ec0b xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221db76c rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x230a3a6e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24035c13 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24479a12 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f086e4 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279f638e rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27a51ae9 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c04be5 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c15a26 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c349b27 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f92917b rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3157d925 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e2e362 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f2c936 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f6d7ae xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33320b61 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3532e772 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3833721a xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa80f08 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab3339c xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d126336 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d68256b xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e415a58 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f1f18b2 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f606be8 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f7d1fa7 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x412dd804 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4534bf8d svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ea8a98 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f98a38 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49312100 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495e9af0 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49971bae rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a705325 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce80090 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x500dbb39 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5047a036 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50aee875 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50d6261a svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5159d796 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519d9379 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5282fb1a rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550d4a5a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556f03df rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556f2a98 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a65ab4 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c7e6ef xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566978a2 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59147f77 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fc5fdd rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ae15735 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b0f80ea sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2ac311 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b8f3b44 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd22821 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf24eee svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d1594c9 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6245374c svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62eaa1d9 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x654d6221 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66adae62 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e88c66 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6945b71e xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b57f08e rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca7262c xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f46d733 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710197ce xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ebb5ee rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72428170 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72aa1741 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75f9b43f xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x763671b2 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ad5016 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a37e2d5 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3af0cd rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a79be36 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1603b1 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f2e3ae7 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x825d433b xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e0ebc0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8552ef6c rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86aae8a3 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87e0f5c2 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ae02fea xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c016b05 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c42ff30 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb2df8f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cdbda36 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d389d51 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e91ee65 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e9a3f5d svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc3c779 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90926608 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9118f18d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92008f32 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92093b1a rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95ea1a12 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f06068 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97bab163 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d0594f7 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e3b9ebe svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea32a27 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8a43b8 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa007cd14 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0dfba7e cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0f3034c rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa17b1ca9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa17d8a73 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2bc7fb0 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4aa0eb7 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5f0470d rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80c2362 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa955912d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb7b6af svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac15ca3f xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadf2913d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb04c73 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb03bc5d6 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb177a52f rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b49e94 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f92288 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3eeab25 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb434a285 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb522e2c3 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb58ec754 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5df4709 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb607b136 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb78d6563 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8094103 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb883724c xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9758057 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba352e1d xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8083f8 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba3df15 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe083503 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5ccb4b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbebf6780 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfaa2c67 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfcb7195 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ea27dc svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23c4f1d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc255cc62 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3c9764d rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc585abae xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6544027 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67d175a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6cd52f8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc79acd87 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b2110e svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc99af58a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbfd08af svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca84fc0 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd56286f xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd866b14 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcef1c85d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf9cd95b xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfbe3b65 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0131180 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0291253 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e7f61f sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f31944 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd367b665 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd39145a7 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3e9ede8 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4329c0c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50dd8d4 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd594d177 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6aaee8b xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6af5c94 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70c4992 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd761cfe4 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8323da1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6af8b0 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdabaa26b rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad7caa7 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0247d9 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc2ed166 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1998430 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a6232b xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe511cc78 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53f7885 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe62aa69b xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74f3510 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe834cca1 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea7b490d svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea8cd74b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeddc7796 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa884f3 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf01979fa __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b10ef9 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1d0d4c9 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf23e6fc4 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b326d4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cf44ee cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f4e0c8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ab0e20 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb989900 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3235da auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc61d88a rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc6c1b1e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd3feaad xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd8b5f4f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdaf39f2 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde4c086 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe1ab916 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/tls/tls 0x53dc8412 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x6d73d53d tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x72f9aac6 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf3513e6d tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x080a60a3 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x099ca422 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a3d2007 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cf9c5a6 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16139024 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x182f324f virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b692164 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1e902947 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25602645 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x33569d19 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x353dcb3f virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45210139 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47c869bc virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52198203 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59e09194 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62374705 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69491e98 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e8bb6d5 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x71315271 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x992187b9 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cd60a28 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4cb4cbc virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8221823 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4a287aa virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4d59043 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb60aee1a virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb957a7ea virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8e6a692 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9df30bb virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb9e045c virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd243784 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdeeb4497 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf555578a virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfac59151 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01765393 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02480e8f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x06a7239b vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c723ae7 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1479c375 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b539afa vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x236c64b0 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42fe8478 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46463d47 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b3d480c vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7671c601 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f7034d9 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x81ebc2fb vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82411aaf vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8440699d vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa33c5a4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaae53265 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb5aa7a12 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf0372628 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd7c0737 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x14358dea cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1eb02c34 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2aba0146 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x32e08403 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3875fc39 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f251485 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x513d37db cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x791d0d8e cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x816da154 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x854a9947 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9fa4e20b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc35fc8e8 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd15c2011 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdda257d9 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe169d487 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe6aff784 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45313bf7 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4acb5f31 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4e019beb ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcec72c5c ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x7e082bf4 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd 0x2d8c0a28 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x344c0ee8 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x4656961a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x467e05bf snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x47ca8339 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x6caf0e3b snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x7fc9b4fa snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x94d6f250 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x980b0b22 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xa49e335d snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xae692ea1 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xc46f8f4e snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xeb29f924 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xf9031753 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xf9ad1727 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xfe1efc25 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8935aceb snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xfb092186 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1ba6ba8a _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x24408636 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2ceb102e snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33a35ef1 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3a89b704 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4250f38c snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x44d7757d snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x54277e86 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x93a39ca6 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9935a024 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb0277c48 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb603bc0f snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x318348b0 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x37b08b4e snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3dd6c247 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4495ba21 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x48191cb9 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6c8637e9 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x720f5db7 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7af3c611 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9dca39fe snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcc7c67e9 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf1a7818e snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb719ebd snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc2b5e30c snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe47d3cf7 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x038cf624 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2419d759 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4ca37291 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x67e414e1 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7c09ce2a amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7e41e3fa amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8bc7b282 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a8d1802 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa92178f0 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xad73b6c5 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbc4ea926 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe5720892 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xeec6f0f7 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x036d2466 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x038244ac snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05d309a6 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0708dd9a hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0742a3e6 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c6a9903 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11527a85 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11c2fab2 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d9ad855 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ea1bbcc snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fb77f99 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20a6af67 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22732252 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x246a84ac snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2edbd267 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31bcb967 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x398a0bc8 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3aaa86fb snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ae4c22c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40f0c6e2 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4445eb2d snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4505c2fa snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45273904 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48137351 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x488615f7 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4abb82de snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b8de5f6 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ba15239 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c377954 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e294324 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5155d99a snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x527f6057 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fdfdfb7 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60bedba7 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62324abb snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x644e1215 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6596a9b9 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x669a4b41 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68ce1ad4 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70c71740 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ee3398 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72b8551c snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75394ff9 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d38d416 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d4dd0c9 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x817caae3 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81f947fd snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c12d23d snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dc7c872 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e9ab553 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f3b4520 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e9697ee snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6897ceb snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa74ab15c snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e1a404 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaabe6399 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb84c134b snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99695c9 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb4b39d0 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc121f324 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1ea518b snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5d3c2df snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc696e06f snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8d1e6ad snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8e86b71 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca50daf0 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb7eb444 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd844287b snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe05b7f7e snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe30e5002 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7e46f16 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed973831 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee61df5b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeff65e48 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf06586c2 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0f4b09e snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf29cea8d snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2cbac18 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf30f0727 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf76b5efb snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf77449c0 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf878bdae snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa7c81ec snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x076cabca snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2d3301d7 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x869a6356 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa8cd6749 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x59404f95 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x660e84d0 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb019f496 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb9dadd23 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbab4cd90 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe90e478f snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01f3fd59 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0402e037 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0860efe2 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08eba51e snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x119f9c2f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11c88086 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x142ab820 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18c52879 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x197fa64b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a01ecdf snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a2c7876 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d1f0826 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d826d0e snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x203b54fa snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24fa4ed1 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x255c395b snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x299ac6a0 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b80803f snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d338723 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x306d8aec snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x327d8ece snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3918b4f5 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x394f6dcb snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39a5d11f is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d9fab59 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42c139af snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4560f693 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4564bff0 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47ed8fe4 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ab598aa _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e730084 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f6a2a7b snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50312ee9 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b8b96c6 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60e5a5d4 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x651d34bd snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6588c541 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66a72848 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67383e9d snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67926af6 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b700a2 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a2abad4 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dbc2868 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7206f7a2 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75a1d2a1 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75e5e673 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76be9ed9 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77082224 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77df01eb azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79f302cc snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0ebbb4 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bb83c5c azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d32cee9 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80711033 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x831e1c35 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8393d4af snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8453712d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x845b4b34 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8593e4d6 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86a41f6a snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8701e1a5 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8849405d snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89503940 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ba294a1 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c25f394 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d017805 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f8458ce snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93cbf450 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x984b1743 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99eb5c05 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c4403b snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3379bb3 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa396d506 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa618b933 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6e1b416 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa953a403 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0dccb04 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb311e2a1 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb39354f6 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb44b003d snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb51c2ee2 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb56cbab1 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5e0da0f snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb69cc472 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7bc6515 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbafd106f snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb37e112 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe764321 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe8ce1cc snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc236a305 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2f55985 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5ee300e query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62cbf1f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6ce0736 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc80dc109 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8157820 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf688b75 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4458047 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4ff114c snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd66c140a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8dbab59 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9cde4d4 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb4d932d snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde799abf snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe22bf3b0 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe373317a snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe386e270 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4110aac snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe64a105a azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7150d01 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9bba331 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeba0a281 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec2dbfb5 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed7bb1bf __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf00b0f28 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1820025 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1954fec snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf30cd552 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3496aec snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3e7175f snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf66aa48d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc953dea snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdddd983 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe613430 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0c153443 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14863e1b snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x197930d9 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31dae699 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x498f0aa7 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x522e1a52 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x586fda31 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70fb5076 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x726bde91 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72f2ecc3 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x760bef6a snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8475e965 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b957cf3 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8e219e36 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9dd96953 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0d0bdb6 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc103cad7 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce289f19 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd1879b08 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe620a52f snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8573e8c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x2af082d9 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xb512eae7 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x032ebdb4 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xbad10073 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2279033f adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3ba17eb2 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x481c6511 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8faa1152 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8fd7600f adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbc846d9f adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdf18505d adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdf994581 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf03af257 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff572e8e adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x2a2ba410 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x072462ea cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6e11e8ef cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3b0711e9 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x74d54b07 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x80907e15 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9d32e89a cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xda4ff9a0 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x11cb8988 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5797da65 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd2da6e60 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x240330f4 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x5bbfc0bf da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe42029f6 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfd197db8 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x30958d42 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf2b132b3 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xe641f47f max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x609ad306 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7507b545 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7aa34b1f max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa4e7b6f8 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x2160f382 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x41d8e4d3 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x70043ab6 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa537b353 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x21911ee5 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x06c9e282 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6d97f117 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xe978a346 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xeec80f6e pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xef0157d3 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x067f6e50 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xca5ea3ca pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1652c5a6 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x46b238c7 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6f6c3ad3 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8d43c239 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x23364319 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x77dfcbd0 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xae4036b5 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe59c131e pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x73448ac4 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x93a59f50 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xaca8b048 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xba55122c rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc3f3597f rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf24ff368 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0e3b2b47 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xadeb37ac rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x9bdf0490 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x933e3bf2 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xb4f38ebf rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3891959c rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4aff90d6 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x52ea2eb4 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x58c23254 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x645be33a rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x678310bc rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6ab50675 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x803a610c rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8182bd76 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x845d7bb6 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbeb62cea rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4f9b4a11 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x627d11e1 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9c0d3d30 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd4ae92b8 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdd4201ba devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x59a30236 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x82a49e73 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6b2b4881 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xca5d4339 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x1f9683fc aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd861c738 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x74544de0 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x0b2913ae wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x57972dc3 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb218ae49 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xbf7e86e9 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe40b6ae8 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2c9af334 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x31170444 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5fda7a5d wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x690dc209 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb6de56fa wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc63482fa wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcaa624ab wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xffe8e111 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x28bd2da3 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6099f4b2 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe43a786d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe8424ef0 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x2949a901 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xce110049 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xca7766d1 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xd224b069 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x243a7ad7 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa82e781d fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x9ccf1462 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x12ee74c7 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1aa442d3 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x26ea9599 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x307814e8 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5349040d asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b846fbd asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x703b2e8e asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8e7e7acf asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8fd85874 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x90113755 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa1a467cc asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa73ef846 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaa92f018 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xca52bf54 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd2e9c0ac asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd9999530 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe0107dce asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe029255e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe177f702 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf92a48a8 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x07c68455 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x08732dbc mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x16598272 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x170c998b mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2fa6850f mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x31d96dcd mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3908595d mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3c1b0369 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x40d426d3 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4f8c7ea5 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5779edc9 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5a3a246a mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6a23df3f mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x76271fa4 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x797f808c mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa9c3338d mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb36d4193 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4272b6a mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc5e51de1 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcbf2bfb9 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe5d98624 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeb132718 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf00497d5 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfbd4bcf2 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x57672db5 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xc84c66b4 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3612255d axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3781a225 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb074ff52 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb781260c axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb915f752 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xda2178c6 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xefbcbb3d g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf0044a98 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfbe45878 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x67f1a85f axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xcd4e9e40 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xa7e1c2b3 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1e92a9e5 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5dfb6a7f meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x71b912a4 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x85f575da meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8acf12c9 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xba5f549b meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcc409472 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xddcdc51c meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5e81298f meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7f7bae7b meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8cd69abe meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9f47896a meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xb0321f51 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf5c9f513 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x6397ad11 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x76d7775e q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x90061c93 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x0d08335b q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe700abc3 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x58dd077e q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0e09d8e6 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2b6fd937 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9a8b82e2 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb23e1435 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd978f242 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe51200a0 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xd7ab9ce7 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xa84af1aa asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xbbf77987 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x029c8eef snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x034113fc snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x035c1c14 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04701fc3 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057f2d09 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x085bfa3c devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e04164 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cbd886a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d44ed23 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e1d44df snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f47ba1d soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10db9b79 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10df74c7 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x114749c4 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14d6fe32 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16389256 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x172c2e4f snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x187eeabc snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ab147b0 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1afe84fc snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b050e52 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b1e6ab3 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bd2bb8d snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e530e6c snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a5be5d snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21c52f58 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21d438a0 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23c647ac snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2433fe92 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x244eab1c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x247a86cd snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24e8b53d snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24fabed0 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2522ebb2 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25ae6315 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x265b3580 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2783eebf snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2877685a snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x296f54d0 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x298636eb snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a23f2d9 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bdb20b4 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d2b9ccb snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dda6fce snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x304a2215 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30892d71 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x345730b7 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x357ad8fb snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35980ff8 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35d215e6 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36873d57 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b4cca63 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8c5af9 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4048621d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x410d4e16 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d1d339 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c73b6c snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44e889fa snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x450947b6 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f710fe snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4721221a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d530e4 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aadb78f snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c292338 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e2a1ea7 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x505db3e9 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50af31d8 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50e403d3 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x535e2b68 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53fa7f73 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x542383ea snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x571aa58f snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x578d8046 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58720d78 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c4d890 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b48fde5 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b82caf7 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60f75d9e snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62139403 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62d8996d snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63c37a4a snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x654e518b dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x663e67eb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6737307e snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67d0d05a snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6825460d snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68840370 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ec9a45 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ae14c0c snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9815b3 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c30fcdb snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c3129e8 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a0108d snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71577dfb snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7199d256 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73940af2 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7720874f snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x772e178a snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x785a6cc6 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1ae80a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8050ce4a snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x868a99f0 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b1a201 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87f21aea snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8825890e snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8928c469 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c3f2b03 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cbb13ba snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cc256ff snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d23efeb snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dfab02b snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e53159 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93414f30 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96bae1bd snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x979c430c snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x981ca39e snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x998af517 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a22e4d9 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c11e90b snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cd72801 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0e5c0b4 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0fb1579 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa125300f snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa12fe9b7 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2c8d735 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa38ead98 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa556425f snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa60ec0d6 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa68202aa snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa882b98f snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8c23b2c snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabc27cfb snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae478c68 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee5a97a snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e2f3b8 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0fb3552 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb105afa7 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4a4033e devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb529cc96 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6a10ca5 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6bb68bf snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7767f55 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c567c5 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc530b84 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc78321e dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc7b850b snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc81689a snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf6f307 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd62f0b9 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbea34ea0 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc06d456b snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc07876b2 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0b66de2 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1d57a11 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc22b9e47 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc257cd98 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c507fe snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc61c8b74 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc74943d0 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc75c1191 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca05cb73 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbbba8e8 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccde8171 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcde098a8 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce2a07ae snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf093344 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0323dcf snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd253e8d5 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4cf0247 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61c4c3c snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd639a273 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7f07af1 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8bb7d08 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8cb9d24 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8e4444e snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9303405 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd94aa4c6 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad43262 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb220131 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd6e0fa2 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde078e23 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf1b2d6a snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe00bcf19 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe00f78db dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe21875ed snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2a0693a snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2ff18bc snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a35a1a snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe698f264 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6b17eb2 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe73aea50 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe88b1c3d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb331040 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefa86cc6 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf322ef10 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf48f7655 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8497537 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf85c0517 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc6b6575 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc9ac21e snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcd1e8c5 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd1150cf snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdf10026 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0e9281a5 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5422fb5c snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x831dde8c snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc08d5abd snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xecac65a9 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x68b4b311 sprd_mcdt_chan_dma_enable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x6c283cec sprd_mcdt_chan_int_enable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xa5fdddd3 sprd_mcdt_chan_read +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xb67dbf49 sprd_mcdt_chan_dma_disable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xdf547b54 sprd_mcdt_free_chan +EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x7d07a4bb tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xe52fe9b9 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0ab89158 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0bba3160 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0e87946a tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2d83458e tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6bb7b418 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9bd68e89 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc406514a tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd63d3aa9 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da tegra30_ahub_allocate_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xd01de23b tegra30_ahub_allocate_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x49a59abc edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x7ad87ffb sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xcbf333f1 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0f6641df line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x379f911c line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a37bd74 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x756edfb8 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7bdf6dfa line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c18c50e line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87d28213 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa1f3bb5b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa65c98fc line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa90a229d line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb14adc92 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8f599d3 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6e8e301 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd82fc82a line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe12d6c26 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe9b42a38 line6_pcm_release +EXPORT_SYMBOL_GPL vmlinux 0x00049236 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x00172a96 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x00244c24 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x00267e14 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x004dac5e pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x00672cf5 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x00690621 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00759170 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0093109b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0095e810 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x009cc0e3 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x009e9824 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x00a595fa ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x00b2c30d class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x00bba1d9 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x00bfb25c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00c5ba83 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00fb302e of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0103b50a key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x01086725 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x010ace83 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x0111fd19 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x01154849 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x012aafe3 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x014e75a9 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x014ff62b acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x017fd3cd pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x01853925 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x019f45f0 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a2c364 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x01a5fa55 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01a9e6b2 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x01bdf01f usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01dee556 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x01e16d47 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e5641e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x01e74224 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x01e8bfc4 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x01ea2220 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x01f3bb8a l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x021f0a23 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x023102b8 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x023205c2 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x0233532e fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024261b1 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0253727d lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x02557104 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x0258e0b8 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x025bce47 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x025bfe9f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x0271216f serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x02738c85 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x0289a8a6 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x0299a625 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x029f8081 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x02a235f6 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x02ac605a __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x02b03ca8 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02db5890 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x02e3e9e1 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x02fc3b4e devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x02fc7dd5 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03214e21 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0334f47a mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x034386ca tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0361d488 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function +EXPORT_SYMBOL_GPL vmlinux 0x037fe607 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x03820a96 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x0385f9a0 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x039007b2 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039a40d0 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x03bf0121 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x03bf85b3 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03cdbbf1 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03de6f13 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x03deb7cb led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x03e89b91 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x03ea4d20 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x03febf3f device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x04018273 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040dd5f9 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x0445c803 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x04631d00 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x0464e4ce securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046a9979 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x04754a17 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x04884d7b perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d6bbf strp_done +EXPORT_SYMBOL_GPL vmlinux 0x048f1799 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x04904cd1 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x04b2ea44 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e45d72 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x04edde63 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x04ef4b93 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x04f9f1ea fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x0500eb84 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x050b57fc ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x050ccc6e devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x051ae08c regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x05208ef3 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0537b2c5 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x057e30cc fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058b1bf1 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x059e6e97 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x05bacdbe tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x05bc74b4 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x05fec109 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0607de44 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x060bc5f2 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x060d3bf9 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x06153f22 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x0619242c pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0619b539 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x061a3c79 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x061e1fa5 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06294a10 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x063c2e33 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0680be9d access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x0687553f xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x069abfbb thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x06b6b3d2 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06b8c435 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x06c9bea7 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06e57a05 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x06f08eb0 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x06f7e229 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x06fda7b8 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0703086b dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x07036c30 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x0703dda7 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x072366a0 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x073271b0 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074840ca phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0755622f iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x075b4835 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x075fd8e2 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x07649667 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x078d9432 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x078f1d32 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x07972b94 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x07a6982b dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d08a08 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x07e3fe35 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x07ecca38 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x07efdda9 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x07faf5a2 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x0801efda devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x08038b77 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x080afa0c __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0814f1b2 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x081547c5 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x0818914e ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x0821c892 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0827ad12 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x08284c03 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x086558ec of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x086d5ef5 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x086efa9c dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0870992f perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x0871c257 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x08727e31 device_move +EXPORT_SYMBOL_GPL vmlinux 0x08765ad2 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08768429 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08895775 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x089f74f9 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08a6aeed sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x08ba8c22 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x08bbf0b1 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x08c3b0eb clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x08c470f5 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d80bce ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x08d8b6ae blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08eab98b firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x08f30d26 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x08f3c9e6 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090950a7 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092e7e98 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x0932ec2e nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x0951e651 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x0983750b device_rename +EXPORT_SYMBOL_GPL vmlinux 0x099ff909 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x09abf8ad fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09cc2558 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09eca000 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x09feebb8 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0a158aa4 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0a1642c2 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x0a1b33bb of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0a1bfd0c sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a2f5ae6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0a3461c5 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a494574 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5c2af3 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x0a5cdeb2 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0a5fd866 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a8055e8 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x0a8bda1c gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x0aa4fa68 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x0ab38136 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ac4d8f8 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0aef9da9 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x0af1a6cd netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af4aa6d kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x0afd23f1 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0c291b tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0b1bf3ce gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b1fc50f usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x0b245038 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b2796b2 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b4cd0e8 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b545a38 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0b5adfb7 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0b5cd695 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0b5ea218 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b6ce031 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x0b7b6919 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b82e80f gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x0b8303c5 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0b8c1016 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x0ba3c53c blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x0bad1a7e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb2a52d tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0bb93f90 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc0e753 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x0bc17427 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x0bc3fd80 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x0bc978f0 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x0bcf8ead tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x0bda3dd8 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0bddf32b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0bea309b acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x0bedd542 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf499fb synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c02c882 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0c0a1daa __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c0a8c58 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x0c0aa85e inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0c20aff5 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3a9459 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c5250e8 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x0c52ee39 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c676b39 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0c6935d6 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x0c71066b proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c916080 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x0c9e6c44 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x0c9fb7a2 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0ca3a42e proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x0cac5d58 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0caf5aac devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x0cafe73e scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc25980 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cdbaa91 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cea1d09 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d12f647 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0d182554 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0d1a3025 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0d1eb2f2 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x0d24a3fe reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d683230 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x0d8195ed inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x0d81e4dd pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x0dbb2326 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dd44ccc noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x0dd6674e led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df0f522 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0df4a008 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x0dfa1b1f pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x0dfc5818 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e029208 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x0e102f7d regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x0e10794b devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e19bbf0 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x0e1f9b12 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0e2e02b3 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0e536325 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x0e5fe1fd meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0ea133da of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x0ea58e1e ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ea77ad5 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x0eaa9687 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x0eb4a4cd __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x0eb5764c rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x0eba10b6 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x0ebbcd77 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0edb3b68 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0edec291 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0ee143b7 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x0ee5fb6f virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f295d14 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x0f3333da perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x0f46c4ca pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0f478566 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x0f6f1bee blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f841b35 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0f9b0623 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x0f9ebdfa rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0fa3c083 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x0fa4ff06 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0facc806 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x0fb1f392 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fb65d98 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc80c0 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x0fcdf1cc dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0ff6795d regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10017a93 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x10067635 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x10072e14 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10256ab2 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x102dd3b8 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x10318f20 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x10418c05 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x10467570 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x105f729b pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x1063179d nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x107b3105 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108a50f4 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x108f6ef9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x1097ee64 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x10ad324f acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x10ca7cdf sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x10cf5893 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fd10d0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x11000bd1 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x11020fba usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x11063f8e __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x110cf657 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x111a5ede __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1131ca61 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x113bcbba dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x113ce967 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x114b96b7 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x1162e127 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x116c4b4c regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x1176a0be fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x117a2dd6 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x118ff845 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x119e98ca fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11ad8a3f blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x11b3a171 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x11c39f72 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x11c7db2d dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x11d6a583 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11e1dc97 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x11e3b69a dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x120443fa kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x120cc27f blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1223e3c3 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x1230917c sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x12407fe8 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x1243593a shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x124a1299 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x125c5b86 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x12604fe1 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x12650fb0 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128245db __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x128f959d ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12ae79b4 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x12b55e82 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x12b80e8f bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x12ba4208 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x12ba866e trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x12d1fc35 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x12dcfec8 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x12e5c85d fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f85e4a devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x12f96103 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131f929f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1321547e regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1326c60d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136adddc trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x137edd47 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1380a775 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x1386cfe2 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x138e99ce devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x13929ca6 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x139884b1 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x13bbd147 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13c30e88 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d57e72 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14160949 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142de2cf kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x14623ee4 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14782915 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x14990f21 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x149bf992 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x14a3c82f spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x14c32e9c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14cdf6f3 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d62e54 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x14e56d1b rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14ff7179 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x1514a085 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x15212850 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x152decaf devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154ee54c da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x156b38d9 user_read +EXPORT_SYMBOL_GPL vmlinux 0x157b8878 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x157e9158 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x158728b7 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x15932bab pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1597bc0f devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x159a357c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x15b30155 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x15b35ca6 devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x15c4da84 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15cc147d fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x15d1bbb8 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x15d5bf37 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x15dbdd94 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x15dd07b7 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x15e3e2f7 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f05de0 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x160db4b3 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16105187 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x161908af of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x16282df9 device_del +EXPORT_SYMBOL_GPL vmlinux 0x1628b701 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x163037d0 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x1635abbe dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x16394cc3 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x164d1009 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1691fd91 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x169b0116 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x16a80062 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x16b5d116 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16cc1600 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x16cdf3d5 input_class +EXPORT_SYMBOL_GPL vmlinux 0x16d1536b ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dad719 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x16e07ead devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x16e08a91 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x16effcc7 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f21759 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x16f3ae07 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x16f783e8 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x16fa2f8d usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x17001e41 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1719e439 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x1727044d sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x172840ca mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x1732cf2f pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x173ecc60 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x175156ce blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x17600958 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176a1580 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x176f8882 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177d1d8c vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1783fa94 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x1792e93e __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x17959432 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x17ace618 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x17b517f4 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x17bd81a7 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x17c56959 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x17d19a7c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x17da3c82 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e5bff7 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x17e80365 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x17ead213 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x17f816a1 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x17fe53b7 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1809659c l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1810883f mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x18168907 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x181edbc0 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x1821c2db ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1835f2ce ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x184f9598 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x185134b0 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x18531546 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186bc6bd crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x186d23a5 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18743fe7 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x188a346a irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x188c173f extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x1893f004 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x18aaebf3 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x18abaa55 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x18c450ae devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x18db296d ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e89f11 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ef05c7 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18f0fef8 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18ff13aa device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x19017cb6 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x190b0968 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x19147487 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x192200ac sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x193021e7 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x1935f7f8 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x193f3d2c __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x194ed78d pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x195c01f9 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x195c8dbf __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x195ead34 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x19647fc1 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x19751973 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x197bbd55 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x197cdd3c raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198863bc gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a76a30 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x19af29ce edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x19b5ad57 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x19b924fe ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19fc1a1a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x1a0715b1 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x1a0d6ca5 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x1a0f3610 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a320f86 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x1a3bee6d ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x1a505714 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x1a575aed irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a684715 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a75611f __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1aaa12a5 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1aacf967 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x1aaeca86 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1ab1d42f iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x1ab54c4a ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1ab9fbf1 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x1acb64e5 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ae4778a xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x1aea1782 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1aeda186 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b0e8168 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b13a639 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x1b19c5f7 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x1b26aa4a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x1b292076 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x1b3b876a of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x1b44e076 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x1b454e16 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4e5c unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1b706c15 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x1b79ba59 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba1a849 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bcdf879 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x1bcea7b2 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x1bdc9c4b firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1beefb4d icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x1c0ad896 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1c0dfb8c regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x1c0ee472 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1c244dd3 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x1c3fdb2b device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1c42df54 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x1c4c9474 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x1c52edde ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c591f1f kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6a4731 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1c6ef015 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x1c809a9a __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c819821 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c9383a0 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x1c96c950 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1c9adba8 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cad75be security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1cb186e0 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cb5ed62 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cb9d707 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x1cbcf53a iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cca1ee5 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x1cd963a7 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1cdc06b0 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x1cdd25c0 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1d0ae376 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x1d107873 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3661d9 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x1d43127e __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x1d432c2f devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x1d50f5c1 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d603e4f gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f4dbd clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1d895517 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1dab8722 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1db56ea2 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x1db98009 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1dc1dd46 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1dc21421 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1de3125e synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfb3b6e usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e10939d mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x1e28ed7e device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1e341667 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e44169c pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e515018 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1e66fc67 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1e6f3fee usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e920cc7 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x1e98abb8 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee8a4d8 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ef2128e kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f0a045b regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f154037 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1f19a5aa shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1f1a93b3 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f26e2ce spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x1f29af30 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f6dcec0 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1f7857cd clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x1f82b0b4 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f837fba genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa01c69 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa3ca15 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x1fa6f4e2 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x1faab7af sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fc07602 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fc82d4b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x1fdb2501 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1fe64c1d pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1ff35f1e acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1fff2ce1 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2012eeb8 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x20142ee4 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x201ea310 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x20280be0 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20404e90 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x204b52a9 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x2050a606 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x20566f67 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x20570e21 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x205b2582 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x205b43e1 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x20733d9b dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20aff903 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x20b30e4d meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x20ba01b5 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x20c8a8e7 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x20cbc83a crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x20d0966e device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x20f46ea5 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fd4c03 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x20fd6d04 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x210daa79 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x210f4ab4 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21290b3e device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x213cf104 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x213f4baf find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x214f9ff0 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x215fcc5b xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x216df332 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x21758f9f clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2183e3a8 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x218454b5 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x2186c031 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x218b15a3 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x218c3376 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2190dc64 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x219ad605 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bb338f genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x21c3a0d0 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21ddf2f8 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x21e451ea netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x21e9299d devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x21f556df iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x21fbc6ca sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2209c41f crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222aa1ae usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x222d5b08 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x22328a07 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x223efe61 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x22515d3c sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x225c803f acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x226dcccf usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x22b110f4 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL vmlinux 0x22b25a84 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x22b66a9e devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x22c148e7 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x22c790c1 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d88c27 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f02c9a device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x22fc5758 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230d3e76 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x231ca776 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235f40e6 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x236b24e9 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a3d84f clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x23ab3872 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x23b427c2 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x23b73e4e da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x23bb25d6 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x23d19d3d regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x23d3474d phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x24088d65 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24306c85 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x243751b3 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x24455d4b imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x2448a883 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x246a03f4 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248906c6 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2489fedb get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bbe6f5 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x24cd83da usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x24d9066b iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e32085 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x24e9d4d1 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f0b6e4 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fb6f50 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24fd0392 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x250e23f7 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x25105167 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x2510a5ea clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x25161f68 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x251d9296 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x251f5d32 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253fe139 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x254c5550 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x255660ba __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2571dd09 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x257e2ed2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25af97e8 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x25b17840 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25f2944a usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x25f961c9 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2602e05f sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x260bc939 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x260e346c crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x26153566 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x26173201 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x2629a8f7 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2634e035 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x26357350 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26408529 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x264091bd irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x2648c309 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26514bd4 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2652e4e4 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x2654315e ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26656188 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x26677f70 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2670776b tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x26725890 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268881e3 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2688c0de dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x26996333 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x26a3f247 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b48bf8 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x26b7b3c8 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d1fa8f usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x26e2cab0 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x26eab13a pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f6afa8 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x26f77739 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x27031c81 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2704b364 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x271d71cd md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x27285bc2 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734bba6 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x273929ef disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x273d5780 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x273e9b65 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x2745a12e meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x2774374d platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x27791c0e udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x277e9c26 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x27812f4a led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x27985296 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x279b7ad6 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x27a03164 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x27dc0463 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27e832ea devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f69f91 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x27f9b237 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x28093b0e vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x280fa6e2 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281abf57 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x282c0f2c dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x282c2a9b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2831401a serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x2833f2c1 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x284288f1 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x28468b5e xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x28526b24 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286c8810 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287d4dd3 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x28810ded serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28c8ba67 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x28d1b877 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x29032826 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x2904d50b regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x2909b741 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x290ecbf7 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291ad438 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x29211ba2 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x2932b732 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x294cc98d of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2965b576 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x29686c4c hisi_format_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2973ab1e kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x297ae9dc devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x2984b0a8 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x2991f06e bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x29971ffa iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x299c41cf phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x29ab53d0 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x29ae777d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29df44fc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x29df7cbc shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x29e0cf1a tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f9e5ef ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x2a13b3ed skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x2a223f61 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a3a13e0 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a43f833 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5fe1b8 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a63944e mmput +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a78f868 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2a88401a acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a97d8e4 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x2a98f6d7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2aa3f4db sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2aaddf7a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2af6cb3b usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2af73784 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b148a54 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2b1f76d1 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2b29bb08 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b2c946d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4efed4 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67c154 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b700533 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b803eda tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x2b901d40 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b942acb devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9b4086 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x2ba010e2 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2ba02975 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba23524 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x2ba2493b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x2bb0bcd9 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2bb12015 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x2bb780fc mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x2bb9a32e nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x2bba8f59 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x2bd1c8ec ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x2bd6432d acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2bda24d7 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2be4f3f3 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2be8aa37 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x2bf75a63 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2c01d564 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2c0737f5 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2c0ca97e pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x2c11bd79 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x2c11d331 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c278e0e devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x2c2d0241 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c38ab8a gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2c4596c4 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c661b4e kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97b6ff __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9f6088 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2cae3319 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2cb7e96a usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cd6534a sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x2ce59fa2 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cee52b9 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x2cf7276f sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2cfb7966 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1529dc devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1f3c77 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d36c2f1 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x2d377a4a __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d47f345 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d651ce9 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6b5118 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2d6d0071 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2d7532b1 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x2d84e4eb power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x2d948e38 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2d964222 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x2d98ee30 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2da64a12 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x2da6f64d of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dd9d134 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2de780d7 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2de9d3b8 get_device +EXPORT_SYMBOL_GPL vmlinux 0x2deacebb page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x2dfa3911 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x2e01f90b devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e06549e skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e085ed0 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e1c586e kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2cf774 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x2e2d6a91 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2e3b6742 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x2e417f99 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2e52d265 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x2e585b15 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2e647449 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x2e65f941 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e7965f4 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x2e864377 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x2eb219cc fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebb7d87 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec4f99f of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ef8d5e0 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x2f011452 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f144cd5 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x2f1abd70 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f232061 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2f2b4461 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f392569 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6dcbd7 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f9305bb devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x2f96f455 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x2fab3a33 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fad3bf6 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd5c275 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x2fd9e377 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x2fdae56b tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x2fe19bb4 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x2fece8bb phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x2fef1223 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3002ce33 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3018df5e pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x301e0bc9 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x30378bf4 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x30402855 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x30421462 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x304ae488 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x304e3794 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x30582ab0 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x305d2671 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306b40a8 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x307d8e45 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x3092bc08 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x30960a4a fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x30d95b3b component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x30d973aa kick_process +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30fb5eab acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310be88f pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311c0cce pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31272354 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x312bd617 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x312e05c8 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x314355a9 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x3149d8ce regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x314b30d9 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x31713ed9 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x31757c7f genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x318238e0 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319c3fdb trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x319d1913 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b09b40 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x31c650e6 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d9726b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x31db4424 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31edecda trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31ef6c4a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x31fc829a xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x31ff7bc5 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x3213e3f4 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322cf3e8 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x32391e44 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3254d82c ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327518dd pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x3298d897 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x3299340a split_page +EXPORT_SYMBOL_GPL vmlinux 0x32a99dd6 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b10f22 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x32b9df8c devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bfedb5 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d9881e tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33078cfa do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x331622be of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x332adce8 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x333fa59e serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336a8807 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x3374cd84 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x33852619 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x33b81437 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x33bddcfa phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x33d233e8 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x33d25025 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x33d283b6 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x33d3cdfb hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x33e232bc locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x33f078ff serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x3408c1d0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x34177097 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x342e01c6 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34589b4a __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x34622de3 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x34697571 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3471885d ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x348e567f gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x3496e00f mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b9b679 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x34bf3e9a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x34bf7d48 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x34d37d15 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x34e2e6cf __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x34e5410c pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x34e799b7 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35237f4c mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35422348 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x354bbe3a tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x3556358a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35621c76 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x356227c1 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg +EXPORT_SYMBOL_GPL vmlinux 0x35642980 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x357603c2 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3586ab7d skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x358d5585 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35aed645 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x35b166d2 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x35b8f3a6 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x35bfc33d inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x35c86db0 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d72f76 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x35e65a77 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x35e74635 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x35fdcc62 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3607dc38 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x363983d2 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x363fefe7 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x365dbb23 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x366781a6 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x367dd948 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x368df7d5 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a1010b pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x36b2779f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x36c94525 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x36cfcb03 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x36dac0e4 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x36e12846 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x36ead786 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x36ef6eee devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x36ef99a2 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x36f55ffb sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x3702cff0 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x37034069 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x370752d8 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x370febef tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x371408e6 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3725b8db fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x3727c8c9 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x37293b38 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x3737cfd5 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x373cac4c of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x373e7e85 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37886e0e crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37b578be vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x37baf88a dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37cc0805 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x37d5cd46 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x37dcb595 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37e4348c dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x37e7f3db dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x37ef37cd edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38059eca blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x380e4846 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x380fba0d clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x3814885b gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3817b774 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x3818ed7e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3830b49f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383b8006 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3848929f dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x384aebfb reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x38503c78 fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x3855d679 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x3861ac4a serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38806852 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x389795c0 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389eeb77 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x38a6eee7 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b8f80d blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38cb8cbd invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x38cbbe87 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x38d271c4 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x38dfed8b meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f33252 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3903f9cd security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x39097e46 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x39235781 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x392a8890 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x393874af regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x3963975a irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39837cbe inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x3988398a cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x3993bf92 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x399ebd50 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e057bd handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x39e7517b mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x39eff507 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x39ffdca8 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x3a065509 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x3a144633 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a254e2b __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x3a2d3faa sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x3a2d4649 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3a43518a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3a496275 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a603352 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x3a73c264 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a808fc3 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3a9ae738 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9d92d4 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x3aa0ef42 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x3aa61b99 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ac07433 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad06724 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ad2ad63 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x3adc19d1 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x3aeb046e pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3af96067 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3aff1383 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x3b17e103 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x3b1f5a26 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x3b26135c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x3b27f500 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x3b2e2ac2 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3b2f2a58 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x3b3814fd spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x3b48602e devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x3b4a41b1 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5e097a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba7e245 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x3bc21c90 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x3bc402a8 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x3bca5f3a mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x3bcc9bf7 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf4949b follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x3bf55f04 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x3bf79aae fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x3c000337 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3c0a64ed shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c11fd50 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3c145c56 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1e207a pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x3c279eb0 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c30da7c fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c3d56de of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x3c3da5e7 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x3c4fa017 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c65e330 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c731d72 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3c7b38f4 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x3c7c49b3 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x3c7cd4b5 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x3c801a7d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x3c8b1391 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x3c8d4ef5 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3c8d9162 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x3ca9b1e7 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x3caf9108 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x3cb14e79 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x3cbe6a39 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd11e40 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd2f308 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cea0176 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x3d10a071 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x3d144856 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3d184c44 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3977b0 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x3d48f41f devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5c1f02 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3d5ed03e desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x3d630603 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3d6a9257 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x3d6edfbe acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d75dc0f alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9b3b8d rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da023e7 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3df8ce44 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3df9236b xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x3dfd655b k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x3e029cb7 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3e1338f2 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x3e1fc0dd spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3e390f61 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x3e3dab31 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x3e4f81b1 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x3e59d133 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3e69e406 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e708c47 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x3e72b6a4 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x3e7e7c1f phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x3e93a598 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e946aad phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x3e9c611e trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eada8e2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3ecb5acb phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ece0e5e iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x3ecffec6 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x3ed0125a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3edfe380 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x3ee6d682 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f067bd1 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x3f08aad7 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x3f10b074 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f2c2e39 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4fa0c4 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3f689382 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3f693ab9 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3f7f5a5f irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb90404 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3fbf3d54 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3fc6f52a skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x3fc99f92 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fcfc8f9 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x3fd126b5 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x3fde95ea sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3fe35ada query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fed022c sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3ff1ebe0 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3ff6d845 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400050cc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4015bc56 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x4016cc3d nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402e34ea regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x4033406a blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x404094f5 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x404f9c24 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x405e1691 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406fd229 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4079c7fb platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x409043d1 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x40925ef1 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409fec13 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x40ac2f6a gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x40b50c92 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x40be3bf0 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x40c49293 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x40cb8c31 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40dea937 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x40e02551 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40e2ad5a init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x40e5c0e6 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x40e8d761 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x40ef8bf0 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f784da fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x410c245e relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x4118a565 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x411b6678 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x411bee6d evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x4121882b thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4121f2e6 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x4126a703 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413963ca tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x413ba21a ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x41429583 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415bc120 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x415bc515 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x416e558c virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x416e6d1d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x417f3d03 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c1cf7b rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x41c25c1d debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x41c47135 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ed56d2 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x41f4e853 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x41f612aa usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421bc789 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x421d3ded of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x421e7d4e fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x4235c9d8 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x423a9640 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x423f9040 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x424929cd uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x42492cb7 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x425968ba thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x425a7bae encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x425ff902 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x427223c3 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429bbef0 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x42a1b024 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x42a3308c clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x42b201d4 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x42bbae82 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x42d942ac msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43068403 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x430a56ab devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x430c5d9a input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x43441370 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x434c02df usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x43548351 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x4356cc36 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x4359dba3 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x435c8f5a __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x435efee5 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4364f0d1 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x436bbc08 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437e75fb tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4385aa1a bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x438d4adc phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439e227a dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b8e51c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x43e7fc04 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x43ef7ca0 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x43f42281 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fa0f00 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44099e0e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x440aa6e3 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442f6e84 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4445f3ce mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4453e778 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x447f4d9f bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a4197a acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44a57ccf of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44bae02a usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44cfd186 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f92e06 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450b5e68 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x450f5516 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x45260209 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x4529ffbe fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x453a3962 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x454dcc71 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x4552cb0c devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45591f3c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456b2dad ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457eaae8 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45af2de2 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x45cf7dc6 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x45df6c50 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x45ec3082 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x45ee47cc nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x45f05f21 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x45fb9f4b k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x45fc4f15 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460aa562 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x460b1fd1 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x460d6884 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x4610c5af vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x463070d5 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x46329dcd unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x46416b6a fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x464f9f71 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468bb860 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4693ea2a ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x46a1314a pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46c012d9 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c763b9 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x46c8a544 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x46cc9882 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x46d158ae spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x46e855cc seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46fb6c01 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x47015845 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x470481e8 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x4718bee4 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4729c51a i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x47370025 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x47396b9d bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x473e5803 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x474f3d7b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x4752bc49 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4755ec24 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x47590424 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x475c0f27 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47806ad8 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x478343a9 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47acab29 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x47b0e762 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x47c32fc1 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x47c73c40 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x47cf498b da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ebd138 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x47fddd0a blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x48177c93 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x48186ef6 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x481e7c41 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x481fd887 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483ff955 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x485ae490 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487c7cd4 user_update +EXPORT_SYMBOL_GPL vmlinux 0x488cd988 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x488d4609 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x48a2c572 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a43d2f fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x48b278b9 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c50058 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x48c6eea4 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x48ce702a dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x48d3deb4 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x48d5ecde bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x48e13fb5 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x48eb1f84 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48fecb01 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x490f8ea3 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492cfb22 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x49424890 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x494b3344 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4956d37f gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x495d18b6 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4964d918 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x49790cb4 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x4981c47a devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b6c5a3 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x49baeb94 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49ce102e add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x49d1ef22 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f6f9d3 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x4a109303 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x4a11f52b crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4a13e5dc rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2a42c8 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4221b1 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a4641fd get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x4a4ed868 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x4a601e9e devres_get +EXPORT_SYMBOL_GPL vmlinux 0x4a60bb66 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a6e1c4d pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x4a715791 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x4a97809c blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4ab5f162 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x4ad1810d regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x4ad837d7 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4ae7450e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x4afdf228 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x4b0958fb ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x4b0e059c platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4b1dec14 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x4b25ad5b pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x4b51681e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b631cce dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x4b6d1a4d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b784525 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x4b789929 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x4b85d5e5 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bad9fa5 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x4baf2242 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x4bc2ef47 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4be4d262 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4c0a4946 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4c13a4f4 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c1ca139 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x4c2347a6 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c3505fb irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c6cf0c5 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x4c744732 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4cad7759 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cbb345a ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x4cc53173 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4cc8c6e1 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4cd2a05a devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4cd30e8a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4cd75750 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x4cfb9b82 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d00d02a sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x4d01df26 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d2a384a mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d2c60bd phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x4d2fa404 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d46ed80 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5efbc0 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6ddb9f pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x4d6f7a59 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d81f6ec bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da07e7d dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x4da1f02c user_describe +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4daea16c divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x4dbabea5 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x4dcd18f9 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x4dd411e4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x4dd468d5 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4def31e4 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x4df65d6c crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e04b775 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e20c013 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x4e33ff30 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4c2a33 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e6263bb pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x4e6beb81 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4e72bfa4 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e964d23 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x4e97aabe fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb32422 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb60c5e dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x4ebc722f tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4edc54a8 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4eeab391 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0340b3 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x4f11b01f cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f5ccc60 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4f69be55 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a3cf9 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7a1ddc phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9e3db6 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x4fa3d27d platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x4fa95f0a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x4faa7996 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x4fc7286e clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x4fc9cf9c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4fcd1355 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5008b043 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5012db1f __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x5025c316 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502d648a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x502e2225 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x502e976c of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x50305837 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x503e357c irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x50421a16 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x50471f62 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5055a327 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x50656cde pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x5074b129 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x507c5b6b gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x507c8d1e pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5086fa45 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509a0a6d wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x509e26d3 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x50a5661c handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x50b25506 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c66a9b regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x50c85361 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x50cc813f crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x50d1e858 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51089ebd pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x510e83c9 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x51293df9 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x512adbb5 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515f9209 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x51674550 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x516c7d48 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x5175e144 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518ef6eb xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x5195b1ec xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x5198776b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51aafc2b devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51b8525d ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x51c05068 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x51cdfe5b gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d69190 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x51dcee4a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x51ea776e dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x51f9f3ce fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x520de0b3 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x520f4931 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x5222c001 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5225cbe2 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x524bd3b7 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x52537557 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x525ab384 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x525f0ccd nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x528a4671 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x528da4da iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5295c146 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5297fcf3 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x529a4d04 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x52a090d3 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52a2151d crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x52aa7014 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b5cdf3 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x52ba7b86 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d609f8 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x52f1e36f dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x52fb3307 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x52fdefd1 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x52feefcc rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x52ff6aed aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53118d14 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5319f6b3 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x531ce064 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x5324770d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532efa5c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x534adacf bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53765bd0 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x537cba25 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x5398ace7 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x53a0dce7 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x53a6c9c4 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x53a98c02 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x53ab9526 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53ecbe4f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x53ecdbb7 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x53f912a5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x540153e2 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x5402bbf4 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x54065dbd devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5409f374 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541ed392 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x54206f2e fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54245b16 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x54252d4e mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5452ddcc i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x5454da4a of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a4f913 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x54a6b922 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x54b835a1 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x54c67d52 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x54c7dfcb devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x54ce13d7 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x54dbf351 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x54e895f5 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x55043cf9 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5505ee09 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5510bbe6 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x551952a2 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x552b12ee lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5530396c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x55306676 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553fc2be devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554728af blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x554a7c6f pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x555bfde2 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x5569d524 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x556a5ee0 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55768a19 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558888e4 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x558f4372 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x55bb9be5 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x55c51936 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d1ed70 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x55e5f431 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f02641 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x55f24e15 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560a9429 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5613cde0 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x5618209b shake_page +EXPORT_SYMBOL_GPL vmlinux 0x5618d333 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x561c8861 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x561f83b5 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5635d5d1 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56553a48 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x56618c56 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x566c878b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x56775439 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x569e1803 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x56a06bed genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x56a3188e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x56ba46c7 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x56bdffe8 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56cf34fa crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x56e1db8d switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56fb183b pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5701cd6d spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x57200776 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x572e72c9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x576504d6 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x5776483b component_del +EXPORT_SYMBOL_GPL vmlinux 0x5777d634 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x577ddd6b ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5781a50b pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x5783f951 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x57881088 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579be3ff pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579fb5cc usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x57a01e8c of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x57a576ba ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x57aa379c blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x57be8b24 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x57d17a2d gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e161fd lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x57e45210 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x57e5bdb2 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x57eb0544 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x57fb4b2e kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x57fb8111 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x580fa235 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5851b99f input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x5862f093 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x586b083d phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5878b54b spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5885dac5 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x588a2e1a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x5895f433 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x589e5a8e posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x58a7c841 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x58ad7f8c genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x58c4a7ec blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x58ca7f71 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x58d652eb fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e439f7 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x58fb06c5 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x58fbc4c2 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x5931eee7 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x593be86a devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59485ff4 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x594a1219 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x594e4c07 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x5955b8e4 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x5958332e netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59877d81 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x59a204cc blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b86a37 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59d5cd9d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x59d9c4e9 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x59e4df5a icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59ed3d42 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f99fb3 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x59fd7e16 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a0ea12d driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a15f687 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5a172ef1 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2a078f l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5a330dee hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x5a35fc8d pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x5a42821e irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x5a474d61 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x5a48b051 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a6569f3 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a76cf33 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x5a7846b9 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a829db1 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ad4703b serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5ad4bd21 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5ad5ed64 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x5aecc8c9 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5af7c7fa udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x5af7f7cf platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5afb12ef i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x5b0abaf8 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5b103cea regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5b16b8eb gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5b219e25 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b277453 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b2b0bc2 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x5b484be2 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x5b48c008 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b5d821f devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x5b63daa6 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x5b69d115 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc24bd7 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd1c98a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bde27dd regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5bfdff29 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x5c0e4c0b crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c14f9aa sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c279872 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c48dbbb nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x5c4ccbd9 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c60ad36 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8251bf free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x5c8375b5 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x5c95e3c4 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x5ca10568 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5ca51319 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad84e8 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb0147e xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5cb1c749 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5cbf458f devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x5cd05b70 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x5ceca858 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf4cfb3 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5d01c5b4 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d1a4864 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x5d1a7966 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x5d22c18e lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x5d23da05 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d313e30 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5d3de56e rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x5d480923 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x5d5297c5 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5d823b00 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8665ca irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dab309d wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x5dde25a2 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5de440d7 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x5dea509c scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x5dfdcd1a dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e2a0a19 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5e384312 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x5e4ee7ee crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e549c1f gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5e5de0b0 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e6cd5be dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e6f7a22 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x5e702ea0 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x5e71341a vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e97ab25 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5e9e0f7e dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x5ea5e75d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ed0f0ef gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x5ed10a81 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x5ed56df8 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5eda0563 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x5ee52ea3 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5eef5be7 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x5ef3169b device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x5ef7ec49 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x5f052a17 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f351d60 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f565bb4 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f909889 device_create +EXPORT_SYMBOL_GPL vmlinux 0x5f912b93 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x5f952351 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x5f98f6e6 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x5fa03e66 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fade0c3 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fc3a034 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x5fc7e85e crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5ffd85d3 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600f4a40 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x600f4d30 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x60196ecf ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x601f3f68 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x60232a01 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x602b01f6 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604ccf6b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x6052fb4b usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x605e2385 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60865d05 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x608bf2e0 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60939e6d crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x6095d166 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60e61f4e __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f6380e __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x60f8c540 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fddcf0 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bbee6 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612fe31f handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x61406dbf fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615c2a9d device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x616a2384 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x61720813 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618bcc3f balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x619191e3 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61999663 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x61a29c62 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x61a54eaf tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b46f4d pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x61b5a797 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x61be7b74 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61cfde25 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x61e30b70 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62158907 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622f3a3b crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x6230090e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62324295 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623cde87 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x623d2bfe devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x623f705c mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x6241772e phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x6241e15f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624e7407 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x6252dc8b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x6255a0a0 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626249e3 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x627ad40c usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x628205f0 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6282c7de iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x629ad79f usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x629f23ab unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c177c4 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x62c7f236 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x62c9d7c6 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x62ebeb86 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x62fa534e wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x62fe66e4 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x63099d92 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x63141350 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x631945e3 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631e774e mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x6327b53b irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x632a59cd fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x6339ce28 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x634b66a5 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6353526d pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x635632ab transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x635d3452 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x63688171 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x63791563 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x6392a2b4 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x63a41db3 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x63a49605 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d0a4d7 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x63d869a5 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x63e6f866 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x63ea60f6 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63ec11c9 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x63fb036b __put_net +EXPORT_SYMBOL_GPL vmlinux 0x641041f0 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x64108fc1 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x641ce675 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x6425a185 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x643c95e8 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x6447900d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6448074f sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x64596d1f fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x646749e9 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6474a685 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64817048 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6494194b of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x6496c46c dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x649912db platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x64a1497e devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64adf417 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x64b1d2f6 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64bba712 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x64cc22ed fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x64cee0e4 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d43f05 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64eb25e0 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f64b4b cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6507a786 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x650b125c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x6511d0cc devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x65473646 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x654e0d8e fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x65840641 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x6588d830 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x65973ea5 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x659c56b8 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x65a58695 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x65b69f78 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65bdd90d icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x65bef00b sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x65c39439 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x65c3f5a1 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x65c4fbd8 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65da565d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x65dd3eda of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661c0863 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6623d3f9 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664d7c3d irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b12f4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x66a54aa1 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x66ab9cdc fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66b9d4cf serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x66bd0f30 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x66bd8d44 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66da638a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x66f547e0 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x66fc200a regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x670d02da __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x670d4c79 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x673556c3 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673866be iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673e8f5c devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x675e4792 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x67636579 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x676bf94b acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x6777e0c9 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x677eb41f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6797505b of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x67a18d5b __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x67abea7f devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x67d4e573 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dfe417 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x67f87112 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x67f92277 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x68190860 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x68190f83 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x682c2915 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683d0017 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x683f63d8 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x685e4e03 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x686a3d3c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a13987 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x68a1eff6 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x68b565dc devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68b596a3 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x68cb2af3 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x68cd3e52 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x68cef079 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x68de46b1 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x68f5ac02 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6902f731 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x69034bb1 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69116d81 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL vmlinux 0x6915d555 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6921a4e8 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x692c427c soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x695e69e7 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x696344ab perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6977ba28 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x697ace3d regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698b1dd6 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x69a2d6f4 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e8af1f perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x69e9258a regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69ffc8d4 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1e36e6 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6a1ec532 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x6a2873c4 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x6a2f5067 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x6a3f1d9a gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a48d14d gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a6575b2 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6a733415 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x6a7f20c0 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a83fe66 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a96431c regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x6a9f1821 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa688d4 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ac4adde gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ac665ef acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ace1529 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6ad7d36d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x6adc824b sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6ae92ba7 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6aee15c4 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x6af311e9 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6b013d5d thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0e400d acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6b11b79c pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x6b15e523 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b186e36 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1e4137 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6b278678 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b35b640 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b522d07 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6b55373f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b604f76 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x6b646d6c udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b802c73 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6b85c0fc rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x6b987bd5 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba9b150 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x6bafd41f scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be7d707 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x6bf037c9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x6bf0684d bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x6bf3d559 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x6bff1b50 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x6c0469e7 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6c0d9336 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x6c17e307 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2a7039 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x6c2c3a4c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c2d3a97 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3bef35 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x6c3f4415 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4e9eb1 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6c578dc8 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5eb707 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c666226 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c8a21ab devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c96d240 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c9a56f7 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6c9b30fb fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca82f88 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cc39c10 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6cc62029 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x6ccaa9bf tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce35795 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x6ce4ef54 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x6ce82837 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x6cf127e4 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x6cf85d16 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6d033c29 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x6d03a8de ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1169be mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6d136991 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x6d16f663 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x6d1f22ae mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d282449 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d438068 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x6d443ac8 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d5071bf crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6d5adf2b ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x6d5b19a7 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d794449 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6d7dbb3b pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d878c0a pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6d8bffd1 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x6d9730af qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x6d99295b usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6db1f4f3 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc3c947 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x6dcaf2b8 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de0be1a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x6deeee69 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x6dfe747b dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6dff01c7 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x6e06bac2 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e11df41 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x6e3168d0 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6e33fadb gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x6e384e0a sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6e3f4e09 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e44a729 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e5005b1 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e7488b0 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e82b1b7 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8ebdb8 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6eac5ff3 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebf25da acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x6ed4cda3 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ed4f6fd fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x6edefee9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ee93abc perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1fb36f simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f233b01 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6f3e26a9 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f509378 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x6f63957e irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6f6d8b03 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x6f73ab1b fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa03a71 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6fa2c222 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6fa5adb5 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x6fa894b9 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6faabf95 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6fba366e nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6fbbaaaa pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd3dddf dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x6fe0ba72 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x6fe1e9ed ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6fffe550 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700730aa xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x70099ab4 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x703b2955 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x704b25c1 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x704cb1e6 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x704de8ec crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x7053f927 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x705cb65a inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7072d9ea debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7076590e __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x70a1b87a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x70af51c9 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70bcbc41 device_register +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d0a765 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x70d458c3 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70ee54c0 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70f4d32c battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710e9f4d fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x7117c1e6 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x7117fcc3 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x711fc7df of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7122586a regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x71309862 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x71357ba1 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x713f95a2 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7144b484 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x71592d54 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7170d6ac device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x71711019 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x717f8def rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71853633 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7194ec84 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719a0a2b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a3015b acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71af9f63 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b457fa __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x71b5afa3 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x71b6a00d dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x71bd0dc5 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71ced928 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x71dfc1eb devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x71e79f98 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x71f239e9 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x7202fca0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x721d1e8d wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x722844d8 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x722e97e0 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x723279b3 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726a7c77 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x729a9437 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x72a441a6 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x72cdf786 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d2f73e mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x72e3caed switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x72eb33aa device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f897f1 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7313f662 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x7327c196 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732c524e crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x732cb513 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x732e985b dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x73398db6 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x733a4b97 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x733e90d6 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x73443f20 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x735c3bd7 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x73771304 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x739c406a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x73a474a7 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b54a2c nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d11c90 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x73d73830 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x73dbbb50 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x73f8ac9c fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x740d2af0 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x741c96fa of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7420208c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x74358aa6 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744adc4a ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7456f8f7 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x74584d4a __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x74692f57 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x746c3d91 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL vmlinux 0x746e3ecb usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x74905ec7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x74934dc3 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x749417ba apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x74a01818 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a5dd60 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c01730 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74cbd58a dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74cdab85 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x74de579a compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x74e4227f pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ebff7a rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7508f926 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x750b7b21 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7516ed7a acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x7518cdd3 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x751e0da0 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x75207bd2 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75239e12 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7528b965 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x753006f7 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x75366fc3 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x7566f9e1 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7581260b gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7583422a irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x758665d8 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x7587986b synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7591b587 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75b44870 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x75ca4fe9 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d968ee cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x75dc0741 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ec0ec7 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x75fc4114 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7603ce1f dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x761cc258 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x762e27be pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x763f6428 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7644357e ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x764a26e3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7663696f extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x7663872d vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x766e8b52 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x769dec6a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76b9a445 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x76bbbebd mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x76c718f6 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x76ce63c4 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d6f0df regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76fba4be gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x770c9664 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771386f0 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x77278019 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773a1609 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x77448a35 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x775712e0 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77662cf9 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x777013a9 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x77868487 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x77912649 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77959074 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7795e2e5 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x77acad1d evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77e06ce4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x77e57032 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77fae092 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x77fd9ae6 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x78053aa0 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x78165bd1 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x784b4cf6 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x784dc859 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x784ece78 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786b2a97 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788d738f debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x789b688a amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78b18c81 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x78be8958 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x78beec68 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x78d36470 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x78dd460a dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78ee504a ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x78f4c194 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7901a36a vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x790e71b1 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x79243462 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x79264017 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x792d6dba of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x793175ea phy_init +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x793b287f uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794c1376 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x795fda5f hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x7963365f acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x79667642 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x7976f505 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x797bf5ea rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7986fddc sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7997bb8e power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7997ec63 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x799ae843 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x799c7217 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x79a8a0ba wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79d5ba31 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x79d69112 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e43d4f tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a085496 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x7a118e4f wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x7a18d78b stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7a29bff9 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x7a2b0b04 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a36119d __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x7a3788fa md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7a3bacd9 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x7a3d181d fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x7a3f5010 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x7a5afa0d dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x7a62ffbd sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7a672569 xen_xlate_map_ballooned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a77965e xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x7a7cf29f crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a83c380 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a927acf public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a964c86 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aa396d3 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7aa98920 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x7aae2306 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7afa35b2 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op +EXPORT_SYMBOL_GPL vmlinux 0x7b23e57a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7b37a2e8 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7b3b9e3a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7b3dd316 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x7b432809 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b60661f devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7c444d extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7b893c0d devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x7b8cc6f6 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b965e99 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc5d0f2 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7bd052f2 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bd3ccdb irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bd4d2dc led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x7bf54a8c of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7c10776b cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x7c17f20d sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x7c1e6362 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c25269d lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2d11b5 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c47d2a7 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x7c546dee spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49fd fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7c872462 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9e67e6 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x7cad1086 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x7cb74f34 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd90293 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ce5dc70 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7ce73ea0 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf0242c pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x7cf358d7 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7cf69046 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0b3132 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7d1786f7 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1e333f cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7d263fba ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7d29ca3f ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d300e71 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7d363a38 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d48c90c tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d4ae10e fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x7d55d474 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7d593a75 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d883e51 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7d8cce14 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7da2753e wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7dad7d16 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7db1ae12 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7db3b604 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x7db510f2 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7db918b4 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x7dc18c46 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddf035e spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7de23fbd register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7e07d56e tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7e09f693 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x7e2f7b79 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4ae4a7 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e788d89 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e988d82 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x7ea153d1 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ea9ce82 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ecbc631 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ed13930 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ed21b55 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7ee24232 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f069b55 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x7f10b9f1 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7f163c24 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7f1654ea sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f1ad0da inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x7f294b6e blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x7f30ac58 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x7f38d371 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7f3acd04 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8260db regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7f8f252a irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7faa2793 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x7fb3bcf7 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fb68313 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7fd1e33f of_css +EXPORT_SYMBOL_GPL vmlinux 0x7fd508da ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7fec80af xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x8026b869 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x80420df8 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x80507612 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x805258f1 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x805262c8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x805358ba nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b6efd5 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80be0b1a bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80c11314 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d00640 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x80d13a03 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ddff95 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x80e8a24b dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x80e9a7c0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x80f64f69 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x80f6f2eb policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x810eefef fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x810f0ddc ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x811806cf device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x814af5b1 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81789ead xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x8180c4a2 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x818d0f71 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b45bb6 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x81ccaa4a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x81d2b9bd nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x81dc69d4 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x81ef9be2 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x8202bc01 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820a832b ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x82104c7d pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x82110080 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x82193d13 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x825e8c56 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x82680a9c __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x826eaf95 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828000c4 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x82856058 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829917a0 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x829921df pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x82a0b179 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x82a7bbda tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b2c1a6 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82be7fc7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x82d003cd rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e76981 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x82ff1a2d devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x832bfd44 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x8331cd97 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x8334bc01 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ff60e start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83632626 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x836ebcbf regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x839952c6 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x83b441de __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8404fbe0 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x84061989 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x840db0f4 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8416b78d switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x841896e8 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x84210746 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842c9c35 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x84567c2e ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x846652b4 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x847ae809 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x847e25a4 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x84922806 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x84956ced tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x849787ff regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84c4c469 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x84de91af kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8500b217 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x85062300 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x85064802 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850b41a0 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85293354 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x853b053d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x854f153f device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855615e6 mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x8556eb39 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x856cd230 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x85867afc bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x858a65cf iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x858e3712 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8590df50 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85b015b4 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x85b577e3 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x85bc8f32 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85c6fb8e dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x85cae4d9 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x85e1fc7e devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f1aadd icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x85f61888 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x85fa55ff register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x85fb8467 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x85ff2fde task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x860166a5 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x86039936 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86295475 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x862bb120 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x86327c3d devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x86394331 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x863bff36 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x864806b5 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8655bd24 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x86566dd3 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869bae10 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x86a812ec dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x86a8acfc gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b1fcd2 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x86bd5d70 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f73429 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86ff5d2c meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x87049858 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87134d9f sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x873e1e45 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x874534d6 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x874e2225 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x875abda4 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x875b6b1c mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x8764571f usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x876859eb get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x878a52a9 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x87a901c8 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87b33267 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x87bec1ab kill_device +EXPORT_SYMBOL_GPL vmlinux 0x87c78037 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87e31547 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x8826092e dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885ae8ad sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x885f65d3 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x886d6af6 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x8881c98b devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888c65f1 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x88a2d124 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b1298a sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88bf81a3 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88cdff15 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x88e6836d crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x88f3cfd6 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88f60786 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x88fbb7dd acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89263874 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c534e of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x89671a1a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8973460e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x897980cf proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x898b5c9d tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89a7939a put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b3d51a devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x89b9aab9 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x89bb0c96 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c0bedf pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89cd8560 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e4b658 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x89eaca3d rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x89ee9381 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x89f4c643 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x89f7873b clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x89fcbd5b dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8a04f7ec led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x8a058add of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8a105e4f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8a16208b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a38a350 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a3fa2ec tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4aabac led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x8a4c233e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a55f332 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x8a595049 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6c4d36 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a854bc1 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x8ab6cafa hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x8ab94ec2 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac2d670 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x8ae02f66 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8ae46db0 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x8aecdfcb of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8aed865f virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x8af6443b sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x8af6e9fe umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x8af73f67 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x8b087def phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x8b09f03d crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x8b102c4a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1b23ac device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8b25f07a of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8b28b2d3 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x8b2cd0c6 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8b436ef1 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x8b503543 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8b504988 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8b627065 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8b64171b tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b68d331 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b9111dd of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8ba8d881 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x8bb00fa6 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8bb886ea rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x8bd3d296 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8bd9011a of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x8bda20b7 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x8bde8496 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c1d637f pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x8c211269 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c571e58 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x8c5fa5ee kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c76d00b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x8c7dfed8 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c97fd0f ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8cb3e109 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cbfa9d7 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x8cc0a455 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce51d53 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x8cf44e74 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x8cffea5c alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x8d0876dd balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d4200a8 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x8d57c649 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d595f91 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x8d5db57b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x8d5ea77d sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x8d659f76 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d83283b screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d9f0001 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dbfa90d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8def9489 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x8df7aae6 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x8dffd1ab __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e2807f1 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x8e3b59ee devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e561f9a spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e81c465 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8e89fbea ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ec4aa8c edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x8ec722cd regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef10ea3 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x8ef6f549 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8effb7b3 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8f059727 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0ae7a0 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8f12bdc0 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x8f17df56 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f25c071 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8f27f3e5 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x8f292583 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8f2b9f49 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f341e48 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8f394166 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate +EXPORT_SYMBOL_GPL vmlinux 0x8f3f9428 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8f447d9a __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f73afe3 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f7d6658 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x8f7e9759 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x8f85c4b2 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8f8a68b1 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x8f8e9da6 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8f94cdf2 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fbb5234 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x8fbc84b3 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc7006f fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x8fd6c201 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x8fdf0b39 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x8fe36172 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffdcbb4 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x8ffddf77 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ffe23fa n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9004fdaa devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x90071776 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x901c4451 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x90333dff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9041e1f8 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x905138ec __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x9071193f ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x90755816 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x907795c0 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x907d394f __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x90928e38 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x909cefd8 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x90a6a2c6 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x90a6b5c5 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90c4475a crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90cf7ddd pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x90d56e09 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90db7dc3 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x90e4d80c clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x90e57615 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x90e9aaea fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x90f37744 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL vmlinux 0x90f67ae1 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x90fa3620 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x91024566 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x9108624f pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x911ebcbf tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9123c496 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x9125d038 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x912f09f0 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x91523969 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x915c9b3f dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x91620f68 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x9170a9b4 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x9192bea7 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91936d46 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919622a1 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x9199746f of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x91a358ce mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x91b482ee platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91bb2a82 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x91c339b2 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d31053 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ebd8f8 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x92011a87 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x9206b202 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x92070820 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924555c4 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x9275e5a0 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x927de73d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x92836152 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x928ab885 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x929fa3be pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92cd177d thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d6999c register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x92d6f844 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e1e8de blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92e9a995 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x92f68f4b i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x92f74e27 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x92fa3e4c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x92fc54c3 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x92fc56ce blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x9302e75f fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930b04e9 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x930fe1fe xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x9321f9b8 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x935e6283 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x936ab15d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x9371f203 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93877468 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x939bcbef dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x93a92706 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93c90c3f vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x93cdfd8b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x93d118f6 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93ddea21 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x93e6b9b8 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x93e9564f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x93f57cbf clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x94191e30 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9432ab37 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943ab585 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944475d4 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x94465507 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x944952d9 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x944f7198 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x945c5dd7 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9478fbb2 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x94826cb9 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x94851db8 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x94908be7 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x94985e07 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a69a97 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x94be2689 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x94e2155c cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9501ddfb add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95196fee devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951e1055 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9527c24a skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x95328292 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x953bdd12 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x953d3760 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x953deac5 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955507a4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ab621 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x95896f4e of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x958aca42 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95b2740b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95ccf438 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x95d2e906 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x95dc205e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x95ded68c crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95eee0b9 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f6fea0 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x95fa272a __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96180433 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x961d6d6d __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x9620f7a8 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x962e2b35 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x962f492d key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x96410557 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x964b5bbe posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x964e9690 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96616a3d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x9663c643 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x96719ca4 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x968a4b68 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x969c8542 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x96a931f8 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x96ce8f02 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x96d06681 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x96e4116b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x96e9502f fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x96f748fa acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x970122dd fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x97016d68 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9715dcef tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x971ccda0 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x97214d72 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x9722f496 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x9724aebe crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x9741144c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x97412dbd __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x974446fd fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x9751f88c adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975baf96 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x975c934a gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x975d0eee ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x9775523f kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x97783ec9 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x97a91f89 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x97ac3b5e mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x97c95930 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x97d0b0f3 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f62d0d gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x97f700a8 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x97fca2cf blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x97fd512c xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x980100c3 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x980500e0 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x981bb8ee ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x982fb168 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98341571 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x9846bcac irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985eead6 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x986d227d __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9879f295 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x987bd029 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98929fff of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x98a872db usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b5776c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x98c073bb __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x98c1700d hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98cae7a9 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x98cd617a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x98e821c6 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fb7919 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x990a11d6 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x99139821 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x991e3239 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x993b8611 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9944ceec pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9947b34f kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x994f1b47 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9961f77c anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99987645 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x999a98f7 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x999abda1 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x99a45473 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x99a66297 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x99a83ade pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x99b76db9 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x99d0672a crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99ef2231 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f3fb9a irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9a04a04d pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x9a0e3dec cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1b4fd2 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x9a23db6b lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a28b1f3 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a4a604e platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9a570f59 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6065e1 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9a62b7d0 ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x9a81242b acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x9a895881 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x9a8a8696 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x9a8c5bad extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9a8d5f9e kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x9a93864e dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x9a9b14e9 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x9ab50ff1 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9abebc54 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad35a40 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x9ae784d3 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afe5ca5 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9b076a1d da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b176794 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x9b2e772f dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x9b337366 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x9b45fd76 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x9b50f9ac icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b69353c subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b7721d0 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9b7863fc _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b97522b __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc56807 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x9bc6f46f perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x9bcd3c9b acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd44207 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x9be29db1 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c030faf ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9c12c2dc set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c376e32 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c3be23e auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9c5320bc ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x9c551a09 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x9c59f9ee iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9c5c08f4 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c849084 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x9c981355 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ca66442 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9cad8e24 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x9cb54927 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cb93162 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9cc4cb11 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc6a871 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce25c2d crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf4bc25 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x9d06cf79 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d10d494 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d1b398b __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d375df3 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x9d683603 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x9d73ba0c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9d8fedff nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9d9697a8 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9dbfbd5b usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x9dc7a64d nf_route +EXPORT_SYMBOL_GPL vmlinux 0x9dce7dd3 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x9dd2ff7a crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x9dddb94b put_device +EXPORT_SYMBOL_GPL vmlinux 0x9dde205a usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x9def5867 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9df4d917 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x9e0cfc0d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x9e10afac rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e11a516 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x9e1960ad input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x9e28a7fb ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47b39c add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x9e65bf32 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x9e6663e3 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x9e6b6ac9 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x9e6d0d7d dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x9e72bd73 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x9e7788bf dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x9e87c2fb ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x9e87f42f pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x9e907198 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x9e9a21aa devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9ea3b89d cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9ea84d02 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x9eb2016f regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x9eba85d7 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed8680d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x9edbefe1 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9edd00d4 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9f0823aa pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x9f1d9210 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x9f239935 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9f300039 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9f37aa90 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x9f45f1fa __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9f497bdc xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f531c89 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f7b1cb6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x9f88f9b6 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9f8f6d9c iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x9f9a2775 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x9fb68f35 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc3349a devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe7acd9 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa00525a9 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xa00d7275 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01c0fb0 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xa02062dd __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa033f029 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xa045eed6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05957a4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xa07102a7 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa07348e1 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xa075d705 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa090ab73 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa0afc2fb ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa0bbf807 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xa0c439ba trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0dfc5da to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa0e3bb95 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xa0e8cd5d sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1136f9f irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xa14d80b2 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa14e7efb devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15faeaa init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa17d13bd max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa18c703b open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xa19189ae ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xa198b42a divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xa1a96dcf devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1bc5e97 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa1c04ae4 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1e8ebf5 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xa1e93d23 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xa1eceed2 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f2860c device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2270a60 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xa2282385 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa2284ff6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xa22882b0 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa2396346 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xa24c6226 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa25932f4 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xa25ca305 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xa269cb59 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27c9838 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa28925f8 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xa28ffc2c memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa2917f66 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL vmlinux 0xa291d06b devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xa294c293 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xa2a6f717 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b62661 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2bb6ece edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa2e11f0d __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2fbd42c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa3003e74 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa3215927 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xa32f7605 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xa3441923 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa351a33a devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa36b696f trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a7f600 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a99d13 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xa3b1fad2 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xa3b2729e usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa3b2f8ca irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3b9602c cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa3bed85b elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xa3d2e22b perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xa3d7d9e0 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e14add irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa3e5ad3f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xa3e8f6ad edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3ee0448 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4038d2b efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xa410140d __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41f4972 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xa43c567d led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa45b05b7 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48894c7 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xa49af8f5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa49bf3e2 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4af0b3e __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4d06e0b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xa4de85b5 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa4e0f5dd crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa4e48a97 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4ed0f1b __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xa4f108c3 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f82599 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xa504431e __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa5067d3d of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xa5086b39 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa51584b1 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa51acf44 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa535ffc1 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa54a0052 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xa55325b9 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xa55b30b9 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa564e208 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa565847c fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xa5729e04 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa5730f64 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa57546f4 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xa57e03f2 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xa580444d serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xa5959bf5 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa599a1ae ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xa5a6bcee dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xa5a914d6 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c82e52 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xa5ceec17 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d92ee7 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xa5db0ebc regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa5deb4af devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa5ed9677 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xa5ee63f2 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fc3e2b i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xa60b5e0f cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa61075fc led_put +EXPORT_SYMBOL_GPL vmlinux 0xa613c31c amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa6220614 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa6254bb8 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa62644ce iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa636c40e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa63cbd7f iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xa641a665 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xa6436f4a device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xa64d619a debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xa6580da5 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa6601856 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xa66cbdfb ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa66cdd08 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa66ec5dd stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa6860f46 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a51937 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa6a66d5e trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b0403c fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b27764 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6b9ea03 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xa6c1071e ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa6cacfbd efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xa6d650f6 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6dc1f99 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e97907 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6fc8c2d device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa7032e05 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70ae671 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa717dad6 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xa726aed8 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa728ff02 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7326f7b __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa7380ecd dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xa759a06e pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xa765d6e7 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xa76e1430 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xa77d2335 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xa77d9478 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78f5b26 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa791c388 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa793eb4b regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa7a83e44 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7ae257b dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xa7b990a2 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7cc159b inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa7e00a14 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xa7e078cf devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xa7ea3e08 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xa7ec7bfe phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xa7f23930 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa7fc0159 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa805946d hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xa82605a6 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xa826539f ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa833de7c devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xa8431d09 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85634c3 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xa85c8134 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xa85fcf19 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xa865efe0 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xa86ddbad fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xa87374f8 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa88402ba gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xa89106ae relay_close +EXPORT_SYMBOL_GPL vmlinux 0xa8995dcc tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa89a765f clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8a0d10f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa8b19933 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xa8bc9058 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa8d440c7 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xa8e9ceb5 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xa8f9fcd0 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa8fef671 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa921a0fc blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93f6823 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa95a26f6 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa968d2b2 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97aa0b7 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9ba6326 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xa9d6e950 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa9dad6ad power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e16384 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f0fe2a device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9fa5914 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xa9fbddfa __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xaa114e2c stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaa122883 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2823c4 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xaa48f9ba pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xaa4974be netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa765a93 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xaa78bd37 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0xaa7eb848 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xaa892aaa is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xaa8e4759 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xaa91af6a cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa9500a1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaae6613 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xaaae758f phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xaaafc219 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xaab6be56 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xaacf2f0a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xaada1298 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xaae2ab9b vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xaaec1706 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xaaf21784 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xab008737 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0984c5 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xab0cd05b pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xab0f1f96 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xab183a6e regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab21c6db mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xab22680e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xab2e0424 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xab381204 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xab3a7c0d gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xab40ee3f nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xab4363ed devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xab7ce3be crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab83a8d7 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xab844bdc xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xab8eb36c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaba32d44 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xabb3f6ff irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xabb9498d metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcbc810 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabf42187 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xac00ebc8 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xac0e16f3 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xac30266b dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xac334e45 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xac3c35d3 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xac51b94e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xac52ba4b regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xac58b527 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xac5c810c rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xac61c983 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xac857611 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xac9020cc __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac9a2ace spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xacacd414 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbd689a tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xacc77728 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd1c897 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xacd3841d imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xace09e12 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xace1a674 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xace32ff2 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xace770ef __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xacfd80fa crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xad0703ed driver_find +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad28c0eb tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3f2f4e devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad535822 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xad54b620 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad606d54 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad872383 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad9bccd1 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xad9c6c2f power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadaf2ed7 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xadbe05ef rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xadc29fee css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xadcf00ac genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xade80f22 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xadf6199f scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae0fd0b6 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae2c67ed watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xae319459 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae4d847d sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xae5fc6f7 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6f329c devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xae7780c0 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xae7a4b6b ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xae7af2b8 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaec7ad6f xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xaef15d45 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xaf0188e4 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf0eb011 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3cbaea __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf50679a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xaf5749e1 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xaf647cba irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xaf6b8b05 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7b567f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xaf7fb388 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xafa24396 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xafad3f93 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb9eae9 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xafc22cdc splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xafc8dda8 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xafcfd28e kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xafd5fb80 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafea5902 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff03716 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb01be59b fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xb025df6d __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03eb227 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb059537b anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xb05b5b17 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb07350cf dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07c2f79 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb09ffb7c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xb0a85b8e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0b53ec5 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ee3cc5 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb10a357b spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb10ae2b2 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10f26b3 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12d086f platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xb13a95c2 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb1469de6 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xb14e025d devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1502f29 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb1791f48 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xb17b15fe devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1b2287d dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xb1b490e0 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c528c4 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xb1d13863 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e7de4d find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb21c1512 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22b0f55 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb26017bd gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xb2652dd5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26bdbcd ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29e3a64 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xb2a3a209 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xb2af781c regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xb2bf5c69 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d26ab3 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xb2da2654 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xb2e243a4 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xb2e29715 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2e30a46 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e7702e skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb2eac88c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb2f1a65e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb3012e0e kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30c7813 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xb30e36d2 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xb314435b iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xb31c6b66 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb3254f61 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb32ee4ee bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xb3692d19 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xb36afc02 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xb376f350 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xb379996f usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xb37ea3c5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb38106ca fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb3a5a533 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb3c6ec2b devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb412a5f0 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb4250edc usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb430b42b ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xb439c861 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb453dd9b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb461d1b3 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb46625cb usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xb466c5fc __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb46c8a15 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xb474f8f5 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb480ea77 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb48f03f6 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb493e184 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b63e76 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e5924c dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f084db component_add +EXPORT_SYMBOL_GPL vmlinux 0xb4feb34b regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50a3e21 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5167b4c call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xb516bf14 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb525618e lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xb527cd45 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb5380b98 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb53d8364 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xb54bc646 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb5651bf3 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xb57759ee register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb57f1f51 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb586e1fc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xb589ad92 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xb5928b0c dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xb5980600 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5b8513c xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb5c115f8 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb5c12ee3 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb5d65704 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xb5e7685a ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb5ec458d of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb5f53562 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb5f84079 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xb5fbb012 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xb5fcf435 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xb606a0dc tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xb60f4b29 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb617c219 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xb618f417 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb629880b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xb6327551 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb659891f wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb65da273 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb6654a9d eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xb6754b1c hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL vmlinux 0xb6765163 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6844904 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb684e722 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xb68b37a6 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6933ba7 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xb6a3d066 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xb6af9dc3 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb6b354a2 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6bf0c00 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6c5d6bb rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xb6ccbfac usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb6d9c289 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb708656d xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xb70e7f81 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb70e9087 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb720d46a nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xb7238a77 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb730a4dd fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb74209a8 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb74883f4 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb77c1bc8 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7873579 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xb79d832d device_add +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c2904e tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb7c4e9d3 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7cdb62b icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xb7d37d23 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xb7f15cec fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fe7613 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb831098c divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb8457482 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb845b005 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb849ef9e ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xb84dde5f fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xb8575939 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xb86e3a42 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xb878b72a blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xb888dc54 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b824af of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8bed20b usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb8c31f58 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xb8c584af usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xb8c8797a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d01573 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xb8d8e122 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb8dc9384 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8ff7983 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb9014daa dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xb909810d devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xb90bb034 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb90fcd0d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb91da6c7 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xb92a5260 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb92b8f45 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xb92dff88 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xb939d0c0 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xb96778b3 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96b8ee0 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb972b6ba dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99e5f05 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xb9a4602c spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xb9a79d2a bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bfb2a8 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d8042d alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xba05242d devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xba0544b6 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b31ee regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2cd0b0 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xba36b1fe da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xba418991 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xba4278a7 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xba9798d6 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xba9890c7 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xba9903b7 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbaa11780 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xbab18092 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacb82ea reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xbaceb7c4 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbad33802 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbadc6e4a regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xbae9e45f dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf3a941 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb02b62d fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xbb06fe3c usb_string +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb255b24 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb35c72a xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb3a8133 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xbb440f0e blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb5637e4 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xbb5b0fa6 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xbb5b4541 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xbb5bfcbd gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xbb657c05 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6cea0a blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6fb2df spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7c26a4 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xbb8af855 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb980876 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xbbaa803b phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xbbae0cdb crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xbbafe7bf irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbbb3f25d dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbc43d7e disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xbbc8a1ae pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xbbc95b0e xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xbbd28e9c __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xbbd861f8 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xbbe0bd65 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbef2962 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xbbf1e976 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xbbf3e725 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc0b49c0 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xbc337aff ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xbc34bd03 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc5fe1de pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc86f39c blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xbc9a5b2d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbc9d936a pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbc9e3483 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbc9faec6 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbcba881d da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd148b3 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbcd601d3 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce0ff48 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xbceef13d ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf39c95 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xbd1a9200 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xbd3a1ae6 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd40fa60 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xbd4c4113 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xbd52c269 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xbd56b6d5 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xbd56ddc0 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd6b2ce7 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd734e4e pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8dd3d1 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbda62fb0 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xbdb1a2c4 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb6a073 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdbb84e5 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xbdbc0348 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xbdbfb280 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xbdc302f9 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xbdcaef72 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xbdcb8e56 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xbdddbf74 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xbde62769 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL vmlinux 0xbde9dd4d blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0xbdf374bc pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbe04f113 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbe430157 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xbe436477 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6ad61f cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put +EXPORT_SYMBOL_GPL vmlinux 0xbe6f8359 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe7c8d07 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe8ee85c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xbe94e531 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9e2697 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec42b9b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbee0da6a devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xbee6830d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xbee86e72 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1fa738 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xbf20341c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbf2bc64e dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xbf2e48c6 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xbf3019bd get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xbf321308 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xbf571cdc __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xbf5869d4 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xbf5ba0ba devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbf871dba perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xbf881651 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbf8b06db sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xbf8e5846 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf9fae9d regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbfa32b0d kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xbfa79f2d devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xbfb2f7d8 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbe7381 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xbfd4b234 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xbfd848e8 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfee36a1 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbffa29be srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbffe62c4 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xbfffc45f ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc0057d31 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc00dc69b tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xc00f930b iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc01271b3 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xc01405ab devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc018e2cb tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xc01e5731 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc02792f3 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc02b27d6 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc02ee7b8 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xc0864633 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xc0908a56 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b6eed6 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xc0ba19d2 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xc0bd1caf acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc0ca5d88 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc0da14ee pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e72eb8 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fa74b3 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc1127847 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc13b2712 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc1402640 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xc14574a5 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc148d04a gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xc14f9746 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1657793 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xc167e682 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xc1711e8d irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17df505 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18c80b9 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc198eb10 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xc1a912a4 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc1bd9758 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc1d5366b dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1de4123 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xc20597d0 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xc207fd0d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc2109559 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc2143b72 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xc2295c6a rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23b8571 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc2437e8c pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xc24710e5 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2661a3a rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc27a2aa8 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc28602d4 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc291c073 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2cc058a iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xc2d24344 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2feb7c1 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xc2ffb013 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc3054fde usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc325ef9b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xc32eb0a2 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc344118d acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xc34a4d12 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0xc3533413 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xc3583882 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc36f3bd6 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc373bbc3 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xc37f8081 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3a2166b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d80a23 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e21d30 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f5212b mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc3f69f2c vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xc3fb8643 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xc403fb98 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xc407ed37 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc4095df8 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc40a36cf dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xc4138f42 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc414b95c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xc41e4ecc pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc426f315 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xc427308f mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42aa7b3 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc4340dbe debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc43c6758 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc453add6 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4741919 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc495b517 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xc497397c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xc49cb617 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a31ba2 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc4bac23a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc4be9399 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xc4ce7010 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc4d5dbe3 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xc4f01c5e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f369b2 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xc5057e68 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc513258c usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5165d6b pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc5169f61 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xc51dde5b __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc520e3c6 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xc53ec551 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xc546ae20 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xc547987f mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xc5505856 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc55a212e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xc55de12b genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5601b12 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57e7c2f regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc5872b54 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5d9a276 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xc5e2f0e3 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xc5fa7a11 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xc60fdca0 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xc624085b irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc62fb6a4 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xc6484fd8 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc6563c54 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65fd951 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc693a5ae fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc6981ff4 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xc69884c7 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a61bf1 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc6a8a6f4 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc6bbe432 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc6c760e6 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc6d79725 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xc6d90de0 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e09adc psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6f44d06 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc715cbbd i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc71f7011 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc72a7616 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xc739545b free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc73cf8f1 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc7438d51 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc74cd42f kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc74d78b3 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xc74ea22c mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xc75553de xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xc75d5a5f alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc77695f9 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xc77cffa1 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc79873ae dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7a8d0 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b91970 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e8a682 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc7f09c4a ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7ff626b fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xc8120e83 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xc81666d4 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xc8219591 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc82606cd of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc833bcee list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xc839a247 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xc840f23d device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xc84d968a ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xc84efd2d of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc8623ac9 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xc865d33c apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc8697c26 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc877d801 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xc87ab7ed device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87ea042 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc889a0a6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc8967309 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xc89b871e crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc89de72c fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xc8a933da xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc8d42cca devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc8dc64c9 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f41fc7 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc9024461 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xc90976ce do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92646e9 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xc9297fb6 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94c83b3 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95f4de1 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xc96014f6 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc976146d irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xc978e4bd tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xc97bd827 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xc97d1fe5 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc99e4c25 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xc9ae8149 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xc9b2dfae dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xc9c2a4e5 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xc9e01241 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xc9e59ab2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f9742f serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca1bf70a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xca302318 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4681e3 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xca6d04f8 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xca7110ae crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca93ed1a pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaab3733 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac78602 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xcac7ef15 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcac927ea devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xcace81ff pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaed5e29 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xcaeda635 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xcaf05954 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf1fe3e dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb18b920 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xcb270e9b dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb36ac65 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcb3e7a79 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xcb4157ab dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xcb4157d7 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb73e6f6 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xcb809f9c device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xcba62d8f fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xcbbb0229 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbebb4e1 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xcbf33961 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcbf7ca71 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xcbff894e efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1aba6a xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xcc1e25c8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xcc27cc2c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xcc2c038a usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc550816 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xcc56e7c9 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xcc6dfe3a perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xcc737dea i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xcc89dc66 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcc90cb86 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc977321 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xcccd6440 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdab7d5 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xccdef6fb syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfa8f56 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xccfc44c6 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xcd0af6b6 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xcd1689fa ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xcd1c6aa7 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd23dbcf __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd264d91 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcd2662e6 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xcd2eeb2c efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd4f2b4b bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xcd4f7bf2 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xcd55745f sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd73bfea devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd8d4675 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd92d7c4 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcda8d21a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd9cdf9 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdef6071 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xce00a30b nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0b54bf crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xce13c549 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xce20c95f ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce3a28f8 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xce482e21 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xce49a5b5 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xce584ecb vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce843512 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xce857f78 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xce858ac5 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xce924ca3 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xcea7319a regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceccea69 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcedeba15 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee32b7f serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xcee4a5a4 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef9435f of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcf0017cf pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xcf0d033c sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xcf10ffc3 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xcf38d620 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xcf4b652e devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xcf4bb9e7 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xcf64b189 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xcf6ccaf3 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcf6f3c29 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xcf78d12d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf845248 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xcf8ee796 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0xcfa5cb9c attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfb49e61 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xcfbaf3d6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc8fda8 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfcd6e5f da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfe83c1f rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xcff9b4f5 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd0070bfc hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xd009e11f devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd00b4d99 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xd01b07a9 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd0284008 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd037106c thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0444755 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07359a6 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xd08b58ba __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a177dd tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0a4639d devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0a7be9e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd0bc6df1 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c6cf09 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d72c77 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dcb61d bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xd0df738a devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd0ee1c68 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0f4685e icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xd0fa1ca8 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd101adf2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd10bbdfc devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd112a14f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xd113d870 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xd11a23a6 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd122434e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd12b175c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd12b669a mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd135db98 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd1394113 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd15680fd synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15b82a6 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd16bb896 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd1787063 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd1838038 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd184dd34 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd18add23 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xd19373f7 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xd1965a68 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xd19a8cdc gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1cb3f50 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d0b7be key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd1f28368 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f77f48 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xd1fedebf pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xd20c0adf root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd22dd58e dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xd231e6f8 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xd232d9e3 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd2413738 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd2437078 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xd2736f1f devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd277fae9 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xd27837d7 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd2810aa3 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd29fc8cb clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2cdc960 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xd2e10e1a msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd2e16f71 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd2e2d238 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xd2ea6fdd tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd2f6e958 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL vmlinux 0xd30d765b ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xd30fe192 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31fc595 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd327d50b switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd344c219 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36e67b3 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xd3744510 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3959ee8 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3ba6c44 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd3d1b46d fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd3d3b08c __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd3d5457d pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd3d6c165 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3edaf45 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3fbee31 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd3fc9f36 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd410bbbd sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xd41544bc ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xd41737db tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd4185354 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42924ad pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43c5485 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4656115 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46ecb04 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd46ecda4 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xd46edb81 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd49a1a04 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd4a9eba2 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbcbd3 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4ce6cd5 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xd4d00626 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e6df32 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd4e79707 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd4f595a9 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd51231b4 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xd5187ebc dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd52bfe1a devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5451216 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd565d6a7 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd568f981 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5692fe1 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd56f2570 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xd572b8c2 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5774e3d virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xd57b790e metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xd57f1e9e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd599f364 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59eefec __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd5a3df58 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd5ab75d4 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd5bb4f38 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xd5beca91 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xd5c50e1c of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xd5c5ae68 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd5d2bce8 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xd5e190ee bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xd5ea638f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xd5ec2c68 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xd5ed841f virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd6020a55 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xd60819f4 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd621994e nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd6306d8e copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0xd631f0ec bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd63d3bfb dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xd6452a31 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65bde2f serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd6663a0c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67afd5e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xd67dac30 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xd68ec0e1 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd69507d3 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xd6b3e323 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd6c65f06 md_run +EXPORT_SYMBOL_GPL vmlinux 0xd6d78232 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6e973f0 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd6ef38d8 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xd6ffd72d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd6ffee81 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xd70070ea pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd7190dbf devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd71f9a46 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd728d7c7 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73acfce sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xd746866b gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xd74c8116 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd760f1b7 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd79447b5 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7b908f0 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL vmlinux 0xd7bfefe4 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7e1c6ef skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd7ec21fa vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xd7f3e6d8 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd82a6609 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xd84a1afd serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85bc31a nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xd86e0017 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8c40b8f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd8c6e5e7 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xd8c8c9e2 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xd8d38895 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8df7bd4 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd8e35fa7 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xd8edd486 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd9200760 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xd92b7cc7 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd92c9e4e skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd9697f56 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xd969c6aa iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9711120 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xd98f871f nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd99bbabe blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xd9aabcff rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd9b3adb5 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9c2b768 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd9d474be wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd9d7c7f4 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ead61f dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd9f7a3e6 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9fc5f2c pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd9fc7b56 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda1694a1 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xda17bcbf pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xda18605c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xda1ea504 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda37ff3d devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda43486a cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xda522591 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xda537f51 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xda542c16 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xda668125 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xda75d2b3 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda8ed665 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac04f60 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdac5ae49 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xdad0c699 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xdadf6c49 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xdaf1d658 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdaf77310 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xdb005a43 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xdb0df695 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xdb14660f debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xdb1548df devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdb165173 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xdb366ea3 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xdb3e4654 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xdb40bd27 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb45308a dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb47cf5f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xdb5248b0 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xdb597322 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6ff06c usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb84b240 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xdb889a8f bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb88b75c clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8dfe7b usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xdba44177 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xdbaccb59 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbebda3d pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdbed5172 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfe92ab virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdc01bfd8 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdc028d55 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc15284e sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xdc173b3f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xdc206bb4 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xdc2098b9 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc23efec kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdc24a370 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc35fa6b dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc46ce06 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xdc4cc0b3 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xdc5eb3bf kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdc64a141 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc65d5aa ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9a35a7 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca5f9f0 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xdca78d71 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xdca8ccfe pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xdcac2d05 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xdcd10609 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xdcd3051a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdcd49191 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xdcd65319 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xdce2095b watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xdceac432 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdd058c1b devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1842ad devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd32469f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3fd642 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xdd45a8fe strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xdd564c86 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xdd573e9a powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd630ebb clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xdd64b101 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd652d26 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xdd67e38c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd70796f ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xdd7d3df2 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd86dda7 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xdd9aa480 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdd9e748a regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xddb5a13a serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xdde4a28f regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xddea09ab attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf65c8a xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde27dcb1 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xde2e5a03 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde30e6c6 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xde6166eb dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xde62a6d2 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde72074e ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde771fff blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xde92a999 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9b2c00 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xdec34ca4 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xdecf4913 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xded6df98 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xdee1bf84 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xdee57381 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xdeea0d97 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xdef07740 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf04f93c pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf186048 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf49a6c5 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf55fd19 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xdf657ad3 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdf79187b extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xdf7f5e72 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xdf816ced crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xdf8f9f2b regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdf998539 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xdfa603f0 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xdfbb254f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xdfbea80a devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd9b7b6 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xdfead874 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xdff2c789 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xdff44a80 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdff778ce kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xdffd313e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe0092061 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe01f5e1d tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe0215f10 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xe022ed9b kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe02d7250 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03413f6 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xe04364ab rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xe045d8cc skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe05d68b1 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06b7c2c fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xe06f8660 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xe07f671e regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe080a6f7 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe0878cd1 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c00977 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe0c532ff irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0e345a2 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe0ea6912 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xe0ee7a01 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xe0f5b976 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xe1066ed0 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe131262f icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xe14933b4 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xe1721e96 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d0666 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe182136c crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe18c9663 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xe19b2502 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xe19f3a65 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa14cb virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0xe1b4c6f3 __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1c89fe3 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xe1ce1bd0 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xe1dbc709 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1eb121f dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe1f69ca1 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe1ffce76 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xe21793ec __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xe2280399 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe23108ba pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2572eb6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xe25a9c6b ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe264bc17 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xe26d0b26 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xe278baaa handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe27d8b97 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe29e2438 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe2a30651 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe2a73b62 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe2a9e553 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xe2b2e256 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c418ab devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe2c92fd9 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xe2c9dad2 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2daa379 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe2e38914 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe2f978e0 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe2f9eea2 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xe3025871 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe30e3578 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xe3119c65 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe316cefe devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe32e300f create_signature +EXPORT_SYMBOL_GPL vmlinux 0xe3309e6c of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe3356b9b meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe33d3eb0 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xe35c0787 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe35dfba7 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe36122f9 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xe36136c4 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xe36290a8 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xe388bc63 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe38943a2 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xe395f516 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a9ed15 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3db3836 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3dc4364 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xe3e294c4 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe3e4afae wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xe404f37f blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41c7a77 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4259f23 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe42edad0 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe430552c iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe449ed59 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe45a783b pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xe45ddc9c mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xe4671c44 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xe46cac8e input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe48a5906 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4956164 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4aa8858 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4bdec8c irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4ce3f5a devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xe4d4ac75 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4da2258 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe5065e38 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe519ff23 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe52aa9a6 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe53d7ac3 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xe54bec95 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xe54cac4f regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe54e0fda sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe55b400a icc_put +EXPORT_SYMBOL_GPL vmlinux 0xe55ee64e mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xe5706cf8 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5a2ed50 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5acf4db tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5d40c4a dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xe5e1faf5 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe5e5b089 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xe5e6c247 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xe5eafeb9 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xe5eca4f8 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe5ed9c0b pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xe6036903 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe614e40f da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xe6241734 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6391ed8 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe63ad996 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe64d0421 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xe659f9cb hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL vmlinux 0xe68ba443 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xe68e298e cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xe6940239 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe6bdde93 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6ccd219 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xe6d058e9 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e41b3f blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe6e8082c msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f3f7d7 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe707c5c7 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xe711649d __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe714bad6 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe71e6111 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe72a3d04 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xe73951f3 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe7423961 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75896ce md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe75ea3f2 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe75f6f23 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7695488 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe785bebf fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe78843f6 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe79a2d97 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xe7a7b88d pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xe7c75b56 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7c9deea class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe7d0f247 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7db0021 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xe7eae626 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7eeed56 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xe7fb8361 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe81b1c1e security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe81d09f6 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xe82cd0b8 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe834ac6f __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85434d1 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe860b54a ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe883d91b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe88c1594 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe88fb7dd genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xe8a7faed devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe8aaaa4c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xe8b787f7 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8d70d91 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xe8d7249e ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe8d77afa ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xe8ee1699 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xe8f8a9e4 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xe90c0728 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9138ca4 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xe92f41e3 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xe9358a98 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9407a7a fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe944c0c5 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe961ec33 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe9764ad3 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe98afbb2 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe9a4bce7 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9acf477 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9b07d8c pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xe9b85a39 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xe9cc8ad8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9e67c9a to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xe9e90a57 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea00a90e tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0e5636 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17e590 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea1bf3d7 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xea313719 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xea33bb98 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea5f529f inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea64fb86 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xea6ff352 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xea7013b8 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xea8f135e of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xeac698c0 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xeac6f91a synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xeacb3923 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xead7d88d __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae330af zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeb03095d crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xeb0393b5 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0xeb084be8 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xeb213f95 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xeb2bbcde rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xeb2bdac4 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xeb41a284 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xeb41d775 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb4267f5 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xeb447330 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb489942 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xeb6908cc rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb85c2d0 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xeb8617e5 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xebaef755 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xebaf950f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xebb1fe22 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xebbd6a2d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xebc3bd42 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd228f0 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebf37beb crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xebf71282 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xec120c5b tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xec2ba6a9 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xec2fb752 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xec368a9f fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xec39c337 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xec45d6e4 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xec4ad7b8 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5a8e55 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xec6b74cc param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xec6d849d ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec98cbb9 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xec9d1fe1 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeca4cb6f devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xeca72f74 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecb8ad69 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc5165e badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xecc5a15b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xecca1436 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xecd6b0ca of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecdd0271 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xece6ffa2 kvm_vcpu_gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xed011086 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xed090cb4 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xed235af1 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed5a236d fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed7f900b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xed81aa2c of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xed9eb3d4 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xeda5d6f0 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xedb41cc3 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xedbdd147 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede784f2 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf2a3c0 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xee11941d virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee51b1cf of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xee568753 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xee59ec1a fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xee5b5cbd spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xee5dae0c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xee63f0b1 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xee64bcfe debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee79a9fb devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xee7e5cae sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xee8508cd edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xee8f35b6 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xee97bb98 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xeeb49bc1 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xeebb5ff2 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee92919 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xeeea81d1 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xeeed2ddd devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xef102912 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL vmlinux 0xef15a6c3 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xef1a9b3e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef38f7be rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef48ed98 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xef50c07e pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef603581 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef8f0e3a fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa65e97 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xefabbf9f ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xefc0b16b ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xefd08850 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xefe5acc7 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xefe9256d nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefecf2a4 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xeff6f5a1 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xeffb5635 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf011702b device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf05647b5 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf061fef2 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf06758bb posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf069cb49 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf08019c1 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xf085f58b cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xf08cfe3b tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf095604a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0b25486 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf0c48ecf usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0e35186 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf0eb0e92 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xf11002b7 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf12be0c3 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1327f80 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xf1416844 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf15e700b blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xf15e73c6 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf1970263 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xf1afd411 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf1d9bba6 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf1e4edbe pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xf1f72c61 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf1fe031b noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xf204f2e4 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf20a14dc elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2125051 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2317695 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xf238d719 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf23b298d of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf23d9e74 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf24415d0 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf24f7303 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf26bfca5 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xf2780ded bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27db48c phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf2922c1b md_start +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29f9c8f devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf2a0edb7 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xf2a73250 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xf2acb871 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2d19058 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL vmlinux 0xf2e4985d ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2fe2edc list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf31131aa __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xf3119112 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3162bcc crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3208eaf xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf324a5ed sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf339dfa5 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xf34b4741 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3504125 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf36e40b4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xf38843d1 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf3a0bf9a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf3aa0ddc subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf3acc723 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xf3aec238 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b55af6 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c57745 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf3cfaa59 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3f89ffa bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3f96b00 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xf402727c call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xf4236fc5 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf42b4478 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf42f6cd4 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf43308cb of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xf4405291 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xf450581b kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xf45a830b evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf45b2886 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xf45e1922 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf494505e pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xf498fc50 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4ab8068 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xf4adacd0 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4afb28f ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4b18489 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xf4b36621 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4bec71d fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xf4c7a438 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf5206837 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xf5256ba2 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xf5358a9c nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xf535eec4 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5410533 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54ed677 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf57fb3e4 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf5947328 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b2e390 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf5b95c0d serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xf5bdfd30 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf5c1fc40 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xf5c39124 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xf5c91712 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xf5cb9511 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xf5dc4a67 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xf5dd77c1 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf5dfc788 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf5dfdcf5 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xf5e8312a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf5e8fb81 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf6035230 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf6211adc devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf63d6915 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xf6471f7d smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf650337c tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xf65b81a3 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xf6626ea9 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6763d86 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf6771268 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xf67bff52 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0xf67ffd9d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf684136b devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6ac65fc hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6af5196 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d358db dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xf6e58f38 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f20bfa mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xf70bb1c6 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xf70ea70e sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xf7142cee fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xf725a89c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf74ecd7f ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf75f6973 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf770545f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf779aa33 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf783038a serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7ac9b61 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c79190 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7df21ed shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xf7f0ea3c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7faec4b page_endio +EXPORT_SYMBOL_GPL vmlinux 0xf82183d2 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf8264a86 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xf82e7eb1 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf841fcfc crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf843291e pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf8492860 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf84e7f94 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf859adcf regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf85a71f1 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf85c62e6 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf87843bb wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8a16e73 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf8ad76ea dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0xf8c26393 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xf8e2c001 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf90b3adf scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf917614e of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xf92e3c97 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf94de1fb fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf96a95b3 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xf97bb996 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf97be887 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xf98229a0 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf988a525 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf9936229 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xf9985be7 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b657de fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xf9c959ff pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xf9d1db4e kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xf9dc581d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf9e39aa9 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xf9f081b6 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9f3459b fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xfa133486 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfa1943a3 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfa1e0aa3 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1fdb66 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa4d1bd5 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa89ce8f devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfa96617e spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xfaa1a984 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabf1605 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfad48c44 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfb114b55 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xfb158875 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb1ec076 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xfb255d66 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb4825f7 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xfb4a43a3 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xfb4f9a61 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb4fa87e trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xfb5309ed stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfb6ad944 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xfb6b3f24 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xfb6ccd51 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7022d9 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xfb8bbe5f udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfbbbb86a dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbce8141 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xfbda16f9 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xfbe12345 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xfbec2686 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfbecaea1 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf1221c inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfbf2d520 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfbf87b8d led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc04d5f3 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xfc058676 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfc099ed2 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xfc0c0b75 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xfc10f60c request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc27d113 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xfc2cdaa8 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfc3a1a03 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc605851 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xfc65cf56 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc685356 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xfc6b1e9e driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xfc8efda7 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xfc935b02 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc6c794 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xfce19a29 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xfce2eb41 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xfce8dc6c __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xfcf680e7 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xfcf70d11 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd230a54 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xfd3c2a1e acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfd4b7c24 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xfd54bafb dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xfd56d0e0 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xfd5f17de netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd782bb8 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xfd82c7b2 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd90b749 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfd971e78 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfda32a51 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xfda653ca devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfdb92d68 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xfdba9ccd of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdd0154d regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfdd79b80 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xfddf65d5 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfde058ca component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe0b2941 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xfe0bf901 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe2821dc pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xfe2caad2 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xfe32b9c8 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3e70c8 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfe407c87 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe466e89 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4a043c __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xfe4cc97c tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfe7c1b07 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe81f739 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe919a4c dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeab070d dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xfeadd5f5 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xfec1327c kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeea2498 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfeff0438 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0b9938 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff20adaf xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xff219950 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xff23ca2a iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff408e07 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff437ea5 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xff47b3d0 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xff4ba4da filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xff57cc0a devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xff5b0e45 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xff5e5cc9 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xff61e1a8 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xff6be3b3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xff74a5cc rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff81615a iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xff8d415c ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xff90b0e6 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbd8100 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xffd4350b virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xffd8d252 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xffdc2ca7 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xffde1d85 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xffe0e77b blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xfffcf9aa xen_remap_vma_range +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IIO_HID EXPORT_SYMBOL 0x16e49b1b hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4213b7a0 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4fbfc84a hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5a9399a8 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9b423335 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa16754a8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa9054fb1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xaf3cb2c8 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb4ae303d hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xca4ab460 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe2d2c06b hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe4f3633f hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0f3d1315 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3c70dbb9 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd0b758e0 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdd23591e hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x28e711b4 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xf1d49908 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x061c6846 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x169a1582 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1950966f mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2fe30926 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x438d914b __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4b895200 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5f245cfb mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6cf46fbe mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8c1d0a3f chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd2c5f978 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd2e31d6a mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd3863d94 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd609ad2a mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe9887038 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0b2b2a7f nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2fb4e851 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x83472763 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9ab6a2cd nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xfce81477 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x0d23c10f pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x20477d75 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2f082ea2 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x353d462f pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5cb12b1f pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x600828bb pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x60204f56 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6628672a pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x762409fa pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7e3d611f pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8def55ac pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x966062a4 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa992f458 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xacae0c7e pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb39ffebe pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb7215852 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb7f596db pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf570eec1 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf8cc4073 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xf6ba2beb sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4196ac57 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4c9dc1b5 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7ea05b50 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x83063c81 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +USB_STORAGE EXPORT_SYMBOL_GPL 0x107b6dc2 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x10eb857e usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x15a9733b usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1d4d5662 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x24049b61 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2d3c14df usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3302addd usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x54046657 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x570f1fc2 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x675ebeb4 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x68242858 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x84ab7e95 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8cdd13f7 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8d384f39 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x91d81215 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaa2ff57c usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xab438495 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb04af1df usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc3af722 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcd8539d9 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcf565926 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd06381fa usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd1d4092e usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe480cd57 fill_inquiry_response drivers/usb/storage/usb-storage diff --git a/debian.master/abi/arm64/generic-64k.compiler b/debian.master/abi/arm64/generic-64k.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/arm64/generic-64k.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/arm64/generic-64k.modules b/debian.master/abi/arm64/generic-64k.modules new file mode 100644 index 00000000000000..a63f9d2766a637 --- /dev/null +++ b/debian.master/abi/arm64/generic-64k.modules @@ -0,0 +1,6866 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_bcm7271 +8250_exar +8250_men_mcb +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +a100u2w +a3d +a53-pll +a7-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +abp060mg +ac97_bus +acard-ahci +acecad +acenic +acp_audio_dma +acpi-als +acpi_configfs +acpi_ipmi +acpi_power_meter +acpi_tad +acpiphp_ibm +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9467 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aes-arm64 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +aes-neon-bs +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_brcm +ahci_ceva +ahci_mtk +ahci_mvebu +ahci_platform +ahci_qoriq +ahci_seattle +ahci_tegra +ahci_xgene +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +al3010 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +allegro +altera-ci +altera-cvp +altera-fpga2sdram +altera-freeze-bridge +altera-hps2fpga +altera-msgdma +altera-pr-ip-core +altera-pr-ip-core-plat +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +am65-cpts +amba-clcd +amba-pl010 +ambakmi +amc6821 +amd +amd-xgbe +amd5536udc_pci +amd8111e +amdgpu +amlogic-gxl-crypto +amlogic_thermal +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx6345 +analogix-anx78xx +analogix_dp +anatop-regulator +ansi_cprng +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-dart +apple-mfi-fastcharge +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar1021_i2c +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm-cmn +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scpi +arm_smc_wdt +arm_smccc_trng +arm_smmuv3_pmu +arm_spe_pmu +armada-37xx-cpufreq +armada-37xx-rwtm-mailbox +armada-8k-cpufreq +armada_37xx_wdt +arp_tables +arpt_mangle +arptable_filter +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +as73211 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atm +atmel +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-i2c +atmel-sha204a +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axg-audio +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x-rsb +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bam_dma +bareudp +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-flexrm-mailbox +bcm-keypad +bcm-pdc-mailbox +bcm-phy-lib +bcm-sba-raid +bcm-sf2 +bcm203x +bcm2711_thermal +bcm2835 +bcm2835-mmal-vchiq +bcm2835-rng +bcm2835-v4l2 +bcm2835_thermal +bcm2835_wdt +bcm3510 +bcm4908_enet +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcm_crypto_spu +bcm_iproc_adc +bcm_iproc_tsc +bcm_vk +bcma +bcma-hcd +bcmsysport +bd6107 +bd71815-regulator +bd71828-regulator +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bd9576-regulator +bd9576_wdt +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b_generic +blake2s_generic +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluefield_edac +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bman-test +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs +bonding +bpa-rs600 +bpa10x +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb-avs-cpufreq +brcmstb-usb-pinmap +brcmstb_nand +brcmstb_thermal +brcmutil +brd +bridge +broadcom +bsd_comp +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence-nand-controller +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sc7180 +camcc-sdm845 +camcc-sm8250 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +cap11xx +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cavium-rng +cavium-rng-vf +cavium_ptp +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccp +ccp-crypto +ccree +ccs +ccs-pll +ccs811 +cctrng +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-pltfrm +cdns-usb-common +cdns3 +cdns3-imx +cdns3-pci-wrap +cdns3-ti +cdnsp-udc-pci +cec +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone-icn6211 +chipone_icn8318 +chipone_icn8505 +chipreg +chnl_net +chromeos_tbmc +chrontel-ch7033 +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cirrus +cirrusfb +clip +clk-axi-clkgen +clk-bcm2711-dvp +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cpu-8996 +clk-cs2000-cp +clk-fsl-flexspi +clk-hi3519 +clk-hi655x +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-rk3568 +clk-rk808 +clk-rpm +clk-rpmh +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-sprd +clk-twl6040 +clk-versaclock5 +clk-wm831x +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobra +coda +coda-vpu +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_example_test +comedi_parport +comedi_pci +comedi_test +comedi_usb +contec_pci_dio +cordic +core +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppc_cpufreq +cpr +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +crc64 +crc7 +crct10dif-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-anx7688 +cros-ec-cec +cros-ec-regulator +cros-ec-sensorhub +cros_ec +cros_ec_accel_legacy +cros_ec_baro +cros_ec_chardev +cros_ec_debugfs +cros_ec_dev +cros_ec_i2c +cros_ec_keyb +cros_ec_lid_angle +cros_ec_light_prox +cros_ec_lightbar +cros_ec_mkbp_proximity +cros_ec_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_typec +cros_ec_vbc +cros_kbd_led_backlight +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +curve25519-generic +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm8250 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dmc520_edac +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-imx8mp +dwc3-keystone +dwc3-meson-g12a +dwc3-of-simple +dwc3-pci +dwc3-qcom +dwc3-xilinx +dwmac-altr-socfpga +dwmac-dwc-qos-eth +dwmac-generic +dwmac-imx +dwmac-intel-plat +dwmac-ipq806x +dwmac-loongson +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dwmac-sun8i +dwmac-visconti +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efct +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-brcm +ehci-fsl +ehci-platform +ehset +einj +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +emxx_udc +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +envelope-detector +epic100 +eql +erofs +error +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-qcom-spmi-misc +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +fan53880 +farsync +fastrpc +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +ffa-module +fieldbus_dev +fintek-cir +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fixed +fjes +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +fscache +fsi-core +fsi-master-aspeed +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dpaa2-eth +fsl-dpaa2-ptp +fsl-dpaa2-switch +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mc-dpio +fsl-mph-dr-of +fsl-qdma +fsl_dpa +fsl_ifc_nand +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +fsp-3y +ftdi-elan +ftdi_sio +ftl +ftm-quaddec +ftsteutates +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gateworks-gsc +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gcc-apq8084 +gcc-ipq4019 +gcc-ipq6018 +gcc-ipq806x +gcc-ipq8074 +gcc-mdm9607 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8939 +gcc-msm8953 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gdmtty +gdmulte +ge2d +gemini +gen_probe +generic +generic-adc-battery +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-ce +gianfar_driver +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpi +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd70528 +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-brcmstb +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-eic-sprd +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hisi +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-mlxbf +gpio-mlxbf2 +gpio-moxtet +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-pmic-eic-sprd +gpio-raspberrypi-exp +gpio-rcar +gpio-rdc321x +gpio-regmap +gpio-regulator +gpio-rockchip +gpio-sama5d2-piobu +gpio-siox +gpio-sl28cpld +gpio-sprd +gpio-syscon +gpio-thunderx +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-visconti +gpio-wcd934x +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xgene-sb +gpio-xgs-iproc +gpio-xlp +gpio-xra1403 +gpio-zynq +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpmi-nand +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc-hwmon +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hantro-vpu +hanwang +hbmc-am654 +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd3ss3220 +hd44780 +hd44780_common +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi556 +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421-spmi-pmic +hi6421v530-regulator +hi6421v600-irq +hi6421v600-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hibmc-drm +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-google-hammer +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_powerkey +hisi_qm +hisi_sas_main +hisi_sas_v1_hw +hisi_sas_v2_hw +hisi_sas_v3_hw +hisi_sec +hisi_sec2 +hisi_thermal +hisi_zip +hix5hd2_gmac +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hnae +hnae3 +hns-roce-hw-v1 +hns-roce-hw-v2 +hns3 +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_sock +hv_storvsc +hv_utils +hv_vmbus +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +hyperv-keyboard +hyperv_drm +hyperv_fb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-altera +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-cp2615 +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-hid-of +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mlxbf +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-cci +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-scmi +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-synquacer +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-thunderx +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xgene-slimpro +i2c-xiic +i2c-xlp9xx +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-bcm-voter +icc-osm-l3 +icc-rpmh +icc-smd-rpm +ice +ice40-spi +icp +icp10100 +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imon +imon_raw +ims-pcu +imx-audio-rpmsg +imx-bus +imx-common +imx-cpufreq-dt +imx-dcss +imx-dma +imx-dsp +imx-interconnect +imx-mailbox +imx-media-common +imx-pcm-dma +imx-pcm-rpmsg +imx-pxp +imx-sdma +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx2_wdt +imx319 +imx334 +imx335 +imx355 +imx412 +imx6q-cpufreq +imx6ul_tsc +imx7-media-csi +imx7-mipi-csis +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int51x1 +intel-m10-bmc +intel-m10-bmc-hwmon +intel-nand-controller +intel-qep +intel-xway +intel_pmt +intel_th +intel_th_acpi +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io-domain +io_edgeport +io_ti +ionic +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipa +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc-rng200 +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +irq-pruss-intc +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +ite-it66121 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3_bandgap +k3dma +kafs +kalmia +kaweth +kbtab +kcm +kcomedilib +ke_counter +keembay-ocs-aes +keembay-ocs-hcu +keembay_wdt +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khadas-mcu +khadas_mcu_fan +kheaders +kirin-drm +kl5kusb105 +kmb-drm +kmem +kmx61 +kobil_sct +komeda +kpss-xcc +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +layerscape_edac_mod +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +led_bl +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lm3692x +leds-lm3697 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-rt4505 +leds-rt8515 +leds-sc27xx-bltc +leds-sgm3140 +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lima +lineage-pem +linear +linkstation-poweroff +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +liteuart +litex_liteeth +litex_soc_ctrl +lkkbd +ll_temac +llc +llc2 +llcc-qcom +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmh +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lochnagar-hwmon +lochnagar-regulator +lockd +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp873x-regulator +lp8755 +lp87565 +lp87565-regulator +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpass-gfm-sm8250 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-codec +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +macb +macb_pci +machxo2-spi +macmodes +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mailbox-test +mailbox-xgene-slimpro +mali-dp +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell-88x2222 +marvell-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9286 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mceusb +mchp23k256 +mchp48l640 +mcp16502 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdio-octeon +mdio-thunder +mdio-xgene +mdt_loader +me4000 +me_daq +mediatek +mediatek-cpufreq +mediatek-cpufreq-hw +mediatek-drm +mediatek-drm-hdmi +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gx-mmc +meson-gxl +meson-ir +meson-ir-tx +meson-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +microread +microread_i2c +microtek +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxbf-bootctl +mlxbf-pmc +mlxbf-tmfifo +mlxbf_gige +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_hsq +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8994 +mmcc-msm8996 +mmcc-msm8998 +mmcc-sdm660 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp5416 +mp8859 +mp886x +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_felix +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi001 +msi2500 +msm +msp3400 +mspro_block +mss-sc7180 +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359-rt1019-rt5682 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-devapc +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-rng +mtk-sd +mtk-smi +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc-jpeg-encdec +mxc4005 +mxc6255 +mxc_nand +mxc_w1 +mxcmmc +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n5pf +n_gsm +n_hdlc +nand +nandcore +nandsim +national +natsemi +nau7802 +navman +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +netsec +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_routes_test +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm750-pwm-fan +nps_enet +ns +ns-thermal +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nuvoton-cir +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-sc27xx-efuse +nvmem_meson_mx_efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +octeontx-cpt +octeontx-cptvf +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +ohci-platform +omap-mailbox +omap-rng +omap4-keypad +omap_hwspinlock +omfs +omninet +onenand +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9282 +ov9640 +ov9650 +ov9734 +overlay +owl-dma +owl-emac +owl-mmc +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +panfrost +parade-ps8622 +parade-ps8640 +parkbd +parman +parport +parport_ax88796 +parser_trx +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-rockchip-host +pcie-tegra194 +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia_core +pcmcia_rsrc +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcs-lynx +pcs_xpcs +pcwd_pci +pcwd_usb +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf8x00-regulator +pfuze100-regulator +phantom +phonet +phram +phy-am654-serdes +phy-armada38x-comphy +phy-bcm-kona-usb2 +phy-bcm-ns-usb2 +phy-bcm-ns-usb3 +phy-bcm-ns2-usbdrd +phy-bcm-sr-pcie +phy-bcm-sr-usb +phy-berlin-sata +phy-berlin-usb +phy-brcm-usb-dvr +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-cpcap-usb +phy-exynos-usb2 +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-gmii-sel +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi3670-usb3 +phy-hi6220-usb +phy-hisi-inno-usb2 +phy-histb-combphy +phy-intel-keembay-emmc +phy-intel-keembay-usb +phy-isp1301 +phy-j721e-wiz +phy-mapphone-mdm6600 +phy-meson-axg-mipi-dphy +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-mvebu-cp110-utmi +phy-ocelot-serdes +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq4019-usb +phy-qcom-ipq806x-sata +phy-qcom-ipq806x-usb +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-snps-femto-v2 +phy-qcom-usb-hs +phy-qcom-usb-hs-28nm +phy-qcom-usb-hsic +phy-qcom-usb-ss +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-dphy-rx0 +phy-rockchip-emmc +phy-rockchip-inno-csidphy +phy-rockchip-inno-dsidphy +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-sun4i-usb +phy-sun50i-usb3 +phy-sun6i-mipi-dphy +phy-tahvo +phy-tegra-usb +phy-tegra-xusb +phy-tegra194-p2u +phy-tusb1210 +phy-zynqmp +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-ipq4019 +pinctrl-ipq6018 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-mdm9615 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc8180x +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8350 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +platform_mhu +platform_profile +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305-neon +poly1305_generic +port100 +powermate +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +pru_rproc +pruss +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +ptp-qoriq +ptp_clockmatrix +ptp_dte +ptp_idt82p33 +ptp_ines +ptp_kvm +ptp_ocp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-bcm-iproc +pwm-bcm2835 +pwm-beeper +pwm-berlin +pwm-brcmstb +pwm-cros-ec +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-iqs620a +pwm-ir-tx +pwm-keembay +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-ntxec +pwm-pca9685 +pwm-raspberrypi-poe +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-sl28cpld +pwm-sprd +pwm-sun4i +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm-visconti +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +q6sstop-qcs404 +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-apcs-ipc-mailbox +qcom-camss +qcom-coincell +qcom-cpufreq-hw +qcom-cpufreq-nvmem +qcom-emac +qcom-geni-se +qcom-labibb-regulator +qcom-pm8008 +qcom-pmic-typec +qcom-pon +qcom-rng +qcom-rpmh-regulator +qcom-spmi-adc-tm5 +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom-wled +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_pil_info +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +qcom_usb_vbus-regulator +qcomsmempart +qcrypto +qcserial +qed +qede +qedf +qedi +qedr +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnoc-msm8916 +qnoc-msm8939 +qnoc-msm8974 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +raspberrypi-cpufreq +raspberrypi-hwmon +raspberrypi-ts +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +reed_solomon +regmap-ac97 +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas-rpc-if +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-a10sr +reset-brcmstb +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-raspberrypi +reset-rzg2l-usbphy-ctrl +reset-scmi +reset-ti-sci +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmtfs_mem +rn5t618 +rn5t618-adc +rn5t618-regulator +rn5t618_power +rn5t618_wdt +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-isp1 +rockchip-nand-controller +rockchip-rga +rockchip-vdec +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rohm-bd70528 +rohm-bd71828 +rohm-bd718x7 +rohm-bd9576 +rohm-regulator +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmpd +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bd70528 +rtc-bq32k +rtc-bq4802 +rtc-brcmstb-waketimer +rtc-cadence +rtc-cpcap +rtc-cros-ec +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-fsl-ftm-alarm +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-hym8563 +rtc-imx-sc +rtc-imxdi +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-meson-vrtc +rtc-msm6242 +rtc-mt2712 +rtc-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-pm8xxx +rtc-r7301 +rtc-r9701 +rtc-rc5t583 +rtc-rc5t619 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sc27xx +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rti_wdt +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rvu_af +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rx51_battery +rxrpc +rz-dmac +rza_wdt +rzg2l_adc +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sahara +sample-trace-array +samsung-keypad +samsung-sxgbe +samsung_tty +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sb1000 +sbp_target +sbrmi +sbs-battery +sbs-charger +sbs-manager +sbsa_gwdt +sbtsi_temp +sc16is7xx +sc2731-regulator +sc2731_charger +sc27xx-poweroff +sc27xx-vibra +sc27xx_adc +sc27xx_fuel_gauge +sc92031 +sc9860-clk +sc9863a-clk +sca3000 +sca3300 +scd30_core +scd30_i2c +scd30_serial +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +sci-clk +sclk-div +scmi-cpufreq +scmi-hwmon +scmi-regulator +scmi_iio +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci +sdhci-acpi +sdhci-brcmstb +sdhci-cadence +sdhci-esdhc-imx +sdhci-iproc +sdhci-milbeaut +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-of-esdhc +sdhci-of-sparx5 +sdhci-omap +sdhci-pci +sdhci-pltfm +sdhci-pxav3 +sdhci-sprd +sdhci-tegra +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sha1-ce +sha2-ce +sha256-arm64 +sha3-ce +sha3_generic +sha512-arm64 +sha512-ce +shark2 +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +simple-bridge +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl28cpld-hwmon +sl28cpld_wdt +sl811-hcd +slcan +slg51000-regulator +slic_ds26522 +slicoss +slim-qcom-ctrl +slim-qcom-ngd-ctrl +slimbus +slip +slram +sm2_generic +sm3-ce +sm3_generic +sm4-ce +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bcm2835 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel-sdw-acpi +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-armada-370-db +snd-soc-audio-graph-card +snd-soc-bcm2835-i2s +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-aud2htx +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-ics43432 +snd-soc-imx-audmix +snd-soc-imx-audmux +snd-soc-imx-card +snd-soc-imx-es8328 +snd-soc-imx-hdmi +snd-soc-imx-rpmsg +snd-soc-imx-sgtl5000 +snd-soc-imx-spdif +snd-soc-inno-rk3036 +snd-soc-j721e-evm +snd-soc-kirkwood +snd-soc-kmb_platform +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-meson-aiu +snd-soc-meson-axg-fifo +snd-soc-meson-axg-frddr +snd-soc-meson-axg-pdm +snd-soc-meson-axg-sound-card +snd-soc-meson-axg-spdifin +snd-soc-meson-axg-spdifout +snd-soc-meson-axg-tdm-formatter +snd-soc-meson-axg-tdm-interface +snd-soc-meson-axg-tdmin +snd-soc-meson-axg-tdmout +snd-soc-meson-axg-toddr +snd-soc-meson-card-utils +snd-soc-meson-codec-glue +snd-soc-meson-g12a-toacodec +snd-soc-meson-g12a-tohdmitx +snd-soc-meson-gx-sound-card +snd-soc-meson-t9015 +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6359 +snd-soc-mt6660 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mt8192-afe +snd-soc-mt8195-afe +snd-soc-mtk-common +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rk817 +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5659 +snd-soc-rt5663 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +snd-soc-rt5682-i2c +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rz-ssi +snd-soc-sc7180 +snd-soc-sdm845 +snd-soc-sdw-mockup +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-sm8250 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-sprd-platform +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tegra-audio-graph-card +snd-soc-tegra-machine +snd-soc-tegra-pcm +snd-soc-tegra-wm8903 +snd-soc-tegra186-dspk +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra210-admaif +snd-soc-tegra210-ahub +snd-soc-tegra210-dmic +snd-soc-tegra210-i2s +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-imx8 +snd-sof-imx8m +snd-sof-of +snd-sof-xtensa-dsp +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snd_xen_front +snic +snps_udc_core +snps_udc_plat +snvs_pwrkey +soc_button_array +socfpga +socfpga-a10 +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +soundwire-bus +soundwire-cadence +soundwire-generic-allocation +soundwire-intel +soundwire-qcom +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +sparx5-switch +sparx5-temp +sparx5_serdes +spcp8x5 +speedfax +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bcm-qspi +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-brcmstb-qspi +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-hisi-kunpeng +spi-hisi-sfc-v3xx +spi-imx +spi-iproc-qspi +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mtk-nor +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rockchip-sfc +spi-rpc-if +spi-rspi +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-sprd +spi-sprd-adi +spi-sun6i +spi-synquacer +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-thunderx +spi-tle62x0 +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +spmi-pmic-arb +sprd-dma +sprd-iommu +sprd-mailbox +sprd-mcdt +sprd-sc27xx-spi +sprd_hwspinlock +sprd_serial +sprd_thermal +sprd_wdt +sps30 +sps30_i2c +sps30_serial +sr-thermal +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpddc60 +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +stratix10-rsu +stratix10-soc +stratix10-svc +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sun4i-backend +sun4i-csi +sun4i-drm +sun4i-drm-hdmi +sun4i-frontend +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-codec-analog +sun50i-cpufreq-nvmem +sun6i-csi +sun6i-dma +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-adda-pr-regmap +sun8i-ce +sun8i-codec +sun8i-codec-analog +sun8i-di +sun8i-drm-hdmi +sun8i-mixer +sun8i-rotate +sun8i-ss +sun8i_tcon_top +sun8i_thermal +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sunxi +sunxi-cedrus +sunxi-cir +sunxi-mmc +sunxi-rsb +sunxi_wdt +sur40 +surface3_spi +surface_acpi_notify +surface_aggregator +surface_aggregator_cdev +surface_aggregator_registry +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synopsys_edac +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc3589x-keypad +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tee_bnxt_fw +tef6862 +tegra-aconnect +tegra-bpmp-thermal +tegra-drm +tegra-gmi +tegra-kbc +tegra-vde +tegra-video +tegra-xudc +tegra186-cpufreq +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test_blackhole_dev +test_bpf +test_div64 +test_power +tg3 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +thunderbolt +thunderbolt-net +thunderx-mmc +thunderx2_pmu +thunderx_edac +thunderx_zip +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-am65-cpsw-nuss +ti-cal +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-j721e-ufs +ti-lmu +ti-sn65dsi83 +ti-sn65dsi86 +ti-tfp410 +ti-tlc4541 +ti-tpd12s015 +ti-tsc2046 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_k3_dsp_remoteproc +ti_k3_r5_remoteproc +ti_sci_pm_domains +ti_usb_3410_5052 +tidss +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc_core +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_tis_synquacer +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs_qcom +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-dmac +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +vc4 +vcan +vchiq +vcnl3020 +vcnl4000 +vcnl4035 +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +venus-core +venus-dec +venus-enc +versal-fpga +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-fsl-mc +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_platform_bcmflexrm +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-rhine +via-sdmmc +via-velocity +via686a +vicodec +video-i2c +video-mux +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocc-sc7180 +videocc-sc7280 +videocc-sdm845 +videocc-sm8150 +videocc-sm8250 +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visconti_wdt +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmwgfx +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vqmmc-ipq4019-regulator +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcd934x +wcn36xx +wcnss_ctrl +wd719x +wdat_wdt +wdt87xx_i2c +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +winbond-840 +wire +wireguard +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wp512 +wwan_hwsim +x25 +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-enet-v2 +xgene-hwmon +xgene-rng +xgene_edac +xhci-histb +xhci-mtk-hcd +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xhci-tegra +xilinx-csi2rxss +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_can +xilinx_dma +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xilinxfb +xillybus_class +xillybus_core +xillybus_of +xillybus_pcie +xillyusb +xiphera-trng +xircom_cb +xlnx_vcu +xor +xor-neon +xpad +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yenta_socket +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp_dma +zzstd diff --git a/debian.master/abi/arm64/generic-64k.retpoline b/debian.master/abi/arm64/generic-64k.retpoline new file mode 100644 index 00000000000000..7f959eb917cddc --- /dev/null +++ b/debian.master/abi/arm64/generic-64k.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.master/abi/arm64/generic.compiler b/debian.master/abi/arm64/generic.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/arm64/generic.modules b/debian.master/abi/arm64/generic.modules new file mode 100644 index 00000000000000..d8bfad652ac0fd --- /dev/null +++ b/debian.master/abi/arm64/generic.modules @@ -0,0 +1,6869 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_bcm7271 +8250_exar +8250_men_mcb +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +9pnet_xen +a100u2w +a3d +a53-pll +a7-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +abp060mg +ac97_bus +acard-ahci +acecad +acenic +acp_audio_dma +acpi-als +acpi_configfs +acpi_ipmi +acpi_power_meter +acpi_tad +acpiphp_ibm +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9467 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aes-arm64 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +aes-neon-bs +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_brcm +ahci_ceva +ahci_mtk +ahci_mvebu +ahci_platform +ahci_qoriq +ahci_seattle +ahci_tegra +ahci_xgene +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +al3010 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +allegro +altera-ci +altera-cvp +altera-fpga2sdram +altera-freeze-bridge +altera-hps2fpga +altera-msgdma +altera-pr-ip-core +altera-pr-ip-core-plat +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +am65-cpts +amba-clcd +amba-pl010 +ambakmi +amc6821 +amd +amd-xgbe +amd5536udc_pci +amd8111e +amdgpu +amlogic-gxl-crypto +amlogic_thermal +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx6345 +analogix-anx78xx +analogix_dp +anatop-regulator +ansi_cprng +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-dart +apple-mfi-fastcharge +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar1021_i2c +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm-cmn +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scpi +arm_smc_wdt +arm_smccc_trng +arm_smmuv3_pmu +arm_spe_pmu +armada-37xx-cpufreq +armada-37xx-rwtm-mailbox +armada-8k-cpufreq +armada_37xx_wdt +arp_tables +arpt_mangle +arptable_filter +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +as73211 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atm +atmel +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-i2c +atmel-sha204a +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axg-audio +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x-rsb +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bam_dma +bareudp +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-flexrm-mailbox +bcm-keypad +bcm-pdc-mailbox +bcm-phy-lib +bcm-sba-raid +bcm-sf2 +bcm203x +bcm2711_thermal +bcm2835 +bcm2835-mmal-vchiq +bcm2835-rng +bcm2835-v4l2 +bcm2835_thermal +bcm2835_wdt +bcm3510 +bcm4908_enet +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7038_wdt +bcm7xxx +bcm87xx +bcm_crypto_spu +bcm_iproc_adc +bcm_iproc_tsc +bcm_vk +bcma +bcma-hcd +bcmsysport +bd6107 +bd71815-regulator +bd71828-regulator +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bd9576-regulator +bd9576_wdt +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b_generic +blake2s_generic +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluefield_edac +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bman-test +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs +bonding +bpa-rs600 +bpa10x +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb-avs-cpufreq +brcmstb-usb-pinmap +brcmstb_nand +brcmstb_thermal +brcmutil +brd +bridge +broadcom +bsd_comp +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence-nand-controller +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sc7180 +camcc-sdm845 +camcc-sm8250 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +cap11xx +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cavium-rng +cavium-rng-vf +cavium_ptp +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccp +ccp-crypto +ccree +ccs +ccs-pll +ccs811 +cctrng +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-pltfrm +cdns-usb-common +cdns3 +cdns3-imx +cdns3-pci-wrap +cdns3-ti +cdnsp-udc-pci +cec +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone-icn6211 +chipone_icn8318 +chipone_icn8505 +chipreg +chnl_net +chromeos_tbmc +chrontel-ch7033 +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cirrus +cirrusfb +clip +clk-axi-clkgen +clk-bcm2711-dvp +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cpu-8996 +clk-cs2000-cp +clk-fsl-flexspi +clk-hi3519 +clk-hi655x +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-rk3568 +clk-rk808 +clk-rpm +clk-rpmh +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-sprd +clk-twl6040 +clk-versaclock5 +clk-wm831x +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cnic +cobra +coda +coda-vpu +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_example_test +comedi_parport +comedi_pci +comedi_test +comedi_usb +contec_pci_dio +cordic +core +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppc_cpufreq +cpr +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +crc64 +crc7 +crct10dif-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-anx7688 +cros-ec-cec +cros-ec-regulator +cros-ec-sensorhub +cros_ec +cros_ec_accel_legacy +cros_ec_baro +cros_ec_chardev +cros_ec_debugfs +cros_ec_dev +cros_ec_i2c +cros_ec_keyb +cros_ec_lid_angle +cros_ec_light_prox +cros_ec_lightbar +cros_ec_mkbp_proximity +cros_ec_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_typec +cros_ec_vbc +cros_kbd_led_backlight +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +curve25519-generic +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm8250 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dmc520_edac +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +drm_xen_front +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-imx8mp +dwc3-keystone +dwc3-meson-g12a +dwc3-of-simple +dwc3-pci +dwc3-qcom +dwc3-xilinx +dwmac-altr-socfpga +dwmac-dwc-qos-eth +dwmac-generic +dwmac-imx +dwmac-intel-plat +dwmac-ipq806x +dwmac-loongson +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dwmac-sun8i +dwmac-visconti +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efct +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-brcm +ehci-fsl +ehci-platform +ehset +einj +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +emxx_udc +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +ene_ir +eni +enic +envelope-detector +epic100 +eql +erofs +error +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-qcom-spmi-misc +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +fan53880 +farsync +fastrpc +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +ffa-module +fieldbus_dev +fintek-cir +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fixed +fjes +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +fscache +fsi-core +fsi-master-aspeed +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dpaa2-eth +fsl-dpaa2-ptp +fsl-dpaa2-switch +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mc-dpio +fsl-mph-dr-of +fsl-qdma +fsl_dpa +fsl_ifc_nand +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +fsp-3y +ftdi-elan +ftdi_sio +ftl +ftm-quaddec +ftsteutates +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gateworks-gsc +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gcc-apq8084 +gcc-ipq4019 +gcc-ipq6018 +gcc-ipq806x +gcc-ipq8074 +gcc-mdm9607 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8939 +gcc-msm8953 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gdmtty +gdmulte +ge2d +gemini +gen_probe +generic +generic-adc-battery +genet +geneve +genwqe_card +gf2k +gfs2 +ghash-ce +gianfar_driver +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpi +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd70528 +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-brcmstb +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-eic-sprd +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hisi +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-mlxbf +gpio-mlxbf2 +gpio-moxtet +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-pmic-eic-sprd +gpio-raspberrypi-exp +gpio-rcar +gpio-rdc321x +gpio-regmap +gpio-regulator +gpio-rockchip +gpio-sama5d2-piobu +gpio-siox +gpio-sl28cpld +gpio-sprd +gpio-syscon +gpio-thunderx +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-visconti +gpio-wcd934x +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xgene-sb +gpio-xgs-iproc +gpio-xlp +gpio-xra1403 +gpio-zynq +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpmi-nand +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc-hwmon +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hantro-vpu +hanwang +hbmc-am654 +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd3ss3220 +hd44780 +hd44780_common +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi556 +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421-spmi-pmic +hi6421v530-regulator +hi6421v600-irq +hi6421v600-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hibmc-drm +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-google-hammer +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-hyperv +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_powerkey +hisi_qm +hisi_sas_main +hisi_sas_v1_hw +hisi_sas_v2_hw +hisi_sas_v3_hw +hisi_sec +hisi_sec2 +hisi_thermal +hisi_zip +hix5hd2_gmac +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hnae +hnae3 +hns-roce-hw-v1 +hns-roce-hw-v2 +hns3 +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hv_balloon +hv_netvsc +hv_sock +hv_storvsc +hv_utils +hv_vmbus +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +hyperv-keyboard +hyperv_drm +hyperv_fb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-altera +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-cp2615 +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-hid-of +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mlxbf +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-cci +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-scmi +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-synquacer +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-thunderx +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xgene-slimpro +i2c-xiic +i2c-xlp9xx +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-bcm-voter +icc-osm-l3 +icc-rpmh +icc-smd-rpm +ice +ice40-spi +icp +icp10100 +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imon +imon_raw +ims-pcu +imx-audio-rpmsg +imx-bus +imx-common +imx-cpufreq-dt +imx-dcss +imx-dma +imx-dsp +imx-interconnect +imx-mailbox +imx-media-common +imx-pcm-dma +imx-pcm-rpmsg +imx-pxp +imx-sdma +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx2_wdt +imx319 +imx334 +imx335 +imx355 +imx412 +imx6q-cpufreq +imx6ul_tsc +imx7-media-csi +imx7-mipi-csis +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int51x1 +intel-m10-bmc +intel-m10-bmc-hwmon +intel-nand-controller +intel-qep +intel-xway +intel_pmt +intel_th +intel_th_acpi +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io-domain +io_edgeport +io_ti +ionic +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipa +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc-rng200 +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +irq-pruss-intc +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +ite-it66121 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3_bandgap +k3dma +kafs +kalmia +kaweth +kbtab +kcm +kcomedilib +ke_counter +keembay-ocs-aes +keembay-ocs-hcu +keembay_wdt +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khadas-mcu +khadas_mcu_fan +kheaders +kirin-drm +kl5kusb105 +kmb-drm +kmem +kmx61 +kobil_sct +komeda +kpss-xcc +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +layerscape_edac_mod +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +led_bl +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lm3692x +leds-lm3697 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-regulator +leds-rt4505 +leds-rt8515 +leds-sc27xx-bltc +leds-sgm3140 +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lima +lineage-pem +linear +linkstation-poweroff +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +liteuart +litex_liteeth +litex_soc_ctrl +lkkbd +ll_temac +llc +llc2 +llcc-qcom +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmh +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lochnagar-hwmon +lochnagar-regulator +lockd +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp873x-regulator +lp8755 +lp87565 +lp87565-regulator +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpass-gfm-sm8250 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-codec +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +macb +macb_pci +machxo2-spi +macmodes +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mailbox-test +mailbox-xgene-slimpro +mali-dp +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell-88x2222 +marvell-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9286 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mceusb +mchp23k256 +mchp48l640 +mcp16502 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdio-octeon +mdio-thunder +mdio-xgene +mdt_loader +me4000 +me_daq +mediatek +mediatek-cpufreq +mediatek-cpufreq-hw +mediatek-drm +mediatek-drm-hdmi +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gx-mmc +meson-gxl +meson-ir +meson-ir-tx +meson-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +microread +microread_i2c +microtek +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxbf-bootctl +mlxbf-pmc +mlxbf-tmfifo +mlxbf_gige +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_hsq +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8994 +mmcc-msm8996 +mmcc-msm8998 +mmcc-sdm660 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp5416 +mp8859 +mp886x +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_felix +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi001 +msi2500 +msm +msp3400 +mspro_block +mss-sc7180 +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359-rt1019-rt5682 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-devapc +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-rng +mtk-sd +mtk-smi +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc-jpeg-encdec +mxc4005 +mxc6255 +mxc_nand +mxc_w1 +mxcmmc +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n5pf +n_gsm +n_hdlc +nand +nandcore +nandsim +national +natsemi +nau7802 +navman +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +netsec +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfit +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_routes_test +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm750-pwm-fan +nps_enet +ns +ns-thermal +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nuvoton-cir +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-sc27xx-efuse +nvmem_meson_efuse +nvmem_meson_mx_efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +octeontx-cpt +octeontx-cptvf +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +ohci-platform +omap-mailbox +omap-rng +omap4-keypad +omap_hwspinlock +omfs +omninet +onenand +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9282 +ov9640 +ov9650 +ov9734 +overlay +owl-dma +owl-emac +owl-mmc +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +panfrost +parade-ps8622 +parade-ps8640 +parkbd +parman +parport +parport_ax88796 +parser_trx +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-rockchip-host +pcie-tegra194 +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmcia_core +pcmcia_rsrc +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcs-lynx +pcs_xpcs +pcwd_pci +pcwd_usb +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf8x00-regulator +pfuze100-regulator +phantom +phonet +phram +phy-am654-serdes +phy-armada38x-comphy +phy-bcm-kona-usb2 +phy-bcm-ns-usb2 +phy-bcm-ns-usb3 +phy-bcm-ns2-usbdrd +phy-bcm-sr-pcie +phy-bcm-sr-usb +phy-berlin-sata +phy-berlin-usb +phy-brcm-usb-dvr +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-cpcap-usb +phy-exynos-usb2 +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-gmii-sel +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi3670-usb3 +phy-hi6220-usb +phy-hisi-inno-usb2 +phy-histb-combphy +phy-intel-keembay-emmc +phy-intel-keembay-usb +phy-isp1301 +phy-j721e-wiz +phy-mapphone-mdm6600 +phy-meson-axg-mipi-dphy +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-mvebu-cp110-utmi +phy-ocelot-serdes +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq4019-usb +phy-qcom-ipq806x-sata +phy-qcom-ipq806x-usb +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-snps-femto-v2 +phy-qcom-usb-hs +phy-qcom-usb-hs-28nm +phy-qcom-usb-hsic +phy-qcom-usb-ss +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-dphy-rx0 +phy-rockchip-emmc +phy-rockchip-inno-csidphy +phy-rockchip-inno-dsidphy +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-sun4i-usb +phy-sun50i-usb3 +phy-sun6i-mipi-dphy +phy-tahvo +phy-tegra-usb +phy-tegra-xusb +phy-tegra194-p2u +phy-tusb1210 +phy-zynqmp +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-ipq4019 +pinctrl-ipq6018 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-mdm9615 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc8180x +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8350 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +plat-ram +plat_nand +platform_lcd +platform_mhu +platform_profile +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305-neon +poly1305_generic +port100 +powermate +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +pru_rproc +pruss +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +ptp-qoriq +ptp_clockmatrix +ptp_dte +ptp_idt82p33 +ptp_ines +ptp_kvm +ptp_ocp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvcalls-front +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-bcm-iproc +pwm-bcm2835 +pwm-beeper +pwm-berlin +pwm-brcmstb +pwm-cros-ec +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-iqs620a +pwm-ir-tx +pwm-keembay +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-ntxec +pwm-pca9685 +pwm-raspberrypi-poe +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-sl28cpld +pwm-sprd +pwm-sun4i +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm-visconti +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +q6sstop-qcs404 +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-apcs-ipc-mailbox +qcom-camss +qcom-coincell +qcom-cpufreq-hw +qcom-cpufreq-nvmem +qcom-emac +qcom-geni-se +qcom-labibb-regulator +qcom-pm8008 +qcom-pmic-typec +qcom-pon +qcom-rng +qcom-rpmh-regulator +qcom-spmi-adc-tm5 +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom-wled +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_pil_info +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +qcom_usb_vbus-regulator +qcomsmempart +qcrypto +qcserial +qed +qede +qedf +qedi +qedr +qemu_fw_cfg +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnoc-msm8916 +qnoc-msm8939 +qnoc-msm8974 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +raspberrypi-cpufreq +raspberrypi-hwmon +raspberrypi-ts +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +reed_solomon +regmap-ac97 +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas-rpc-if +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-a10sr +reset-brcmstb +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-raspberrypi +reset-rzg2l-usbphy-ctrl +reset-scmi +reset-ti-sci +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmtfs_mem +rn5t618 +rn5t618-adc +rn5t618-regulator +rn5t618_power +rn5t618_wdt +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-isp1 +rockchip-nand-controller +rockchip-rga +rockchip-vdec +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rohm-bd70528 +rohm-bd71828 +rohm-bd718x7 +rohm-bd9576 +rohm-regulator +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmpd +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-bd70528 +rtc-bq32k +rtc-bq4802 +rtc-brcmstb-waketimer +rtc-cadence +rtc-cpcap +rtc-cros-ec +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-fsl-ftm-alarm +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-hym8563 +rtc-imx-sc +rtc-imxdi +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-meson-vrtc +rtc-msm6242 +rtc-mt2712 +rtc-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-pm8xxx +rtc-r7301 +rtc-r9701 +rtc-rc5t583 +rtc-rc5t619 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sc27xx +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rti_wdt +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rvu_af +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rx51_battery +rxrpc +rz-dmac +rza_wdt +rzg2l_adc +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sahara +sample-trace-array +samsung-keypad +samsung-sxgbe +samsung_tty +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sb1000 +sbp_target +sbrmi +sbs-battery +sbs-charger +sbs-manager +sbsa_gwdt +sbtsi_temp +sc16is7xx +sc2731-regulator +sc2731_charger +sc27xx-poweroff +sc27xx-vibra +sc27xx_adc +sc27xx_fuel_gauge +sc92031 +sc9860-clk +sc9863a-clk +sca3000 +sca3300 +scd30_core +scd30_i2c +scd30_serial +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +sci-clk +sclk-div +scmi-cpufreq +scmi-hwmon +scmi-regulator +scmi_iio +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci +sdhci-acpi +sdhci-brcmstb +sdhci-cadence +sdhci-esdhc-imx +sdhci-iproc +sdhci-milbeaut +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-of-esdhc +sdhci-of-sparx5 +sdhci-omap +sdhci-pci +sdhci-pltfm +sdhci-pxav3 +sdhci-sprd +sdhci-tegra +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sha1-ce +sha2-ce +sha256-arm64 +sha3-ce +sha3_generic +sha512-arm64 +sha512-ce +shark2 +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +simple-bridge +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl28cpld-hwmon +sl28cpld_wdt +sl811-hcd +slcan +slg51000-regulator +slic_ds26522 +slicoss +slim-qcom-ctrl +slim-qcom-ngd-ctrl +slimbus +slip +slram +sm2_generic +sm3-ce +sm3_generic +sm4-ce +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bcm2835 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-compress +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel-sdw-acpi +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-armada-370-db +snd-soc-audio-graph-card +snd-soc-bcm2835-i2s +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-aud2htx +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-ics43432 +snd-soc-imx-audmix +snd-soc-imx-audmux +snd-soc-imx-card +snd-soc-imx-es8328 +snd-soc-imx-hdmi +snd-soc-imx-rpmsg +snd-soc-imx-sgtl5000 +snd-soc-imx-spdif +snd-soc-inno-rk3036 +snd-soc-j721e-evm +snd-soc-kirkwood +snd-soc-kmb_platform +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-meson-aiu +snd-soc-meson-axg-fifo +snd-soc-meson-axg-frddr +snd-soc-meson-axg-pdm +snd-soc-meson-axg-sound-card +snd-soc-meson-axg-spdifin +snd-soc-meson-axg-spdifout +snd-soc-meson-axg-tdm-formatter +snd-soc-meson-axg-tdm-interface +snd-soc-meson-axg-tdmin +snd-soc-meson-axg-tdmout +snd-soc-meson-axg-toddr +snd-soc-meson-card-utils +snd-soc-meson-codec-glue +snd-soc-meson-g12a-toacodec +snd-soc-meson-g12a-tohdmitx +snd-soc-meson-gx-sound-card +snd-soc-meson-t9015 +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6359 +snd-soc-mt6660 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mt8192-afe +snd-soc-mt8195-afe +snd-soc-mtk-common +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rk817 +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5659 +snd-soc-rt5663 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +snd-soc-rt5682-i2c +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rz-ssi +snd-soc-sc7180 +snd-soc-sdm845 +snd-soc-sdw-mockup +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-sm8250 +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-sprd-platform +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tegra-audio-graph-card +snd-soc-tegra-machine +snd-soc-tegra-pcm +snd-soc-tegra-wm8903 +snd-soc-tegra186-dspk +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra210-admaif +snd-soc-tegra210-ahub +snd-soc-tegra210-dmic +snd-soc-tegra210-i2s +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm-hubs +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-imx8 +snd-sof-imx8m +snd-sof-of +snd-sof-xtensa-dsp +snd-sonicvibes +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snd_xen_front +snic +snps_udc_core +snps_udc_plat +snvs_pwrkey +soc_button_array +socfpga +socfpga-a10 +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +soundwire-bus +soundwire-cadence +soundwire-generic-allocation +soundwire-intel +soundwire-qcom +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +sparx5-switch +sparx5-temp +sparx5_serdes +spcp8x5 +speedfax +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bcm-qspi +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-brcmstb-qspi +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-hisi-kunpeng +spi-hisi-sfc-v3xx +spi-imx +spi-iproc-qspi +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mtk-nor +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rockchip-sfc +spi-rpc-if +spi-rspi +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-sprd +spi-sprd-adi +spi-sun6i +spi-synquacer +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-thunderx +spi-tle62x0 +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +spmi-pmic-arb +sprd-dma +sprd-iommu +sprd-mailbox +sprd-mcdt +sprd-sc27xx-spi +sprd_hwspinlock +sprd_serial +sprd_thermal +sprd_wdt +sps30 +sps30_i2c +sps30_serial +sr-thermal +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpddc60 +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +stratix10-rsu +stratix10-soc +stratix10-svc +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sun4i-backend +sun4i-csi +sun4i-drm +sun4i-drm-hdmi +sun4i-frontend +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-codec-analog +sun50i-cpufreq-nvmem +sun6i-csi +sun6i-dma +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-adda-pr-regmap +sun8i-ce +sun8i-codec +sun8i-codec-analog +sun8i-di +sun8i-drm-hdmi +sun8i-mixer +sun8i-rotate +sun8i-ss +sun8i_tcon_top +sun8i_thermal +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sunxi +sunxi-cedrus +sunxi-cir +sunxi-mmc +sunxi-rsb +sunxi_wdt +sur40 +surface3_spi +surface_acpi_notify +surface_aggregator +surface_aggregator_cdev +surface_aggregator_registry +surface_battery +surface_charger +surface_dtx +surface_gpe +surface_hid +surface_hid_core +surface_hotplug +surface_kbd +surface_platform_profile +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +synopsys_edac +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc3589x-keypad +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tee_bnxt_fw +tef6862 +tegra-aconnect +tegra-bpmp-thermal +tegra-drm +tegra-gmi +tegra-kbc +tegra-vde +tegra-video +tegra-xudc +tegra186-cpufreq +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test_blackhole_dev +test_bpf +test_div64 +test_power +tg3 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +thunderbolt +thunderbolt-net +thunderx-mmc +thunderx2_pmu +thunderx_edac +thunderx_zip +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-am65-cpsw-nuss +ti-cal +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-j721e-ufs +ti-lmu +ti-sn65dsi83 +ti-sn65dsi86 +ti-tfp410 +ti-tlc4541 +ti-tpd12s015 +ti-tsc2046 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_k3_dsp_remoteproc +ti_k3_r5_remoteproc +ti_sci_pm_domains +ti_usb_3410_5052 +tidss +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc_core +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_tis_synquacer +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_acpi +ucsi_ccg +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-hisi +ufs-mediatek +ufs_qcom +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-dmac +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +vc4 +vcan +vchiq +vcnl3020 +vcnl4000 +vcnl4035 +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +venus-core +venus-dec +venus-enc +versal-fpga +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-fsl-mc +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_platform_bcmflexrm +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-rhine +via-sdmmc +via-velocity +via686a +vicodec +video-i2c +video-mux +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocc-sc7180 +videocc-sc7280 +videocc-sdm845 +videocc-sm8150 +videocc-sm8250 +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visconti_wdt +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_pvrdma +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmwgfx +vmxnet3 +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vqmmc-ipq4019-regulator +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcd934x +wcn36xx +wcnss_ctrl +wd719x +wdat_wdt +wdt87xx_i2c +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +winbond-840 +wire +wireguard +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wp512 +wwan_hwsim +x25 +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-privcmd +xen-scsiback +xen-scsifront +xen-tpmfront +xen_wdt +xenfs +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-enet-v2 +xgene-hwmon +xgene-rng +xgene_edac +xhci-histb +xhci-mtk-hcd +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xhci-tegra +xilinx-csi2rxss +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_can +xilinx_dma +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xilinxfb +xillybus_class +xillybus_core +xillybus_of +xillybus_pcie +xillyusb +xiphera-trng +xircom_cb +xlnx_vcu +xor +xor-neon +xpad +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yenta_socket +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp_dma +zzstd diff --git a/debian.master/abi/arm64/generic.retpoline b/debian.master/abi/arm64/generic.retpoline new file mode 100644 index 00000000000000..7f959eb917cddc --- /dev/null +++ b/debian.master/abi/arm64/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.master/abi/armhf/generic b/debian.master/abi/armhf/generic new file mode 100644 index 00000000000000..41f19fc7b41467 --- /dev/null +++ b/debian.master/abi/armhf/generic @@ -0,0 +1,25133 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5c4d8b96 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7e9d5693 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf973b35f crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x00037526 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16b61021 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x27be9e83 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x335e8a43 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3cf83b75 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x55b0da8e devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5c782ca7 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e92ffad cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x833fca90 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x842ab0a3 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8abf1387 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x99a45fdd cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa7ed7fe7 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb174e7e2 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb8e335c7 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xce0c979a devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xebc2efe2 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf289155f devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm/crypto/blake2s-arm 0x5c9b932c blake2s_compress_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0xc832c670 curve25519_arch +EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x1c3e6e5b poly1305_init_arch +EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x6ddf27bc poly1305_update_arch +EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0xf39f5240 poly1305_final_arch +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x25702572 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x303329f9 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/blake2b_generic 0x99d7fe16 blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x01403cf8 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xaa60c65b crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xbc014d02 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xbc0a2293 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xc063296e crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xcc6018da crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x51cd5458 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x764c82a8 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xe4e8b9b6 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xcd4fb651 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x1e294172 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x705f3ae1 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xdb571e74 crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x255a9494 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x589b3153 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xfc7fd93d bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0a183921 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x0f09d3ec pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2cde40cc paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x34ea00df pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4146c7d8 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5e0ec981 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x65fd92a4 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6cf0bf60 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbaef2f10 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xce924891 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xfa6c330e pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xfacd3c66 pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x402fc36a btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xb9713a67 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x842f2b66 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1463d5f6 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8a0cd772 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa3425927 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc3cd0350 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x193126a0 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x319fa912 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x70cb6407 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7115b70d kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x74fed5e6 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7eca3ad3 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x855dafac kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x97d914c7 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x999f9566 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc04152a8 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdeb03ecf kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xed9f95a0 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf7660658 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x17abe7ac st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4a3c2e7d st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6ca7e445 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcc918c39 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x04baf964 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x761f0a7a xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x96f054a9 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x30cff9dd xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x31117575 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5487fb94 xillybus_init_endpoint +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4961a184 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x76199a4d atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc126e36e atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x140e5b1f gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8bbbbdba caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9e67bc50 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd62d1c6a split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe145ac49 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x06717761 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x09c41809 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4099709e cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x46efe449 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4b74fe69 cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4ead8e70 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x6de99a64 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x756131a7 cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86089940 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x893ab046 cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x8a8c929e cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa2ea5326 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa970bc2f cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xbef6ab16 cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xc6c7d14b cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xe05ab546 cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x686d05f8 cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x9dc00876 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/error 0x27846028 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x8db6e8c5 caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0aaf5e2a fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11c4a4ca fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a5405d9 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2283843c fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x254d3210 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5ea9125a fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x616bfee7 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62074387 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a462c5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fca74eb fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83d15ed1 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b427aec fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9df57334 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa06ed95b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa64ccfe9 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3bb73ef fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb90add01 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8283602 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd10c7e0f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd493a331 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe24569a6 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6583065 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xecfc46dd fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xef0c816f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf141f804 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe6a072d fw_iso_context_queue +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x4855e376 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x8475e0ec imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa2dba290 imx_dsp_free_channel +EXPORT_SYMBOL drivers/fpga/dfl 0xb3a04b52 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xffe67c27 dfl_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00bc1e49 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00bdc3dd drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01404a73 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0231d7d6 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x023704f8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0345d7b1 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03afb2c8 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044f529d devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051e1266 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056c926b drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06678490 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06723682 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ff9486 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f7673a drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09074164 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c120a4f drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d139723 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db7b4a0 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dbb0b58 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddb27ac drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e00f9b7 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e378379 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f47d125 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6b1fb6 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb1484a drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1066f66e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11883e51 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f11618 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1305d6c2 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x143dbac8 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159438af drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15afc0f9 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1608758c drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1645fd7c drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d2e563 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17318d31 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17b62490 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x181ca208 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1828d2de drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x190ae8f5 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x197b1a7a drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19825c4e drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1ebf4a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9b9961 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae03bed drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6dfba9 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d4f9a22 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ddc919e drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed84a9a drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f86a63c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20858c68 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20fc418e drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d4c3d9 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f159a5 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x221af5e0 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224faf9d drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22943e99 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c23a8e drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23349f8a drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x235d7b33 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2380c064 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24617649 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ba99a2 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d1ca6d drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d51895 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x265c09ba drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x270056bc drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f13330 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f3844b drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291e4445 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291f8aaf drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x294058d0 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a74c6b drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae43ca1 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfee62e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6741aa drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d64476c drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d830e03 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e3f4336 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f16423d drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa99ed2 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe68f64 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ad9abd drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30fca0cf drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f6ebe5 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35443171 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ae9e20 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c25690 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ce8ab0 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3858c4c6 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a793daf drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9038d3 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acbb139 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b88bd76 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b94133e drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ce0c4b0 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3f8c5c drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e4fde88 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6ea7e1 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4016b10c __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c5403c drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x412daad3 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4169e871 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f475a5 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4356867c drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4586fc7b drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ee24e1 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4668d255 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x467a759c drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x468a62d6 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x473b02fb drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x484c3127 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49558ca7 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499c82be drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e8d71f drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1f4d31 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b350944 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c14818f drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5c326f drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cb8cfb7 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5282b4c4 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533dc17f drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5496bd21 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x556a5e47 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d189e9 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5606c90f drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5628cb3f drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x567159af drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56afc853 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580fe4d1 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5861eb10 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588f1e1b drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cb3c33 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59fa14a5 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59feab71 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aeb189d drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3b4204 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c1e2328 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c484ce0 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9ae404 drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d023c6e drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3600d0 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd0fc9f drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deb521b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deeb9fc drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f09ac76 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x605b0ec2 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f1e62e drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e20cc2 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62832dc7 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b00f9c drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6465fd5d drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x663bba53 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x668f6cf5 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6794cde8 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68172658 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x688adfad drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68aa841a drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f51443 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x698edb95 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd89670 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6befcdd6 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3d208b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc2ed31 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da515a3 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecf954f drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f17e5a7 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7ce80c drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70114c1a drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702cf6c3 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7049b21b drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x705f2c67 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7146480b drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a0f612 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742e9790 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77387089 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78176d30 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ae3da9 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b46cf1 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6de6bf drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a91e234 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bca8c80 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdf5fa1 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4cd421 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e879716 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f16ec4f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f3f8a6c drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f680838 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7c2be0 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f82dfc8 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc383be drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8026a51c drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80473661 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c9e52b drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815832b5 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e8cc97 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81fd5fff drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x831af0b1 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a6c22f drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b480e1 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86738e7b drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86db6724 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87006c8e drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8789dfb0 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e27a95 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e9b050 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a21bbd0 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bec99e4 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dcdbf12 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5181ce drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93491b70 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x939064f9 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94cea524 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957faba3 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ff59d5 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9608ac43 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x960f16d9 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9713dedf drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97439d30 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97fea251 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98433b67 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9867af7d drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98aa4db7 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98eaea43 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9936a77f drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x997e4779 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a86d860 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b72768c drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9044f6 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb9850b drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c9a7de2 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b357f5 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14c4bfa drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14d41f1 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa244e4e7 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4266a64 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47ee16a drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5aaff6f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa64507dc drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa716ea7c drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa897dbce drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8fa819a drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa981164b drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa40f29f __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace284fb __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf86042 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6afdfd drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf6c914e drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd6d5cc of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafead829 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafed6ed5 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb00df46c drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb163b9f7 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb290b4c8 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d07115 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34af76f drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f68953 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d35dea drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e7d3e2 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52cda4c drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55b80e8 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d0d0a7 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ebe59c drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7075b3d drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb70fb301 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a489a7 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ea4f0b drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9362723 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9db3451 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9dcd6d7 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba526c84 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba683668 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9167fe drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb7c270d drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc231d3 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd698b6e drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd88d0bd drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda4008a drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd648e5 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbedd6de4 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf22478e drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04a5480 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c01df5 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ec07d4 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc105e5b8 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc167c2ab drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e709c7 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc30869ae drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b06c0f drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3df9cd5 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e9083c drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc430e9ad drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc47c9b41 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5197fec drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5843700 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc599f9a9 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce9af3 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc60b901b drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64f25f7 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a50411 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6adcb30 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dac18b drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc723fc56 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc757e0e9 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc775b8cd drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9abc2af drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9fccc24 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca278a53 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca4fad83 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb4cb26a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9f1846 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbed3fc3 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc6dd2ad drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfd5f24 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7769a8 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb0376d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce38e07a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xced335c9 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf36bf5a drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07d040e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd196c77e drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd25fdd5d drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b70091 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd40f7cae drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd452c084 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a6921f drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd50c2b01 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd53e491a drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd66d1d96 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd682167d drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88d14df drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9111bfa drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94d8573 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9fd4761 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda43fb24 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda6c8676 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb17a169 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee8ba30 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf40b20c drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf42c90c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe01cb78e drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05629ef drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe099932e drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ef9ce9 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36ada8e drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3a2948f drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e099dc drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ee49ea drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bd82d3 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ec733e drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7272f33 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe775f146 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe971ea50 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea052980 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea934f12 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xead1b2d6 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2e20c7 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8cf6af drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb913970 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebc4227d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc75e9f drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee658096 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee770c67 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9be585 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe67fce drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf069e500 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf208b572 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a0231e drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62d68fd drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6532545 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf737452f drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c18c4b drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ffebe8 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a43143 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa8110f5 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab4449a drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb35c5fe drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb54c41 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc52946c drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe3b0358 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe4e3f9e drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04de083b drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06d50047 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x081a9880 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093eeff3 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b7eda2d drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b8ce626 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c5e7e17 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cfffcb3 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f4b3aa4 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x104f7ed1 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1127f0cf __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11558dc6 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c8f7d8 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11fbec0a drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x122cc81e drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12f3c134 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x130321cb __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d78003 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14fb3799 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15f58002 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18aff2f9 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a739dba drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c329745 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cc9caca __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cd4aad1 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cdd47d5 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da3b572 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd37206 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f1755d drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x227f1ceb drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2284967f drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25f27507 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26803289 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f00df3 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2793fb8e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28a51c12 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a82e84e drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a8df795 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ab4c03c drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b09d6dc drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ca231a9 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d58d8fc __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e11c0ef drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec528c6 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f49f6c8 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f978c12 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30fa0fe9 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3184e3e7 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31af00a6 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ce371c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36ab87e5 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b03884 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x390de252 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b11567c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b198bed drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e38571c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e752426 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eced23a __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e40f83 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4291ce8d drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44cf315b drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x457e0f5a drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x463aaedc drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x492af49a drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a19def9 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9f1d86 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af1e660 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b8b48d4 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bd087c2 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c3ae7e7 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4de1d870 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e978d83 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f4beebd drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f5eb2af drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5175e8a5 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51d45514 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d3eb60 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56377c7b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56dfc725 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590f9458 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b85843b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d6b0d88 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e71827c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6041f3ce drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6090ce53 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60f453e6 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6455929e drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64575ff2 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67146ab8 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67a0b68a drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67def9b5 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688b6938 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a10f5f drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68e1664c __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696a6401 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a2eb7dd drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b11cae8 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b691ccc drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c725bfa __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d2806bd drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d39a3e7 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6de9298f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e7b7096 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70848f8e drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71622283 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71760db8 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71b5eb7b __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x731913ca drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7341d8eb drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74243c1e drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x771c0158 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77a2b132 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b2535c drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d2ee50 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ad9079e drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b834660 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c3215ea drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c3ea677 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c6fcc28 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cd6736a drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x818b92ab drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dd4992 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84cd6668 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8596bd88 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87110640 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8873119f drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x893c017f drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89bf7b4d drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e8822e drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8accef3f drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b19097b drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b5f0fb4 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8baa180d drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cb148b7 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d79f063 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dbd439d drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ee44105 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f059b9a __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fb964e1 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90891eaa __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92dba8cb drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9364df9b drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95f3fe0c drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x962670bf drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9857745f drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x999521ed drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4f257d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d2619c0 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d268467 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d777fc8 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d805044 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9df3ac10 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4eb0f9 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fc06da drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2a8d74f drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4d01118 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa552c14c drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa59cda15 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa604b4ae drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa64272af drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6aaac5d drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6e7fcc8 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75a68aa drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ced5a8 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa06a96e drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab7bcdf2 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0fb303b drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb159ad52 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb16cd064 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34a9f0f drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb372eeb2 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb55dc91f drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb628a3c9 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb65e47b8 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8341055 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb84ab4b4 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb854807d drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba8b2700 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbec53c1 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf037f30 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc192d35e drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f708ef __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc20189d6 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3de9dba drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40d8d53 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5fec03e drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6879bf9 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6f47a7a drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73993a4 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7de9a36 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7f0d8b3 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7f3ee05 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f60c66 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca6cfa85 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1ccc2e drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc002f9f drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc3b84fc drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccfc8d56 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdba7da2 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcedb747b drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf0064ea drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf014579 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfc6c3c0 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a75e6c drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd34cb4d6 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4428341 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4e21fdd drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd62a924a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd754ef0a drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd972ea98 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaa4fb2a drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1dad8c drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb4795a4 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcbd63d4 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd41324c drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd8929ad drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeb71629 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfa9a37f drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe19b5de6 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2157b51 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29e3fc2 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3d719a7 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4320c62 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4394b0d drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4792f21 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5260dc2 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a66abe drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5b930dd drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5eeb04b __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6964c0c drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b11453 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8edb3a2 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9938cf4 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9a237c4 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b6e2c9 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea007841 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec986f87 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed5771f0 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed58e6b4 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee05bfca drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17b7f29 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20c5bb8 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ca7d63 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5a808c2 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7b90ace drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8065fa0 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf87df657 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf90ea112 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9389bff drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf98650dd drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfadbb2c1 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc0a0f95 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd878918 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdb95da1 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe16ef09 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffc86046 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1dd2e7f4 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x46f15f81 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x52bf7da9 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7b8f4892 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x82124412 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9eb7be16 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaa4c6c3e mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaccc2386 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc274867e mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc7649e0a mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc8d63371 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb35af60 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd156147e mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd24aa07a mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd8dca158 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd98c7b1b mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdb1bcd40 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0d398ed4 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x575ff467 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7c97c1d5 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb7ed0ea3 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb98d831a drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x076491f8 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1620238b drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2c1a8726 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2faf9c10 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x64b03864 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x972b934d drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9c8a3d6e drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa2807077 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa305a1e5 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xabd65e54 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc4774c8b drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xce406fe6 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd17f637d drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd37461b8 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd6058e42 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf848c0c8 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xcd3944c0 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x011aab0c drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04576f06 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04da04a4 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x05e0c025 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0fa753d0 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x14d426b9 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3708429c drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3d848819 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x41513a1e drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55a9ddc9 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x678fa655 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x68e175ec to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x69fafab5 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6b5f5e44 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72b68313 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x767233cc drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cfcedb2 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x834b1206 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xac849c9e drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf89df79 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbe0e53e3 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcacdb427 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee0db975 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfd69abb6 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00afe0be ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x056e8a09 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x094c7e20 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b1a361e ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0da26124 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1813fcb1 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c5c7c1e ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f8a1a81 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26072321 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x298e6ad6 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d9b7ccc ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cd67030 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43ee8dcf ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d8a3407 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e250933 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ed78a5a ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ff051c4 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56478a5c ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58cfdc7c ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d013bf4 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d7f8bd5 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e6feedd ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e81b3f1 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74d78c38 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81b2fac7 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a3ad22 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d447cc0 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x969a29d7 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98193073 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x994ec94b ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c9dc3e0 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dc686b4 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa312df1a ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa57915fa ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6934c41 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb381c7ab ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3d69807 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb50ad5b4 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb516da29 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8abf741 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb089332 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe72d3f0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1b8e64f ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaa8551e ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc5cd0c7 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc651ced ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc679b1a ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc97cc52 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1d416fb ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2f0c53b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3fd400e ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee27d821 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6fc0ecf ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb9241e8 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x12e72197 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x292f9521 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2b85aecc host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4627d917 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4691ed53 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4da5e466 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x545652fa host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57553ccd host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ce481b6 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x603c847b host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6406cdbd host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6b688b25 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7304e7de host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7516e755 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7b9fac20 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7bf57a98 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x80deae70 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9229899f host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x92edeb55 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x94357dc2 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9651af81 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9ee2b6b5 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa840ab01 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb14e3b66 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb724f727 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb879901c host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbdd7d6e0 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc23a3397 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc470745f host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc6295d80 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd685d487 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe1ca353e host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7a44c96 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe95f7585 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe9a1806d __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb58ea05 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf97b889a host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf9cb65fc host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfc18cdc1 host1x_client_exit +EXPORT_SYMBOL drivers/hid/hid 0xf25c7b58 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe3087a8a sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4640bed3 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8ef90b48 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc2036990 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1b1542a0 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x80da514c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4e1f8adf amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x389d77d7 bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x610f4691 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf287db6b bma400_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x20e966fd kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x3eb930ed kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf06fced1 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0160a740 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x08e8c849 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0b730504 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0c68e52a mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x254745bc mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33b96dea mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5e458205 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6afce86f mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8d4993c4 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb90f8c07 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb93a7438 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc3284758 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xca3015bc mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdeea9ddd mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdf775530 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf5692897 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x00a88b67 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x4c01777a st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa3d12ddb st_accel_common_remove +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x130f4d6d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8b78bbca iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x57249d8c iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf238d9e0 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xc688b732 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1ec586c6 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xa6e3c5c5 scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xce8609a7 scd30_probe +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1f68bfc7 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x41f283c8 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4266351d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x76c5bd40 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8af2f201 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9015679e ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbb6fbeef ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe6a09a5f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xec35e900 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0d1e5672 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4c7c11fe ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4f825b21 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x52d3cbfb ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xcb2ae9ea ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x46792415 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x77fb026e ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8cab7cd9 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1d701a0d st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x25f74b63 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3fe8475e st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x41c1b4b5 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x461d58bd st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5f9d989c st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6dbc1c74 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7398b970 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x84fa828c st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x948b889a st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb7d2ce19 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb85e2cfd st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd45efbfb st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb921bd7 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe5399c06 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4de0ddd st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf634fb56 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfb43ac49 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x594ff946 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x3933473b st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x91b37e62 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd9d298a8 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe72f31e8 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xadb2a68f st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc26c4174 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc5ef2cc3 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x0a330612 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3a4a6eb3 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1e912673 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x7102fba6 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x7cf0a7bf bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xe4df7140 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x28809ccd st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x542d3867 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x0f056c86 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x1d798566 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x1eddf0cb iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x325c50bb iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x526b82ef iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x58727914 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x5e682dbb iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x763aa3a9 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x82b2528f iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x84a765fd iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x8b36abb4 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x952d5f5c __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x970e334e iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x9e4500ae iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xbac18d4b __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbcf037c8 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xc98b0b45 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd4a044bc iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdcf2bff6 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe15ade13 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xeab28871 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xeeb6e307 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xeee7f3f6 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xa30ae008 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x6aa99028 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7bc88dcf iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x952b1352 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xefdc4fe4 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x43c068fc iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x58c2de82 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7987dfb7 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8bbbdea4 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x314c6853 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xcd73b958 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x25604416 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbdff22c8 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x3cee9b49 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x475d3a30 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x5575b0ce bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x5deb01e3 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x10543b05 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3ce0d1ec hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x46bab385 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xd24ffe71 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x041568a9 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x3c466d2e st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5935804a st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0eaac889 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2b9e7e84 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x55111ee8 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc118a3e6 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x21ecdfe3 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xbb7b27a3 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2747a4cd st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4a655d34 st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x95f58802 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ec078db ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12410417 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x38bd6feb ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x58ffd207 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c83bef3 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e4f59ae ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75c6792b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7daf0be2 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x84645a9c ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x87f32a35 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa280adb0 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc283fb9f ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9d0c686 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe3b6c5d6 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb0b6a85 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00429462 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0131cd02 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01505a17 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x037d0505 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c3c2b9 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x052321af ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0743c43e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e18eb3 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a98bd9c __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0afce982 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b1b23bc rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d83f64b __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1119cde2 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x117bb563 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c24f74 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x138b698f rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1622a7ff rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16a2e352 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c9285d ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184e9bd9 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18df90d2 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19471d03 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198dddeb ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c27f667 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dba3cb0 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fa2d05a rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x225b2fa7 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f8d14a rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23f78559 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25fda5d6 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b02ee1 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26e9a1a4 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27794d0d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aba0b71 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2caf358f rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc010c1 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ffe0f22 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3056cfb4 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3263e456 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32deaa64 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33961325 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33aefe3f ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x373c782b rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2a7958 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a94e54e rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3abd2c4c ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ede2431 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4109b06f ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43b51a74 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46f5fc45 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x477e891a rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47efce4d rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b0a8b2f ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5bd822 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df4a96e ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4faa68cd rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fb167e7 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50413687 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52037ee8 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523169e8 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53bb54e1 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54033904 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5412e44c ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5493f0e6 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580c496c ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x587e21d2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5888e25e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a180566 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a1ca7ae ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a4a1d14 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d35a4eb rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60413096 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ac8bba ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63565f0a ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b395726 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f03bd83 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f77e6f4 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x707e7d36 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x708c5c6d ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x716cda21 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71f4563e ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72df37fd ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x761a663f ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76693ad8 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ed243b ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x792fcb71 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c6af4c6 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dc96732 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df2ae99 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f596ace ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f8d3e5b ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80b7c154 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x810e991c ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x848582f3 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84c36994 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87c87b28 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88e4c221 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x890df61e rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c198813 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c301081 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c8cf6d8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d785363 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e1be6e2 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ec52ceb ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f5a4499 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90668293 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x911706d3 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x911a768b ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9374804e ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94350d02 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9570043f rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97888028 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98eea93e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a291312 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a6ad04d rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e5b81ae rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f5eda22 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa17262eb ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2bcc71d ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa365e563 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3e0bf9d rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa48d5b5c ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa551a3a2 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa55cc791 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57dcb88 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5d5b1fa ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7584404 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa87345ae ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8a714d1 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa4efdc6 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaecb4d8 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6f46d9 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac3520f3 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacffc137 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad0c4f8a ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad86421f rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc5388e rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadd53343 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf7dd8e5 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd39e55 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafdab705 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb28babae ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb40ccc25 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb543ad61 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb75fb0b6 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba3502b6 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb9c7310 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ee7735 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2c502ad ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc57320e9 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6e6b971 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb3d521c ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb78a7b8 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc5521b7 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccc5ed6b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce21ec83 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0d427dd ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3e6eeeb ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f737bd rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3fb220a rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd44bd952 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c02d3e rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8876fa1 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdad33c73 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb7c7492 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe02573d2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1302bbd ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe15a7507 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1cfec24 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe43202ac ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe56cceb4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5f61faa ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea23ff40 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed678ae9 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedba4a94 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee74459a ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefde24a8 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1f57fd2 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5709af2 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5a73083 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7c13bec ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e3db6a ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb3ef5ce ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb8a4dbc rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd888b62 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x093fb846 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16e97295 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2106603a _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2798fed0 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39775ae3 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d90d1fa flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3eea8ca6 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x525f4cbb ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ce930df ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f9ec30b uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5fc41929 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a59d3a0 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6dfc2acc uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82a19e9c uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82d848dc ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84e18691 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x954b658a ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cd4f010 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e63ea07 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ed75ad6 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa76b9c4b flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab084a35 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7a1de3d ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc6ac557 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd07f95c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbdde954e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc676458b ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6c1f636 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe528b93f uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe733b3ce _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1a182c6 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4375a26 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x39b254ed iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x68a36ac4 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7892e9d6 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x89fc9294 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f1f4504 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a17f27e iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb0b461d0 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdd3272a3 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0578a177 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13287939 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17a4cf2e rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17f1af20 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c47c828 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c5a080c rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x280f688b rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x315c0cbe rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32ade17f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ceeffda rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41c809dd rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x455771fc rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b113ad6 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5110d01b rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x513c703e rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b1cd3a5 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e2019ba rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61fb7bab rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a419191 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76bc8d95 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ae0e5a0 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e869ae3 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97823d42 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa10eeccf rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb42ae162 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd1c91a4 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddb4d586 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9784d09 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf375e0ee rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf5b982b0 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa8b0d18 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfaf0b021 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfba14068 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfbf795ae rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x19e797bf rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3507d6d9 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4a10b20c rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x75962fbd rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7debff16 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x87bec9e5 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcffb37b1 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x398ea15a rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a8878fb rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe19d9c99 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfca11e55 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x068c1f97 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x18bea0ef rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x327b463d rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x842013a5 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe8b4c449 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf293c0b7 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x16987622 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5353e7b4 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x67ba9437 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6a55f1c6 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x82dd5306 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x913eb357 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbc955b8f gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbd34f7c4 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd4aa279b __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7a1e1c5e iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8b0b6498 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9e3b8582 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xa826e78b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1a59c9ce ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x741f08af ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9ba63113 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb0dd893c cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x10774fab rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0589595f sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2470cac0 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb5dc47b5 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb657c1df sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xead01831 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3b34c67a ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x86bcc82b ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7401a8a8 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x82e81921 qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x42792404 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4f5da1d5 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x853757a1 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9afcb174 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb1b70053 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2e70f53a mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4f4855ad mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbd241601 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfdf4545d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x02670f30 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb1121785 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x110f04c8 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d3f1762 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ec1ac5f recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50d3162a mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x532ff56a mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54d39f9d get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x554b4033 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x601e4b5b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c21f415 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7713989e mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77b8ce8b mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83650a86 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x88b31b0e recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95a9e452 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa17cb3e6 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0bae6f6 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb46d0741 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc9d74c3 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce76d48e mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcead14d2 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc161db5 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf0a3fbf8 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4f70b61 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x240a0cee ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x7fae63f8 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x5e918bb0 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x3ce33944 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x4bee7944 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xade80338 omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/dm-log 0x00eb3b5b dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x62022f79 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x823913fc dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xcb78409a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1b49ec6a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x450003ad dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x89b0cc8c dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb5e65341 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbe4707de dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe3a17621 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x04b1fd3f r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x2b4bc4bd raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x221eae92 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6117d244 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x716fd85e flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76715d41 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77400061 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9aa5cd44 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c779e75 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d5901a1 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa45c36fa flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbad63f3f flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd0adaaa3 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd147ddce flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe8bffe21 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2910c0b7 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6bcc61f7 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1eb8e2d cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf6f33cd8 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xec14dda2 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x76b2bcdd ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe80a53d5 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x16619547 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x23646138 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1c62b405 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3d5058ba vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4035f08d vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x414f43e6 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x616bcc80 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbb3e03a8 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x01efac18 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a94a400 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45fe53d0 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ec0d2c2 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x501fa215 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x578990db dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e2dc464 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e77c9d6 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x620572f1 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x702cbf11 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x751e597c dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77260c2a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ae09296 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d4ae922 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4bc5d5b dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf7b8ad4 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2edd80a dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7feaf5a dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc9d30be dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4426d5c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc8d60e0e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0b0590c dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7a1edab dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8b4989f dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd956db5b dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfee209e dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe19d5cd7 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7367529 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xefd78064 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf10d2fee dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xaddda692 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xe19136c3 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x17ac3362 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x22f2cc0b au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2bcdcdc0 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x52731daf au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x624db2e8 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x69555be0 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7839d6a6 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcf157def au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xec9e2a27 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x8ea30083 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xc0112714 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xfe41e982 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xa6d74ac9 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xe551a3ed cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x61095258 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe4046d29 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x9bd1e02c cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x35a4c239 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3d82bebe cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf6ad14ad cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xb8f11ede cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3bad02f7 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb09b364e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x2fbab4e4 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1d88ad04 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x74781019 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8a5a7789 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9adc6677 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb0154abd dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x11984429 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x20185e75 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x49c48860 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5c58c763 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x633ddaea dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x641ea8f5 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6b2b343d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d7bf62a dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bd66da1 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x948ba05a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaa48b595 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4ce8d60 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd5108b63 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3749264 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfbca07c1 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x409c0e94 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2353ac15 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4cb16484 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8f386b0a dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9252df9b dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf8eadfbc dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfe886330 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x29c11882 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x46e1ad48 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xda4f4ba7 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xda814ee0 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x614780fe dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7e20eb18 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x07c97c57 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x08ab0a49 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2d33bdf1 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x35c13c9f dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4eab5ded dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5fcfa852 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7356cdc9 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x78b29c0e dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9943de29 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9df9db70 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9f6f596d dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa5002ce4 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf5bf7659 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x210bdf28 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6eb1b3fe dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x89605ba9 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa1d8a697 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbdde2d1f dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x76cb409d drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x11b1a8cb drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xef2ff9ec drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x6b574c43 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xe3d60ebc dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3570d091 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8fb9b7bf dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x9ebef4f9 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xaf8f48ec ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x44865853 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xb7c64a01 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x124fcc99 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x7c5a279a isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xe9b1ed3a isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x8ae4c495 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x22ad3844 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x02283ec1 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x4d1db468 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xe626c682 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x9e31da72 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3383f1cd lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x1d629a08 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xa7b9f50e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd7d29b9b lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x37174091 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x1ab47383 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x58f03871 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x811a10f1 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xe0b100d6 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5f4766d7 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x6ad77af7 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x5bc909dc m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x70b35210 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x702e76e3 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x83b2ab5d mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xd8c796ba mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x405c2729 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x2b4f836e nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xa2ef57f5 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xab399d8a or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xc29498a0 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x681b128c s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7533fdd1 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe4fcd239 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x66aa3f50 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x6c63d80a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa83c8643 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x5d9c956d sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xed732244 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xf49bdd10 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xca67b759 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xf126fa29 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x48194aef stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x447fea6c stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x54dd7a6c stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd5ef8001 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe51f9e3b stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa50757de stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xfa006102 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x569d82a2 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4928ecca stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x26637148 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xcb05bdb6 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x25e95f2d tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1e0851d6 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x25854ea2 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xff7108f0 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x1ec2353f tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x91401dc4 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xea2c99a8 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x855ffb85 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6db4787e ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x6657edf4 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x78491147 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x65914da4 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x57cc05f6 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7e8150b7 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x64b56ac8 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x3dbd650d zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xb1967baf zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1a8c84a5 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x57111a90 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x688876bf flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7f9a01f6 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9c51c45d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd2f85156 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xffe73e5b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8053a8c6 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9d1a82e5 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb7fc2385 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xefcafd57 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x96cf9407 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb8383e2c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfb14777b bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0ef84240 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38bad427 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6751929f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x69d8cd7a dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x714f1236 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x726c5905 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x99ed1c56 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc5d0363 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf4191f37 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9c8d8aa7 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x44c6abed cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6783a387 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x90153367 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc9bde25f cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd1933c1f cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d0f2005 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7010376b cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7dca3baa cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc7049422 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe0006fc3 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe6837b4c cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfd81b32e cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x2a0b102f vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x39143fe5 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x03269b51 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x48078a8b cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4f8cf46f cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x978b307c cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x18f93187 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2824845c cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x36a47e36 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x46b37bf6 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7257c09c cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa2d7ebca cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xba91622d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12ff6b74 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x294a4a77 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2aa51cc9 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ca8ce05 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x58169172 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x66d118d7 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b7e0bce cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x808b8f81 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8db297e2 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x931c6321 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1c86fdf cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa752685c cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb7ef0923 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8f15c0e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba2ea8d1 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbf105bfe cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe279902a cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4a0e1b0 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7894a90 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xffec83bd cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x737a2898 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x01683a51 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x054464c6 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x18e0aca2 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1e71ec44 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2be7a17a ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x48fc7a92 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5c6321f6 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ddbdfae ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5f6d685a ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71e75d06 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x734ff672 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7db637d0 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7e34b5c4 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81e9ef67 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9bafbbf4 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdc5d6c8d ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe4b87aa6 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x07bb4a48 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0907a5cb saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x37587ad4 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39acdf4d saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b21d384 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x56469eba saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94ff348d saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb5c132e1 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd5a9eb9c saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xddaea5e7 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe87ab65e saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x6671c6ea vdoa_context_configure +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x787fe8a8 vdoa_device_run +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0x7fe3d6f9 vdoa_context_create +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xd96c63ec vdoa_wait_for_completion +EXPORT_SYMBOL drivers/media/platform/coda/imx-vdoa 0xfc58eef7 vdoa_context_destroy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x55c50031 csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x679b2623 csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x9f801b53 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xa6a6a86e csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x290515fd sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x2ce1bd32 sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x3d084078 sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x570862e5 sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xdec13df6 sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x097bd406 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x163e1a86 vpdma_free_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x16f0b6e4 vpdma_add_cfd_adb +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1d8a5dbd vpdma_add_abort_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2ae546f1 vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3bb6047d vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x446cc851 vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x48d60a08 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5118bd7d vpdma_add_sync_on_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x54f8548c vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5af8e79b vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x65d23377 vpdma_add_in_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x664dd09f vpdma_alloc_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x677e28c0 vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6c01ce9a vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x762e191c vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x80305fed vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x87c0415e vpdma_free_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8f2f6fa4 vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x97f311f0 vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9b3c51a5 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xa3477cb3 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xae433666 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb7c95359 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc21e5b23 vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd416108e vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdd7f11d3 vpdma_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe8208160 vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf93ba9bf vpdma_reset_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xfcb97281 vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xfefbda83 vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/radio/tea575x 0x19eae3b7 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x226fe105 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d59d0c7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x493f024a snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x58a6355c snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x761b1701 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf9b20578 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/rc-core 0x1279628c ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc029a827 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xe214951b fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x577d4227 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4342072d fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x55c7cb37 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd872e214 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x00afd901 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc2e3c491 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x11b1eca4 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x0c2d7eac mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x5c2ff2eb mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xd11800ad mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xf139a1ef qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x13b64dd0 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xa2ea0de7 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xe23dab67 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x206dd816 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x26ad3d62 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7758c179 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x03d03efe dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e77fdcf dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x486a33cd dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x50bae6be dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6dc3e6c5 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9f0deb0c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb5240a72 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc78bac45 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeb9d09ff dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3ac238ad usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc515ffd0 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc9423faa dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd8c81d09 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe527ef3e dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfd8d3f94 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3a938a06 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x16b1dc27 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x274abe92 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4b28bc69 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6154e8ee dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6233bc4e dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x86a83216 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x947b0329 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcec74002 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe7a35fbc dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x3136994b dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5adf28d0 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0a22cf5f em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x1418bda4 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11bff7c6 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x11c3c212 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2e1a6b52 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x43e6f255 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5412c511 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x574cd9c7 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6272de57 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd6501ec4 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf98eeea9 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2a65d52b gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x49ae3f2f gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6b6ae245 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7b052718 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9cdf076f gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbab89eac gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc6a8a3d7 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcbdc632c gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x193df997 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4065e002 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x73cd8ce9 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x06cf893f ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2d0888f5 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2aaba28e v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x324b65c2 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x77a33f48 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8a897fd2 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xda78778e v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xde68771b v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5c009ace v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x74393d56 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcb6abdcd v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xeb2c91e8 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01a2114f v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02596976 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06063f43 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06b9f857 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0910e32c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09abf2f9 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ebd0546 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x141317d0 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18551b62 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1880be11 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cb7eab5 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1eea8b61 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21073ea4 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f624380 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3933acb8 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a1e7412 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e165938 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x426f75a5 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43b73b3c video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44ac4099 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47eac5fb v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d2d82a1 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x528a4741 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5917a363 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59ef0940 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b702f86 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x630c56b8 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7984c35a v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e002b5 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e55887d video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x902e3402 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99fde7da video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c0d9ca8 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e94928b v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f6eff17 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1a7caf2 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa51db633 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7588624 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0d0ae8f __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb52bf8c5 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb695b96f v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd8afb69 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca2e71a1 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb3b7598 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda38e249 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe18e91a8 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe56d6015 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe715e23a v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1062047 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4bcde39 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6b7b30d video_device_release +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x236cafba rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x832cc355 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x8c518f36 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xcf9277f7 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xee6c71bc rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0c9487da memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x21cdee15 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x284b719c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x365d1c57 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x76b1c91b memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8bee3c3f memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x998abc07 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb3fd71c6 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7274c6f memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba121dea memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbfadc09a memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd825549c memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ca4fe7c mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15971fb8 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x171f0a49 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x232e7c53 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3cfdf4ac mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40382595 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x495325ba mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ecb1c90 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53f350dd mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5400d225 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b0fcec2 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7391353f mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73e85d4b mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76bb7d8a mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76d71e69 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x799b69d4 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94bb73c8 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab17cd53 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf6cff84 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7d6b9e0 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc2e9aba mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbff9553a mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc8d0570 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd209c0e6 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8b1b557 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5c75341 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xee16f697 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6b5d28a mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf96e23a8 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x149fda1c mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15c4ec14 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x162488dc mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2449dd5a mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26034a43 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x29326ea1 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32285914 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3aa3306a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b25de48 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c42c2fa mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c4eeae7 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x669a1709 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94e6eeff mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9bf24440 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa462336e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa487f260 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb98c66c5 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba5450f6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc11e00db mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9d55a30 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdab05d0e mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc164af8 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeff1e5a6 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3f62d85 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5fb3196 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8d98d96 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf90aba51 mptscsih_shutdown +EXPORT_SYMBOL drivers/mfd/axp20x 0x83377571 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xa4622cd5 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xec1a089c axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x1856a49d dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x4541e2fa dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x53261bba dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x09088e2c pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa02d2ef9 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x33fc1209 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3443b2c1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x428c05ad mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5aa8da15 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5bb94b97 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80cf9051 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x97de7ec4 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa07c7a28 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb57decfc mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc29d5850 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc8c5844 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x235ea082 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x29966f51 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x4108ec6f wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x84ced6e5 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb6f46d7c wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb813ec5f wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x480e17df ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x99ddb076 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x520291ae c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xd8cfc564 c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x1f17f7e7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x2721f5b2 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2c1b541d tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x2ca461cf tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x3225bd4d tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x64258eb3 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x680419eb tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7bb0feec tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x82e49583 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xaa9ca2ff tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf4cb006 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd6f349d6 tifm_alloc_device +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5b38942a dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5e0dfdbe dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xae575930 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xbc041ea4 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x59632804 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x73511c7d mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x08aef59c cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52e98bdc cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5f4b85f5 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb02702e8 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb7386818 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcb349c40 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe736fa6a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x94b4befe mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x2ce9b2b4 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x4204dff2 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa3fc1696 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xadf229b4 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xdde2ca9f denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x24351100 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x7eb47fa9 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xafedd0fa of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x01266736 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0f23dc78 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b114f32 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x254ddcfa free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2dd06fee arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2edeca73 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3bcdc00f arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f5da68e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc2240d23 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe06871e8 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7e34438 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5bdd2793 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x709a6816 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xded94ca6 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x047f4507 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x122b697c b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14acbbb7 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1629f64c b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17dd36be b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x190145df b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x199110e9 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19dd2fb5 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23d11fd6 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x28339294 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2916c7b6 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3fde05c1 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49784084 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c685721 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x603cc60b b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c475b9f b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74f9efb9 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x76739557 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78cfccc5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x860c42b5 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8824ef17 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d1aec64 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f6dd3c9 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa74b2f81 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa77ba684 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa3f1ca7 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac9e1ec3 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xae8c9bc0 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafe2b045 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc04d103 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfedaf4f b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc114e36 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd099f835 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd819eedc b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xda94d9e9 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdba4523d b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcc1efaf b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe66fb6af b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe784b388 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb8ebf7e b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfec996d6 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x04086095 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x10457c57 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x33b9ff68 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8f7f4acc b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xaba604f7 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdb434868 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4711e5ce lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x6200425b lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x77011de3 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x104baba5 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x14d68f45 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x9c47b9d2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdffefc7d ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe7528f4e ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x20aad3c1 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7bfbd7ba vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf94ae1bb vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x48fd83d9 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x589a201b xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd3ee86a6 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd7d44a07 xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdd11431e xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe63c509a xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xeb5b3615 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0be32df6 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x330046a0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x46404a24 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x472ef4dd ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d937d83 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b0f2e56 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8015779e __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbcc8480f ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc324ada0 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6f91ad4 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x450413ed bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x096f4029 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f0148a4 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x22bd931d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23ce5d4a cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2adfe26d cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2eccf7f4 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2f40dfc2 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41923d98 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5013a7dd t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58149bb3 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77189207 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x80960330 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94b9ce32 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9871415c cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb75f86c3 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdccacfca t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6ea83c6 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1293c9f7 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dc7e2c2 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e70c4d7 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x250bbefb cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26fa79a1 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c17401e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x323a5a41 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32c2b871 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3799efa2 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38be110a cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ec0a5d2 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4024b9f7 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4792e429 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5752e901 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60250030 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6291fc99 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67b3d07a cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b2ab65c cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b3136ac cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e6fccc6 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ea3fb05 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x705d4bb7 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75141f79 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89115b55 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x947d5842 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0430b43 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4a68385 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac7ccdfb cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae0f5015 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbec354c5 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca63bc85 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfd68bf8 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0326dae cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1fdcf76 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd28d683d cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2c73312 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9993921 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0c1095d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe33f821d cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee4b6bc0 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeea48859 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3d6bf61 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8f6907b cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb084f6d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb74cb8f cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfccdbcd5 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x31fb12c2 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x45df8adc cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x95af4a1a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa800ba08 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xca7db31a cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe1fd1406 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xffbcc1b4 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0db0f539 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3d4986fd vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x57d70ac0 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x736688e8 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xad29500f vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb28b8d45 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x19fc9bb1 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd7f6b050 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x341b0855 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x33776c8b hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x61348f6e hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x64397385 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xcc7ece39 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf44690b1 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xe50ed69f hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2629cab6 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2ba08e0d hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5b880b0b hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x72bed1ba hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x823f9a47 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb2ec9cbb hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb75e10bf hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcaffd102 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x55af7259 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7b9f5c05 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x98d2017e prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xac1cb293 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01eac6d4 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x084c0e78 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e8ad43a mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eed1272 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25013ee8 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26872362 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab8adcc mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ddba37b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f8dd2de mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ad0f472 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x512d0e57 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513b7f6e mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5836e5a4 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587ca35b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b691682 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de5c96b mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x632d5016 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f3bc692 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73a362dc mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7abbfc02 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x891cb517 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93697876 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x991c8ddd mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99dca5db mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2574cac mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa602e9bc mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa911df0a mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf56efd2 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9c6a1b mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe6503c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc365a863 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6146fe4 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc974eaad mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbe9af4b mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc984d7f mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd155944f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd59c4c3c set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd96e4d7a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2786f08 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe365b3b1 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2858d3e mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2ca1deb mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf562697a mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd389dd0 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00efdb71 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03fd9016 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x053eece8 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05a3cccc __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068d27c6 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eabc69b __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f12a244 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2495df __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f79b7a2 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12b29608 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13668820 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1570e8ec mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15dd1076 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a2a602 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x180c8ec2 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x199a7f54 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19a5c2bd mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b0b1ed mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bfbb09f mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e0f75e4 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f6aec1a mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21026d82 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x210d9fcf mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2189f979 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24cb7ae3 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x250d6235 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2731d606 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c1f7cee mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3043ac28 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3684744a mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3699fe83 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a009b7f mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3a78b7 __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eac95a1 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f934933 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41847615 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43e69227 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4591fdb7 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47dd37a9 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x491b50b1 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499a2e8a mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b09fab6 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd059a4 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50a0d7f2 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50fda464 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5372471b mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5486d119 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x572b4736 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57d01893 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b636f0 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a81df96 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd096de mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e29a744 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6544b7 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68116c38 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d9d60b mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c390fe8 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ca3a51a mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d8adf68 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x764de790 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782a7076 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x792370f0 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e04da __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79ac0e8e mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a2387d5 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b98e402 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ba7cdbc mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb3939e mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x813526d0 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83743069 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83eb7a8b mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d23f44 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86e77eea mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a9041d6 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a9d191b mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9273a002 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c69373 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d20689 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95da92a6 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96df2d1b __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993132b4 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99b17412 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a44da58 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a6e4cf2 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a962fb2 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab0923d mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ad50746 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c707929 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb8f3c5 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa294f619 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa693d4dc mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa73965ec mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f44bfc mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabaf8a3e mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac90bfe0 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf7e6059 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb365a2db mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb52f582c mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb58d5723 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8d018cf mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93bf1e5 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac340db mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc391984 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc8955ec mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbce1c6d5 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb611c1 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfbd1bad mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc017af6c mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06a92a3 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc14c9e77 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4d6a4e1 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9094f8d mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9c0f6c __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdf6217a mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb37f5c mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c45b08 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4a2941a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6d6e6eb mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf595053 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0895540 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1910385 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe34a13d3 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d171fd mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe45a1b92 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59c694e mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5d21ea0 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ed630e mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb32d49c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec0475db mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec951948 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeffb37f1 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf117c221 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf23c09b5 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37e00ae mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6947744 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94cfda1 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb054910 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffe83b2a mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x49d42d31 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1a76e5ae mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f20dd89 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3fc1af26 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a3f060 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x473e3e53 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4cb88d86 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x654ec208 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x88d4f8cf mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x93a4cf2e mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x93f3d2a9 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x96f52c4e mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc416f8a9 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9e943b2 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeadca679 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf139821c mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfa97d998 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1d945668 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x39803400 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9de829eb mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xea6bb9c2 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x076b7530 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08ce86c4 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0aaa4c8b ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b1b7a35 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c5d94d5 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x194c88f1 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c2df3f0 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fe8a9df ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ec1d122 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31365477 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34e821d7 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35323800 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3558d743 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3882455d ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a1ffddc ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42feaa93 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46ba14f7 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d8685f5 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fb2e470 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50392bdd ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56d5fc94 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58c7b300 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58e58e50 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6399c3f3 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6790fdd3 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67dfd4a5 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68140230 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68cd494e ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69da6493 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77efafb4 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a8b84d5 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fb93a5b ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x807507b4 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81b9decf ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81fe51cb ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85f201ad ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a9d7a78 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8aec86e3 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d9df76e ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99edf920 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9aef5680 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1f81928 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2b354e0 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7532ff5 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa86c7d04 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab742465 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae76d220 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb27a5e71 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc483a29a ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9c44524 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd39acbd ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd111aa5f ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd66eceb0 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd68821c3 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde327434 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe24c1f9f ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6d33eea ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe85e6a31 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeae15cad ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeae1bf66 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf039a621 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1d57e33 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4792f36 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc95bf9f ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff3682ec ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff550ebb ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff990c35 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x374718a1 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe09476bb qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe8405068 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5e6cb82c hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x61061984 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8a778c9b hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa4350446 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xab3c0426 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x24067e41 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x2593ea1f mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x4cc93b81 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc8019885 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mii 0x1f8aed3e mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x4f47a7d9 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x61b5ca2c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x6de81620 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x93ad6ff0 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x9e2734ef mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xac14383b mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xcd1b1ae8 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xf45a857d mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xfc1b1718 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x55af0776 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xbfed1ac8 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xe6f217af bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x224a9cda pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x900a9c01 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfa1cedde pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0x4b5df475 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x036fd86c team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x436567c8 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x459c956c team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4c06b01e team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7374b833 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9fccf46b team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xaad6e44e team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf651804e team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x590da1c2 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb8faa8d6 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf7d9f25e usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1329279f hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x19be65e1 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1e8f155a unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4f418147 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60c991b9 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x700546c3 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe1458b09 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe38ab5ba unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf92b0d5d hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xff701fe8 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b999f68 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2637843f ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x272f28ed ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2a458778 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x448bf8ad ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55c08e52 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72b3ad3a ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x794a38b9 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa30d3179 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa31d1b58 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8c3db86 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf0ef8c6 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe16694ac ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07d57a65 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14c8fc2c ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a618742 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fd3498e ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2337a3da ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25c3b4cc ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ada07ef ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2cdb7292 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x300ea7ae ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3aa3098f ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b2efc13 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c5b0b98 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43d87636 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cab7529 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f5a5b89 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54906a0b ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58088b2a ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58db053b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5db3960b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dee1e80 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x613221ff ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65798d35 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f5db0c9 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73ad2230 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x759d0e32 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76f62e3b ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8581f6f8 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8bc79df9 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c91d470 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f1bc15e ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98e9dbe2 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b9058ae ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa873e11b ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa0d5768 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadd0e050 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1c6fd1d __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbba8df42 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc11e8d6a ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2c92cac ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc57e7e2a ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca94a4c0 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcaaf8a68 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd167c94 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xced035da ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd189fc1e __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd935f719 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1e038d4 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe217916c ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe370c4a6 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe46e7b86 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe676f29f ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7e01b3c ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec9d75e5 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf20c7b75 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf590a6f8 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf71b2517 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x02f404e3 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1806bd3c ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x334b1b2a ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x363413da ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e27f99c ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41291fc9 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4511e2e5 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x486f3c24 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5499ddec ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x57a87839 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f0a2931 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7d1ff899 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x912fc758 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9a0b7508 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c77dd8b ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbc51e951 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcdc3d4ec ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd3951594 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6fffc17 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xde235f84 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe54b482e ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeab15e9b ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33bf7164 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x479c3e96 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x59d1e771 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e3ec394 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e5a38b7 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x712f3a77 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7ae659cf ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9074567f ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9aa7331b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbed05747 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfdc6c5c4 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03a15059 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0749351c ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x350eff87 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e2d17a7 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4afbb63c ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b195b9d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f92275b ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e08d355 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63fb93d8 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x673b397f ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fe3bd4c ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87ff2207 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x954e7395 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaedbd27e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb97e0484 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4910d2d ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xceca9df9 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd47f51a7 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5b0b481 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8ac7ac5 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf05f0827 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf064b1c8 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf794ff65 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00e0d3e4 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01e88495 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x034a6efb ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04370d50 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0768de30 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x081dca01 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08a8b0c5 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08bb0622 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x090cfe0c ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0aeec595 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d0fe163 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d2d7bab ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10782cbf ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13525c39 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17b481dd ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17c954e3 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x192585ef ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x212d6bf2 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x249f45d5 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26b32568 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d529b27 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e651d01 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a4ae33e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a8ac4b5 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3eb65597 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f78c066 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fa2648b ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fbddeec ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444959b0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x466ec59f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50b8f672 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50dfc05f ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54c2943f ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x560fca1c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56b83067 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58921404 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b0990bc ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c25d08e ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c621c94 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dcbda53 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60b7d843 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61f505fa ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6236b1b5 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x673ba714 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69a58702 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4cab40 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fe4c92a ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71d1c742 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75183bf8 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77e191e5 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7be13a40 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d934ac6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83a4ad2f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84a53650 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86f286ac ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x880a7b3a ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88105cc1 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a03de8b ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a15de99 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93e25dae ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99365d9f ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bdde6b0 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c46283d ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d0b5684 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6244fa5 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa668ef71 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9915e20 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafb8bc6a ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb06cb6fb ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb281554a ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3ca2f1d ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4336fe9 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb434f633 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8ba2e6d ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8f1f106 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbfec034 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc58f797 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc5b721c ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe586242 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1d29211 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2113a5e ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc21ca392 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3c7fdaf ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc446e52d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc62aacc9 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7407a08 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc89cbdec ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb9602ff ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd204158f ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd48b226a ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4ae5aea ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4be033a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4e5d31d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd50e4f0a ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddbebc57 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdebb3e9c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe018eaff ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1576ef4 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb0bb9a0 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeea26ea6 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeff8bf39 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0da5f83 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf158d3dc ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1c1e8f1 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4405056 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8455250 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc646a43 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3ad34410 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8089683d stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb48bce0c init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0dcc2186 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1976e5bc brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c6ca3b8 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f40d18f brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x52b59e7f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x68fb5448 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8375dab5 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9bda1562 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9ed41eaf brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xaf046ef9 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb3e62328 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xce0d95a5 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe355a48c brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22fb22d2 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26dfa18c libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x277461e4 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2f6e455a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3c77cc65 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48c6b707 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4921c3dd libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64794b79 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x684a124b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6fc9e671 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x934e5800 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9bd1bbce libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa1b618e1 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcbe80dbf libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcd22ceee libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd4f05569 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd628d492 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xead94cf1 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf560de17 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb55eabb libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03f3c4c9 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x098a9acf il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x107ec8ff il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11231374 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1565be1d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16299cd4 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16aa3814 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1995aa64 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a80bff3 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fc2aeaa il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2168bd94 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22108f1a il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x287e1f35 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b725a48 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d5e9f90 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fd9ad5d il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30fd499a il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x350d57ab il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc885e5 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e449d5c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f8863b8 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fe7e6bf il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4104e49a il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4130e037 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4197e21b il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48a19641 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b4084b7 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4baa3e4b il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5276eda8 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x528ab5b2 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5886b76c il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5914ad0a il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cb14c3d il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d90e507 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60a77b53 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62044b38 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6317b984 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x676cc81b il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x690ac1db il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b9cb236 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d0d2520 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e635106 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71739150 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73719d16 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7edcbaaa il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82bccf45 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83374ceb il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8566e8a7 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86c45328 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c132eb1 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91d4f765 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x927bbedd il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x960df6b6 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96539343 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9876e001 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99d871f9 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0e4591a il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa254af41 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2760e27 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3f0cc69 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa48c73d7 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7c99ca9 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa85a1854 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa86c4fe8 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab44c5f6 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaba47626 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1ad991f il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb384b6db il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba425a58 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaacc0b5 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf518e18 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc045a5fb il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0a2fa71 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2d51e52 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca2e783a il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb60fa70 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbd2af6f il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf7a65c3 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd01f73f1 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2f8ea4c il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd657be4c il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf549a56 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfee4d19 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe06d8afc il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe352ac91 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6714665 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9f2de08 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea6865c4 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeaf29b3a il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb9c86c9 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebfab340 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed2c1edc il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef667458 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef8049f7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf061782b il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5a0e47f il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7dc0cd8 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe83ef5a il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41fd5a83 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d0b3205 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bdc4afa __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe49eefd5 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03605dc4 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x09886145 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1823c808 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a50c30c hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27362138 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38dc016c hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3973c407 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x412834a9 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x439e7f5b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c2b121c hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4f0b670d hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52c64271 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x54962bdc hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7faa914b hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x86e5b65f hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8a3e6045 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9036814e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x92f4e2df hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x98995421 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb8b6bc4b hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbcb49b7f hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xce98daa9 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdaa8c372 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe1f5bc54 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf214f33d hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0671cc66 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0a1b1078 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x17822efd orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x26647453 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2d386425 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x31aee159 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x35f7abaa orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x413db0ea orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f568d80 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f979cdf orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b0ce73e orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa102a2ad orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xac07ab8f orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeddb9d35 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf7331fec orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x519fca49 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xbfb424d4 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x023ebec2 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x090f63fb rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0941a766 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aa0a84e rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fa642df rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a5aa131 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31357cf0 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32f62010 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3900589d rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41a27d49 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c60fc14 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e7391e2 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ae17208 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b386ea3 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b3d88b5 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6503ad0e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6baf7f26 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c74de29 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a64972b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b9a0589 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fb2ef2c rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8007b71c rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x800c6d04 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fd9bbf8 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a149ff0 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa178756d rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa57a85d2 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0b7d077 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb102cfde rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1599fe8 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6a019e2 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbda26483 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc99c372d _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca2971bd rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd21fe63c rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3a594b3 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7e18ec8 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde6f8af7 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde75e19d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeff02f42 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbc2966c _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3526c37d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6e046e31 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa40fc00e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcf7e7bcb rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1e58e68d rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x21fea72c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa05dfb75 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc6c3c600 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04d2d0af rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06741abe rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x103db539 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7277f6 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22103fa1 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x221d6da3 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37afba36 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e502223 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41c21987 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x445f6c7b rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4efdc3ee rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x577f21f0 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ce85c04 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f85b990 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6216f18c rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67e7b41d rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bc8cf8a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7319df2d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fbe6732 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fc00ffc rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa018345f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa82903a3 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaddc925d rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2070032 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc698fcf4 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcad4d7d3 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcd8a5ff rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1443213 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf40ee71e rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf62507dd rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfad6106a rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xe38cd2ed rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x7e4ca560 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x086ca85f rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xe7aec361 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a195daa rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fd302fc rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x113a339c rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12c68e2e rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13db98ff rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1540a0be rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20a0fd5c rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21185570 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x220700a1 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e4f5285 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3553e5b1 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bd2b998 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x488d1c7f rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c8ad0de rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d58a173 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5347139a rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x556418d4 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56902d91 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5aba1a40 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68c58e07 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b082cb5 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b988be9 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x707a50dc rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7570d651 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77e476dc rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87e08022 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bffb348 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e5b9789 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9806e606 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x993e56be rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x995b42a1 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a30ab1b rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e120cb9 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2b64082 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa353170d rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab9a425e rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb621028f rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb046121 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbdf89a09 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2d72c42 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc540d478 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6496482 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9100354 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc395226 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf050292 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd06ab7e6 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1a29e97 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7fbaeff rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe2d25efe rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6e13196 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe8c3729a rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed8d2762 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee98ce7f rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf0d1b45d rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4d9cf53 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfaf44589 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd160451 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0ee47060 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4957360b rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x62bd882b rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xbb66f8c0 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x016c96d6 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06169424 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e682182 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15ae0891 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28ee60e4 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45258a75 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x48118566 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6521d495 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66b35be7 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7809e6ad rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d94ac48 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90a30163 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9a576d87 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3062960 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc1324e56 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0958903 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd364ca13 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9a79fa6 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf019f1ce __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9dc95cd rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc104666d rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x51f90c5f rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0f4c6100 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x457ddea6 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4b53757a wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd1313466 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x631b6a14 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd1bbb31d fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2af047ec microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x76533fbd microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0ff25b22 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6906cc87 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xead55d0e nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x2bfb48ed pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x03e7dcf7 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb3e22c17 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x23bcf963 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x44a20d51 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb467a9ad s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb87161d4 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x147c1636 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x25ce0391 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4cf73441 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57c08953 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x61224107 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x66aca161 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8ce44674 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa42ead46 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd2670e76 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe2065745 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01b3d8f2 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02d110fc st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x03682477 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e4d26be st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14625bdc st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24b60ef6 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3d114e65 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x43770855 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51fce29e st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6cc142b4 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7691b1f2 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x80ff88e8 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa0c82033 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa244d487 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaf166ec4 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd3ab37f5 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd99b52c9 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe924f5d2 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x03ddaa23 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x059ffa1a ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x12a78d78 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1eb1c789 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x280ce326 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x29199e6d ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2af9ecf3 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x40940b20 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x5297a00a ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x52a4b855 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x602cbd45 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x7ba7db8f ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x9187e408 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xc60c891e ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xd01aef51 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xd6d47959 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe18a23e7 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xe501975b ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xee86e8dd ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf09eb75f ntb_msg_event +EXPORT_SYMBOL drivers/parport/parport 0x1d963627 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1df45d45 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x3d8a81f0 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x3daf9c7b parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x46ab3d23 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5690403d parport_write +EXPORT_SYMBOL drivers/parport/parport 0x5941630d parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x63266638 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x65b13075 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x6c7ccf6d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6d293498 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x75a22fb2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x83cd9fc8 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x85fa040a parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x8c596425 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8f2f47cb parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x94aa9457 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xc33cb3ad parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc4603c04 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xc8afe833 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xca30ec27 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xce31e2d8 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xce718223 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xcf208abf parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xd01bb568 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xd69ef592 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xe49f5358 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xe6fb7e6b parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xeaa33218 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xef581e44 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf2ba7298 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x2bbf4b01 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x7d779c0c parport_pc_unregister_port +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x02dca589 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa769220d cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd6061bc1 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe0d20c88 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xb7174beb rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xcfa85fa7 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0493977d rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x04e24393 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x07200caa rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0cf058da __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x210a582c rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4c31a287 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x540dac3c rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5da5625d rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x670cac9e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x92d1e3a1 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaa364b44 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb018852e rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc16837b4 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd55ae80b rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe8bae91b rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf1d265b8 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x5060744e rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x962f19e0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1d5ab9b5 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x999aefa3 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb8fa0919 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe14ca3b6 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x17d55341 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d17224a fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x34cf0258 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3966a2a2 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x568b8524 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6fee9a08 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8fb8459e fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9507c4b3 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97fb8589 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc5c75930 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfba65170 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00abb8aa fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01113ea2 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06f8a556 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0720f4eb fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b478eba libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee52c69 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x103253e8 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1175b7a4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x139e29cc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x191fbd46 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b8a43eb fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29142a1b fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2bc68f45 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34a5720e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36f8a608 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fc186bd fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40726ba7 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45cab9af fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4667b6c2 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c0f037c fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61ee8e71 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77ddc7ca fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78219fd8 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x785a2bf9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c3e80eb fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84c1845a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x858475e5 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9030dae4 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x954d6f50 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9acc39a8 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b3ad711 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c76d354 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0d7982e fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1ae3da4 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacfa74cd fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1d13bf9 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2d8cdc0 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80157e7 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0038c9c fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc83ca106 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc861d981 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc2b6686 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd483d727 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd51946ae fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7db14bd fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9049f84 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbcf0ac1 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe40b71e8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5291f15 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8a4e2ba fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1bb1d36 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1c1aac3 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf32f2241 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf555dc75 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5a18bfd fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf77e6b6b fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfadf3080 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfba1fc6e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6810aafe sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7e66416a sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xed465073 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x659144f3 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0098f0a7 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x074478f0 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c6354ca qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x54a57c41 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5b2042ca qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d9d32cb qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbf0561d5 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc2e1e2b0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc9606593 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd14d2b6d qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf75cc25b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb84a2ec qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/raid_class 0x4e0282c2 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x5be78349 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x629c191c raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22cbd992 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2507718c fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x368742d2 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3aee407e fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4600c473 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5988d183 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x641e949a fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x69fd2f42 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b372ae9 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70b92b89 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x787641b0 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad3ef3e5 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xad8fea6e scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc773bc81 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe65ec62f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe88774b6 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd1952dc fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x025028b7 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04c3b51c scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0acb7137 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b50409c sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f0a235e sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18a2d845 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b7fd0a2 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ca9d2e3 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29a0126d sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cd731aa sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3eb4e94d sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x43d83c57 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49b50bc0 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53291159 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x567f3471 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x618a757b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6736da9d sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77bf6723 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x875e7a61 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ab1acf0 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8db688d1 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f56ac3e sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab8f5999 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc682ae36 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0124342 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8cca3d4 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1464a00 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf77f9c95 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfffbea33 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x66b01989 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x69312ca9 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x74495c95 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb54abb26 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf48d1b6d spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x15276e0b srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x46753faa srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4f1cb838 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x85795566 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xccf5abe2 srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd76d2dbd tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xdd9b2fbf tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1c3e1287 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4082ff3b ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x604de55f ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6dd96a65 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7733df11 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7ddcdc47 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xde1d6eb1 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe4e879bb ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x8801efde ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x9bff4ab1 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0597f357 cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0a322417 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0d344c47 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1adc7386 cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1e408565 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x29537aaa cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x29cfe8c0 cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x31b45f26 cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3e261130 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x437bfc1a cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47ef9293 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x60db9531 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x64a280fd cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7525fb04 cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x99c187ae cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xbea6d30e cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc7540ddc cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdc80e661 cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdd772c11 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xeda81fb3 cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf616b291 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc453070e of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x088bba36 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x15ec926e geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1dd132e2 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3e8c5745 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x44713a1b geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x47c53f49 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4a97b544 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x64818b04 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9c1e714a geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb79ae9d9 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbd523a68 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd0a6f833 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe783a9fb geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xec8e5e31 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xedc29206 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf1b3a372 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfc2b5277 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1b4d73a9 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x204c442f qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x415827e0 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b085d33 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6df8ac84 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x950acc64 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x970a0c74 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xad483206 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc1572854 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfcd9ecb0 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x694c56fb qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x69dff9ad qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2a4f6f45 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2d5d592e sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x303564a1 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x36cbe63d sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3a5aee09 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x428b4104 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e349832 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4f4b2b70 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4f91c76e sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x56af5d9e sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5d6d08b0 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x65b759cc sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d5ab767 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e5745b6 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x822c5ef9 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x863ac23b sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x94c455bb sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaaa7b2c6 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb0e9b58b sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb2c59baf sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb651d7d1 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb802cbbe sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc69701ed sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc80bb857 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe7a7d28a sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf1a1ca53 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/ssb/ssb 0x0d2b53f8 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x14c1f038 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x15390086 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1e565346 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x33f069f9 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x3947576b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6ec066a2 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x8d093b08 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x939c13fd ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xbfa58a5a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xc189fe92 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc363ae6e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcb925889 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd141ff07 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xd2f449cb ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xd73b87f4 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xd7b9b894 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xd9df5208 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe48a234e ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xef6644b1 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11d2e71a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13f0dd8f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a854672 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21e073f9 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x247345dc fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x26cce7cb fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2bada5b6 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41ad9353 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4231c288 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a7f67e1 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x586fac9e fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ea733bf fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x609a9399 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64a7b758 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x651efa5a fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c1e7183 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x779d39cd fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ecc945b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc032f08e fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd46a9496 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4f11e89 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3dacd61 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8029a47 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeda38154 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7c8fa3c fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa712ea84 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe0ff15b4 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xfa0ba19c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x2aaba43e adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xcea38312 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x85a79eae sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4469ac28 videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9d6ff295 videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xab1aa848 videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xdd612afe videocodec_unregister +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x77144505 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xa2114b34 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00d90db3 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02c73801 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0427875e rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x113acb02 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1225c8eb rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18fd8434 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a208c26 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x226a7780 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26c2e3fc dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29223476 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d43061c rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2edf8816 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x465b4e5f rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x489183f2 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d1733d4 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50be5024 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e0a92aa rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e7aba54 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x660b19bf rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69c2623e rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6adeb301 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x709008e7 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x757be055 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77d88cb7 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80a46e96 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x896ab134 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f5479c2 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98b97a4e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99640ef3 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a79e5c1 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b00642d dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa16585e6 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa40944f0 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6c06e0a rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabd4a4a0 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb42db705 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb49b07a7 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc010a3b rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcbe6a74 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce8caab7 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1b74af5 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe248d722 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2b19ca2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2d64012 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9b6c1e0 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf06be5d4 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf40ad7be rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4c1b1ea rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf944831a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01ecf92e ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08af029d dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x160b07f8 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x170bbb3f ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19730708 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f429e4c ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f71ff70 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f947a1e dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35bd0292 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x377252a4 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e3353cb ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fb606f5 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4670d880 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b0cb7e8 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c1ae174 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6176ffe8 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63fc457b ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x695f7629 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6be648e2 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e22d2aa ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70083147 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7119ab80 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x737acd56 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bebd529 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dfd3d58 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fd8988a ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8885cc50 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89156293 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97dc112a ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a3736be ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa391e2a0 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa2e86b9 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad81e419 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf3a9b2d ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0a01b9f ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb376d0bf ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaab1ff8 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbad47b66 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbbb3d9d4 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfb144bc ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6df8688 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd68f9394 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd94b6b3a ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9c3dc43 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe181bd77 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5c7a97b notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6b4a19e ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9f543e0 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed9932d2 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeefb51ef ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeff5c478 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf667d45b ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa9f44a9 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x068f7b5a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a2c9973 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12c65a3e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18e56c01 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e5262e6 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1fdcb560 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x212cf7f8 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2db994e8 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34eebe6d iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c062171 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f203b27 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42105e51 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x527c4f39 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x546b66c5 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x584b096e iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58f90227 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b1dac37 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f469022 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ff472b0 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x614cf813 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70ce921b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x765829b6 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a612322 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7df709d7 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81057cd4 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8605cedd iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9048c8d7 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9287ed3a iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ff8d5e1 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6988550 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaebe4e17 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9908c82 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba627812 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfcfbcb8 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd75c0566 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd76bf1a7 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd8719f6 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf12589ab iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf40a49dc iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf71a1bd7 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf83b450a iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc9db875 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfddaa0b0 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff94b979 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0568434c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x07f6a2bc target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x115195d8 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x149274ce target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x16fe4e23 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e5c2ced target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4385ed transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x30a3bd97 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x31f7ee06 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x33da6360 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x36b4bba1 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ae34b73 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b924ab2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ddc52df sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e9c748f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f3bf09a core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x437188f4 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x56ae832e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5831692b target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a5387ce passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cbec000 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6033db77 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x698a92a9 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6eeee596 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f81fd02 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x795365ba spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b0f275b target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ec429d2 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x81a5f335 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x88cb8aa8 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d201781 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e0f2bbf target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e64d85e passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x917687b1 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x92ad6518 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x92d2b7e5 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d52eb37 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0a99a10 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa228b76e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2c0eb5a transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2f4a2aa transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa39c64b2 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xab0ad794 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb05aaa3d transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0b362f2 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2400f6f core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4c8ba11 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb93c3103 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd20714b transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc981adf4 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1434ec2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8e0c7de transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd912722e target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdab651a4 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xde7b9f46 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf088554 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1fc2e0e target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xe47d2386 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9e6b8d6 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xea2be365 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xea5074fa target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb1cc5ee target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xedf5475c target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1c58d73 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6319e32 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6f185ff core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8b102f4 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf96b2f5d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa5a587e sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb3a34eb transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd2c281f target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xfebeccc4 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xff2f7a11 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xbd8413c4 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x614be0e5 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xf38ede42 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36911e57 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39b30b3f usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x589617f4 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5f7eb1a3 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7770b833 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7a813bc4 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e5607f6 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaa60e8aa usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac51cc8b usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe2f8da00 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xec821e9d usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x008f849d usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8f17425c usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4a213acc mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4b3b9424 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x674de578 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x906709c3 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x94d3ec20 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9af24898 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xedf9b4ff mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf99ba716 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0x095af73f vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x0beb34b2 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x5665208f vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x58bd42b3 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xfab0a04c vfio_unregister_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x3ea5890e vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x6092578b vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x261fea85 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x26c60a08 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4164520a vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x5dfbeba4 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x723ab668 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x79b927f7 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x79c86ceb vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7c007927 vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7c2e8833 vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8aeeecb8 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x915490a3 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x9537eb76 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xa04abd3a vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xa37c8cbf vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xa924b2e0 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xacf68b37 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xb061dd9f vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xb5411ba6 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0xbe7e011e vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc4721ac7 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xcef0e131 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd8ac74e0 vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xff44dbd9 vringh_need_notify_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5c0af1d6 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9ac8cf7a devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xea46afff lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xeadd6bcd devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x27d9482f svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5ce7af2f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5ecba331 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9c523103 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc1f20554 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf36dc779 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfed53325 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x169bceac sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xb9274adf sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x6946c451 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x4a18017a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x40ec2141 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x22d4b035 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x85d9fc79 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb2693684 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x25e4a8d4 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x285665e5 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3ded4cb6 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc0b379ec DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x4d0d9469 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x22cae7ad matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3a9ee569 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x66d432ed matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc452b15b matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xffdab2f4 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x577055ad matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x887af498 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x047b9964 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3fcb81d3 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x480c9bc3 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb9e57470 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd6ea1a38 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1cfbeb0b omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x38601a8f dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3ae1b80e omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d5d4c79 omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4d446cd3 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x548240a2 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5650c0fb omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5f241235 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66d6282d dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6a5721a1 omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6e9e3e97 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x72633abf omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7915708f dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7c46a7fe omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7f9ca2a4 dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x812ed27b omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x89fe9396 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8bbb693d dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa448be06 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb5c90dcf omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbb198f28 dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc78fc3c1 dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xce466b8f dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd84d442b omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8d1ded8 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe7f6478f omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf75603d1 omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf86e746f omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe073bd2 omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe29533e omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfee7a029 dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x21d31798 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x47de69e5 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x618ddb8f virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf5d3e32f virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x84b9de91 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xda2a14b8 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x19924b17 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9b300373 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x54409849 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x651f95c1 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x983bb9e3 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xedc32d12 w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x09f38233 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x0db95f21 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0ea62313 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x187627a1 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x204ab4ad fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x2093cd29 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x2f53b7d8 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3b8ad008 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x438dbe7a fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x4942b12c __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x5504a63c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x560b57a4 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6098a4f6 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x62da8cf2 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x666910d5 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6a881810 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6b5b9055 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x769e2871 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x786def22 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x7d23c6a9 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x7f446077 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x8132d999 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x845399de __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x944cfd73 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xab3fca10 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb6c442a5 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbe0dc2bc __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xc3b67485 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xcf6b4bc3 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd826a0aa __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd8c6cb4c __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xdae619ae __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xdb83c759 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xdb872974 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xdc82ca73 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xe507373e __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xea8e3483 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xf38e0fbd fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xfa340612 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfc0120c0 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/netfs/netfs 0x242262fc netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x514f26b0 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x768bd769 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x80d461eb netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xfe289551 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x4aebf1fe qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x74e71be2 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x920dbaf6 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x93e58096 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa64913d0 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xd77537cf qtree_delete_dquot +EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba95c5c0 crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x246ea205 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0x2cfa6ca1 blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x23eea787 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x4c9268e1 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x635b1a76 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x64375eb4 chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x738d84bf xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xb1ec48ec chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xf0dbf797 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x1488e346 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x7ff34ba8 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x4cc636f2 LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x067fa594 objagg_create +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x13d24f16 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0ed31295 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x345d61e5 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x43d61455 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5e5672ec lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xca083cb6 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf0a0d842 lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x4686f957 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xb0972292 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x73218210 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf16c1744 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01d845d3 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x126b28a1 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x18ba439f p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x1da97cef v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x2054b1ec p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x232aa53d v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2a5f8970 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x2a8af56a p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x2cc10d72 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x2d3cef5f p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x385388eb p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x38ab36a3 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x4929de05 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4c1c47a1 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x4c32de69 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4d1fff3d p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x565fc01e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x60e75d5c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x68e3a8fc p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x72137431 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x74791dcd p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x7493cff2 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x760fdc80 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x779895b3 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x7fc5b639 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x7fecb14e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x888cd1a8 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x913cc538 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x9fbf81fa p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xa10f41a1 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa148fb0e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa432e015 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb41ec348 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb696a32b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xcf69f99c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcfd02f6d v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xd19edfc2 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd6019347 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe0b334db p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xee481405 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfdd11e67 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xff5ecb8e p9_client_readlink +EXPORT_SYMBOL net/appletalk/appletalk 0x515fe82a atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x64c471ba aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x7f194543 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x9ce1387c alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x352b1093 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4d93e8f5 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4e22258e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6091e03d atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9ca03dd5 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9dd6677b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa35b2cc3 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb03d95cb atm_charge +EXPORT_SYMBOL net/atm/atm 0xbbf01773 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xc3f9ce42 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc7e9bfe7 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd68a89a9 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf85a1d2d atm_dev_lookup +EXPORT_SYMBOL net/ax25/ax25 0x058efc2a ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x388deddb ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x3bed7476 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x47dcb50a ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x67bc32ac ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa65d0225 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd6f6636c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xfc8fac38 ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02206612 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x026c829c hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x056a0a1a bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07499870 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e2136b4 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f76a26 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1de20664 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e160f55 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x241a9c40 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33901653 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x416f01b5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43ecf6a9 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44bb6cec __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d617eed bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4de6f50a bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4eb0bff1 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x506e8b8f bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52bdfc9f hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x543fad13 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5481194a __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55af5e29 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a9719b0 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ea01088 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x692b6c75 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f66b8f3 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x801bce5c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83ba5fc3 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e44efa9 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f2b429f l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9dedbca5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xac49b7a4 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1fdfa9f hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3c032cc hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb7b68b6 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0178bf1 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd438f64d bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd52b3910 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8102604 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe001df40 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe42cb1ca l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5ff646c bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9c00bac l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec458967 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xefc85f4d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf349c15b hci_set_fw_info +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x064f5817 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0743f128 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x46fa992c ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa9c4c737 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf496ae09 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfac9ddc9 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x041905bc caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x270e7793 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7ca0710b caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc31540b0 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xdf1617ee cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x06adcdf0 can_send +EXPORT_SYMBOL net/can/can 0x60d54cbb can_proto_register +EXPORT_SYMBOL net/can/can 0xb0b11f20 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xba2ab05d can_rx_unregister +EXPORT_SYMBOL net/can/can 0xd07648ef can_proto_unregister +EXPORT_SYMBOL net/can/can 0xda1497be can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x0045d42e osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x00a18ea9 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x037db322 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0395db28 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x07588956 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0b9dc63a ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x106d650d osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x11e3691a ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1745c4f3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x1ec30403 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x224898ba ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x22f2d1ea ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x2444e933 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x248ba8df osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x273fe2b3 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x27436af5 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x29237dba ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2b7e6387 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x380d0f9c ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39a42fb8 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x3abf64ab osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x3c4980d4 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x3d2f4c31 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x40059050 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x40c4bb45 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x4163797a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x46646452 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x489a9537 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x49ad802a ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x4bd8f4a4 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x53a5372a ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x57151f8b ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5b334f33 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x605cddcb ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x618c37c6 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6431869a ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x66fd3895 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x69c9b092 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c841464 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x6d88cd3a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x6dab5ed2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6e69054d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x72a2577a ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x76228095 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x76ecf92b ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x78e10528 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x79a0abb9 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7ca7a15c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x813a41bf ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x847691a9 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x853b894c ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x8614ed73 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x873cda78 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x8b61933b ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8d9c089d ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x8faa5d3a ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x9317c14b ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x9563fb38 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x96042be1 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x9624ae78 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x99b3f16f ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa10cd240 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa692751d ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6a242f7 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xa95d4218 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa96c60cc osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa976ce55 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xab7663e2 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3f8753 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xae6d17cc ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xaea1f5d2 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2552ed7 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xb5289443 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6578bd0 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb865292d ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xb9ffa274 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xbb5218c7 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbb5a7487 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xbb70a1f9 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xbba7e3f9 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe5c1e29 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xc4a2a94c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc6861822 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc9c61976 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb73d95e __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xcc571493 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xcd0fbcf4 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xcdb44223 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd4c90685 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4e59f7e ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd8e5c43c ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xd98a1818 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xdb1d4747 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdf79b5c9 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xdfd9af6b ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe323f9e9 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xe34bafa8 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe505978e ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xe6224606 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe8450097 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xece07c64 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee9c9d4f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xf838d49f ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xfe196019 ceph_osdc_new_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x10ed8229 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa4e47098 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0xaf081c4c hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xe93daa90 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x541042fc wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9c1e9b10 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdc620cea wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe1a8d9b3 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe900a936 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf307b6f8 wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x150c0fe5 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x61a3283c __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0xc3b988d1 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8c4cf491 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9052c4cf ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9183f224 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xafacaa56 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x644e5b7f arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa59649b6 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbbbc58a2 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd4912b6 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6f6b93c0 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7ce04825 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8f109365 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfd7206ca ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x313b4753 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7bb53c9f xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x830845c8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x379ce05c ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3814fb08 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x550d6ad8 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7af369d1 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x81e0cf68 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x99fd20cc ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9dc29e7b ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa0e514dc ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd9c6490e ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x21c5a7a3 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3fe9c574 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5fbb21ad ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe2f56df5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x94ade959 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x95b4f915 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc4b6cb73 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf46f5290 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x0121b7d4 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x0695aa42 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x0dd575d8 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x1a9b0c64 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x1d4fffe9 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9a56d67d lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf05e5f23 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xfd520c40 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x009a92a9 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x01e999d7 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x43f90d0c llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xa58a718d llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xbd532197 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xcfcd87f1 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfb9ab452 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x0357fe37 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x047f4f03 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x04a75e19 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x06d931c8 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x099dc8a7 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0de282d1 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0ebcd992 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x0f894b50 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x10b4e3ea ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x11915bc8 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x170fcb8c ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x193253cf ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x247266bc ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x2496750f ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x265a784d ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x27db451f ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x2b49c89e ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x2be53874 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x2c4c881d ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3813db9a ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x3b38f5b1 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3e46b2b0 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x40ff9b60 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x427bffcd ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x46ad8e6b __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x48df34ff ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x4aaebd06 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4b93bc9a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2c7133 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x4c61aca9 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4f5454b4 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x53ed1bad ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x53f04219 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x558f8efe ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x56f52ec4 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x58a5b25a ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5b10668c ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x5cd3561e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5f02d3ea ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x684b724d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x6a2e110f ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x71cfefd0 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x78bbfd74 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x7a7e13db ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x7b84891b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7ccfd350 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7e7cc5a9 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7f1b2a93 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x7fc13dbf ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x835d00e3 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x85a607ca ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x88b36f95 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x8a4a6181 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8d625e46 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x925d2c62 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x95204d5e ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x988a0009 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9b5c4c39 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x9cadfe9c ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9ceb7eed ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x9e086e63 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9f4fc1cf ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa1459009 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xa2027446 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa578227e ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xa7140cdb __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa7270dcf ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa84d8f48 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xa8f1ba54 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xa92094ce ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xae8113fa ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb0e15861 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xb5ef4d4e ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb6d7a51d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbe95282e ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc113e34c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc1c58bbf ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc2619388 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xc8995a3f ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xcae0c2d3 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xcceafc15 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xd5a2260b ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd5cc6ae9 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xd6cb0cf7 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xd95b4373 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xdc8cffee ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe2677c28 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xe3f91ac4 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xe5a2365a ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe6ad006e ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xe767caa9 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe7af32f6 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xea95e483 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xeceb89ec ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xef243bd4 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xf20cdd7f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf8141000 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfb8b5683 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xfda6a91b ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x056956ec ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x06b4b63d ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x486a8b6f ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fa87bbe ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xc2ec4300 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc9a37cc4 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xd43ddaa2 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xfaeae211 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x19c68608 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x27fa7678 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x41a75585 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x46bfdb22 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47c77245 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x48c72c0b ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x595f1229 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6879ac7a ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a669cde ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x85ea01ca register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbcb7ddc ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbfc0f0bd unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7a1982f ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0825f43 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf4bccf7e ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb9a7d70c nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0f2ab1eb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x52f86839 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8ba5df4e nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xc3b3988e nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x12e76a36 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1d71eb48 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x6bf1a922 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8b0b34b2 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8edabfe7 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9cc55996 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f782c xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd71c9f8f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xee8c826c xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfcd7d470 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x25563201 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x33abe78a nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x410213f7 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x419dd6dc nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x5945c41b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5cdb0659 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x66eee070 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x6d169c4e nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x70226d96 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x71c40bbe nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x72fd0213 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x774e8680 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9845c62a nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa9155baa nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xaf8c017a nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xd0dde47c nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xd5059e53 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe291c454 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xebe1afdc nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xf296a02e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xf7450576 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0a27e9fa nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0ee9f039 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x14f20bab nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x288a88d7 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x409eba1d nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x514543b9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x63c0ab72 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x66d6e8ff nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x6a05c51b nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6e105d82 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x6fa23e86 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x710fad4f nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x74999dd6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x7546640a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7879e3fe nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x7881da93 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x7d7cef17 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8cffc8bf nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa54181cc nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xa9ebf227 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xac35a1c4 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb9e742e6 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc24de418 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc775be73 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xca8249ac nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xd314b15b nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd571ee33 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xeb3b8ba9 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xeb908506 nci_req_complete +EXPORT_SYMBOL net/nfc/nfc 0x0ef4cf31 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x101a9eae nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x103a8c1f nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x154c8116 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x156dd409 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x1c3794ad nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x2084405a __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x20f43a80 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x25c30d4c nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x2ccd12b3 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x4951db78 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x531dda85 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x75e135f8 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x8f088117 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x93007116 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x9ccb0274 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xa972a7fc nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xac253341 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xcb9d591e nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xd550c01c nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xde481cf2 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xeeadab07 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xf16226d6 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xf27485c4 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xffa6a68b nfc_class +EXPORT_SYMBOL net/nfc/nfc_digital 0x49b254bc nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe9b211f2 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xed2cd284 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfd3a10be nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x20279827 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x2055f686 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x2def3a0c phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x3b79b9dd phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xac8277a0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xb5d94a9c phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd70b6bbd pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xfa43be9f pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x05e93916 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x12dd9be7 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x260af849 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a227774 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4444a35e rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x613ea4f7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x67db42e2 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6890d1c0 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x68fa9609 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x83e501ed rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9306506d rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb134b525 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf6257fc rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xca129a74 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcd92ed71 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf14566e0 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf31eb966 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf4826458 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x0c59bd04 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x72df7635 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7a419deb gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe9d8b71a gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2ffbf2f4 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x611519c6 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7cc3bb96 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb69a686e xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x89db7dbb tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xe25db7f0 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xe2b37623 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xe44cb032 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x14dd87d8 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00203e85 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x01448886 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x018fbed3 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x02a3b6b9 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x0d078589 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0d89dcb8 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0e79baba cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x0fb6f28d wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1311e38c wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x15c493ce cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d0a8c70 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1f4d9939 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x22e09479 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x2656cde4 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x286b7e66 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x2a57ef03 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2b4e67ca cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2e373dc1 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x2e7f5f14 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x2ed6d23e cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x2f305583 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x37a7b7e3 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x3ca712f4 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x3cc1f6a7 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3fd99b6b cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x46141053 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4886f6b4 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x495ba094 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4d5843b3 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x5370f295 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x590747da freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x5da36215 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x60378753 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6413b90c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x66c97e0c cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x68abbdf4 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6dfdc1ad cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x701de281 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x71f3898f ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x75e5321a cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x7662f40e cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a6dfe17 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c890c8f cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x81b191a3 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x82f944ec cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x840ff5bd cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x846cb5b5 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x84ee2ba1 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x85513d2f cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x86b5e1f3 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x8828e550 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x8abcc310 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x8b28ac41 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8b9587b9 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x8cd35de4 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9095ee09 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x92319ef2 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x930a07fb __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x945a39a6 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x9a6613f9 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x9adea4c5 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x9b3ab243 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa3041137 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xa50e297f cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa6bb6765 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xa8c957db regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xa9e9987b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xabd0ed2c cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xaf8ec9a7 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xb041e514 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xb0be8561 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb3b9f5e4 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xbd5fae1f cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xbf48370b cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc1ec020d cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc212509b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc5c2f038 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc7a907cc cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xc8b197e6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xca910553 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcbf6927c cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf407569 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xd313fdb1 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd616ed23 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xd886b1ce ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd9647db3 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc18ff6a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xded212fd cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xe849f199 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xed6522d1 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xeeaf444f cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xef1b8718 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf558ad0f cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf6244d35 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xf6c46269 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xf7095667 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xfa83d6d3 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfcd50ee8 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xfd727b2f cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/lib80211 0x0045ef64 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7898476a lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x891483af lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa4db8cca lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xc5e03fec lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc7af6b26 lib80211_get_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6508e1df snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x11e0af8b snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x53ee561e snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa0039c01 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xfffff6c0 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe2b4769b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xf7e8d27a snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x08e91264 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a8797ec snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x125a40a3 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1397bca9 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x29616749 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d1c7017 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3bf3182c snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4f106c9e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6b02892f snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x76a1d5f6 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x810a4c44 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8f0b6a5c snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x954cd89b snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x98972324 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5b22ceb snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcba2fae3 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd07ba026 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdda371d6 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb29f763 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb3a8ce3 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x0bbbb395 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x78a2b265 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x23cca4cf snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2bc8876f snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2e060ec6 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x81d43738 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x982ddd75 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xad40ebcc snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc261691d snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcc341dba snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcd070596 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x005dff64 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x27e3cb30 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2fd11fc1 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x561fde6b snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x92732df3 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbd2eb506 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe4c0d6f6 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe83a54e9 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfe165f28 snd_vx_create +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04acded7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a323b2b cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a6d9d6c amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ab8c66a fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11268b82 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2506aea6 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2650886c fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e6ae973 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34306859 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42f3c9d3 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48cae737 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c269f06 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6662c118 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73b67153 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7782b94e amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8113e2ec fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87a65481 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x937aeccf cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e2d3c6b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0240ab0 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xade268f5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf711abd fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5dc21aa iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbe75a05 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc192895 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc197fc1 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd15fd535 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd58835ef cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc4d0b43 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2280acc2 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa8a15c98 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x07c34097 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x39c1d3b7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x61337789 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x67c70d19 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8b0899c8 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdefff4f9 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe7bdf44b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfda3a4ca snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x12ff124a snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4baec7a8 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6251bd9e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc15ac871 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x62d250bb snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd064fd7c snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1d433e9e snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2f8f90a8 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x32392da1 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x39d1ba27 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x904db8ef snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe34338bc snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12f216f9 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1622eb51 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1fa27e7d snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33693620 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d50addf snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f6f2f87 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x428e4141 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a0c5a94 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60613377 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x642dab5c snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6cd9f5e0 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82f31a0a snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa1d292fd snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb582ba7b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcce99e9b snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdfe156e1 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xea9add6a snd_ac97_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1eba8930 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x92466216 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfe4963ff snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01db89fd oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x05005d94 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x104f3542 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x159da76e oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x160f844a oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x237fe655 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f9122dc oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39c22a27 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3adcc35c oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4e9da042 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6a756351 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9883d8eb oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3bfe52e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbbf367f6 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc90aa698 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc92078c7 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe1ef6eae oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xecf773d0 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf176a1f4 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb94b070 oxygen_write32_masked +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x497693d1 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5e88eb4f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x400a3d8b pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7b53cf9a pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x29f15815 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xde0c16b0 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2c3b4a72 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xeb844feb aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfbba6a25 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x689151e3 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xc5791e0a aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x106d52ef wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xcc4b26e7 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe6ad27c2 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x5f10bb3e mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x669fb05e mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x32088bb0 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x535532b6 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x18241597 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x01562cc6 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x04571c96 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x056f9ab9 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x07f69c94 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d14c468 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11e809b0 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x15604d11 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20cdd469 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23dda84d sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x260d3b00 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f74254b snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33263235 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x349af371 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x370898b9 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38b802bc snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39ef3b33 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c4b1dd7 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d8f1631 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x467d267a snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a1bacc0 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5382db8d snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x538d3787 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5b32fcd6 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d5a7c19 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x625147b9 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6b027d91 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a8e478c snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c8622dc snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e38353c snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e4208d0 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f777c8b sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x869238bb snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8de104fc snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92803d00 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9659e10a snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9aca4726 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa23aac00 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa511b590 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa617af72 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac6e89ef sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad2a33b4 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb199961e snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbaae5701 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbfd26b8 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfa7cbfd sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0336498 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3901e20 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3bf40ae snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3f0758b snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc635ac36 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce5d5b7a snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd927eca8 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdcbd5c66 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3d663a4 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0ddfb3d sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf166d8ee snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3399d0b snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf50b5fe4 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6744876 snd_sof_ipc_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x99331744 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00066407 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x000fcb92 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x0026f4dd default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0033c129 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x0033cf50 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x00384fc4 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x00617033 page_readlink +EXPORT_SYMBOL vmlinux 0x00653e88 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x0067a077 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x0071c0d4 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x007c6959 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x007f3f4e unlock_page +EXPORT_SYMBOL vmlinux 0x008562d1 seq_read_iter +EXPORT_SYMBOL vmlinux 0x00868781 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x00a9685e __dquot_transfer +EXPORT_SYMBOL vmlinux 0x00ac8d02 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x00ad34c8 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c6ec76 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e1c988 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x00f55d77 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x00f5f29b dquot_commit_info +EXPORT_SYMBOL vmlinux 0x00fc9f7b dentry_open +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x01238565 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x01254534 __devm_release_region +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x01361b16 sk_dst_check +EXPORT_SYMBOL vmlinux 0x01368859 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x01422a39 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x014f5fb7 inet6_protos +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0181faef __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x019e7dbe dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x01a3668a param_ops_bool +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a6e4d5 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x01aa3464 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x01bcebf5 generic_writepages +EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01c0e9e3 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x01cba6c6 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x01cf4342 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x01cfc78e vlan_for_each +EXPORT_SYMBOL vmlinux 0x01d54917 key_type_keyring +EXPORT_SYMBOL vmlinux 0x01e769d6 __next_node_in +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x021993f7 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x02284910 napi_disable +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x028e47ea mount_subtree +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a63e93 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x02aeca8f mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x02b1a7f3 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02d8c2ac mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02fce9e7 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x03236989 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x0325fcda sync_filesystem +EXPORT_SYMBOL vmlinux 0x0326acc2 pci_get_slot +EXPORT_SYMBOL vmlinux 0x032afb1b dev_remove_pack +EXPORT_SYMBOL vmlinux 0x03329183 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034367a5 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x035f9cdb tty_port_close_end +EXPORT_SYMBOL vmlinux 0x0363a904 snd_card_file_add +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036dc4f5 register_sound_dsp +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037c00d8 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x037d18e0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x037dbeb8 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x038004df __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0389a0ad locks_free_lock +EXPORT_SYMBOL vmlinux 0x038a24cb skb_copy_bits +EXPORT_SYMBOL vmlinux 0x038af545 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03aa4355 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03bd4b0d tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x03bde3a1 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x03c8304d bio_put +EXPORT_SYMBOL vmlinux 0x03d35fed xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x03d5d081 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x03dc3874 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x03e87931 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x03f48eee sock_register +EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0401f514 amba_find_device +EXPORT_SYMBOL vmlinux 0x040bb2d8 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0419591e __sg_free_table +EXPORT_SYMBOL vmlinux 0x0422c801 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x042addae pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x04426f14 mem_section +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x0457fe79 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x045b6d44 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x0478abf8 filemap_flush +EXPORT_SYMBOL vmlinux 0x047bf29a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x049172cc __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x04aa4fe4 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04ce17d4 dump_skip_to +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04ef10a2 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x050c3704 sk_net_capable +EXPORT_SYMBOL vmlinux 0x05133dec init_pseudo +EXPORT_SYMBOL vmlinux 0x0513cb63 unix_get_socket +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052c0787 ps2_command +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055009b1 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x055186b9 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x05618094 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x05679c60 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x058c4dda sg_miter_skip +EXPORT_SYMBOL vmlinux 0x059277b2 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x059a0689 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x05a31e41 noop_llseek +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b2b93a find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x05d6498a tty_port_close_start +EXPORT_SYMBOL vmlinux 0x05df7d47 simple_open +EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x05f17a9a nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x0612b679 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062e5fd6 of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06392353 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x06440790 bio_endio +EXPORT_SYMBOL vmlinux 0x064ff8ac __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x065f8de3 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x067fc1f7 iunique +EXPORT_SYMBOL vmlinux 0x06b54c5a d_set_fallthru +EXPORT_SYMBOL vmlinux 0x06ba8284 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06d3c892 consume_skb +EXPORT_SYMBOL vmlinux 0x06eac2b8 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x0718e918 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0758b9a9 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x076a8ed7 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x0784b2e4 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x0794ddfc rproc_del +EXPORT_SYMBOL vmlinux 0x07a6b5ad pci_write_config_word +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aed90f blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x07b0e723 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x07c43493 snd_timer_new +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082835ea dma_async_device_register +EXPORT_SYMBOL vmlinux 0x082a6471 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0835d4a2 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0846bf40 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x085336e5 param_set_ulong +EXPORT_SYMBOL vmlinux 0x085ed483 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0897de0c blk_put_queue +EXPORT_SYMBOL vmlinux 0x08a12a1b param_get_ushort +EXPORT_SYMBOL vmlinux 0x08b340f5 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x08c8002e wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e87271 sg_miter_next +EXPORT_SYMBOL vmlinux 0x08f61633 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x08f8c335 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x090c89f0 kern_unmount +EXPORT_SYMBOL vmlinux 0x090f14f9 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x090fa554 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0916c089 proc_mkdir +EXPORT_SYMBOL vmlinux 0x096f433f drop_nlink +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099571b1 kmap_high +EXPORT_SYMBOL vmlinux 0x09a087cd snd_jack_report +EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x09c03d38 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da11a9 unload_nls +EXPORT_SYMBOL vmlinux 0x09dda4f5 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x09f79e20 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x0a08bfa1 simple_empty +EXPORT_SYMBOL vmlinux 0x0a1b8fca forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a3b295a napi_complete_done +EXPORT_SYMBOL vmlinux 0x0a419e93 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x0a7c7582 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x0a8400d4 md_reload_sb +EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0a9f1957 pci_get_device +EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa3ceba snd_timer_stop +EXPORT_SYMBOL vmlinux 0x0ab2dd02 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x0ab37c6b nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0aecbff0 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0af53212 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x0af5ab0a xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0af6c451 lock_rename +EXPORT_SYMBOL vmlinux 0x0afae572 __invalidate_device +EXPORT_SYMBOL vmlinux 0x0b068482 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b28c500 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b2f11b6 devm_release_resource +EXPORT_SYMBOL vmlinux 0x0b478c6f sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b61c06c snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b75194c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x0b85afcd snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x0b8c07ad register_md_personality +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba99e9e padata_do_serial +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc55f1b page_mapping +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf7fffd udp_poll +EXPORT_SYMBOL vmlinux 0x0c00bc31 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x0c049e6b seq_open +EXPORT_SYMBOL vmlinux 0x0c154e91 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c5033fa security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x0c521517 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cac35f4 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x0cc04505 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ceb324a snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d3a3e50 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d448d8d generic_write_checks +EXPORT_SYMBOL vmlinux 0x0d461ab1 no_llseek +EXPORT_SYMBOL vmlinux 0x0d525c68 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5e3fea blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d753071 page_address +EXPORT_SYMBOL vmlinux 0x0d9f89df __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0db1e946 unlock_rename +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0df7a70d bmap +EXPORT_SYMBOL vmlinux 0x0df8038f sock_no_bind +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e1d880c audit_log +EXPORT_SYMBOL vmlinux 0x0e22c9fe watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x0e5b2b5b pci_request_irq +EXPORT_SYMBOL vmlinux 0x0e5c6b62 wireless_send_event +EXPORT_SYMBOL vmlinux 0x0e8dd895 phy_attach +EXPORT_SYMBOL vmlinux 0x0e90bc81 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eb7e556 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed8ffa1 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x0eda3a44 mpage_writepage +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f106172 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x0f2e0dca phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x0f30e00c pps_event +EXPORT_SYMBOL vmlinux 0x0f3632cc d_lookup +EXPORT_SYMBOL vmlinux 0x0f4064cb dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x0f542872 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x0f683fec pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8a5724 send_sig +EXPORT_SYMBOL vmlinux 0x0f9bb517 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x0f9c09ba key_task_permission +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb3ec49 backlight_device_register +EXPORT_SYMBOL vmlinux 0x0fbd8803 read_cache_pages +EXPORT_SYMBOL vmlinux 0x0fc267d4 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x0fd08026 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fd96584 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x0fe003e5 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x0fe6cbef xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x10144c70 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x10203529 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x1028b6e4 of_device_unregister +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1033d81d inet6_ioctl +EXPORT_SYMBOL vmlinux 0x103964c2 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x104875e1 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106c1962 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1071ae64 devm_request_resource +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x10753040 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107e9553 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x10a53ee9 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x10b45978 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x10c04c20 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10dc89d5 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x10e64111 console_stop +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10e82d31 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x10fe3813 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x110078c6 nf_log_trace +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111eded4 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x11390e8b readahead_expand +EXPORT_SYMBOL vmlinux 0x1146c4a7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x114bb2be nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x114f167a alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x11518ac2 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x115961d6 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11739252 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x11741933 block_truncate_page +EXPORT_SYMBOL vmlinux 0x119103d3 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a8a156 kill_fasync +EXPORT_SYMBOL vmlinux 0x11b489fd sock_create_lite +EXPORT_SYMBOL vmlinux 0x11c8a6ea tcp_poll +EXPORT_SYMBOL vmlinux 0x11cd1d73 edac_mc_find +EXPORT_SYMBOL vmlinux 0x11d3b9ac bio_add_page +EXPORT_SYMBOL vmlinux 0x11dcc274 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d6ad9 rtnl_notify +EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x12206abe fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x1235bbb1 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x1236a32f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x12492043 param_get_short +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12857d13 dev_get_flags +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a9a5cc seq_dentry +EXPORT_SYMBOL vmlinux 0x12ca7794 of_phy_connect +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d66edc set_binfmt +EXPORT_SYMBOL vmlinux 0x12de3150 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x12ed7524 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x12f071ca netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f5e140 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fa4ad8 seq_printf +EXPORT_SYMBOL vmlinux 0x130ca08c init_special_inode +EXPORT_SYMBOL vmlinux 0x130e26b8 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x130e2c96 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132e11d4 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x1346fe86 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1353a9bf skb_clone_sk +EXPORT_SYMBOL vmlinux 0x136fd429 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x1396004f _dev_warn +EXPORT_SYMBOL vmlinux 0x139d347a pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x13b1e932 md_error +EXPORT_SYMBOL vmlinux 0x13c02787 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x13c08a0f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x13c9451e napi_gro_flush +EXPORT_SYMBOL vmlinux 0x13c9b2ee __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d5515c iov_iter_npages +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13dcbaf3 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x1402210d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x140a2500 do_splice_direct +EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x143eb9c5 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x1442ef5f bio_chain +EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x145f080b nand_ecc_prepare_io_req +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14c8e6f8 iget_locked +EXPORT_SYMBOL vmlinux 0x14cf5638 proc_remove +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14fba53b __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1511b5dd rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x151822ff seq_release_private +EXPORT_SYMBOL vmlinux 0x151bad4b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x151bc1ea d_path +EXPORT_SYMBOL vmlinux 0x151e7e2a tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x15228c5c phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1532caae rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x1543104f __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15614db9 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x1567157e __fs_parse +EXPORT_SYMBOL vmlinux 0x15681055 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x156f8eea xp_free +EXPORT_SYMBOL vmlinux 0x157bd225 inet6_release +EXPORT_SYMBOL vmlinux 0x1595c5e0 genphy_update_link +EXPORT_SYMBOL vmlinux 0x15966f1b textsearch_destroy +EXPORT_SYMBOL vmlinux 0x15b308ce dev_mc_add +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15cbf533 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x15d74d28 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x15ebc138 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x15ee4f95 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x15eeecc0 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x16003937 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x160afe93 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x160da527 phy_loopback +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162bf8f5 sk_free +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x164ca65a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x16710fc8 fqdir_exit +EXPORT_SYMBOL vmlinux 0x16790849 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x1688eb73 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16c0c13d blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x16c8caa4 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x16d97b14 inode_set_flags +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16eb07c3 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x16f5fd39 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x172986a6 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x17421cef tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x174a396b put_watch_queue +EXPORT_SYMBOL vmlinux 0x176e8656 generic_file_open +EXPORT_SYMBOL vmlinux 0x17706742 param_set_ullong +EXPORT_SYMBOL vmlinux 0x17770527 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x17895706 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x179aa5b8 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x17a4834e snd_register_device +EXPORT_SYMBOL vmlinux 0x17a7ad51 d_splice_alias +EXPORT_SYMBOL vmlinux 0x17bea995 __alloc_skb +EXPORT_SYMBOL vmlinux 0x17d8c114 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x18016842 vfs_mknod +EXPORT_SYMBOL vmlinux 0x1801701c km_report +EXPORT_SYMBOL vmlinux 0x180517a0 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x182b9f76 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x182c8445 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x182f2b4c misc_deregister +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free +EXPORT_SYMBOL vmlinux 0x186ca357 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a485da pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x18a7ec3a __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x18b159bd setup_arg_pages +EXPORT_SYMBOL vmlinux 0x18cccbc5 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x18d4a580 input_get_keycode +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fb61e6 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x18ff39ae devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x190050bd pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x1910f25d fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x193f9066 bdevname +EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x19607a0c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1975df48 block_commit_write +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198abca0 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x198efb45 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x19943dbd xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x199c982f d_rehash +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a0188f ppp_input_error +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cfaae9 tty_lock +EXPORT_SYMBOL vmlinux 0x19e1b085 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x19ebc22a set_user_nice +EXPORT_SYMBOL vmlinux 0x19f35681 input_match_device_id +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize +EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a913826 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x1a979b33 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1aab7fa2 cpu_user +EXPORT_SYMBOL vmlinux 0x1aac91de __SetPageMovable +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad68914 inet_release +EXPORT_SYMBOL vmlinux 0x1ad849c8 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0x1af20356 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b03d75b da903x_query_status +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b261dc3 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1b3e7d9a mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1b419315 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x1b482ee9 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x1b534618 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x1b58feb2 mmc_put_card +EXPORT_SYMBOL vmlinux 0x1b5f7f39 cpu_tlb +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7cfda3 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x1b804a8c pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x1b8067b3 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x1b83dae0 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x1b8422d3 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x1b8dd004 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed +EXPORT_SYMBOL vmlinux 0x1ba9f9d0 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x1bc59a76 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x1bd8556c posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x1be44038 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x1c098df4 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1aa718 ilookup5 +EXPORT_SYMBOL vmlinux 0x1c1ed9c1 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1c3547fb dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x1c44813d udp_sendmsg +EXPORT_SYMBOL vmlinux 0x1c44c95a task_work_add +EXPORT_SYMBOL vmlinux 0x1c474236 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x1c49154e mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x1c514b46 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c5fa704 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x1c6434ae dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c846cb0 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x1c8ca17d flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1cae9ea3 try_module_get +EXPORT_SYMBOL vmlinux 0x1cb248ad vma_set_file +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1ce11066 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x1ce7d7d3 md_handle_request +EXPORT_SYMBOL vmlinux 0x1cf92e5f devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x1cfbacc0 phy_attached_print +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d1582ca lookup_one_len +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d48f4b2 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x1d509ef0 input_set_keycode +EXPORT_SYMBOL vmlinux 0x1d524b78 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x1d5a26d7 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x1d747faf flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x1d787338 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d923f74 mount_single +EXPORT_SYMBOL vmlinux 0x1d9e65cc ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1ddd9f26 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key +EXPORT_SYMBOL vmlinux 0x1df44435 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e13efaf of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x1e153bea xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x1e15c276 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e1ec7fb phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x1e2ad620 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x1e361b5e cont_write_begin +EXPORT_SYMBOL vmlinux 0x1e3c1b1d fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x1e4d1a78 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x1e6b950f dev_addr_init +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7ff5ea __do_once_done +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9874d0 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea63501 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x1ea81122 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1ec75ca1 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x1ecd78da rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1ed05516 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x1ed30372 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x1edb1040 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edb6dc0 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x1f023c13 _dev_alert +EXPORT_SYMBOL vmlinux 0x1f07d360 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x1f0aebf9 amba_request_regions +EXPORT_SYMBOL vmlinux 0x1f0cde67 skb_put +EXPORT_SYMBOL vmlinux 0x1f2098d0 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x1f3bb52c nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x1f4b59f6 param_get_ullong +EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x1f649a3e blk_integrity_register +EXPORT_SYMBOL vmlinux 0x1f715cdb tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x1f735be6 rt6_lookup +EXPORT_SYMBOL vmlinux 0x1f963537 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x1fbb7310 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd896f0 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x1fdc1947 audit_log_start +EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type +EXPORT_SYMBOL vmlinux 0x1ff0b34d phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x1ffa00a4 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x1ffefaaa pci_set_master +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2007674b qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x205b629a irq_set_chip +EXPORT_SYMBOL vmlinux 0x206497e2 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x20676693 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x206cc1cc memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x206d5b22 genl_register_family +EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b493f0 __devm_request_region +EXPORT_SYMBOL vmlinux 0x20c0a8a0 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20da9545 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x20ed197c backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x21051f66 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210fba2e param_set_uint +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21193f29 simple_statfs +EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x21206cab gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x21631b80 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x216776fd kset_register +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x217dc105 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x21a0f68b mmc_command_done +EXPORT_SYMBOL vmlinux 0x21b336b5 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x21bd0387 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d6b9ef request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21f4e920 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x221109e6 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x225677e5 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x22678d28 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x22693ad8 processor +EXPORT_SYMBOL vmlinux 0x22779c78 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x2281a9ae xfrm_lookup +EXPORT_SYMBOL vmlinux 0x228856fd flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22ddcd30 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x22e6b84b tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x231700c5 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x231e44d0 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x23201dfd __destroy_inode +EXPORT_SYMBOL vmlinux 0x2329b583 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x23590d9a backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2371deec bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x23758d4c vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x237b0809 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x2380d191 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238dd217 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x2390806c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x2396cfc2 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x23a4f535 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c4cbfb genphy_resume +EXPORT_SYMBOL vmlinux 0x23c6a5e2 __scm_destroy +EXPORT_SYMBOL vmlinux 0x23cfaf1d fget +EXPORT_SYMBOL vmlinux 0x23d06b38 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x23d5ede5 nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x23e48d1c tty_port_open +EXPORT_SYMBOL vmlinux 0x23ea2d25 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x23ea4a5f seq_escape_mem +EXPORT_SYMBOL vmlinux 0x23ed5c5f sk_wait_data +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401be7b ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x241231ad single_release +EXPORT_SYMBOL vmlinux 0x2412ae04 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x2419e1b1 cdev_device_del +EXPORT_SYMBOL vmlinux 0x241d64fe fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24270ecd jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x2427db98 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x242dc5b6 serio_bus +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2451cab6 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x2470b335 __register_binfmt +EXPORT_SYMBOL vmlinux 0x2480183d vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x2489d27f dev_remove_offload +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24ab0ed7 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x24b47e39 of_translate_address +EXPORT_SYMBOL vmlinux 0x24bb023c rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e85374 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2509f5cb follow_down +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25302218 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x253ebef0 inc_nlink +EXPORT_SYMBOL vmlinux 0x2559e671 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x255e0853 pci_request_regions +EXPORT_SYMBOL vmlinux 0x2563fbcf jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x257d8d72 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258d0fa9 rpmh_write +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25979add pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x25b8540a skb_eth_push +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fe0104 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x260aa2c2 account_page_redirty +EXPORT_SYMBOL vmlinux 0x262c26b2 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c1528 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x263e76da _dev_crit +EXPORT_SYMBOL vmlinux 0x2645a45f cqhci_resume +EXPORT_SYMBOL vmlinux 0x2647c3c3 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x26709aa5 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x2681148a copy_string_kernel +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x268e32e5 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x26a211ce fc_mount +EXPORT_SYMBOL vmlinux 0x26ad5088 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26d6149e pci_set_mwi +EXPORT_SYMBOL vmlinux 0x26e142a2 bdi_register +EXPORT_SYMBOL vmlinux 0x26eada02 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270f70d6 __put_user_ns +EXPORT_SYMBOL vmlinux 0x2718f20f of_match_device +EXPORT_SYMBOL vmlinux 0x2727371e simple_transaction_read +EXPORT_SYMBOL vmlinux 0x272c7c7c genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27363da6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275eec59 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat +EXPORT_SYMBOL vmlinux 0x276f0bfc pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x2774b3dd del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278dd52b pci_dev_put +EXPORT_SYMBOL vmlinux 0x279f5b86 serio_reconnect +EXPORT_SYMBOL vmlinux 0x27ae5281 nla_put +EXPORT_SYMBOL vmlinux 0x27b84018 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27f311aa redraw_screen +EXPORT_SYMBOL vmlinux 0x27ff0e03 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x280cbd1d redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28289fdc inet6_bind +EXPORT_SYMBOL vmlinux 0x28426d64 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x2868b9eb __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x28742f25 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x28852008 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x28906430 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x2896b676 pci_release_regions +EXPORT_SYMBOL vmlinux 0x289a8ccf remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x289ae843 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x28a45a6b bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x28b0db5f of_iomap +EXPORT_SYMBOL vmlinux 0x28d2c8c5 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x29299604 pin_user_pages +EXPORT_SYMBOL vmlinux 0x2932fa07 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x2933c1d5 snd_compr_malloc_pages +EXPORT_SYMBOL vmlinux 0x293c0643 simple_setattr +EXPORT_SYMBOL vmlinux 0x2959a6dd rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296b0693 param_get_int +EXPORT_SYMBOL vmlinux 0x29744d09 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x29833d2b netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x298dedf7 d_alloc_name +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29a5b4e0 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x29a5ede8 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x29a5fd56 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x29cf6414 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29e9f590 unlock_buffer +EXPORT_SYMBOL vmlinux 0x2a16f28e generic_write_end +EXPORT_SYMBOL vmlinux 0x2a2542f0 __alloc_pages +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3525a4 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x2a393f11 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4f2172 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x2a50e82a filp_close +EXPORT_SYMBOL vmlinux 0x2a708464 param_get_string +EXPORT_SYMBOL vmlinux 0x2a8bf3fd pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa7e323 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x2ab0b1c1 vfs_fsync +EXPORT_SYMBOL vmlinux 0x2ab70a04 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x2ab77606 cdrom_open +EXPORT_SYMBOL vmlinux 0x2ad8092c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x2ad8ae64 security_sk_clone +EXPORT_SYMBOL vmlinux 0x2ada0b04 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x2adca2b3 inode_insert5 +EXPORT_SYMBOL vmlinux 0x2ae843cb netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x2afba776 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x2b3d9dbd ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x2b3dd276 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x2b3ede94 dev_trans_start +EXPORT_SYMBOL vmlinux 0x2b493d0d start_tty +EXPORT_SYMBOL vmlinux 0x2b5c805e snd_info_register +EXPORT_SYMBOL vmlinux 0x2b5e14f1 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x2b5e6de0 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b81c5f1 netdev_err +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bbfe32a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x2bc79c27 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x2be0790e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x2be73955 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c00643d km_state_notify +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c30981f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c36b9e2 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2c483a12 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x2c6847d1 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x2c6a55ca pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c7d920c max8998_read_reg +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c8ce3a8 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x2ca0243e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2ca366a1 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x2cb60664 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x2cbb85e2 sock_efree +EXPORT_SYMBOL vmlinux 0x2cc58834 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x2cd5cc5e rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x2ce0979f neigh_connected_output +EXPORT_SYMBOL vmlinux 0x2cf92019 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1b869f fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x2d1bfee4 con_is_bound +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3cc333 inode_init_always +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6c88fc tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d7f2f29 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x2d8ee722 gro_cells_init +EXPORT_SYMBOL vmlinux 0x2d90e1d1 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dbc1692 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2ddac1ae dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2df6caf2 free_task +EXPORT_SYMBOL vmlinux 0x2df8e5b4 d_tmpfile +EXPORT_SYMBOL vmlinux 0x2dfc52db filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x2e03d8f3 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e20cc7a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x2e4116b3 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e497083 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e743f56 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x2e90f795 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2eb1728a inet_getname +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecc7f29 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2ed23bc3 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x2ed41ffc nand_create_bbt +EXPORT_SYMBOL vmlinux 0x2ed70518 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2ee71e28 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x2ee8578a i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0fa3b1 dev_driver_string +EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x2f1df2cf jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x2f1f762f devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x2f22f1bf param_get_uint +EXPORT_SYMBOL vmlinux 0x2f24e431 devm_clk_put +EXPORT_SYMBOL vmlinux 0x2f28de69 snd_card_register +EXPORT_SYMBOL vmlinux 0x2f2d2a0d fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f3fcc93 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f53c9a9 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f813f7f genl_notify +EXPORT_SYMBOL vmlinux 0x2fa27fef tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x2fa75b9c devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x2fab9689 generic_perform_write +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fc59f00 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x2fdb10e5 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe7af65 simple_release_fs +EXPORT_SYMBOL vmlinux 0x2ff3d956 __serio_register_port +EXPORT_SYMBOL vmlinux 0x30024145 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x301565e7 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x30211b0b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3036e98d vfs_create +EXPORT_SYMBOL vmlinux 0x304f453f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x30605d57 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3064bd98 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x306c91b5 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x307f07ca uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x30826fa1 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x308dc5f7 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30bcd2ee try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x30c31c0d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x30c769f0 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30e11a72 release_and_free_resource +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310ad7cb __frontswap_load +EXPORT_SYMBOL vmlinux 0x311e5a3b bio_advance +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31344fec eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x3152f58b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x3158ccfd netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x31662543 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x31749fe2 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x3185a4a6 vga_put +EXPORT_SYMBOL vmlinux 0x31863b21 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x31870503 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin +EXPORT_SYMBOL vmlinux 0x3193dc4c security_unix_may_send +EXPORT_SYMBOL vmlinux 0x3199ec71 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x319c692d of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x31a0c909 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31ae4f5e tso_start +EXPORT_SYMBOL vmlinux 0x31bd5e66 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x31bdbc90 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x31e96267 dump_emit +EXPORT_SYMBOL vmlinux 0x31eee36f sock_gettstamp +EXPORT_SYMBOL vmlinux 0x31f8c2a6 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x320ccd7d unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3218aced snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x3220a3f2 skb_clone +EXPORT_SYMBOL vmlinux 0x3228668b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x322fc660 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x32418928 has_capability +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x3255fab9 inet_put_port +EXPORT_SYMBOL vmlinux 0x32562a6a snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x325b2792 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x327dc1ce pci_find_bus +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32854333 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328adb2c nf_log_unset +EXPORT_SYMBOL vmlinux 0x328d6cbc uart_suspend_port +EXPORT_SYMBOL vmlinux 0x32b296a2 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x32bed608 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d589bd component_match_add_typed +EXPORT_SYMBOL vmlinux 0x32e57b22 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp +EXPORT_SYMBOL vmlinux 0x32ee6834 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x33016732 ip6_xmit +EXPORT_SYMBOL vmlinux 0x33190353 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x331a9508 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x331d68fa inet_frags_init +EXPORT_SYMBOL vmlinux 0x33574022 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x3358316a __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x33659943 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x336afe63 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x33848616 scsi_print_result +EXPORT_SYMBOL vmlinux 0x33d50abd tty_register_device +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x34094a31 simple_unlink +EXPORT_SYMBOL vmlinux 0x34104750 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x345617c3 dma_find_channel +EXPORT_SYMBOL vmlinux 0x34794159 mmc_release_host +EXPORT_SYMBOL vmlinux 0x347ca766 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x3481abfe ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x34914b78 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x34989aba __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a88e8d netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x34b14c42 dma_resv_init +EXPORT_SYMBOL vmlinux 0x34be537c pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x34c068dd ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x34c17740 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x34c62579 brioctl_set +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34cdcb91 ilookup +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fad433 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3503ed3f seq_bprintf +EXPORT_SYMBOL vmlinux 0x351207c6 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x351616bc kunmap_high +EXPORT_SYMBOL vmlinux 0x35161896 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35219498 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource +EXPORT_SYMBOL vmlinux 0x352f8ad8 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x35495365 sk_error_report +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3567e194 __scm_send +EXPORT_SYMBOL vmlinux 0x3569df1e __d_drop +EXPORT_SYMBOL vmlinux 0x3572f8cd regset_get_alloc +EXPORT_SYMBOL vmlinux 0x357602ef neigh_table_clear +EXPORT_SYMBOL vmlinux 0x35788030 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x35828119 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x35a5e1b0 phy_detach +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c8e9c6 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x35c8f62b vfs_statfs +EXPORT_SYMBOL vmlinux 0x35e887cc nf_hook_slow +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3611e93c tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x36357241 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x364e73a5 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x366ed6f3 snd_timer_open +EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b5728f finish_no_open +EXPORT_SYMBOL vmlinux 0x36c9d98f block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x37137212 proc_symlink +EXPORT_SYMBOL vmlinux 0x3713f8a7 dev_deactivate +EXPORT_SYMBOL vmlinux 0x37214b80 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x372d38c6 pci_select_bars +EXPORT_SYMBOL vmlinux 0x373d9cfe posix_lock_file +EXPORT_SYMBOL vmlinux 0x37436b12 unregister_console +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37613992 pps_register_source +EXPORT_SYMBOL vmlinux 0x377c1416 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3786488b skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x378e038a blkdev_put +EXPORT_SYMBOL vmlinux 0x378e0532 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37a30941 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37ca86ee get_vm_area +EXPORT_SYMBOL vmlinux 0x37cd4195 icmp6_send +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e188a0 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x37f5b72f setattr_prepare +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3818e3e4 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x3819fe53 mdio_device_create +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x383d68a7 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x384884b6 put_cmsg +EXPORT_SYMBOL vmlinux 0x384ead63 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x384f75db param_set_hexint +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385fdb53 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x386eefc6 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x38778ca5 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x38797098 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x387d1014 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x388044f7 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x389f944c snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a7db06 file_path +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38afa97b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x3908d7c2 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x391d0db9 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x3936bf47 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39420e32 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x3943e8bf pneigh_lookup +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3950e787 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x395ce078 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x3985c304 genlmsg_put +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a850d8 input_flush_device +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39ccc261 input_unregister_device +EXPORT_SYMBOL vmlinux 0x39f5c35d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x3a0d63b0 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3a16a1e5 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3a32552f dm_register_target +EXPORT_SYMBOL vmlinux 0x3a37765d dev_change_flags +EXPORT_SYMBOL vmlinux 0x3a3c9189 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x3a3d7a07 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a51ed11 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x3a64412e fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x3a6a4948 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x3a70a893 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x3a7ee792 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x3a8c7b75 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x3a96e7be ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3a99d0ab skb_copy_expand +EXPORT_SYMBOL vmlinux 0x3aab2fee nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ab86deb module_refcount +EXPORT_SYMBOL vmlinux 0x3acaf465 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x3acde139 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x3ad4b713 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3ae5f953 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x3b1f72ef serio_open +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b3e272b sock_no_getname +EXPORT_SYMBOL vmlinux 0x3b3e522e single_open +EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b46609b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x3b4b0476 finish_open +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b87fec6 sock_init_data +EXPORT_SYMBOL vmlinux 0x3b88ec33 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x3b94b3e4 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3baac7a6 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3bb0b7f8 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x3bb3e1c4 par_io_of_config +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc9fb51 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x3bdffb7e udp_ioctl +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bfab651 __skb_pad +EXPORT_SYMBOL vmlinux 0x3c0d7bfc vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x3c139b96 xattr_full_name +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1f3de8 block_write_begin +EXPORT_SYMBOL vmlinux 0x3c2b93b5 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3ccbb3 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c6d5a6a sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3c7301ac md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3c7675dc snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x3c841aeb blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x3c895011 genphy_loopback +EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert +EXPORT_SYMBOL vmlinux 0x3ca6af79 fqdir_init +EXPORT_SYMBOL vmlinux 0x3cb074b5 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x3cb6a9ae mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x3ce17ba7 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce4db16 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x3d04642f pci_iomap +EXPORT_SYMBOL vmlinux 0x3d0ad724 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x3d0e0dd3 ip6_output +EXPORT_SYMBOL vmlinux 0x3d22f8cf of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x3d2e4b4f kthread_blkcg +EXPORT_SYMBOL vmlinux 0x3d31e901 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d460d4b netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x3d48fd8b unregister_nls +EXPORT_SYMBOL vmlinux 0x3d52c030 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x3d537892 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d6ef0e9 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x3d9f40b4 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x3da6af04 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x3dac4a07 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x3dbbd34c sync_blockdev +EXPORT_SYMBOL vmlinux 0x3dc26322 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3dd99569 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x3ddc6d7e vm_node_stat +EXPORT_SYMBOL vmlinux 0x3dedb62c md_flush_request +EXPORT_SYMBOL vmlinux 0x3df0515e devm_memremap +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfeef23 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x3e09256f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x3e156633 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x3e2a3156 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4adf42 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x3e5d80e6 set_capacity +EXPORT_SYMBOL vmlinux 0x3e6bd4a1 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x3e8dfa63 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ebf0be7 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ed5a080 kthread_bind +EXPORT_SYMBOL vmlinux 0x3ede1f7f mpage_readahead +EXPORT_SYMBOL vmlinux 0x3ede6c7e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x3edf176b scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x3ee8f268 security_path_mknod +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f50d909 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3f55e51d __module_get +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f6bc0a3 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x3f72c1cf netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x3f82edac read_cache_page +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f9c8875 freeze_super +EXPORT_SYMBOL vmlinux 0x3fc35873 mtd_concat_create +EXPORT_SYMBOL vmlinux 0x3fcc9798 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x3fd04ee7 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x3fd48cce page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3fd4b126 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdd9f30 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3ff89ed9 filp_open +EXPORT_SYMBOL vmlinux 0x400af5c0 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x404a0653 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x40731949 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x407b8dbe pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x4081a8a6 iget5_locked +EXPORT_SYMBOL vmlinux 0x408393ce __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4089f0c5 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x40bf252f devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f3fd2c blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x40f8ac3b netif_device_detach +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4131fe5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x41326c6f register_netdevice +EXPORT_SYMBOL vmlinux 0x4137fc1f of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x413f3bde pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414852fc ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x414f0aab configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x415c4ce2 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0x41699236 dev_open +EXPORT_SYMBOL vmlinux 0x416aa526 scsi_print_command +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x419b56df pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x41a0be9a skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x41b88efa register_sound_special +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41ddae6f amba_driver_register +EXPORT_SYMBOL vmlinux 0x41e72621 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x41ec97b8 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4218d8cc generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x421b472d ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x422726eb vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x422bddfc ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4232c91b pcie_get_mps +EXPORT_SYMBOL vmlinux 0x4234d2ff __free_pages +EXPORT_SYMBOL vmlinux 0x4245d730 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x425618d9 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x426595a8 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x427d7185 padata_alloc +EXPORT_SYMBOL vmlinux 0x4281ab42 ping_prot +EXPORT_SYMBOL vmlinux 0x4296801e snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429dbc0f rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x42ac10eb rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x42cd27e0 ram_aops +EXPORT_SYMBOL vmlinux 0x42d07d58 nf_log_set +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f9b846 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x42fcf6fd ps2_drain +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c3108 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x4319fd17 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435707fd clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x435ebb0e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437e538a xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x437f47b7 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43922a10 migrate_page_states +EXPORT_SYMBOL vmlinux 0x43b7b855 kill_pgrp +EXPORT_SYMBOL vmlinux 0x43c1b97a snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d5f78a __mdiobus_register +EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4412178c proto_register +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x443277b5 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x4438ec97 finish_swait +EXPORT_SYMBOL vmlinux 0x443a0276 kill_block_super +EXPORT_SYMBOL vmlinux 0x4441d529 netlink_unicast +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x444daa9f do_SAK +EXPORT_SYMBOL vmlinux 0x445cee01 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x4461eb55 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x446dba93 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x447219e9 follow_pfn +EXPORT_SYMBOL vmlinux 0x4489f68d param_get_hexint +EXPORT_SYMBOL vmlinux 0x448eb3c5 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x44a6cfcd pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b9662a vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44db65b7 follow_up +EXPORT_SYMBOL vmlinux 0x44dd77c1 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f7fcd6 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x44fa8986 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4520fe0c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453abff5 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45436a71 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x454c57a4 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x4565053f xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x4566d751 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x4571a2be __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4582ce0c mdiobus_write +EXPORT_SYMBOL vmlinux 0x458b9db3 tty_port_init +EXPORT_SYMBOL vmlinux 0x459b5038 dcache_readdir +EXPORT_SYMBOL vmlinux 0x45b0acee twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45ddb773 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x45ded389 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x45e3de7e pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x45f63204 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x45f8ff68 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x4600867f _dev_err +EXPORT_SYMBOL vmlinux 0x461557c5 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x461b4acb snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463096da tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x46317982 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x463dbc7f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x46410256 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x4654705e gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x4654787f udp_gro_receive +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46663901 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x46687057 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x467e9a99 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x4682232e padata_free_shell +EXPORT_SYMBOL vmlinux 0x46864aff devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x4687cdf4 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x46987259 tcf_register_action +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46b83d75 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x46c701fb touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46ded048 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x46e2a1f1 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x470263ef qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x47170bba pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x471ea2e0 kthread_stop +EXPORT_SYMBOL vmlinux 0x472d0c9f flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x472f8693 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x47511ab5 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47731d0f kobject_get +EXPORT_SYMBOL vmlinux 0x477cd8e5 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x47849e83 skb_dequeue +EXPORT_SYMBOL vmlinux 0x4787ac19 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4792b5fe of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a393fb unregister_key_type +EXPORT_SYMBOL vmlinux 0x47b1a355 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x47be2db8 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c68338 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x47c7c8d5 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x47dac447 netdev_crit +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47efff49 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x482d61d3 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x4848fe43 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4867c69e ppp_input +EXPORT_SYMBOL vmlinux 0x486bb142 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x4873553a rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x48743582 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x487d2387 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x488446db path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x488bbc90 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x48963793 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x48a17062 update_devfreq +EXPORT_SYMBOL vmlinux 0x48a41cb1 param_ops_string +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48af46c4 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c4e4f0 netdev_info +EXPORT_SYMBOL vmlinux 0x48cc4ab6 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x48dae1fd deactivate_super +EXPORT_SYMBOL vmlinux 0x48e1cbf5 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x48e916ba skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x48fd8441 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4912bb35 path_get +EXPORT_SYMBOL vmlinux 0x4921889d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x49232176 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4944279c inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4963dc9a ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x49872eb3 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x499356c0 page_mapped +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499b099a iterate_dir +EXPORT_SYMBOL vmlinux 0x49ac53b6 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x49ca44e6 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x49cf7524 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x49e00ca8 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x49e67d41 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49ef1127 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x49f18af5 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x49f1c09a ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x49f2298d dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x49f28e69 vfs_symlink +EXPORT_SYMBOL vmlinux 0x4a012386 devm_iounmap +EXPORT_SYMBOL vmlinux 0x4a053e40 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x4a122e21 __pagevec_release +EXPORT_SYMBOL vmlinux 0x4a148c1d find_vma +EXPORT_SYMBOL vmlinux 0x4a1ae673 block_read_full_page +EXPORT_SYMBOL vmlinux 0x4a2401af unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x4a341b94 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x4a3535a2 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3e2b21 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a5550a4 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x4a6161a0 locks_init_lock +EXPORT_SYMBOL vmlinux 0x4a6dcf15 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x4a702638 dump_skip +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a964056 snd_jack_new +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9a7834 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x4aa6fda3 tty_name +EXPORT_SYMBOL vmlinux 0x4aab55aa jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x4abc71c3 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x4ac59d03 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x4ac59ea1 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x4aceb03d pci_restore_state +EXPORT_SYMBOL vmlinux 0x4add80a5 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x4aec5996 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb39f6 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x4b07c608 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x4b1b47b9 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x4b25ed6d blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4b38e29f jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x4b5c5749 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b79d604 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4b7a1d15 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x4bac0a75 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x4bd25e69 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x4bd7357e serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4bd7aed2 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c036144 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x4c114f98 simple_get_link +EXPORT_SYMBOL vmlinux 0x4c1b3f7f netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c1dc1fe proc_set_user +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c437769 kernel_bind +EXPORT_SYMBOL vmlinux 0x4c77f01c amba_device_register +EXPORT_SYMBOL vmlinux 0x4c851aa1 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x4c9e6534 mem_map +EXPORT_SYMBOL vmlinux 0x4ca16980 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x4ca4bd76 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cc46b7d snd_timer_pause +EXPORT_SYMBOL vmlinux 0x4cd32088 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x4cd63235 param_set_invbool +EXPORT_SYMBOL vmlinux 0x4cd95e7f tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x4ce3148d hmm_range_fault +EXPORT_SYMBOL vmlinux 0x4cffce94 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d261b41 snd_timer_close +EXPORT_SYMBOL vmlinux 0x4d2af1b7 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x4d33071d dev_lstats_read +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4b4091 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d7b308e fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x4d895b3f noop_qdisc +EXPORT_SYMBOL vmlinux 0x4d99d24a param_ops_ushort +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4da818b6 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4dd44e10 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dffd45d snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x4e0503c1 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e06c3f6 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x4e0d8668 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x4e2a9c1d d_add_ci +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6a6e0f dquot_acquire +EXPORT_SYMBOL vmlinux 0x4e6b1f9f inode_init_once +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e707f3a netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable +EXPORT_SYMBOL vmlinux 0x4e84890a xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x4e904872 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x4ea1cf9d i2c_verify_client +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb28fc1 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x4ec480a3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x4ecf3f3e netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x4ed465ac simple_write_begin +EXPORT_SYMBOL vmlinux 0x4ed91d81 pci_dev_get +EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4ef5f2ef tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x4efe1d3a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x4f0b5dcc __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x4f11b96a xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4f1325a6 mmc_get_card +EXPORT_SYMBOL vmlinux 0x4f17c366 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x4f1cb4fb snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2b6203 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x4f3bfc61 keyring_alloc +EXPORT_SYMBOL vmlinux 0x4f6755fa nand_ecc_sw_bch_calculate +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f81d02d tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x4f83cc23 empty_aops +EXPORT_SYMBOL vmlinux 0x4f848c60 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8c6809 vfs_get_link +EXPORT_SYMBOL vmlinux 0x4f953d61 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4f9bfee8 make_kprojid +EXPORT_SYMBOL vmlinux 0x4fab9749 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x4fb40647 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4fc79fe4 pcim_iomap +EXPORT_SYMBOL vmlinux 0x4fc8ce0a netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x4fcee060 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x4fdf328b flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x501b3278 kill_anon_super +EXPORT_SYMBOL vmlinux 0x5027ee4d netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x502bc4cf scsi_dma_map +EXPORT_SYMBOL vmlinux 0x502df6cc blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x5038af58 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x503a51f8 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x50485716 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x504f7264 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x504fbd09 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x50574983 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x50617b05 seq_path +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506ddfb3 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50782a5b fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x508e2ad7 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x509381fb flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c1b2ea xfrm_state_free +EXPORT_SYMBOL vmlinux 0x50c52f19 dquot_file_open +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d521b1 tty_unlock +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50e2cc73 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x50e80907 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x50eaad75 snd_pcm_new +EXPORT_SYMBOL vmlinux 0x50f7f0fa dma_free_attrs +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x5105c89b snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x510ed027 vm_map_ram +EXPORT_SYMBOL vmlinux 0x51100315 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x5123714c scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x513e53fc pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5147b052 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x5156526a netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x515c7ee6 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x515e0ba3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516b1c67 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order +EXPORT_SYMBOL vmlinux 0x5178e86d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x5182c6d7 load_nls +EXPORT_SYMBOL vmlinux 0x5184488f of_device_is_available +EXPORT_SYMBOL vmlinux 0x519659d6 _dev_printk +EXPORT_SYMBOL vmlinux 0x519b5b47 generic_permission +EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51c89527 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x51df80de devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52144dd4 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x522c0b0f devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x52357f90 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x525c32fd scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x528a6e0f sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a7d8cf simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52ccf518 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x52cea556 skb_trim +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dd24ed dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52e8f97a pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5325ba3b input_register_handle +EXPORT_SYMBOL vmlinux 0x532ec148 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53411dd0 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x534a006c security_sock_graft +EXPORT_SYMBOL vmlinux 0x53563770 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5359a088 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x53675c82 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x53785db6 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x53897adb phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x53b0780e devm_free_irq +EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x53e06f1d scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x53fcdda6 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x5408159a iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x541410f6 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544fac05 pci_clear_master +EXPORT_SYMBOL vmlinux 0x546e25c6 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x547614e8 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x548363d2 inet_bind +EXPORT_SYMBOL vmlinux 0x54927736 __kfree_skb +EXPORT_SYMBOL vmlinux 0x5493d470 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x54a04374 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x54d0f107 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x54d3b308 register_cdrom +EXPORT_SYMBOL vmlinux 0x54db7fc2 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x54ddabb3 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x54de06c1 vfs_unlink +EXPORT_SYMBOL vmlinux 0x54e1522a nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ecf773 snd_device_free +EXPORT_SYMBOL vmlinux 0x54ee990d filemap_check_errors +EXPORT_SYMBOL vmlinux 0x55018b4b snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551209b2 page_symlink +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5529b46e xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x552b9b3e blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x554018a0 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x557000bf bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x5570804d __sk_dst_check +EXPORT_SYMBOL vmlinux 0x5571e781 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55956349 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x55cec6e6 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e584d6 thaw_super +EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x55ee444e dqget +EXPORT_SYMBOL vmlinux 0x55f2e41a bdev_read_only +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563d80a8 mmc_free_host +EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x5668daf9 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x569820ff md_integrity_register +EXPORT_SYMBOL vmlinux 0x569e7181 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x56b94a64 input_open_device +EXPORT_SYMBOL vmlinux 0x56c51d19 param_ops_short +EXPORT_SYMBOL vmlinux 0x56c8383b tty_unregister_device +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56fec951 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x570db20a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x572d3a07 generic_setlease +EXPORT_SYMBOL vmlinux 0x572fed3e __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574ed95e drop_super +EXPORT_SYMBOL vmlinux 0x5751b196 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x5752cbe1 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576b4a30 napi_get_frags +EXPORT_SYMBOL vmlinux 0x578fbc82 submit_bio +EXPORT_SYMBOL vmlinux 0x57a96f17 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x57aa4918 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x57af0dd2 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x57b45c19 seq_read +EXPORT_SYMBOL vmlinux 0x57b5333c phy_resume +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57f9020c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x57ff073b ptp_clock_index +EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x58048012 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x58155e81 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x58181331 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58297764 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58406810 I_BDEV +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x585d3cae twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x585de1dd devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x5888d16d sound_class +EXPORT_SYMBOL vmlinux 0x5890e46d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x589a86e7 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x58a780d3 input_free_device +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58d0f0d4 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x58d36dd1 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e78c9c vfs_getattr +EXPORT_SYMBOL vmlinux 0x58f9b348 input_close_device +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x590c3e4d vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x590e24f8 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x5918ab99 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x5950b114 d_make_root +EXPORT_SYMBOL vmlinux 0x59557782 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x595f189f netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x5969ad62 vm_mmap +EXPORT_SYMBOL vmlinux 0x596ab42f tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x598f2a71 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x59982c34 __ps2_command +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59a3a8c1 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x59ad3a22 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource +EXPORT_SYMBOL vmlinux 0x59b7b55b xfrm_state_add +EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59b9e20c scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x59cad05c __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x59cb0e2f tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d5b3ec generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x59e28894 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59f2c489 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x59f953ce crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5a09fdcc kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0f46fd _snd_ctl_add_follower +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a16912b security_inode_init_security +EXPORT_SYMBOL vmlinux 0x5a21f43a blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5a456a7d tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a622b1c __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x5a632247 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x5a851904 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x5aa0b644 __f_setown +EXPORT_SYMBOL vmlinux 0x5aaaec40 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x5ab6113d inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5ac9a40e input_register_handler +EXPORT_SYMBOL vmlinux 0x5ada4c7a vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae259f7 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x5ae9c2bd locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5aef45f3 snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x5af33945 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x5af65ac9 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x5b031248 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b075851 current_in_userns +EXPORT_SYMBOL vmlinux 0x5b151a28 __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b436b57 build_skb +EXPORT_SYMBOL vmlinux 0x5b7e9c49 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x5b7f4e33 can_nice +EXPORT_SYMBOL vmlinux 0x5b8835c0 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5b9844cc buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bc81b52 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x5be33601 vme_lm_request +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x5c144d29 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x5c185c17 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x5c1cda86 generic_listxattr +EXPORT_SYMBOL vmlinux 0x5c3a0cd7 inet_sendpage +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c41eded neigh_app_ns +EXPORT_SYMBOL vmlinux 0x5c4442b7 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c72f585 napi_build_skb +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c8ff66f ata_print_version +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5ca3ffc0 __inet_hash +EXPORT_SYMBOL vmlinux 0x5ca55f4c xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x5ca56b17 param_ops_long +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5ccc4fd4 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5cd1e52d vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfd76ba dev_uc_del +EXPORT_SYMBOL vmlinux 0x5d07530d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5d2bbc7d nonseekable_open +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d39dd09 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x5d3c767d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d55e35c xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x5d7eceae phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x5d7f5143 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x5d80eaf9 skb_dump +EXPORT_SYMBOL vmlinux 0x5d816576 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5da19b83 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last +EXPORT_SYMBOL vmlinux 0x5dc8fb98 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds +EXPORT_SYMBOL vmlinux 0x5ddd963c md_write_end +EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e11bb7f blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x5e14d205 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x5e1bfdb7 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x5e225d1a register_shrinker +EXPORT_SYMBOL vmlinux 0x5e32610b __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x5e4e2442 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x5e59ed09 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a325d input_unregister_handle +EXPORT_SYMBOL vmlinux 0x5ea22edf sock_set_mark +EXPORT_SYMBOL vmlinux 0x5ead701f of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ee59b1f skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1a1b92 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x5f1ceb4f cdev_alloc +EXPORT_SYMBOL vmlinux 0x5f3709e5 register_key_type +EXPORT_SYMBOL vmlinux 0x5f74716b phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f781f7b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x5f82e05f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x5f9e6f26 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fb46e97 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5fddd78e xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x5fdea0ef configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff44816 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x60032864 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600a6aec inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x60100aa5 scsi_host_put +EXPORT_SYMBOL vmlinux 0x60185d1a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602412a1 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x602ae082 pci_match_id +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60519e28 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6066c6ca pci_find_resource +EXPORT_SYMBOL vmlinux 0x60671ee9 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x60707bf9 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x60788edf snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x607d6981 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x608bc1a3 nobh_write_end +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a96151 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x60ae2d0b con_copy_unimap +EXPORT_SYMBOL vmlinux 0x60b8c325 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60ce5226 cqhci_init +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60f26c6c xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x60fe24f2 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x61138de6 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x611ef93b serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614238e8 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615f86ac qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x616f6344 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x617c3d9c hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x619d161e snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x61a9d18f scsi_remove_target +EXPORT_SYMBOL vmlinux 0x61b4f664 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x61b63626 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8e0d2 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x61b9e0a3 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f95ea3 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62195841 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x622439fb nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623e7164 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x6258c4c5 discard_new_inode +EXPORT_SYMBOL vmlinux 0x6263b22c dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62763bfb ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x6281caec of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62b9567c override_creds +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62e026da dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x6309377f dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x631406de key_move +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6321d57b generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x63231d35 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x63255e06 keyring_search +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x6349cbba insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x634f8cb0 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x6367357a snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x637ed6fa sock_rfree +EXPORT_SYMBOL vmlinux 0x6380757e inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x63818e06 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x638974c4 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x638a1e6e __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x6396544e handle_edge_irq +EXPORT_SYMBOL vmlinux 0x6397bd3d pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac9999 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ca41f4 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x63ceb0e6 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x63dc117a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x63e4c210 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f7cac6 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64356ea9 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x643cf0d3 fb_class +EXPORT_SYMBOL vmlinux 0x64444e2f of_device_register +EXPORT_SYMBOL vmlinux 0x6459de32 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x64628ef9 dev_activate +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x648c611d napi_gro_receive +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ac7196 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x64b631e6 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x64cab624 mmc_start_request +EXPORT_SYMBOL vmlinux 0x64d55cbf default_llseek +EXPORT_SYMBOL vmlinux 0x64ee79b1 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x64f213ca tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x64f7e16f fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x64fc1169 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6517834f amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x65248c07 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x65365711 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x65388676 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x654f3359 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x6555aeea tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659213f9 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x65921594 rproc_boot +EXPORT_SYMBOL vmlinux 0x659233c0 of_find_property +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a72e1e skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x65a7bd85 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x65c3f1c3 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dd86fb csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x65ef76e3 config_item_set_name +EXPORT_SYMBOL vmlinux 0x65efdaa1 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x65f3f1ea ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x66048985 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x660a68b2 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x661fa1f8 phy_find_first +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x664e8fc9 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x665d6445 input_grab_device +EXPORT_SYMBOL vmlinux 0x665fc62e tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666fd460 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0x667929d1 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x6685ddef simple_transaction_release +EXPORT_SYMBOL vmlinux 0x668bbf9f kernel_read +EXPORT_SYMBOL vmlinux 0x6690538f ip_local_deliver +EXPORT_SYMBOL vmlinux 0x66a16095 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x66a86c80 param_set_byte +EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66c36b61 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x66eb97b6 skb_ext_add +EXPORT_SYMBOL vmlinux 0x66ee9a5f dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x66fb72e2 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x6710aa59 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x6715f9c9 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x67251b54 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x673815f4 inet_protos +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67724da3 uart_register_driver +EXPORT_SYMBOL vmlinux 0x679856f5 sort_r +EXPORT_SYMBOL vmlinux 0x679a4fd2 sock_no_linger +EXPORT_SYMBOL vmlinux 0x67a3aba8 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x67ae7af0 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67be9e67 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x67ccd75b init_task +EXPORT_SYMBOL vmlinux 0x67d12c05 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x67d9cbad ptp_clock_event +EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x680e3609 snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x681070d4 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x68196e30 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x681cf891 dget_parent +EXPORT_SYMBOL vmlinux 0x6828cba5 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x68575794 fsync_bdev +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6887d57e ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x68899ad2 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x68908197 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x689d9366 clear_inode +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a579cd generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x68b6c6d0 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x68c61717 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6906b797 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x6907bc1a iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x690f18e0 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6917fbc2 of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x692516ac page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x694a7571 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x694e9400 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x6958f543 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6973eb6c poll_freewait +EXPORT_SYMBOL vmlinux 0x697784c3 page_pool_create +EXPORT_SYMBOL vmlinux 0x69826691 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x6992d0b2 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x699de195 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x69a53fb9 file_open_root +EXPORT_SYMBOL vmlinux 0x69b6308a twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69e713b5 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0530e6 kobject_set_name +EXPORT_SYMBOL vmlinux 0x6a0f97cd inet_addr_type +EXPORT_SYMBOL vmlinux 0x6a1f3c17 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x6a2a956a pci_release_resource +EXPORT_SYMBOL vmlinux 0x6a405d89 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a629a0f rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x6a643117 init_net +EXPORT_SYMBOL vmlinux 0x6a68585a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a709914 snd_timer_start +EXPORT_SYMBOL vmlinux 0x6a71c540 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x6a816c78 dns_query +EXPORT_SYMBOL vmlinux 0x6a9336fd phy_connect +EXPORT_SYMBOL vmlinux 0x6ac30b3e blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae5bfb9 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6b05e11d register_netdev +EXPORT_SYMBOL vmlinux 0x6b0b8d7c flush_signals +EXPORT_SYMBOL vmlinux 0x6b190ea6 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b50e165 dqput +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b56353c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b71bb59 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x6b7af1d6 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9725eb devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x6b9932b6 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba92729 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x6bac0128 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x6bac26ac crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x6bb10408 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x6bb2dee9 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6bb87c1d PageMovable +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdc9d02 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x6be6f7a6 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6becb97b mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c49ab78 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c65659f user_path_create +EXPORT_SYMBOL vmlinux 0x6c681cd2 param_set_charp +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6cacef92 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb8898b max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x6cba01b1 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x6cbdfb76 param_set_copystring +EXPORT_SYMBOL vmlinux 0x6ce1e9ef __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x6ce965a4 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6ceeede8 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf588c1 sock_i_ino +EXPORT_SYMBOL vmlinux 0x6d030824 shmem_aops +EXPORT_SYMBOL vmlinux 0x6d06846d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x6d232ed6 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d34af8e serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x6d3a33dc md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x6d552a36 tcf_classify +EXPORT_SYMBOL vmlinux 0x6d5f06e1 ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x6d631e56 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d857491 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d8be408 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x6d9029d8 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x6d96acfb jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x6da7ae19 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x6dc28d98 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource +EXPORT_SYMBOL vmlinux 0x6dce5787 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd479bd tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds +EXPORT_SYMBOL vmlinux 0x6dea7392 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e09c915 unpin_user_page +EXPORT_SYMBOL vmlinux 0x6e253927 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x6e2e31f3 filemap_fault +EXPORT_SYMBOL vmlinux 0x6e4a8017 key_link +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e4eb5f1 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7a87eb pci_set_power_state +EXPORT_SYMBOL vmlinux 0x6e7f9d72 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x6e9237d6 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb305ac blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x6ec42274 eth_type_trans +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ee0395c key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x6ee2a19d devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6efa04a9 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f1a7c31 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x6f216ced filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6f3284e7 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x6f6e70bc stream_open +EXPORT_SYMBOL vmlinux 0x6f6e89b1 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x6f77e020 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x6f7da598 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f86a753 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f9e61bf nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fb81bca __netif_schedule +EXPORT_SYMBOL vmlinux 0x6fbaca16 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe7ce32 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x6ff8d1d9 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x6ffa6c30 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700eb7f5 do_map_probe +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7043f283 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x7046adba uart_resume_port +EXPORT_SYMBOL vmlinux 0x706cb90f __pci_register_driver +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x707a9fb8 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x7086863e rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x7091a486 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x70ab1f54 security_path_unlink +EXPORT_SYMBOL vmlinux 0x70aea75d devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x70c9730d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x70cdb0d6 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x7103f45a genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x71081f5c flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x71266f44 poll_initwait +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7162bae4 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7179d82b find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x717a6972 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x718ed93a ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ad56ef get_phy_device +EXPORT_SYMBOL vmlinux 0x71b47390 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x71bf4ae6 vme_irq_free +EXPORT_SYMBOL vmlinux 0x71c6963e set_nlink +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71e21b9d tty_port_close +EXPORT_SYMBOL vmlinux 0x71f20be8 key_put +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7202ad1e tcf_idr_release +EXPORT_SYMBOL vmlinux 0x7204d3a5 of_root +EXPORT_SYMBOL vmlinux 0x72078eb2 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x721c0edf xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x725192df lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x7259889a dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x72816b6b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x7283c614 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x728ef496 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x72a21d03 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x72b15bd5 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c1aab6 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x72c6c8ea d_drop +EXPORT_SYMBOL vmlinux 0x72d46b0d free_netdev +EXPORT_SYMBOL vmlinux 0x72d632d2 simple_rmdir +EXPORT_SYMBOL vmlinux 0x72e3b952 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x72e9cc90 file_remove_privs +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f1aa24 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0x73116e89 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x733fd428 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x734e37e6 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x73586c0f icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x735c34cc phy_disconnect +EXPORT_SYMBOL vmlinux 0x737128b2 sock_wfree +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73877c58 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x7389cbe9 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x738d3c09 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x73979cbe genphy_suspend +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73af2abf phy_config_aneg +EXPORT_SYMBOL vmlinux 0x73cc6f8e pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73eb2924 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x73f26ce8 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7410d933 send_sig_info +EXPORT_SYMBOL vmlinux 0x7410df89 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x74118f55 netdev_state_change +EXPORT_SYMBOL vmlinux 0x7417b685 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7418addc __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7452e456 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7460cc14 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x74646983 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x7466ec9c fb_get_mode +EXPORT_SYMBOL vmlinux 0x74745015 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x7478b94e register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7489d078 dm_table_event +EXPORT_SYMBOL vmlinux 0x7492b89d simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x749b1e8c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x74bcd6da __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c5054f cdev_device_add +EXPORT_SYMBOL vmlinux 0x74c5ae33 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x74daebd4 import_iovec +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e881d5 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x74eeb7c8 d_exact_alias +EXPORT_SYMBOL vmlinux 0x74fb5fd9 netlink_ack +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x750feef1 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x75113ab8 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x75133645 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x751cd7e8 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x7561629a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c34a9a get_watch_queue +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d180aa param_ops_uint +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d98b05 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x75da9df7 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x75ea665c tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760e066f of_match_node +EXPORT_SYMBOL vmlinux 0x76157e1a __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x76234259 ethtool_notify +EXPORT_SYMBOL vmlinux 0x76244952 vm_insert_page +EXPORT_SYMBOL vmlinux 0x7645e11d jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7669f5e6 inet_ioctl +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x769a5256 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a3561c __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x76cb9665 follow_down_one +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76dc56f1 __nla_put +EXPORT_SYMBOL vmlinux 0x76e2db5d ___pskb_trim +EXPORT_SYMBOL vmlinux 0x76e2eff9 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x76e3ba55 phy_suspend +EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x76f4b22e ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x770ed4fb snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7732d916 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x776449d1 skb_copy_header +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77a36c88 set_blocksize +EXPORT_SYMBOL vmlinux 0x77a52624 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x77ab7a43 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x77afdf16 sock_no_connect +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77ca8997 dquot_drop +EXPORT_SYMBOL vmlinux 0x77d06db3 tcf_block_put +EXPORT_SYMBOL vmlinux 0x77dfd455 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x77e2d750 param_ops_int +EXPORT_SYMBOL vmlinux 0x77e2fa02 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x77e642c3 get_cached_acl +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78157b4f tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x78225cb4 rproc_free +EXPORT_SYMBOL vmlinux 0x782b242d i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x7845467b __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7861c547 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x786eacae fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x78743c35 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78844ddb dquot_resume +EXPORT_SYMBOL vmlinux 0x788bec25 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789d2404 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a42d5b devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x78b3b8e8 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x78b45552 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c33219 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x78ce745a vme_bus_type +EXPORT_SYMBOL vmlinux 0x78d36277 param_set_bool +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78fdc004 tso_count_descs +EXPORT_SYMBOL vmlinux 0x79014db9 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x79117e46 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x79126456 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x791d1f27 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x793d6188 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x794e5e2c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x796b8d13 pskb_extract +EXPORT_SYMBOL vmlinux 0x796bca35 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x7983a75f tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x798df6a1 write_cache_pages +EXPORT_SYMBOL vmlinux 0x79a43192 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79d4280c tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x79d648ce tcp_filter +EXPORT_SYMBOL vmlinux 0x79e00d59 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x79e5d3fa bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x79e794b0 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x79fa6cac rproc_add +EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a242512 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7a333edd inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7a38e85f iov_iter_init +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a416392 tso_build_data +EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x7a491d88 of_chosen +EXPORT_SYMBOL vmlinux 0x7a4e0d91 blk_put_request +EXPORT_SYMBOL vmlinux 0x7a508bcb serio_close +EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7a7b71c6 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x7a828b0e dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7a8357fa pci_disable_device +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aad0a58 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7ab01b8a __neigh_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abfb662 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ade9187 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7ae899af snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x7af1055c mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0231d8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x7b22ebb7 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x7b254db8 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7b255f05 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b3bab89 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7b4475bf serio_rescan +EXPORT_SYMBOL vmlinux 0x7b48ef84 import_single_range +EXPORT_SYMBOL vmlinux 0x7b58a7a5 generic_fillattr +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7baf9dca jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x7bbb475b read_code +EXPORT_SYMBOL vmlinux 0x7bc030de mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x7bdf5ec2 registered_fb +EXPORT_SYMBOL vmlinux 0x7bfa2993 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order +EXPORT_SYMBOL vmlinux 0x7c2d581b vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7c30db78 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5acabe blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x7c616424 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7c64b389 locks_delete_block +EXPORT_SYMBOL vmlinux 0x7c686802 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x7c737e6c pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x7c79c44d key_alloc +EXPORT_SYMBOL vmlinux 0x7c883e4d security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c9d32db pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7ca15fdb phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc4801c vme_slot_num +EXPORT_SYMBOL vmlinux 0x7ccd3f0f phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user +EXPORT_SYMBOL vmlinux 0x7ce038d4 framebuffer_release +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d09596b dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d0f879a rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x7d1c51a3 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7d1dbd8c inet_del_offload +EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d45158e bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x7d6ee85d peernet2id +EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x7d7ccd34 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7d801d86 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x7d83d874 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x7d92015a sock_from_file +EXPORT_SYMBOL vmlinux 0x7d98b389 tcp_mmap +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db543f3 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x7dd59ade d_genocide +EXPORT_SYMBOL vmlinux 0x7de098c2 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e01e6fe tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e1321c6 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x7e237a66 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e462947 ip_output +EXPORT_SYMBOL vmlinux 0x7e4dc8e3 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x7e749043 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x7e7d22b0 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x7e926c3f devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7e98de67 tty_port_put +EXPORT_SYMBOL vmlinux 0x7eab2350 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x7eabce07 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7eb29f38 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x7ebdae28 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x7ed5a5fc tty_hangup +EXPORT_SYMBOL vmlinux 0x7ee95c78 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x7ef5bfc2 try_to_release_page +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0a1b8f pci_resize_resource +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x7f39b5e5 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x7f401b71 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7f418928 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x7f5445ba dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f70256f skb_pull +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f9f57ba phy_attached_info +EXPORT_SYMBOL vmlinux 0x7fb1258b freeze_bdev +EXPORT_SYMBOL vmlinux 0x7fb87c3e page_pool_release_page +EXPORT_SYMBOL vmlinux 0x7fbcd6b6 proc_set_size +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd5474b fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x7fdb33e7 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ffc9ffd tcp_peek_len +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8016c941 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x8016e63f configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x8022d112 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x80280eee udp_seq_ops +EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80482afa vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x805d724e dev_uc_init +EXPORT_SYMBOL vmlinux 0x8067c67c tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8069ba40 netif_napi_add +EXPORT_SYMBOL vmlinux 0x806ef8b5 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x808444c7 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x8098aa80 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x809b0d94 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x80a176e1 vme_slave_request +EXPORT_SYMBOL vmlinux 0x80aafb13 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x80abbbd1 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le +EXPORT_SYMBOL vmlinux 0x80c56343 clear_nlink +EXPORT_SYMBOL vmlinux 0x80c91ea5 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x80ca458b __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d25c9d phy_register_fixup +EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80da1ee8 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8118b721 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x812fef2a pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x81354b28 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x81626e7f dst_discard_out +EXPORT_SYMBOL vmlinux 0x8183d0b1 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81934e98 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x8196e74b ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x81990025 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x81c0ac10 file_ns_capable +EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e45b7d generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x823b8ba1 arp_xmit +EXPORT_SYMBOL vmlinux 0x82412c34 complete_request_key +EXPORT_SYMBOL vmlinux 0x8249c5e1 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x825d5de3 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x826ad149 generic_update_time +EXPORT_SYMBOL vmlinux 0x826e1ad4 tcp_child_process +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82812c5c ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock +EXPORT_SYMBOL vmlinux 0x828d224a unregister_cdrom +EXPORT_SYMBOL vmlinux 0x82ae2478 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x82de242d xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x82f64469 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x82fc5dba eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x8300047d copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x83128bbf tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8330b1e8 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x836f3f3c fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x83781b0e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x83814ae6 pci_pme_active +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x8394a1fa rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x839da08f netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x83c0aa2e of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cb9571 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify +EXPORT_SYMBOL vmlinux 0x83ced5fe dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x83d906c3 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x83dfe5ea mdiobus_scan +EXPORT_SYMBOL vmlinux 0x83e60778 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x83f9b82a snd_unregister_device +EXPORT_SYMBOL vmlinux 0x8402cec7 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x841a0408 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x842ff0e1 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x843db448 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x8441c8cb sg_free_table +EXPORT_SYMBOL vmlinux 0x8447d4b0 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x844f8cea iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x8451fdfe sg_init_table +EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase +EXPORT_SYMBOL vmlinux 0x845d3020 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x845d653b jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x84638537 tty_check_change +EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x847aacd1 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x847d91d5 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x848117a3 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x849a4777 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x849f2911 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x84a4e667 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x84a65aea devm_rproc_add +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b3961d mount_bdev +EXPORT_SYMBOL vmlinux 0x84ba5b8c dm_table_get_md +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84cf93b0 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x84d3e36e phy_device_create +EXPORT_SYMBOL vmlinux 0x84e21452 pci_release_region +EXPORT_SYMBOL vmlinux 0x84e97502 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x850177ec configfs_register_group +EXPORT_SYMBOL vmlinux 0x8514fa54 bio_copy_data +EXPORT_SYMBOL vmlinux 0x851cc386 devm_ioremap +EXPORT_SYMBOL vmlinux 0x8520b29e dev_mc_sync +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85516447 __brelse +EXPORT_SYMBOL vmlinux 0x85619f03 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856ce84d alloc_fddidev +EXPORT_SYMBOL vmlinux 0x857c6d4d netdev_features_change +EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x858f368f serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a6e808 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d20b8f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85dfc785 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x85e7fcc0 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f0333f dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x85f51386 netif_rx +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x860e4126 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8626a591 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL vmlinux 0x862bc663 memset16 +EXPORT_SYMBOL vmlinux 0x862f8fbd put_disk +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86482465 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x865d8efa nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x8666995b sgl_alloc +EXPORT_SYMBOL vmlinux 0x866a448b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x867853e4 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x867ebaec ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868c5aaf max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x869c44c8 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x86aa33e9 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x86af392a devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x86d31aca blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86e6d04a generic_file_llseek +EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec +EXPORT_SYMBOL vmlinux 0x86ecac9b mmc_detect_change +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87013cbd mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x87078918 sock_create_kern +EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x870f30de fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x8712e93b devfreq_add_device +EXPORT_SYMBOL vmlinux 0x872be5be kill_litter_super +EXPORT_SYMBOL vmlinux 0x8733d4c1 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x874d44df ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x8759e030 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x876841c8 security_sb_remount +EXPORT_SYMBOL vmlinux 0x876c3d75 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x878ec3a3 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x87a2e9a5 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x87a44ab0 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x87a7fd8c mmput_async +EXPORT_SYMBOL vmlinux 0x87c3ea3f xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x87d3b576 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x87e1b56a scsi_add_device +EXPORT_SYMBOL vmlinux 0x87f32ebd d_obtain_root +EXPORT_SYMBOL vmlinux 0x88065dcd tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x882b4245 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x882faee9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x88307ae2 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x883f14cc inode_init_owner +EXPORT_SYMBOL vmlinux 0x88532fde __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x8865f2af ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x8869a007 udp_set_csum +EXPORT_SYMBOL vmlinux 0x886fc47e is_bad_inode +EXPORT_SYMBOL vmlinux 0x88808015 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x888cd960 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next +EXPORT_SYMBOL vmlinux 0x88aa4444 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88b9310d blk_rq_init +EXPORT_SYMBOL vmlinux 0x88c90088 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88eec174 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x890de126 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0x890e62a8 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x892cded4 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x8931c488 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x893b0f8b dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x893b3658 inet_select_addr +EXPORT_SYMBOL vmlinux 0x894c2c77 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x8968550c tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x89861c9c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x8999c2eb tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x89bfa248 ip_options_compile +EXPORT_SYMBOL vmlinux 0x89bfde15 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x89c15de9 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x89d31b28 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x89d78a1f of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x89e86ac8 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x89f62ac8 __frontswap_test +EXPORT_SYMBOL vmlinux 0x8a0c6ca1 phy_init_eee +EXPORT_SYMBOL vmlinux 0x8a193254 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8a21c0ef dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase +EXPORT_SYMBOL vmlinux 0x8a3b9033 submit_bh +EXPORT_SYMBOL vmlinux 0x8a3dca61 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x8a465a73 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4d5db1 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a5f12f8 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8f681e __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x8ab6dc2a map_destroy +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac485e3 dev_addr_add +EXPORT_SYMBOL vmlinux 0x8ae7ecd7 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x8ae890b4 sget +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0386b6 km_query +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b172b1b may_umount +EXPORT_SYMBOL vmlinux 0x8b1ca15d register_console +EXPORT_SYMBOL vmlinux 0x8b2dd0c0 fd_install +EXPORT_SYMBOL vmlinux 0x8b43f400 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b655283 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8f30e2 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8b9f7d9f snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x8bc03c3b rproc_detach +EXPORT_SYMBOL vmlinux 0x8bc44bb3 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8bc5e71e xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x8bc9f607 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x8bdf1736 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8be76a1e sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8bea36ca blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring +EXPORT_SYMBOL vmlinux 0x8bf3ed6a sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8c0a9d1e mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8c12edb9 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x8c2899c3 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8c2cc75b ppp_dev_name +EXPORT_SYMBOL vmlinux 0x8c3d5a07 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8c57e7aa tcf_exts_change +EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8c613c77 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c86a98e udplite_prot +EXPORT_SYMBOL vmlinux 0x8c885c6c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x8ca10772 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x8ca11e54 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb1b804 register_filesystem +EXPORT_SYMBOL vmlinux 0x8cb90121 phy_error +EXPORT_SYMBOL vmlinux 0x8cbfd327 __skb_checksum +EXPORT_SYMBOL vmlinux 0x8cc1a6a3 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8cdfcf86 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table +EXPORT_SYMBOL vmlinux 0x8ce9824f __block_write_full_page +EXPORT_SYMBOL vmlinux 0x8cf4346f arp_tbl +EXPORT_SYMBOL vmlinux 0x8cfc83a0 dup_iter +EXPORT_SYMBOL vmlinux 0x8d0fba1d dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x8d2e4940 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8d39696b backlight_force_update +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d4458ac input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8da84568 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df6a91c touch_atime +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfd5139 put_fs_context +EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node +EXPORT_SYMBOL vmlinux 0x8e10ec79 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x8e2aa3cd pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x8e3665e6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8e4872d3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e589041 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x8e608a18 dev_set_group +EXPORT_SYMBOL vmlinux 0x8e6a109a _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x8e754aeb md_write_inc +EXPORT_SYMBOL vmlinux 0x8e82bd84 bio_devname +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed +EXPORT_SYMBOL vmlinux 0x8e87e7da nlmsg_notify +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9b2f01 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x8ea826a5 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x8eaf5312 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x8ec3b170 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8edefe22 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x8ee76670 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f13eda2 softnet_data +EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8f2b497f neigh_xmit +EXPORT_SYMBOL vmlinux 0x8f2cb8b8 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x8f315ea0 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x8f426195 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x8f4da832 trace_event_printf +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f5ae77c module_layout +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f67c4dd tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch +EXPORT_SYMBOL vmlinux 0x8f930dc4 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x8f94bdb7 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fb0f4b3 pci_save_state +EXPORT_SYMBOL vmlinux 0x8fbaa2b1 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update +EXPORT_SYMBOL vmlinux 0x8ff61423 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x902e09a8 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x9033ac54 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x9051d126 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9065bc9f fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x906e3f90 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9074dd76 qdisc_put +EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl +EXPORT_SYMBOL vmlinux 0x9098399f inet6_offloads +EXPORT_SYMBOL vmlinux 0x90a1f903 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x90c9daec inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x91079c31 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x91228d0a _dev_notice +EXPORT_SYMBOL vmlinux 0x9124bb7c path_has_submounts +EXPORT_SYMBOL vmlinux 0x912e24ce ll_rw_block +EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x91450d26 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x91535f4b dst_release +EXPORT_SYMBOL vmlinux 0x91540506 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x915874c3 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x9168eb52 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x916ba97b page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x9178bc12 __seq_open_private +EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919dc82b dput +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91aec86d tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91ddcf00 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x9223464f i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x92277daf tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924b04e2 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x9274d94a mmc_add_host +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a41c33 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x92ade4c7 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d465aa hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92da2cfc d_alloc +EXPORT_SYMBOL vmlinux 0x92dc3f16 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f6d84f __break_lease +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x930521da pid_task +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932fcc77 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x933c8ac5 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x9366d269 sock_release +EXPORT_SYMBOL vmlinux 0x93681b35 inc_node_state +EXPORT_SYMBOL vmlinux 0x93713086 sg_split +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9378ca6b skb_find_text +EXPORT_SYMBOL vmlinux 0x93852914 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93ae6573 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x93b244c1 config_group_init +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b4dd34 neigh_lookup +EXPORT_SYMBOL vmlinux 0x93b7c1b7 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free +EXPORT_SYMBOL vmlinux 0x93c5c616 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set +EXPORT_SYMBOL vmlinux 0x93ef5957 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x93f57f88 scsi_device_get +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x94161337 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9467b87c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x948148df get_tz_trend +EXPORT_SYMBOL vmlinux 0x94822fe2 sock_wake_async +EXPORT_SYMBOL vmlinux 0x9487e932 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a0a2ef __ip_options_compile +EXPORT_SYMBOL vmlinux 0x94b0bbd9 of_device_alloc +EXPORT_SYMBOL vmlinux 0x94b673bc bdi_put +EXPORT_SYMBOL vmlinux 0x94bdf1ca __icmp_send +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94e200e1 module_put +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x950705d7 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x951aebac ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x952b6c6a fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x95372a59 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x954e16a6 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x954e76f9 skb_tx_error +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9567b206 arp_create +EXPORT_SYMBOL vmlinux 0x95833e05 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x95a721c8 rtc_add_group +EXPORT_SYMBOL vmlinux 0x95afd1cb seq_putc +EXPORT_SYMBOL vmlinux 0x95b51cfd pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x95ce5cd5 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95e3ebe7 input_set_capability +EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x95e83f7e of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x95eb18d3 clk_get +EXPORT_SYMBOL vmlinux 0x9605c819 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock +EXPORT_SYMBOL vmlinux 0x962117ce vme_irq_request +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x96301a3a xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x964387fb current_time +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9692252a do_clone_file_range +EXPORT_SYMBOL vmlinux 0x96b16582 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x96b707d3 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cc8bbf ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dfba8e seq_pad +EXPORT_SYMBOL vmlinux 0x96f4fb65 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x9705d8db scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97230011 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9748576a tcp_req_err +EXPORT_SYMBOL vmlinux 0x9748abcf end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x9775e52b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x9780e71b kobject_put +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9795f275 skb_split +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b41689 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x97b73811 rio_query_mport +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97bef190 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x97d39c30 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x97d5fcf5 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x97f1be03 cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x97ff58bb bio_reset +EXPORT_SYMBOL vmlinux 0x9821d02b page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x984463ae __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x9875cc9c tcf_action_exec +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x987f47d0 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor +EXPORT_SYMBOL vmlinux 0x9891d82e ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x989e440c kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98a53f60 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x98b878be seq_puts +EXPORT_SYMBOL vmlinux 0x98ba44cb fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x98bcccea give_up_console +EXPORT_SYMBOL vmlinux 0x98c5cf53 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98df248f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e9d0bf cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x9901f052 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x99020c69 path_is_under +EXPORT_SYMBOL vmlinux 0x99043d1f seq_write +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x991dccc0 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x9929525e __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x992a3781 dquot_operations +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x99355803 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x9948a138 ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x994a043e page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all +EXPORT_SYMBOL vmlinux 0x998542f7 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x9994d2ad vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x999b71fd nobh_write_begin +EXPORT_SYMBOL vmlinux 0x999cf3bb ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a8b472 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x99b61de2 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c1faa1 console_start +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99c9612f rtc_add_groups +EXPORT_SYMBOL vmlinux 0x99cd9933 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x99d21d95 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a053e57 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0d2335 udp_seq_start +EXPORT_SYMBOL vmlinux 0x9a12d07b sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a2ad42b get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x9a414518 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5f487a snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x9a620bcc scsi_register_interface +EXPORT_SYMBOL vmlinux 0x9a693797 netlink_set_err +EXPORT_SYMBOL vmlinux 0x9a6a7ea0 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x9a7e7e08 snd_component_add +EXPORT_SYMBOL vmlinux 0x9a7ef717 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec +EXPORT_SYMBOL vmlinux 0x9a912e16 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x9a9193f2 block_write_full_page +EXPORT_SYMBOL vmlinux 0x9a9b5898 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x9aa4ce76 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac3e09a __find_get_block +EXPORT_SYMBOL vmlinux 0x9acc7ae1 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x9adc6129 pci_request_region +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b25e963 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3b27ac max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x9b3fda54 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b504ed5 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b77d184 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x9b7ee2b4 _dev_info +EXPORT_SYMBOL vmlinux 0x9b81321d __napi_schedule +EXPORT_SYMBOL vmlinux 0x9b8a2cc6 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x9b9f98ed tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x9bb413ec fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x9bb6072c sock_alloc +EXPORT_SYMBOL vmlinux 0x9bc2815f __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x9bc49a27 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x9bc6885d security_binder_transaction +EXPORT_SYMBOL vmlinux 0x9bc735db __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9bd2dab2 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x9bed8d2c dev_uc_flush +EXPORT_SYMBOL vmlinux 0x9c1efefa mfd_add_devices +EXPORT_SYMBOL vmlinux 0x9c298542 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x9c4a4f99 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x9c58be0f of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c6788f6 simple_fill_super +EXPORT_SYMBOL vmlinux 0x9c6c1ce6 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9c85251a tcp_make_synack +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8891f6 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9cab23cd iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb16440 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x9ccd5eee netdev_printk +EXPORT_SYMBOL vmlinux 0x9cda6e77 nand_ecc_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ceec7c8 amba_release_regions +EXPORT_SYMBOL vmlinux 0x9d04d2b3 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d19c913 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x9d21f48b __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3afdf8 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9d3d3a6e unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d86f608 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x9d897da7 file_update_time +EXPORT_SYMBOL vmlinux 0x9d8ed367 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x9d950bb2 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9da33018 pipe_unlock +EXPORT_SYMBOL vmlinux 0x9da5d680 setup_new_exec +EXPORT_SYMBOL vmlinux 0x9dac17e6 stop_tty +EXPORT_SYMBOL vmlinux 0x9db3dbde vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x9dbba277 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x9dbbd24e scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x9dc56538 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x9dce2430 ihold +EXPORT_SYMBOL vmlinux 0x9dd0aa7b udp6_csum_init +EXPORT_SYMBOL vmlinux 0x9de29ef7 d_add +EXPORT_SYMBOL vmlinux 0x9deb5f5d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0cf576 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1c6da3 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x9e3191cc scsi_host_get +EXPORT_SYMBOL vmlinux 0x9e3e6416 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e59aea6 netdev_notice +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e70efe6 vfs_rename +EXPORT_SYMBOL vmlinux 0x9e91a68f __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x9e986611 from_kuid +EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eb0da8a mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x9eb1f683 input_event +EXPORT_SYMBOL vmlinux 0x9ebd4502 ps2_init +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed10415 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eed0f97 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x9ef3990a cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x9f010509 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x9f1488f4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x9f2c10d4 path_put +EXPORT_SYMBOL vmlinux 0x9f2d3ccf of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5ba6ad ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0x9f5bb025 bioset_init +EXPORT_SYMBOL vmlinux 0x9f6b8617 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x9f7718fd tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9f7a350a dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states +EXPORT_SYMBOL vmlinux 0x9f8612f9 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa57fbd phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x9fbdf5fd pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x9fdd246c release_pages +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fecb845 posix_test_lock +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00b5f89 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xa013ad2c d_delete +EXPORT_SYMBOL vmlinux 0xa01bd923 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa023c045 nf_reinject +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa033de1f snd_seq_root +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0448023 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xa04adfcb dst_dev_put +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa052fe96 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xa053110a generic_ro_fops +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07ee92c input_get_timestamp +EXPORT_SYMBOL vmlinux 0xa0832501 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09711a9 udp_prot +EXPORT_SYMBOL vmlinux 0xa09ba9c7 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0ae23ac kern_path_create +EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ba2465 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xa0cb11e1 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dd1424 get_fs_type +EXPORT_SYMBOL vmlinux 0xa0e21841 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1219aec bio_uninit +EXPORT_SYMBOL vmlinux 0xa1365742 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xa1388bad phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xa145949a of_clk_get +EXPORT_SYMBOL vmlinux 0xa156c799 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa1597c42 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xa15c37bd pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue +EXPORT_SYMBOL vmlinux 0xa18ff62d sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xa1b470b0 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa1b6aa5c file_modified +EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xa1bebee9 md_write_start +EXPORT_SYMBOL vmlinux 0xa1c3880c scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xa1c93ac1 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xa1cd1049 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user +EXPORT_SYMBOL vmlinux 0xa1da0fad cdev_add +EXPORT_SYMBOL vmlinux 0xa1e58b57 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa1ec201a proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xa2039b10 dquot_alloc +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2093da1 bio_init +EXPORT_SYMBOL vmlinux 0xa21500da of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24491bf ida_free +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa266daa6 twl6040_power +EXPORT_SYMBOL vmlinux 0xa27692e4 napi_enable +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29002c2 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xa29b4879 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xa29d0f1c mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xa2a51322 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xa2b7c3fd inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa2c5338c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xa2cd60d4 proto_unregister +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e13c5d tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xa2e366c5 padata_free +EXPORT_SYMBOL vmlinux 0xa2f7435f simple_link +EXPORT_SYMBOL vmlinux 0xa308e729 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa31ba86d fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xa31da25f devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xa328ed01 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa33cd0a1 iget_failed +EXPORT_SYMBOL vmlinux 0xa33e6de5 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xa373e1a8 param_set_ushort +EXPORT_SYMBOL vmlinux 0xa3774f1e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0xa389242e unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xa38b00d0 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa39026c5 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free +EXPORT_SYMBOL vmlinux 0xa3ab692e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xa3ac158f sg_alloc_table +EXPORT_SYMBOL vmlinux 0xa3aff8ec napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa3b6e1b7 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0xa3b6ec80 dev_set_alias +EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa3c08c7c dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa3cca3ba __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xa3cf8f1e security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40067dd flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xa4167fae pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xa4347df4 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed +EXPORT_SYMBOL vmlinux 0xa440e465 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa44e7539 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa47e66a6 udp_disconnect +EXPORT_SYMBOL vmlinux 0xa47eb0f3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa48973d0 dquot_initialize +EXPORT_SYMBOL vmlinux 0xa489c756 dst_destroy +EXPORT_SYMBOL vmlinux 0xa48c2a06 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xa49d87ad cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xa4aa457e sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa4ad8516 write_one_page +EXPORT_SYMBOL vmlinux 0xa4b2e41e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xa4ed5fe8 igrab +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa5090103 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa51d5bf3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xa520a438 fb_pan_display +EXPORT_SYMBOL vmlinux 0xa532b362 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0xa538fd9d dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xa53ad88b lock_page_memcg +EXPORT_SYMBOL vmlinux 0xa53d5cd6 skb_queue_head +EXPORT_SYMBOL vmlinux 0xa5406ab8 vfs_readlink +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa560e392 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xa572c70c unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa58ee276 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xa59052f0 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa591ea47 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xa5a7f1ec of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xa5c1066e input_release_device +EXPORT_SYMBOL vmlinux 0xa5c859ff netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xa5d72ab9 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa5e44588 inet_frag_find +EXPORT_SYMBOL vmlinux 0xa5fb45da kobject_init +EXPORT_SYMBOL vmlinux 0xa601df43 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xa6026ec0 skb_checksum +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa628491c vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xa6431cfd jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa67ec6a3 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6834b58 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69769d0 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock +EXPORT_SYMBOL vmlinux 0xa6a1122f __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xa6a393be posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem +EXPORT_SYMBOL vmlinux 0xa6be55d1 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xa6cdce83 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xa6d0c657 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xa6d1f2c3 fs_bio_set +EXPORT_SYMBOL vmlinux 0xa6df2a88 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70d0e88 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7104c99 thread_group_exited +EXPORT_SYMBOL vmlinux 0xa711cb38 param_ops_bint +EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xa72ba74b mdio_device_free +EXPORT_SYMBOL vmlinux 0xa72c5b95 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xa72d59d4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xa72fcb65 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xa739f24e zpool_register_driver +EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa73fa798 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xa74707fb security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7952a1e no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xa79efd0c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xa7b3181c up_read +EXPORT_SYMBOL vmlinux 0xa7c26c96 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xa7d8d4ca pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xa7ece21e tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xa81abe28 free_buffer_head +EXPORT_SYMBOL vmlinux 0xa842449b udp_pre_connect +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84a1681 sock_no_accept +EXPORT_SYMBOL vmlinux 0xa84c1f37 wake_up_process +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa850632a new_inode +EXPORT_SYMBOL vmlinux 0xa8725ff1 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xa876eee3 keyring_clear +EXPORT_SYMBOL vmlinux 0xa88c7a2f get_task_cred +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xa8a48802 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8caeaae fb_set_var +EXPORT_SYMBOL vmlinux 0xa8cbe659 eth_header_cache +EXPORT_SYMBOL vmlinux 0xa8e5ee6d blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt +EXPORT_SYMBOL vmlinux 0xa8ee65c1 omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f7268d dev_mc_init +EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xa92d1337 snd_power_wait +EXPORT_SYMBOL vmlinux 0xa92f90d3 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa93dce61 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xa9432635 iptun_encaps +EXPORT_SYMBOL vmlinux 0xa953afa2 register_framebuffer +EXPORT_SYMBOL vmlinux 0xa95d5fde vme_dma_request +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97d1474 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xaa13bcd1 snd_card_free +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa21fd24 kernel_listen +EXPORT_SYMBOL vmlinux 0xaa2bbe01 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0xaa5390e5 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xaa572d39 nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0xaa65304d mdiobus_free +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7c63cc dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa896888 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xaa99006b pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaabf11c7 __kmap_to_page +EXPORT_SYMBOL vmlinux 0xaacc9e27 sort +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae14c24 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xaae2baee inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xaaed5b7a save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0xaaee7474 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xaaf15abc ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab412a08 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xab50f8aa tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab750ed2 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7830e0 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xab7c1c8e pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xab7e8f0c device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xaba3aeeb mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xabb32172 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xabb8d856 vfs_llseek +EXPORT_SYMBOL vmlinux 0xabdf4776 register_sound_mixer +EXPORT_SYMBOL vmlinux 0xabe89050 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf84780 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xac0c1a84 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xac198f20 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac331b07 ucc_slow_free +EXPORT_SYMBOL vmlinux 0xac3eb4ff genl_unregister_family +EXPORT_SYMBOL vmlinux 0xac437aeb dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac53dee4 param_array_ops +EXPORT_SYMBOL vmlinux 0xac5bc385 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6d5b8f try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacac12ab dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xacd4f2fe proc_create_single_data +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace1dabd fb_blank +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf71ff6 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0731a1 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xad0d2380 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xad0e6bd4 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad2d03f4 netdev_alert +EXPORT_SYMBOL vmlinux 0xad2e1972 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xad4277c1 param_set_short +EXPORT_SYMBOL vmlinux 0xad7282e0 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad74fd82 of_node_put +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada71785 con_is_visible +EXPORT_SYMBOL vmlinux 0xadab43e0 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xadb31926 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xadb7427a block_write_end +EXPORT_SYMBOL vmlinux 0xadb95e4c vc_resize +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc3b01e pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xadc6dc8e kmem_cache_size +EXPORT_SYMBOL vmlinux 0xadc8613c neigh_direct_output +EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0xadd3d90b __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xadd48bb9 input_reset_device +EXPORT_SYMBOL vmlinux 0xadd69986 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xadd831c4 sock_i_uid +EXPORT_SYMBOL vmlinux 0xaddabf99 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xade5b828 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xadf06037 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae00dfd9 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae112d0f of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xae1338ba d_move +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0xae40df47 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xae8572f3 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xae96aafb page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xae9849dd __request_region +EXPORT_SYMBOL vmlinux 0xaea667c1 inet6_getname +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaed5918a phy_start +EXPORT_SYMBOL vmlinux 0xaedd1063 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0xaef19102 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xaef4693e key_unlink +EXPORT_SYMBOL vmlinux 0xaef6180d configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xaf000069 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xaf095e15 dev_close +EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xaf2e21f6 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf71a50e dev_set_threaded +EXPORT_SYMBOL vmlinux 0xaf733a80 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf84967b vfs_iter_read +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xafb0ddd1 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xafb22f6e omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0xafb83cf2 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xafc06f8f seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc44ab1 d_set_d_op +EXPORT_SYMBOL vmlinux 0xafcf6ec8 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xafd3b388 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xafd4df04 simple_map_init +EXPORT_SYMBOL vmlinux 0xafe2b307 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xafeb0533 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb005e2bc pipe_lock +EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb0199822 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb027f3b1 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xb02b9dfa cdev_del +EXPORT_SYMBOL vmlinux 0xb03e8b78 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xb04033b6 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xb04cc289 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb064046f md_done_sync +EXPORT_SYMBOL vmlinux 0xb06672f0 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xb08ef0b6 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xb0932cfe of_get_property +EXPORT_SYMBOL vmlinux 0xb09efcbd vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xb0a699d7 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xb0a7c835 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xb0a9983c eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb0b5c850 nf_log_register +EXPORT_SYMBOL vmlinux 0xb0bf2a7e generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f803cd input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot +EXPORT_SYMBOL vmlinux 0xb110af82 rproc_report_crash +EXPORT_SYMBOL vmlinux 0xb116c2a5 dev_add_pack +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12e51f9 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb13aa12a from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb13b465a __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xb1458c8c blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1513663 vfs_link +EXPORT_SYMBOL vmlinux 0xb1788857 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xb179d59c simple_lookup +EXPORT_SYMBOL vmlinux 0xb17ad6ec dev_uc_add +EXPORT_SYMBOL vmlinux 0xb19eccad mpage_readpage +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1b18576 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xb1c06bc4 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xb1c0d2f7 ata_link_printk +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c4ecd5 rproc_alloc +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1ea69cd genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xb1fc1c80 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xb210d3bf skb_queue_purge +EXPORT_SYMBOL vmlinux 0xb216d331 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0xb21ca011 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xb2246808 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma +EXPORT_SYMBOL vmlinux 0xb257c517 kill_pid +EXPORT_SYMBOL vmlinux 0xb26d3e16 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xb271dddf bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xb28d325d ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb28fdf10 user_revoke +EXPORT_SYMBOL vmlinux 0xb2ad6e0d seq_file_path +EXPORT_SYMBOL vmlinux 0xb2c8a3ec always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2dc4540 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xb2de2097 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2fed22f vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b6964 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb3141a69 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32969aa security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xb32b6ae6 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xb332af5c mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xb3413c0a phy_read_paged +EXPORT_SYMBOL vmlinux 0xb34c196b wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb35a3cc0 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xb363f3c5 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb3667805 dqstats +EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb37687a1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb3ab419a netdev_emerg +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3c16784 fget_raw +EXPORT_SYMBOL vmlinux 0xb3c4fb83 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xb3c6c7b8 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3da9b09 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xb3eadf7f pci_map_rom +EXPORT_SYMBOL vmlinux 0xb3ecf3d6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb40ab586 xp_alloc +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb454f918 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xb45b4722 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xb45ba49a dump_page +EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4a0576a mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xb4a584b4 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc +EXPORT_SYMBOL vmlinux 0xb4bf1b24 d_invalidate +EXPORT_SYMBOL vmlinux 0xb4ec73fb no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f6ce34 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb500c8e0 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xb515524c __netif_napi_del +EXPORT_SYMBOL vmlinux 0xb5335119 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb53de66e set_anon_super +EXPORT_SYMBOL vmlinux 0xb54f8c8e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xb55cd2f9 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb5609911 param_ops_byte +EXPORT_SYMBOL vmlinux 0xb563fccf mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5898748 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58ec231 bdi_alloc +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bad901 request_firmware +EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb617af76 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb61f2101 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xb620e2a2 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xb6225488 snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0xb62b569a vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xb6315446 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63aa5d1 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xb63d12f1 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xb6412e08 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xb6564f70 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67e33ff __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb690b4cc flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6ae784c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb6b3a767 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run +EXPORT_SYMBOL vmlinux 0xb6cab5ba snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xb6cfe58c devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xb6d05fbc pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb6e6a31f cad_pid +EXPORT_SYMBOL vmlinux 0xb6eeec37 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7092146 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0xb714b1fb dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb724d631 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0xb745cbbc dst_alloc +EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb782670d pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xb79a578b tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xb7bcec04 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d05fd4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xb7ea3938 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86d859d request_key_rcu +EXPORT_SYMBOL vmlinux 0xb87f900d mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xb8891e52 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb898fadd dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a65961 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb8afa332 netif_device_attach +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8c6079d jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xb8d18d2c km_state_expired +EXPORT_SYMBOL vmlinux 0xb8d6fc9f sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xb8e9a8f7 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xb8ed674a of_get_parent +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb926f2e7 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xb938204c set_posix_acl +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9605261 tcf_block_get +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb966ecfe key_revoke +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9753eb7 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xb9a613c6 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9b3230f page_get_link +EXPORT_SYMBOL vmlinux 0xb9c1f69f snd_device_register +EXPORT_SYMBOL vmlinux 0xb9c76ccf __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xb9d2ed93 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb9e78415 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eb2d3b config_group_find_item +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba09d687 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xba1d32c7 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xba221bb7 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xba3bf888 xp_dma_map +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba578437 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba84a619 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xba889634 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0xba9de18e __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xbaaa1a0e register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xbabbfe77 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xbac9f06d zero_fill_bio +EXPORT_SYMBOL vmlinux 0xbacaca49 tcp_close +EXPORT_SYMBOL vmlinux 0xbadc7cdb skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xbadf9cb5 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xbaec7185 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xbaf93196 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0afc53 pci_find_capability +EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb38b1b2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xbb3980aa dcb_getapp +EXPORT_SYMBOL vmlinux 0xbb3d2321 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0xbb42fca0 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xbb43cbe2 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0xbb47c653 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xbb490e08 seq_open_private +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents +EXPORT_SYMBOL vmlinux 0xbb6f5b28 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb749fcf iput +EXPORT_SYMBOL vmlinux 0xbb79d676 passthru_features_check +EXPORT_SYMBOL vmlinux 0xbb94355a dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xbb9834cf request_key_tag +EXPORT_SYMBOL vmlinux 0xbba10c30 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xbba6f36d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xbbb2ada0 contig_page_data +EXPORT_SYMBOL vmlinux 0xbbb5323b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xbbc2a595 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbbc49638 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xbbea473d sync_file_create +EXPORT_SYMBOL vmlinux 0xbbf9f18c dma_map_resource +EXPORT_SYMBOL vmlinux 0xbc02617c __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc28b97f arp_send +EXPORT_SYMBOL vmlinux 0xbc31b20f of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xbc33b65b __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xbc3ddb3d fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xbc4520e8 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0xbc5b3011 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xbc60bc05 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xbc6a6ff5 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xbc783731 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xbc891b44 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xbc92c89d mdio_device_register +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcad1936 netdev_update_features +EXPORT_SYMBOL vmlinux 0xbcb84475 km_policy_expired +EXPORT_SYMBOL vmlinux 0xbcc3eed3 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xbccca316 mntput +EXPORT_SYMBOL vmlinux 0xbce1d31e tty_do_resize +EXPORT_SYMBOL vmlinux 0xbce273f9 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xbce931e1 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xbcf7e3f9 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xbd121649 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0xbd244047 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xbd2ffeb6 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xbd337b8e elv_rb_del +EXPORT_SYMBOL vmlinux 0xbd5219b5 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0xbd6cd9c2 __breadahead +EXPORT_SYMBOL vmlinux 0xbd7291c2 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xbd7ddd29 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock +EXPORT_SYMBOL vmlinux 0xbd8b08ed tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xbdaf0471 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xbdb5c886 simple_rename +EXPORT_SYMBOL vmlinux 0xbdb8bb79 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xbdc33e2a tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xbdd569a3 __check_sticky +EXPORT_SYMBOL vmlinux 0xbddc3107 make_kgid +EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe3c3515 key_validate +EXPORT_SYMBOL vmlinux 0xbe4d7337 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe518e1f lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xbe5708c2 set_cached_acl +EXPORT_SYMBOL vmlinux 0xbe574a4b pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xbe59b843 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5ba491 inode_permission +EXPORT_SYMBOL vmlinux 0xbe913290 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xbeb31091 cqhci_irq +EXPORT_SYMBOL vmlinux 0xbec2c3c4 kfree_skb +EXPORT_SYMBOL vmlinux 0xbed493cc devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xbedb1af9 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf03e2ad pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xbf1d5384 kernel_connect +EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5c21d5 sock_create +EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0xbf858e33 mmc_erase +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb01e91 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xbfcacb70 elevator_alloc +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd1ef01 sock_no_listen +EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create +EXPORT_SYMBOL vmlinux 0xbfe45e49 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xbfed9c9a __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0038be0 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xc033fc80 param_get_byte +EXPORT_SYMBOL vmlinux 0xc0379041 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xc03a62fb release_sock +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc08a575f param_get_long +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0ace2ac configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top +EXPORT_SYMBOL vmlinux 0xc0f73960 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc0ff8c02 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc11f9409 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xc12bb97c pci_bus_type +EXPORT_SYMBOL vmlinux 0xc1362afc md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xc138314b misc_register +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15b5a53 dquot_commit +EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1872d6d tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xc1abdf66 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xc1b1f16e tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc1b535dd sock_bind_add +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1f99597 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc1fd439a sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xc1ffe8b5 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit +EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0xc24e40da elv_rb_add +EXPORT_SYMBOL vmlinux 0xc25dd8e6 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc279969a omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xc2865af7 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xc2989f8e mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xc29d672d nla_reserve +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xc311b5d0 del_gendisk +EXPORT_SYMBOL vmlinux 0xc319e0a5 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31e308e phy_stop +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc339b6b4 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xc34b86ce phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf +EXPORT_SYMBOL vmlinux 0xc3667b81 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xc36aed80 kset_unregister +EXPORT_SYMBOL vmlinux 0xc3717ee7 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xc37335b0 complete +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc387d8e4 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc39e2076 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xc3b1f264 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d713c8 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xc3db1432 sock_edemux +EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc4158d27 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc427e066 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0xc44c3689 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0xc44edb11 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xc45fbd91 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xc4625762 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init +EXPORT_SYMBOL vmlinux 0xc4663407 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xc4675d0f ps2_handle_response +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc473c769 __sock_create +EXPORT_SYMBOL vmlinux 0xc475906d md_update_sb +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc49d6a8f eth_mac_addr +EXPORT_SYMBOL vmlinux 0xc4b388a4 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc4e5dfed jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xc4f1481b dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xc4f565c8 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xc50c495a seq_release +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc546948c __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xc5670f35 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xc57bea21 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xc57f2f5c pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xc5841fe3 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xc589f847 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a53d8b device_add_disk +EXPORT_SYMBOL vmlinux 0xc5aa1cbc tso_build_hdr +EXPORT_SYMBOL vmlinux 0xc5aa52e1 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xc5ac19c2 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xc5ba0907 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xc5c1d628 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xc5d470bc neigh_for_each +EXPORT_SYMBOL vmlinux 0xc5d4f0fd write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc5ebf5b1 skb_store_bits +EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive +EXPORT_SYMBOL vmlinux 0xc6079cbc pci_choose_state +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61000c1 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xc6100b20 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63fe2c3 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6612c43 pci_enable_device +EXPORT_SYMBOL vmlinux 0xc66194a8 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc663a099 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc67d75cc noop_fsync +EXPORT_SYMBOL vmlinux 0xc691e58a napi_consume_skb +EXPORT_SYMBOL vmlinux 0xc69ad4c6 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6c8e1c5 lease_modify +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d9d116 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xc6efd2a6 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc700a540 sg_miter_start +EXPORT_SYMBOL vmlinux 0xc71c56a2 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc724766b of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc72a4e2e d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xc732b811 config_item_get +EXPORT_SYMBOL vmlinux 0xc7434e79 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xc75f8e17 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xc768c675 vga_get +EXPORT_SYMBOL vmlinux 0xc77a8401 unregister_netdev +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7868623 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xc79454e7 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc79650a4 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c8fa50 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xc7cce57c __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e73c40 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fc9001 skb_seq_read +EXPORT_SYMBOL vmlinux 0xc80c0639 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xc80c816c register_qdisc +EXPORT_SYMBOL vmlinux 0xc814534c register_quota_format +EXPORT_SYMBOL vmlinux 0xc814a809 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc848dbca cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84b48d0 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc8543f36 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc875d3fd free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xc87ee646 lru_cache_add +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a3dc85 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 +EXPORT_SYMBOL vmlinux 0xc8ce25f5 ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0xc8d243cd dma_supported +EXPORT_SYMBOL vmlinux 0xc8d73f87 sget_fc +EXPORT_SYMBOL vmlinux 0xc8efd747 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc918f006 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xc9392ffa of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xc93c45f2 param_set_bint +EXPORT_SYMBOL vmlinux 0xc9459c84 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xc94a9674 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xc94d8e3b iomem_resource +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc969b98d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc982ab49 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc9836d9b from_kgid +EXPORT_SYMBOL vmlinux 0xc991742c of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99efa62 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xc9bb587c seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xc9c1d8b9 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e079f7 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xca0c015c skb_push +EXPORT_SYMBOL vmlinux 0xca107ada eth_header +EXPORT_SYMBOL vmlinux 0xca127937 dm_put_device +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2e48c3 __phy_resume +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4797c5 regset_get +EXPORT_SYMBOL vmlinux 0xca4aaf33 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xca4e47ff dquot_destroy +EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible +EXPORT_SYMBOL vmlinux 0xca5e7f9a simple_transaction_get +EXPORT_SYMBOL vmlinux 0xca6246e9 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xca665633 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca947b39 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xcab88ac2 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xcac19109 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xcacd6a52 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xcace9b9f input_setup_polling +EXPORT_SYMBOL vmlinux 0xcad36087 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xcadcb431 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafe072b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb058070 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xcb071053 nla_append +EXPORT_SYMBOL vmlinux 0xcb138f1a mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xcb1d3dfe nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xcb203f70 phy_device_register +EXPORT_SYMBOL vmlinux 0xcb21bd25 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xcb394fe2 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb47dde3 pci_iounmap +EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all +EXPORT_SYMBOL vmlinux 0xcb5bbef1 mpage_writepages +EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load +EXPORT_SYMBOL vmlinux 0xcb7696cf scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xcb810f65 phy_device_free +EXPORT_SYMBOL vmlinux 0xcb899242 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit +EXPORT_SYMBOL vmlinux 0xcba3e90b unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xcbb1e675 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0xcbc7b1e9 tcp_connect +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len +EXPORT_SYMBOL vmlinux 0xcbf2e11e find_inode_rcu +EXPORT_SYMBOL vmlinux 0xcbf50880 phy_print_status +EXPORT_SYMBOL vmlinux 0xcc008a46 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xcc03928d security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xcc103e37 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xcc1b4ff4 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc278b15 bio_split +EXPORT_SYMBOL vmlinux 0xcc2fc96b dquot_release +EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0xcc3b2cc9 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0xcc7e904a vif_device_init +EXPORT_SYMBOL vmlinux 0xcc80b065 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xcc88acee secpath_set +EXPORT_SYMBOL vmlinux 0xcc9faa9d mdiobus_read +EXPORT_SYMBOL vmlinux 0xcca139fb iterate_fd +EXPORT_SYMBOL vmlinux 0xcca37305 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xccacb293 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xccc411fa tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xccd935b6 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xcce8bc18 efi +EXPORT_SYMBOL vmlinux 0xccf38583 dev_load +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd218c7a input_inject_event +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2aa712 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd52f02f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd6eb061 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xcd6fe6d6 sock_set_priority +EXPORT_SYMBOL vmlinux 0xcd90e1be kmalloc_caches +EXPORT_SYMBOL vmlinux 0xcd9db6fb notify_change +EXPORT_SYMBOL vmlinux 0xcdbe7aff get_user_pages +EXPORT_SYMBOL vmlinux 0xcdc0cf5d fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde70655 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf6eafc inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xcdfbce4a __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xce02914e generic_fadvise +EXPORT_SYMBOL vmlinux 0xce08d404 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xce0942ee scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xce215ff9 setattr_copy +EXPORT_SYMBOL vmlinux 0xce24a2b6 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xce268351 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2ba392 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce406b19 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5c5c8a dev_get_stats +EXPORT_SYMBOL vmlinux 0xce6d7112 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce83bd62 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xce84f18d get_tree_keyed +EXPORT_SYMBOL vmlinux 0xcea85c88 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceabee8a __put_cred +EXPORT_SYMBOL vmlinux 0xced8a47e reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xcee000df config_item_put +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefc2c46 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xcf1483d4 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xcf1cb1c2 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xcf466c8a mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xcf65687a dev_get_by_index +EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf8d0a46 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xcf9802f8 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfa7b548 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xcfaa3387 skb_append +EXPORT_SYMBOL vmlinux 0xcfb1a135 inet_shutdown +EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page +EXPORT_SYMBOL vmlinux 0xcfd8a4da sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xcfdc4c2c tcp_splice_read +EXPORT_SYMBOL vmlinux 0xcfe86c84 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xcfed9397 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xcff4033f inode_dio_wait +EXPORT_SYMBOL vmlinux 0xcff720ec vfs_mkobj +EXPORT_SYMBOL vmlinux 0xd01f2c57 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xd01fb375 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xd04aea83 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04fb010 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xd05a7246 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0684c30 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd078173f xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xd08f6062 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b3cdf3 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xd0c603ef jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xd0e90471 eth_header_parse +EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware +EXPORT_SYMBOL vmlinux 0xd0eea72e devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd0f0ade8 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xd103c75d scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd1093095 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xd1262050 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd12802f4 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xd12bfef4 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd1335e56 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd139ab78 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xd17cccce add_to_pipe +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1887a05 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xd18a9675 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xd1a0adb5 param_ops_charp +EXPORT_SYMBOL vmlinux 0xd1a8f566 __lock_page +EXPORT_SYMBOL vmlinux 0xd1abe064 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d90579 phy_get_pause +EXPORT_SYMBOL vmlinux 0xd1e7444a scsi_scan_host +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2172d2d dma_set_mask +EXPORT_SYMBOL vmlinux 0xd235d99a dm_get_device +EXPORT_SYMBOL vmlinux 0xd2381816 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26475a9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xd267fc80 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xd26e231d snd_timer_continue +EXPORT_SYMBOL vmlinux 0xd27249db snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2915c2f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd294e6d6 nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0xd29fc4e1 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xd2a7ce90 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xd2b3db88 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0xd2ec3832 netif_skb_features +EXPORT_SYMBOL vmlinux 0xd2f08387 touch_buffer +EXPORT_SYMBOL vmlinux 0xd2f4d705 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3287848 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd361cba4 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd37c2faf snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xd38d389c blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xd3b74ef4 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xd3db2db8 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xd3e3a20a generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3ec8397 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xd400b468 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xd40683ef phy_device_remove +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4073595 truncate_setsize +EXPORT_SYMBOL vmlinux 0xd4109d99 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xd42f597c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd4501e22 __put_page +EXPORT_SYMBOL vmlinux 0xd4547d99 __of_get_address +EXPORT_SYMBOL vmlinux 0xd458d81a qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xd45cf336 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work +EXPORT_SYMBOL vmlinux 0xd46e4cb0 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd4796438 skb_copy +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48b1082 set_bh_page +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd49ffde1 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xd4a403bf udp_seq_next +EXPORT_SYMBOL vmlinux 0xd4b1724a __nla_reserve +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c369df __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd4db7133 __quota_error +EXPORT_SYMBOL vmlinux 0xd4e072f3 fput +EXPORT_SYMBOL vmlinux 0xd4e16a54 may_setattr +EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xd4e9fdd4 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xd4f07a48 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xd5067a16 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5489a05 mount_nodev +EXPORT_SYMBOL vmlinux 0xd54e8404 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xd57980c4 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xd57dbb99 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd597ba3c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c13e11 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xd5d5dcd6 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd5e99241 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd610465b proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xd625703e __block_write_begin +EXPORT_SYMBOL vmlinux 0xd626e263 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem +EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract +EXPORT_SYMBOL vmlinux 0xd65f1295 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd681cc88 netpoll_setup +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68fbcb3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd694fd33 thaw_bdev +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xd6d263f0 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xd6d3eba4 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xd6e0b832 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0xd6e394c6 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7034ac9 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xd70ccebe ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd714deae mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xd71bdd41 get_tree_single +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7415eb4 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xd74aa330 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xd74b7790 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0xd756d3ac nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf +EXPORT_SYMBOL vmlinux 0xd789e25e pci_get_class +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79b38cb tcf_em_register +EXPORT_SYMBOL vmlinux 0xd7a4dcea xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd7bd4552 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ff0708 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xd7ffe40d set_disk_ro +EXPORT_SYMBOL vmlinux 0xd80f1217 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd820c361 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc +EXPORT_SYMBOL vmlinux 0xd8453053 dev_addr_del +EXPORT_SYMBOL vmlinux 0xd845ef07 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr +EXPORT_SYMBOL vmlinux 0xd8841b9a backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd8908575 set_create_files_as +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8be5db1 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xd8c3fb88 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xd8cc2767 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd8cdfb63 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xd8d76338 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd946dd79 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xd9531eb8 write_inode_now +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd971b94e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xd983f8d1 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98a5580 dev_add_offload +EXPORT_SYMBOL vmlinux 0xd9914e6c rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xd99a2451 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xd9a5ae71 __register_nls +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9c77309 __scsi_execute +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d43eb5 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e94734 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd9f69e4a ns_capable_setid +EXPORT_SYMBOL vmlinux 0xda0b7c3c __register_chrdev +EXPORT_SYMBOL vmlinux 0xda0dd014 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xda1819aa neigh_table_init +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda404fd1 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xda5b73f9 fasync_helper +EXPORT_SYMBOL vmlinux 0xda64876f seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xda659c19 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xda6d2d3b nand_read_page_raw +EXPORT_SYMBOL vmlinux 0xda6e478d vga_client_register +EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda857614 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda95c518 snd_card_new +EXPORT_SYMBOL vmlinux 0xdaba8082 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xdabba1ca input_allocate_device +EXPORT_SYMBOL vmlinux 0xdabf284f touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad97584 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdae0b1ce add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xdaee54fa pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf +EXPORT_SYMBOL vmlinux 0xdb2691cb dev_get_by_name +EXPORT_SYMBOL vmlinux 0xdb350da8 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xdb367929 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit +EXPORT_SYMBOL vmlinux 0xdb8be551 skb_unlink +EXPORT_SYMBOL vmlinux 0xdb8dbcf8 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xdba63cba seq_escape +EXPORT_SYMBOL vmlinux 0xdbbdc4cf tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xdbcbf054 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xdbdcc7d7 d_find_alias +EXPORT_SYMBOL vmlinux 0xdbe91870 kern_path +EXPORT_SYMBOL vmlinux 0xdbf54a81 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xdbfb60d0 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xdc0d77c7 seq_vprintf +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc430db2 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdc45693b tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc500bd2 neigh_update +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xdc661ecf pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xdc9d681d of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xdca68fee lookup_one +EXPORT_SYMBOL vmlinux 0xdcbf1d18 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xdcd3c4f0 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xdcde7315 ucc_fast_free +EXPORT_SYMBOL vmlinux 0xdce056a2 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xdcea0383 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xdd02fb14 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd18b50b nand_monolithic_read_page_raw +EXPORT_SYMBOL vmlinux 0xdd18cb17 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xdd1ec7d3 fiemap_prep +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd32646c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xdd55b7fc seq_lseek +EXPORT_SYMBOL vmlinux 0xdd5965ac ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xdd744fa8 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xdd78fcc4 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0xdd83eb88 scsi_device_put +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd90f958 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xdd92745b security_path_rename +EXPORT_SYMBOL vmlinux 0xdda3aa39 inet_listen +EXPORT_SYMBOL vmlinux 0xddc392da phy_write_paged +EXPORT_SYMBOL vmlinux 0xddcc3af2 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xddf104bd truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xddf523b2 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xddf6cb20 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xde02da21 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xde03b9a1 vfs_get_super +EXPORT_SYMBOL vmlinux 0xde07041e sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xde1abbc2 elm_config +EXPORT_SYMBOL vmlinux 0xde201a77 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xde2ed6e8 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xde3f96c5 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init +EXPORT_SYMBOL vmlinux 0xde4cbe7e pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xde5ae857 vme_slave_get +EXPORT_SYMBOL vmlinux 0xde7cae82 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xde7d490d tty_write_room +EXPORT_SYMBOL vmlinux 0xde7ecdd3 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xde8210c4 generic_read_dir +EXPORT_SYMBOL vmlinux 0xdea14dbd security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xdea74095 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xdeaa3dbc inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xdeb6a265 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdec38362 simple_getattr +EXPORT_SYMBOL vmlinux 0xdecff2ab __frontswap_store +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdeda4c79 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xdedae0f6 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xdedd14dc blk_queue_split +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf02e715 sock_pfree +EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf2441a2 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xdf268d8e jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf603384 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xdf66116a tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xdf7408f7 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xdf7e76b4 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xdf80f5d5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xdf846177 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb0fc83 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xdfba726a phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xdfc42efb genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0165d0e netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe06699b2 sg_next +EXPORT_SYMBOL vmlinux 0xe0678c83 vfs_setpos +EXPORT_SYMBOL vmlinux 0xe06a653a pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xe071ed10 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0844a92 genphy_read_status +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe095dacb devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe09b091c devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe0a09cc5 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xe0a6b585 request_resource +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b5e355 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0ca6eef nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe0e2961f scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe0e38f12 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xe0ec0e57 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xe0f25457 pci_free_irq +EXPORT_SYMBOL vmlinux 0xe10edbad begin_new_exec +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11912ea nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe11c1669 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe11dbea5 tcp_prot +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14a9b25 dst_init +EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe1619464 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xe19190ed rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xe1973cdc __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xe1b9ab3a close_fd_get_file +EXPORT_SYMBOL vmlinux 0xe1bab07c jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe1bdc0e8 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e4d53b starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe1fbc429 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xe1fe186e bio_free_pages +EXPORT_SYMBOL vmlinux 0xe200bc8a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xe207bc24 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but +EXPORT_SYMBOL vmlinux 0xe22240e0 dquot_get_state +EXPORT_SYMBOL vmlinux 0xe2224c3c unix_attach_fds +EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe2319a89 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xe234e254 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xe239c394 tty_register_driver +EXPORT_SYMBOL vmlinux 0xe23d9aeb bh_submit_read +EXPORT_SYMBOL vmlinux 0xe24d6ded param_set_long +EXPORT_SYMBOL vmlinux 0xe2541dc6 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe29831df ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe2aca02d dm_unregister_target +EXPORT_SYMBOL vmlinux 0xe2c73921 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2db4e6e blk_get_queue +EXPORT_SYMBOL vmlinux 0xe2dbf79d of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock +EXPORT_SYMBOL vmlinux 0xe3121fc4 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe332f236 datagram_poll +EXPORT_SYMBOL vmlinux 0xe3355936 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xe34c0845 of_graph_is_present +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a77f7c dma_resv_fini +EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xe3ad25c1 kobject_add +EXPORT_SYMBOL vmlinux 0xe3b633ba tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3fbd30a _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe438ba82 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe44f9a6c pci_remove_bus +EXPORT_SYMBOL vmlinux 0xe45ca7d1 skb_expand_head +EXPORT_SYMBOL vmlinux 0xe4675925 ps2_end_command +EXPORT_SYMBOL vmlinux 0xe4702b3a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xe477fc9b memremap +EXPORT_SYMBOL vmlinux 0xe4801a4c adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xe48cf760 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe4ad5f27 ip_frag_next +EXPORT_SYMBOL vmlinux 0xe4adf209 input_register_device +EXPORT_SYMBOL vmlinux 0xe4ae5fad end_page_writeback +EXPORT_SYMBOL vmlinux 0xe4b0be1f generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4c88aca xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xe4ce5342 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one +EXPORT_SYMBOL vmlinux 0xe4f8d4c4 nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0xe50aec8d filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53881a9 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe53ddd17 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xe53fd579 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe548b3ac netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xe5659ef2 should_remove_suid +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57ddebc snd_register_oss_device +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe594b557 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xe59adc40 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xe5af54fe pci_fixup_device +EXPORT_SYMBOL vmlinux 0xe5b09790 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xe5b7a2b2 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e5eb34 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xe5e8d4e8 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xe5ea32b2 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe5f4229e sk_stream_error +EXPORT_SYMBOL vmlinux 0xe5f9e223 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xe5ff94e1 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xe613871d crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xe647b655 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe6520a62 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe6582af9 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xe67d82db mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe6848a01 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe6994146 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe6aa9a45 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xe6abba72 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe6b2f9cb md_register_thread +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d537fc netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xe6ebbe5f param_get_bool +EXPORT_SYMBOL vmlinux 0xe6fb2376 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xe703bfad of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xe7073c77 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe70944ef disk_stack_limits +EXPORT_SYMBOL vmlinux 0xe70c48d0 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7373534 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe738fdc3 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xe7475283 param_get_charp +EXPORT_SYMBOL vmlinux 0xe758ebd6 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xe763ba9b xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xe76b786e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xe793283b build_skb_around +EXPORT_SYMBOL vmlinux 0xe7a76caa unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e282cb dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xe7e63e32 neigh_destroy +EXPORT_SYMBOL vmlinux 0xe7ee465c configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe7f2de9e md_check_recovery +EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xe8027a79 vmap +EXPORT_SYMBOL vmlinux 0xe80a07ec blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe81eff11 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xe81f5317 proc_create +EXPORT_SYMBOL vmlinux 0xe8419f02 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xe84664b3 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe84fb774 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe85a3981 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe861222f cqhci_deactivate +EXPORT_SYMBOL vmlinux 0xe8689a63 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xe868cec8 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xe87abee5 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe88e4180 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xe89041ce param_get_invbool +EXPORT_SYMBOL vmlinux 0xe896698a udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe896cc51 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision +EXPORT_SYMBOL vmlinux 0xe8bef95d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xe8c46893 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift +EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0xe8d81696 logfc +EXPORT_SYMBOL vmlinux 0xe8e8e5fa security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe8fa2f09 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xe90870d0 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xe90b2b87 vc_cons +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9157865 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe9187017 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xe91d3412 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe93805f9 finalize_exec +EXPORT_SYMBOL vmlinux 0xe942d332 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xe9478d0b devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95fb584 d_instantiate +EXPORT_SYMBOL vmlinux 0xe97c4103 ioremap +EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe9801d8f pagecache_write_end +EXPORT_SYMBOL vmlinux 0xe983e90f mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0xe9b10a95 address_space_init_once +EXPORT_SYMBOL vmlinux 0xe9b32970 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe9cc2875 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea0f7c53 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xea138baa param_set_int +EXPORT_SYMBOL vmlinux 0xea24e705 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xea348143 update_region +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea6797ee invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xea6f50e4 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xeaa142c9 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xeaa58b20 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xeac05a69 ucc_slow_enable +EXPORT_SYMBOL vmlinux 0xeac7330c generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xead218fd set_page_dirty +EXPORT_SYMBOL vmlinux 0xeaeeb399 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb170c12 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xeb256e59 inet_accept +EXPORT_SYMBOL vmlinux 0xeb36ee78 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb515499 make_kuid +EXPORT_SYMBOL vmlinux 0xeb53178a crc8 +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb561263 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebf4b177 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xebf7bb65 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xebfeb9b2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xebff0543 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xec04b5a4 clk_add_alias +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xec49c40d ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec536afa of_node_get +EXPORT_SYMBOL vmlinux 0xec58e3d7 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xec5a1c8f mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xec81b2a5 phy_init_hw +EXPORT_SYMBOL vmlinux 0xec83e97b ether_setup +EXPORT_SYMBOL vmlinux 0xeca7bd67 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0xecab9d7d tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xecd5a737 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xecd97ed1 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xececde47 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed0d8894 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xed503f0e netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed85dabc ata_port_printk +EXPORT_SYMBOL vmlinux 0xed8c276e __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc2be11 f_setown +EXPORT_SYMBOL vmlinux 0xedc964f9 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xedd67651 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xede17a29 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xede8335f is_subdir +EXPORT_SYMBOL vmlinux 0xedf23de0 scsi_partsize +EXPORT_SYMBOL vmlinux 0xedf6e494 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xedf99bd2 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xee068f05 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xee116b8d of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xee1dcb62 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee32abd9 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xee340573 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xee3897d2 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit +EXPORT_SYMBOL vmlinux 0xee48217c cdrom_release +EXPORT_SYMBOL vmlinux 0xee49115d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xee4b05e5 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xee4c2415 _dev_emerg +EXPORT_SYMBOL vmlinux 0xee4d9d82 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5bf8e5 sk_common_release +EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xee7b8f90 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xee7d7843 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xee81a9ea scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8ccebe sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaa3ec8 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xeecb04c2 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0xeeddfeb7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xeee766e6 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xeef3f146 __bread_gfp +EXPORT_SYMBOL vmlinux 0xef04621f empty_zero_page +EXPORT_SYMBOL vmlinux 0xef05c3c3 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xef09226a flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xef0d4ea9 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0xef1cc540 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xef1ee64b serio_unregister_port +EXPORT_SYMBOL vmlinux 0xef204930 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xef227fbb dma_sync_wait +EXPORT_SYMBOL vmlinux 0xef43d0a9 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xef6bdbb6 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xef888c80 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef99e414 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xefbd7398 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xefd2b8be dm_io +EXPORT_SYMBOL vmlinux 0xefd626c7 snd_device_new +EXPORT_SYMBOL vmlinux 0xefd7a801 make_bad_inode +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf00a8ec6 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn +EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work +EXPORT_SYMBOL vmlinux 0xf02eb764 single_open_size +EXPORT_SYMBOL vmlinux 0xf04b1506 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xf04b67e4 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf04b9ac0 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xf063c50f mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf0646256 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0xf065de49 tty_vhangup +EXPORT_SYMBOL vmlinux 0xf0682d98 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf06e93af blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf074fc20 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xf0929f3b vme_bus_num +EXPORT_SYMBOL vmlinux 0xf0958813 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xf09ae6b5 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf0db5642 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xf0dd6627 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0eda8c3 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xf0ef52e8 down +EXPORT_SYMBOL vmlinux 0xf0f80999 cdev_init +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf102732a crc16 +EXPORT_SYMBOL vmlinux 0xf10602a3 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0xf1199a7a sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12d9814 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf13b966f inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf155a9c0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf162d70b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf183ce8d fb_show_logo +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a5c308 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf1a6dd73 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align +EXPORT_SYMBOL vmlinux 0xf1c26fbf dcb_setapp +EXPORT_SYMBOL vmlinux 0xf1c8e9c3 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xf1cb9800 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xf1d21fcf pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xf1d8428a kobject_del +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf2071f0f inet_add_offload +EXPORT_SYMBOL vmlinux 0xf21426cb tcf_idr_search +EXPORT_SYMBOL vmlinux 0xf2183878 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xf22cfbd8 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0xf22e32ff migrate_page +EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one +EXPORT_SYMBOL vmlinux 0xf2371f76 would_dump +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf254724b param_get_ulong +EXPORT_SYMBOL vmlinux 0xf265354d scmd_printk +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf27b2980 zap_page_range +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28b1f01 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29cb3cd done_path_create +EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0xf2b1247a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf2b1583e km_policy_notify +EXPORT_SYMBOL vmlinux 0xf2b4533a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2fe6232 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31a2333 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf32f59eb inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf33e13b9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xf3437e46 component_match_add_release +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35f86db __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user +EXPORT_SYMBOL vmlinux 0xf36af690 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xf36d5ece __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf389c2d2 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39c69ae devm_memunmap +EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after +EXPORT_SYMBOL vmlinux 0xf3a2495a sk_alloc +EXPORT_SYMBOL vmlinux 0xf3a8a42b tcp_seq_start +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b79b98 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf3bbfff5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xf3c31107 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xf3cac714 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xf3cf8c4b vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xf3f083da vme_master_request +EXPORT_SYMBOL vmlinux 0xf3ff249d generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf42fdb34 blk_get_request +EXPORT_SYMBOL vmlinux 0xf44469e4 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44f5e0f rawnand_sw_hamming_init +EXPORT_SYMBOL vmlinux 0xf45c40e9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xf4681a9e inode_get_bytes +EXPORT_SYMBOL vmlinux 0xf46e7ba0 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf489007e max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic +EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c27d82 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xf4d4edd1 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xf4da1e63 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e06a3d scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf4e15da6 get_acl +EXPORT_SYMBOL vmlinux 0xf4e44c55 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0xf4ed8d27 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f768db xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xf4f8f0ce input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xf50438a1 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xf50d2374 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf547320f scsi_target_resume +EXPORT_SYMBOL vmlinux 0xf54a68e8 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf56be0cc clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xf56c9fab genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xf5a0e0d2 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xf5a5d48e inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf5a7a77e pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf5a9c97e dm_table_get_size +EXPORT_SYMBOL vmlinux 0xf5aa2b73 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf5dbbd17 key_invalidate +EXPORT_SYMBOL vmlinux 0xf5e1b23d of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f99004 vm_map_pages +EXPORT_SYMBOL vmlinux 0xf5fc4643 udp_read_sock +EXPORT_SYMBOL vmlinux 0xf6119e11 mntget +EXPORT_SYMBOL vmlinux 0xf615d88e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xf62654f8 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0xf6379ca1 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xf63aac3f pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xf6419740 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xf643c789 dquot_disable +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf6565656 open_exec +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67c04a7 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xf67f8c18 fb_find_mode +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68efaa2 uart_match_port +EXPORT_SYMBOL vmlinux 0xf69c0d7f devm_clk_get +EXPORT_SYMBOL vmlinux 0xf69d9974 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf6a5ee2e qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0xf6ae2adf rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xf6cbd873 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf6dca11b padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf703e832 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf705d051 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0xf7081242 __page_symlink +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf71750c0 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xf7319946 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf751ce7c __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xf761bfb2 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xf763f70e mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xf765ef7d scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf768ed92 PDE_DATA +EXPORT_SYMBOL vmlinux 0xf7692947 inet_offloads +EXPORT_SYMBOL vmlinux 0xf76f89ec rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf7900b79 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xf7bc88d5 rproc_put +EXPORT_SYMBOL vmlinux 0xf7bdb18f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf7c086e1 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xf7ce134d blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xf7d43c77 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf809b743 mr_table_dump +EXPORT_SYMBOL vmlinux 0xf80b8688 kernel_write +EXPORT_SYMBOL vmlinux 0xf811b752 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8179dd1 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf834a898 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top +EXPORT_SYMBOL vmlinux 0xf842e65b mdio_device_remove +EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf87faef6 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xf8bd80fd netlink_capable +EXPORT_SYMBOL vmlinux 0xf8be0607 sk_capable +EXPORT_SYMBOL vmlinux 0xf8d83f57 netdev_warn +EXPORT_SYMBOL vmlinux 0xf8dc6581 load_nls_default +EXPORT_SYMBOL vmlinux 0xf8e40646 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xf8e96860 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fce4a1 textsearch_register +EXPORT_SYMBOL vmlinux 0xf92590e2 of_get_next_child +EXPORT_SYMBOL vmlinux 0xf92e7807 nobh_writepage +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93ab360 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf95474b3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf961fb3b input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xf963d1ed snd_card_set_id +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97e58d4 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xf97f5edd ps2_begin_command +EXPORT_SYMBOL vmlinux 0xf9846e87 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xf98895c0 mr_dump +EXPORT_SYMBOL vmlinux 0xf99f8015 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b0673e inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool +EXPORT_SYMBOL vmlinux 0xf9e70e1a hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf9ea2317 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xfa0565ea vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa20376a ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xfa327512 ip_frag_init +EXPORT_SYMBOL vmlinux 0xfa34c3a4 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xfa4bdff0 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xfa53183b dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xfa54fca7 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xfa57585c tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa9d18d5 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xfa9e3e8b xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xfaa3f25a generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xfaaabf0a get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xfab252c7 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xfac258e9 phy_driver_register +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacdfd79 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xfae76729 qdisc_reset +EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read +EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb48b333 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb705dc2 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb809bc2 proc_create_data +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbc21e62 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfbf26b15 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups +EXPORT_SYMBOL vmlinux 0xfc139021 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xfc1520b9 vme_register_driver +EXPORT_SYMBOL vmlinux 0xfc1c8dd7 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xfc21eee1 __bforget +EXPORT_SYMBOL vmlinux 0xfc309100 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5b108f pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xfc79d80e xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xfc7a5e10 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xfc7e24a9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xfc830c77 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca7fcc0 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xfcb5bd2c tty_devnum +EXPORT_SYMBOL vmlinux 0xfcb86467 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xfcbe051f tty_kref_put +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd68ec7 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xfcd754be mark_page_accessed +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfb0a04 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xfd052f37 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xfd0c6719 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xfd19d4c7 ip_defrag +EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd312fd6 dquot_transfer +EXPORT_SYMBOL vmlinux 0xfd37530c fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xfd3e1c48 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xfd45102a mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd91753e xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfde32c5f xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfde3a043 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xfde6e54d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xfdee6853 xfrm_input +EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe14ec5b rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xfe1f5f56 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xfe24e3ff kernel_accept +EXPORT_SYMBOL vmlinux 0xfe441e13 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xfe44ea68 snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe571dff flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5efd9d dump_align +EXPORT_SYMBOL vmlinux 0xfe618e76 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xfe932823 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xfe94de8c bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xfeab192c md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeb66a51 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xfeb95d4e udp6_set_csum +EXPORT_SYMBOL vmlinux 0xfec551c4 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xfed9477b serio_interrupt +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfefd1ae7 from_kprojid +EXPORT_SYMBOL vmlinux 0xfeff8eb8 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xff0858d3 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff364eae scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xff3a856e nf_log_packet +EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xff447511 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xff45c45c phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xff46e454 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xff4e2274 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6d93de bioset_exit +EXPORT_SYMBOL vmlinux 0xff709a8d phy_modify_paged +EXPORT_SYMBOL vmlinux 0xff7f1002 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xff976d46 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffb9897a may_umount_tree +EXPORT_SYMBOL vmlinux 0xffbc43c3 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x0903657e sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xba6d5a64 sha1_update_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x37795941 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4358d948 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x4e8e8fbc af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x56ac5d5b af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x5dce3705 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x65e80a0c af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x70215eb2 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x85d0177a af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x8ef34a7c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xa35200d4 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa541f5f7 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbe89dfc9 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb5facb5 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd4d2ed17 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xe2948449 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6a07725 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf000d9b7 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xfe39a1a3 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x5a2786fe asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x0c5d9e88 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe46166da async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe5c0735b async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x04904461 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xdff77af7 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa22b4bbf __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd602d486 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdd0cee71 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf8009698 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb2abb04a async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd59a70bc async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe9ff7659 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf1e283b7 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x0ca4fac1 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9362ea9c cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x5eee4101 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x00deacb4 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x1808bc09 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3d66ace7 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x522389ca cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fd45f01 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x628fe59e cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x75e3ddc5 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x82d5594f cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x865b8281 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xace5bb3d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd666ec11 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd75d0176 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe7e69830 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x19e90d2e crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x365326bb crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3babf955 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x403d9741 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x59c3dac0 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x999af916 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbb2c3804 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc374c39b crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcb72b8c4 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd3dc0dc3 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd49163da crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xed4cd94c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xef464a6c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x43bccab4 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5b9d0f32 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9e1b33f5 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd8e0be15 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6b478908 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0xd3ee0497 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8c5ef9cf __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x79544577 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x12c89bd3 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x31a430f9 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd368907d regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x8a37c93d __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x02a5c25f __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xfe783ca0 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x8810b6b9 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x8bdb0537 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x01f1f7eb __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x7a682995 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf00bbf47 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf5f9a57b __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x55afdec9 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xe33b91de __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x09272940 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x107031c8 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3ad06338 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd9aa3f32 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x097a7eda __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7968b0d3 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0609c582 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c082ef7 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25f7ef4d bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26c72723 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b8f8ffe bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x395d8b8c bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53c10082 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x658dd1d6 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x711fa5ec bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73082111 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c21e6b7 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e748227 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8facaed1 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9283b8cc bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9b410a09 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa72b011c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa983af40 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4846346 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca6e7e0c bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd131c1f7 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3b224cd __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6dc7bac bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec213e1d bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf75f9c97 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3accfe50 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7d41cf22 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8607b408 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9ecfc1dd btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd615a8a1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xebbc58ac btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xed18bfc5 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf34d3a89 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x15278dc7 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21e32747 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x405c4fb4 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4453e88e btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eabf495 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6016f43a btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x620f4dcb btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ec1665f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8758e84d btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x933182e6 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa25cbf81 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb239939f btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9a18af4 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd61d6de5 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd7b2eecb btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf9f62e2e btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06bfc6ea btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0ba1dfa2 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1103ffbe btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x387de879 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x43c761d2 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5678d8ff btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x626187a2 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6b258bad btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7d27fc71 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9865d603 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe2c14946 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x02a68faf qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x32f90a1f qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x52b7ce08 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa7ddf8d5 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbda7655d qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x40989442 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x73523b6c btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7424e1bc btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x77ad2aad btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9c33ff4b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfa944ef3 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3201dfa9 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7ec0444f hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb65e2317 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf7b219c2 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x10aa4a32 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1f830ee6 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x21fab307 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x225adbeb mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x26f90db3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2f404a3b mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x2fa701f7 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3960abdb mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4323b523 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x47e7b2d5 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5f571dcf mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7132ff2d mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x781f6e29 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7d8d3736 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x82226346 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8a770037 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9b91f36e mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa191a63c mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa50b1b23 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaa6602d3 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb42bc4b3 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc14fe66a mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc7ca4760 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xca4be530 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xce673549 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xce815ebc mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdb9003d5 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe575f066 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xee20daad mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1bc72748 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2d2caa0e moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4c234d3c moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x901da8de moxtet_device_written +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e5f8a53 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e98da3d clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0eacd33a qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x17d44071 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b15a709 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5fff651b qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x65074902 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6c069db2 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7f45f009 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9dc41abb krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e6c0ae7 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa6bad98b clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb2a5f25a devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb89539c7 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc037091a krait_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc6a05db2 clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9ca474c qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xce992259 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd3135b41 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xea7a9757 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x00f7036b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0ab94b1a comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x130b0d49 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2433c7ec comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x47b2a4f5 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48777e79 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a3d8190 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4bc2bb1c comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e3319f8 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5125d8c8 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x548db89c comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d4df6e3 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5f03827e comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x631925c1 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x63cc819e comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x772716f6 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7891c87b comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7d97a00b comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7ec1d16d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87ce4c6b comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87d4329d comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d06861a comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8e12e72c comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f165c71 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x944e0129 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x989dff78 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaadefbe7 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1ee4c21 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc3b6bbb2 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xca56bcaa comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcd6fcf29 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd6b90726 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe5808e23 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf0072fbf __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf019e167 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2147896 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x08ecd516 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x273ee040 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3390d05c comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x57da2a06 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5bee168b comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd0f77636 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe0502ec1 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf080fc73 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x22f55e87 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2ed5dc83 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8e9c6f65 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb85875c6 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb9ecff28 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xece4a97d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x1b139f7f addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x21c7548d amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x401e4d12 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x7080e183 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x05980efe comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1065eaf7 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x10af5920 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2c2cf1c7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x333130d4 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x39f13dab comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6219b39e comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6f81c1fd comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7c84de2e comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc94739a5 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcaf59935 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcf6f6d5c comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf557cef5 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x45770b84 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x46ce0ac9 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xaf9e79ed subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x28905652 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0081020f mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0261b0f6 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2d96d21e mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x30990d7b mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4158cc6c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5b2eb240 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6bc96680 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x89328e98 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9891a1dd mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x99e544de mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9d71ab19 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa8f94b79 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xade89c02 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc58fcaad mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcfdf64a5 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd2a2f7f1 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7920634b labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xdfa38d63 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x005152d8 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x082ae8f0 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1bbbe231 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x47f243ea ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x871ea20f ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8f9fd926 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9247469d ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x947498e0 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaf87a12c ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb865b54c ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc0cd9e97 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc620e887 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe986ba7f ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xedfba925 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf2d023f4 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf96e52f4 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1185bb2e ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2058b665 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x71216438 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x883842a1 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb4a47f5e ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf3d9110c ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x12a2c143 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4a9d0edd comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x527e7c6d comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7b112f41 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x84fde633 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9a5175bb comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc52f4572 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x153edf62 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1cda3896 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3b73a131 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4de758fd counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x77191645 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8df3f0c3 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x98941958 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xad01d448 devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xafec1940 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xbecff2c9 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc48d5d78 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf3302776 counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf4036e06 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x701db540 omap_crypto_align_sg +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd5328478 omap_crypto_cleanup +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x2713bc5c dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xaf75f8c9 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0d26a61e dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x147de978 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x16c4e5a8 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7ff51802 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8093de24 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc97c0243 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe8cf9f4a idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x26e9058c fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x53cafcb3 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5971ab6b fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8357e02c fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8c4315bf fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8ce1916f fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9270ec7e fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9eef997a fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc30c5a15 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc6693a7a fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcbfb2f82 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd06201b4 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe1c38832 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xee314f7e fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf3ae6b61 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf87adb47 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1cb4010a hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd388d0db hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7eaa5982 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xc4725114 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0d218dfa dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e058daf dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x172d3409 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1971c6f6 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x359bd6ba __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x69a0c21e dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x72494219 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x778ffb72 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x82f7db6c dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb1cc25f4 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb60678f8 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd898bf8 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc003590a dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc8e57c62 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc8f9d4d8 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb4a9db1 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdb34d903 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdd479acb dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe11b47c6 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf0f88f24 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf46655c9 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf8bc1908 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfd338107 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1558c544 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x414904ed of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x54e48fd1 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5bbcff1f fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6ac05f73 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6e5dcd15 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6fe2363e fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7caa6ccb fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x94ebc3e5 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x98015013 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb1258e22 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbae553d1 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0eeb798f fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x17aa38e3 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2c419b36 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x417c3bd3 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x58dea027 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a0c144a fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d12c248 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x884dd121 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x919fbca1 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xab02a93e fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb8418926 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbb3861cf devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc645bd66 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf868799c fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x49deecd8 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x54599427 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc1d6e8c6 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd51e348f fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xdb480944 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf36adec3 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xfb70c381 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x265ed580 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2b5492a1 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4f495d33 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x61a0b562 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8eb10ec4 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9ef94d38 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa33ce37d fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa513d46b fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xae859599 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe1484d91 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xf151b03d fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x06bcef64 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x2e14c0c9 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x251713cd gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3c80c4a6 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x58f9603c gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x99e54f33 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb2dd098d gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7563b000 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8a474750 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9ef38e14 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa45a7f43 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfbf34d02 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x4a07dee6 aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xcc6436a2 aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x30065e2d __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa1822793 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2126e1e7 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3337960c analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5782929a analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5a3e4d2d analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x667a5df2 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa0fc4717 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb09a3862 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf8d46a5c analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x02f3216b dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9477a08b dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc68631fe dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xfdb240ce dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x1fe9ca69 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xaae995e1 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0486d78f drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1294251a drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1e2c6820 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2442d99b drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2f9be91b drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3070367e drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e5bf044 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x464eecf9 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x46fbc4fa drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x525b6e85 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b457ddc drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x638a78d1 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68ad1011 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69094456 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x73e27220 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x759aa10b drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x852d9dd5 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x865641df drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8b2d9a11 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7f7b879 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xacaa473b drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb24383f1 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc063cd78 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2385e1a drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc42ceceb drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc99c1bce drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xca0edecd drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcb389f8c drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2592163 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd69eaef9 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9d1fd0f drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1c90e90 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe33cf84a drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe34c2e61 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf4eeb22a drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x20f4ff6f of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x8cdc96b4 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xf2c9749b dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xfe137b45 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x07aa27f4 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0bdd0139 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0de36939 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0fa98f17 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x26dc0326 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x330a64c7 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4c36f9b6 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7bfd2cf3 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa44edaf7 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xad4f36db drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd37b4fa9 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe16c0693 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf92cf2f7 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x67f4ed72 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xdbfc1d59 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x43aaba67 mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2ecdd148 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x47cf321d meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6de7b38f meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa9be0145 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x336eb7b2 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x65650389 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xc0c7c4a4 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x646b8af0 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd7854f11 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xeab52be7 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xeda0dd35 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x25273472 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x58437e82 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x65378bfe rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xe0222a19 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xac61bef6 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb35faddf rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x00803026 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01f4ee1f ipu_image_convert_adjust +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0925008a ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0950e158 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0c552794 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x167972bd ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1a9eaf37 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b7ef5a8 ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1c991417 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1d0ee1ad ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2070e67e ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x20925666 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x21f97d09 ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x258a4439 ipu_image_convert_queue +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x278514df ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ba5e1f0 ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3020d65c ipu_prg_max_active_channels +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x445a5eee ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x484164d8 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x490289b9 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492ffa77 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x49bbd206 ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4ce30b94 ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4d7e6a53 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4f5e9c09 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4fd0afe6 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x50d933ab ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x540d5cf2 ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5900d70b ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b18b116 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5d2c2e83 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5ea38398 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5fa45c3c ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60707f11 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x652e0c06 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6c3da758 ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x734076af ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x738a87d4 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x747eaf4e ipu_image_convert_verify +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x77bb64f8 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7bbdce32 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7cf43445 ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x818c615c ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8216b146 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x844e1b04 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x85620174 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9ec7bd ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8d5bede0 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9e96e755 ipu_vdi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa266b8e7 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa9fa3278 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaae69eca ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xafcf238d ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb449996f ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb4f09923 ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5149674 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb6dc186f ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb7ac9d52 ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbba95ab0 ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbec03439 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbec8c16f ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc0607151 ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc07d3ada ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce3e0027 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xead8cd04 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xebcd5bce ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xefb755a1 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf080e96b ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf09fcd32 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf16ee859 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1cc22e6 ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf36b5bcf ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdd6aea9 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xffbfa78c ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x009197e1 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0d6892c8 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12fdcc6f gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x163b711c gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x189d279f gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d2ef8c8 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2084c317 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x22b15ca3 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2594358a gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29c450c6 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37217ff9 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ab1d385 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c64fb85 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d7ac273 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x454ab11b gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46ff557f gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47ff64a2 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x48492671 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49d850d1 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57756529 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f8dd414 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ebd29de gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81b32c99 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x82bf44d9 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86c22a7e __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8800fcb2 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x904a3d93 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a73b99e greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b03a105 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb03073c1 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb179567c gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7dac26f __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb8fc158e gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9f07723 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc419a176 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc540eced gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd41afa55 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd680f2f2 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda8b83e0 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde18595e greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde3d96ba gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe244095d gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe80eee43 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea90c4ca gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf70c2d76 gb_operation_put +EXPORT_SYMBOL_GPL drivers/hid/hid 0x002d9573 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02b067c4 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x059acd10 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a3d8685 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10e7590c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1346a4b9 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x144bf318 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19787837 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1abb8b3e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x21fee78c hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a1bc4f7 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2aabeae6 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x351ac02c hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3533c54e hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x369a116c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x45e84631 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x465ec1c6 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46d886c4 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47db55fe hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ad48d0b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4bd733e1 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a9f5500 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64c6a397 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x65c985aa hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69674eec hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69e910d5 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a8e97e1 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7004939e hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7284a67b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c205d7d hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d9a34c2 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x955f8663 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9eb83974 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa17b84b0 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa39528d2 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8734473 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc95a2fbb hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6ec5f29 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd840f3eb hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde310a89 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1e2a196 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf298f9b3 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf36ae3d8 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf777b9aa hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x787f809e roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5da4ae57 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8a698581 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa8ba6361 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb5b5517c roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbfa08f1f roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd843d068 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b7338a9 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x44cf310c sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x84d5d590 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9d6bf7d5 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb9dd7f9e sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbd7b6d06 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe370eeb8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfa0f7353 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfd4ad6cc sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x08762dd5 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x44f3c1d3 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x487bffbf i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9cda3f06 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9ee9daa0 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xd93cb1ec uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x32449301 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc24b68d1 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x4b9da227 ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xa0cfc821 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xa5341ebb ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xcd228f28 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xf30deebd ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x244a7dda ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x047f939c hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x216da186 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x276ab89f hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2bea164f hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x32cb6609 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3846b236 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4428a235 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50c8cdc9 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x81d901b3 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x95c6a136 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x993f3068 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a32ac3f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe3f5122 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc68e22fb hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd41f365 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5900dff hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef577e31 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3e37ac7 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x674dd911 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x764833d2 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x88114343 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xf3a014ce ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2b79c0c3 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6406d31b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d458563 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x970f5b8a intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x976b5a46 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa2412b4b intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbfac6ceb intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc3e8d936 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfee94f8a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2b527ace intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x51cff138 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe8f7bc3e intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0892a42c stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0a6b9a8d stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x25242051 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa31b84e2 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb20effba stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb252f0e1 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc16b39d8 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcf4b213b to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe576aa50 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x198d682c i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3a114792 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9d1f8511 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xdd28ecc1 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x94a66cda i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf447876e i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf5629f55 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfaacf800 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x039564c0 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x131174b6 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x157d7996 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x17542299 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x212d34ef i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e43435a i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x704596b0 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x764c82bf i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7a637060 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8eeb9bdb i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92dd3291 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa738148b i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0c2858d i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb2b9d15c i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3cabf83 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcc9ce309 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xce9cc4b7 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcea63e90 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd52a62e1 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd538865d i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe566c88f i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe8d721b3 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec65cedd i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf008e6fa i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfad2986d i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x33afb3aa adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xe74bdc86 adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1e717541 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4fb81551 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9a32ef3f bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd8244ba2 bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0fa89f94 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x6d0cea75 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xe27502a8 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xfed45925 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x0eeb2706 fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x3112c1cf fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb55959dc fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x03bd1949 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x0eeaf082 mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf92a4c59 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xcadca1a8 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xe6aa6671 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xa0ba4691 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xc33375d0 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x140e7ad5 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x48de1a08 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6065f71b ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8f14685d ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbc88ac1a devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc2145bad ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc6bd543c ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd20e1cad ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe1bc6c5f ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf6f33f26 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x12c9c3a8 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x7b61a88b adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x5640a89f iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb601fc40 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xccf1bd4c iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x02b056a1 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x15293032 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4e8533c8 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x55b89ad9 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6704d5c6 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x71d6030e iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x86a4889c iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9c3c50c0 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9ca44396 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa97222a6 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc92cb2e8 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe3e26d15 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x71a95d6e devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2fc26cbf iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x75b70d99 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x6054aa1b devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xc5ef4eea devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x2b707e99 bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x1d47d003 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x15b3f251 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x33fd7e17 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3824d994 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5604f888 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8d488e90 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb36e7b19 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbc122c63 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc11132b1 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe9af6653 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfe345dd3 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x52b9ba03 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x59870c11 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6e4f8ca0 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xb7cd21bb ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8d0c924a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa8112d9f bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xfe3b50e1 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x15b3c773 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x9bc27656 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xe41339fd fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x019c7c10 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5501fefe adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6cae333e __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x70be63fc devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x80d2978c adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x838ecb21 __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x83befaf6 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x89fd9632 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8d6b7681 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe382b4a devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf8fd3cda __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xf182dad5 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xcaa96d43 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x05c35a6e inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x8b64e8d2 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xa35d7e1c inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x17fc8c64 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x335aa89f inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xdeb5e914 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xe110eb76 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x089c1650 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c50c69c iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x151165b5 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c42dbe8 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e235c71 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x202ce263 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x305c2a90 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b6eae2c __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e1c77b0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f446319 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40a0da47 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43d9a01a iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4423ae49 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44a361b0 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47884fe7 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ef5608d iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f465f9c iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5261ed27 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54fccbf9 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5aaad9c5 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b755b73 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d99e823 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e67bcb4 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x625622ff iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x633c81a6 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x638ec99b iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e9869f2 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b41527c iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d26bf55 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94d59d1c devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa52519b9 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa84cc11b iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf914175 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc06163fe iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7d8966d devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaf8585d iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xddd5bc2f iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe0a663e1 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4d8fe59 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4f6f1e8 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe50c9c19 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xebf01171 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedd6b092 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf03321a1 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5112ddb iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf526da55 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8eaa9e6 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x7f9243d1 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x4fd23d64 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x1532e2a6 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6ada4832 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa9b09f27 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xbb9eadcd zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd084e7be zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd826532a zpa2326_remove +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1e87ade7 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x27a7c400 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x375726ff rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x56cb30a5 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5a2bdce8 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6064eb84 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x61929dc9 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x70d53a7e rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x883eee2d rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb5a474e8 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd1af4b61 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd6906728 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb3721f34 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x33db6e8f matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1db26490 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0c1cbb05 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0eca2266 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x140eab1b rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x39e91f30 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6811ccca rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x69182d75 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6a0948f1 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6ce46514 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x737e62e3 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x89815f61 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7bb545f rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd562ba23 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf54a5031 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x661f939a cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x86d84dd2 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe6c85faf cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0e56febf cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xdd49ec8f cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa013cb0e cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb430f465 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x17a9d453 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x842db7a1 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe1264938 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf418c9fe tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x204527cc wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x611be651 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72598df2 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72b65e49 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa119e3d8 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa5184460 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc4816c73 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xccfa2182 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd8958375 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xec7c0827 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xecef2752 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf1513a08 wm9705_codec +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x1e316b6b imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x38f9c813 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2453f82f of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x09466fac qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x1c087831 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x1fec9855 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x76e1a33d qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9e0a77dc qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xbb5bd138 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xdb8fc79a qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0a8beabb put_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x1c277593 free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x2dfd9690 reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x3df3928c __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x6b8f8617 free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7497e72c init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcb8c4eb0 alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe2908238 find_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xfb845e71 alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x122cd6d9 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x22427437 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x37f18485 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x640ce15a ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6c698c9b ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe3cbf910 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf3e45ec3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfad4162f ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfe4a9bb5 ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x10f8f561 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1b443338 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1d1fad67 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2cfa8be2 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x44cf134e led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x493fc842 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7319d100 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd1b7a688 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x753a48fd led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7ea60b4b devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x81d37032 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdec8b672 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf5a773e0 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0c4b15ab lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x37680a1e lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x389840fb lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3aaf60d1 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6398e2d2 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x94690384 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbc8e6bc9 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc9a6836d lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb4e8ced lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd8c3a95f lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04a14210 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11cb7c21 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25bbd6d5 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27c1b666 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b6f5ea7 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30556300 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3079df16 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31057c80 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ea7c58e __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x62175518 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x628aeadd __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6457cb54 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67abbb76 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71388d39 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71c01ee6 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7267dab1 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72a3de4b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b6679bd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x803c2c0b __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fa505e __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8541400e __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x878256da __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ae53615 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f8604ba __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92662b95 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94315f0d __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98ddc365 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c271314 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c29a067 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d23546a __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa37e61ae __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc008b26 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc81d3d0 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7540d69 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7fd0138 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf12a58a __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda554237 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdba23768 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdbfb00af __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2713e3d __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2856b72 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3ce2b6a __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4ed3d30 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe754d114 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb052f63 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeec959be __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf032f99f __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf488bbfc __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4c7f9ba __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7fba67a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3444ff __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfda8097f __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0007b30d dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0dd5d537 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3ebee274 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x421c6ce7 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53338e06 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x56906951 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x602c4366 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x727c71e8 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x770f0cd7 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa15055bb dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaed90662 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb412d0bd dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb8d14706 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6d510ba dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe7184063 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeb5e29f6 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xed453b04 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb81a6bd1 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x03bb93e0 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5d57e683 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6190aea9 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x22f05380 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x28745c67 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x20d4d6d7 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2236ee5c dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9f297a28 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa386a858 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa5104569 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xae4d891e dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x29c25d50 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46af8087 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46eff63a dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x64976f82 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x807c17a2 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8a56150c dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xba1a00a7 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcd28942d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe41c4f79 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x075bf11d cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0b69f633 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x130a9907 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x15f5c2fa cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x18b18e10 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1d70633a cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1f8b4f3d cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x36c1b765 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3bf02f5a cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3d50834a cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x48faa13b cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5a15deea cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6227eb88 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8666e9c9 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x909ff8d2 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x924ff1b9 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb94f6fcc cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcbbb5f4d cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfa4bc0ed cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfcc753d5 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x16d50151 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x74e5e435 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7a49bde2 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa160c990 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa8ede665 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xadb93ceb saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc4726fc8 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc847750f saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdd6383e8 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfe43e5ea saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x27c43f56 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x39215c53 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x68f78de8 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6a4f4498 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x996bdb5d saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9c0ea519 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd015c7bb saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00aaaa6b smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x042032b6 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x08d5e257 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1621d958 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x392f7aa5 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3cf9e99a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3d9a44bc sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45580594 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4fa15810 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a417d94 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x66ec863b smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9b9415ef smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc3716cd8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcc1b1cc7 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd67818d7 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf7c719d5 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff515c9c sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x08a4ebb4 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0d156faa vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x104900d0 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x10df74a4 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1a29ae89 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2358f4f6 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27afa93c vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x31c6f1cf __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43c7ab3b __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x447297fb __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d64322b vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f989a98 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ffb59b6 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6bbf1eb5 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8f7cfd __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x915d962b vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96a04115 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x97bb2f13 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xab4ff3ac vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb34f772b vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb85ad0a8 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5272bab vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd47958d7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd7d969bf vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd84ec3a8 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdaa2bca3 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf9ad7ec vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe58a2770 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe74863bb vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf5a44b26 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa9c47a6 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfd305b15 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5984a9f6 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x9a67cdb3 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x8884820d vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x28560eec vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02a6d86c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x036968f2 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1b6d4723 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21498a80 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x24d13531 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2bc7b986 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2bf75d06 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x312d671e vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4610e990 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x534273cf vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58604166 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5e5a3655 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6825aa79 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6968bf00 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7009da60 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x742c5612 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a1c7536 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b618d78 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x86b2c672 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95bdcbbb vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7861686 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa841707e vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc065644a vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4b665c5 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd18bfaeb vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd66455ac vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0b67c90 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe379fb0c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe57a3961 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe648553a vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xecd0ddfb vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf00550d4 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2567bd7 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5c038dd vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x07e48202 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x428ce0fa dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6b83587f dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd1d2d708 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x8bd63d1e as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x2b73c3b4 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x8eb269fc gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x9a192c0d mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x2ed99e97 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xfb74cebb stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x52967c62 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xad1b402b aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x743ca876 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0356b20e max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x08b087d0 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0ba19ac7 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1c0f1c7f max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x418f50eb max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x632549be max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xac774cd2 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb0e6287b max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcecf64f0 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd6d4dcda max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd9fd7248 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe19030dd max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf06fa7cf max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x021f6048 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x06345885 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0dbb0633 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1225f554 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b85cbfc media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x22313039 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e4365b0 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x305ee7d2 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3af688fd media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d4a90a7 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a0eb2b2 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4af3ddf2 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b69cb96 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52ea2853 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x633b2c7b media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x657ffb88 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71515dd7 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73e01a5c media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x752892e8 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b957251 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x813071db media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x829a16ae media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83d821eb media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c3a8fab media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94e440ce media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x960d1147 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x988eed5c media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a460cf9 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6e625a1 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad454a6c media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1d8ceae media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb398b709 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7bd5e8a media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8c4182b media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd5408c3 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbdcf6f8e media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbefeecbd __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd07e9b59 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd48c0b81 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb65e18d media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd744925 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe17241fe media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe26f4945 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf556d59b media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf86fb3c4 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe5404ce __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x31f2ac75 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x27aeaf26 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c1b7bf8 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5058739c mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x55e27d81 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a708657 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5f3279b2 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x615dbf8b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x61855989 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6dd1fcdc mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x72193fb0 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74134d0f mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76da491e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81ed5cfa mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa1002b8d mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa9261f99 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc293cb47 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xded0c323 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0c50f1c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf31571d4 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21ee62e2 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e18571e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3acb597b saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4289b332 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x461c2866 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x527241ca saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x553cc900 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5f37dc43 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6a19cbac saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x74569c85 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x78eb1030 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ee1650b saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae01e8a9 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb33195a4 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb57e4c2d saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcec0f6af saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd4792bf1 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbfa909f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff5e4984 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x03226b99 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x05c0eaab ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4ad5d838 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x527be6a2 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x868aed66 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8d2a935e ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x983ddfd1 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0bbd1c1d mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x325faacd mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x346d746a mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x78dc15ef mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb1e5f670 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x11a17f96 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3a3b5286 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4f2a3804 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7c063a78 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc3cc28bf vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc3ed75d5 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcd3786f5 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe7e9e658 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x085d8e48 omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0a59c11d omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x0d615dfe omap_vout_default_crop +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window +EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6e8a3074 omap_vout_new_crop +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x58dd7283 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x038162a9 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x41e96cb8 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x5db77a4a vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x61be6710 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa8cb3e7a vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xbc7b67d0 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf1e97fe6 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x01b23883 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x04684171 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3f529a7e xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x985f094e xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa55c1a79 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbcea4697 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc9142791 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xfd287bf2 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x46b9b30f radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xca08f419 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x75b2e6d5 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7ed255a7 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xcc915934 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd372c227 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd95ff95a si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x011f00ae rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0c4f9b64 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x273f305e rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x334b73ef devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56fc3c27 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a0f5edc rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6c7c5313 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x810a8f43 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x849c216e ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9afedc06 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8fc4e36 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xacf1e6b1 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaff4bd37 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb84362f9 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd9435292 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xebc2b7d5 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf53f5772 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc69d91b ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9c2d12a0 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7deadd3b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xe0dd1ada mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xd932dd2e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x5599a25e tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x1e735523 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xac605ae5 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd9cfb6e9 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xa8614053 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x013c50ce tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x635b7d51 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3192517a tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x39207b6b tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3a43d7d9 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x087a6a5b cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x100dfdfc cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34101993 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x37403699 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x40491c67 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49c4a928 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4fbcfe99 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4fff9c24 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x540f9545 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f36b5ba cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63656179 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76fb40d9 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7751a5c6 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82f5c303 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4d5b9b5 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc5cda7d cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5e4b590 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcdc0f408 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdd49e268 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee3df01e is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x2bc6babd mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xbc5815ce mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22d45226 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2508c87d em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a892f21 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a8d2f69 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4815b0ed em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d255530 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62af839e em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ede04a9 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7620473c em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7cb2e6f4 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cf1e732 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9379ddf em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc355b700 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc37b2ddf em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcdcb8fac em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xce34ea90 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xceb43fe7 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd75a98c6 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4a7e7ea9 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb5799eba tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd130d6c8 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe7b509e6 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x07e00d48 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x96ae7727 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9c22158a __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb7282d5b v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd1d5a675 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0c517a6c v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9a738411 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa855df0a v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x21b49bd3 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x30a7ae93 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x36842a1c v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x93861614 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbc4ae59a v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc91ecd06 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcbfbd183 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd8990efa v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf1082379 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf6fa5a44 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x4c847e31 v4l2_jpeg_parse_huffman_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x5e92a994 v4l2_jpeg_parse_scan_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xa24bdf6d v4l2_jpeg_parse_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xd8c706cb v4l2_jpeg_parse_frame_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xdc58b7d5 v4l2_jpeg_parse_quantization_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01a6142b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b1840c6 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x107bb388 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13f6c6c4 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15e4de46 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x19a65a54 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a117fa7 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d6616d5 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x210c5fd3 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21a63b22 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x224a4a54 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22ab312d v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x34d4cfbf v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b127d6e v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x407cd8a8 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43cf1e55 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4437aa99 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49a8822b v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x531660de v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57967f9b v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6bed852e v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c15d89b v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71069613 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b791941 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9082e28c v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94025491 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x991ce650 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e085a3c v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa71afb84 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9c99e7d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad915d68 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5fd93c4 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb60ea6e1 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc17b522e v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca1dead2 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf5765f8 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde6072d5 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe01a08d5 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedfecd78 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf441e0a1 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf635b367 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbf5a919 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc1752df v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff195c56 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x033c5186 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1eea44e9 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c146f92 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c335d4e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2cd07ddf videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x32b7a987 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3b0a86f1 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x48d68db4 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x494869cd videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f7b19af videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55980c33 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b30a295 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x738b0065 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77ca64b6 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85f2feed videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad968fd4 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc2f6eeb9 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcecb5a8c videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5e9117e videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4b75586 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb4241ce videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed21c13f videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4884be9 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf490a6fd videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x59434268 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x74f4fe7f videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7f15ba86 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbda315fc videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x549e5aac videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x94bc2948 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe936223a videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x008fdf6b v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05a087b0 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0936c4d8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aa1644f __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16494cd2 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x190257b1 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bfff135 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d604aba v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e12cb4b v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ea64960 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x209dba9b v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35730c99 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37bd1a7f v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x421c219f v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x439bb06b __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47a39224 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e191a24 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e546ffd v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f0690f4 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50b5906e v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52f00877 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5330dc71 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54a67a7b v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61b79053 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65b1bb04 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66bbeabd v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6efc6e32 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7336ffed v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x759c42e5 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x795b49ac v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85e92b61 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f46e19e __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92a95736 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95ff233a __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96aeca13 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e535c5a v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa028cf4e v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb41207e4 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb86cd803 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8c92711 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe96efef __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc6e7378 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcce92212 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd89ed8bb v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcc62085 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddf2d939 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe38f5fe1 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe69b38ca v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7b8a731 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8544f2d v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8f8d642 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeeb53691 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf001fcf8 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2f9cb46 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4e23554 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6838c27 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb749f02 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc478003 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x54b55dde mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x5b094f27 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x49a8a623 ti_emif_get_mem_type +EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0xbcf322c5 ti_emif_copy_pm_function_table +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x30ce1e16 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x68f4e651 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x931eafc0 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b356a5d wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x29044967 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e0fbb08 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x38a878d9 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3f90aa1a arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x49ff7de5 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x580dab11 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x599e07e8 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x66b4030c wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6e8fa8d0 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74626422 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8c2d30ed arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x90f3b42d cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa55eff2c wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbbe144ff arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xde917058 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6663e60 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeb7a76be arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x3c9bbeb7 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xc63c4d7a atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x16b8b554 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x177e6f88 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x23ff17cc da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3176383f da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd31a8970 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe5c642a3 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf44d0a8e da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1291ca0d kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x144877e1 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2762c67c kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7904eadd kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb8329a4f kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc93bd583 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9eeb4b2 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf6533614 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1368213b lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2df7148f lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8c542d87 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x01c5ca9a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1c77b518 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3007b93a lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x88a99da4 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb9f3ce61 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd610fa08 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfabb03e7 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7c331587 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa686ad6b lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa8b3ee11 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a2fb950 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0ac2e34a cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0acf3f0a cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17e4147f cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17e9c83f cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x25968f07 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x259b5347 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2629a2af cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f30e71a cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d43f8b7 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d4e24f7 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49f7fe46 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49fa2206 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54d10973 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54dcd533 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x66a3920b cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x66ae4e4b cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e76e5bb cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e7b39fb cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8ee705f6 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f34db1e cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9e12a3bf cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9e1f7fff cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd09295b madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcfcf0743 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdd27beb3 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdd2a62f3 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xffe408e1 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3efd7ea2 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6c48c0ea mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7e473582 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x807ac103 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb995c0fe mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xce24160e mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x095d005b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ab9d0fa pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2cd4076e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31f8f477 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaed4c8d4 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd6f5eb5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6b64e4d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc16bad3 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdec7c19f pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf0a01d32 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf7fa99b9 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x54f4406d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x72c91996 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x26dcc576 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcdcd3e61 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcea332fc pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdd507af4 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa74fc7f pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe09c218e devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07e8f0b5 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1007ef19 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26706284 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x283e7800 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34f7a054 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36e26920 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x463005fa si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55b4a918 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bf3a563 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c9b4d7e si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5dcfd48d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x631ee5cf si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x677b04a2 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b3b0801 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bed45ac si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x795b5f32 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e237b09 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f79940f si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f964c5c si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x991070f8 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1c0c6d7 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb58a59ad si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc08464c7 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc1afe8d3 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcbbd37fe si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcda13e36 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd02ec33b si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0cc6e47 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5cee0b8 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd6ca691 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe040ac45 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefb6c4f7 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2afecab si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf666b5c6 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x1ce4eafa ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xfe122b8b ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xcaeaaf27 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xecb855af stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7b363c0e am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8e0cb499 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xed3ed996 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfa6bd558 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5eed2dc7 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x91b46ed9 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe5f7df8c tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x8c9fabe5 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0d6b152d alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0f7eace3 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1eb97f88 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x265f16a2 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4d6056d3 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x910dfcda alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xab804587 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c25e797 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x346f5a2b rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4245d0db rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b4dfe47 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57c82f9e rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x60e727cf rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79d4308d rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d5cef3f rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8e67d949 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8e6f6590 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b939ce8 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9e2cc77d rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9e720b9a rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa6c87f4b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xae33c167 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb13a4f50 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5e2e038 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2699e97 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdfecaa37 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe443924f rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xee525497 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf29941f4 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6170dd4 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf7ad7065 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d5dd81f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2c8d09d8 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x406d4d77 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4bcf452a rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4f923cc3 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5996a5c4 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8c95a09a rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa908f1aa rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb2b1cdab rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc18a46af rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc1f4eb20 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc8584dbe rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcc16cccb rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1fb6d100 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8007cc67 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc57655ee cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd597b99e cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x00c56da8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x04c5f409 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x45163bce enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x45ca984f enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5edc4ec2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9bcc4b67 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9ebabbe5 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd47c0ad3 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x12ff7543 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x18061b6a lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x23b6194a lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3730c12f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3f963669 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4175906b lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6fa515f4 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdd5eb353 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x10b69653 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3d0d25a9 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xa231f8d3 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1bf49c79 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7361b849 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe47f8cc7 uacce_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x27b56b05 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2fbe9f35 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3732cd86 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x3ebf6439 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x4f448769 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x09138c0a tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x183b8c38 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3a21cf03 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3dde182a tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4d39a45f tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x714d6d16 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa18c9c77 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xbbd9e007 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcdaa82cc tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2329cfd0 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x310fe988 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4d31ba49 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5753547b most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6fee8430 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xac15da1b most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbcac1a1e most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdaed49d5 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe01c5b0d most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe4718a91 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xee34d68e most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf109885d most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf56f1cde most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf646f225 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x09b9734a cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x369056a2 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xcb8e7334 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2904c456 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x57568f86 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdafd0bd0 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb8c3a2d1 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x14a2d250 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x73ca638f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9a041a9a cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7b546f07 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc72b8809 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5431c366 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x767ded55 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1a0425ee brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x3e155419 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xb6061526 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x977c6ea7 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xe2228dd8 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xaf05923f spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xaf33a171 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ea15302 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1aba41ee ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x22a7fe8e ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38c6a87b ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4517803a ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x627a9d4c ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64d6f647 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x69413b4c ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x897f0e8a ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb18bbb26 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc39341de ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc8d319b5 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd9d24805 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf14bb684 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0684b1e8 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d55080f mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3991389b mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6b12067a devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8a5e91fc mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa48fd0db mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa6cc6774 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xabf0050c devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb920714b mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcf72f7cc devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd1af4063 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe7baa140 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfab183fb mux_control_try_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xbe63fc2a arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdda45e73 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x0f061567 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x07f64ef8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x101a54d8 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x14f44797 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1686118e unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x168f9bd9 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc1a47d33 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4f4c0033 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5ed7d727 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x81ff9d0a register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe8277988 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2686bb8a can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2a1c90cc can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b280f66 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x34e2e5b8 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x37798cce free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x457dc5ce safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b2345cc can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d589177 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56b6f47e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x633b3eb2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x641d41d6 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71f65d69 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x750643f0 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78b054d7 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78f61786 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7bc92dd5 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d657af9 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c9f80ae can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa201ed78 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa59f4339 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xacd72946 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0cbdcfe alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb4f94da9 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6445e09 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7e27e80 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbde90cfc of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe37e804 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc129c6f3 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe8512fc7 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf4778690 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x05f80baa m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0c6fc5ba m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1ebaa325 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9ed28098 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc5fef3fe m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe2a31797 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe4470136 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf6c0f874 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1257e068 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3cbff9e8 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbc855518 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf37c5b0f alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xf6aec2b8 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x095a2308 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x142478d5 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x239e9fa6 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28c2bdda ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4fccdd35 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x548a0efd ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x54d7f156 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9cceca90 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb6870096 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbaa0f04b ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdbdd084f ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdf09dc0f ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe38d8ce5 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf0499294 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x01356ec4 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0c1003a7 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f104e3a rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x216f0a21 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x344fe75d rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5210e223 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5827d4a2 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x669d4a0c rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x67453ea7 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x884b3eb5 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9a38c01a rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa2dc0895 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd1c1db64 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd21e9821 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdcbfd81b rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x527bc4cc ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x079617e7 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x63415959 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x165ad7a6 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x675817fb enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb3366ef7 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf68ac32d enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x07fcf79b i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xbe46928e i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1bbee297 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2a9c5de5 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x33e9c6e3 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3a03ddcd ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfb56a85b ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0274e42d mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03f2f5b3 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07418a88 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a101f8e mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aaafb59 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14ac4012 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x152d0d73 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x176b9911 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x190a8b86 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19770153 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d59130 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b55ae58 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4b8e8c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x200320f9 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x214cc57c mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23fa888a mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26fd3825 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cfcc13e mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e620ed9 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312883cb mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3258cb0d mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3294186b mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a252d5 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38952f47 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b9b269 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3df29946 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x403b0774 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x411051c9 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42c75813 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43e91724 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x440cff03 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45dded36 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fcbc186 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51b0a372 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54d76e30 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56d6dfb7 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a29eea3 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ab3bb7e __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ac2cc34 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d1cfc69 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6045a58b mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x616ae333 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6321b503 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67263a34 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c713d9 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6971e7bd mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69da898c mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b8deda6 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d97844d mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7064ba38 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7272bc51 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x752c4612 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x793e4e8c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a1870b3 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2c6000 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef685af mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fbaca03 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e1842d mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e6c616 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8be48965 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3dcdc4 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d5847ee mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x919c9226 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92a184f6 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92d8d21c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94ac451a mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95adcf3a mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ab22db2 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0b23bd0 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa14c0a4c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c8122a mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7a4b4ac mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa54a4bb mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab51236b mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae4d97b6 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae53db57 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3c8e0f0 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4eea63d mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb577af77 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb77ae075 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83b210f mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb878b940 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe39b671 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc264437a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2d1eb8c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33e9763 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc842ffa8 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90093ab mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb69eea5 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb91a886 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc51dfeb __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce48c7cc mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf435dee mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd369eed6 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd393974e mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a0c7bd mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c80c81 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6d80a93 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7fe8b29 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda23d7ab mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda29d360 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd43df78 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde32f6c1 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdec432bf mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe143ae1d mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2a480b1 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4506c29 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe47d8b12 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6142b56 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe758db38 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaabe429 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaafdf8b mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb0695d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed6057aa mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed6e435a mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3790c3f mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf677a81f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7a5eeed mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8baef56 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcfb6c03 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffba13d1 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0badabc4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14827c03 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17133f29 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17725765 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c94a66a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e557031 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22afa70c mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x261e75af mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26c03187 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29d6f759 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bceac45 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ef0530f mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31349fce mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x329d24a6 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f88432a mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4614ac8f mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x492ec42e mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51fb2914 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57a0aea3 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58499eb7 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c8a1cfd mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f8c81e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6114dfc5 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x611b249e mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62cf0ee5 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b50caea mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ce8646d mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71316391 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71d865fe mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7221baf4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782f3146 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b00a6e1 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c5a6eb0 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c7d12ad mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f72472e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x830e565e mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c3a5ad mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8940b0cc mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a40710f mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f99c4e3 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9156c596 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96e07759 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98bba293 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98fdb1d6 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f43183 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a048fd mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa47dd232 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa987f85f mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac16fda mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb497ac2f mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70a0278 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb793d86e mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb977a5cf mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb991fdef mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbae8c836 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf89291c mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fbae41 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3406761 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc347efd1 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87e5e74 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9beb3f mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccb81fdd mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd06862ab mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd72d6de4 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda142ac9 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd5db78b mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdebe7077 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe89062b4 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed011951 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2dfa610 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf576620a mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c23060 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf996bc2b mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa43a1d1 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x06119536 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x146153dc ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xdd07c4e0 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf319b24a ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe67a2aff devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09462ed7 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e29c76f ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bd97ab3 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3141f7c1 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33a65c12 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40150ddd ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e0e0eb1 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53703a0f ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60beea15 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72862526 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9dc22e32 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda5db015 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda922008 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x11b798f8 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x41f844b7 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6b601d89 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x943fca0d stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9c2fc59d stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x801e01bb stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x84ae37c6 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xba45a81a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc120df0a stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe9ed4656 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x013cd9a6 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0a569aba w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8698f78b w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe50ac689 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x3d81e59a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5a7da8ea ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x805b38ec ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8b235a1e ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x98359f3e ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcc33f298 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x8da1c662 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0eade149 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x995589c3 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb15837e9 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd54cfac5 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xcb8a259d mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xcb8b4100 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x12ebc1dd net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6debbb24 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3282a680 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x659e8627 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xab6c10aa xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xad061293 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbdbaef2f xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcf9f4965 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0af096ae __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e7b3e5f __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12646b41 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x158c4a87 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e02fc1c bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ea273b5 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3436b569 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3587bfb5 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37ee76e6 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40c286aa bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45ff981f bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56c4ad67 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5eba1f5b bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5f2ba8d8 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x617d2cd9 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67ab8bf7 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6db7cb41 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70b06726 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x737b5255 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78d757de __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fb2741c bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81f1527a bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d5f7892 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9115b18f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3ea6ccc bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3fc9730 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa4b2a1a bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb30c46ea bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbbcd94c __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcda2fb9d __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce136e26 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd44e7c3b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd502cb2d bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa1b7a23 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c3260d2 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5b5e5225 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5c09cf84 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6f84422c phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x78b14f08 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8326318f phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa6f36ce6 phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc76b53db phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe2fde169 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0677836c tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x561222cc tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x5e1797ee tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x6539094b tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x8fbb6a1e tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9ee9e44c tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xbe0f225a tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xda5eb895 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xe6f2f164 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3f87f27b usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6587e848 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x71aca5c5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbcdeff89 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc01d31af usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe3cbf9e2 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x206c67bc cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x289bf889 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5624c761 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5813ad3e cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5c47fea9 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9dd0b4b5 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa3d78d64 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb323cdb6 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xca58b240 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcb994b6e cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf098dc15 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x252ba758 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x19a37b3a rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x439fe7d8 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4433a627 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5fe5eceb generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdafbbb95 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6051dea rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x048c1ae1 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08ec0317 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0bf2f50c usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15ef4da3 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1619ecf2 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a28fafa usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b3d9d9c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x220e9349 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3152f298 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31fc84d9 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37e7645f usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e7b29f2 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4714e765 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b3774cd usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a7014d2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x949c677e usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9588ffa1 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c0144a0 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d6715ea usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d6efcc0 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f28a415 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae3d980a usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb046a593 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6575206 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb90f9f40 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd300897 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe44a276 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc82e6bda usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd3ee504 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd369b64e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7b05f77 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefdcab9b usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbd4a4c3 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc21cf6f usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x05c50a9b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x53d8dc8d vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc4c121de vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xef399581 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x67ee893e libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x431e6592 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaae4d4de il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe152cf21 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4453308 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4465320 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03fe8384 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07693437 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0af3d00d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d57dba1 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0dd32031 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1311eaea iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13e5368b iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x149fc656 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20dc1219 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x222d415e iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2268e768 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c7e402e iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x343ce222 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41ad8a17 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e3dc83 iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e9abc4c iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fb05f2c iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5327d811 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53dfa4b8 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x560d46fa iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5713e527 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x584a06cb iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x593a8002 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6962ec3e iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e83871c iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70cfb0f2 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x759a0fab iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75acbbad iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75d50876 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77252e88 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78a6f6da iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d9e8f74 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x89153ab7 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d39523e iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x923db741 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92946c97 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96523eaa iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9afb738e _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa27f519b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6c6d71a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7dcb421 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbeb3b7bb iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbec91ec5 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc05e5efd iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc34257b4 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca6bafcf iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2de3cc1 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd30c1373 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd84f2d63 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd94b49e6 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdcca82e4 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdccb35d0 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe30d03ea iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe59767f8 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe95bb140 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb5b6413 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf156fd42 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf612753b iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0ae82049 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c85fa29 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5ce98e14 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6e8c12a8 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x747e341d p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa139592a p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa51dbdcb p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc15dc477 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcd6df9ca p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x10343e64 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x156c6a22 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1f2cbe72 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x22fe44a9 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3cef4cc4 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x45eb70a8 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4ba7b6ed lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5720de70 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70221f61 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x76a3f30f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7cbdde73 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97a2c95f lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbced57bd lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc2744c92 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd1758a47 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd53857e lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0eebb87e lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0f6ad829 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2903311f lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x461bd18a lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x553addf2 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x643b3278 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6d733821 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xca5fd602 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0a1ac13b mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d95780d mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11fc0b4b mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1aa0e5e3 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25608d90 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c38f338 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43989b11 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4c1a3a56 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56d1aa2e mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61e72de1 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x668ed4e5 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x673da7af mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f6c5d65 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x74d7fa71 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9cfbd4a9 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e21bd50 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9fb01c75 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb91e8b1b mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc017f012 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1a08764 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd00dbc6c mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdac662b2 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe965b791 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeed05745 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01aa5bac __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x025486dc mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bb433df mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c084f8b mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x107c06a0 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x117a06ce mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x168b1371 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ae5a235 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b68a8ef mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1dda18fe mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f84a668 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26c55ce2 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28de7ea1 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29e5f3bd mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f144ef1 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x335c50ec mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3645546d mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39e175be mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3dbb3497 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e06e8ff __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41ec6eec mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45cb048e __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x497ec2d3 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a469e4c mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4da8c4bc mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x513c815d mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51be336a mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x567300b8 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59f5d281 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d75caa4 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e0285df mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60bb9769 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61e8448c mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b3d2188 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b44cdcc mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bb9d561 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6de944f4 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x711f59ce mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x757e03bf mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dae4a71 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x824ebd6e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86742290 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x883245ff __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88dd2000 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e3fdf34 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5507a9 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bac633f mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9dd01c48 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa15284ac mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa879c391 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb36b0341 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3d5c856 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb451f1f2 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb870f868 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba3f76a4 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcbf48c9 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe19dd11 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2610fa4 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca3ff3c3 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb61dca6 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbe4b084 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xceba8af0 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2ca50ec mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5c3f952 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd962082f mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xded490cd mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2335c2b mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3eb1cf6 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefbcfd9a mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0e12f2b mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1e237c3 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf48cd3e7 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6557002 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdb81846 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff0da53c mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03f73c94 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08ee5305 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09c6d4fe mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d9b7f16 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f282223 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19291c88 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c4742a2 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2168a1d7 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2596416a mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x329765c6 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x342d7b70 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36f24a8a mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ad8592a mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c3338ef mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4dd11a8a mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e80ab7a mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5abcd805 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63a4202f mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a36e8a6 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7671090c mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d1f6e72 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x819588f4 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8288d53b mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b90f621 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f641fe8 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa568a46f mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7e8ae3c mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3268f1b mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb353870a mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7e3e16b mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbacee520 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc12dad58 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6a59148 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6559df3 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd899f58b mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd97831f3 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9bd7414 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe32968df mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7bd1d0d mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8858886 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8d28eeb mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4b83ad0 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfada9951 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x42bbada3 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd8d723fd mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xfe9a9af0 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1bc0dde1 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6aadd530 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x76f64853 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x88fe6b9c mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa8a1385f mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xab127d2a mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd5b81421 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe7b9f6c0 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeccb68fe mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b48bb6e mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20413a5f mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x295e2b6b mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b4c4ba8 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2bf9b54d mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3164e1a8 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x319bf11a mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b521319 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4134e3af mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4fea1cff mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x735b190a mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fa7c4da mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8057cb16 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x829e588e mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x83aaa4a0 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8f46638e mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa84d5354 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbbe0adfa mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe8bfe62 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc360d2b9 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc436c1f6 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc6ca22ca __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc1683c2 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd38faad3 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4beb912 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd78f257b mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdb4773fa mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe7e78506 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeeb6d8c3 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x15da2230 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x273a3a85 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x47829fbf mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x87c26692 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa3ef77e6 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x03d07124 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4531697c mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9c5297a1 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa64a5bbf mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc3e28ad5 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf515f33d mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01e9d659 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03373776 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x048f2f3b mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0821ed4a mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cee1b04 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x138d37a9 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2064f6dc mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28260158 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a0c27f6 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c7d9402 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ebcdc7b mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f575c26 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30005d2c mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x344362ff mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a42af51 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bc1e7a6 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c888614 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42eff65e mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44bd95d6 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46be4f09 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4764820b mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a1a9f67 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ed3ef92 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5105f7e5 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54f5031f mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5efcc4aa mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6897b042 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74d6062e mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80300cf8 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81bea696 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83669dff mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84bc36cd mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87e16b24 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8807b643 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c172beb mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x914fe06b mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96b7b39b mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98eeac12 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f5a2c2f mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa24e3e57 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2af6e89 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa318d7be mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8bdf9e1 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5b9a6a6 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfa7ad65 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7afd184 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc892550e mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcea769f5 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcebd2b0c mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcef07ccb mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd165782f mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4b0e495 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdba6d140 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde46e3ed mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf0b2ee5 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf6e3bd3 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe398df97 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9ae330b mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeacd5835 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec7739b2 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0cb90fa mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf182c844 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf281b295 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2b29ac1 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5fb8e69 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfaf1a030 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x005319ee mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x092dd1e7 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x27280072 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x48a8e47c mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5d5aa8bd mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7e58996f mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcbff1625 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe9fce94e mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x04d63728 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x13dd263d mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x15beb102 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3d4ecba3 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8a7b3d77 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8ebd05f2 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x971a7255 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9748673f mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9a2b5ea4 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa55939d0 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8ab552f mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb274ae33 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xba9aa705 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbdc276a8 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc23f923c mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcdc46443 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe0750a09 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe9b1fa37 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf0d450d5 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x48aa4d28 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4bde7c90 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa6276186 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbfa7e22b chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd8fe728c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe0cd437f chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfbb3f4a7 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x013d853a qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x38532a61 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x61cc8768 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc772a1de qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcd048da8 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd6d40fce qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13a70312 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x154360a8 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d4bb195 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e4570da rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2500f30f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x289ca3d3 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ab1c57a rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32c4f041 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36b331af rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41013980 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44cafe18 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46ae7c0a rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49c98283 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51bff808 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x536856e8 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f5d49fa rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6832211a rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bb8bc24 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c1ce363 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x772dba4a rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7963e581 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e64544b rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81d0d540 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x832620eb rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84dca014 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x884044b2 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x88a98b99 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a4dff9a rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8dd887ba rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9727b85c rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa29fed52 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa74ee2bb rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa940593f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafb83fab rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe58b244 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbea5f242 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8bae022 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc77e6c2 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1a7baa1 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe837341f rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe871f7af rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf24419e9 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3d30ea6 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfce67930 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25bb6873 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x36834267 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x38b19b47 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x48df4270 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5e0a7440 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x608393c6 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x72c71fe5 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x74bf3809 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c0382dc rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83c69581 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8c727fc6 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa8a13f4c rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbc2514ab rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc0934c7c rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc7f91fac rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee71a583 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1494fa0e rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20e064d7 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21ce226e rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24359f51 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2546e9b9 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25f3c1bc rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26dfd78c rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x333935cf rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x356cda03 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42bf8a03 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44e22a7f rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47338412 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x508e3901 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x509150f7 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ce33cbb rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d3a1b40 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e4bc1d9 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63dcaf86 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64edd5bb rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x668c8d69 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68003b92 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d1f4ad5 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70e7de4c rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71108bba rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x736e9f88 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76441c36 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x766ec96c rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b5799a1 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7c1ab694 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94389f6e rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96dc3108 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9716aee rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0dedd4e rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb2818178 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb685723b rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb84ade64 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc69480dc rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7a5fd9b rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd413a67c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd73d95aa rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfce19b6 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe6b9e930 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeedfe485 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1d48821 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf86f5cf8 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbe95060 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe3e283a rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0768e0d3 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3b6b8aa3 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6a29b036 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9c3f98a6 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa2151fac rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x21f75b91 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb8d805e2 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc572f07f rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x087535e0 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0c6db8f0 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e7c48bd rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x405654bd rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4c73b1af rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x769f9d27 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8ded536a rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9702c34a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb84c1417 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcaf33a91 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcf836edf rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd9bc5ff7 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe4811a89 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xebf95963 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf54b8447 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xffa83a71 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7702f639 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b62193d rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3d9b9b2 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe4de44f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00a6b5d9 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b9ae7b2 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0be6d9d7 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b525f4d rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e6eab8e rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x295acf79 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4969495a rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4dd5e146 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x521ba31f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6427c890 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65cb61eb rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b9a8ca1 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x793c901c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7dab6527 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8023de14 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8312d4b9 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8400892b rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6d1e9ed rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa880b354 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb024f496 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5959b64 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf01a3206 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf3a404f6 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5ac025b rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfac346f9 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x011f2b6a rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0519e556 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x065d4f55 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07987ac8 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x176e6dc6 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19d04a59 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22a02d43 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x346da203 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x410d4170 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51df8241 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5262c98e rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5def1b35 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6373c92c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a53cfb0 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70e4361d rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7af0ad41 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8623c23b rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8bd8f74b rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6675379 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa98e6ad7 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaaa4ed4a rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xade606e2 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf753ad6 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde9949d9 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe772bb9 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x04b3da1e rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3dd524de rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4ddee304 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6d2ad89f rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd6344204 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fedef49 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x892875e1 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeeed094a cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfd20342b cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3b894738 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5fe1f3ef wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbc066212 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x010a9785 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a7edad2 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1cec045b wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d85fa3f wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26a42cda wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a23f0c9 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x307f0058 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36b28895 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f0f4aba wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x437589a9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47ecb5dc wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51519ddf wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55de3e70 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x615d1b94 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61eedd11 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65abb617 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65ddf9b7 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x665084ce wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bfab045 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71069012 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x715933a7 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x720853ce wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76a9bf18 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7941fd4b wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e9a8197 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8543b7e3 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86fb6d91 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d3ae118 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa46ceb8 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb60b687f wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7498baa wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba1e3952 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbab13ea1 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbc38224 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf9c7231 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd461233e wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd87555fb wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9052ecf wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda55ef23 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe38e2a5d wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xedb258ed wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6cf1d5d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf831173a wlcore_probe +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa88aa120 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcccfbd6a nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xce622f11 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd182355b nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x339e6fac pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x47d08eb1 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4c8e9b7e pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x569a84ad pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x59be2c62 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9f6e30b5 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb32b5d6f pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x00b14457 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2afbb454 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5ad95762 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x60bc16f9 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x61444add st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x69be6174 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa2956966 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb77b8325 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x377c05f0 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa040506e st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xde59f554 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5afb5ff9 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x6baeeb56 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x6f013c6f ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0064f2b1 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x009b3d93 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x081f1ca8 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11fa79d9 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19241419 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b86e3b5 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b8e6756 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3319503d nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41060d82 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46bfad29 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48c31ea1 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c99c568 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5262e11a nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x589750d6 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b1e07bc nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x615796c9 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64d491a4 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7389d373 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x789bbc7c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88b5a6e0 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a737ee5 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bfc4a2f nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92cf67e2 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a46350b __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa00f4b9a nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0e8c7d5 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa44b5602 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb01c94a8 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb25d08f6 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb49df3e9 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0bbf14e nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1602080 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2a22fcc nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2cf325a nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd380f6a1 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0c404d1 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3d2f319 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xecf08163 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1135f83 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb73e4c8 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xffb32e83 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x004549e7 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x30a266a9 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x609d85e0 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8bc6645a nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8bfe4097 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x921b627b nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x95598fdf nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbfd1da66 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe29d9d88 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf6a2318f nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbeaa0ea6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xc52a265a nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1b74a145 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x32b03bdc nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x39bab6a4 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e9f3a70 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5236d3b1 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5c23ec72 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x95598e79 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd0ec3755 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe09c5ada nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe773a71c nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfb614174 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0e3c043d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xddb93c97 nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xecf4c07b nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xfee33ec7 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xbb6cd6ba switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x15f6d773 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1f29cc88 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2696180d tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2b734a66 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3b42f61f tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5c5595c1 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x68780ce8 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8764e782 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9e6baeaa tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaaf82a5a tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc648dad9 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcdb8d0ed tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe5de81a3 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf9652164 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x5083b3b2 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x9c3ef0fd omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xacc39f0b omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1d13416e mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x2d68e581 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5dbd45b5 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xb133f659 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc26bb1c7 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x061ef674 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9eae39fb reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc6a17c5e devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xcde24568 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2fa97fb6 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x6ac628b5 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x787aeeb9 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x19460e95 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x432767b3 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb63aba2e pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x264d8058 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x59626be4 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa791bad0 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xad988bdb ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb11aa258 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb434f5a3 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbec09da9 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe5b86454 extts_clean_up +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x134397fb mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8de91a54 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb3c10542 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc0914655 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf1b64e10 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x339ac1bd wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4dd9e832 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5b87dbc0 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd9a87025 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf2e4f53e wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf38dcda6 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc6eb33d7 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x30efde94 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3159f590 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8e9abcb9 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x97577f22 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9ced806b scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xdaa08128 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xeb861776 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x0e1323e6 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x1a41a5ad scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9196625c scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa2dab084 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xdb53f78a scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2fbd5926 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x35b40583 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x544d25c4 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa8be3f84 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb2b8228f qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe058482c qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xeeb04dd7 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf0d38367 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0xd9cfbf16 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x03fc9a9a qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x1bf5abea qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x54ef8b0e qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6b072ed0 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6b236c37 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xfe5830ec qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x61b5a23c qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xaf3fdefb mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xff8929ca qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xfa30cd3c qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x045af1a3 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05298762 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06fca6d0 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13b9c6f1 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cec9893 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e9865f7 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f86ae27 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20e10b03 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fa7bd49 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35873c6d cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36618ee2 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47eecf62 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a1f77c1 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c80d223 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x554ff9ae cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5baa7f0b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61f62202 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65a6c19e cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x662bae35 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69764819 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e835973 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76f6471b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7882cc90 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x887fe3a8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x926b90a0 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x973753af cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99a83efc cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b6fe92b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa104cba9 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad8d4f7b cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaeeee4c8 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf680039 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1137c5c cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc265b6e7 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc82ea230 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc898909f cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcac11eb4 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc01f9c1 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdfb10f0 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd434ac7c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8e95c40 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda8bde03 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfb459b7 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea6f43b1 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x02e63ee1 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05a8a5de fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0853b5c5 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x35d68b25 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36287a21 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3dc3f05a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4bfcf6dd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64cd1e3c fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8130f295 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x87e6c25d fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x881a1886 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb40e7299 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc86ce780 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8ab1f07 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcc375dc9 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd270bed0 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x4b8768d6 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x83a30ec9 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x26410148 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x331af0fe iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8e145ac7 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb075a741 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb42e40f2 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcbc54d17 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xeb9833b2 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xe540147a fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x013f1e56 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x037bca06 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09a1a52f iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10aed9bc iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1297f826 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x129d7910 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16d1423f iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x196f11c9 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f6071ba iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x226ff870 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23dbbe4b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ae6de1b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b560163 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31532cd7 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x324f3144 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d0f574b iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44483d66 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cf09efa iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f6be823 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x508085d2 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cad8e5c iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70ac7a56 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x721b8f9f iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76f63788 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7794f117 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b11bbd0 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d59d010 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82ed8fac iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a019453 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa22cdd45 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa510117a iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8f96d4f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa20bd63 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf6a24be iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb23f9ab8 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca9f7fea iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc61e98c iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd4d128a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce37f201 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda59e7c3 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0f231cd iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe86fdc0d iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb6278a5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed8e2d4e iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e0510de iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1321a6e1 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x148e87af iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1528d5a2 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1830984b iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2101891a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x309bd8bf iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43e287f8 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x451c5182 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ac705aa iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x550a681a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x62ab5ecb iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8835deb0 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb24a3399 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd0b8e94 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec9b6e8d iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3efa98e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x034a8896 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x037e0a34 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x068e03a3 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07a1c4e5 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0af2855d sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e63e930 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16e7fcff sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x226a445a sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2dedf064 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fdaffb9 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x326c8493 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3741f23f sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e731071 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67787ee1 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67847e03 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7591cc7a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1afa59b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb48669e5 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7f33cea sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9d7c0f4 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc57f91a3 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca5ce4a2 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd42cafbb sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5d3c881 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe33665eb sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf064261a sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf31c64a4 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xdb098944 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00b817dd iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00de2261 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a5036e0 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13260cdc iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x162772e6 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19a17517 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19e4d8a1 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x269d61f6 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c27022d __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e5fb30f iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3221ad3f iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3287b9c9 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35e9edb0 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37cb17ad iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47b5c916 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x543e2357 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57a06d3f iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a856ec3 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d85fbfd iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dd26a62 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x655025df iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6890e788 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c94414b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ed860df iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80443612 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82ab4a28 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cd8962a iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa712ea5a iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabf2e24a iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafe4c09b iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f11cfe iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7626bd7 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7fd484f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc6b7912 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcdbb205 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6f4d43f iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc99004fe iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb7d62cc iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb90a808 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb9ff4fc iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1cdac23 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd75b5c7a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1124549 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2e3b66d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe471c34a iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5486765 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee0ff447 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7358f4a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x18900c30 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xafbf9210 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb0d9400d sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbc3efe8c sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xd4c0a31f spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4c6cb9fd srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5373335b srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6cfa733f srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x827b9abb srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc26d98d9 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf7fd7790 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0d6f90e7 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0ecbe864 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x56a7320b ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x663add86 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x66f6dffe ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x70ea427c ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74561cde ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7adf6812 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x94aec376 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9a04702f ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa29af04c ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb3faf576 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb6063575 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc41daac0 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xccb83b30 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd49f565f ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd91ef1ec ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xda819f66 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdfe841ad ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeab57c0e ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb3abb58e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfe44cb59 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x06601352 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0b554685 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3ace1954 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4648cad4 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe1932344 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xffdc9e81 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1a6bfeb3 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2394d8c6 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3490a60d slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x46d19957 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x474df5af slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x53b3616b slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5c5d2a6a slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61929e72 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61f29bd4 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75ebda94 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79c4f005 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x86a7ce9a __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e2f897d slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f923a13 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xac9bf45b slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb6b21f12 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe519227 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd58ec3cc slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd85ac0d8 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc338eae slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdeb3bac8 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe2cc3183 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee1b7901 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf05d9675 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf55edec1 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xff51acab slim_readb +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x147d64eb meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x175109ac apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x57e2dc92 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9827577a apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf34a962b __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x2027e82d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x62ff6e92 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xdffee709 llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x42f47788 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x53d0ddfb qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7f7f8cf4 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x54e143f7 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa944b6ce sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd96c426b sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xccb90a1c altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0da96062 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x30c12fa0 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3ca215bd spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x99034f13 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe3960b5 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe819dbe6 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x08f1a8dc dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2a4aabea dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x49a801e5 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x53b8b25c dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x66e2082e dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x884ce07a dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9fc33d4c dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa8a18f00 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcce57e35 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x575b6ead spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6adc068a spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa8f5367f spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00dcb9bc spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1004b95d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c57820f spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fe79dd5 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x48a1b2b4 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55a5f898 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61ff6fd9 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ab85f30 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ad00801 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6cb8221c __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97aadcfe spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4fefec8 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa8ab885d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb06c5622 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba925f9b spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb3d116a spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc8f31ed2 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe2d7d30a spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xc9865c87 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x103d2cd1 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x474807ee anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4e27d28c anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5db6815f anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8185a8e8 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8805e0b7 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa4fb0242 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa9385898 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb16ec352 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb2d6bc75 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbd4ce9c1 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc6710db5 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc8d438a8 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x17f26b6a fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x263057ca fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x27b0a6be fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb757413f fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x083a415c gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1067502e gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x14fb97f6 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36c53e2d gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3f056d6d gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4d21a163 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5cc5f539 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x66b63e76 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7a59b9d4 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8f2b184f gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9776093d gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb814347e gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb2c3981 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x05fcc351 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x24e72c81 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2b096b3f gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3a501f3a gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x42873925 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x67fbba9b gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6eff9031 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x73f9747d gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x930b23c7 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbc34061c gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd470d9b3 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe49e94d6 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xee5fb60f gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x09c25e56 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1c04d8e4 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x98a412a7 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x9f36536d gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x2b23b02d gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xd68c7768 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7d7b6ded adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0dd9f247 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x22646022 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x27ab5bdb imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2aaa7927 imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x35bc43a1 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x625c7969 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6d29ec5a imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7c58b57b imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7d458285 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7d9e7674 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa07a5db2 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa730691c imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xad1bbdfb imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb1aa36eb imx_media_ipu_image_to_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb320e635 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbf2955a8 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc77ceb2d imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd0b0ea39 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd18a1b72 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd64293e0 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xda1818e6 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2342f7b imx_media_mbus_fmt_to_ipu_image +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe3aa1966 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe554791d imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf2aa3570 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x01150ca9 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1a0e02e6 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1d8707ee amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x31e1475c amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3953c58e codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x53bbf74b amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5cdeabcc amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5fa67a20 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x60b5c7fb amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6c9e1258 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7c12b2be amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7e7f8e7b codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8150e630 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa6273d90 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbb9838b9 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcf281399 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdecc789f amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe5336936 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe6b967fc codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf583042b codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf9c33b46 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x1beb573b nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x41f4644a nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xefd247ea nvec_msg_free +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x17605c21 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1ae3e334 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd232ec19 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf93367b7 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x084c2bfb tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c0489cc tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x125f762c tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x16a7d59b tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x20734546 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2edd196f tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4d072003 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x597e474f tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5b554cfe tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5bb66240 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6bb0d723 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a512835 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x92324a7b tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x973926b1 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e53c927 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa138176f tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa7142d75 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xadc32a80 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaf3b95cf tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbada5b28 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc9503b1 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xca43cdc1 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcf0f4c8e tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd671c21a tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf5c8ee96 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x07a3f64c tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f79c404 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x42d1c9e6 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x43c83cfc tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4a728f29 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5f14a75c tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x828970db tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x881a0a1e tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8f0fe579 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x99ae49da tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1285eed tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa42d651c tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xabdb8d6c tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xac9e1835 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb2502d7b tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb83ae4fe tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe5da860 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc1b317b4 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc589148c tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xca136ca3 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd9ebde00 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2a10300 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xed88043a tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xee9e11bf tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/uio/uio 0x19395c30 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2d9b53a4 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4c047370 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xfa3b399c __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x51814f58 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc140b0a7 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x14a146c4 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x23913b07 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2c15abab cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5d99da88 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9957eb86 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdebb01ea cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xef0398fe cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf5f35e94 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf66949f7 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2cbde950 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x97546c52 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb0c8dd60 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd5cf5750 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x18d3f13a imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x22b86b62 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x28c3ceca imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa98a3bce imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe2264e45 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf283889b imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x19876864 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2218c51f ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3395f7f8 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x45bdd2d3 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x607730e2 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd2e70a67 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x85faef49 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x89072b41 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x917bb5bc u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9facc04a u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa3639d4c u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa87baf22 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb7fe8830 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd7c2c706 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe5e4a6dc g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfe426b9f g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09de460a gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16d846be gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1746d238 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x24738172 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2fb15f6d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x449f23f3 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x53eef27e gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x55ca83a6 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5e5b18e5 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x77070ad5 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb69d6f8b gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc51c0464 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe267035f gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe5f9f6d6 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfd26b96e gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff832b83 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x02a6f3e8 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8930af73 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8c06418d gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc32a34a4 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf53717eb gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfe9468f2 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x330f6ab9 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x83ed6e46 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02b1ebcf fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07767917 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0c55486e fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0fa8b711 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x193776ac fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x194957ec fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1e11f17d fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x22351b6e fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x48a4c6cf fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c4f13fc fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4dec157d fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8a119d17 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb6515ad5 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe875a747 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf5aed6a3 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfdd57ff3 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe50bea4 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x009e72c2 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x068d1f4c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1081a97a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x35849ec9 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47efe619 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5baae244 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x695ee404 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x769ddd03 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8627d76c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8680fd5a rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8a81c349 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8b7ce6c4 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa79cb780 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf008e06 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc20c7bb0 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0eacf5b5 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16d5b047 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1a6ce98b usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a4f72d2 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ba11daa usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30eb2fdb usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37805cbf usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4dbe33d4 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76480b92 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ecca8a3 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ef8b2d3 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b33761f usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f19e6b8 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9094f720 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x910e55f7 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x914d5fba usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97ded01d usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa2721767 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb11125d0 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1117062 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1a30db1 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf35dc73 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc53affbf config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca0f7107 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc8d625d usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd086a6b6 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd24194b1 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd313732c usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee7c2132 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef45d5cd unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf6bb75ec usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf79ef864 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff50e66b usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x08938ea6 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6ba39bdd init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6ca1bfbc udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6f9de395 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x825caf44 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9baf1aba udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa45a45a0 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xaac223ae free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdaefe836 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x77870cd0 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xdd6e68f6 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xea3075a1 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1d908694 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a61292c usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4a096565 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x53b98278 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7d6e443e usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb8970210 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd38dea8a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdbfffad2 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfba683b0 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x42fe9991 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xed073f77 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x10f69ecb tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x296caad7 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x47638118 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x63e94483 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd89a7507 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x00117503 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x07f13db6 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c6c1464 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x288d7e2c usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a1ecb2e usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44a151f0 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4725f1a0 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55e49c44 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5722f276 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x593db957 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97a4ac7f usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9900f6dd usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f13575f usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa25d2d49 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac5109f7 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1bb804a usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbfe90b2d usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd02add06 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe3fe152c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf03dd3ce usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x85387e22 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xca2dbf76 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x8b2cf7ee tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x4215b7b4 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01bf4689 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01e54c1e typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05c82d1e typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ab9d791 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e689518 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x191da956 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19ffe72f typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x218e3aca typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x235d2f92 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26846401 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x285599e3 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x28afea54 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3100e9b4 typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a5e73ee typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3fa0cc8e typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42400d7b typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45ad1afe typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5da83981 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5de3d27f typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63bf655d typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6fa37fd8 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ffdae91 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76c89a06 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b2c0573 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b8fdaa1 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87278d1d typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e778d64 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97bec96c typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9acab606 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c617285 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d99aef3 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0c737a7 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa12295eb typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa29bd8c5 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4770894 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa58dc3f6 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab78967f typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb609d24f typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9d6e1cc typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf719c62 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc19316b0 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5a6449b typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc79ef21e typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc96fa591 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xce2f16e1 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd6410b21 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8c55d3b typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda314305 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdad0c687 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe310fc71 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3755365 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe519fad7 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe66b6e3b typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe876528f typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0ed984d typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1441fa2 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf850becb typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe0b2eb3 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xff368fe0 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffa1b4af fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1e6882e6 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3c45f59d ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x425b685d ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4d0f9feb ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9a02ed5f ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa05ae9f6 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda4aaba1 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe3ae68c7 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe56e5077 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x54d69fa4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x61569643 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6987900d usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7463a13e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x83ad9c75 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x99db96bd usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa47470a5 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb27a7b6c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2b12635 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbeddee1d usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe2f415a7 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5928d8f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xec1d3721 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x162b9738 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x58aa943a __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5b929e13 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6e94d32a vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7d1f2e24 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fe56e88 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9bf6e960 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa5d73508 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xaeccae9b __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xb7f83b09 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xc0963364 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1b942155 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x24727b95 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x31bb77d1 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d975d53 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x432e9bf8 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4b4b5703 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x650098c1 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6cb9ec4d vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7b9e8652 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d761e2b vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9b7fa8a2 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xadee7400 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb23ed375 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbfc86b8c vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdcacf695 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8b86df7 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb9809d4 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x619b304c vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x687e41df vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x83594843 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa1dae1f7 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1d4e869e vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x21ff481e vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x36c2fede vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3aa6166f vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3c8a5c0f vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x57cc0786 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7bed8a62 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x961f7bd1 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x97b4f574 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa5a5afb3 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc116dd10 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcc41b37e vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcd180500 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1f04488 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfcd8204f vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc69cf328 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf3fd9961 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x015dc330 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0987057a vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x194abe55 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a479cba vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c068bc4 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d84c04e vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e6b95d6 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x411b75ae vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5646c210 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x567cd429 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58375d9e vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5859b6c5 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e281665 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ed130cf vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x754c6970 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d90e4f9 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83f8896b vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cc1121b vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5d42335 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa98fa97e vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab51595b vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb01e4919 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf7a82b5 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc634d802 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcca660b5 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccb71ebf vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdcf91857 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdda78f37 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde1ac680 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe23cbd3c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2ebd4d0 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4db12af vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe81ef6e9 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea56347d vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1b9f849 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8577e2d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9825bb1 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd6622e3 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfed0123a vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff6a0ab9 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x168b2f25 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x472b51e0 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5f8dbcf1 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6231bdfc ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x63a9e148 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb587d208 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe404aa85 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x2b554d6a fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3ac71208 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa0c2589e fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x501c3c70 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x82581aab omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf383fbaa omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f4efbc omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x46c636c9 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x67b7fb42 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x06d7b710 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x37178861 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5b90a514 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x628480f3 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6592e7af w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x870823bf w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x87966cfe w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9616d904 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x98573e79 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd9406440 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xddd61948 w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb7c44222 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc9ec06f8 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xff89055e dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0cc3eeff lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x243aed5e nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3ca8dc95 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9329b9dc nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xae7b2add lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbdb1a11f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc9294492 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04486312 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0600e16c __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0686bd65 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07a3c545 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07f263b0 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f24fe28 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f9b910f nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x138c092c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14222833 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17754fc3 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a11eada nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b734cf5 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e5abdf1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20649d5b nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2073cb8e put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2137615d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23714197 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c2b08b nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275d1f00 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x290bcecf nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x295fed65 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a2e97c2 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c76157c nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fdbc895 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x303fb965 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x307f3c09 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d7ac08 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x338ac9b5 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33b73dee nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x340d6ef1 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36aa9bb6 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a368bba nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b43fa1b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3be2d153 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d5e6b74 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41ef72e2 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x442c4fc3 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4660d514 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47bbf878 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480a8acc alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49786ad8 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad983c7 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b3809a6 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bb46254 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e41d05a nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e6df39a nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f4565a5 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fda028c nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50616801 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ef9d52 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x522990cb nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52cc01b6 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x541617a1 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x582e6daf nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a5d4974 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a828f93 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5daaa20f nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ecbc659 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x629dd578 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63744e5d nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x637c4db9 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d5ddb86 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6da563e5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e65f5fb nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ea09c6f nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71b11468 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7237014a nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75606aad nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x790076c8 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cfd8ac5 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d55a219 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d6dcaad nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8023b6f9 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x812b90dd nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81f2e264 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x824d664c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x834cea96 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8403d509 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874e899d nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887dcd45 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x892fd6fd nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a6ff3f9 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b7477f1 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c0c0bac nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d63bf74 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dbc4455 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e5485a7 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ec3ad9f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9184029e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x928851dc __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93e1ab92 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95facadb nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9611fe71 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96ef0119 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x987e71d3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e4e4b56 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ee823 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4c53739 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa82fc337 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0406759 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0d55e89 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb386c2ac nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8ad0008 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9bcb802 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbabe712a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0b65f5e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ea8483 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4e43210 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc552c00a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6360d5b __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc939b1c0 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbdb4da9 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf2a14a9 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1d27aae nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d30379 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd301eeb4 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd380b876 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd603a7c6 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6752e2e nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92d1844 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1b6410 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeac81d8 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf51d574 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdff51908 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3e04887 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec3f6cbe nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec9416c3 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeed207cd nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0f80f89 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf310588d nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3bd34a7 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f64601 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa789448 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfee31e13 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffcedc01 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x42f57a71 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ac010d0 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d4985aa nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11d7c04c pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1229b741 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x178fbc90 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a50d253 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1aa38eaa nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c0746c7 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f29f4f0 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2126aa29 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x217e5d21 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25ae684f nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2850cc7b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29e9b0c0 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x301c2cd6 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30dfdb6b __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32c8a497 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dc7e342 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3faaaee4 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fdcafd9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41b611d0 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44cb9533 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x471b38db pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b06ee87 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b343167 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cd3e3ea pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ed81e7b nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x517d0c9f pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52000d8e nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53ed6cee pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x593cefc0 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59c7775a nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f9f51f6 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fd35cd1 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x619e7223 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67077250 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a29deb9 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c44109d pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d22b1ce pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70e0b8e0 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73c35e51 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x765faff6 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f65c0f nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7770eff8 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd503db pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88203a70 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8af3ccf3 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x901418f8 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x954878e9 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97188d2c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98eb8c8f pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98ec7406 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3b3210d pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf72841f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb21fb4bc pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb278c5f9 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4b435da nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6e7e344 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbc9ea35 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc21ea419 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc55bc6b8 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbdcb509 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3aff60c pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7c157fa nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe250e2b0 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2fc06a3 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe377b31c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3a950e1 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe520d55e pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe951c639 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb5fa5a5 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1fcee91 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2b52518 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3a51c54 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4ca2bae pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf57b9f16 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf92029a2 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd8b8dbb __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe3d8b9c __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x22f1e7f4 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4371d10d locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7d3f192e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x20ef907f nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x47932c9a nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5b14875a nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x85491849 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x8a681f90 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0340badf o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x18639d5f o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x56db3013 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x968a3e93 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaddae43c o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc0636020 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf9a7705d o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x060d1f92 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2678b4f0 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2ead7be7 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x80df3d95 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8b804a0b dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9aabebb4 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5d71b907 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5d8802db ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7b41cc6f ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbf88c31f ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0x955ee96c crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0cdc0016 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x933c9c1b notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x89309a79 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc028965d lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x1576565e garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x70386fbd garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xaf235d0c garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc07cf40f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd5e9a7e7 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xda4dd257 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x230de06d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4f49e1ac mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb0cdf197 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb8dc80bd mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xc28a4bad mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc9c366ad mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x38eca1e9 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x669a01d6 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x864d68fd p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xee009f3c p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x1fc13654 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x05451f8d l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x20fe0d08 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x46c90495 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5fdf57a8 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83bf43c3 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x89721372 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8b3ab967 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xddf3bae9 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeec50b2d l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x86f9d2df hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0914e11a br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c7381ca br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b8eeadc br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1cac942f br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d27b6bd br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x43e38965 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x46b0fd34 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x51f88e4d br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61804bae br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6648d5a8 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x70ebb3df br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d3e2be4 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x80a9a87a br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x85c3d180 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x923353cb br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa848d1ea br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa9cec978 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3887e6a br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce634dab br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc0ee229 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe36688cf br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe69595f5 nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x148a2dbb failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x43e8f373 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xbf7849c1 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x092a92fe dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f05276d dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f2f780b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1edc7a92 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x212afc2d dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x238d0994 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a66c8cd dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x356e3759 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45c521b1 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49261800 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d4c9850 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6247ba28 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6be1e233 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e18e583 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e1982c5 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c5e1597 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x882693c7 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89c70063 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8aea5ae1 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8afb3cd3 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x907db044 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1907ae5 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xadd85bb4 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae751e99 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc963b0fe dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf85d6ed dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3c47128 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd47f94cd dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8ff3448 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5bdee31 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3908804 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8ad7347 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x250a9b46 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3133059c dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x445dafa6 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5600859f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x920db66d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc64bec57 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x071fd41c dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ac87bf2 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cab4024 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a0d7ea0 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2c6c16d6 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36770368 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c919517 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52288b68 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x563ae029 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c5952b7 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c8f8a49 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71f1ee2c dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7267b44b dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74845c41 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x754c69a1 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x827bb5ed dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8fe9b86c dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x906a1b7b dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x988b84dd dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x996e1471 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d59ee27 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f156a7e dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa4757815 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa739dcfc dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa89a0955 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7269a94 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xba06c225 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc5c2974 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd2b62daa dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3772abc dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xefba2a30 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0150ccb dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf04bbf6b dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf50407f1 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x81542eb0 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb5a1292e ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcd04e0c1 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdccda812 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x23c75b3a ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xafcc2e2c ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x65dc232d esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x84284d84 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc4b1078d esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3df93502 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4a6ab9e4 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08d14b04 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1835b021 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x85c9b033 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x96ba4fba inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9bf9522d inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xaf87aea4 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbe984803 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb794e45 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfda3ec4c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xd756f682 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06ff246b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x109a9860 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11d8bebc ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e9838d1 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25a2320d ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4114a404 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63834f2c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64112390 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64e6d043 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fb24d27 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa43b244a ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa50682bd ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb854e4da ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb8ba6236 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6d9a8d0 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd406e39d ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf954f57a __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x71801e53 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa079834f ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x3bdaf689 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x46faf812 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5938e6d2 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x04465829 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0d55b891 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x12856f2e nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5ca8155c nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x89056c89 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbc718437 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xde843666 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x56513f95 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x038dd0ff nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x19aaaf15 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5965881c nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x31c104c2 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x98811d1f nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4201ae7a tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x77b3b81f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x84c4787f tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x987233c0 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc45ad0f5 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x65eaa066 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x68449107 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa5d0366f udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc190a3a2 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc2394adf udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc861005c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe4857654 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe4c2d855 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc2caa293 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xedb61d81 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfc8d4f2e esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x195a59a4 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9647851d ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc1986140 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4c402929 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x68b4b7e0 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x299d2b6a ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc93e32a2 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf39475ca nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf5fecee9 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x79f7661b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0c3c158b nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2836fd3c nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x436beb25 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4895e899 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x532c6377 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x87d719ea nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbc42560d nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xd1369efc nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1c3be915 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x89b0c934 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xcc810161 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x30518ff9 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb4d4c811 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b32db8f l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0deab0bb l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2320ffbb l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3f532b4d l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53c27704 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5aae81ce l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67ce772e l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6936cc49 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76ee9e23 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77af5a57 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7aadd86e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7befae39 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8952c42a l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d62250e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa338309e l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4cb2af1 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3c4e830 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3843fac l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7322996 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe9c5a0f1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc814f07 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x433bab0d l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5da07510 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x145f0ba5 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1ffcccf8 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2715a6aa ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3858fec4 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ab4d420 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45654c17 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x498d1489 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4dd12ce1 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a928653 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x669816a7 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ba1db76 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f8ff553 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x815aa162 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xacfe43b9 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb94fa71f ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc163f8b0 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcadea3a0 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdc8d5509 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf498d5d7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd0cb0bb wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1e74c168 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x26c96937 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2e349e6d nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3f999e47 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x50ab9c31 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ab2310f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x24c775db ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x27be1b2d ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35bb6f14 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x429c1a60 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43a3ef6f ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50e73b62 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ba0c1ec ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6a4541dc ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x896c5663 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d1696cf ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae1a56f6 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6f62a0c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xccb99a51 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd07d80c8 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd16ed943 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe46d952b ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1776926 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf614a00a ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x07141cf0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3d2a5c65 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8baa07e5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf771b857 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2377a4aa nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6cbdf1d0 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xab23a525 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf249a66e nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfe42e6d5 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a454fca nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eb598c5 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fa3da9e nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x121db75b nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x135db5f8 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1562f162 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16146998 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17d2df3e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1811a891 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1aa7c381 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1afde1ca nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20fb545f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22533e6a nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25098a07 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x272bfb80 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a2dead0 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c30df1a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d121989 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x303ddf0d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x305a6ec7 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36b1fc58 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x376f8fce nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ad64e76 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b9c90c3 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bf8b43d nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d58fb3f nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4083de0f nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4778c674 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ca7e988 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x532fae9b nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x536dc848 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55591168 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58f110d0 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6098e8cd nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6528600a nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6561228e nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67cdb295 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69a91f3b nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d859c4b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f621b2a nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f8c5b22 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71bebfc1 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x750810db nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7614a24f nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76f1d706 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b153c19 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82ff0a01 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85aa2ef4 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x878430f6 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b5eef4 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bada307 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8df2b782 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ff8bb4c __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9470db24 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ad3eae1 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f84b7e4 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa12ec503 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1ba9ff1 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaca4a0c0 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadd61712 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae81d575 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7d17f96 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3a002d nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdcf7334 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc25c659b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4018f5d nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc461527a nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc61eb24f nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc636b9d0 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2a94050 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4309c14 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6314d50 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb2a32b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd1b2b88 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe68ed6ae nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6e6217c nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefdc069f nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf039466e nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3cb35d5 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe4bf85d nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x83b5ddff nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x5220ae6a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1a70052d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0d6f767f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ea1aac6 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x223e7915 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x829d9c2a set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaa53c682 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaefe637d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb2f71488 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcf03aa6e set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd255aa7 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf77e1cb3 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2c5c520a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x22d6685a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2dd3f4dc nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4b6b74ba nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc8cb9dba nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0082b397 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0d97cdad ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x46758e15 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4bb572fa ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7a4e0ed8 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xba3890da ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8410dfd ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc9168b44 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7ce1d840 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3d1858f5 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7818f493 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xfe6c8081 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x00425fad nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x17bc03f7 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ed9a754 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2eecf041 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3232ff8b nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x55ac26a4 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x594e0a88 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5cc3fb39 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9094a4c9 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9f067642 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb640c4da nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbb7b4167 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc1b29370 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc52fac02 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd343d34e flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe5913ede flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfa7c743e nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03b7b10b nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x225cc590 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2afd60ed nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bf34b4e nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3da12686 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x525882d8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f24c73e nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x78468445 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d5c6d12 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9d13915a nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ff317cf nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb22d793b nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb758d03b nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbe9806fe nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xedf5ba22 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2283cdf nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x06378d56 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x24b2ce79 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4543dc5c ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4727b0dc nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x824d2d97 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8d3f8799 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa49b0b56 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xac12b664 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe3096e66 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe40e3fd2 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe58b36dc nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0096e192 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e4c9f2b nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ef499b5 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16b490a5 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x181901f7 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26f08f4c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a50ac81 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d4c2f03 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ad3cb98 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48e78fee nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aea0694 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x559f8225 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5653edd0 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ca15a0c nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63287db5 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x662b1d05 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c06b106 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72684370 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x792ebc70 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x870e75e5 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8bf9ac42 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f7d7b60 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2965b79 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa4e52c8 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1389bff nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb356549f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb672634a nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb756a108 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2b69b9f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc73fa24c nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc97c9993 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd39b7fbd nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdba59499 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb5c1fa6 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf01fa178 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7738411 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa7eac4c nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x112b9ec8 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x12d0ed00 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x13d20a3f nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x59b774b5 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d81cf94 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x84db3126 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8803f375 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x20601b38 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x48ccbfc5 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5679f385 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4cbb2b4c nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5c11ff5c nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x46ce3b23 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8b113477 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9ab8ba16 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa38ef095 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0763837a nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4b51575b nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x91e705b6 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0db638f3 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0ee916be xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11144f49 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22a42e47 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33a37a51 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47fd9cac xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49f7b50e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x71eec724 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ad8d1fb xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91f799c6 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99747568 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9fe72cf1 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa09de70d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb29532b4 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc822210b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf39ef851 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb5941c7 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x079b67c6 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3c4dfe91 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x04a8ce7e nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x30902aed nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x468e1bf0 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8e5a3393 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb0d47969 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb5a37ad7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1e6801ab nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x87ec8377 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x01abc491 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2f335e15 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4ecfb2b2 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x52e96e6c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x68120834 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbbbc1013 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x9251da6e psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xa40f8612 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xe52ecc97 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xfcba980d psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5aa35e70 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa1dd1028 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb73b206d qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x121418b7 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x12cfa336 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x176831dc rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x26d667b1 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2a401905 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x58aa9747 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x626d4440 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x64f87011 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6f9367b2 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7f600186 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8892da0e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8a74b547 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x94c1fb43 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x96648d21 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xa83eb259 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaa206a17 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb25ed14d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xb3190332 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xbb36d453 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xbb9702b7 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbf2a464a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc3ae3cb5 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0xcb5e5e52 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd0724c78 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xdb71ccd3 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xefd1936d rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xf8ddb067 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xfee1c8fb rds_conn_destroy +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x15b0d270 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf83e93b7 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xd765a904 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x12aa344a sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1a7b302b sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4a4c7500 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcbc7118c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x01c0ef31 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x04e96648 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x19856d77 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x33a89b88 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x53b9ea61 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x8cb2ac33 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8df75a56 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x92d15c36 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x9b5fe59e smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf7bcd8fe smcd_handle_irq +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x598a7b79 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6ebe6d11 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7c73aa24 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdb13d664 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00b97cc3 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ac051e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075df91f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090a2027 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a21c074 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6a6790 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c13e832 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c6dba6a svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e0571c7 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f090975 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10852234 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1122cc59 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11735ede svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11c90848 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e3c8af xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167928c3 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x172eae3d svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192037b7 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19db11c8 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc17692 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d090db6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f870f1f xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2001baab rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d77066 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21f6653d svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22221748 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a5005c xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c7962e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2394b4c0 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b923cf _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27cf83cd xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2863798d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a698ac xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad3f99b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2baaae0e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d24b507 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3013d877 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30652bee xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3242d6f7 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c61dfe xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34661927 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349efd22 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x380701cb rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x397ffb09 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x399bc38b svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b82e81 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a58d00f svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0ff989 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c713eea svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c730c04 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfa0b82 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec386a6 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41960657 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41bb442f cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42aef44d svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435440c6 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4394b2cc xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ce0a5f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x469ee110 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4802caae rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c9be627 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d2575f9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f3e26c4 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5002916d __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x500a2da7 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513a4b0e bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51908abf rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52233b14 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54d9fa82 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5546a332 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x557fcfca svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56b3736d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6275e5 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfab39b sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c1d286a svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2841d9 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eaf25b7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f117272 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x615596d1 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62670a4e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x633b9c62 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e548d2 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6461d492 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64666ead rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x646c566e svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6575ec7a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667c14eb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66df0e94 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x683324d0 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x684499e5 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68801ff0 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d8b450 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c6fde31 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cd44d15 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3ae855 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f7a377a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70841dcd xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x709a2fc9 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b1ec38 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cbd1e3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ddf12c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x739991cf rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ad99a4 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73bc1c23 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757cbcb2 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76400a77 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77953429 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ff6da1c svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x824279e0 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f03417 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8395b708 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x843e1e56 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86451e7d rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86f0ff1f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8806a293 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x881ebc61 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a56c3dc xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca79689 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb10f20 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa83977 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900460ba rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x904dd7ac rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90739222 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92bcf9ab sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936132af rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94705ceb rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95416c12 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9545303d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d91274 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d233b3 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97372ca6 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a140be8 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1ecbd0 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ae12355 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aedde02 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b41e51b rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b6d17a5 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccb7150 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9db35098 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f06d05f sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f0a5037 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f2d7023 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f7df46f rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa02e3e3e rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa164e226 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1984f28 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b1bdc0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d8aa84 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa294e3f1 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2d497c2 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa34878b9 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f10c14 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f696bb xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6504b3d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa86df9b5 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad9120c0 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae4cd01a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff42fde auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb193a54f svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb255e511 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb35f835b auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a82c35 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb413b829 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52c1351 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb566bbbf sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5a9dccf xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73731f9 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb800bae4 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6863ac write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbebd62b xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc24a162 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd0379fa rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6f4d3c rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdd26208 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbefdd423 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1543a95 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b0305b rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc265cf50 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e66819 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc334b55e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4990695 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc51f507e svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52d6e08 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d86f46 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d89d1e xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc828eda6 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca412461 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcab1e5a6 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5a57e6 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbbfa37e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfa9d925 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfbc88d1 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e0c2c9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d5e3af xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71988c8 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84ed5a0 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f248c7 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd912df3a rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd6e388 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd904afc rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde7a95f6 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef2ea5d svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0ce5096 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d8cab1 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2bec55e svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe312202f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36601e5 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe56b1194 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe596d5cc svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b037bc xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe89f024c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d6daf4 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d9d95b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb8c653 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed2b1256 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda9bf64 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef56e849 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc5a315 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf046c3a0 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1859e7b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf36a3440 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf42c476c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf740cbc6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8871f13 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ee8fba rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f4756f rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf916e6ba unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf96801ff rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdc1bb77 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe392a1d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe434bc0 xdr_shift_buf +EXPORT_SYMBOL_GPL net/tls/tls 0x1f767008 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x26deb181 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x7ae68f42 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xb0b070c7 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x00418640 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0de616f2 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0ebc7270 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19f13ad0 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d309c7e virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24eb978b virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f44e65d virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f9c9f68 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a93eb02 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46af7f80 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a580ae1 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a6c0210 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d0421d0 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59c247ab virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d0e8d82 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5dd5cc38 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x631ed848 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x682c3444 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70d24a3e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x72e59ab2 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x756fc12f virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7748c0e1 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77bba884 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99109676 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99ad39ea virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a306417 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa5364c2 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcdfe1770 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd74f8103 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2a91d4b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3fb31ef virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf757a02b virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7c3ff5d virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd77df6a virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0416f4ad vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x07a77176 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a80ba34 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x247d459f vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27c8e7a9 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x371b1006 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x43e40b05 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53c32775 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x63741988 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x651a9bf1 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73409b95 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x756d8fe4 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7746a896 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7853a487 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa12db7bf vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4992c83 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcfbbea3c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd1ecb1bb vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd24e3273 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd348b1f4 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe92f75e6 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c4ae0bb cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1b03dcee cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x362535ef cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ac442a5 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x64d6e75e cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66880aeb cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x702dd673 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x870427da cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x926d3897 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x93b8a570 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac0f317b cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc4e7c5e cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc77440a0 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc91ed8cc cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd025bdbe cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0de91d3 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x318c0f65 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6d586fba ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8433b0d3 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab5431d2 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x6e0ff423 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xa72d1d96 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x19c81921 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x473c891a amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x510573da amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7492687d amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7bc85046 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e4cef6f amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x951e78a5 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb455fd80 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbbd9d15f amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd62f4ea5 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd9b6ff25 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdf38c8bf amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe60df265 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01a1ae27 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0315e4f8 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0537958e snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06386c86 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06b6328e snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06c379cd snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07828590 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0abb465b snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dd598ea snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f155551 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e55a73 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x124cc48e snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16cdfce3 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1be00ebd snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x228a4d6d snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28538efc snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ac2de06 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ea4900a snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eb48803 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fee3442 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x339bbb18 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x346fa0c0 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36b3fc3a snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c5bad7b snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ce1d7b3 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x423ed42c snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4500143c snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45eba27e snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x481b34b7 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a0823f1 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ce77353 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e2670ed snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ef2638d hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x512a8da5 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54a482fd snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57ba13d4 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59b59e22 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a1ae371 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eabda2f snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e05d251 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x726307ae snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bdcfd98 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bf8b516 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f2c5c70 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8077500e snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82229c1c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x830454fc snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87be8e3c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c8ab5e3 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dced81f snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ecdc9d2 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90102ad7 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93536160 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94792c2f snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96b94829 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa241e355 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3308a6d snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab7e3b2e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac854756 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb3c3174 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc52092f snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0ab28d3 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0c631b8 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5b1dec3 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6ded4ed snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8449642 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8781bd0 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca3f01b5 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1de5aa6 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2831174 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd79de045 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9e06132 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe85883c0 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9f56e71 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecf9392b snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeebff159 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef88b135 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef97c5d7 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0426b43 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf381d324 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4c1329d snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf513b81f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf97c470d snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x47a41e18 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e52f5a5 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a99d25a snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2c4e8329 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x43c58429 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8d6ed1c3 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa8ed63fa snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd2c82e80 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c747f5 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03b87d0c snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07025c7b snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0728b53a snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x074bf9d0 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08ea3e36 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a3358f5 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff4be98 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12fba5f2 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14d82ec9 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x154d953e __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x159e3deb snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1691e40d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x198b0aa7 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21d220d5 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x237dd689 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24160328 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24282f35 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246e4f60 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x267906cb snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab11368 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ac5cc94 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bb742be snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f693068 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30727f1c snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34a701d3 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3559bca6 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x364801b5 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x381b500a snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38582df4 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ea7af9d snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f433d58 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40952762 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41b87a66 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x439a3a56 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46463c55 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47373e68 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47f98ff6 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a7adf69 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51533788 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5248bf19 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53618455 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54df8262 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x557850fb snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55dea4a6 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5999223c snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59cc8b55 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5abb8a19 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c5536e9 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60ba40e2 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62d66df7 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632dfd33 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63732a0d snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63761bfb azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6484c829 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x652dc879 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65aa5af1 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67435c73 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cfc08f4 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eb7f7e8 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71fc1403 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x755f531c snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76cf5e9f snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a97cd58 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e637501 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8406f003 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b4db742 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c1410c1 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb0e190 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98fd776d snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a3becf0 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bf9e589 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd6ec25 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f1c4021 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f8d8d03 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa375b6b3 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3c28a4d snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa552f111 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab800a24 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaba34f8d _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacdf5eea snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad6510f6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae36aae3 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb043b095 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4539027 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7124152 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb917c801 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba8a362b snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaa07b0a snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbcc144c __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcda886a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf5906aa azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfb0d892 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfc2c229 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3598538 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf5f8592 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0b2c9a6 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd376294c snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd58d3a4e snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5d326ca azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5ebcec0 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6ed87fb snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda91d98e snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c5815d snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3ee7b60 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe59bed39 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8c30fd9 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9a3704d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaaa3bd6 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec7274ce snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec97e5c1 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed5ed40a snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef146a6d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef2775ca snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef5cbc61 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef629d5c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0b72e91 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1b62cdc snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6a9f30d snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa0c1940 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc410e1a query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc6ac757 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc9206af snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe4ccb45 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x07ed1818 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e3d99e1 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x170ecfa8 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19074740 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19a11436 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b599811 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6726b189 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6805e104 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a26b9c6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70f18d38 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x719f41f8 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x861a93b3 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x910fa14d snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x922b0058 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2aaf884 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xad999ba8 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb06ffad snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb973fcc snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb72f486 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xecfb1e55 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfdb4cce9 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xe4a52957 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xedbc31be adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x715a07ac adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xd572b4f1 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x140bfaf5 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1bb9ee97 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2b312dde adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4f704cbb adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6c1cfc04 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc437d701 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd0d94b35 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe20986c8 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe3a3b39c adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe561a443 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x507cea63 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x03f0545f arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05f237b1 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0fa52f51 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x11973949 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x125dd249 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x16bfb11e arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x19f9e3e6 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1a831e61 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1bdf508a arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x250abfcc arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a7373f3 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3ced2da2 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3e4d35cc arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x45b5488a arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46c0fb6d arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4845ac2c arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x58cdb6da arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5c123ea2 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5d9d00f6 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x650a470a arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x689fc807 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f0dc84f arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7367126a arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x782e8226 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x802fd003 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x90ad3568 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9643bfef arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x971f1eac arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x983a3e78 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9d27ee32 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa05a64b1 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa1e231e5 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa37fb8b4 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb702b5d0 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbe8f8e93 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc0abc5b0 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc1c4f214 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc6af63c4 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3e35296 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6d5d410 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdc34ec01 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdd02484f arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xde57cc62 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe323ed99 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe66a356b arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xebd610de arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xefda4ac3 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf8dd3e2a arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf9547886 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfd21efb2 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2d45caae cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4fbf1e18 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0d39bd5f cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0eafeb2e cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaa7a2aa8 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb25032a7 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc0d96246 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4023bf35 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5f6123b8 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe16e553a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x52ad8f04 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x6c19d1ec da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8ff711d0 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa2944653 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x482da92b es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xab517d0f es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xc124a595 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0xa09ce547 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x06da3b15 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9a1f28cb max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xad7f5248 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc6c6796a max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x000d9191 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4c5e20eb mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x79c9d08f mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfa44347d mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x1e0ccfa1 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2fefeb7b pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x5386949a pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x56deb83f pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x285f4753 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x87be68dc pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x6effb29d pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x96743b95 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3d583499 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5f245182 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb1aefc78 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe632c466 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7d355b79 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x97b5a8b8 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb8b9e3eb pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe7d49e15 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x554467a3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1466df6f rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x41dad574 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9b06c288 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcca6df0c rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf6a2ea83 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xff718070 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5172f045 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf14497c2 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x595bec10 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x533484f2 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xd7ed9f16 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x425a794d rt5677_spi_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xa8c77592 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xf17750f8 rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1b28655b rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2facfa3e rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x668348be rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x694c3783 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6d7c0f54 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x864bb457 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91079df2 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb3490197 rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcc34b54b rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd38256b6 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf18e12fd rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfeb664d0 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4813c32f sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6dc932f2 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa3a75551 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xba2f753d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xff7d8939 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xdef2da10 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x4a68b328 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3ee8dbf5 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xadbc00bc ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb2a8242a aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x7bfa0936 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe0411c95 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x06dbf8f5 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x0d06215d twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x3816781c twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x3fd30b5f twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x55216e41 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x71321903 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9c4b80f3 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9dd5c5f4 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9e740abf wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd2179f96 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0a51226e wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b12f6b1 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0bb92412 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1820376c wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2270c27f wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x397ba62b wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52012d7e wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5394d1c5 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x60972b4c wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76e59287 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7f721631 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x86a5dc10 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f944351 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9bfe38c0 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d2a4637 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3aaa490 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa559cbd3 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa942cef7 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb4ad0363 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb52e8e4a wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc884abce wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdc3ce368 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea1509f0 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xec443b0e wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6bcaa82 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x09b87a76 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1103a1d4 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1135836b wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x28dfc23f wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x81506e31 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9c53f337 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa5489d87 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaa918eaa wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4291c8cf wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x50961c4c wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7386bebd wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcad60222 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf6d2aecf wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x614ad1f1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x233f1583 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xdfb00599 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xef6a311d fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x70866d5b audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ef0c550 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x221bac22 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x229505a4 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3704099e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c3b22ae asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3d6dd17c asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x41ff8a3f asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x49c272ea asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4fb4644d asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c42dd37 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x621a16bf asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x65f28663 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x88230ec3 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa3b978cd asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5e1bbe2 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbba26829 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xceab1604 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd7f0d0c0 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf90a9fb7 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfd9957eb asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x05e015d2 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0f0d48b6 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x17bc359f mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2f4abb8a mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3266749c mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x39461c32 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x43eee3ef mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x457d5586 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5588b68f mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5f1424ba mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x608a3164 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x62d1dbf3 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x65af254b mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6c652939 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6dd92305 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7dfbcc83 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x88e7984b mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x98cfc22f mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa7f3ce73 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb9d27009 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcf1f2d41 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd433bb97 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd87d2303 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe6ea8a63 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x6302c6e5 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xa5e73eb0 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x071101d6 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x20a95d95 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2df2780e axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7020770b axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x709578cc axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7686a987 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9c42f083 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xad3ffcaf axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf9dc2e6f axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x14468237 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x443d22ba axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x506c837c axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x823cafad axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xde881464 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x466ea9f5 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x120e7fa3 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x60c5b880 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6377d1e3 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x71681b5f meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xaee62b6f meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe089b404 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf5c306d2 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfe7d9ffd meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x036bb792 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2b912849 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3ba4e2c2 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa854e4e0 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xaae1de0a meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe8c54033 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x15172e33 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x8d767f06 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xc1b94d7e q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x1639d697 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x884cf3f3 q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x56418ca6 q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb5368ee9 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x033f8e9a asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0b8dbe62 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x430392ed asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x83c39415 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa1698d6f lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd3a96fcb asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xec174963 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x890c00d7 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x7d744e59 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x0340de96 idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0x5883f5c6 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0a886107 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x357eb7ef snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5eb96669 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x74bf7ba3 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf95cb6a6 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x391dcee7 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xf7095091 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2234106b tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x309f4427 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x38a15d5f tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x685331c4 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb47e00f6 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd2c0e158 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdcc29629 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf61d0323 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x386bbc30 tegra30_ahub_allocate_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6060e6f9 tegra30_ahub_allocate_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x6e19e13e omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0x751641cc omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x66ecb994 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xd7299e42 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x6526bc7d udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x00b70b68 uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x4e38acfd uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x788ee322 uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xa2a81b81 uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc7f5a44c uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xd73579b2 uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xdb2513f6 uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x033545fa line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1499d371 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2cbcdf29 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2d1bf726 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x35519a76 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47ea48e1 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5ad3ead3 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5dddff67 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c59cf9a line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x804749c8 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8f325334 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x996417c0 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xba6ac2b7 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe8fd9197 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf99b326a line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfdb32a7b line6_send_raw_message +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0018cf7a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0026f7cf ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x0027b274 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x00596d9a hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006c7a13 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x00745951 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x007958b0 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x00829bd5 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x008a5a18 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x009a1036 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x009c59aa gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x009f6bc7 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x00ab10b1 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x00ae4226 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00b23b44 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x00b451c5 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x00b886e0 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x00bd35c7 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x00d09517 usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00ea19e6 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x0113a564 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x011c98ef iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x011db82d dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x012df7d8 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x012f788e devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x013261cf pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x013a079e __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x015572b8 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x016235d3 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x017bff51 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x0180f092 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0182de8c ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01899711 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x01937494 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x01ad555b dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x01af4553 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x01b3e025 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x01bbe6a7 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c85abe crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01cb1482 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x01cdce76 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x01d4849c serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x01d5fac5 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e903ee tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x01ef9a9f blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x01f02971 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x01fd3baa trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02110d6b edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x021a7f72 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x022cd82a debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x022f02ea kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x0244cbc0 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0247e32c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x024b45d8 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x025b6128 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x025e826a devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x027267f7 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x027b83c2 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x02809267 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0292f24d inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x02a01590 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x02b3a43c pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x02bec3cc snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x02c18979 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x02ccb418 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x02cfe225 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x02d55eb7 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x02e93e37 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02edfc5b of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x02fcafdb sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x02fd8ec2 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x0301458c max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x03124112 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031750a9 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x031cb2ab sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x0320e02b ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0359d20c ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x035e043b inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0396fbe7 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x03a21308 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x03ab350e handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03cdc6e2 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x03d02845 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x03ee030f usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x03f5761a __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x040ad934 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x042b2f0d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x042ea6c6 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x04320041 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x04340393 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x0439c748 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x0441223f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x04564973 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x045f76ee irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04749711 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x0478ca31 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x047af0d4 __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048bed75 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x04964772 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x04a0786c regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x04a50aa9 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x04ab4da8 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cda99d pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x04d19a50 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x04d1cf0d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x04d7c64e snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f44d0d devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0514eb82 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0517375a tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x051778b9 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x051cd72b of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x05207924 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x05322a6b mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x053ff6c8 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0552cf8e nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x056c6627 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x0572725b xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0572e738 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x0577bd00 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0584fbc5 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05b1e3a3 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x05befff1 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x05c37639 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05d8a9be ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x05e5c6cc platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x05f7a3ee usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x05fb6b24 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x05fc4bf0 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x05fe4cf4 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x05fe6549 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x05fff01b genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x060e8488 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x061426cf crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0616a4cb pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x061702d8 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062f36a9 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x062fcca9 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x06450e95 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06588a22 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0671e65d snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0680d136 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x068342a8 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x06ac2732 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x06ad61db __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06cbd6b8 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x06d601ff adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x06dba9a6 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x06e136db devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06fd4e34 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x07015a6e fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x070a9db9 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x071b14d3 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0727aa6d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0732ce1a sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x073ee346 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0750e7f9 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x07666943 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x0768f9b4 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x07a59eb4 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x07a87f21 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07b1012a of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52401 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b5e0d2 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d3b7ab of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x07edc19a spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x08001a50 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x0806b244 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x080e5149 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x080e732c dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x0811fbc6 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081e1f83 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x08243091 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x08374add fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x083990e8 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x083ee956 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x0855131b gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x08597af2 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0860cceb pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0868154b wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x08684a10 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0874f205 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x087c9ce4 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0899a34a sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x089f3764 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x08a4169e mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x08af89b2 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x08bb5759 component_add +EXPORT_SYMBOL_GPL vmlinux 0x08bfcf83 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x08ce873b snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x08d7edf5 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x08f3697b pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x090dc7ea cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x090ddd0a pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092e059b class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x09375c90 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x093b8608 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x093d3cc9 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x093f3737 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x093fdf01 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x094b2692 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x094ed2a8 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x0952cc42 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x09921d41 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x099bea80 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x099f482f pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x09a8f55e fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x09b397b5 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bddb48 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x09c4615e sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e76784 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a0a368c sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x0a3442e9 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x0a428959 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x0a457aa2 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x0a508ac7 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x0a53cea6 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a83e476 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x0a844f25 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x0a8a2413 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0a99aa20 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x0a9b5685 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x0aaa58dc of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x0ab1a390 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x0aca3aff wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x0ad18dc5 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0ae013a0 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x0aee2816 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x0af01a9d __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x0b06652e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0b06b530 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b116455 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2c0309 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x0b454376 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0b5b73e4 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0b7b7d42 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x0b817d53 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x0b93284d null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bc1ec1e __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0bd46189 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0bd4e74f pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0be0cc13 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x0beff2b9 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0bf03464 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c068ba8 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x0c0874bd crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0c0d5b82 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0c18b29a regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c1ae33e of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0c215376 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0c26bbb6 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c42fa60 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0c6c436f fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x0c6ed0dd phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x0c6ee774 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x0c71f445 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x0c856b5a trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c899cd2 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0c9490b6 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c9744ed irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x0ca2a8df pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x0caacc80 musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x0cab7292 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x0cb4e5ae of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x0cbc4d53 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x0cbf1eda icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0cc98e8b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x0ccfcb7f regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0cefc70c mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x0cfa7e78 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x0cfedc69 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x0d189529 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0d2336fd clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0d255e5b irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x0d31f860 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0d37687f ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x0d381bfb relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x0d3afea1 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d548163 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0d673dc6 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x0d884712 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d8c73c5 __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x0d96c243 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x0da5bd40 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x0daa318f fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x0db654ad sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dd54a68 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de39f4a device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0de3b33c snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x0e0e385d snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x0e10a738 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e21f186 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e27bce0 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0e2dbd05 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x0e3401a4 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0e5ad3a2 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e6cbef6 cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e9a2761 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x0ea87513 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ea9deaa rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x0eb35c1c snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x0eb4d81a __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x0eb9bef2 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x0ebc282b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x0ecd69dd sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x0ee7be55 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0ef2ea41 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x0ef8fd83 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x0f1336d5 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f22726e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x0f2334ac set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f2e1511 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f2e6ff3 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f301dad device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f4becde uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x0f4e2f7b crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x0f4ec13e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x0f6220e8 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x0f6ca9ab mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f889198 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x0f94cb97 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x0fa7f944 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x0fcffbe3 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0fd13aaa sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdf1aaa regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x0fe082dc pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x0fe6cc2d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x1006ea92 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x100c4864 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1018ecfa rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x10226fd2 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x1044ee68 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x104e2f22 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x1055e3ea mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x105ade0a dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x10724a5c pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1098bbeb syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x10a60bf1 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x10a84564 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x10a8630e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x10ac2212 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x10ad2c25 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x10c0c96b relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x10c69ac3 nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x10ca04ce wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x10df0aec spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f339d5 snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x10f53bdf cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL vmlinux 0x1116045d fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x11170c3d bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x1129688b md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x1133993d vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x11373b9a nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x113c5e3c __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x114595b7 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x11482071 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x115b69e9 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x11767d2b devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x117f484c kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x118adac2 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x119efca0 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a81d50 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x11af208a cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x11d434cc cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11da6c2c eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e0944f devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x11e495be rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x11f405a1 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x120b2e3d msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x1216261a pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x1219c62c fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x121ce896 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1227211e power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1227a95e unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x122e11f2 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1240f8d7 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x1241fee0 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x12503988 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126ab8e2 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1272eb03 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x12848444 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x128d06b2 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129386f4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x12ad0d68 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x12b625e6 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x12c54af2 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x12c9b774 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x12db1f56 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x1304c990 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x13095e79 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131ac1d0 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132b922b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1340dafe irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x134ed1bb pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x135d28b7 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x138016d5 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1385d2f7 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13903ecf usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x13a19bc5 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x13bbe6be sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x13bf025c regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x13c10aec dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x13c37a03 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13c9490f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13d2979a nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x13d712fc dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f14e2b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x13f1ea67 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x13f3e96b wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x13fa9b70 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x13ff024f led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x14005e45 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1408fe01 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x14191681 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x141a5382 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1423bb19 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x14558687 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x145bda3d serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x14637c5f spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x147737e6 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1487dbcf pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14bc1f0e blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d1833b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x14d267a9 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x14d397f0 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x14d82e09 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x14d85e1c spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x14dcb7e5 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x14eee6d7 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x14f516a6 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x150220a0 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x152aa064 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x152d087d pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x1530b4c4 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154b2584 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x154fad07 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155ff830 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x156eb35f dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x158b03c9 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x15b09efb of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x15b165be iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x15efb23a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x15fcc8b6 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1601136e sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x160ad28a of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x161d7fad phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x1632b40e of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x1653faeb gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x16562665 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x165c5aae crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x165f0203 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1660a5d1 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1684b286 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x16d32dae serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16db1763 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16de1b6f fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x16e6ba1c genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x16f3f870 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x17064ca7 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x170ba05f usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x170c14c4 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171b0ee0 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x171db032 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x173b5600 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x1742163f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x1747774f metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174a8357 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x174ba310 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1751a583 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x1776c051 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x17795f13 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177f46e5 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x1780c8c7 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1790f2ca iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x17a2bdf2 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x17b20bd7 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x17b50515 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x17c834df ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x17d381b1 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x17da2678 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x17e7b7e9 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x17fd2114 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x17fff6a6 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x180b5e2b rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x18122288 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x18258dcc ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x182b2b03 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x182b7a36 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x184c7f9f gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1879916c bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1891e7b4 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1895c72c ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x18ba3b33 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x18da3b5a dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x18de8b65 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ec9b3a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x18f67657 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fd8564 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x191e7d1e dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x19261a63 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x19359304 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x1943bb9c xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x1957ca62 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x195992e3 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1959df13 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x195b40b2 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x19641924 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x1997e2d9 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x199e6cd7 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x19a1819f snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c0106b devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ebd70b fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x19ee6e99 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x19f0d0cb iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x19fdc409 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a0f5c1a kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a2006a3 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1a211fdd wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a3787ee hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a50e2e4 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1a51c36c pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x1a574d59 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1a57da2f pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a5d85b2 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a7cdb49 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1a85fdb8 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x1a9884ff of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1aade1e5 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1ab17daa snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0x1ab6fe9f bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1ac03b22 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x1ac90940 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x1acf3586 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x1ae08711 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x1ae9662c inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af5f1db sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x1b23851b ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x1b2ebac5 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x1b350ebd led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1b363ea1 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x1b3e2721 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b550a48 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x1b5966de perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1b5a58fd vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x1b5f37cf bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1b613b83 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1b6ab07d spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x1b6f0b56 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1b762035 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1b87b815 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b88dbec vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b993821 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1ba1fc5d ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x1ba549e2 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc15759 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcec28b of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1bd38abc subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x1bd5e8d9 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x1bf02bbf bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c291c88 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1c3d2b3d sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x1c4a133f blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x1c4a1cbd ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x1c548636 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c59a3b9 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5f49c4 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c667fde pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x1c7be59c __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x1c7f7569 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88d5fd bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x1c8dcc1c snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0x1c90720d stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1c9b3bb7 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x1ca7bfae genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1cadc411 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x1cb56c79 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc30a7d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x1ccc6d45 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x1cd4dca3 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x1ce8a1c3 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1cf03995 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x1cf4578a dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d014b43 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1d18b274 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x1d1a154c vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x1d2e5773 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x1d42bfbd tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1d48b514 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d4dc6a8 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x1d4e84a2 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x1d5245c4 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1d5673ab blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d7297a6 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f8d39 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x1d90cee2 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x1d928e42 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x1de73115 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x1deeb1a8 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x1df16d55 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1df3d5f8 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x1df6c68d sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e1602fb iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x1e38da5c mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x1e42151d ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e551c9c __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x1e58014d of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x1e70d7ea crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1e71f54f sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e82b9b2 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x1e84d7b7 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec67dc3 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1ecd6f7c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x1ee01d1b nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1eea5b55 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x1ef32b30 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x1ef3bdc2 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x1ef55834 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f15daa5 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1f1b84d2 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3d9258 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4bbbf4 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1f54d8c1 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5b3730 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x1f6f0e7c ping_close +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7a358e deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x1f7f8b9a crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8b4904 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x1f8c875f irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x1f975718 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb8c129 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x1fc642b3 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fd12dcb acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x1fd854cd kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x1fdd5975 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff9a92a snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x1ffe6e74 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2015b8b9 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x201aabe6 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x202c2401 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2041a5d8 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x2067c937 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x20805779 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208ab825 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x20a2ecc6 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x20a6ba9f dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x20ab19c6 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x20ab6897 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x20b2d3c3 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x20dbeef4 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x20ddab85 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x20e1c8c7 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x2103043c spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2103ed32 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x21130098 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x211ca4a4 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x211e6a94 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2128a7c3 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x213225f7 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x2154dfa3 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x21627c4c serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x21880acb irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x21897412 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x219b3e1a devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x219b7c65 musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x21a1b2f6 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cbe264 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d2ffdb crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dd4d05 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x21e73d6f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x21f33649 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x21f8de9f musb_set_peripheral +EXPORT_SYMBOL_GPL vmlinux 0x21f99c96 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x222e5ea5 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2234b64b __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x223e366c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x224382d5 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x224c9fe7 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x226ea530 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x226ee300 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x227b678b da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x227c2292 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x228ae3c1 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2298c632 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x22cacec3 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x22d7d460 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22daeadd pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x22dd05f2 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x22e0d378 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x22f304d9 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2301ac7e usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x23051a20 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x2311b862 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x2317a34a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x232741ee gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x23277433 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234eca9e sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x236e8b6e __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2372720c rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a5fdf1 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x23c4555a blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x23c62bc8 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x23e6cc65 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x23f72726 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x23ffd3bc key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x241236ce nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x2412844c crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x241aba51 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24316c15 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x243731d8 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x24429f11 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x24554b6b usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x245dc1f1 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x2460a6bc validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x2467fa0b ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x247dc489 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x2495ee0c kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24aaa5e0 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x24aae589 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bc3b43 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x24bcf94b edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x24c2ce45 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f003fd akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x250c978b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x2528fd34 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x252eb2dc dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x2535d407 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x254698a2 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x254991ca fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x2579237e max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x257c77c3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x257d0f92 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x2586d430 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259f318e trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x25a7c6d8 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x25b8151a nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x25b8e9ac nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25be47fb devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x25c68828 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x25c92d0a ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x25cfd5ce da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x25e8e1f7 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x25ec0904 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x25f18e25 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x25f73035 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x260d9e43 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x262391a8 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x2634e4d7 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x26352340 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x2650e0cc dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265613c7 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2668802e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266ab481 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x26711299 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x267b9934 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26821120 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x268ed0d2 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x269a2796 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x269a549f fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x26a9942a crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b138bd devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x26b588e0 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x26b5c07f skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x26b73ece dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d7c67b fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x26ebddf8 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ee9c3e nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x26f7553e sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x27083605 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x27086489 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x270c9355 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x270ed6d6 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x2716211a dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27284a37 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x2728b6e3 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x2728c22b regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x2737aa10 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x273f5d16 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2744a2b9 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x274d2182 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x276f84f9 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x2770dde1 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2797697e usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x27978fb7 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x2797acad devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x279d5c39 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x27bd3247 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x27bf5873 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x27c4f430 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x27d3052b irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x27d3ce22 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x27d5c239 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x27da8ad6 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x27de73e1 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x27ee2cfa pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280d5f44 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282e9b20 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x283ffe9f imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x2856c446 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2863fe7d tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2868c258 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2881e777 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28927c39 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x2893c311 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x28a7beef sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28c4d02e wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28cb8e83 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x28e79351 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x28f48f46 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x2903dd89 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295bd275 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0x296bfbe3 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x29757d13 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x297cfc0b devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x2981f623 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2982b110 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x2995fa05 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x299f9024 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x29b1817e bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x29b390a6 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x29ce69c3 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29e2b8cc tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x29e320b4 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a082425 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x2a15f47f mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x2a1cefc1 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2a1ed663 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x2a22d337 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a3f238d ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x2a493947 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x2a586ef6 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a72f367 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a832260 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x2a86b7a5 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a8935ce usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2ab0d5e3 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2ab44d17 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x2abb5bc3 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x2ac3fe14 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x2aca030b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2aeb185f __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x2b000d09 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x2b0e6b99 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b17af88 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2b236886 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2b237d4b blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x2b276cf6 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x2b2da222 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b30ca2a bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x2b3968d0 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b50aa7c pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b7041f6 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x2b790458 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2b8b0540 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2b92186f crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b96b2d6 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2bbf505c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2bc42a5b sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x2bc63c2c dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x2bc7773b pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x2bcc7f6a skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2bd24d32 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x2bd8e6ab blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2bf66535 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x2c0fb7f6 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x2c155f9a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c1d0b2a devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2c205dce fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2b097b soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5177 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c394575 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x2c3b0cb9 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x2c46dc03 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8c8881 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c8d4d63 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c91388f rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2c92206a sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2c958386 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cebb4eb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2cf33307 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x2d101271 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2d168fc2 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1e6517 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2d2cb332 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d51caf6 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x2d544405 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6e7a3e tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2d72c225 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x2d7e8d22 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2d831456 usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x2d85374e sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2d930ee1 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2da11ce5 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2da3678d of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dc136e9 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e12c473 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2e20eb20 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e34f6db irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2e3eaba0 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e4fbfd1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2e599745 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e610b37 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e694f59 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x2e7ead21 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x2eaef653 device_del +EXPORT_SYMBOL_GPL vmlinux 0x2eaf240a snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x2eb2d4c2 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2eb892ca proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec22b54 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x2eedd3da genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2ef74ac5 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x2ef782d1 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2ef8e1d5 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2effd08a blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2f07ddde usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f3c5e8f sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x2f452655 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2f48fffa mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2f56f57b tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x2f577903 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2f58c86f synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x2f58eb94 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f6f1205 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2f77313c snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x2f7d822f iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x2f7e3e79 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x2f81fd4c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x2f99ff92 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2fa12b27 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x2fa41ffa __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x2fa44354 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fa964d4 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2faec717 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x2fc0f09c dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd8574f sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x2fe0fd7b virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2fe9ff80 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x2fed0450 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x2fed191b switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x2ff5433a bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2ffdb279 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x30014b52 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x302b6c0c devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x302cd7f7 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x303bf18e devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x304577ed crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x30516a87 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x305bb8e1 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x305f61f7 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x306b6d7a kill_device +EXPORT_SYMBOL_GPL vmlinux 0x307ceaa1 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x308524f4 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x30871a40 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x3087f51d otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x3094a9c2 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x309b5a6f ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x309fadb1 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30bd52b0 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x30d14934 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x30ebbbf2 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x30ee47a7 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x30f4c1e0 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x310053ee dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3105a8af noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x311a6086 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x31459782 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x31471ae0 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x314943d1 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x3149a080 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x315da22e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x316b72a1 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x316ffce1 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x317c6fd9 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x31810d55 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3181a9db ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cef04c sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x31d497e8 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x31e1d6f2 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x31f9e94a of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x32149d60 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x323b5d2a phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x323c0115 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x3245150c sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x3245aeb8 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x3279c1ec cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x32889452 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x3291da8c usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x3292dbba thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b5d2e3 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x32b73b7f rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e4ea4f snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x32ed3c76 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x32f8f6e7 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x32fb35bf sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x33189741 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x33204cae ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x333097da nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3344c383 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x3344cf57 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x334edbef of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x334ffe6f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x337468b8 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x33823c47 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x33aee9d3 input_class +EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x33b9b710 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x33ba6212 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33dd5bb8 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33ee04d5 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33fcb8c0 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x342f0a60 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x343ead6d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x344057f6 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x34422c58 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344501e5 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x344cb42a wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345a5b8c __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x345e1620 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x3461e4e6 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x346f0edc rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x349b9be0 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x34a23a21 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34abf9c0 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b6ce91 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x34c0a375 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x34d870a6 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x34ee9f8f devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x34f3c695 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x34fb3aa4 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x350ef036 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3512fa29 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x3526f3dc snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353586db crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x354382db sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x354477f9 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x35496f97 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x356f5b76 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x357c97c8 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x358c97e3 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35927306 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x35935f60 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x35a5bab4 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x35ac7e5b nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x35b26e9c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x35b938c0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x35bd75b3 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x35c32c64 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x35c761fa devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x35d76ad5 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x35ec8e4d ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x35fb22eb task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x35fc4484 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x3601061b hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36163cb9 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x361917d2 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x36212dfd espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362a4534 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x3638ef65 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x364f17fe pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365eee1d rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x3660b690 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x366690cd devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x3667f34b spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x366de1d2 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x366ed274 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x368505f0 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x368cb4a0 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a1334a snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x36b19ca5 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x36d48c50 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x36d6eb53 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x36dbb03a __class_register +EXPORT_SYMBOL_GPL vmlinux 0x36e2c181 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36e92adc i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x36f14ede mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x36f56008 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x37067965 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x37356d03 nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3737b559 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x373ad036 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3747c8a2 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x374c6159 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x376de201 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377c5b5f mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x37818b7f snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x378465ca meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x37969309 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x37a0bb67 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x37ad0b8d tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x37b840f6 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37bd1432 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x37cfefa5 led_put +EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37eb3113 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x37fe669e mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x38037c0c page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x38240f68 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38409f4a mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x38472905 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x38524c3d sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x38695664 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x386e0528 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3874b644 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x387c4feb regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x3881f30e trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x38bbc4dc debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38d4d91a alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38fac7d0 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x38fd7ea9 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x39146d59 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x391d279e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x391f1f84 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x392aecbc devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x392d8e39 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x393a733e vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x39434989 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x394d5234 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x394e736f extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x3977ae92 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x397b8d93 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3983f44b gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x398e4ab6 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa076c pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x39aa0e9a snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39ba1670 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x39bdcdc1 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x39bf04d9 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x39bf07ac device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c63774 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x39c7698e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x39cc2306 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x39f06346 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x3a08a6b8 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x3a0e847d pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3a1d9cdb fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x3a2cdb8f regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x3a37bf50 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x3a3f9cf7 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x3a4c1968 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a7abc56 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x3a7fb029 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3a9897a0 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa33f3b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x3aa71cf5 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x3ab6eda7 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3aef8cfe scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x3aeffada phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3b0549e8 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b0b182b serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x3b0c2b58 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3b2746be usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x3b3c0603 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b471e4a usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5799a1 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x3b6d5d11 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x3b7ced00 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x3b7d41a3 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x3b80ab04 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3b8fb510 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x3bb8ac37 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x3bcc82cc spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3bd71e34 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdeac04 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1ca33b pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c37ff38 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c3eec8e usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c3f39a6 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x3c59150e thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c608377 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6b6cf1 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c86b094 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x3c8f21ff sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x3caa65d2 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x3cb49f4a snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x3cbb1b51 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x3ccb959e md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd6ac04 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3cd71f4d nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x3ce07fa4 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cf3b99e fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x3cf79a08 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cfcb948 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x3d0dc59d get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d331221 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d39761a devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3d4c539b amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x3d4d5633 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x3d4ff9dc ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d516a83 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x3d592695 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x3d608a56 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x3d751b70 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x3d7a82cb virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x3d844ba1 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d96ef49 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da231ed snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x3da61ee9 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3db4efae dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x3dd56f1b of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3de1e270 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3deaed49 musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x3dec723f bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x3e1cb6c2 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x3e204b18 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x3e2382ca usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x3e243997 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x3e285bf5 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e42ccea thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x3e46b785 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x3e4a9b1f virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e646e66 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7a2217 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x3eb109be snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x3ec073b8 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ec9ac88 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ed513fa rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x3ed81b73 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3ee7212e bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef0e4b9 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ef9eea1 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f0270be crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f1093e4 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3f1fad06 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f2816a1 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0x3f31d7a3 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f52a89d iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3f5c4c56 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x3f634414 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x3f7c75b8 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f8c427a iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x3f933d3a tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x3f99c50e blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3fafb40b pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3fb6255c power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x3fc97212 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x3fd27f99 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fecfda7 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x3ff54bc1 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40188d4e ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x402adf8f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4059b77f free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a5816 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40707b66 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x40711d55 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40768e6a crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x407a1a82 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x407b6dc2 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x408857c7 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x409845a1 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409a6ddb spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x40a0ee51 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x40b7cc09 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x40bbd3e1 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40c59d22 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x40cf6c86 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x40d329fa inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x40eaf7e6 md_run +EXPORT_SYMBOL_GPL vmlinux 0x40ebf5de fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x40efec0d blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41046cff vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x41159c86 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x41166685 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x411ac090 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x4124fbeb irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4179644f fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x417d7dd7 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41885d3f devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b18886 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x41b826b9 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41be39cc gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41c841db br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x41cb7030 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x41d713af qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x41d840a7 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x41e626d6 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fdcac6 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x41fe744d __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x41fffc4c vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4263c817 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x426a1784 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x4271a817 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x42736ecf inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x42770266 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x427c220c yield_to +EXPORT_SYMBOL_GPL vmlinux 0x428071e7 device_create +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4291ff17 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x429221ff ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x429c5c7d devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x429e70ae of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x42a090ad tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x42b6c92f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x42d600f7 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x42dfccf8 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e4b329 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x42e7a297 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430c388f pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x430d6253 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4314b73a usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x4323d470 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x43263596 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x43378040 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4358b62b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4361a818 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43723aad led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43818516 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x43a3c3d6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x43a9309a devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43aaf5b8 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x43b21194 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43bbee9f sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x43dc03a6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x43dc83f2 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x43dd6fae pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fe0fc8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x43ffa9a7 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x4401110c sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4403e4cf regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x440e0f5c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x442d8630 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4435936c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4437f63f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4439982f ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x44445b5d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445447b2 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x446a8a8b __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x4476c02a crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x447d9445 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4485bccc power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4495a747 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x44a03a5c dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44a530b4 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x44afc248 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cba58a pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44fa6fbb snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x44fc6a30 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x44fd7216 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450957ca devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x450af94e fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x4511f189 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x451e1497 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x4521c3f6 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x45222aae kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x452ffb94 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x45438d8b usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x454a4e51 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455c7dcd sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x455f2754 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45682d4b device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x456d7312 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45770b7a gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x45833bde software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x45b27843 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x45d84e42 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x45e05a99 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x45ea4ac9 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x4600621f class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460b245a rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x46163d1f subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4673481e addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x46803fa8 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4697441c usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4697a303 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x46a76b1b pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x46af0162 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x46b54196 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46cb6f95 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x46d09f47 nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x46eceb95 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x46ef6cbc devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x46f3be77 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47022199 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x47060a12 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x470a6bf4 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4720d1d0 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x4734e9aa serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x474b5804 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x475e3268 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476de83c usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x476fa888 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4777608a mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x477d5ba0 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x4783f5f3 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x479db328 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47baaa52 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x47c1c113 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x47c43026 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e70112 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x47fe483b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x480184bd mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48054de8 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48284bdb badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x483c461d device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x485670d9 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x485b4515 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x48630e0d ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x4881cb4c sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x4889463d dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a761d0 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c69b47 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x48d26c1f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x48d3e98d device_add +EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48eedb54 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x48f4cb66 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x490a4dec devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4910da0e of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x49113e14 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4918825e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x491fbab4 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4948ab8b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x49549748 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4957954b tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x49582cab disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x495e60de nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49642ed0 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x49794bcd serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x4980a8a6 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x498a271f scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4994684e devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x499fdccc exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d32f93 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x49e72976 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f57019 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x49f5c82d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4a029eba debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x4a02fe1e dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x4a0365b6 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4a04282c mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4a17df81 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2d5378 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4a3961b7 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x4a4a0e41 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x4a712fc3 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a739e3d __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4a8ce024 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4a9eb7cc i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x4a9fa877 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x4aa07158 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ab1ff96 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4abaaf0a __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x4ac6b0ad ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x4ad0b4d0 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x4ad39562 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x4ad6b6e6 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x4ad88147 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x4ae87bae devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4af2c0d1 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4b07d042 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x4b0caf08 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4b1d786d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4b2fa245 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x4b3872fb dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5214c3 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b63a93b bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b75f158 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4b76d0b1 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x4b84f1eb usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x4b8b16e5 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x4bac6426 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc428c0 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4bc4e60f ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4bcc34cd crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x4be599d2 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x4bf409e9 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x4c11fddf iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4c1d4820 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x4c343aa5 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4c3a98c6 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c559064 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4c65df50 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x4c76e70f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c896a9a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4c8b0bec securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4c8efd87 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x4ca39a5b crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4cadefb7 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cbb7144 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cf49713 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x4cf5c71f snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0042c7 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4d26402b phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x4d26c49a kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d457bb8 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x4d4ab8e6 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d692bc5 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x4d6afa58 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d700276 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d862a36 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x4da79766 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db16942 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4dbf8652 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4de87458 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x4dec59d3 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x4ded3050 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4df2b5b8 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x4df6d3a7 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e09f06f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e263fdd of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4e411ffe dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4e4246dc dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x4e56e29d snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x4e58fc2b ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x4e59bd0a blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x4e63c316 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x4e6d34ad pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4e6d7d5d dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x4e6ee270 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4e770831 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eaeb30a irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4eb9df9b devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ecd641e scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x4ecdeb29 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x4ed2a911 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4ed91248 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x4edba86a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x4ef0ddfb virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efc2d65 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f004eda blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x4f0a4564 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f4188b5 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f425226 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x4f438e3e synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x4f4d7fe3 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x4f61ca1d platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x4f62ce46 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7dc22a regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f7fe0ba ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x4f9470a3 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4faa37c7 sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4fc5ab7a serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe38c02 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4fec9982 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x5014f49e ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x501523c2 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x502412da fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x5064ccd4 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x50690666 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x507b26c0 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5081d731 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5086c2d9 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a48627 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x50a69816 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c49394 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50dcfdb6 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ef452e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510efa05 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x51120aa3 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x51189a48 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x51197dee devres_get +EXPORT_SYMBOL_GPL vmlinux 0x51203121 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513b5b80 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x5145c0fc devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5155fbae xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x516d2692 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x51737ae9 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x5176936c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x518ca567 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x5191f111 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x5193d166 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x5194105c pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x5199a9be snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x51a0be6c edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51ab6309 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x51aca3f8 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x51b3e023 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x51c7049c pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x51d25c83 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x51e1c396 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x51fa3135 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x51fc0d87 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x52020ed9 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x520dc684 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x520e2db1 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52115799 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x521922d9 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52292b78 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x525245f3 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x52538a55 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x52582745 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5271dbf4 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x528acfdc clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x529590eb mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x529ca476 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x52ac300d __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x52b9a650 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cc3b47 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x52cc470b devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52deb8a6 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x52e2747a devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x52ed7e5a fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x52f3e840 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x52f48d33 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x52ff36ee da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x53145727 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x53225f9d mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x5328fbd4 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x5349852c devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x53572904 snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536a43df rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x537e5133 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53922fb6 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x53983a82 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x53d0e31a inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53f029af serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x53f1afcf __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x54048298 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5413c6e5 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x54198a36 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54224760 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x542ee804 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x542f9152 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x544d9b45 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x545443d0 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x545dc59d snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x5478b192 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a41dc1 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x54af3c44 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x54ce0ab0 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x54e8cceb udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x54fe44b2 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55106b90 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55354233 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554a1720 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5550c6c0 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x55589328 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d2183e debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x55e248b2 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x55e54fd3 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x561b85db cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5620d822 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x563c4b6d iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56427eec mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x5645167c virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x5646c3e6 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5646e400 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x56598258 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5669178f ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x566c21c1 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x5672486b pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x56817156 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x568dd788 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x56936646 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56b8d651 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x56cfa1d3 snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x56d121be device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x56d5ccde __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x56e83aa6 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f908a4 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x571e99b6 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x57227c42 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x5724048b irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573e4a9c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x5745fe78 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x5751f27d pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x575c10a9 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x575c3507 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x5778f9ee pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x5784cab6 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5792743e inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x57982fd2 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x579a8170 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x579d18f4 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57a7b561 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x57b24706 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x57c3880a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x57c8a3d4 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x57d13945 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x581e7032 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x582c2f3a genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x582c92cb usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x585b5cd8 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x585e187e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x5866cf1c xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x58671081 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x5874efdf usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x58856b51 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x5885987f snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x5889eb20 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x5891f5cb init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x589645a6 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x58c2a966 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x58d001c9 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58eedb2f crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x58fb070a dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x59060cc8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x590726e8 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5910919e virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5918a450 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x591e28aa dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x5922276e sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x594446e0 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x59474263 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x594784eb simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x59541dbf crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x595ab9ce fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x59741e99 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x59816662 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5986021e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59884e1c of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59a63937 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x59b9be53 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x59c42c9d sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59deec88 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x59e52066 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x59e5f2e9 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x59eaf06a pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x59ef492c regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f99ba0 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a18b823 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a597918 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6fea8a __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8f8b86 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x5a90cdd9 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x5a90e7ad nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x5aaacb02 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab1880d blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x5ab5e1a0 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x5acaee33 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5ad1c162 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x5ae62b23 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x5aeba14c pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x5af0c1b5 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x5af69068 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5b0b1017 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x5b1c5a59 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b39ace2 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x5b3a9d19 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b40a146 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x5b433d81 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x5b434591 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x5b4a655e tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x5b570cd3 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x5b5cd37f rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5b7c5091 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x5b83d533 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5b842d4d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x5b917ed8 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5b92d6c2 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x5b969bf7 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x5ba1e9be __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x5ba71670 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5bb019b2 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x5bbff107 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x5bc6ec3f ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be6f368 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x5c18d8a9 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x5c2628fd nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c309a6b gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c350784 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x5c350d3b ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1c87 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c5d60a5 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c6bb78d inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7d4989 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8a8bd9 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x5c8c18b4 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x5c97f5bb clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5ca0a157 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb86366 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5cc28c18 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5ccca9f0 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5ccd817b led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cd48a6a iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x5cdf5233 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf7a962 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5cffd014 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d0950a5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d24bf2e devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2c1c77 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5d30e9da serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x5d31db4f sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5d3f1c66 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x5d582310 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x5d5aed69 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x5d5bdd35 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x5d5ded03 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x5d65726c generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d7d7720 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8c5c91 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x5da1dfd1 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dba36b4 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dc02bef blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x5dd7c429 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x5de32e71 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x5df7940e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5df81b1b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e016dff pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e2c010d virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x5e2cb263 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e697588 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x5e6f28d1 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e89b02f irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eae613d irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5eb95943 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec46116 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ed715c5 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x5f06d56e irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x5f15f85e device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5f22a717 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x5f23b17e ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x5f367212 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x5f39289c regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f3c1858 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x5f3c4ca3 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f4eebd1 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5f4fc159 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x5f589f91 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x5f6a9f89 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7bebf3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x5f804270 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f87e34d ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x5f8d81ed scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x5fa16674 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fd6b1fb mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x5fda1feb usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5feb2c60 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x5fee285a dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5ff20c96 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60086ff2 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601464e0 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x601dec65 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x6029fa12 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x603f3b6d amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6050c5f3 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x60535911 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x6053ef04 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x606036fc devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x606f0397 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4598 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60c02150 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x60cbbc8c blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x60d01740 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x60d2a112 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x60db0f68 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x610a09d1 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x610e56db of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x61109c4c fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x611f0aee reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612cb458 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6135c9a0 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x613c2b48 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6151ee75 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x615a8cfc snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x615af525 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615cfaa0 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6162588b devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x6164782a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x6176fab7 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x617a83c7 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61a1df14 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x61b33c13 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x61bae920 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c51efe tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x61d7d16d wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x61de84fa snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x61e99231 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f83fdb __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x61f84f42 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x61fb4b11 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x6204224c xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x620a3caa platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x620ac973 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x62152615 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x62187399 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x6218fe73 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6222a8a3 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62317b26 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62480c07 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x624a36ab rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x624de27a dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6260e210 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x6287b85d inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x6294db2a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x62a3dfa3 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x62a70422 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x62ae4b91 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x62bae227 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c1bd25 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62d640f9 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x62e3b093 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x62f4f19b pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x632578b4 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6361a4d9 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x63660559 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x63745954 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x6378ce35 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x637fc666 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x63839508 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x63936ea0 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x63a38007 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63b67807 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c79853 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x63c86911 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x63ceca03 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x63f62c61 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x6415e35f vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x641b3027 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x6435cbfb __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6441c656 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x6449c1f1 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x64648651 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64677db3 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x64746770 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x647b7cb9 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x64b0265e gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d6154c dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e3ba8a bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x64e44998 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x64f52143 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x64fc8acb devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65042dad debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x650c4604 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x651f2c6b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x651fc6bd usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x652c93fe snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x652ccdb9 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6536c859 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6549f8c4 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655bcd1b of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x6566a9a1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x656ba3a5 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x658063c8 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x658baaaf pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d54165 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x65de413a ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x65de9006 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x65e3415b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x65fa6924 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x660092db dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661d3f14 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x662d3bc8 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66484a74 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x664ad2cc pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x664add2d ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x664ba529 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66634d6f i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x66689c8c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x666ae930 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x6674dc31 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x667563e6 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x6680b7ab rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66874607 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x668d3e4b serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x668dc09a bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL vmlinux 0x669e3a41 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x66a1a2d7 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x66afd3fe usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bbe152 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x66ce2fb1 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x66d22c98 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x66d82022 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d91181 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x66fd1d0a tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x6705765a usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x67086a7c fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x670a8115 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x6715172d ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x674a685b nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x674f39d1 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x675e6547 sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x6770646d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x67726270 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x67775d6d sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x677a3ca8 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x67839bb5 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67961b03 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x6798d378 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x6799fec0 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x679ae4ad crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x67b82f2e phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x67ba0cf6 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x67c67c97 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x67cfdf17 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x67d1ebd0 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x67d2f6c8 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x67d85ee3 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x67da3ab8 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e578e9 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x680a1c0f snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x6827bac6 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x682ab871 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x684c7516 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x685f440a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x686a7ebb imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687a6500 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x68898ec9 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x688f06ef pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a17d37 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x68b98a84 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x68be3e7f devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x68bfa1bf nf_route +EXPORT_SYMBOL_GPL vmlinux 0x68ca0d0c io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x68d5bbed dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x68e3ec08 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x68ee3736 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x68f2d4a8 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x690b33c7 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x690bc93f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x692098e2 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x69261b22 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x69263692 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6948f241 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x6952373b bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x695b675f metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696adc36 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x696b94b5 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x696cdb2a __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69780ee7 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697f5ddf dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x697ff2da dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x698467e5 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x698d0086 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x698e64c5 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x698e9eff pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x69921790 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x699928c0 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69a99265 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x69ad51e1 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x69bed50a spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x69c300d6 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69cfc7c8 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x69d4cc24 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x69da907b usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x69e08633 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69faaa78 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x69fcaa21 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a12259b rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1c88a3 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x6a254cb2 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a622df4 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6a665ab5 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6a6c9a5a devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x6a74bf9b __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a8a19be of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6a9f102e blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6aaa67a0 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6abd815b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6ac7b807 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6ace7c55 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x6adf9adf regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6ae46421 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6af51ea5 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x6b035b6c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6b067f3b sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x6b0c5223 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b182800 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b26de38 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b277f28 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x6b2b207c crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b72d9a4 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ba38e8e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x6ba95362 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x6bb8810f fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x6bb8ddaf blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x6bbb9a8d fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x6bc0fa1b of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x6bca6b6d genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce93d8 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6be67c28 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6bfe07fb dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6c0254db mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x6c16ffdd devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1f36a9 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x6c200294 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x6c237ed1 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x6c292f5a tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x6c39d1df __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c6fd449 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x6c853cab fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c9bede2 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x6c9d8d50 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caf2aa0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x6cb40532 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6ccd0311 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cd3f742 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x6cd5cfcb aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x6ce8134d fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x6cf1ebe7 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6cf2fe6b device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x6cf416b7 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0a6713 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0cbcbd snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x6d1b7c91 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3b5942 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d79a937 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d855310 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6d8b4712 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x6d976518 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x6d99af75 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d9b6031 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6db9739e snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dc4c501 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x6dd1a6e9 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6df26d1a __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0ba47f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e137dfc sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6e1eaf65 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x6e2917e6 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x6e2a7be2 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e30b2d9 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x6e37fbd7 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e4e4ec9 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x6e560449 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6e575ddb devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6e5cffd4 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e6a86d1 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e76be84 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7d05b5 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x6e8004d9 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x6e870c85 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8d92cc ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6e97010d ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x6eb4e582 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ecf432a edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6ed51946 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ed9db7f __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ee40975 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ee4ca9d blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eeb2864 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x6eeffc92 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efe859a tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x6f01fae1 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f128e2c device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6f150454 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f2498fd snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x6f2aff70 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6f34098d skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6f40aff2 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x6f44738f __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x6f4a147a inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6f655832 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f6974d9 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x6f6d66f9 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6f74a71d phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x6f7beeae regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8a6325 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa3f2cc qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x6fb4448e usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fc345a2 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fdce1a7 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x6febbca4 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff85fe4 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x70001dc2 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x7005fd6b extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70174e50 snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x7020cd8d devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x70240944 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x7029f50c fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x702a6eef snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x705b5b34 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7075677b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x7094d31b devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x709d94eb rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x70ad193f md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x70af9192 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c5a28e tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d6a944 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x70edc009 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x70f6ba62 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x712b4a55 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7143e967 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x715f111c mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x716cffb5 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x718290fd pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7186a580 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719fedec crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71ac5331 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71bf38aa iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x71c94793 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x71dd5a1c pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x71df9fd7 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x71e01627 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x71ea15c4 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x71ef9f23 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x71f00ecf ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x72096d8b pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x721b2090 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x722c4f77 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x7235e2dd xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x7241b1bb dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x72527548 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x725970ee sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72665b6d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72873705 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x72aac39c xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x72ad0ed0 virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72ccebc8 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x72d69c4f umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x72d7468f inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x72e4c70b iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x73079951 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x73255a03 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x732a14c4 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x73391027 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x734b8cd6 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x7372c1a0 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x7378d122 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x737eaca9 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x737f580e ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x738a7c23 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x739d4f4c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x73a0eb77 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a99171 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c6a3b9 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x73c6e014 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d0124b dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x73d0d52c snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x73f4b39c nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7405ff79 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x740990a4 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x740e66ba spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x74149f56 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7416091c device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7442bba8 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7449350e __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x745e85cc ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x749979ef get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b9c664 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74ca9e6b device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x74cc50fb irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x74cf0d0a thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x74cf8e21 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x74d7abc6 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x74e8de24 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x74f3a3ce usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x75035587 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x750bf827 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x7521bddb sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7536765e cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x753fba4c of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x755409df devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x755459fd sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7567ef97 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75c8eaf0 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d01fc8 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e52273 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ebc7a4 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x7603ac4e devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7611225d pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7623981b phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x76286069 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x762c2b3b spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x764ea650 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7650ac0f devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7661d859 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x766b487b omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76b3522a ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x76be39b1 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x76d378ec snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x76d69f41 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f11a3a dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x76ff163b rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x76ff6975 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x77231a89 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7724d759 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772d9957 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x772fbed6 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x773bd8d3 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77757854 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x777b0d11 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x778838ba inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x778ec594 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77938881 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x779e0c16 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x77a234e6 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x77adf7b9 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x77bb126b sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x77be0c3a device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x77d88a95 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x77dc7c45 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x77e1c120 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77f08f2b component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x780ed950 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x781410a2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x78409937 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x78440b0f dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x784d3b43 cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x785480d2 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7859fba4 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78691765 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x788bb9a1 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788eb380 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x7898fa98 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a2d431 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x78b49045 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x78cc3549 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e5729d sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x78e5aedf mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x78eec5ce edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x79253439 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7926501a tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x792ac489 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x792c0b44 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x792d9647 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x792f0aec devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x79335244 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796a6ebe pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7977608a skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x79908aac relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x799d55eb __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x79ae3e72 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e000c2 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x79f0635d usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x79fd6db5 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x7a07d0c2 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x7a185da8 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x7a1d8adc arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7a2aa8c1 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a350ab5 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a3f3616 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7a4256b5 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7a4af600 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x7a5bb5a6 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7a5c7cc2 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a76de2e md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8cf007 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7a92841e devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9d9ba1 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c0b thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac1317b ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7ac163cb omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ace18a0 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7add3ff4 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x7adde5dc blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x7ae84c8c devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x7ae93895 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7af39d84 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x7af6929e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7b04f93e bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7b0553ff fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7b096b2a musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1f0bef phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x7b24158a pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7b3b194f snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x7b3e85ce shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x7b43f6cd blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x7b551ff8 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5fb3ea sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7b6c65a6 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x7b752665 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x7b80d4be iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b90264f regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b9446dc mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc62d0e led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x7bc798b8 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x7bcc4e3c l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x7bf77590 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bfe248c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7c0ac9b0 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x7c13c42f replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x7c167e9a dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x7c25b6d1 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7c266ac4 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3dac64 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7c4aeca4 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7c70c197 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x7c768473 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7c7e433a usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x7c8b8b19 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9eb792 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7c9f650e pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x7cb94ceb nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x7ccf5014 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7cd65fb6 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfbb0c9 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x7d071a34 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d08f022 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x7d1b2800 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x7d26c9e2 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x7d2d5c1c usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x7d391fd3 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x7d5016b2 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d63bfdb pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7d68cac2 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7d73bc17 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7d7b06f6 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7d854eca blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dc7ef6f bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddaa1b4 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ddc9570 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7df34a4f sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7e0568b9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e170f96 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7e1da0fb ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7e1f0d18 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6c86fc __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e80fe2a pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7e8f3328 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7e8f8407 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e9e36bf snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7eb00a3f usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec95220 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7ecf5d13 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f18ad5f crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x7f2379a9 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f319884 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7f358d6f posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7f36cadf bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x7f3848f9 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x7f4e4e11 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x7f5dec81 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f64916c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7f662c9c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7f6a2bec regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fa0a9ee pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb66edd of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7fbe51f1 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fc4eecb pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7fcbdf5b tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x7fd516e4 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x7fe30f08 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x7feefaa7 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7ff2ad7e gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7ff570c8 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x7ffa8c4a thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fff51f1 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8004e08f snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x80208305 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x8021bee9 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x80333e2c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x8050b014 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x805c9208 nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8077f797 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x807a670e perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x807c44d2 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x807dfa93 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80829d4a scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80845a12 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x808d8fbf dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80987b80 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x809bb9a6 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x80a08166 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x80b63c4a tegra20_clk_prepare_emc_mc_same_freq +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ce3254 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80eda1a2 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x80ee9d30 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x80f50c1b extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8100b8f3 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8135b757 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x8144949c snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815799bb tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817858c6 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x817872f2 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x817c33e2 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x817f14da devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x819f5064 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x81a0177f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x81a0a37d skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x81a91890 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x81ad759d sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81c98869 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x81d0195d blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x81e384bc ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x81e91d61 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81fcc336 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x8205a86a ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x820b31bc ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8228cff9 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x82295651 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x8243456b gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x8245bdce icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x8245d0e8 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x825be298 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x82718214 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x827219b4 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x827c9496 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82836031 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x828485c1 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x829875ae i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bdb85e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x82c90cd2 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x82cce64d fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x82d25b12 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x82d5204c thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e22c44 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82eeebc8 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x82f16334 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x8308d42b __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x8308f98a ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834b6073 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x83531e72 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x835a95e6 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x835f0c7a dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x8362406b pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x836b8b39 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x837157d8 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x837195a9 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x838dbab6 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8391be5f __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x83a813ae gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x83b717c5 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x83c23114 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x83c87e59 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x83d16e52 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x83d628b2 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x83edb753 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x8401a0b8 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8404d83a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x84051646 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x84096496 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x840be37f dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8419e8f4 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x841bbb9c tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842a3604 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84445d2d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x84451c81 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x8449fd46 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x844a9b1d __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x844b9c86 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8465073c regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8479484b snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x848ce102 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x848d75e4 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x848eb9ef exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x848f9f88 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x8498e98d soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84aa08ca pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x84b0ed9d scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x84b5ed5e devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84f7084e fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x84ff2fc0 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x85053094 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8534aeb3 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855d3462 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x856b3feb serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858d476d crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x8599056a virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x85a4acdb snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x85a9c4f4 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x85ac22d6 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x85ad9d32 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x85b21822 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85d0a3c1 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x85d8fe69 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x85e486fe nand_ecc_tweak_req +EXPORT_SYMBOL_GPL vmlinux 0x85f26d9e dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x85feb970 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL vmlinux 0x861dae36 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x861ea3b6 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862382ba device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x862593bd pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x86485d12 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x864a2785 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865aeb1f fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867ed981 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8689a7e9 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x86a40fed raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x86a98f93 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86ce1263 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x86d24294 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x87104916 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x87151f70 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x872f5eca icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x872fe494 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x87310cf5 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x8753d9c0 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x8758ea14 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x875ae50f iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8762ebe3 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x876a0882 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x87a1666f __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x87a2c59f elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x87a385a3 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x87a835f5 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87b724bb gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x87c4f1ca usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x87cf6cbd nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x87d3c8a1 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x87e3434c platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x88067681 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x880b2a39 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x8815c518 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x882e3d91 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x8830d72a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x8836f28e __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x883ce9a2 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x883d00f9 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885583b1 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x885be135 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x88602644 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x8885c5ac clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x889daa77 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x88a045a5 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x88a2f3fa __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b3c431 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88bb31ef bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x88bcd393 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x88bf605c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x88c9c349 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x88ce156b __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x88d80f22 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x88e5c89b bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x88f8aeda nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x890f64d3 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x8914f683 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894aba42 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x895586d7 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x8966e89f xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x89739cb6 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x89809881 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89a0cb0e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x89ac607f serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x89b020f3 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bf4788 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x89d41f89 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x89f02da5 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x89f92fa8 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8a068e50 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a20533c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x8a23a15d serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x8a2af5a4 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a2c8ef0 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x8a2f417e generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x8a375131 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a41dcfc sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5d68f5 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a781ec0 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8a7a8936 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x8a813333 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a84ab43 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x8a8cad16 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x8a907817 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8a9aad82 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x8a9af0c4 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8aacefaf power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8aada21c filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac7f25a debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ad72337 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x8ada92e3 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8adc0efd i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x8af985cc usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x8b138db1 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1af520 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x8b1b8270 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x8b2effe5 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x8b51663e sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x8b5f4ff2 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b72966b devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8b77be57 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b78b453 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8b7e8a01 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x8b8a103c i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9f0ceb kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x8bbb841d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x8be9ac85 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c02a48d lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0847a3 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8c0bfbbd xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c19ea09 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x8c26208a phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x8c3a526d bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c3b4163 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x8c41a0a9 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x8c45a587 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8c5ad961 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x8c60471c device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8c658084 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x8c66f93e devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x8c6f6eb2 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x8c73998c usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7e34cb pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x8c80fab2 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8fabc4 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x8c99eb08 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x8cc4e401 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x8cd5221f metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x8cfcb43a fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2c6d3c firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x8d5b9b9f snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8d6eaa1f gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8d806ee5 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x8d853010 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d979ec1 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x8d9e1476 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8d9ee07e vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x8d9ef3c0 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x8da4038a serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db29197 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x8db47080 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de103e4 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x8e03cd39 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x8e0a8a8b mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x8e0ca03f irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x8e11c073 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x8e1296ea ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8e1b0f80 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8e1f3130 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x8e3eb88a devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f25f6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8e55a661 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e78c1bd nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e79c784 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e801942 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x8e959e2b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8e9b3dbd wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x8ea2f3db gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8edc969f skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8ee40933 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ee5fd54 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b3be5 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x8f21b31d serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x8f2e0795 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8f3f2bc8 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x8f58fc53 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8f5c6659 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6e41cc __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x8f769d07 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f9231ce blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x8f92fad5 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8faf8109 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8fc5fe31 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8fd53994 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x90049156 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x90170216 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9053054c devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9071c0e9 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9076cb40 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x907b9dde rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x907ed620 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x909bb091 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x909c0bcc tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x90abebe1 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x90ad3283 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x90afaf50 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x90b0bb4c rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x90b44f07 nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x90e86caf snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x911b8f7a snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x911e0903 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x9121aca8 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x9142d1e2 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9148e021 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x9151523a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x9160ae2e __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x91611db2 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x9167dc28 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x9189a75b pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x918f3263 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91ace576 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x91b0708e edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b92961 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x91beedef ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9ebfc sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x91e954cb acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x92060700 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x92263f17 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x92423c7f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x9245d5f5 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x92482b86 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924e7b15 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x925fe3a7 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x92688f07 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x92708ff7 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9288ce74 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92bc4897 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x92c939f0 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x92d28716 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e52099 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x92ef4e6f power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x93082bdd umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x9315d783 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x931af507 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x931e97e2 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x9346df87 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x936c4795 snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x93a49dd2 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x93a8fcb0 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x93b7de30 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x93bc1f1a pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d486fc fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x93db8529 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x93e3ae97 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93ee5ddb __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x93fb1f7a devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9400d10a tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x94078d06 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94220132 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9422b22c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x944193b2 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9449ed5c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9454336a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x94565d24 usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x94695425 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94749e2e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x94756334 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x947d4a53 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x94816fb3 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9496025d regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c42cb9 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x94c6f192 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x94cd65b3 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x94d4b5f5 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x94d7aa52 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x95033e0e blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952b4f51 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9558ba9c max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955b73ae badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957297a6 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95ad1a50 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x95b13884 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x95b35245 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c865c3 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x95c9ce15 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x95cdcf60 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x95de38b2 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x95e1d218 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x95e2fbc8 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x9609766e ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96175c63 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x961d1bf2 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x962b6636 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x96446ba7 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96587dbe genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x9659edbf mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x96713aaf uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x96866389 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96967cd5 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x96b438d2 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96cb7a8d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x96e7e47b regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x96ef6556 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x96f1031d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97275397 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x972f6f66 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x973248b5 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x97499e18 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976b25b4 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x97b32fe8 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x97d1c411 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x97d4a889 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97eba731 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x982135a9 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x9824b1aa blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9832a106 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98449b48 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x98491fde dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987b31b2 snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x988b6ae4 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x988c3327 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x98a1a8ca component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x98ad8d70 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x98aec52d dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98afce70 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x98b006d5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x98b04f39 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98ba785b ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x98ba88a0 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x98bdd2ec usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x98c928bc irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x98cab5ab snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x98e0adf4 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x98e49a61 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x98e85239 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x98ebbad9 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f13c17 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fd0f15 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x99100b07 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x991e7ac7 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x992ef14b of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x993eb8be devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x994288bb debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x99452156 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9948de44 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9989bb5f ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x99989060 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x99ab199e bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x99b38da5 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x99bf1e1d mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x99cdb190 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0x99e93220 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x99ece5f8 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x99f01ea6 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x99f1c8b6 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f3e318 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x99f7157e phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x99fa6e3a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9a065bb0 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1537d2 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x9a2e2e11 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x9a2f31ce bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x9a3773a1 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9a3db4d9 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9a42d8e7 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9a58b2b2 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9a61e78f sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9a6a0956 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x9a703306 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x9a704ef7 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9a73c69a add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x9a887ef1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9a8fc8e2 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x9a9cf606 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9aabdfd3 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x9aad3617 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac4b2ab skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x9ad42f3f uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x9ad68fd2 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af0448b sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afafbee dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x9afdb6cd tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9afff5b2 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x9b062c92 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x9b06c135 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b10759b devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x9b20f5de hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b2424fc usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b55857b __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x9b588cf1 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x9b6073ab strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9b6dc7d8 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL vmlinux 0x9b782d63 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x9b805b74 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92049f __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b99993b pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x9b9c02c8 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9bbf75a8 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x9bc18437 nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x9bc223b7 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9be4faaa pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL vmlinux 0x9c006d51 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x9c0aa36e snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x9c2421c7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x9c267e97 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9c34103f pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9c3eec2b ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x9c434611 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9c44eed0 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x9c4630ee snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x9c5675ed sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x9c5a9237 dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7bf1f9 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c925ad1 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9c93629a dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x9c95781a regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9c97bead devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9cace53b usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x9cae9419 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x9cba8792 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x9cbbcfb0 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x9cbcdf6b wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x9cbe4648 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd8fd62 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x9ce2e13b snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x9ce60cf8 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x9cf7544a relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x9cfa3b11 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x9d00fb7d __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x9d02792c __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9d04224d crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9d0491fe fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d2d11d7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d2f6632 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9d488dcb snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x9d5a5df5 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9d64e64a __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x9d7c1215 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9d93f48a auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9d95254e iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x9da5e449 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x9dafbc2a mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9db1897f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9db6a4f2 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x9dbbec21 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x9dbcd716 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x9dca564a sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x9dcc871c spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x9dd5b51c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9dee0620 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x9df10ab5 usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x9df323d2 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x9df43b01 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9dfecbce wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x9e0c62a7 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9e0c6efc __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x9e18bf0c cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x9e21b2f8 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9e21d3c5 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x9e3c29dc clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x9e4114c5 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x9e45c3b7 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4f7618 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x9e642d7d kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x9e6b4512 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9e80c82b tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x9e924179 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x9e937ec6 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x9ea0955a fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x9ecabe1a alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x9ecc1361 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edf3ae3 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x9edf793c irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9eeafa44 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef4255b ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x9f1e3c13 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x9f2e196e add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x9f3bbf1f device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9f430a30 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x9f494b97 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x9f4ddaf0 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5cea45 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9f5e87a1 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x9f602a60 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9f68ae8f devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x9f7580d7 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9f7a7a80 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x9f8fa674 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x9f964647 tegra20_clk_set_emc_round_callback +EXPORT_SYMBOL_GPL vmlinux 0x9f9bcc10 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x9fa68518 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fc04156 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x9fce1c0f __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd20fe3 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x9fd3d818 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9fd44deb __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x9fdeadfe xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa0049ba4 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xa03153b9 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xa0378cbb dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa04c436d __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa07b943e noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xa081f947 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa08425d6 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa08769f5 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xa0acc1f1 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xa0b4b518 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xa0b742f6 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xa0f03da7 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xa0f078b5 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xa0fc68a8 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xa10359d0 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa105bf7a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa108c4c3 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa10cbf48 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xa1115b6e snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xa115fb10 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa11753e6 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xa12ae728 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xa12e2d1d of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xa1321893 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xa13c93ba fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xa144e7f0 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xa14e590d bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xa1686cca perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xa176d238 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa17880b6 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xa17b8d8b usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xa17d3006 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa18ae066 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xa19720b4 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa19e64ef regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa1a12978 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa1a87730 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xa1aae844 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xa1bde509 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xa1c9fada virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xa1caea4e snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xa1cd26b4 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1dd02a8 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xa1ddcd2d genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xa1e43f79 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0xa1f29b0f nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa1f9e54a dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1fbeea2 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa1ffe3d9 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20dd44a ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa2175f2c sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xa21f8af5 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa2388d44 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xa24133bd fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2772edd __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa27a36ae dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0xa27ca5d5 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa298df52 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa2993568 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2cb3c99 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xa2cd4867 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa30488fc device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xa30a98f1 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa316d5a7 get_device +EXPORT_SYMBOL_GPL vmlinux 0xa31c9fdf crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xa33ef998 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xa3489c08 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa34d7df9 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa37f9d6e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38cf57b spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a44019 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0xa3b7091d sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc11a6 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xa3c18c72 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa3c869d4 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0xa3cd772d power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa3cfa7f3 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xa3d1c5e2 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xa3d4f253 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f76c92 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xa3fbc310 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4090e5a udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4142c7e snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0xa418281a icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xa4212afe tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xa42eaa61 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa465b237 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48e1b0a input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa48e6258 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4bd3f3b regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c49cd4 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xa4cbdb09 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xa4de60de pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa4eaa882 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xa4f854e6 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa4fbe13d edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa4fff289 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa51aca88 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xa51b5a2d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa5294fc2 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53828ac regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xa53d364f mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0xa5432b7e sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xa55028ae iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xa5673462 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xa57f5510 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0xa58b38a9 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xa58e986e devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa594ba7f usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa5a93a08 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa5d388a4 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5de6248 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xa5e584e2 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0xa5ea5924 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa5eb9346 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xa5ed0112 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa6092072 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xa6247961 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0xa62fe8ec handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa6392fca usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0xa64d942f snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa6938b47 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xa69a0b29 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b33d72 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa6b4ff5f tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6bcc6b8 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xa6c002e5 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa6d3b49f pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ecc256 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xa7065dc0 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70cda61 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa734119d irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa73823c2 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa7585f5a sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa7681ca3 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xa7700c3e of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa77cab8a devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa78056a3 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0xa7a04f8d spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xa7a09d47 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xa7a0d6bf walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa7b1aa04 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xa7b5ccfa class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7e41949 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xa802965d phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa804972e add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa822441a fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xa83c04e2 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xa84a8119 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85bbf33 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa85d0233 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa85fa729 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xa86baae0 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0xa86bd222 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa86e746b pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xa8a0ae30 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xa8a64fce unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa8c71be6 nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0xa8ce495d pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xa8e092c9 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa8f92c3f hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa8faa191 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa8fed5b4 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xa908484f nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0xa9090818 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xa90fd2ab power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa915b1ab regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xa91e5fb9 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xa926c6b5 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9322ae6 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa952d778 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xa95eb367 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xa967216f blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xa9947ee7 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa9951a52 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xa996746c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99d4256 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a2433f relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xa9a88079 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xa9a906b0 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9ac8ecb blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xa9acde7a arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa9bc43a9 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa9c4cc5d rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa9d5ffde pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa9f9ba27 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xa9fc6ba6 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa9fc7064 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xa9fdad27 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xaa04e779 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xaa21073c fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2a23e0 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2cd58a devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xaa2d0836 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xaa3a9454 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xaa3b3e50 of_css +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa44b9db ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xaa513b8c pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa57cb16 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa6975a6 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xaa73b63c crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xaa8c72e3 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xaaa2aae6 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabebc0d __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xaacd8bc4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xaace2a86 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xaace5813 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xaad0b45d blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xaae1cce1 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xaae4b841 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab084084 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xab1f9cf1 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xab4f80c7 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xab6e37a3 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xab72c9b7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab9a6a21 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xab9e7fe5 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab9f447c snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0xabba153e __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xabbd282d switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xabf066ec of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xabf13818 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xac0084f2 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xac2d26cd of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xac30bc85 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xac45a822 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xac5f939a sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xac7b80cd snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0xac8ec3cf rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xacab25e4 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xacb31019 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc8072a regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacee8ea0 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacef28f4 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xad0562c3 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0xad1019de driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xad251e70 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xad26d86c sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xad2806f7 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xad2e864c regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xad2ea0ab invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xad3b7d6a nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad43fb98 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xad49fbc6 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad65120d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xad6ff1d5 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xad712e60 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xad720548 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7e4a56 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xad8aabad led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xad8df92a kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xad953fbf __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xad9b52ce devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada957a6 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL vmlinux 0xae028e40 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xae0d3d50 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xae0df7ae gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xae24eda1 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xae3166da pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae42911c lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xae453f4a wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xae4849b6 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xae4cb21e __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xae5aaa4c thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xae5c74b2 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xae691a71 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6b7203 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xae739dd5 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xae764bb7 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7c4f98 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xae8458b0 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xae97470c perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xaead028d __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xaeb6dcaa of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xaeb79583 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xaedfd0b2 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xaf0806ce put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xaf15ffdc ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xaf1b799a usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf489fe5 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xaf689033 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xaf6e7a4f of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xaf827c73 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xafa01dd6 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xafb2978e extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xafb85b8c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xafcd0a39 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xb01677ef udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb01f2e9e mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xb025a0a5 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb03e0abc wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xb041547b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb0521b67 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb0567cfb usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xb05d39a4 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xb05e317c tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb05e5426 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xb0666a37 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb076ff97 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb081f1c8 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xb08f7224 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb09510ef register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb09921d0 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb0a07eaa vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xb0a85848 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0b808ab efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d4b5f1 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xb0d7b886 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0ffba7c md_start +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10e483a fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb123d08d regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xb12bf89b devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xb12d2b0e genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb1336083 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xb1358f72 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xb150f9c0 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xb15c28e2 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb164f230 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0xb16e5eff devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xb17c1f66 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1bc27f1 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d89594 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e4fbfa gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1f9f380 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xb1fa61cd mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22a6719 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb22e20ff of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xb232b2b7 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2636343 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26b5aa9 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xb26eb4a0 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb273b720 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xb285d0e0 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xb2952961 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xb2967fe8 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xb29f484c dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2ae06aa xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xb2bc1dda dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xb2c046e5 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xb2dc1c72 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb315d757 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xb31605d8 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xb3201378 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xb327bff9 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xb3316cff usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xb342e2a0 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xb359fe6a tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb36d831f regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb370064d sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb372d584 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xb377c26d snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb392d7b4 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xb3a82bd7 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb3dc851f nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0xb3ea8796 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb4042e5f crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xb40a47ad genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xb40aa326 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb410d085 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xb4179fcb snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xb41de3a1 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xb422e33a rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xb4230df2 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xb43e7092 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4459b48 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4533762 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xb4608ebc rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb46610c0 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xb4690e9e devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xb4693965 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xb470debd phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xb485e7a9 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xb489e347 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb4924986 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb496d866 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xb4ab3d98 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb4ae4be5 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b1e6df tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb4b74e5e sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4b9e96d usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0xb4c4135c icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xb4c8977c get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb4cc925f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xb4d69a70 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xb4e1d390 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ec68a3 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ff6c42 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xb501f060 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xb50d267c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xb5128f32 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb517fffa rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52f8eb6 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb575a2af cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xb57ed4df synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xb586f51c regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb58891dc phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb5895f69 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xb59dd4c4 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb5bbb47b pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb5c1cc1f usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xb5dbb1fb msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb5ddcd39 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xb5fff162 nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0xb606a5b4 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb617ded1 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb61903bd sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb6197f54 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62750d6 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb655e785 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xb66e47a5 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb6725fb6 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb69c6af8 component_del +EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb6c5b2cf tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb6db1c91 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xb6e5d207 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb70340ef serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb707e19d regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb7090ba2 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xb7198ca0 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0xb71fe60f crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb72a6d9a ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb74c5bce to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xb771d874 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77d3a27 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78c5fac bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xb79135e6 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xb79bb803 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7ae18ae crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb7b57e01 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7e19b8f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb7e5a696 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xb7e710d8 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7ee85ea gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xb7f193a7 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xb804007e __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xb805ac8f devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8545d51 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xb8560319 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb8561f8b pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb8657ad8 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xb86fe54f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8803c0a l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89256d2 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xb897d153 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb8a64d4a sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0xb8aedc17 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb8bcf7a8 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0xb8c68ab3 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xb8c6a7c0 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xb8c8e836 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cd5dac snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xb8cf7890 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb8e63ec7 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xb8ef48ca gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb8fa0711 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb8fbebe4 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb94003a7 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xb95ce086 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xb9616a89 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xb965d692 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97b75c6 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98597ef rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xb99eab5c crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d0a792 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9daf03f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9df09b9 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9ea35c2 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb9eac057 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xb9ee72ca virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb9ef9df3 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xb9f06577 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9f763e9 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xba0e0b77 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xba111409 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3945b9 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xba44329b class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xba5457e9 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xba671010 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xba708c9c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xba78cc52 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xba7ac9ed regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xbaa141be iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xbab9798e phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabc4dde devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xbac3b3df regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xbac5646d sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xbac70c96 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xbac7c862 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xbace3461 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0xbae6c3bc crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xbaef0016 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xbaf16667 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf72d40 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xbafc1637 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb135c70 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb25535a tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xbb27a81b pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb562239 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xbb591c14 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbba5ca95 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xbba8984f snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xbbab2141 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbdc2be8 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xbbffe462 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xbc0e7022 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xbc153388 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbc1dc894 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xbc1eabde netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xbc338043 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc5d7068 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xbc5da4ec __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xbc5f6d51 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc63e99f crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8a2c16 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xbc982dea skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xbc9c914f snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xbca49b95 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc28dec unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbcccc803 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd03309 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdd7cb2 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcffacb5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd064304 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbd1221b0 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbd2526ff snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0xbd2d1ff1 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xbd31d424 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xbd36d607 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd437810 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbd51942e fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xbd694e73 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xbd6a4811 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd6bb12b snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xbda56d79 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xbdb3927e kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xbdbee087 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xbdbf2f00 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xbdfdcc1f bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xbe0c6d87 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0xbe20f2b3 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbe26a2a8 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xbe285055 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xbe444940 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xbe48bb02 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe821627 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xbe834d19 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea2b6d8 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xbea2f563 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec5473b usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0xbecbef47 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbeda1206 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xbef5791a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xbefc31c3 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf048cb8 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbf08e011 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf0ac052 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xbf0ce15a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbf0dee4f meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xbf0e1806 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xbf48b009 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xbf49ace5 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xbf53ef8b l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf60d7df sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf66316a subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf69ee83 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xbf72f43d device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xbf7b593e usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbf85d53b fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf87fef0 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xbf8a09d6 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xbfa18b6d dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc8f696 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xbfdee5d1 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xbfe2c300 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe613e9 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xbfe83bb4 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xbfe84dc9 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xbfe8d77b to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbff7b10d devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc002f056 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc0190bb5 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc024f195 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xc02f09be of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc03705ab dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xc046167c vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xc0533ac8 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xc054e54c snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc05f17f1 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc07c48a5 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc0831184 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09ddb50 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc0a59be0 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xc0a68284 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b9d6c6 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xc0bebd51 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc0c8f5c9 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc0caddbe rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc0cb14f3 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc0cf4412 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc0dc9d8f usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0dde33d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fc58b6 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc0fca6c4 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10d7c77 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11784bb pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc144d78e nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xc14793c6 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc161ce51 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xc1649342 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xc166b1b7 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xc1692b20 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc170e08c register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc174dfec dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17f4a01 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc1916cd8 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xc1c4b45b usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xc1ca46d8 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xc1ce1ed5 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xc1cf61c5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xc1d94fef led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xc1f9977a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc1fd7b52 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xc1fdf142 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xc1ff9a77 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xc20ff109 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23ec306 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc269defb devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc27c6d96 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc288fcbd pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28a26ca transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xc2915af2 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc29b784f usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xc29bf4d6 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2bcf4ca devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xc2c15e0e blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xc2d2bfae hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xc2d8b622 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xc2db6cb3 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find +EXPORT_SYMBOL_GPL vmlinux 0xc2e3d848 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2e3dc6f platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc2e9645d led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xc2eff9d4 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xc309b6f9 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xc3112d12 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xc325729f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc32e8d73 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xc33b693d gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc35dbb8c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xc35e547e sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc36056f0 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc368a7d9 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc383aec3 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xc392ee0c sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc39fda5b register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc3b0d9bb register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xc3b1a99c regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xc3b51e09 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xc3c15fed crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c86e7c lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3d74fb4 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xc3d95a9f subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e135df usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc3e7a520 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3eb01d9 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc3ed34e3 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc40023ef ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xc400ae67 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc41a1bd9 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xc4233217 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc449f763 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc456ee6d dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xc45bf3d6 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xc45c2095 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc466e919 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xc46e59c3 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b2c36 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby +EXPORT_SYMBOL_GPL vmlinux 0xc4a1180b n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xc4b6978d posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4baf70f __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0xc4e4cedd invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f1d82b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xc522b9c2 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xc547d6f3 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc54bf1c5 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc54f3db3 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc575c747 user_read +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57d60bd platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5aead53 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xc5b3384e gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc5b42d05 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc5e72f90 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xc5efbbe2 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xc5f7a34d transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc62c0290 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xc62f04ae tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc6505e8b iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xc651bbf8 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc65fc88d fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xc662f641 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xc66592ec ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc66a1022 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6721c15 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xc6737f24 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68264af pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xc68783eb clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc696857a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc698eee4 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69cbebc sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6aae3dc of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc6b34f77 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xc6c42811 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xc6c490ba scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xc6c4c0c8 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xc6db640b ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0xc6e8e4ae thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6ed9a65 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6fb55ed ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7009a22 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xc70c5b0c scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc7235c03 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc72cdf00 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7397b71 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xc739adec virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xc73a49fb ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc73f6d1b meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xc748e8eb __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xc74e8fd3 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xc768bc07 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xc7695c9c ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xc7705517 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a2b12c aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ba0d75 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xc7c5dce9 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc7d5aa88 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fcb5de tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc8198496 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c6004 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc841cf84 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc848d8dc usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0xc8542d78 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85dd14d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc8672b91 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc8764bf3 sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xc87e3bb5 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xc8ab26e9 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc8b0abc2 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xc8b53576 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc8c287d6 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xc8c3428a usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0xc8c3a867 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc8c5492f fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xc8ca390c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f6b316 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xc91cc0a5 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xc920f1be gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc9385df2 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95eb8bd devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc96c0514 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc974bd13 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xc97a2f38 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xc97e2d04 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc982a52a ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xc982bb63 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0xc98f7ad0 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0xc9a50508 snd_ctl_register_layer +EXPORT_SYMBOL_GPL vmlinux 0xc9a9afc0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xc9aa1203 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ad5661 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xc9c68a98 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xc9e37673 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xc9ff4601 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xca06129f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xca11436d query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xca216cac sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xca2fcdc9 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xca3c1d45 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca473a86 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xca4d5e23 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xca60040b devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xca6e3a7d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xca794668 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xca7a8f52 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7f6dbb regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xca85fd92 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9f77e7 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcad4ec61 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xcad901e2 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xcad99b5f cpts_release +EXPORT_SYMBOL_GPL vmlinux 0xcadb81d6 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xcafa4990 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xcb0825a0 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xcb15d6cf pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2565fb platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb25ea03 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xcb27198d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0xcb286dcc exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3bdd7c phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb3eb8cf __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb70819b dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xcb738916 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcb7ba291 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcb83e315 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcb94d549 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xcbc18a1a __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcbd1df1f seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe93c4f of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xcbf7f776 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcbfb9c7a pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcbfbcae0 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xcc16c330 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc1a03de mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xcc1e464d usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xcc1edb8f subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcc1fca44 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3c32d7 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xcc3e721a ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc4300bc bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc57c6d5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc6986a8 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xcc79f8dc dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc897701 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc8c65e5 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xcc945414 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xcc9671a5 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xcc9d3074 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcc9ec3c4 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xcca2a454 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xcccdeabf attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd01d30 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce91490 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xccec4dae devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf90a2e tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xcd010a72 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd0ce904 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xcd0d3995 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcd1cf616 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xcd1ee843 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd28859e pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xcd3f4ba1 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xcd491ea3 user_update +EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd5179e1 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcd598109 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xcd5c421c pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd69bd3b usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd6f7843 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xcd85ad24 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xcd879f11 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcd8dc0db ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb5fd03 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc7c7bc usb_string +EXPORT_SYMBOL_GPL vmlinux 0xcdc82e8f dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xcdc92a0f irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdca462f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcdcf9fe0 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xcde1644e uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xce08f30e unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xce145062 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xce17f076 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xce18e400 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xce1a479e aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xce28dbd5 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xce33f816 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xce33fb82 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xce36dd9b bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xce3a58f9 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xce445bd8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xce55d986 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xce57a7d5 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xce64800b tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xce6b8004 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce84d0b9 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xce8562b0 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xce8fe688 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xce96cf51 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xceb3052d devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xceb72d32 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0xceb942ae inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcebf335e efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xcec81658 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xcedb11d4 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xcee06283 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee1e290 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef109dd devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcefb1e20 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xcf2686b2 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xcf274424 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf499e19 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0xcf77c379 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf84260c pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xcf8617cb badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xcf87500b iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xcfad04d2 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xcfb53f4f md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xcfc1f63c of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd5a0f6 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xcfe49fb3 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xcfeab3cc ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xcfed22e9 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xcff09e5f mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0xcff27cb0 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xcff4af00 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xd0036c22 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd004fb52 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd0105c79 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd01ab161 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xd01c0364 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xd02c0b7c pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xd02d4127 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd03dfbd6 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd05ab7bd regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06c8710 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xd08056ef sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0xd087e3bc pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xd08ae684 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd09723cc amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd097ae96 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xd097c3df device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd09fe6c5 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd0a0435e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xd0b71026 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cac59a ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e0ffea dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xd1054f98 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd112b97d raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd11c525e regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0xd12cfecf usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xd138332f find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xd147e9bd blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159a9e7 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd1a1feec usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xd1a46996 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b88b66 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd1c2717a snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd1c84678 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd1c8c728 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1cdb3ae sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xd1daf5cf ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f3c9ee devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd1f89055 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd1fbcbf5 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xd1fcd780 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd1fd0120 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd2092ddf spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21895a4 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd22917b9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd22c6f7e cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd2322cf7 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd239b42b devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd239f77b da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd258ee0d devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd25debaa crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2745fd2 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd27c7aed irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xd290bee5 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd2996d93 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b4b47f icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xd2b50beb class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd2bc854e snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xd2be4127 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xd2c37839 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xd2cdfe8a ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xd3146880 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31c68ce pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xd31ca15f dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xd3224c9b phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd32b6afd usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3365f04 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3827bed regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd384c6a8 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd39071e6 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xd39923af snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a65ebe crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xd3bb0ff7 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0xd3cc60f4 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd3d44c78 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd3e1e5e6 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd3e36df3 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd3e833a9 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3fb1f34 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd413261e clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xd417b1a8 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43adf4c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xd43cf1a0 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xd43d7da0 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xd43f6bc9 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd461e1a7 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xd4733650 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xd4865147 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xd488290c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd495bf4f fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0xd49ed66e dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xd4ae7a0f init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4b37e45 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c6bc69 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4cdaaaa rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xd4cdbf1c sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd4d3b246 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xd4dc41b9 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4eddd5e dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xd4f1d5b4 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd4f7cd58 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xd4fb8e37 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd505c61e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd520243b iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5287be6 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd52c5809 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd52e1c7c sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd531ae59 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd535d361 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd541a32f switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd558095a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55ede90 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xd57c63da set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd5881e55 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd5896c7d nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd58f1937 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xd590239b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xd594c26c mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a1852f gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd5a82513 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd5ab1c64 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd5bf1bc6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xd5d14ec4 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xd5dd6b77 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xd5e2dcd0 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xd5f9737b iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xd6043b63 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xd62e0c05 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xd631b646 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd6395f78 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd63a3a4f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd67030ed pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xd670ca62 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67b5e20 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0xd683e258 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xd6b72c24 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd6c6dfad vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xd6d1576c __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xd6e7e25a ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd6e9f1a2 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd6f6e6de vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xd6fe2a96 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd7141dff mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0xd72309ea snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd732a73e __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73d7a0e snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xd74d1774 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xd75096bd scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xd75d8cbe of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd762566e crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76c52b1 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xd772779d __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd77b086b __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xd780dc8a tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd780fffb snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xd79a2e59 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xd7ba6b52 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7f44af8 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd7f4fa6b snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd7fd5c7e clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xd83ecd76 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8402e3f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd848e7f7 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd859503b devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd85de8b3 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88abb39 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xd88eb578 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xd88f42e1 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xd8aa0a29 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8ca8c6b fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8d96c99 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xd8dca8c1 usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0xd8e29731 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xd8e94a21 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xd907acd9 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd908965d auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd9115f6b dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd926f4ae vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9290931 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0xd92e168b i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd93086cc __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd948754f nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd95939bf ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xd95c4354 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xd965b6a1 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0xd967dc9f snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0xd988cc59 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xd989f22b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd9945e95 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd99db32d efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xd9a48ccf regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xd9cf83fc scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd9d72023 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xd9d80330 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9f9a462 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0312ba devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda1c05ba pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xda28c702 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xda2e2383 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda4e50cf usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xda5b6b87 device_register +EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda829d23 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xda835788 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda903cba get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xda9120c0 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xdaa99b59 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xdaae0772 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdabd3d5d dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xdabf849e devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdafa64c4 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xdb028ebb lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb02ed98 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb096a14 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xdb2a7c85 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xdb37206f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xdb488f73 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xdb5f3b7a ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdb61bee3 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdb638e7c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb7b8fae dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xdb82e7b3 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb837883 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xdb896793 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xdb89e90e usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xdba55c63 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xdbbdb219 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdbc51b4f synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xdbc5f1a9 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbf28844 imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf81479 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdbfec0f0 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc03d239 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xdc06d808 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdc09f3af iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdc2af40d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xdc324945 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xdc33af85 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xdc3d691c mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc543242 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6c22c2 nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdc7a790f usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xdc7fb01c ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc9441d0 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc999737 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca67e93 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcb2a485 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcc9ab9b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcca4c34 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xdccc8a87 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xdcd19e2a __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xdce1dfa9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xdce1facb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xdce9a733 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcf22ff5 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcf6211b crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xdcf880e0 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1022c1 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xdd35cdfc snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3f7b5a stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdd594f6a debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xdd5aa315 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd66a306 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xdd66db67 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd744d54 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xdd7fe84f sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd83459a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0xdd8a14ff led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdd92407b shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xdda0c062 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xdda23500 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddb21a8d dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xddbb6140 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc18b46 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xddc8f7ec mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0xddcc235a pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xddce5330 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xddd152ef __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xdddd7616 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdddf85d5 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xdddfebd3 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xddea616d devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xddf17718 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xddfbde1b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xde1c1775 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xde22ac06 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xde483094 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde9cb7dc pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xde9d56c4 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xde9e4645 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xdeadefdb snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xdeae60fe pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xded46a5c iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xdedd0004 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdedd6353 cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdedebb14 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xdee2964d iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xdef162a5 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xdf0b2889 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xdf0eaeb1 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf37d26b usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xdf4501fc sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xdf4e8233 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf56954c stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdf58115e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf61004d gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xdf6fe96e devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf73eca8 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdf76aa4b iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xdf7c1c36 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0xdfac4fe8 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xdfbaa185 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xdfc21ca5 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd4010a tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xdfd40205 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xdfd64b05 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0xdfd89dc0 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdfe22709 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xe00b0f75 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0xe01cc695 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xe022622c skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xe0496b72 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe0510ffe mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0604d81 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe06830ed regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xe08bd9e9 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xe096c6d3 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xe0a1a13f dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe0a80509 usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0d584ad regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0d9f5d9 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xe0dabc82 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe0f723dc snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0f89744 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe0f9948f dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe0fb792a __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe11f25f7 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xe1266eb0 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe13fc1bc ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xe1597903 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xe15decb3 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0xe197f5f7 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe1a4f841 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xe1a89376 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe1b6dc52 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xe1b6eb46 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1bdc2eb rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1bf9694 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1cd3b43 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xe1d3d6e4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xe1e730fb extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe1f3d5ac _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xe2108fe4 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe211df1d devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xe2231985 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2387b34 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xe23d6837 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe24374ec sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xe2456e41 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe279bac1 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe2846d2d of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe28902cf blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xe29c5c7e snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xe29f33db bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b982eb usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xe2d23083 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xe2e0f798 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe2e26809 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xe2f16972 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xe2f1be16 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe2f4deed device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe2ff3aa2 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe30b0aaa snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe323ce66 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xe3250871 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xe32d693d of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe33d4a6b dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xe33dbbbc devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xe3505a35 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xe352a030 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe352e4f0 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xe3554ffc pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xe37565f3 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe38ee641 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xe38f4027 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3b02478 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bd9f37 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xe3c32426 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3c66daa virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe3c7fb18 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe3fec1f2 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41847c5 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe41b2028 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43c81fa regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xe44e5ad3 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xe457fa69 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xe466658d devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe466a423 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe4688b5c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xe46e85cf __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xe483bb30 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xe49684ee fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b365be da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4c1a0a9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4ecf080 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4f390ee ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe4f3e203 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xe4f98c33 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe50d754f raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xe51f6f35 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xe5228e18 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xe5301656 split_page +EXPORT_SYMBOL_GPL vmlinux 0xe54e2c3d int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xe55b6202 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe562a9ae mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe572c228 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe59d1dbb phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0xe5a62ffb gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe5aa2ab8 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5d6bfde iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xe5ef06b0 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe5f501cb pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe5f5e01e device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xe5f75271 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe6026369 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe607dbfc modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe628722a pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62da417 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0xe6542a78 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xe65b6777 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xe66a7dd8 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6a52d43 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xe6ac92c9 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xe6ae20d1 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe6c95d9e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe6cf8fb6 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xe6d83a18 nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6eb7dca ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe6f604fa netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe708694c da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xe71c60e4 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0xe73692f2 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xe73c2430 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xe74021ad device_move +EXPORT_SYMBOL_GPL vmlinux 0xe7439bc2 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe762bbc1 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77f5b5d wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78b644f __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe78bfeeb usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xe7ba1cfc perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe7c7cb35 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xe7d10720 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d6deff crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe7e9a19b pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe7ee60ae devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f2773a fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xe7fcea45 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f39b4 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85e8d83 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe871f0f5 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xe875d134 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xe8775dc2 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xe8853ecf crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xe8953a48 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xe8978467 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xe8987437 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe8a00cb6 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe8a5dc1f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe8cb756c devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xe8db5f38 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe8e7c274 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xe90e4367 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe90fd330 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9140521 usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xe9156091 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xe93dbca1 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94feea0 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0xe955e280 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95c10f4 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe95d507e usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe96c2f9c xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xe977a557 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xe97fafa7 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe99c8b3f wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xe99f4020 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe9a9857c crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xe9ade28b __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe9b76e23 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d8cf8e ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0910fc sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1bfb0b usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0xea1e3d9d efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xea314986 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea77f401 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0xea888ad5 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeaad6ec3 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0xeac4e5fa crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeadc0f75 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xeadeebb6 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xeae08a85 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xeae093f4 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae0fcaa class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xeaf1fb9f pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0xeb0ba043 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xeb134071 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xeb1c73b7 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xeb2648b9 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0xeb3d3922 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeb5a2252 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd4f15c devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xebf4541e devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xebff02b4 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xebff1ee2 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xec136c56 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xec2734c8 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xec2c3c56 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xec3425ea tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xec3b0475 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xec421908 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xec6fea0f dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xec72b5cf device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec95418a __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xec980034 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xeca0bffd of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xecc24da6 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xeccd8588 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xecd42975 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xecdcac33 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xece7a5db tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xeced74ff pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xecfb622e ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xed1cb3d8 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0xed4681bf sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xed49e88f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xed513647 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0xed54a75e __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xed56a71a sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xed6a5523 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xeda720e5 nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0xedb4cc1c of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xedb76e34 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xedcc1b7e ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xede80914 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xedf362d4 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xedffa5a6 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee03b097 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xee062992 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xee13feca get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0xee242c7e ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xee3521bc scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee4acc01 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xee4d66bf serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xee5dd345 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee5f1df4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xee60dca1 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xee6580cf mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7bfb65 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xee8f5b04 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xee926e86 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xeea08318 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xeea7c6ae inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xeeb96eaa __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xeecf742d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xeedcf514 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee5fe32 bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef1522f2 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef302bbd pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef48923e pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xef4a5e51 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef65fb6a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6e4540 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef793703 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef8cf0fb fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa8cf78 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xefaa7f23 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0xefae629e vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xefb262fd __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xefb501cf scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xefb7fc8c mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefb94f19 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xefde06ac fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xefe0400c cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff82c99 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xeffa3eea dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xeffc5736 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xf00100c7 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xf014a2c9 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0342969 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xf03c9ddc fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf07109f6 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf073a9d1 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xf090b25b ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0a389b3 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xf0a62239 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0b22b57 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xf0b781d5 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xf0c4bde2 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xf0c5b4e9 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xf0cc2ed9 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xf0daf909 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf0ef0a6a dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0xf0fc61f0 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xf10c4506 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xf11a1d80 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0xf11b43fc inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf131f604 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xf13281fa __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf14dfa89 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0xf14f59ad pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf16c56e7 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1761882 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0xf178ba18 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1954dad fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf19fa3ec sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf1a585e9 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xf1aa6582 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xf1b12387 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xf1cf88c5 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xf1d2c6c1 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf1d9415f dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xf1e1a506 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0xf1e36f1e pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2432088 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xf24c3f9e snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xf24e4b47 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf25165a6 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xf252181b blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xf2695e5c dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0xf27cc4fd devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xf27e593f tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xf285d6a3 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2af60c3 nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0xf2b9523b skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xf2bd0bc2 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xf2cb77ba usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xf2ceacd0 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xf2d7cee7 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf2deac87 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf2e46cfe blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3075ef1 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30d2421 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf315dc8e __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31742b1 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xf317cb4d ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3254aa7 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3416e02 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37a7bbd devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf39b3896 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf3a6409f snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3e2e3fa crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xf3ed2a50 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3ee1422 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xf3efcfaa __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf3f0b45f anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xf40d4583 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf41cdab3 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xf42658e8 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xf429e0c8 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xf42e1861 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xf438ee93 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xf43935a2 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf43b052b crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf440f86a lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf448f7f4 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xf4493913 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xf4639c42 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xf467367d __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf4930f0e sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0xf4954b14 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xf4955bcf devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0xf4ac30b6 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b07444 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xf4b20089 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xf4c24981 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xf4c432df sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xf4c46864 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xf4cc184d irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4db40d2 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xf4e32640 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf4ee59a9 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf4fcdfcb screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xf4fe9c56 put_device +EXPORT_SYMBOL_GPL vmlinux 0xf5046bdb mmput +EXPORT_SYMBOL_GPL vmlinux 0xf525facf gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf558f9a6 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf5666baa rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5739120 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf57948d7 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf5817bfc inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xf586344b fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf58e5fcc wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf599ec60 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b3ba3d usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xf5cca514 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xf5d6b7e1 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xf5d9c715 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xf5dc2115 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xf5dec5a1 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f67ba6 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf601a789 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0xf6135d77 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xf61a760b __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf62800d3 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf6336273 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf63dd13f ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf660c0e1 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf66fe121 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xf6709d48 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xf6761774 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xf6891c50 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xf697345e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf6a6d84b devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xf6b5256c meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d3f3a5 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xf6d8b57b fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f50b91 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xf6f62597 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf6fd00c5 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xf7025cba sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xf71ed4e6 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf73170b4 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xf73f743c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf746e4fe irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf7536271 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf76defd3 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf77924cf dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xf7975ea7 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf7bb0f97 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xf7bb9efa dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3e4c7 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e86331 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf7f50186 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf7ffb20f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf80164a6 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xf80a9988 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf80c276f rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xf818c0af sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xf8228d27 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xf8245b3d list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xf82bd210 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf82fd959 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xf8467426 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xf8562159 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf85d9bc2 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8777874 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf8a72e07 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xf8a80bad xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xf8acbcca fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf8bae1b5 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xf8ceffd3 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf8d15406 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf8d3c6f0 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf8dff103 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf9015d31 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf90b4d8e serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xf9119187 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xf93e6d64 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf94048b8 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf9529105 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xf952f99a mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf962e145 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf9654c24 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xf967571f hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xf9677bd4 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0xf9708a4e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xf973b91a fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xf97a8daf genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xf98cae42 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xf992ecbc device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b9cf3b rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xf9ba1d83 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf9c27064 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0xf9c65af3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9ce81cd vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xf9f00c62 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf9f05b9a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfa0322f6 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0xfa0528ca cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xfa0b2aad usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa10765c devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa21eabb dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfa2b61a9 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfa38fa81 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa3fa854 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfa4b53d5 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xfa526add pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xfa52a09e lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa711620 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xfa78dac0 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xfa949c37 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfa951e36 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xfa9fcb93 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xfaad3c2c i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xfaaef0e9 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xfab1b945 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xfabeae66 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfac718b0 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0xfacfeabe pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadeaa12 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xfaf0fd47 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL vmlinux 0xfb03db21 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfb116371 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb2ef510 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xfb303aba ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb325a31 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3a16be rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xfb3c4c2c fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb704447 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last +EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xfba91875 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xfbaa438e __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfbb2c4ca ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xfbb99a84 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc28ac8 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xfbc9e39d devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfbe3d176 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf6479e xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfbf79811 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xfbff2f4e crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xfc016016 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc172fcd of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc3ac42d of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xfc3d8b6d usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfc490b77 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfc503e70 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0xfc5272e0 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfc59147f dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xfc7c9014 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfc87b11f crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xfc8fe5a7 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfca02a09 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xfca2b6ac power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xfcca09e7 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfae6d2 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xfd06a9ee serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd0d532f usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xfd20c7ae devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xfd276516 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0xfd4239ca of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfd53d9cc efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL vmlinux 0xfd5f6198 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xfd5f7412 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfd6a303e musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xfd70c1cf stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd8a31c5 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xfdb51e80 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdd41673 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xfded06e2 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0xfdff8de9 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe113ce7 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xfe16056f __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xfe3947a5 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe51cb1a vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe7a3e79 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe8a9ae1 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe91679f pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe96da21 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeba73de wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec71418 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed48c38 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfedb43a2 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfedbd5d9 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xfeec8bae screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1f9103 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xff20a1bb input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3145ad blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xff37f846 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff5754b8 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xff6ea43a fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xff72dc7a snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8de29c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xff963e3f edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xffa8adde of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb16734 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xffcba4f7 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xffd0152e snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0xffd1123f save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xffec63c7 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xfffe2adb bpf_prog_put +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IIO_HID EXPORT_SYMBOL 0x0a1232c2 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x0cdda331 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3bdf6f38 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3be3f1da hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3c1123c0 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x40d2b98e hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x710e8999 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x772f2df2 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x78c410af hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9c54074e hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xcfbb062b hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd54ed102 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x08bdf1f2 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x56fb540e hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xaf3517d9 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xfb1a7b2e hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x51ebab23 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xe1f78e0f ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x243a4f4b mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x34837764 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3af5d14d mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x698e01c8 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6f253730 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x75dfb818 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x83069b72 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x856a25e5 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x90415f11 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9c2c7d2f mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9ccef4c1 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa57be1a6 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbcf52873 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcef5ab70 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe15d6632 __mcb_register_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2672f5d7 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7eea0bc4 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8ab66910 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x935a75c7 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xec629f2b nvme_put_ns drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x00397a45 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0f055674 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x12382348 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1940b09b pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3057a78e pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x346e9e93 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3c7e8ba2 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c5f06c9 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9224e69d pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9401067a pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa486f708 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb9b16ce2 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbfa5912f pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdabbe7f4 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe1f50851 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe3e37f76 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe5092a2c pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfda4b82f pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xff8fe5b6 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +USB_STORAGE EXPORT_SYMBOL_GPL 0x099aea32 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x16070f6f usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1ad128d3 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x27d63f1f usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x282f33b3 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2cd91dc2 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4bcde4e7 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x557a6e20 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6210d799 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x70f48cff usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x71c4a11f usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x79e94db6 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b547b74 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x831fb0d3 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x890a3a29 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9bdef0a9 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9dba0147 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xad570917 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb95543b1 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4acf65d usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd31ca597 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdd5dfd7b usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf5d15fe3 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfafd2d78 usb_stor_disconnect drivers/usb/storage/usb-storage diff --git a/debian.master/abi/armhf/generic-lpae b/debian.master/abi/armhf/generic-lpae new file mode 100644 index 00000000000000..b3738f020023a0 --- /dev/null +++ b/debian.master/abi/armhf/generic-lpae @@ -0,0 +1,24961 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0dd3b01b crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x31765019 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x863ce0b4 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x06bae609 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x13d88c77 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x20b81494 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e709d0c cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31663902 cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x442fbef3 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47108de7 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6df53fee to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ca901f5 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9daea03a __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf75eb98 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbd6d46f1 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc45d3f44 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd775941f devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb9a1a9e devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe0dd148e cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe62e6a30 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfaadb1e2 to_cxl_nvdimm drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm/crypto/blake2s-arm 0x5c9b932c blake2s_compress_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0xc832c670 curve25519_arch +EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x1c3e6e5b poly1305_init_arch +EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x6ddf27bc poly1305_update_arch +EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0xf39f5240 poly1305_final_arch +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x2d9dca4f crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x759f5b80 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x0f051164 xor_block_neon_inner +EXPORT_SYMBOL crypto/blake2b_generic 0x99d7fe16 blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x09df8d61 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x84524113 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xac708c71 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xc3e9976b crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc906a2b9 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xe42aec3a crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x67abafa8 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x6cc27cfb crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x8e35df58 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xbb1efd1f sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x73cc246e crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xc6835872 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xe724fc2e crypto_sm3_final +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x1bf141e9 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1163e6bc bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x6e109d18 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x39330696 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4bd61ecd pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x50eb217e pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x61f9f038 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x63dacc96 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x695f1e03 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8422147e pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x8d782d82 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xad79b5d0 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xd790c3f9 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xf7106b47 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xfdfa0d7a pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x503fd3b1 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x8ece9660 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x07a66029 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0f0a88a2 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x19801b30 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x219a10b6 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbf29b33a ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1e2572e9 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x212d2c4b kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3eab3b64 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6546a42d kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6e902834 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x94d4f1f3 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x9bb5adbf kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa7dbbb78 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd025f147 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe4dba71e kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe56cf273 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xee31461d kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf7e4c98c kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1d12522f st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fa7b66d st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc9dabbc5 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xcd498c3a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x5a19106b xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x77c3e871 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa6fa8329 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2ffbfd35 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x78b4d82f xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xacdfcd01 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x42d389b0 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc1ef5810 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xccef4642 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x03376fac fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b5d991c fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d523821 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2512bcc3 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x35efdc4d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a43a3a9 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c6978a2 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x51fa9914 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x574d4d1f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x601a470e fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6574741e fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x675f1af8 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a4301e fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x77908dca fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7890dd0f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f7e09ad fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f968b26 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa0274fdc fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaac22005 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xab265fc9 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4fe7d46 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdab30827 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb82a5f8 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xebca1cc5 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xecab9730 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2bca2bc fw_core_remove_address_handler +EXPORT_SYMBOL drivers/fpga/dfl 0x936cc710 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xd072acad __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0129ed70 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x015d7e52 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x018aeef2 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01a47039 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01fae459 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x030372a4 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e6d918 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04efef08 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05033dce drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05245ea3 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x073849b5 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2d97c5 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca43cfc drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5200df drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec14ffc drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f5a140e drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x100f2212 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10eded16 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x128b37bf drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12910294 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12fb5c25 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14073ce2 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x140e4f1d drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1693439b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c60903 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c7ab2a drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16da84e5 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e22ef0 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186afdd0 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x187d469d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1899a024 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ae47fd drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b819be drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e1267b drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a7427c7 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b25ab42 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b61da5c drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c109f67 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd2cbed drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da868ec drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2454a5 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f90fee2 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fe5ce40 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fec0f76 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2031659e drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21346671 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21902f8c drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x222a42b2 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228c5035 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e90ca7 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f4c8e6 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2565e5c4 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x257321ab drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c27a7f drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2662003d drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x267545dc drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27519966 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x275f167e drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27780181 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d8b444 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27eff31b drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29bf4e04 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae851dd drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2541f7 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b403e64 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0b23b9 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd131ba drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ceec1a4 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7ab4f3 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e06fd99 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4bf2a6 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee70c04 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3038882e drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e3e098 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x316d0a22 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31adec43 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31fdc034 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x328d9245 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c27826 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b30376 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x350b94e5 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35185edd drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x358a0af0 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3617f735 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369088db drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3753f4c7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376a753d drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b90dd0 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e4f7c5 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392ba101 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9cebc8 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b37c33a drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b66220b drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c06a64d drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d3e706e drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d85aae2 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e4b8508 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e831021 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41132079 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x418c7e14 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4364b9ef drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x439f40b8 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f59339 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440f13f3 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x462fa275 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x463bc725 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4730e5eb drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4750bdcc drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a19444 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49520291 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x496a6bcb drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49bdfb1f drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49eacb88 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aadef86 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bfbbf34 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9b437f drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8f320c drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e703dd0 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3a8434 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5fb1b7 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6b1cd5 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff9a923 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5178cf16 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52374091 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526daad1 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527a11bd drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52de3851 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53be9833 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c6160e of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d766bf drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53f902fb drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x541ba277 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54f84731 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c46d18 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5675900e drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x568f2591 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e28a05 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x572dd120 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x574b27af drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5761427b drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59102026 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf48798 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c25b870 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc0b8df drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e3b939b drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ebe69da drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fba0c9b drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6058ea91 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60bfcef2 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ef73a3 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f474d2 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6243a57f drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6261ab52 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f1a0c3 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63910b3e drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a059c9 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c2e2de __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660c6502 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66afb95f drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66ec388c drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67293e12 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67789a67 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682abed1 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68745557 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a10d9f8 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b025a0e drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f69b0eb drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7d7c3c drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff1e2c0 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff4c00c drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703c3e22 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7079c0d6 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c38275 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719478f2 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x755692ae drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75626cd1 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7590f30d drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75993396 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7615df69 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764911f0 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76f8a174 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77259370 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x782b32d7 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7877bbd4 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x790566cd drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79700d69 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ca26032 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf43922 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f04000a drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8122e8a5 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823944c8 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824cd18a drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x847f2e12 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84a15e2a drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86558927 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e2f8db drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8834caa7 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b4a5d6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89245b6c drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2a600e drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a682cf6 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b4c4af7 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c767d85 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfa6a4e drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ed359d5 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f736d8a drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff87f86 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9050816b drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90be3e8f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e286d8 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f4fd81 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x930584ca drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9350588e drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93deb576 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ff42e0 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947d0ab4 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95293a31 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9584122a drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a5d2f6 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c7526d drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9795cda0 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98488c6a drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98bca792 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x995a239d drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x997a5a3e __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99b0f7cd drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a2c162c drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cae10f6 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d062dab drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d585720 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d85be9c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ee41b17 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa003b426 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa091f56e drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa11b665d drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1225926 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa132dfb4 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa354492c drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f42b0f drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa483fb5a drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa56deec4 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e7962f drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa620c9ce __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa643e24b drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7697175 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8da2cf2 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa75b5f1 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab21ca8c drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba36e7e drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc963f0 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacccf708 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad49d0c0 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeb62f7f __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee1ebd0 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf5991c3 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb14cf9cf drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a5f21d drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22d3309 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29c987b drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb39db34e drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a8c86e drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb41d9212 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e25b92 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52cda4c drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59dc4c3 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a01c00 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5acd397 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f95d78 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78f0cd8 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb796c5a0 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d8093a drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9376096 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96fdfa4 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97321fa drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9740cba drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f0ada7 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba421e8e drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4f150f drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaf4a268 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb2751c5 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc39958b drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2d5c28 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0829f8e drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0ce359a drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e868da drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1dad50b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22b994f drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24d67b8 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc404d27f drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49e748b drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f97f89 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5454ed1 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b74926 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67f1214 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e3390d drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7caa8cd drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88e0920 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99ee773 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc0d9928 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc2a2e3a drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd6b9989 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf00ca8 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce08cdae drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce32ff32 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce8c89a9 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb39207 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5edf96 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9f84ed drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe3e841 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0462fed drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd081ca91 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd11c2415 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f5ac92 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b0b1d8 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3bbc613 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd401ff10 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd502fd30 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57c4f44 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd582c065 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61cc179 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd705cbc5 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c37f92 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c6c2a0 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda82f4b9 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0074ed drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8a86ae drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb20946 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb64571 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7a2ed5 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd03c258 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec46e0b drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf6bde35 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc22f29 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe071be5e drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c6b050 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0dd9e06 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe11e497e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1207da8 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33fe90d drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe378cfbe drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe42583f0 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ab8014 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe58ca930 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b4432c drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c33e4f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe806c811 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8faf734 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9053a50 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91214c2 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea336296 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb43f588 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb85bedd drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecca251e drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed6e84a5 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee7957e9 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef346cdf drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefd21275 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf04ffcc2 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b3dd4f drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b5d699 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf157c159 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f3b157 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf22febf8 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ea66a6 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf307b0b6 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5004bf4 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5475e45 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7c00b75 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b3e2d8 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b45fcb drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9892633 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa595c10 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb0529d3 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb64da38 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc000fc drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd81f29b drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeae44df drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff44a776 drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0223de54 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0336180a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03948deb drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x052224f4 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05af2b47 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06173611 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06646fc3 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x079b3af8 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0800420e __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab6492f drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b37dc13 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ccb31db drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cccb13b drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d44b0dd drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4e5117 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0db7e178 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e4ff9b4 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e53128b drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x109aecef devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10dcd035 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x111ca35b drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11ba5d7f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1254186c drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x141384b8 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e27559 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x153a952c drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x166f5750 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17139bba drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b5b2d7e drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d8aba27 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2019e840 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20cb5775 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212a8ad0 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2133a67c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b78e18 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2321c07c drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x248287b7 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x258d56f0 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262c1bbd drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f8987b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27cb7b92 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27cdd6f3 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x280a9ed6 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2922fd90 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x292761dd drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x295b40bc drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29726cfe drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29859fd1 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ace6b62 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e58e525 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f45836a drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3381696b drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35e26437 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x376e6747 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b8c715 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39d3c45a __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a1a186e __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a3e66d2 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8835ca drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aac7290 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b05c8b0 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b98549a drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b9b8406 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c02fdfc drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4fa79e drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3edca915 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fa9f16e drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42018482 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4398f797 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43cb48db drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445b1ad4 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44aa2f92 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4616eaf8 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48318d4e drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491b6d4f drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49ec8cc7 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49fe6943 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a146111 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a1d8d6b drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ea59983 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f0b1938 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x503e6a09 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b465ab drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52fe90fb drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5312cefd drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537e291d drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5399f971 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53acc933 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54905a17 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x558051ce drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55fab436 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x568e0aea __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57fa5ddd drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5895adae drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59760432 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a7201a6 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c3ae1c2 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d917e90 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a7687e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ca2762 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62e10a09 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6419cbca drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65640d30 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67242115 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674347ca drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ab178e drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ac201f drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c88d4a3 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c954fad __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c9c0a8a drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ca5a651 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dbc5fb9 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e0736ca drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea0c0e9 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f0368f2 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f98139e drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fcf3f0d drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719317c6 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71d23e8a drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730294d9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e73e2d drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x740c3a31 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77752915 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77808ad2 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7832c824 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b951f1 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78def7a5 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a0f5505 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a1d9645 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dca8f2b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x823b38c8 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83237f82 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83492b8a drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8477944e drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84785592 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85946717 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86a7343e drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e8ffb7 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x870fd0a2 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87f7dfe4 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8844f265 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88c6ad06 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8caaec01 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0598f6 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e6d7e8b drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ecece38 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x901c034b drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92e9968c drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x949836f7 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95571d42 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96632d7f __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97213915 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97355105 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x990313c0 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99652f3f drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x999205dc drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a322613 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a568406 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a7989c6 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9baa1ee6 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c2fc076 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d11d56c drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa298988a devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa320061b drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa43eb473 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4b4b09a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56b3048 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa58fecf2 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa617bbc8 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabff0dfc __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf79210e drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4ebe110 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9d342e7 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb4983a0 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd07d1c0 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd845af4 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf7d0f57 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbff18dc5 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc16eb873 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc37c830d drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc41cd721 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6147331 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6a6eeba drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6bc2dc3 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc771f332 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c1cf0e drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc80e262e drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc83d43cf drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89670c2 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8ff45f4 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc97b5381 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e20021 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f9d5ec drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc8571f3 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc88d56f drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8c20c9 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a34c4b drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1b2ff1a drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3a8dcdd drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b91283 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c0574a drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d42409 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5b3e31b drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86c7f6a drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a272aa drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8b0297f __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9191047 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9a9787c drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbaf8247 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddb866c4 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd6b62c drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0581e9c drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b43833 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0c1ab06 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b15938 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe33ccdfa drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe368ef62 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe38e7138 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6776276 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe73f8d6a drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c19085 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9f9db7c drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb0819aa drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb325e4d __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb6d1c6b drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec7ad1fc drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed0d4ddc drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed9ac119 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea3e5f7 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeabb2e7 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee4a42b drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeef41353 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefe863fe drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefed3678 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0d909dd drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0ecf918 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1855e65 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf198ca9f drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20e30e6 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2f93ac3 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30a6ede drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3ab4151 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b967b5 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5ea9951 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6de2ff5 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6e51f20 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7fa922a drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8457b7b __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf876f495 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb54e415 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc72d243 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcc0f593 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfedd5e55 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff04b280 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff257f5e drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa2a602 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c6a9f91 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x30a7ce82 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x342af747 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x383f6826 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3b2cb17c mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41b694f0 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4806045a mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x62a56c04 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x79197e1f mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8b486882 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90905582 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc60ec5a2 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcd691e2d mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd54ff2e1 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdde63e3c mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xea711b7d mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xed23614d mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x49de616b drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc196ac49 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xcb0a0d87 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xda25916b drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe36b6339 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0b70059d drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1461c718 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x151b667f drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x166d9a3e drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x55976be3 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6546702f drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8ead0bf2 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x907ee7b0 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x95fc821b drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb748feac drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc77f9e97 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca2bdba3 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd96aec69 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7a5d032 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf1fb5631 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf23ae9fd drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x5adc938c rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12c515ed drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x15880e26 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x28800ce8 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2cb863c6 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d38704e drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x412bc8d3 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4bf8e34f drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f73b61f drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x66d8c903 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72fd81d6 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x731661c6 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x763c5adf drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x798b3b7f drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d9b50b7 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82ba78ab drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa07f894c drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3ce2919 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa96a45c3 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc540263f drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd222c2f7 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe04e1e4d drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe2f8dec3 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xea8dd3c4 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfdea5709 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x030c8cc2 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0835c649 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f4deff1 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x100cc6f1 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1218c9f4 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14ebb1ac ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18bc91b5 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b6d69e0 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f5bc5f4 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2412432b ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x246ad2d4 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x260e3a98 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x264735dc ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2772547c ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28a57711 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2eda5c21 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31948c0f ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x320782f5 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a9fa296 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fff1c40 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4015bd5b ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48441629 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ba6a61e ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56ac5604 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62944d2d ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64bc9415 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a35b671 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x742d4a5a ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74db6709 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x778bf6e4 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b76686b ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8129bfee ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ce285d1 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90fa5063 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x957bfc8d ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a6d68aa ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f12f4ac ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4c31af8 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa94a5fb2 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0143d92 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb90594f2 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaed1221 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5d266d0 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7b1e02f ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7f5eb21 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8b51d82 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0dce396 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe491a5f1 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8dbe0c4 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf19b8301 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b42287 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa6ee05a ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfedd598a ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/hid/hid 0xe35d7056 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe28cdde7 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1d8374ef i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x444fcf90 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcf83f512 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa7ce5b1d i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcc8bc323 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x611b9511 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x13f74eae bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x2783f9a3 bma400_probe +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x4b25719d bma400_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc3b62c58 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd00f555e kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xfd97ea59 kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0403f84d mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0d055629 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x10204db7 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x110a4a80 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1b4dc57b mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1cba3878 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33bd4815 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x583be6eb mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5d6eba7e mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x62af48fa mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x716dbec1 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb2ddf386 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd55302ff mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdeaf9124 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdfe5a320 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xed839b3b mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x86a53ced st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe800c61a st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfaed11a7 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x083dc8a8 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8054e29a iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8aeea694 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf2e97609 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x60bd692d bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1adced88 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x546c4504 scd30_suspend +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x6ab0a390 scd30_resume +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x384dfce1 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x45ebe1bd ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4aae7c77 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5979149e ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x82f419d3 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x96e03e2f ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x986399f3 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd2ef436d ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe497a94f ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0d1db540 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb80febc7 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc742e75b ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc825f60a ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xea8fd56a ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x03cdaa21 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x28a56640 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x6f24ad4f ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x090da45e st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x35067a9a st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x418ad8bc st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x444adfd5 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4befbf98 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4f23f9ca st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6116d64d st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x81064812 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x957034b0 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa26973e1 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa74cd979 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa8841ca2 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbb059dc5 st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe044d79b st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe63bea9a st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeae3cfbd st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfa488c67 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfd3f0faa st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x58c75717 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x9134b1f0 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x005b0e6a mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x5b4681c9 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe04bacba mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7dc7abe9 st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9dc2d7b3 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xa7cc397e st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xc979bf11 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd8ca644b hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x550e0f5a adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xeb133e10 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xcd39e710 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x48ee2638 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x8a5f386d st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xefdb7078 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x08cf9d6d iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x260633e7 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d95f205 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x3a6fa7f5 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x4c20e4dc iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5c3090d5 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x64ad7236 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x6d16f6e7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x7ac78764 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7c9d4aef iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x7fe250e7 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x819f6a4a iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x87d613db iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x99a39e60 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9e828c2c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb2254950 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xbd9adfc2 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd0232b1b iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xd0f2ee66 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xd2c7fd8e iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf1c63518 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xfacd83d9 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xfe409700 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xf2b70f8b iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x09071622 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0c20d99b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x300c72d1 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbda122ca iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x05465bbe iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x25b02474 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2982d967 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4ba0c296 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7f3616cb iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa35e31dd iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x7be3961e st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xdd6e50f9 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x201b717f bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4b68aa51 bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x572863af bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xf61b64e2 bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x60643516 hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x8b003e03 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xae249ac5 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe5ad6806 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8e4811b9 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc02388ca st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xec336048 st_magn_get_settings +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2d6c5fb3 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb55c8096 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb881aaa9 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc7ea82d1 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x6cc3f571 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xa17ef7e4 ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1eef5e18 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xdd9f90bf st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xee64ec54 st_press_get_settings +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d5e1887 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4926928a ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51c3a70a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51e9e725 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x79a8d844 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fa800b8 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x837d5102 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9016b38b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91571e45 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa10c9355 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf1667dd ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcc5e5a0e ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd66ec98 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd04880fd ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe46dbe7d ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0176b145 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03ddf189 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x047bc5d6 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05fbc32e ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06850b09 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1146979c rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x138031dc ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1669cf8c ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1774bb59 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a2824bb ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aa721cf ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c7c1129 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1db81041 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2aabe3 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f1c4dc7 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x209f790c rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20c7c93a rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d1de43 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23f9f540 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23fcee5f ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2663ec15 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x277d0e2f rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b4c2b95 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eef4cf8 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30613c46 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30e72880 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x312dd123 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31bea37e ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3352d372 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34d03843 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x350208a6 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3547c070 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36ff798f ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3802ce75 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3858ec39 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39e104a4 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b1020f2 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b85d4ea rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c7ea223 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e29b2b0 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40009dc1 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4064375a ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4074b2db rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x412dcdd6 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42bad75c ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c307b ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43c67f34 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4492b754 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4823a71e ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4944d403 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cf46fb4 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f00e5f9 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f168413 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5053d9bf ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50929ff6 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x516385f5 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51a9bbc9 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51e7c4a5 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5268f577 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52c9addb rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a8e309 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x547555bc ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x549e9cce ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5502ade1 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5536089b rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5580d84c ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x572d8e96 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5823810a ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a79b539 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b825402 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bad06be ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bde3be3 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c38fdd9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2caa66 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x614f2a50 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x642d9fa4 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65453504 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65f8bb03 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66df9e38 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6907df24 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6965e205 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa22975 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ac68af0 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f0392f1 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe631ad ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x706d9e3d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72eef3ba ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7317cd51 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73e80858 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ce3e15 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x753d01ac rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770f0578 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bcf1599 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x800dd545 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80f4d343 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x810f212c ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8277395c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x840221d3 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85aa249e ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x862f5ce7 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x873b7a13 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e22bfa3 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fbc5059 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f771d4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x933e6677 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93d23685 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97931d22 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99616dbf ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aea601f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b7f3799 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c0ada52 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4df17b rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f4c4d9a ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1e118f9 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2a9351e ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa31b41a0 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa392d91e ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4484a4f ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa504d3b6 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53acb73 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e462cb ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8485313 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8faaf29 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9bc83b4 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa07f609 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa75e4ce ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa79f1e4 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab329c9b rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabcfb585 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad118dca ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafc7fea5 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0009ea8 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a515a1 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb20ecaf2 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb354baa4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb379bf17 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb48aad62 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54f1495 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb551e942 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb583e668 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7215277 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb764e258 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb96841d3 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb0f8560 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdee0bb1 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf3241cf ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1138903 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2da9993 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc404d8e7 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc482d2fe ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4975931 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc54e398e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc576f680 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a9e10a ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc909d9de ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc95f289e ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9f3f3d0 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca5176c4 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaa28ebf rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b7674c rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd51ab710 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5dd1b0c rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd926435e rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbe43ca2 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc8439ae rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1b43bea ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2b314ed ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe58eb1f8 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8079859 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9855e80 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe98ed7ac rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d49137 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea3b644e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0a0f161 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf12f1b4e ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf28b45f0 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf33e20e9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf37fba67 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4b92b7b ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf589696c ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5d77495 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa3cf250 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfce22738 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd13ac5a rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff3189e7 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05da50e5 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x105b6647 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1931746d uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28cbbe26 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x381c635f ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b00cd16 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x448de71f uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5a6c6942 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d35d17d ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x704de9e4 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x70b0bc1c ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7384a7b6 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x775e51d5 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x806f0afa ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8d3915c7 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dbdd26d _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x970e97e0 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x99eec571 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1ea8966 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaabb3206 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac6b0000 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf7dd94e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3889264 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc82d6f23 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8a76e0d ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2240bc5 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd3ec31b7 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5ac13de _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdee9240d ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe94288c5 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebcf0393 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf133fd13 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x090ffe6a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x34b0bb5a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x514e7421 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x89eda981 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9e3b967a iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd66558bc iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf8dfb454 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff0bf8f4 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09fb6ebf rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1aa8c0ee rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f0905ae rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23331ca8 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x296109c8 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e8891b9 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32626706 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x375d14b2 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37fd6b3b rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3acb123b rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d3fe353 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x480dff6a rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e0984c7 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56b5b740 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57d8ee62 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b4b4cbb rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x623dc435 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x628a855c rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64d38667 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68f807d1 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75108555 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8158cfcf rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8bd1e6d7 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d3c7176 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8fce520a rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x929c55a4 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xacd22304 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad30822c rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb47f2fb5 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb65b6cd8 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc42f829 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdbe54a37 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe104c281 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xebf1e3e2 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x18c533c0 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4d928464 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x73732953 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x93b31da2 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9617b4f7 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaedc73fb rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf1e420d5 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x095a25f9 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3086cb56 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3fda615a rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9fd97053 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x176af2fd rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7759d8f3 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x85e005b9 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x99d5f0e6 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9e0e8b6a rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc7955713 rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0c5a229b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x20c9dddf gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x298be16e gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3d58d802 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x55ed7976 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ae23ea3 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaa3f02c9 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf50919b4 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf8f927e1 gameport_close +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x22c342bb iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2c3b8f01 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9edcb7a8 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x9e4ed7c5 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x25d35b88 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8d8d2525 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe99a5f61 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf4854e5e cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x740ee233 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x21eb81db sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x64ad0527 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x73cabd5e sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x759063f6 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf3ebcb33 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xab97db25 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xff957ce4 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x642e64a2 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x8229857c qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x142f1f79 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5bbf23f5 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f3bc3e7 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb704f9c5 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf2d5e301 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x73f2d015 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x88da8972 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8d9f5d31 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbea7f1ed mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x57517b5b mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xabf4803a mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x055f3568 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x082e4611 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1144c359 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a9f6ffb mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21b7a763 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x351b3834 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e571c53 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41e9ab61 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f34b783 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5426259a mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56fc6463 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ecaf728 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74b85ffd recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d1032e0 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9e84b000 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9e81742 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5ccc003 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb791cef5 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8474699 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf70fc41 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xddbd4e6a mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe13a49f8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb517055 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x19b590c7 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1a7f66ea ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x72215819 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x007b7386 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7920e968 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe3e0879a omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x7e194803 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x824e21c1 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x8c8138a4 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xd3040c48 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x08b14bea dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0a9f8aa4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6cc9ce10 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xae7550b7 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe3565c5b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfe209d60 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x30a2e29b raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x38cad728 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3644a4bb flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x43427aad flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77dde1af flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8949acef flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8bf6e830 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92b56a51 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa3956416 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6d8c667 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc01da3e5 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd528a14f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdf80c7ae flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe418f8ce flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed3f3646 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x265166f4 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xabfced70 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd87eb6d5 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf1633492 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xfcea808c cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xa83f816a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x333263b9 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x24d8cb6c vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x926455c3 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x27fb85b9 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4020de4a vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4026898c vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5f9daa42 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb5fab569 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc7f0db8c vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd1ccad5 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0859147d dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x220bae61 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cd9ea7e dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3333571c dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x346936e9 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3793bb49 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b86f739 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c659c8d dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6960b7f9 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x790f2aa5 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x854fac41 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x954caaf5 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98d5b650 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a22ccc2 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaca8a95a dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2edd80a dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb562c485 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7feaf5a dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe54c6fd dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc2a5cfc7 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4426d5c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb3e02c5 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf07cfa4 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1bbbefe dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7a1edab dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe088bd62 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe39ede51 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7367529 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf3e65806 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x4165ee1b ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2b8f633f atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x112e142a au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x19c5ed93 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x20d79a1c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58f9ca67 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x89edbafc au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8c691864 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9143ddbb au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb7add187 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd94e3ca8 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc370f921 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x5826367d bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xefddf605 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe0a9bfc4 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf4cdbc6a cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5d2c335e cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x70fb6be2 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xba30d4d9 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xd8e4f415 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1296c26c cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2e642380 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x88ce3a94 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x07802ea5 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcc159333 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x1e2d24f4 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5855f5c3 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8e00347c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe281bb12 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfa7e496a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfe9b2082 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x159cb1be dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x26af279d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x39459816 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4032d236 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47174490 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4db4e657 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5c043056 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x60c1b3c2 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7dd83fdc dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9eb9fdf0 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc02d8795 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0520553 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd28375bc dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe7b5432c dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf3640bad dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x2b0113d5 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4476ce20 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x481654c9 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4e7f535c dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5676f96d dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x75f12be1 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeb20fe71 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x54a58e16 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5ddbf251 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc88117b4 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcc684703 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x8731bd04 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x66e82435 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x001f817a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3351681c dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x46f5c5c5 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5190d436 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5f2a6ffc dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x951e8242 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9629d99f dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b86a6b6 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9bc19f05 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb3cfde5a dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcf53ba2e dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd9c42088 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe77821e6 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x453cb8b7 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5d6906cf dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7fe7b577 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf2d75c08 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf307a219 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf6c23d99 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5b8acdd2 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xf8a4119a drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xfe31005d ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x6c436923 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x39d945b3 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8f2e9c5b dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x921761db dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x085a0a0c ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xcca12e69 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xf466153d helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xfef78410 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x17baea5d isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x898ef688 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x58df91f6 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x35e64ceb itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xd6479abc ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x8bb1c0ed l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xb1fa51c0 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x7444c5b8 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x0922d635 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x818ec43c lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xb625ea89 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x58d1a83a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xb9ea6273 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x5979681e lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbd492ed2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd36c0b21 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5ea152e4 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0d2430a8 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe67cfb8a m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xde901428 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x2f0aa157 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd4dc818b mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x0d4f89bf mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x59e6b441 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x5a855130 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x60974299 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb83621ec or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0521df27 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xe66b74f8 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe3c963ca s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2a25a314 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf71a4f07 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xed784e16 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb5e914b3 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xee42734e si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xb9f7daa0 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7b9a5d9e stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x176c6ebc stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xa91ef1be stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xcd0bd67b stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4bbb2efb stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x44f58e15 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0b64892b stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8a567346 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xbaa66d7c stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa54580fd stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3c27a66d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x421b9a20 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x25dc2528 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x5e1a4fe8 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x4e5ca042 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf25dfc9c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x55584efb tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6ed5518f tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x2b1eac8d tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xa13f8551 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x80dc0243 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x06ab5058 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x0cf31833 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x7a3f9008 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x85a05e58 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x24382ce8 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xc163bacc ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7f7d5108 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xad737fc1 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe4e17674 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa905db85 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x6a46cad6 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3d26da6c flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4815ff4a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x65370b5c flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7262bdb0 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x79214742 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb9fe9e4b flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf4125ec4 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0894ac4b bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0f7521b2 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x522a5d6d bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x59468c12 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x45499ce5 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8bd3f8cc bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x99696596 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4f5bd0fc rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x60f35af3 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x62221456 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x747bed7a dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ee6e0b5 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa339cd76 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbca8707d write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcca45276 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xceb73951 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xedf53466 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x25eb0636 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x98a840c8 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe28bd43e cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xee213fee cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf6c8ae51 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1e935276 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4c438934 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9604489c cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x97594347 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9ad3c803 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb771c427 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbdaadd6d cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6cc3725c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8fd363b4 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x07fe4267 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa1938543 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd7fcd304 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xeefe8df2 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x18b1f96c cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2b07ef24 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x320f2e0d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4ceddba4 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x86221170 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b0b45f6 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe2ff8d5e cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0650b64b cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17117f19 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1daf30a7 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2047bcbc cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ab94694 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2cabb261 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x346e437d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39732e0e cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3cf1e782 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3d986ec5 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59a6fa3e cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x610da7e2 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76544585 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe3fb4b8 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc8ba5576 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb8fee30 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2de8875 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd760222d cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf217a3e5 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xff715431 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x2141cfcd ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a52ba59 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b5480d6 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x39ad485f ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3cc25f13 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5cbef316 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x646e64e7 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x653b23ca ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7939ba08 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ecbb640 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94bde92a ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xab681544 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1fed089 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcf842d5e ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd596ce14 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xec4471b0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee89e28c ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf30d9ac5 ivtv_api +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2437aa1f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x275c6ae3 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3aaf1679 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4626ca19 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6d672f09 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c955905 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x92b5bd4f saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9696926 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc399f0b2 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xda3d1e53 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdc318b80 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x05fb3b46 csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x397f8f9a csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x6bf4e6b9 csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xc2afc606 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x342e534e sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x5b2c90c5 sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xcbf29007 sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xf517d59c sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xfe4ca88b sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x097108e1 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1ee5d41c vpdma_add_in_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2bbc75de vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x308e654f vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3269c1e2 vpdma_add_sync_on_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3b3f4afb vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x4bcab0a9 vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50985e09 vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x525fba74 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x61ddf3bf vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x654608e6 vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6ab2cf6c vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6ba103d4 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x719e9661 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9de56bd8 vpdma_add_abort_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9ece601a vpdma_free_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9f220441 vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xac70a269 vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb0b37b34 vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xba5baecb vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc982119b vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcac932f8 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcb20cada vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcc78bec4 vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd0aeae6a vpdma_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd7d9d4fd vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xebbec4fb vpdma_alloc_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf82483c6 vpdma_reset_desc_list +EXPORT_SYMBOL drivers/media/radio/tea575x 0x11200540 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4db0e54e snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2aaecce snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc7cb5259 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcc6f6574 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xced8c593 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf4fdea2d snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ccef077 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x51067321 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x34ba4fcd fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x01c7b155 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x108dae77 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x612460e5 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb24cfb18 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x239cdc67 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x812edf0c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xdf692065 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xc2f5b26d mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2f4b10b0 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xc693e8db mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x825d43b4 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x07305552 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x438b10a0 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x69efda21 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7f7b86d3 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x71a91e45 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9e121464 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3528ad18 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x49bd8958 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x71a8eb77 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x81842710 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8dc6227d dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x97ceb2f8 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xba05e310 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbdb3657d dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc8e9663e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x06910092 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0809fbad dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3469d724 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x57920de4 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc4bca5d6 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcfc320ab dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x4b38eb5f af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x35087fa4 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4bf93e86 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f6961f5 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa9651b43 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc1587c67 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xccb001e7 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcdd86f1c dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd5cd50b8 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdeffbe0e dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5bb425ff dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb803d127 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x87fb3ae8 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdbcbad48 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x06d15d18 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x28691217 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3ee88979 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9ae806dc go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa12c8b2a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xada19181 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4624168 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcdb05304 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff4ef0ee go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x00b1b9ab gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2741c60e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x37e0a139 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x39e1e50f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7cdc40a2 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb98c9342 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcb93afa2 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf0148be6 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x62528b9f tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xaec38c0f tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xcdd79cd7 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdb253936 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf0e238fc ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x03069c56 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x37313170 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5d5e6c91 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xab0ef086 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xdfeb37b0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf1dd7043 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x07b74132 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x465d2770 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb2f9c718 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdd33485e v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1103695a v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b2cf565 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1eb9ada3 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2013794e v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x365a8561 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a4b0861 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3dc0c598 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3decd843 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ee40cf6 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54aac977 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ba94034 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d2c2a5b v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61b00471 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66443914 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c4ffc8c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cb41fe7 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x756a6f52 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x774e7576 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dac2131 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7de285b0 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80249b5c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86391927 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x887b7265 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f7cda87 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fbd7691 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x963e7fc4 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x990092a9 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b593759 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c2d8a4e v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa000d020 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1c13abf v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a5794e v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6f5fde6 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa96a862d v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa974de6e v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb38942f3 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb62fe8fa video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc2f08cb v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe0cc0a0 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc506c404 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfd14d6a v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3e03fa3 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd58be9e2 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd65db3ac v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8b3d9ee v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe733b2ab v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea4439a0 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec4bcb0f video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf33e0250 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8917dc7 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9a71b57 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x03a497b3 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3412177b rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x5cdcbf39 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb27f41a1 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfed2c1b4 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0bd3c41f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1103c6ef memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x13e79cd9 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1817ac0b memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1dea76ba memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x51cb13f8 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x570fff7f memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6931a4ab memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb2e1a0d5 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb6c2ad48 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0585a31 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd47f24e6 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6107839 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x069fd94c mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b03920a mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e20c8b8 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fc09a51 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23845a29 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25b69c9f mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2994fc3c mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x38410a29 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x384494ef mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4dcfb626 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e5ced27 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x578d916a mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61ae9b3a mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67a1a68f mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71b4f4d5 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78a82057 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82a3055e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84efe62f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94a6392a mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacb1c9df mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xacc684a6 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0372b89 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd82a3ef mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd3cab192 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4bc0d01 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea5323ce mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed9b264b mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdc17fcb mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfeb403f4 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x044260af mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11069def mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c652140 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ec63148 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fc158f3 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x375aee4b mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3917171a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f06eb3f mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5eaef8de mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6133c031 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72648821 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76385dce mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76cb3e5d mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7dfd4fbc mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x830a9e73 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f5d8d41 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96dbadd2 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e7cf910 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa22a9086 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa40270b7 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba4a3fb9 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2cb189c mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb24ccd1 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0659ca5 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf4d3817f mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7a6d071 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfad7a0a4 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/axp20x 0x3901fb5a axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x74af83a6 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xc1b0fc44 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x4ee49f91 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x59dc3d16 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x913cff79 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa3718eec pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xfeb22db3 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1226a943 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x18f1bd4a mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x31f27c1e mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x58368f9b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x664b3026 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x673d74d7 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x803893e4 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8324396d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb8c8d3ec mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd60374ba mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf3e66b54 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x37b79cba wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x572697a5 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x5f66f6ab wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x651c2c3c wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xa7fe5bc4 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xfa7e2e11 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc98595a4 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xef5b1342 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x5b92b512 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x8454ebe4 c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x085c8951 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x13709ea9 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4a52d287 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x62b11907 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c0f914f tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa4bef854 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb28a93c0 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc3ef5c9b tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc4129750 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc6431f2b tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xdada1876 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xdf3ef568 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1ebc0319 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x61ec57ab cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x64cc6452 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9ae90f48 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xcb37c4f5 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x173d7b8d dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1abb2bb5 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1d2a9cd8 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x32175916 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x77ce16a3 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd246b906 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x04872622 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x08cabe69 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0fd93ef5 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3ee3e49a cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x64cc757a cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7c4216d4 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcbebd44e cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xd7e2f609 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x8560fab6 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x710d82f2 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x97c6918e flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc3fc610e denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xfca122b3 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xb1688cc7 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2a30116a arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2b0c4e42 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2fc644fe free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b0b2e58 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x46d8700a arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a0b18cc arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa304e0e6 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcde0e4dd arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdc29aaf2 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xedad6e42 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xefbb2917 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x12c8e6bc com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd0d55abc com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd4049e80 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01deb2ab b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06e4cb1e b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08dd4e87 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ab1c243 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e338b86 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x103d063c b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13985bb5 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17b12ee4 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a7ac4af b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b82f33f b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1de48e2c b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2215e35d b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24c47687 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42389101 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56de6bf6 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5933a623 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69c1bc97 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6afbcb00 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72679345 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75ef0ee8 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cc60050 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d31e5dd b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x825dcec6 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x926ee442 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97611ab0 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x976276cd b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa36589d0 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa62ac921 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb041b794 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb706843b b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbacc8355 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc7199b5d b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc89f7434 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcb710642 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6fdc778 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7045731 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9b55417 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdb532027 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc736cb9 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4d7362f b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6a6572f b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x09d3cb87 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5cdd5f4d b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7110878e b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7b4bae1d b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xeb6ef98a b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xed14318b b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x46508cac lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x69c3e33a lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf9777199 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x4adbd446 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x6cef674a ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3374f8df ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa558683e ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xce9dfdbf ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1af3c9e6 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x410f03e2 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x97886d47 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0b43e37f xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2736a26f xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xba55ed1e xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd46ba2b4 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd7d44a07 xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdd11431e xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe63c509a xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1d1d7e0c NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x507408ac ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7d96f166 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8d1b5658 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9e4cdcc0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5fe2ab3 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbba4bc5a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbc9eedc9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd42f3df3 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd77ac3ef ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x7c4c4c73 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xef9998e4 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x01c7f331 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0beea17e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2794d5ee cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2895790e cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3842848f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c508fa8 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4cb30dd0 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x74dcbab8 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8c6c2479 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc226da49 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5037c3f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc212775 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb5b2140 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe5b0cccf t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe68808e3 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfee11c7a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x045102d1 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x062b1926 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0828e406 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a8cce57 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dbdbe04 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x110c2c12 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1541d246 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x173a8ab3 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ab2187a cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e010e2d cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ef95c92 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26604980 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3eefabf3 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41afc5e9 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4668ed06 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ccc8d2e cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5256d7d8 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6385e969 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66139054 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c6b044a cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6cf7ff10 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80df0b38 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x852cb47c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b95b87e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x976089b1 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98fa4543 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99755435 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ac33f89 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1fd0356 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad2d9670 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad856a14 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaeca67e8 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1b3f2bc cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4b1f183 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2b72bb2 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5bfb22e cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc75ac72f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb73f194 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc754700 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe015c876 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3e1a9de cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe929fd2c cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe92a39d8 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe93140b7 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeeea6db3 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef16ae78 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0b6b720c cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4618ab6b cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4e2bd411 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x944fa5a9 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x99ece60d cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9f37010a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfc5b9abc cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x10fbe5d6 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x20925061 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3d0e2005 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9c968387 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd9a523c9 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1d745b4 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x40e05ff7 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd072f124 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x9c55771c enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2a4e5bcf hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x695cd579 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x71e01b7b hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xbf143fec hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xea73a8f0 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xbcef1c5c hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x045c685b hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x55a8cac1 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5fc14ae7 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x92626a46 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa5a9cda1 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbb240df4 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xee0f702d hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf45d6f3b hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x08c0dc93 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb2962936 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x386c43a9 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb983c617 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1204f74e mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x128393cf mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c050b18 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x266af90d set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28efc80b mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c7df377 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e1f7cf1 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360a6fae mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d432e18 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4056d1c3 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4446171b mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58187fcd mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c15f324 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e43d4dc set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8669c3 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f022950 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60d29662 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62dded2e mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e91cab mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a65ad75 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e919ea5 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ee93f94 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83908579 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83da6d0f mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8719d201 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8be028a9 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f7113bf mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9153b539 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997dcb89 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa097f7b9 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb21fcf5d mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc501ddfa mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5bd24ed mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd68e6c17 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6eb50e8 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdec2ff6b mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2854709 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe71dc19a mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1690e2f mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2d8147f mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3c87a54 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf457a180 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb25d6ce mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe39706f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x047f44a4 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05a3b79d mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089b1a3a mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cabd2e7 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e86797c mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eabc69b __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2495df __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1055c083 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11f80c91 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12059b1d mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x123943da mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13820f73 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13c4f644 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1548c52f mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168376dd mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x171c03b3 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a2a602 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x197ab8d8 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ccf0c6b mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e35ae4f mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2b7ee5 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2044404a mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2193f91e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x256571b2 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25eb2c3b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26fc8eb9 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x282e8708 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2da53d8e mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee40906 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f742e49 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30fc0d33 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31a2b737 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33188844 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3699fe83 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3a78b7 __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4107c7cc mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44523080 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b2f595 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472366a9 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499a2e8a mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a341d7a mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b09fab6 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c76eb58 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e43c549 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51125f5a mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5137cef6 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51bc78fd mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54f9b927 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57069414 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x572b4736 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x574a1913 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x577eb20b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58ec9bc4 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a8bbeb4 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bddb984 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ca2acf1 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d88b5ed mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f45d45c mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60912e87 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x641e9004 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x656412c3 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65aebdd5 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6980897a mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cb333be mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d744cbe mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70cfc7f0 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x719881c0 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73ea92d7 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74b5fe0d mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74d89ed4 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75125d6b mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e65046 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x764de790 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e04da __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f0e096e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80f27bcd mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x827e7ce0 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83918b27 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x853894db mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87c0b7a1 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87f639f5 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b7aa17b mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9032965d mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9273a002 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945a8d92 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9527e7a4 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f6769b mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96843992 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96df2d1b __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96ea1c3a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x982e1a53 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993132b4 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99b7825f mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a962fb2 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bc2c687 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c52d11d mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa25a96d1 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac99da81 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad570dfc mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa36f81 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba92ee41 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc0c9eb5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc0cb6f5 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcd97a30 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe0a4be8 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb611c1 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfdd7c23 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06a92a3 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc126b847 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e1cd6a mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc842f601 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9bf7e03 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9c0f6c __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd5390ef mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceb1243a mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd18bfe7b mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2fa7843 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd37324fe mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4a77ca6 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd62411a6 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd684028c mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdee0f7cd mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf595053 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1009e8e mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d171fd mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5657585 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe59c694e mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6495f60 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe81faa36 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaac7f3a mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb033453 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd63b16 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed849ee3 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf00f5dbd mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf281ea6a mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf74d7eb3 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94cfda1 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4daf91 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x06cf33aa mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x03ad8025 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e0b211b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c34a303 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4287bc1c mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x488e1cc3 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c0bcab7 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x610e83ec mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6558bab3 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x91620caa mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa0d6b124 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa0ef0c3 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc11a1606 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9cbd73c mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd929c59f mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee1031b6 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfc6e655a mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2e8733df mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6353f407 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x530baf7c mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6547bad6 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x029d8d4c ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b6a1902 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11007a74 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12e1eea3 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19f40c4f ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d06c51a ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d26e1da ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x218bcd88 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27a37fb1 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28fc7c7b ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a121dcc ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30536b35 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x317080dd ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x325cbd6e ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x352362d3 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c831a9a ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e20692e ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x417ded11 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x486d29df ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a90a96b ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c7c40c4 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a0f9de8 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62555551 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63384bc5 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66979f08 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c72f897 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d53b993 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d6c2435 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f7e7164 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7341baaf ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77497044 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79fba597 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8579bd04 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8752f301 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x881f4ccb ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ebd75b1 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x906df820 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90b16959 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x911d4684 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9234673b ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94541c3e ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b461927 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa761479a ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaada2717 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad8f5688 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf154da3 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf339caf ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb20bbe40 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb34cceea ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb35d029c ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba33749f ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfdcd2fa ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc39c137f ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6c09b8d ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc71715c2 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7c1024b ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7da1534 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccef39d9 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdf5cbbd ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd331f5ec ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfeb2560 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7320ffc ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe90c7f87 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9a1dfee ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec4e191d ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf28fb1e1 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3d9e8b4 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5cfc7175 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa9e62690 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf8acf622 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0aec9d01 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x45b8fc2d hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x59582fce hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb08e7fe4 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeb622da1 hdlcdrv_register +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x41ec68e7 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc8cc00af mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd43b6095 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfb65f972 mdiobb_read +EXPORT_SYMBOL drivers/net/mii 0x0199c5ab mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x0d0f1fe3 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x3c457e34 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x56e4e53c mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x7a9f667a mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xd5237ad0 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xd58f55f7 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xe73f7057 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xf425be7b mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xf9052a3a mii_link_ok +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0c282adf lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xe2e53987 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xba38d448 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8fbee651 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb4686744 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbefaa80d pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xb8323837 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x23ac5558 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x2553b245 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x44fb166c team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x8061aa03 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x95a8a568 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xbff061e5 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xc9e6614b team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xf0de9e21 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x56c04f71 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb534f616 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdb0a4daa usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x01e37d83 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x021fda5c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x105d1041 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x288710e2 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x29c69df4 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3c544aed hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4811b379 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x73a07143 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x831dcaf6 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaf307478 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24ad499e ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76b040ee ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7bacccba ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8c50dee8 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa8034244 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaa6c080c ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbd5c4a2b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0b65d05 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd68443ef ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd7224448 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdaa66f53 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdb0330f3 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xea525a14 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01429f61 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05386b61 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x064578ef ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x069bce85 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x086bb324 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d1103fc ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1365b94f ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x159f69af ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15fb9afd ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19b6dfee ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2282aa37 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x287edc82 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a7bfb3d ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d83337e ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e509d78 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3645f8cb ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b589644 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42c10c15 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x468558f8 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ff06859 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5020ed57 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x569e6059 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58a37e9e ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x698764d0 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dd39ca4 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e0a726f ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x711be9c5 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73573d32 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87cad880 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88f539e1 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8973cb49 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89ca41f0 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f2c940e ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x910d75c7 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x969b4e3d ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ebbc8e7 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa01b197e ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa36c601d ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac2e0bc1 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8057f38 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdd99850 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe38b73b ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf3df38a ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbfb570d8 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1eea11f ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3b3fc97 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3cf0b2f ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4090fd5 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc80577b8 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcba7d3cd __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd50715c1 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe01d51e4 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe34b379c ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5bbc433 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedc3546a ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbd6fc2a ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0bc841f5 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x16da0e15 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x375e87d6 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x540e4505 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d3170c2 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x789b373f ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x80f253ab ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x844e1862 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x937da9f0 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9ab37f01 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9f20ab70 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9f869ae3 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4a9a2ef ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa6bba7d1 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaecae42e ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb00174af ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5fe1bb9 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdaffb50c ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdeb6a13d ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe751d4dd ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe7f3977e ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xec0c2862 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x015202d1 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3eb297d2 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x49cf9dac ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x685d40c3 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8d938dde ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x93c51c15 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb156293b ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe8668c2a ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xef0e70ce ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5c56a42 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfdb69374 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0575067f ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x11fc2c1c ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16a3d258 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ac66809 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e7f4c3d ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2457ec92 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x295d684b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x487bf684 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49c7be3c ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4dca8f66 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x64fab013 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c9b2099 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6dac01ac ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a7eb327 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82eda71b ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x888a079a ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7c2948d ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8ac9268 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabd605df ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6667d97 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe420b721 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5f54726 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd04c0b0 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01911480 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01d5cb1c ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04375c58 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0df4254a ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ef7f210 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12fb66de ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13452ccc ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16d9ee2c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x182e6896 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a5e8316 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b36c458 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x233552c4 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x254eb0fe ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x294ddb47 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b96a2d1 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bdb74d2 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c5cae0f ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ccbb420 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f133cec ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fd3c696 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33dc1ac7 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x359dafc5 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3856dcd7 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3948ab56 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a4a6b13 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b52a178 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff62423 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54156e2f ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57b6dc8d ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5baaa172 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5beb751f ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6351ecd6 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65032d3c ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x681f9002 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x684d7ab4 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a57e71c ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c2e1195 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eb1ac7f ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f3bb930 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x709d8deb ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76345f40 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76a40e22 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cd5e5ca ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83784818 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83a6a2da ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87754e47 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8907909b ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cea77bb ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96075f34 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f6ae9d ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9829768e ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99e6c99f ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b71dca2 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ce551ff ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa628ddcf ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ab24a0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa583bfa ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad599c5a ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf80a3cb ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb21d4fa2 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb363fac4 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4bcd34c ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6626160 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6d48d39 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7a3d9d0 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb834b24d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8f87e27 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc675c73 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd64a22a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd8c0620 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe10f2a1 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf450d20 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc19662f0 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4ac798c ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5f6e7a4 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc61a0ae0 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc689f4b8 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6a6ace2 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc789de2b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc906d19f ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb559550 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcedbcfe3 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd07707a1 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd21d962d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5c09db8 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda9dbfcb ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaf590eb ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb7bf044 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb7dabc1 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb82acb7 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcd00d67 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1ef3a6 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd72c72b ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde600fbe ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0ef3053 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea1345ac ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed3858d0 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefdb2c39 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf05a42f0 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1db3048 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2e33790 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3427671 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf467a126 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa471c66 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd5b25c8 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff6aeb4b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff86b7bd ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0f1bc06a atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1c7b0bae init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8d15066a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x209fe954 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x43e7aecc brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4e9e90af brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5c650182 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8691eb19 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x915ae4a4 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9cc97d64 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa720dd21 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb4bcf565 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbb1c8cab brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbe624eb2 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc59a479e brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdfc7799b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0b09e98d libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0d57e33b libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x12256c21 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x238b9830 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x324c7923 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64ba5a63 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a859f3d libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73e312ba libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x84133d49 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xab5c512a libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb09612b0 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb603bc21 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcf5d6c14 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd11542a3 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdc5172ff libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde780d93 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdeb6d78d libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe2ba105f libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecfcc053 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfa991750 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x017e555f il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0468483c il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x072282ad il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09b625a8 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b752f95 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ddf09e7 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11e2e570 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19b27046 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d4f8b8f il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f76388d il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x203e21b6 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x211660cf il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a3b8040 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ef45327 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ef9c6b2 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ff658fb il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x314621d4 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x339da6c2 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x371638ee il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a1a29a3 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f087aa1 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fcb2ade il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fd0487e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42881c9e il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46232895 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48b7d538 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b82d184 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d0ec49b il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5366830a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53fd92d1 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5407fb8c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56317cd8 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5649eb0e il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b0dc0b1 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bc7c6d9 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62ab3d8f il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65342043 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6716b0c0 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6894443a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dc35e64 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72b56769 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72c365ca il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73be1e6f il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75987130 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x761655b1 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x805793f7 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8304f43d il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83c0a409 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8799e2fd il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8876de9f il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89a9f715 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c44245f il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fb31074 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9008c744 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x945bd447 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b8be16c il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ea0dbf6 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f5a9386 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9fdb1545 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa25d1d3d il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa324a12a il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa66416aa il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaad865b3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab098f58 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaeaaa4f6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf440b60 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2467986 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6c1fc79 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7696372 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7a9bb7a il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7cf811e il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb805d317 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8452df9 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9a174b9 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbf7fe87 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcef451c il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc06b07f8 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3311e03 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5c37fe9 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5f9baac il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7ec0a3a il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc801fa82 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcccaa4d3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd53ab78 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xceda9083 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2befb35 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3a7499d il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd48d4b98 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7c94931 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0ec5ce2 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5920ac1 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7f4071c il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xecbcf902 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeeea506d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0ad288c il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9856918 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9d9527d il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe2d0195 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bdc4afa __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe397feea __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe57ec110 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe92f6bc3 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x05ebc834 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x134ba88b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x219689ad hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2208e1f3 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38b569b3 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b269f7a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b3c2023 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e3f2ba3 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x58eb172c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5b501074 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x60b750af hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x61bf0dd3 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x65c43154 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x714f7729 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7f8db9c5 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95370f21 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d514ae3 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9dfbed7c hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa0ef46bc hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8e77e25 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe63706d7 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6393bb6 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef2c6a8e hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf6126279 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf9a97ab2 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06156117 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0b56357d orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0d5e9107 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x17bfeec2 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3bc0b8c0 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x403e0132 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x499ce742 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6c501951 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x895367f4 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a47c1f5 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x90b5d713 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf3b120c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc66bd8e3 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd4a9b065 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf06bdc70 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x3eeeb7bf mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf6ffa835 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05a56cca rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e6065b3 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f68b5ca rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1029de15 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x247a9956 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x284d42d3 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29a0239a rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x351e4f1f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cca2f07 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4215c424 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44941076 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f7bbee7 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f661081 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6499c092 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66bb3835 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d36f675 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72cd877b _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a5f76f7 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c04b68f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d7bd86a rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8015da31 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94052e7e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x954bd914 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa66eb100 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7bbe549 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacfa146d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3024744 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb56b672b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc598742d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc72d7c9d rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc83adeaf rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc937c4ad _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd571cc51 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd99b72aa rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd4902dd rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdeef90ca _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe77008e7 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedf7782c rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeeeb376c rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6ce1a00 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd906adc rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1aed7b60 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3840a7a4 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6aa9e957 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeca6d024 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1ce3a0a3 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe60c0841 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf0d1f828 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf6149d9b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08d8e4c3 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12e99365 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1343f7cd rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7277f6 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21567865 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27f88ed1 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x368e2183 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e2d21c2 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4270fa4e rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x496e68c8 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5331b47c rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5703ce72 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x697f86b3 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70b33745 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7467415d rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81c64efc rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x829a1316 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85dbc37a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cba42ce efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d6144c5 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x902ef78c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x919aa07c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92f384aa efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa38dc7e1 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa47ec2e rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5f4dcac rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc55771f6 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcea62b65 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9333656 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec0e236b rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf437d33d rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x6fdfce2c rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xf21fb9a1 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x843fb49e rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x6bfddfa0 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11d67bdc rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x120f1749 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12ad980c rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14186a60 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18452a8c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e83eb86 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f00826f rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f891a74 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2994072f rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31a86075 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38d04da9 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e75ee7e rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f613e2f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4592d943 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53365ca5 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53d78232 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55d2a01d rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5792b056 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d09f8f4 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63e5f3ef rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6796e57f rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e33a0d9 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7299a479 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7396b394 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76e422e6 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82a1a492 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8797441a rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8797fba0 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c8139f2 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8dc5cfb9 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8dfa4b95 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e84c42c rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f900487 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90f27940 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a7b83f5 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9dd40ebf rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa03e83e0 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa65c89a5 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab65eb06 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaec505ef rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5c74fd7 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc456cbe rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbca58ac3 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc08104ad rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc34450cc rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5b164d8 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8e00fd9 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc933c608 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca1fcadb rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9db9193 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdec12a33 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdff674f7 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb79c1fa rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf22f1286 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5af130a rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe7987bb rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffc604dd rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3d106160 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x49d43784 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5018d180 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7b267e58 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2fb5fe50 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a51dfc4 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49ef49f6 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4bab278c rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5356f10a rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56479d92 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f023c02 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa197aa93 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa52536a rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4d4365f rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb64861ae rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb690d7b rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc9624c19 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4ff13c6 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xddb1efa9 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1670b49 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3e2b657 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe50511a1 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6f1dafc rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7af8d94 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5ecac1ff rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xc7f6099d rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0183dfe5 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x539bb4de wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6153a908 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x634f9d64 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0f00ac72 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2338ac91 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5601e05d microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd0c8374a microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x977cc23c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa9b8d2ab nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd926d4e2 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x511d6d51 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0bef7bc8 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3d93b79e pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x241db4fd s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x271f3959 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x987350d2 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf6dc4fc7 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0e452fc4 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x216a543d ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x28c3b370 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3583f248 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70d99d5c ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x795e9553 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa9b6a232 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd64fb780 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd787f516 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe30d3392 ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1242dae3 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18eefc24 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21ec1ec0 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x492800c1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x561a2c90 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c756d54 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d7447c2 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x85cd9b05 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa24cca25 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8b6ea79 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xacb0782c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb77be822 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbb7df8f5 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbdb73974 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbe8d398a st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5cba5ac st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb795758 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe99dc06d st21nfca_hci_se_io +EXPORT_SYMBOL drivers/ntb/ntb 0x0122cf46 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x02932e00 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x056d4531 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2872e58f ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x31c18ca2 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x3a0d9e9b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x512b6cca ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x557e1ea1 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x60115c4d ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x6742f371 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6fb2c2f4 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x73445747 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x80a69792 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x812ea1e8 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x89c3672d ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xab106b36 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xc336e539 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xdc530178 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xe1acb5be ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xe3d24ce6 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x66d30ba5 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa935bdf0 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x1516600b parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x15d23e70 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x16644a86 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x18c6db63 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x24c658a1 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x284dcbb2 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2fc090bf parport_write +EXPORT_SYMBOL drivers/parport/parport 0x3e2c2634 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3fafff5b parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x51ffa7df parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x61702e93 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x62d6d5d5 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x6866e990 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x72d6e3aa parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x73fe1641 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x76b555c4 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7b0258dc parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7b36c386 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7ba6869d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x80b6dfa9 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8cf7d637 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xa3f80d65 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa712e09c parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xa9a93530 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xc69e6fb3 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xc7ae7ee5 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xce56ba74 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd153c19f parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xdcb5e381 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf623a797 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xf7b0fb7a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport_pc 0x16ce62d6 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x6779c4a2 parport_pc_unregister_port +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6351180b cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x9c1c1291 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc24b9690 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcf303f65 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x00271218 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x07b7319c qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15571904 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x32d95839 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37589c67 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d927466 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4ea6fb7c rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fe231b1 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x57f8bc20 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5985e418 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7552bcbb rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7c7cf661 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f4f7a92 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9e45f12a rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f2de3c1 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb484e1b5 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb69a2c6b unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc773dd59 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x484a6514 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x8c9efb05 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x49099cac scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9bc985c2 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa3b5ebac scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf5f54449 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1feb0873 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x302fd4b9 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3316acd7 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c262651 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x785d9ad5 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9509ead4 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbf939617 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc80c69b0 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcdc80251 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf98e89f0 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd7ff38f fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03683ef0 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03d90762 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09c55bc3 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c9dac33 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee52c69 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10bc0c50 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1175b7a4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1541e53a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19299c71 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26b952c1 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x272ffcd0 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29c07958 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ca1e639 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f677cf9 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b0191c6 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ca2ae5a fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e75bd66 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50e1dcf7 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55bba1e5 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5893fc34 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x590262a9 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ee4ab3c fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63451cf4 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x668bd791 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69cefe59 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ac82f7a fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f5bbee9 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70164c2e fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x765c5d95 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78da0257 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a91b6af fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84c1845a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89d4c504 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x954d6f50 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9575c90d fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3cd8ee1 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5354fd1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa577f568 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa682d7f6 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabd3e4be fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac4d3fd8 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacfa74cd fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80157e7 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb3bdf74 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1e38dd1 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2de5e09 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc58612bf fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc861d981 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf82f9df fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2e369eb fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda5c754f fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1e581eb fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe226e708 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8a4e2ba fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef47275b fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf54e8c74 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc775978 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff9679e8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x32dba341 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x410a2936 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x68e88d48 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x47288b9d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0651c030 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0bb8f358 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73e60a8e qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x76c57441 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7a7a54a9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7e806585 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x93d4fe54 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbc53592c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe1dcde5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc377109e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7673e76 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf6fd2428 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/raid_class 0x6ffc27b3 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xc2b3ebb7 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xf6576c0f raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c47d632 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2729e82b fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2c4a9d4b fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ebf7a8a fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3648c758 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5bf26a57 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61869c56 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x649e6140 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9165bed9 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94994edd fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb50d6f34 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf837fc5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4687586 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde90091f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe23f1530 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1d20f28 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3383850 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x025d5145 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x089a70c5 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x126694e9 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19b54dfd sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19e49545 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ee57f77 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22cafcd4 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37b1811e sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3dd9a0ca sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x444ea0fa sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b3bef31 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e6baa01 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55dcc6f2 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5cc0e6ca scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7050b02b sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77493d73 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x781b12f2 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ba46d9a sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c361927 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ce2ca55 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e6f62b5 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x861fd308 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8b60ba49 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa42c73fa sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7a12c37 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb09b7e65 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3f7d9a3 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc45181ea sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2dd4101 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x080482b7 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x231d3d4f spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2b5e7849 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x69bc2fa8 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc66c71fd spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x03a2e4c2 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x24521481 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x823be8f8 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9da28490 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xba3ad7ca srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x46f96cbd tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xca558606 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x04d700ba ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x131c0020 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3f8f9993 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4316f2d0 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x70b839b2 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb2ef22e0 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcb6ed032 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdd987006 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x45b08e1b ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x9f17c4ab ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0034413f cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f1c30e9 cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1e7fbd0e cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f75694f cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x25789b60 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x331080d7 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x344c2615 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f534bca cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x44529db4 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4bef25aa cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5e605e5d cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x707fc9be cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x806d5531 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8521a71f cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x86cba4ff cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8d8977f9 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x973b3a41 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xce594d73 cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xcfa96ae3 cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf1b72bff cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf3151f98 cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x296812ab of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc +EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x040a8c0d geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x14517025 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3bd180f4 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3d0c2d19 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x40c1b258 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x44a38d99 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6aca1027 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6b126c8c geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x780f372c geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7d64afe0 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb39a2fe9 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc1a05b7e geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe223649a geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe70de958 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xebbe7131 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf51f1b30 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfb2cdbc6 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1fb2fcb5 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2036ba3c qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x33a4b004 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3eb645be qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b7702e5 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x57a58152 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7575d12c qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9f3b6972 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa179fba4 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc632f6bb qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xe10c56a4 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10ea7dd0 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1eab4aa5 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2f13b9ed sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x35b1d172 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3fa7cba3 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x51d85c1f sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5c4ddaa7 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6092e185 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60b16056 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6eda58e6 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76fb4ad8 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88406bec sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b4df107 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x92b166b0 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c1ad202 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9dca0d83 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa831db97 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa4edb6c sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaae9a331 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb58a29a3 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb72546a9 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbc58f7ed sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe669882 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc3ae7854 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcf42b156 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf968a47e sdw_clear_slave_status +EXPORT_SYMBOL drivers/ssb/ssb 0x13134e2e ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x14f0b6b8 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x2335e9f4 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x32017905 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x338974b7 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x43d38559 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4ca6fae4 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x5be225d9 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x5e6d92f6 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x786afb76 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x90898d32 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x92a13459 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x94194153 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9e90faa3 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xbfcc0a84 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcfb04aae ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xdce7f852 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xde97ddc6 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdf2d9977 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf7b91842 ssb_commit_settings +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e8135ae fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c293396 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d082024 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x314836e2 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x32feaf08 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3dca6d30 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4907f016 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x588d76e4 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x961892c3 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e5c030b fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa77202ad fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad486257 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb800e849 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9b29fd6 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc432cc4a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6c8287a fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd48bf3ba fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd659994a fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd885206d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb834c31 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xede496ba fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3f5434e fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5baa2a7 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf86e0cb8 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd92ee5e fbtft_init_display +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5eaa199d gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x76349325 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x889c7238 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe9941e99 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4263193b ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x61ccd163 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x43882637 videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb2eaee5a videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xbb6b3e6e videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xdab8bd4f videocodec_unregister +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b3f4cd2 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e354115 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0fbaf62c rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1640cc47 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x294e9c6f alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b33309f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d067406 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e98c551 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35f13dcc rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3651220c RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38b2fd65 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41357c5a dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53083508 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63b80528 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6eb9a603 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7006e84d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x715ed5f4 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x790d4f66 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7be4d79e rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c6e4e74 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x805c1665 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82248948 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83f977b4 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8950c412 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x907b3cf5 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d3dd6f0 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9eefcee5 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f5677ec rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1237433 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa50841eb rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa49aed9 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa830042 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb24baaad rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb25bad8c rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8e44847 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc256eba7 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3ef52ae rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc638471d rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9a8d673 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcbbcdd48 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda8fa70a rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdacce357 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe40155b4 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb89811e rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef9b010e rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf703f4d9 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7db8828 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf808dda0 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9c23d65 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04e62899 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06485470 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e870098 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10ddb9b0 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x123e5f3f ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16d5a070 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x241872ee ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25d8f8dc ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28e8250a ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29ea7c64 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bee5fc2 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30463b52 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x309aa0cd dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30f61bff ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38cdf3a1 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b792015 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e44fc40 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4528c578 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x459b9249 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50519249 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a73fabd ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6140422e ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a2a0365 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f240348 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f61cc30 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70333d8e ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77a27cfc ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d5244d9 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84c83b88 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87f54cef ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88b95b0d ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x947ab0f2 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94bd4aeb dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97af2d41 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b590605 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c953ec8 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa301c4ee ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaef3c064 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3cc6a5c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb443d3d5 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4b692c3 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb800c376 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc5fd4f3 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce287066 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcea5368a ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0e0341f ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd53d59ec ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddfae148 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe10ad8bd ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf080083b ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf150b913 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdb7341a is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe1caef1 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x091d28d7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c3ec24f iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11ecd634 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x125b5044 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1944eeb5 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x202acb56 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2056660b iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24ffbd47 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x403b100d iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x411812fc iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55e4d87a iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58cdf06a iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b9edd13 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e8685b7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x605df003 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65ed1e74 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6601d5b6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6aecaff1 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6effa7d9 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71560ee1 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7db0bd79 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fda701f iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82e5194b iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8496e75b iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a2ac850 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ea0fbf1 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dbf14ec iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa584f545 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaba38211 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xace2e26f iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae12ceec iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf2d1888 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb02efaf1 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc32d8eaa iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc675ef96 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcaefcfe6 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xddf8d597 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0aff29a iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1b14837 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe24cc12d iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe983be59 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea352702 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefe13d10 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff801655 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/target_core_mod 0x0282a45c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b0b7f27 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c79980d core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b82e454 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e329e7a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ea9587a target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f6f908b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f70e227 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fb87d83 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x304e8ef7 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x3611087e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x37763b77 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f3bf09a core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x454a0416 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x483e2181 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x484ee923 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x48be2243 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x48f7f2a9 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a6ce623 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x535d2e5b transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x558b47d8 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x60ef624d target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x61ac0d8f target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x634a8d85 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x642679ef target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6665fbba target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b39df8d target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c41a4f3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cf0454f transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d176fcc spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d65220b target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x7705f4d8 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x792b4ba9 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a585e83 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ab54722 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x804c16f8 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x83bf2575 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x867c55e8 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a0bf2e1 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x90c192ac core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x91b4ee01 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x93c2e2c0 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x95cad264 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x96222369 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x98360d55 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x987b21a6 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa03e9a3f target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xa215e109 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xad37688e target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb05c326b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2a407c5 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4de8a67 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb922cf6f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb4c0971 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb708ebc core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbb13c0f target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd5c14b3 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf2ca807 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0530cdf transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc186a2fd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc810150d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd430d98c target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd51879e8 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0fab6ba target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe598c3b6 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5b9870a transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9928f4c transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb78f5f9 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xef16b09e target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xef93cc07 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbf01039 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc6ef4e2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfec2e220 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3e81a8c6 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1cce4524 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x08b9b57f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1413bfae usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f235ab5 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x35d349c4 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x38c5978d usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x41fb3a90 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x77155cae usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa4b75870 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa9a380aa usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc26487f2 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd5823983 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xddb27533 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x79395e5c usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd4a03e61 usb_serial_suspend +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0249684b mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0e791929 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1242357e mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x146bd1f5 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7d451b17 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7e547b24 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x93ab0df1 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xaa65debb mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0x0c7402b3 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x0f364886 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x169a828f vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x43b14681 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x5d3a804b vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x52bc6180 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x7db6027f vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x261fea85 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x26c60a08 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4164520a vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x5dfbeba4 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x723ab668 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x79b927f7 vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x79c86ceb vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7c007927 vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7c2e8833 vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x8aeeecb8 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x915490a3 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x9537eb76 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xa04abd3a vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xa37c8cbf vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xa924b2e0 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xacf68b37 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xb061dd9f vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xb5411ba6 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0xbe7e011e vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc4721ac7 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xcef0e131 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd8ac74e0 vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xff44dbd9 vringh_need_notify_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3257ee50 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd2068274 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe6f4ee4e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xeb61532d lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x11399f77 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8febe4b8 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcc80357d svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xce6f02a5 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd81d8c5c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe6238a8d svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xed977a11 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x51c56096 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xd093d27f sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf1be712c sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xa5d53191 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xc9ed6305 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x01929099 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbb2d5124 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe5aaa8d7 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0be88132 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1dccb41c DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x361e916d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf41196e8 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xdc1795c5 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xe9b39c88 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5f63d769 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6c250592 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xae5501bd matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe859d664 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6ffd9845 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xcfceff34 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7142a8ff matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7242ba77 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x76413165 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb24ee237 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf59b36ed matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01fa0eb7 dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x020ab7f6 dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x091d3c61 omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2177f4e1 dss_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x320e05a2 omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x38b27593 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3a50573f dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3e2a397e omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x41643fd2 omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x44bfccc0 omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4b582582 omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x50275cd8 omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x611d7699 omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x72d18d1a dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7cf64497 dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x822ac72d omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x85992af0 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x91218d70 omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9a537c92 omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa8faf6e8 omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xae391674 omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xca49b280 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1b82b01 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd916b13b omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdf156606 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe6045eb4 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe84a46b5 dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xeb828d1d dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf2ccc831 omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf554d7e9 dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfa95d18f dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfca3aae2 omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x036798f6 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5b5bd5c9 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x76748b05 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe989da5d virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb0752f80 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xbf0d6b6e w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0bba33db w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe6224e93 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x362efdcf w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x47f5f8cb w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x8597fa74 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9646ba33 w1_add_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x05140869 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x058cf413 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x05ce030e __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x162d1c4d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x25c6d338 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x2ac93bcd __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2f591e8e __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x33ed7e93 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x36c4b3db fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3c69a4f3 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x40e456a9 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x47e2e560 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x49df9a0d __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4a6132dd fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x4b989828 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x52e35342 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x569c8879 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x587c273c fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x58dc092c fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x5c8ca31f fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x5e84f862 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x5f085338 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x65bc54f2 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x6b065de7 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6e46fca8 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75efa0d4 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x77096ca0 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x81ee3e61 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x854d6409 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x8c79f4b1 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x903df6c7 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9ca20405 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xa00a7b07 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xab3b3fb7 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xba1f05b0 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xbbba82ef __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc38efaf2 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xde1889f3 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xeffcc3ac fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf89b1025 __fscache_uncache_page +EXPORT_SYMBOL fs/netfs/netfs 0x1306f47b netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x3b31e84a netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x6e345baa netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x8cf2927c netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xebb89e30 netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x4beb2d9a qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5ac04582 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x71ed8695 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xc2e31f07 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd2580e7f qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xffb21583 qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba95c5c0 crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x246ea205 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0x2cfa6ca1 blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x23eea787 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x4c9268e1 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x635b1a76 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x64375eb4 chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x738d84bf xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xb1693668 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xbb7cb0d3 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x21c45b5a lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create +EXPORT_SYMBOL lib/lru_cache 0x553a005b lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put +EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set +EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get +EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del +EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x4cc636f2 LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x067fa594 objagg_create +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x13d24f16 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdac739f6 ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf39e441c ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf4cbffc3 ZSTD_flushStream +EXPORT_SYMBOL net/6lowpan/6lowpan 0x43ab1a1b lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4f9bcbbc lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x595cfefa lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa6adc6e7 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc6e39048 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe2c5ade1 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x22faf772 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x5a45b5f0 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x626e6511 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x8a58e752 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x1eed9300 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x29e2c8c6 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x33729edb p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x356a54d2 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x380995f8 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3999ff09 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x4c1c47a1 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x4f807dd5 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x5bba3adf p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5e4b4f72 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x64f5d55d p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x6b6e71a7 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6d61f0fa p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x73b91486 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x777de0ed p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7cfbd7d5 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x7e00b0e9 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x89bf476b p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x8f4eb1f8 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x9bef207d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9ceb96a6 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa25fa9af p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa307ff76 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa67241fd p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa56f336 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb6287452 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb7a30780 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xbce7e011 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbdfe3e43 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc3cf9ccf p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9c1e58f p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xcc5c01cd p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd7f1c844 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe66829ec p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xe71661e2 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xe914328b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xeb2325cf p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xeb6a7c95 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xebc6bb28 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xec2f0aaf p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xf0e518e8 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf9b08df9 p9_client_setattr +EXPORT_SYMBOL net/appletalk/appletalk 0x6cbc012d atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7c6b53f9 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xbad37d1c alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xe11f8293 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x02941a5c atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2c1f1cba atm_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x60cd3e10 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x626bbb4b atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x750679d8 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x826cf969 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x8c394c04 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8c7f308a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x93d27517 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc1a88c4d atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xc2161ea6 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xce4da8a1 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xe3361fc8 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6d12f17a ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x7063fe32 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8de32ecc ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa21f9196 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xad6ec898 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc6cc3ebe ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xca4abce6 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xd098b6f6 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x24f592cc l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x334bd919 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33bb14ef hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3519e629 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x486ee00e bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5173725b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58b6e653 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59630326 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e62aff2 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61e2465a hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63ed3856 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63fbbd6f hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6bb07b56 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6dce67ee hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f9b09f7 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75c4562c hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b146daf l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c892946 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c9ddcb2 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81972ad9 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82b88dd5 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8781c300 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88ded650 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e884044 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93468156 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98caa307 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb88303e0 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbae3362f __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc004e74d bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc381eb49 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc55b6c64 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc853b7dc hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9261d5b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf963e76 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcff788c2 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6593ded bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde1b85ff hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb668238 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xebb39097 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed7f8842 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedfa9861 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf105cf48 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf820b4a0 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf83e03c1 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe5b4ce2 bt_sock_link +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1dac68b7 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5230aa16 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x692b5d27 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7559e5d3 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcda771a6 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf89949cf ebt_unregister_template +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1acebb0d caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x979987ff caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa8651aba get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe558d5d3 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xf8ded42e cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x2bf04770 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5f10fc9d can_rx_register +EXPORT_SYMBOL net/can/can 0x6b10f037 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x866d0cea can_proto_register +EXPORT_SYMBOL net/can/can 0xb2d41cda can_proto_unregister +EXPORT_SYMBOL net/can/can 0xf8fbb405 can_send +EXPORT_SYMBOL net/ceph/libceph 0x01165a1d ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x034eb669 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x039d916a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x03fa5065 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x0a2787b5 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0bb71233 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0cd8f2b5 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x114c39ce ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1c72597e ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2369429c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x2e6192ea ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x3173277b ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x33843db6 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x369a9797 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x38192f2a osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3b787943 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x3d3ad815 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x41a1ba8d ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x46068be8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a0d0402 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x52d9ebc0 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x53ff8723 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x553fd27c ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x5628b180 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x578e8760 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58ca072d ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x596e6bf2 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c690686 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x5e7a3725 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x618ffb4a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6431869a ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x649cd55d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x654b5a28 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x67ce6e05 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6ae84afd ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x6b88a75c ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x6ce714e8 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x6e53f844 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x6ed1d491 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6f0f2597 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x6f86be31 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x70522b3d ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7665b5a4 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x7b0329c5 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x839961b6 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x8458f22f ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x863aa745 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x864f4940 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x889d4402 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8a09bf56 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8f4e2aa1 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x949dc72d ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9a47114d osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x9b64bc80 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9b8e4806 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x9bd99998 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9da7cb1e ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6a242f7 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xa7c8ed2d ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xaff6f6dc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xb3212039 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb3bc10d1 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb5289443 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb65d69c4 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb72f47d8 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xb7a475f5 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb8963a72 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xb9d2ab71 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xbc2b67b7 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbecbf3e4 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xc0b68e9d ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xc0bb1fd0 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xc2670bdc osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xc4bb2541 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc4d5debe ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xc6cbdaa6 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xc6d6da38 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xc9a38ce5 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xca761be2 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcfb6cc98 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xd09dd743 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xd370db53 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd6c79627 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xda7df104 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xdab1be44 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdb6cbda2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdc12c208 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xdfd9af6b ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe132a532 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xe13c23fd __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe251dcef osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe54854d1 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xe765e109 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xea00cfc0 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xeba357ec osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef620d76 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xf4fcbd32 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xf6717780 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xf6886a7e ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf6e72a53 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xfaef7697 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xfc193197 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xfdffd8e5 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xfe72f5ec osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5b19b76c dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf4fa28a7 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0xa575e3b2 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xe7b7db8a is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0eee26b6 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x472800bd wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5324b38f wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf69542b wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe99e4d55 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfac8c944 wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x904a1c4e __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc82dbf44 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x7ad78549 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x864f0da0 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x913374ee ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe4163632 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe9693aa5 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3ad2d850 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x551cf454 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x591b03f8 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa8878c12 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x454ccbb1 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x81daa945 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa580a568 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc2bb6941 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x8b7f625f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xd540e7b6 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x1ac396f8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0defcbbc ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x585b5574 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x977dbb44 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa159cc35 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa864a44b ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa8a76743 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbed8f78e ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9c264d3 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2656458 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x17e57f92 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x98acf62b ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdb0399cf ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7d2d284 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x16d78e76 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x18c9cac5 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x90576137 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x94d35569 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x0873c561 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x4f525bff lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x69e6c9ed lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x861e74ae lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x8ddd939a lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x981ba971 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xd6d804cb lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xeaa3b40e lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3d4e11d1 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x56a4bc92 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x7907f78b llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x85ad9a1d llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9123b57a llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xacb46e36 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xdcc2ec8a llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x0166f076 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x02c4f704 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x0583fd63 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x05b154f6 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x06742668 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x08f5018d ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x0ec5298e ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x10af9b73 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1154f3c8 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x15768451 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x16a3c1b1 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1d8a31ad ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1fe5920b ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x22a2e2f3 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x22cc1b35 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x24d50ad2 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2613ea97 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x261e29b4 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x267b0d70 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x2afa1f8f ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x2bba6f63 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2df0d552 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x3088f537 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x3171722e ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x37a5c20a ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x3b1361f8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3b97ff1d ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x3f2ca2e8 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3fcd1acb ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3fd8a15d ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x44c90ac8 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x457b6f97 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x4dac4d85 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x4e835de1 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x4eb8f211 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x52fe7a7d ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x55046aa7 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x5544b62e ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x59b40530 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x5c3a6332 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5ee3fa69 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x614757db ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x61bdea90 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x6455aa24 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x6ee31444 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x71540020 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7175054b ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x7202227d __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7319158f ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7428af94 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x74c15604 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x7820c0be ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x78cd1668 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7bb49e6c ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7f49bf60 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x88e067da ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8b392c56 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x8ba5487b ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8fe9627f __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x910e9e9d ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x944cc8ea ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9506e611 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x95a0ffed ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x986bccc7 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9cf54535 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9dc05489 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x9ee3625d ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa57f238b ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xa7f40225 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xae81fd35 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xafebf52a ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xbae6b746 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbafc51a6 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xbb31fea7 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbf0dd79c ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xc502493d ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc94ba2a6 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xc9aad2ce wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc9f469f2 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcba22c89 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xd014b30a ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd1565f6c ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xd3591aa3 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd63874a0 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd756d6c6 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xdb22017e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdb3f7ddf ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe4722b8c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe7ce1a12 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe9580e37 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xeaee2c78 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xef61dec6 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf084b21f ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf186d713 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xf4e7eb17 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xf8474b2f ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf970ffbf ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xfa8cdcf4 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xfbe7d2df ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac802154/mac802154 0x6c4f3726 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x6dea742e ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7eadc7d2 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xaa7cc012 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd23e66c7 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd264a149 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xdac4c357 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe565ca62 ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x023194c9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10f48fa0 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x145ebe20 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x147076fd ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2624766c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b94cf65 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b9dca6e register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4df72fa9 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6484c5cf ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x861d07cc unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xabcb78cc unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb50ce9ed ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc58c0aff ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcfff15df ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2087ded ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x20720ab2 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1fa81298 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x71d5ffd5 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc905b753 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdbf8c24f nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x026e8388 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3878417c xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x723a2e95 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x778093a6 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x846e0722 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbbdb4ee0 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc52d178b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfb23bd6c xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xfcb1874b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfe06e6ea xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0961413c nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x17aaa258 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x277fd713 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4232fed8 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x51019308 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5259e080 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x54d0da98 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x60beaab7 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x73ddb55a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x92f4dd77 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x94c2babe nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x97a51c6e nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xa1404de7 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xb307838c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb6fb16e9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbec2e1da nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xc9af81b8 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xcbc130f3 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd9d9daae nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xfccff978 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xffbe8a5f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x1801d4e2 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x252e9aa9 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2e1ac374 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x578f5da7 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5865693b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x611eb46d nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x61916226 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x62534197 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x68007112 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x694af1e6 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7e31dd56 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x80e01977 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8cd04fc6 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x90369199 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xaeb005f1 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xb2d5b01b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb3477cc4 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc052f11a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xc3439104 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc7b00208 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xd6bdaabc nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xd7300739 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xdfdac11e nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe5a5754a nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe6c5c396 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xe9687650 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xef3cc452 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xfce35cad nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xfcf5d217 nci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x09b7122f nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x160dc6f6 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x23b5b567 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x28040581 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x32173f87 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x451e80fc nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x56dee298 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x57050eb3 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x5dc5c208 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x64291dfd nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x645571f1 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x77bd74e1 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x8cea9157 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb982200d nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xce195926 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xe0e50be7 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xe1083338 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xeb221989 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xec4c10c7 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xf257f519 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xf4dfa6ad nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xf71cf0b9 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xf94d27d6 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xfe5e02a1 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xfff9c76f nfc_add_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x5fcf9058 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x900edd4d nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa7a55be1 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfa40c9db nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x02cfe141 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x0cef508d phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x13273a69 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x276bcb8c phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x40690f72 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc566f045 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xf39ddf88 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xfa1a221d pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x04f6e51b rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0517c75e rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1c27b461 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39fb42ac rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x437782c7 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x441adc95 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6120e25a rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x69b58322 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x77ca63aa rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x89f746bd rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8cb4ce6d rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9f26463 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb046a50a rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb7e333a7 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcac63986 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf04e031 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xeaedd689 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf324b7a9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0x6f1d0c63 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0e63f2fc gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8f7b61d6 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xebfa41a4 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x22289674 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3ac56474 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe357a009 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xed98fdd1 get_srcport +EXPORT_SYMBOL net/tipc/tipc 0x237410cd tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x9c6acc79 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xa069343b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xe4d09265 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x26b3ef2a tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x02182bf2 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x03d48adb cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x046fb052 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x052b9c43 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0709e2c7 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x0742a066 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x09c1c349 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x0c509343 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x15f5a263 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x167f9635 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19715e4f cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d238ba7 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2186ccf6 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x21caaf58 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2aa18ed9 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2b830276 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2dfcc4f8 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x308256d2 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x331b9a20 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x38b2d196 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x3d0b496a wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x3d676bb6 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e8af25f cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x40ad07a1 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x40cbf4c5 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x40d74bb5 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x44a2285e regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x45867a55 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x47565498 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4806973c cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x4b6452f2 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x4bd5a980 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x4d79fa2a cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x4f135eab cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x539958c5 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x54d15f5b cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x55b74d17 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x56cddd77 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x587f85db cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x61b9dec7 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x63cfd860 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x64d45c68 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x681201a8 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x689bb529 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b20684c cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6bfc8593 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7068584d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x750f57e5 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x752621c4 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7800a110 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x798f1bf4 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7b5e112e wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x84ea755d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x84fe9792 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9033bc33 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9095c337 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9546beab cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9570225c cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x9b889925 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9db7c089 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x9fc3712f ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xa01a5192 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa1e03b41 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa72b26ac cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa9519f5e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xaa9b1159 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xacab3a5d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xae08edd2 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xaf48fa7e ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xb0862f5b cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xb23ae40e cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb80ab8af cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb9f6f75a cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xbaa06f88 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xbe45abca cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xc1208e88 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc8980c6a cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xcb34f823 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xcb87a6cf cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc4c3279 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd60ebd10 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd61f100d cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xd73bc1a2 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbe01a05 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xdd015421 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe16e92e4 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe5250fb4 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xecc2be20 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xed0cae6b wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xeeb72695 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0b74d56 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xf327df26 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf558ad0f cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf6f8f71b cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xf98475f8 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfadb7d9a cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xfc1a7f72 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfe3e6c3a get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xfed81678 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/lib80211 0x29c18421 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x51643cdb lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x6143d12b lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x680064bc lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9824523f lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xa5592ebe lib80211_get_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5797f692 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x204ed949 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x209ffb74 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9b47f70b snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xda49432e snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc978a5bd snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x81bd3fc5 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15051247 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x196de710 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49be2799 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b1cc8c6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x519a611a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x541e2ad3 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x546a29f6 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5b3a78f1 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c2025d5 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ca25f02 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x74e2d424 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x84353a68 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90093962 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b830336 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb152ffb snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf81cc11 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0709781 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbf72aaa snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe264151b snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfcfd7b01 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xad22408f snd_seq_device_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xa16ad9ba snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2a8e8bca snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x32a0481e snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6144a66c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x74074c92 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x815495cc snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa309353f snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa593deab snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc9e95aa4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfa5f6a5f snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x171e3e93 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x23bc889b snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x27d4cff6 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c331ef8 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ace53e3 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa811f8b5 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdeb064b5 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf7ac7f92 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf9c3d589 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0648fad4 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24b160b8 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2583f0a0 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34194cae fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4161ac73 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41e9c60f fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a7c431e amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x598ef508 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5aa2f0a8 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75d67cf8 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x783553e4 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7acc0e44 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b57c29c fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c3c89a7 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x902035b9 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95ee0046 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a543d54 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9eb10e7f fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa39d0768 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1c3952f amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb27ac0ab iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7706e29 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb14624c amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe18cdb3f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe73d4226 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf4598e59 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6ffee92 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa8befe5 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfae2ecd4 amdtp_stream_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9d7777ef snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc41e1984 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x09ef6ba3 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x317b7b21 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3ab7bfe3 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5ac6f337 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9a496c00 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa1f9acbf snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa8876c81 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf9ec6d61 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x20a4fb7e snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x482e17a4 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8b521633 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcabc5325 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1eb0b1ff snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb7715332 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2ff709a2 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x35d02c9f snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9ee6eec0 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc9185f04 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdbadd241 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf48c784b snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x13ce83fb snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3a04f537 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x46174d49 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x53a8ee45 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x78284841 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb346f05d snd_i2c_device_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a584db0 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x130be1ca snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1859a101 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25e78a00 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3473686e snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x560545a8 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x586ff3de snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6daac77e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9a20aece snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbb5d7e53 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbe3a9083 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc75d103b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcdf83660 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd56ff972 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb0f5958 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf2504187 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc9e9d39 snd_ac97_bus +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x424ad77f snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6692c801 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x76f0ee10 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8442b42a snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x986b9bf6 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9bfdc08e snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb5871a94 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd55e5086 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdb9d11fb snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x430372bc snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x836d826d snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9a6cd0d7 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2e7b2661 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4491a60c oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f48acf3 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x564d0a44 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a4b650a oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c051804 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5fb84d1a oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6124dad9 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b1337cf oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79f6ec5a oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d510df2 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7e86f49a oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8dabcac2 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93b55ffd oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa89eb1d3 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0434dfd oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbdedbfce oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbe2cefdb oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1663960 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xce91fab8 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5cd1b1d2 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb0beb659 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb53964bf snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbc243a37 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc591b988 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x108545aa adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x48c8b004 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0a1eb3b3 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xc15efa2a pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xb89f8faf tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe288a157 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0c796469 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3e978f98 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7477489a aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xb450e7a6 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xcc2fd096 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7146ddbc wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x90861fee wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xef5d4fe3 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x534a489c mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xf62f5fd4 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x3b44a928 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x59398580 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xfc5e6690 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ddc918a snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x10193554 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16bb909e snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cf0b8ff sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e1473c8 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x209dcc3e snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21e2e920 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x220b2c8b snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f805cb0 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31b0bfc6 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33a76f2e sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35a30db4 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38ac4480 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d8ba8a5 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45d18baa snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cc350ec sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e03deac snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50ff85d6 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59f735bb sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e02f70b snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ea9aa66 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d3d4478 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x707252d2 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7355f7e8 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x759f46be snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78201229 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x792c000f snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a2d2531 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a9ecc80 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83a68b23 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a63cbcf snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ba76094 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95247944 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5cb4a21 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa97ef091 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab614061 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac69207f snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xada11a3b snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb06891c6 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf507456 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc54f325d snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc821849a snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc990cc04 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd5835c7 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce6f6fc0 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd135314b snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1e0a819 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd79fde10 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd927eca8 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb36653c sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe54c0397 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed766155 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef058a33 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf103774c snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf29aea8c snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf95129f6 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9ccdf31 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfabe50e7 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd2a6b4e sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0558f3e6 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2fe9f9ef snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x33804485 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x42901361 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa175e61e snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd1b38322 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x17b16e1d snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2d2c67a0 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x83c5ced7 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa6d97fb6 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa977452d snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd5390e9f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe160090a __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe18f74c7 __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x20a72706 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x001cb7ac __brelse +EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x0042319d snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x00543eb8 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x0054d0e9 rproc_detach +EXPORT_SYMBOL vmlinux 0x00563a1e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00797b2b dst_discard_out +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b7e73c xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x00ce32dc snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010e5f49 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a7b92 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x0127cc7e ptp_clock_event +EXPORT_SYMBOL vmlinux 0x012857b4 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x01321bb8 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x0136b545 new_inode +EXPORT_SYMBOL vmlinux 0x01404a81 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x01569afa i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x015861cc remove_proc_entry +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01642102 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x01658e67 __skb_pad +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0182a7ac dst_release +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x01891eb9 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x01989b3e skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01a07a21 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a56640 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x01a78693 import_single_range +EXPORT_SYMBOL vmlinux 0x01ad7177 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x01bae949 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01c3ed61 snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x01cacb51 devm_ioremap +EXPORT_SYMBOL vmlinux 0x01d2b52b backlight_device_register +EXPORT_SYMBOL vmlinux 0x01e5e61f cpu_tlb +EXPORT_SYMBOL vmlinux 0x01e769d6 __next_node_in +EXPORT_SYMBOL vmlinux 0x01f40503 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x022225de iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x0222d76d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x02411671 sock_create_lite +EXPORT_SYMBOL vmlinux 0x025c7ca3 bio_copy_data +EXPORT_SYMBOL vmlinux 0x025d7bb8 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x026b03f1 dqget +EXPORT_SYMBOL vmlinux 0x027098a9 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02b66791 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c8aaa0 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x02d71d00 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x02d8d8ad proto_unregister +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e07865 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x02e40627 device_add_disk +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f68932 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x03069175 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x03108f7f skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x03192177 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x031f791b set_cached_acl +EXPORT_SYMBOL vmlinux 0x03219837 dev_addr_del +EXPORT_SYMBOL vmlinux 0x0329a82e follow_up +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0341d9df fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x035458ec pci_find_resource +EXPORT_SYMBOL vmlinux 0x035bb0ad phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0371cce6 get_acl +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x038e3e4f of_get_next_child +EXPORT_SYMBOL vmlinux 0x0397b797 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a04c93 phy_write_paged +EXPORT_SYMBOL vmlinux 0x03afab1c udp_set_csum +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03cf6774 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x03d6003c xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x03e0885d bdi_put +EXPORT_SYMBOL vmlinux 0x03fb7d45 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0403ed4e devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x04065155 snd_timer_close +EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0419af33 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x04378fe7 vfs_fsync +EXPORT_SYMBOL vmlinux 0x04426f14 mem_section +EXPORT_SYMBOL vmlinux 0x0444b829 seq_escape +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x045d722f scsi_print_command +EXPORT_SYMBOL vmlinux 0x0468b274 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x04727de6 pci_get_slot +EXPORT_SYMBOL vmlinux 0x04786a25 register_cdrom +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04cb727b kernel_accept +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051a35d9 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x05215d62 sock_edemux +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052aca15 sock_no_accept +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0555b358 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x055ee3b4 rawnand_sw_hamming_init +EXPORT_SYMBOL vmlinux 0x057eb433 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05c2d070 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x05c97f70 __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05df7e34 sock_wfree +EXPORT_SYMBOL vmlinux 0x05e0d825 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x05fc3125 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x06047221 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x06050052 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061bb25b component_match_add_release +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065e94c7 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x06a5fc63 sg_miter_next +EXPORT_SYMBOL vmlinux 0x06bceefc dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06d32ef5 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x06f91e54 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x0708b666 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x070d711e snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x07149148 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x071b6228 sk_dst_check +EXPORT_SYMBOL vmlinux 0x07288c1b rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x076665f7 napi_get_frags +EXPORT_SYMBOL vmlinux 0x0779fb27 sock_no_bind +EXPORT_SYMBOL vmlinux 0x077aecf7 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x07967d0b set_bdi_congested +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07adcc61 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x07b760d1 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x07caa81f __skb_ext_del +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07e3b5f8 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x07ed2273 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fb071d from_kuid +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08071784 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x08136f69 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x0814011e snd_timer_new +EXPORT_SYMBOL vmlinux 0x081c61d7 tso_start +EXPORT_SYMBOL vmlinux 0x0823540f __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082811e5 tty_lock +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0854c844 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0869e09a snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x0869f454 nf_reinject +EXPORT_SYMBOL vmlinux 0x0879c2fd lock_sock_nested +EXPORT_SYMBOL vmlinux 0x087a7f5c iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x087d1bdd neigh_seq_next +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0899987f _copy_to_iter +EXPORT_SYMBOL vmlinux 0x089d9b63 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x08b5424a sock_i_uid +EXPORT_SYMBOL vmlinux 0x08bceaf4 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x08c3fbcf kern_unmount +EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x08d4aaf9 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e40428 dump_emit +EXPORT_SYMBOL vmlinux 0x08e43fcf kernel_getsockname +EXPORT_SYMBOL vmlinux 0x08f6a6f5 dm_put_device +EXPORT_SYMBOL vmlinux 0x09303acb bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x09680606 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x096f2c71 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09777b37 snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x097dd854 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x098131f0 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09a54ca7 sk_capable +EXPORT_SYMBOL vmlinux 0x09a88e9b __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x09b44afd inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x09b6c3c9 dquot_destroy +EXPORT_SYMBOL vmlinux 0x09b8007b xfrm_state_update +EXPORT_SYMBOL vmlinux 0x09cd73b2 dev_driver_string +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d5491a xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x09faae54 set_posix_acl +EXPORT_SYMBOL vmlinux 0x09fe8754 ip_options_compile +EXPORT_SYMBOL vmlinux 0x0a1fcc8d sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x0a21a875 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a3667fd rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x0a37214b devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x0a4c3677 shmem_aops +EXPORT_SYMBOL vmlinux 0x0a843494 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aba40f7 iget5_locked +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae12575 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0b011d7e netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x0b107e57 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x0b174157 register_shrinker +EXPORT_SYMBOL vmlinux 0x0b1a9db6 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b3483f2 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x0b427afe snd_timer_notify +EXPORT_SYMBOL vmlinux 0x0b45245c find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b558c29 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bbd626d pci_disable_msi +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc6ab83 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x0be939d4 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0c1a9c6c send_sig +EXPORT_SYMBOL vmlinux 0x0c1c043b gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c6701af simple_open +EXPORT_SYMBOL vmlinux 0x0c782f8b flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x0c7bc31c mmput_async +EXPORT_SYMBOL vmlinux 0x0c7fe56d console_stop +EXPORT_SYMBOL vmlinux 0x0c80965e vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0caebc6c netdev_alert +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cbb6af1 d_tmpfile +EXPORT_SYMBOL vmlinux 0x0cc47d77 mpage_writepages +EXPORT_SYMBOL vmlinux 0x0ccbdcb6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x0cd093f2 pci_get_device +EXPORT_SYMBOL vmlinux 0x0cd863ab __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ce5c7d9 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x0ce86d9b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0ce8d960 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0bffc3 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x0d1562ca scsi_scan_target +EXPORT_SYMBOL vmlinux 0x0d1b3060 neigh_destroy +EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4a411c phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x0d511df1 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x0d528c79 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d563edf blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x0d564350 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6470a2 input_inject_event +EXPORT_SYMBOL vmlinux 0x0d6fdb23 _dev_alert +EXPORT_SYMBOL vmlinux 0x0d8cf32f mmc_can_trim +EXPORT_SYMBOL vmlinux 0x0d917a04 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x0da53b6d dst_destroy +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dbc6324 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dcc5513 do_SAK +EXPORT_SYMBOL vmlinux 0x0dcfffa7 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x0ddc08a0 genphy_update_link +EXPORT_SYMBOL vmlinux 0x0debdabf proc_set_size +EXPORT_SYMBOL vmlinux 0x0dfe712a __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x0e0504f5 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x0e08a973 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e42f854 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x0e50b680 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x0e7d43cb set_nlink +EXPORT_SYMBOL vmlinux 0x0e849d77 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x0e8f69ce drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x0e9294f4 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x0e92ff95 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x0e9a7e6e mmc_can_discard +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eb73915 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0ebed098 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed9e02c mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x0ee6e032 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0f029121 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x0f05af28 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f2cd2a0 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x0f30f8de __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x0f484ff4 done_path_create +EXPORT_SYMBOL vmlinux 0x0f6053ec tcp_filter +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f87cb3f __do_once_done +EXPORT_SYMBOL vmlinux 0x0fb23e0a mpage_readpage +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbe40b8 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x0fbff83f ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x0fc4ccc4 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x0fc54031 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ffc7eb8 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x10047cf7 key_unlink +EXPORT_SYMBOL vmlinux 0x10090f51 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x102415b4 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x10251358 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10371af2 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x103f1a50 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1086165d con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x1088530b eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x1093432b jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x109425e3 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x1096b467 kset_register +EXPORT_SYMBOL vmlinux 0x10b84fcd inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x10ba4190 fqdir_init +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x10cc53f5 devm_iounmap +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10fe76ec ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11692c0f vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118aab19 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x11950911 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x119bf76b has_capability +EXPORT_SYMBOL vmlinux 0x11d7c045 dma_find_channel +EXPORT_SYMBOL vmlinux 0x11db91ff xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ea9472 dquot_commit +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f51fab jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x11fc503b eth_header +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x12225e51 mr_dump +EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x1228c904 vm_map_pages +EXPORT_SYMBOL vmlinux 0x122a7e19 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x12329f71 kthread_bind +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x127810c4 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x129769c1 netdev_warn +EXPORT_SYMBOL vmlinux 0x129da239 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12e91674 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131e62d0 pps_register_source +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x133815f5 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x1349cb24 skb_store_bits +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1363f713 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x13715d51 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x138e618e snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x13af3ce2 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x13b6af72 tty_port_put +EXPORT_SYMBOL vmlinux 0x13bc2b39 edac_mc_find +EXPORT_SYMBOL vmlinux 0x13c16765 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d01f99 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x13d094e5 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f6490d jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x13f923a0 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x14065615 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x14227cbc do_splice_direct +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1439c706 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x143e207e configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x1442262e vfs_unlink +EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14631c09 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x146e1e7a __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x147dfac1 noop_llseek +EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x14c0aa6f snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x14c3aed9 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14d85fa4 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x14ee4ddb dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x15025d55 genl_register_family +EXPORT_SYMBOL vmlinux 0x15120e7b __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x151a5a57 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x151f3948 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152264ba ip_local_deliver +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1531b351 skb_copy +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15646134 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x157500af devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x158f4014 cdev_add +EXPORT_SYMBOL vmlinux 0x15944cdf snd_pcm_new +EXPORT_SYMBOL vmlinux 0x15b1d9e3 ppp_input_error +EXPORT_SYMBOL vmlinux 0x15b29d7a neigh_lookup +EXPORT_SYMBOL vmlinux 0x15b4ef8a generic_listxattr +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c3f62c xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x15c3fe10 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x15d3115d mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x15d82502 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x15db26d5 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x15fa49f7 snd_card_free +EXPORT_SYMBOL vmlinux 0x15faf450 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x160d5c2b vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x1617fe04 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x161a8ca8 put_cmsg +EXPORT_SYMBOL vmlinux 0x16271099 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16302f4c __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x16445cc5 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x1649caee dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x165d392b phy_print_status +EXPORT_SYMBOL vmlinux 0x16799be6 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x167d29e8 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x16ad6e5c snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16b4e747 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x16d02763 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x16d30eea __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x16e179cf jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f45bf4 kill_fasync +EXPORT_SYMBOL vmlinux 0x16fce8e2 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x17213888 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x1721738a inode_get_bytes +EXPORT_SYMBOL vmlinux 0x1729fbaa devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x1736dc85 pci_set_master +EXPORT_SYMBOL vmlinux 0x175d2953 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x175fae44 pci_map_rom +EXPORT_SYMBOL vmlinux 0x17700dc3 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x178127e5 sync_file_create +EXPORT_SYMBOL vmlinux 0x17830082 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x178f83ba generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x17963192 skb_seq_read +EXPORT_SYMBOL vmlinux 0x1798dc71 sock_init_data +EXPORT_SYMBOL vmlinux 0x179e204a tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x17bf16f1 snd_card_set_id +EXPORT_SYMBOL vmlinux 0x17daed55 dm_get_device +EXPORT_SYMBOL vmlinux 0x180cec9a dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x180e8b83 key_put +EXPORT_SYMBOL vmlinux 0x1812069a configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x18174b5d mmc_get_card +EXPORT_SYMBOL vmlinux 0x18180b2f invalidate_bdev +EXPORT_SYMBOL vmlinux 0x182eb01e neigh_table_clear +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1836fded fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x185ee8dc inode_dio_wait +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x188bcef9 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x188fd066 simple_rename +EXPORT_SYMBOL vmlinux 0x18a2fbe4 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x18a92d6b pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x18c97bff pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x18d22903 vme_slot_num +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18feb9ff no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x1923c2d2 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x192dca34 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x1934a7f6 nand_create_bbt +EXPORT_SYMBOL vmlinux 0x194e9d32 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x1950eb63 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x1960a585 tcf_em_register +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198bef6f dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x19919128 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x1992c9c0 truncate_setsize +EXPORT_SYMBOL vmlinux 0x199aa204 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a7e22d devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x19aafcf6 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x19b5fc5c clear_nlink +EXPORT_SYMBOL vmlinux 0x19b92e8a arp_tbl +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c9c48b disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x19cd5e3d dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x19dc849e cfb_imageblit +EXPORT_SYMBOL vmlinux 0x19de7c87 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x19df1a43 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x19e3c348 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x19eb6be4 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x19ed08bc pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x19ee1286 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x19f0ebc8 pci_request_regions +EXPORT_SYMBOL vmlinux 0x19fda630 ip_frag_init +EXPORT_SYMBOL vmlinux 0x1a0bbcb0 inode_init_always +EXPORT_SYMBOL vmlinux 0x1a0e5f01 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize +EXPORT_SYMBOL vmlinux 0x1a2b30fa rtnl_notify +EXPORT_SYMBOL vmlinux 0x1a2df5c4 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x1a31ff65 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x1a4a1a26 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x1a5f7022 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a6c0930 skb_put +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a89b6ac unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa06564 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1abb5424 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1adb2d94 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x1adde52e sg_miter_skip +EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0x1aff0214 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b316b61 __invalidate_device +EXPORT_SYMBOL vmlinux 0x1b45381f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x1b46b68c snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x1b5a4b02 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6d5d1b mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x1b722ade snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7d5eb5 snd_timer_pause +EXPORT_SYMBOL vmlinux 0x1b94a3b9 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed +EXPORT_SYMBOL vmlinux 0x1ba8baf0 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x1bac461c __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1bb2c781 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x1bc9a030 simple_fill_super +EXPORT_SYMBOL vmlinux 0x1bdea885 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1be2b1d3 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x1bf259eb unregister_filesystem +EXPORT_SYMBOL vmlinux 0x1bf30bf9 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x1bf93287 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x1c09bea1 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x1c0dc2df ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x1c1387bc dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x1c181d48 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x1c2eedc1 get_tz_trend +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c5e5bf2 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x1c7753de ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c78f3d8 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x1c8335d0 bioset_init +EXPORT_SYMBOL vmlinux 0x1c837273 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x1c852a3a devm_register_netdev +EXPORT_SYMBOL vmlinux 0x1c9c0fbd eth_validate_addr +EXPORT_SYMBOL vmlinux 0x1ca9233f param_get_string +EXPORT_SYMBOL vmlinux 0x1cbfad5f simple_unlink +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc7b114 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x1cceee3f __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x1cdeb081 tty_write_room +EXPORT_SYMBOL vmlinux 0x1ce4bc03 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x1cf72693 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x1cfe3bb0 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x1d01e955 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d0844f5 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1d2a5b90 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d34132e __break_lease +EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap +EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d921321 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x1d978150 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x1d9bd713 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x1dbe68ed fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddb4f59 km_state_notify +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1ddd9f26 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x1de30e6e dquot_quota_off +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1dee142d key_alloc +EXPORT_SYMBOL vmlinux 0x1df25c69 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x1dfaa86d rfkill_alloc +EXPORT_SYMBOL vmlinux 0x1dfbd730 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x1e055322 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e155b63 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e343306 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x1e608c97 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x1e6cb799 d_lookup +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e90a3c4 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eaa29a7 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x1eae1526 is_bad_inode +EXPORT_SYMBOL vmlinux 0x1eb02e3f genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1ec113b8 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x1ecbaac5 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edb6dc0 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x1ee64d55 tso_count_descs +EXPORT_SYMBOL vmlinux 0x1ef226d5 registered_fb +EXPORT_SYMBOL vmlinux 0x1ef781b4 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x1ef830fe rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x1f07bb40 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x1f134e86 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x1f2a88d6 pipe_lock +EXPORT_SYMBOL vmlinux 0x1f3ab200 bio_chain +EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x1f68d0c9 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x1f6babc3 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1f7e2138 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1f9e2db7 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x1fb4fbc2 console_start +EXPORT_SYMBOL vmlinux 0x1fb50709 nobh_writepage +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe81de7 twl6040_power +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x20063040 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2013879b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x201e1e84 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x203b958e copy_string_kernel +EXPORT_SYMBOL vmlinux 0x2041c9ae tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x205b9dea nf_log_unregister +EXPORT_SYMBOL vmlinux 0x20658653 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x20761009 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x207a5f2e submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x20a3d626 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x20a45814 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x20a6ca6a blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c5063e fb_set_var +EXPORT_SYMBOL vmlinux 0x20c75243 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x20c898af blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x20cd339c of_iomap +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20de438b ip6_frag_init +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x211355e1 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x211e1585 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x212fcc6d __module_get +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213ea512 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x21414859 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x2141c611 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x2153ac28 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x2176f6b6 phy_loopback +EXPORT_SYMBOL vmlinux 0x217b4352 security_path_mknod +EXPORT_SYMBOL vmlinux 0x217ea0ec secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x2188d964 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21919f5a kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x219b20df of_device_unregister +EXPORT_SYMBOL vmlinux 0x21a4d601 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x21aef80d unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x21b3b504 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e2e462 filp_open +EXPORT_SYMBOL vmlinux 0x21e5119e skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x21e7d3db remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x2216b7d5 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2230b874 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2241631e scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x2251cb23 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x2291b9db tty_unregister_device +EXPORT_SYMBOL vmlinux 0x2292f215 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x229c7c1a arp_create +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d23386 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x22d41e4b pagecache_get_page +EXPORT_SYMBOL vmlinux 0x22f50d05 bio_init +EXPORT_SYMBOL vmlinux 0x23057d87 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x23168978 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x232eb979 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x234e93f2 ram_aops +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236587f4 tcp_child_process +EXPORT_SYMBOL vmlinux 0x236f10c4 should_remove_suid +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23b6e34a unregister_qdisc +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cb2a62 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x23ce6dcc inet_accept +EXPORT_SYMBOL vmlinux 0x23e577de alloc_fcdev +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401460f register_filesystem +EXPORT_SYMBOL vmlinux 0x241c9b28 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24448c96 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x24505e21 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d91dc5 keyring_search +EXPORT_SYMBOL vmlinux 0x24eba680 sock_set_priority +EXPORT_SYMBOL vmlinux 0x24f7e58f tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x251ffc4c fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25268ddf phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x25269cec security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x2541369a seq_bprintf +EXPORT_SYMBOL vmlinux 0x254cd3f0 cdev_init +EXPORT_SYMBOL vmlinux 0x25514846 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x25634d6b kill_pid +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x257d69b4 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2588fc95 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259cb325 cdev_alloc +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec322e param_get_bool +EXPORT_SYMBOL vmlinux 0x26004fee kobject_put +EXPORT_SYMBOL vmlinux 0x26021efd rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x261ab7f1 __ps2_command +EXPORT_SYMBOL vmlinux 0x262176a0 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x2627050f xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2644761e md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x2652d684 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x266f1f1f __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x269dcda9 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x26b4d6fe elevator_alloc +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26d6bc13 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x26f27909 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x27002a36 param_set_copystring +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27159700 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x271c30d1 seq_puts +EXPORT_SYMBOL vmlinux 0x271cc748 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x272e7472 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273fba60 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x273fd8d1 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274cd377 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27678875 get_user_pages +EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x2794e5d0 dev_deactivate +EXPORT_SYMBOL vmlinux 0x27ad4613 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x27ae5281 nla_put +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c228c5 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d0ec7d rt_dst_clone +EXPORT_SYMBOL vmlinux 0x27daab44 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x27e5fc6e mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x2802c901 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2819221f input_free_device +EXPORT_SYMBOL vmlinux 0x28611773 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x286c6478 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287612cf devm_clk_get +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x28875a63 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x28884868 pci_select_bars +EXPORT_SYMBOL vmlinux 0x288e325c __register_chrdev +EXPORT_SYMBOL vmlinux 0x289333ff dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x289d5cf7 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x28bbad7f update_region +EXPORT_SYMBOL vmlinux 0x28c97346 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x28d962b0 nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x28eb811b scsi_target_resume +EXPORT_SYMBOL vmlinux 0x29094f83 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x290cf371 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x290f2edf from_kgid +EXPORT_SYMBOL vmlinux 0x291bf7c6 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x29221166 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x293a9c14 md_update_sb +EXPORT_SYMBOL vmlinux 0x2953b966 nf_log_register +EXPORT_SYMBOL vmlinux 0x295b5fbe devm_free_irq +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2992f7d3 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x299dd6bf config_group_init +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29ab5ac5 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x29ca2d9a tty_port_destroy +EXPORT_SYMBOL vmlinux 0x29d9ddf2 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29f7691d __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2a05ec19 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a345bd3 wake_up_process +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a3c7b99 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x2a4a40c9 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x2a4c52f1 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x2a880945 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9f2507 read_cache_page +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa13024 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x2aa3c486 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x2aa72c65 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x2aaa82e4 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2ab5334a scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2accd1eb md_error +EXPORT_SYMBOL vmlinux 0x2aff377e scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x2b1dcaaa proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x2b2e206b seq_file_path +EXPORT_SYMBOL vmlinux 0x2b3a013d serio_reconnect +EXPORT_SYMBOL vmlinux 0x2b595a2e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2b5a9c7f d_drop +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b70b230 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x2b756e99 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x2b7dc28f tcp_seq_next +EXPORT_SYMBOL vmlinux 0x2b84f5d6 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x2b93378d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba98d56 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x2bb14e50 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2bb4180e fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x2bc35a54 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x2bd84fd2 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2be0f184 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c0ad4c2 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x2c1ee7ff param_get_short +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c33cc62 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2c4fe6dd unlock_buffer +EXPORT_SYMBOL vmlinux 0x2c5138f8 param_ops_short +EXPORT_SYMBOL vmlinux 0x2c592bbd seq_pad +EXPORT_SYMBOL vmlinux 0x2c66cf04 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c79f9ff inode_io_list_del +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c9004ee tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x2c9ff1c0 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x2cbbb6fc nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x2cc6c9c8 ppp_input +EXPORT_SYMBOL vmlinux 0x2cdb546a irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x2ce5d516 contig_page_data +EXPORT_SYMBOL vmlinux 0x2ce791ac neigh_app_ns +EXPORT_SYMBOL vmlinux 0x2cf4a3c0 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x2cfcc9b2 seq_release_private +EXPORT_SYMBOL vmlinux 0x2cfd7cb7 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2cffb742 unlock_rename +EXPORT_SYMBOL vmlinux 0x2d109e63 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d38321f twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d435486 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6d1dd3 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d7d39ad devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x2d7e7d18 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x2d90e9e6 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dae220d netif_rx +EXPORT_SYMBOL vmlinux 0x2dae3a1f input_set_capability +EXPORT_SYMBOL vmlinux 0x2db2bd5e simple_write_begin +EXPORT_SYMBOL vmlinux 0x2dbe4e3c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x2dca2f78 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x2dcc2919 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x2dce53dd nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x2dd94458 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2ddb6fcb writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2df039ec page_mapped +EXPORT_SYMBOL vmlinux 0x2df0eb48 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x2e08225a flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x2e107603 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x2e13aee1 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e531b52 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e609577 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x2e66c9cb phy_get_pause +EXPORT_SYMBOL vmlinux 0x2e7ecc90 register_framebuffer +EXPORT_SYMBOL vmlinux 0x2e890ca1 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2e93455e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x2e948030 ilookup5 +EXPORT_SYMBOL vmlinux 0x2ea2fb74 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x2eb809c6 skb_dequeue +EXPORT_SYMBOL vmlinux 0x2ec14d59 mdio_device_register +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec64add unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2ee0c3a6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x2ee65041 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f07b9ac xsk_tx_release +EXPORT_SYMBOL vmlinux 0x2f089b20 read_code +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f2ee3e8 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2f34ad31 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2f35c799 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x2f3fcc93 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f5aadb7 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f5bd5d8 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7f4e93 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fb96ee8 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2fc11c68 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x2fc63dda nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x2fd80f1b input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x2fdd2588 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x2fdf2263 inet_getname +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300b5cb8 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x3014d273 vmap +EXPORT_SYMBOL vmlinux 0x302a65ee dev_uc_flush +EXPORT_SYMBOL vmlinux 0x30310a8c snd_card_file_add +EXPORT_SYMBOL vmlinux 0x306de143 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x3080807e config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x30908375 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a2ce0f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b2cacf napi_complete_done +EXPORT_SYMBOL vmlinux 0x30d1a499 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x30d61b06 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30e0b409 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3131ed94 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x3133a36e sock_kmalloc +EXPORT_SYMBOL vmlinux 0x3138727c udp_seq_ops +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x3152f0f9 __frontswap_load +EXPORT_SYMBOL vmlinux 0x316acfb5 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x31706bd3 blk_put_queue +EXPORT_SYMBOL vmlinux 0x31774a05 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x317d0e0c jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x317ffe57 scsi_host_get +EXPORT_SYMBOL vmlinux 0x3181c016 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin +EXPORT_SYMBOL vmlinux 0x3189639c iput +EXPORT_SYMBOL vmlinux 0x31930068 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x319cf295 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x31a03f4e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31e2d9bf dm_register_target +EXPORT_SYMBOL vmlinux 0x31e36070 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x31fbf9c7 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x31fd6dc1 path_has_submounts +EXPORT_SYMBOL vmlinux 0x321151df __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x3214188f dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x32316def rpmh_write_async +EXPORT_SYMBOL vmlinux 0x3234c94c snd_component_add +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x3239bd73 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x3248e7da iov_iter_npages +EXPORT_SYMBOL vmlinux 0x32603ffd scm_detach_fds +EXPORT_SYMBOL vmlinux 0x3267b7c5 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x326e536e nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x3272e786 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328f0acb skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp +EXPORT_SYMBOL vmlinux 0x32f3adf6 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3302917e bio_uninit +EXPORT_SYMBOL vmlinux 0x3304c384 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x33075d3c __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x3337d7cd mod_node_page_state +EXPORT_SYMBOL vmlinux 0x335905f4 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x335ab25d ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x335b86ec pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x336c19e1 phy_init_hw +EXPORT_SYMBOL vmlinux 0x3380b722 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x3381cd95 rtc_add_group +EXPORT_SYMBOL vmlinux 0x338984bb inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x339653b2 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x33b78657 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e43f3d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x33e4eeb0 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f4d43f xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fc9645 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x34220caa devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3426aa38 write_one_page +EXPORT_SYMBOL vmlinux 0x344b5945 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x344d0e38 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x346083b9 inode_insert5 +EXPORT_SYMBOL vmlinux 0x34616af7 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x348abce9 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x348f03e1 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x34920294 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34cedcae unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x34e192e7 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34ff2a7a skb_clone +EXPORT_SYMBOL vmlinux 0x34fffa78 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x35054949 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352a5928 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x35379cf6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x3561a07f mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x3561a99c uart_register_driver +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35755806 phy_suspend +EXPORT_SYMBOL vmlinux 0x35813351 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x35851e11 sock_release +EXPORT_SYMBOL vmlinux 0x35991408 seq_read_iter +EXPORT_SYMBOL vmlinux 0x35a5d904 pci_release_resource +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b46dfb generic_fillattr +EXPORT_SYMBOL vmlinux 0x35ce82ca udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x35e76bea security_sock_graft +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x36086723 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361b86b4 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x363aa081 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x363cc3d3 phy_stop +EXPORT_SYMBOL vmlinux 0x364577e2 snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x3646dc5b __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x365646d4 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365dea02 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3662bad2 address_space_init_once +EXPORT_SYMBOL vmlinux 0x36723e57 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x3680193d security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x369bfecd rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36bb5bd8 nf_log_packet +EXPORT_SYMBOL vmlinux 0x36bebb5a vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x370b07f2 phy_connect +EXPORT_SYMBOL vmlinux 0x373808a7 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x373eae14 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x374e2018 freeze_bdev +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3759ed2d unix_detach_fds +EXPORT_SYMBOL vmlinux 0x376b3954 __phy_resume +EXPORT_SYMBOL vmlinux 0x376caa6c file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x378828f8 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x3790857d ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37ae5e6d of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c335fb textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37ea11e7 param_set_int +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x380697ef fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x380c6074 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x381455e3 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38200900 wireless_send_event +EXPORT_SYMBOL vmlinux 0x3823fb65 fb_show_logo +EXPORT_SYMBOL vmlinux 0x382bc34d seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x3844c989 cdev_del +EXPORT_SYMBOL vmlinux 0x384dc3f3 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x384ecab9 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38589888 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x385cc2d1 rio_query_mport +EXPORT_SYMBOL vmlinux 0x386a0c12 set_create_files_as +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x387d8769 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x38863bca vfs_readlink +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389d1429 finish_swait +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a8a7e7 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b97d76 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x38c270c6 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38fa03dc input_get_keycode +EXPORT_SYMBOL vmlinux 0x390aca83 kfree_skb +EXPORT_SYMBOL vmlinux 0x390d5d33 tcf_block_get +EXPORT_SYMBOL vmlinux 0x3920f2ea napi_disable +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39565c7d pid_task +EXPORT_SYMBOL vmlinux 0x3957528b nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x3957c12d tty_hangup +EXPORT_SYMBOL vmlinux 0x396d5302 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x3973ea7a flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x3987116c bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3990bf1a mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399a3380 block_write_begin +EXPORT_SYMBOL vmlinux 0x39a06f8d flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x39a0a3b6 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x39abb214 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x39ac4926 rpmh_write +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39bfc976 touch_buffer +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39ca897d dup_iter +EXPORT_SYMBOL vmlinux 0x39f5c058 register_netdev +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1b6773 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x3a1edd10 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x3a2a7955 lookup_one +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a61b948 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x3a76911a fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3a828f27 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x3a955dd4 dev_trans_start +EXPORT_SYMBOL vmlinux 0x3aab2fee nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3ab4a7a3 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x3ab5a03d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abe08e0 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x3ac3eb2b vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3ae35060 param_set_uint +EXPORT_SYMBOL vmlinux 0x3b1929aa sock_register +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b2ebecf tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b4c6254 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x3b4cda9d napi_build_skb +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b723101 km_state_expired +EXPORT_SYMBOL vmlinux 0x3b8a925a nd_device_notify +EXPORT_SYMBOL vmlinux 0x3b92c64b devm_memunmap +EXPORT_SYMBOL vmlinux 0x3ba583dc inet_csk_accept +EXPORT_SYMBOL vmlinux 0x3ba66b2b kthread_stop +EXPORT_SYMBOL vmlinux 0x3bafd057 inc_node_state +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bd2d2fc generic_writepages +EXPORT_SYMBOL vmlinux 0x3be6cd85 mmc_release_host +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf09134 processor +EXPORT_SYMBOL vmlinux 0x3bfbfc18 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x3c0542f1 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x3c07000a file_open_root +EXPORT_SYMBOL vmlinux 0x3c0a0fc2 notify_change +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1f92ca pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3c2a0a4a put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x3c2f659b page_mapping +EXPORT_SYMBOL vmlinux 0x3c30b5ac snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c37ea4b kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x3c3cd657 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c592b5d jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache +EXPORT_SYMBOL vmlinux 0x3c70486d file_path +EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert +EXPORT_SYMBOL vmlinux 0x3ca6508a d_find_alias +EXPORT_SYMBOL vmlinux 0x3cb7426f km_query +EXPORT_SYMBOL vmlinux 0x3cba1e69 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x3cc0bbac vga_get +EXPORT_SYMBOL vmlinux 0x3cc856c1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x3cde6710 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceb117c dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x3cecc043 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x3cf92a81 release_sock +EXPORT_SYMBOL vmlinux 0x3d0333c6 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3d06b2ad __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x3d0e4de0 unregister_console +EXPORT_SYMBOL vmlinux 0x3d3210cc tcf_idr_create +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d6c5485 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x3d87b5bd netlink_capable +EXPORT_SYMBOL vmlinux 0x3d932fc7 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x3d99fef4 md_write_start +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3ddc6d7e vm_node_stat +EXPORT_SYMBOL vmlinux 0x3de288a2 uart_resume_port +EXPORT_SYMBOL vmlinux 0x3df6d8fe disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e00ea3b scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x3e396e02 ping_prot +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4240fd vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x3e44ce14 register_md_personality +EXPORT_SYMBOL vmlinux 0x3e451e11 bmap +EXPORT_SYMBOL vmlinux 0x3e5e96db scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x3e68871d pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x3e91f6aa vme_irq_generate +EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ea1db63 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3ea6e4d1 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x3ebdd6bd mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x3ec2b609 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x3ec5e7f6 of_chosen +EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x3ed0ad8f ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ed74c9a dm_table_event +EXPORT_SYMBOL vmlinux 0x3ede6c7e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x3ee91a88 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x3ef2cb51 __lock_buffer +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f1f2096 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3f242ab7 devm_memremap +EXPORT_SYMBOL vmlinux 0x3f35d079 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x3f3d2775 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f59a327 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f67fe05 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x3f6c09a1 bdevname +EXPORT_SYMBOL vmlinux 0x3f8696be shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fad899b netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x3fadc240 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x3fb14684 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x3fb1953f clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x3fb5d602 finish_no_open +EXPORT_SYMBOL vmlinux 0x3fb81aa4 arp_send +EXPORT_SYMBOL vmlinux 0x3fbb831e mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x3fbcf49b get_tree_single +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fca9db7 audit_log_start +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdb5550 mount_bdev +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x4003989f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x40157a09 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x40428998 nonseekable_open +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x406f9128 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x40721c26 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x40756a4a dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x407fbb9a dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x4082d330 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x4090b178 module_layout +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x40bca5d3 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x40c317b9 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e4d7e5 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f35a52 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x40fc83c7 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x41069ac2 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x410fad8a netlink_set_err +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41303290 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x4131fe5e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x413891fd __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x413a309d devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x4145e6df rt6_lookup +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x414c7984 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x417d3d40 get_mem_type +EXPORT_SYMBOL vmlinux 0x4184d551 key_revoke +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x4191d715 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x41a06e0e crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41de88fc fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x41e31302 __frontswap_store +EXPORT_SYMBOL vmlinux 0x41e51f81 __register_binfmt +EXPORT_SYMBOL vmlinux 0x41eb4a0d __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x41ef5903 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x421fd0d6 key_link +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423d7fd6 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x4249c18d netdev_features_change +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425370f5 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x426a5068 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x42787f5c dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x427a6a9c xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x428ea887 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x42914bb6 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x42a25317 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x42a448e0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x42ac480a inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x42afe2e7 framebuffer_release +EXPORT_SYMBOL vmlinux 0x42ccbd8c napi_enable +EXPORT_SYMBOL vmlinux 0x42de80f7 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f75cb6 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x42fa3643 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4300dd39 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43031d7d dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x43080a8c pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x4308dc04 seq_read +EXPORT_SYMBOL vmlinux 0x4316eb31 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x431e7760 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x43221982 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433ab68b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4346bb70 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439a9be0 is_subdir +EXPORT_SYMBOL vmlinux 0x43b9a153 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x43cdf003 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d3e7ca xfrm_init_state +EXPORT_SYMBOL vmlinux 0x43e1aea5 sock_create_kern +EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds +EXPORT_SYMBOL vmlinux 0x43f210a1 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x43f31840 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x43f577b6 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x4400f706 simple_lookup +EXPORT_SYMBOL vmlinux 0x440fa90e filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442be2bd pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443bddaf xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x443dc0d4 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x4461eb55 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x4480282f inet6_release +EXPORT_SYMBOL vmlinux 0x4492eacf vlan_vid_del +EXPORT_SYMBOL vmlinux 0x44a09076 keyring_alloc +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44d1f625 __netif_schedule +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44ddd761 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f948b9 mntget +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452d7f96 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45469b91 __icmp_send +EXPORT_SYMBOL vmlinux 0x4555009f inet_del_offload +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457c0281 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x45875bda dquot_disable +EXPORT_SYMBOL vmlinux 0x4593f9d5 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x45adc894 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x45bc7bba filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45dc6da3 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x45e21e54 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x45e301a5 dev_change_flags +EXPORT_SYMBOL vmlinux 0x45eb64ed of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x4612d401 register_console +EXPORT_SYMBOL vmlinux 0x46186dbd phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46498697 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466b6ce7 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x466e2612 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x46748981 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x468846eb snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x468d3489 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c15e01 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46e13797 inet6_protos +EXPORT_SYMBOL vmlinux 0x46f0340b security_path_mkdir +EXPORT_SYMBOL vmlinux 0x46f16c28 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x471c5f03 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x4734d20e tcp_close +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x475660e8 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x4764cf46 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x476f2c6b netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47799030 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x4783b1fb config_item_get +EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a10728 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x47befe06 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c81d4b elm_config +EXPORT_SYMBOL vmlinux 0x47dffb71 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47ecdda6 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x480387d2 dev_uc_del +EXPORT_SYMBOL vmlinux 0x48116298 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x48160ada rproc_add +EXPORT_SYMBOL vmlinux 0x483de7d1 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48691f02 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x4870845e inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x487e9d6b padata_alloc +EXPORT_SYMBOL vmlinux 0x488c9d95 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x48916c7d elv_rb_find +EXPORT_SYMBOL vmlinux 0x489a01ec tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x48a034a3 __register_nls +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b88a37 build_skb_around +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c53ad6 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x48d26793 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x48e1cbf5 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490d5420 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x490ef828 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x490f099d jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x4919101b pci_choose_state +EXPORT_SYMBOL vmlinux 0x493570de pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x49480e78 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x4949c1ef xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49557ff2 input_grab_device +EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49aa78a8 make_kuid +EXPORT_SYMBOL vmlinux 0x49cb3cca tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x49d2153e amba_device_register +EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x49e2d753 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x4a1a564e snd_device_free +EXPORT_SYMBOL vmlinux 0x4a232e75 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x4a257238 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4a268cd7 pci_restore_state +EXPORT_SYMBOL vmlinux 0x4a30ab3d read_cache_pages +EXPORT_SYMBOL vmlinux 0x4a30e67b path_get +EXPORT_SYMBOL vmlinux 0x4a358a67 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a42a808 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x4a50d015 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x4a6734ca skb_tx_error +EXPORT_SYMBOL vmlinux 0x4a6911bf vme_register_driver +EXPORT_SYMBOL vmlinux 0x4a6ecbeb pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0x4adec3a8 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x4ae1425d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x4aeba6af vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afa6add flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x4b09d2ed snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x4b1fd09a param_ops_byte +EXPORT_SYMBOL vmlinux 0x4b4c911e i2c_transfer +EXPORT_SYMBOL vmlinux 0x4b5aa533 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x4b5e76dc iov_iter_init +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b71ed67 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x4b753398 get_watch_queue +EXPORT_SYMBOL vmlinux 0x4b7bdc21 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x4bbc15c4 sync_filesystem +EXPORT_SYMBOL vmlinux 0x4bcac2f1 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4bd77542 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bef9895 ether_setup +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c3ca3c7 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x4c3dad75 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5c8f85 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x4c71aba2 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x4c7d8945 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x4cb3675a mount_nodev +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4ccd2cb8 of_device_alloc +EXPORT_SYMBOL vmlinux 0x4cd1dad5 phy_disconnect +EXPORT_SYMBOL vmlinux 0x4cdd1b5f find_vma +EXPORT_SYMBOL vmlinux 0x4ce376c4 d_delete +EXPORT_SYMBOL vmlinux 0x4cf47b40 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d140a14 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x4d1cb761 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x4d1dd750 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3ed329 _dev_printk +EXPORT_SYMBOL vmlinux 0x4d43a6d1 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d485033 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d54672a sg_miter_start +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d726bf0 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x4d7ead77 snd_compr_malloc_pages +EXPORT_SYMBOL vmlinux 0x4d7fb12e xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4d97cf87 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4d9c38f7 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x4da053d0 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x4dc7527d arp_xmit +EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e23cc7c fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e42e554 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x4e4cae61 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x4e4eccc8 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x4e59e1de blk_get_request +EXPORT_SYMBOL vmlinux 0x4e5fb00c dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6da222 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ed00baf bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4eded16d kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x4ee5d597 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4eedbf3c remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x4ef55a42 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x4efca32d jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x4f1886f7 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2ee841 ip_defrag +EXPORT_SYMBOL vmlinux 0x4f577744 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x4f618289 fb_blank +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f8342f1 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8fa4a5 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x4f923058 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x4f98160f km_new_mapping +EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50021e40 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x501adbd1 bio_split +EXPORT_SYMBOL vmlinux 0x501d5c50 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x50292b60 generic_perform_write +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x502cc94c snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x502cffee inet_protos +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5056544e invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5066de84 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x506d1e9e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50749859 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5095ffbd tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x509c8b8b scsi_remove_device +EXPORT_SYMBOL vmlinux 0x50a0dd7a of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50daae22 of_translate_address +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fcfe8d of_get_min_tck +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x5121ab24 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x51247ce5 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51746490 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x518ee8e6 bio_free_pages +EXPORT_SYMBOL vmlinux 0x51a732b2 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51ada7a0 genlmsg_put +EXPORT_SYMBOL vmlinux 0x51d648a1 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5209ae71 pci_iounmap +EXPORT_SYMBOL vmlinux 0x52392e53 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x523fcb1c tso_build_hdr +EXPORT_SYMBOL vmlinux 0x52587b88 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x52598ad1 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x527127fc blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x5274aaae qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x527fd828 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x528b9cfc ip_frag_next +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52994c10 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x52a52e87 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x52b09b99 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52bc7728 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x52d12cc0 trace_event_printf +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dd80d1 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x52e1581a tcf_exts_change +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52f81a46 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x52f95034 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x52fe3812 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x52fe9dee dcb_setapp +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530c72c8 uart_match_port +EXPORT_SYMBOL vmlinux 0x530d1f44 seq_release +EXPORT_SYMBOL vmlinux 0x5310d178 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x532897de vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x53297bf0 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5353b61c mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x5379b395 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x53820508 dquot_transfer +EXPORT_SYMBOL vmlinux 0x53965d20 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x53b127e0 kill_anon_super +EXPORT_SYMBOL vmlinux 0x53b4fd52 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x53b8830a tty_unthrottle +EXPORT_SYMBOL vmlinux 0x53d1e780 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x53d9e245 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x53dd31cb get_unmapped_area +EXPORT_SYMBOL vmlinux 0x53ed3a88 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x53f4c85f jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5411b250 of_phy_connect +EXPORT_SYMBOL vmlinux 0x541738c4 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x5418fecb dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x542b7d8c vme_irq_request +EXPORT_SYMBOL vmlinux 0x54397b6f ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x543b4449 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x549a9c24 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x549befda uart_add_one_port +EXPORT_SYMBOL vmlinux 0x54a77ac9 rproc_alloc +EXPORT_SYMBOL vmlinux 0x54aecf98 fget_raw +EXPORT_SYMBOL vmlinux 0x54b727a5 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x54ba3342 can_nice +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f3a674 of_node_get +EXPORT_SYMBOL vmlinux 0x54f6a552 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5514f752 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x556892f3 phy_start +EXPORT_SYMBOL vmlinux 0x5568b083 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x55819688 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x5589f2b8 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x558aeaa3 vfs_create +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559b1f2d remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x55b60a6c fqdir_exit +EXPORT_SYMBOL vmlinux 0x55c84a6e of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x55dc54ac vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x562b91c3 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x564168e4 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x565dca1b genphy_loopback +EXPORT_SYMBOL vmlinux 0x567db174 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56994b96 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x56a32088 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x56ac12d9 d_add_ci +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d2f0b0 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56eed81e page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x56fe0bf3 fs_bio_set +EXPORT_SYMBOL vmlinux 0x572f80a2 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x573748da i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x573d8853 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574cc81b sk_ns_capable +EXPORT_SYMBOL vmlinux 0x57565da6 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57685e30 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x5769da41 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5780a83d simple_pin_fs +EXPORT_SYMBOL vmlinux 0x57932de8 of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0x579e87f5 genl_notify +EXPORT_SYMBOL vmlinux 0x57c63398 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x57c8d3dc keyring_clear +EXPORT_SYMBOL vmlinux 0x57caa025 d_move +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57f0c7e7 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x57f1f2e0 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x58000a91 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x580fccb1 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582fad51 discard_new_inode +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x58552d91 km_policy_notify +EXPORT_SYMBOL vmlinux 0x58724fc0 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x589d0f09 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b38a95 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58be69b6 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x58dba37d netdev_state_change +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ea0653 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x58fc34ae nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x59019498 cad_pid +EXPORT_SYMBOL vmlinux 0x59019d0e phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x5931650a tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x593b4e05 page_symlink +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x596e82b3 param_ops_bint +EXPORT_SYMBOL vmlinux 0x5986ffc5 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x59887862 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x598a02db napi_gro_flush +EXPORT_SYMBOL vmlinux 0x599acfec ps2_drain +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fdbb6 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x59a30e1f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59ba26db md_flush_request +EXPORT_SYMBOL vmlinux 0x59c4fd45 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d90361 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x59dad5a6 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x59df92ac cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e58559 of_device_is_available +EXPORT_SYMBOL vmlinux 0x59eebf72 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x59ef2b5d to_ndd +EXPORT_SYMBOL vmlinux 0x59f9febf sget_fc +EXPORT_SYMBOL vmlinux 0x59fa8198 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0c7dc6 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a175792 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x5a22601d refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x5a32c13b i2c_del_driver +EXPORT_SYMBOL vmlinux 0x5a377402 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x5a479730 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5eec6d page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x5a725464 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x5a821d20 dm_io +EXPORT_SYMBOL vmlinux 0x5a8d8f8d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x5ac48fb8 netdev_printk +EXPORT_SYMBOL vmlinux 0x5ac982f9 par_io_of_config +EXPORT_SYMBOL vmlinux 0x5adc512c fb_find_mode +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b13e7c6 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5b1560a4 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b53b912 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b8a2b10 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x5b9147be snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0x5b97f432 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x5ba09de0 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x5ba6c80a get_task_cred +EXPORT_SYMBOL vmlinux 0x5bb46c48 sk_alloc +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bc98532 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be7d11a vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x5bf8cc8e inode_init_owner +EXPORT_SYMBOL vmlinux 0x5c073d59 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x5c1a5a0f dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5c3010d9 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x5c398bdb i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c5c8fde pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c903009 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cdabbba i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x5ce19e3d eth_type_trans +EXPORT_SYMBOL vmlinux 0x5ce3c67c xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x5cf2cb9a napi_consume_skb +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0ad451 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d45e8d2 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d6fa2ab pci_clear_master +EXPORT_SYMBOL vmlinux 0x5d7107fa mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x5d789557 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5d7dd3e8 mdiobus_read +EXPORT_SYMBOL vmlinux 0x5d8351ad dev_uc_add +EXPORT_SYMBOL vmlinux 0x5d8c0a22 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x5d9ca1e4 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x5da5a3c0 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5dbe0fa0 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x5dcf063b netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd84aa2 tso_build_data +EXPORT_SYMBOL vmlinux 0x5dd874a8 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds +EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize +EXPORT_SYMBOL vmlinux 0x5dfdcfee amba_find_device +EXPORT_SYMBOL vmlinux 0x5e012bb7 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1bf971 phy_attach +EXPORT_SYMBOL vmlinux 0x5e26869b csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5e26f30e dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5e2b86d0 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e4f7752 vfs_getattr +EXPORT_SYMBOL vmlinux 0x5e7b73ba pci_request_irq +EXPORT_SYMBOL vmlinux 0x5e7c3cc3 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8d5fd9 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea7a662 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec214fe scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecb4c7d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee0a97b rtnl_create_link +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ef35847 tcp_req_err +EXPORT_SYMBOL vmlinux 0x5efcae6b sk_stop_timer +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0ceef2 set_page_dirty +EXPORT_SYMBOL vmlinux 0x5f2a35a0 md_register_thread +EXPORT_SYMBOL vmlinux 0x5f568a23 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x5f5d1075 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f7ebbf9 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x5f80fb22 cdrom_open +EXPORT_SYMBOL vmlinux 0x5f95dacf scsi_register_interface +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fcb312c md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5fcbabb9 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x5fe09ef9 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff98d8e mmc_start_request +EXPORT_SYMBOL vmlinux 0x5ffcb016 tty_do_resize +EXPORT_SYMBOL vmlinux 0x5fff529f nand_ecc_sw_bch_calculate +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600ab74a pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6026f465 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604a57f8 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x605597ec jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6094ffe4 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c47ae1 param_get_ulong +EXPORT_SYMBOL vmlinux 0x60cdb576 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e54ca0 phy_init_eee +EXPORT_SYMBOL vmlinux 0x60fd9426 init_task +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x612295c0 sock_create +EXPORT_SYMBOL vmlinux 0x61273b75 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x6127b3ab mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x6158458c dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6175b5da blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6176116b md_done_sync +EXPORT_SYMBOL vmlinux 0x618bc993 request_key_rcu +EXPORT_SYMBOL vmlinux 0x619f0fbe fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x61a8faf3 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bdef31 snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0x61c0c489 of_match_node +EXPORT_SYMBOL vmlinux 0x61c54c65 xattr_full_name +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61cc7084 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e90cd4 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x62034aac scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x620df432 inet_shutdown +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621d8d8a user_path_create +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622a136b blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x622d33ff serio_close +EXPORT_SYMBOL vmlinux 0x624a5063 setattr_copy +EXPORT_SYMBOL vmlinux 0x62513ce5 kill_pgrp +EXPORT_SYMBOL vmlinux 0x625ae80f sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x6262036c nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629592bb sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x629e5b79 input_flush_device +EXPORT_SYMBOL vmlinux 0x62b57389 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x62b9567c override_creds +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62bf9302 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x62dd3888 sock_set_mark +EXPORT_SYMBOL vmlinux 0x62e034b2 mr_table_dump +EXPORT_SYMBOL vmlinux 0x62e2cfcd padata_free +EXPORT_SYMBOL vmlinux 0x62e91791 dma_map_resource +EXPORT_SYMBOL vmlinux 0x62eec313 vm_insert_page +EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6322bf3a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6327c16a phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x632a0a4f backlight_force_update +EXPORT_SYMBOL vmlinux 0x632dc376 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x634147db mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x637728ba mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x638218af register_qdisc +EXPORT_SYMBOL vmlinux 0x6382b467 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL vmlinux 0x638561c7 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x638ea9b7 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aad428 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x63afa77d md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x63b7a817 tty_devnum +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d31b4b show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x63da8a7f mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x63e0bba2 register_key_type +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ec9a84 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x63f7fd08 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x6403928a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642d3a0e unregister_nls +EXPORT_SYMBOL vmlinux 0x6431cad8 sound_class +EXPORT_SYMBOL vmlinux 0x6439451b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x645f58e0 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x645fabb0 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x64658157 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x6487924d remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ac2a0b d_prune_aliases +EXPORT_SYMBOL vmlinux 0x64c5801f devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x65102b8a mmc_put_card +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6529871f __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x65597ed5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65924f6e nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x6594cfcd pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a48cdf netpoll_print_options +EXPORT_SYMBOL vmlinux 0x65b2cd07 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x65be6413 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x65c8f470 datagram_poll +EXPORT_SYMBOL vmlinux 0x65cc6fb0 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d8215a vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x660e77c3 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x66133e31 dev_activate +EXPORT_SYMBOL vmlinux 0x6615b159 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6617d216 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x6621b00d i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x663c2c84 bio_add_page +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6659e145 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6679cee8 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x667b650c snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x667cea40 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x6684f808 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66b41039 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x66bbe6b4 snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x66c65193 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6703f961 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x670b2da4 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x670e927c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x671baecf sk_mc_loop +EXPORT_SYMBOL vmlinux 0x67298957 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x67341821 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x673b8a4e __ip_dev_find +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674c805f max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x67502b39 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x677fd415 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x6786fe6b phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67934295 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x679856f5 sort_r +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c19e38 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x67dd0888 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x67e4dd75 snd_timer_open +EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x67f4fc27 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x68222aa0 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x6852ef69 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x68556854 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6855af02 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x685a6740 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x6866902c inet_recvmsg +EXPORT_SYMBOL vmlinux 0x68768eb8 xp_dma_map +EXPORT_SYMBOL vmlinux 0x687a9797 follow_pfn +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687be213 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x6897d32a copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a5e685 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x68a8e6ff pci_read_vpd +EXPORT_SYMBOL vmlinux 0x68ae7a3c __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x68c84ed5 do_map_probe +EXPORT_SYMBOL vmlinux 0x68de4327 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x68ea9a6b dma_free_attrs +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69164e27 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x692a615f super_setup_bdi +EXPORT_SYMBOL vmlinux 0x693d40cd nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x695e78e8 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69bfc3ab sockfd_lookup +EXPORT_SYMBOL vmlinux 0x69c2db82 kobject_init +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69e7cbca xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x69ee0189 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x69fd81e1 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x6a00ccad nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a122d01 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x6a16b89e gro_cells_init +EXPORT_SYMBOL vmlinux 0x6a18dd9c mdio_driver_register +EXPORT_SYMBOL vmlinux 0x6a203ca8 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x6a29e6f4 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x6a35bf02 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x6a4a2190 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x6a4acda0 redraw_screen +EXPORT_SYMBOL vmlinux 0x6a593236 pipe_unlock +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a61504b follow_down_one +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a7f4c89 would_dump +EXPORT_SYMBOL vmlinux 0x6a816c78 dns_query +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab2a674 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x6ac13826 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x6ac1f837 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ad50be4 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x6ad77e00 padata_do_serial +EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6b048cdf phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x6b055bb9 get_phy_device +EXPORT_SYMBOL vmlinux 0x6b191700 snd_timer_start +EXPORT_SYMBOL vmlinux 0x6b21088c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6b2c8e5f pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b2e1272 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x6b30ca61 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6b3356fb vme_irq_free +EXPORT_SYMBOL vmlinux 0x6b3434e1 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x6b3c5622 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x6b4eeb5a netpoll_setup +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b6a9975 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x6b785c7c lease_get_mtime +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6bad4c6b fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x6bb8b5b7 ata_port_printk +EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bc23418 blk_queue_split +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc8e5eb devm_of_iomap +EXPORT_SYMBOL vmlinux 0x6be17118 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x6bef3583 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x6c0a6461 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6c149403 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c241736 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c30e996 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6c312cfa register_sound_special_device +EXPORT_SYMBOL vmlinux 0x6c3df724 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x6c445762 kobject_add +EXPORT_SYMBOL vmlinux 0x6c45a144 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x6c534c16 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x6c551a2d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x6c58d979 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6c4068 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6c6d3778 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x6c7564db page_pool_create +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c951b62 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x6c99507a phy_read_mmd +EXPORT_SYMBOL vmlinux 0x6ca5d8d7 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb46824 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x6cbcc7fb skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6cd16ea4 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x6cde7dd5 dev_mc_init +EXPORT_SYMBOL vmlinux 0x6cdeaf0e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf2ed15 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x6cfedeb7 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6d0e98d8 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6d17df51 dquot_initialize +EXPORT_SYMBOL vmlinux 0x6d1f27ac nf_hook_slow +EXPORT_SYMBOL vmlinux 0x6d21ffb2 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x6d274c76 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2bc7d5 inode_set_flags +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4966ae zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x6d4a5a25 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x6d586a25 rproc_free +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d674448 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x6d6759c6 _dev_notice +EXPORT_SYMBOL vmlinux 0x6d704e05 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d8a1738 __scsi_execute +EXPORT_SYMBOL vmlinux 0x6d8efd9c pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x6d8f020b set_blocksize +EXPORT_SYMBOL vmlinux 0x6d9b20f5 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x6da24426 kernel_bind +EXPORT_SYMBOL vmlinux 0x6da436d9 tcp_check_req +EXPORT_SYMBOL vmlinux 0x6daa03cd ata_print_version +EXPORT_SYMBOL vmlinux 0x6dc59eda __kmap_to_page +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds +EXPORT_SYMBOL vmlinux 0x6de207df input_allocate_device +EXPORT_SYMBOL vmlinux 0x6de2b3b3 md_integrity_register +EXPORT_SYMBOL vmlinux 0x6de93a83 dev_load +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e00d470 dst_alloc +EXPORT_SYMBOL vmlinux 0x6e05453b xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e1e776b write_inode_now +EXPORT_SYMBOL vmlinux 0x6e22b5ea kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x6e3e6a43 freeze_super +EXPORT_SYMBOL vmlinux 0x6e4d62a3 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e571adb blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x6e5f78c1 igrab +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e841ffb dcache_readdir +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb269c5 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x6ec1eddf pcim_enable_device +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6eda0eca cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x6ee71873 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x6eec4415 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6ef9b1c0 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f084786 set_binfmt +EXPORT_SYMBOL vmlinux 0x6f0d33c1 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x6f105a2d gro_cells_receive +EXPORT_SYMBOL vmlinux 0x6f109292 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x6f34e0ae ip6_xmit +EXPORT_SYMBOL vmlinux 0x6f3e6f8d pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x6f40de79 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x6f5cb425 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f9a4751 pin_user_pages +EXPORT_SYMBOL vmlinux 0x6fa3dfa4 poll_freewait +EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fc6ecf9 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd3e831 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ffa73cf vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702b26d3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x705e3878 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x70669356 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x70673957 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x7069feb8 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7077c4f0 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x708c6926 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x70a23665 scsi_add_device +EXPORT_SYMBOL vmlinux 0x70c363b9 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x70d11b66 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x70d3be9d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x70d5b4c2 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x71204426 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713eeb86 PDE_DATA +EXPORT_SYMBOL vmlinux 0x71456c8e icmp6_send +EXPORT_SYMBOL vmlinux 0x71485e5e jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x71492787 snd_card_register +EXPORT_SYMBOL vmlinux 0x714ce039 filemap_flush +EXPORT_SYMBOL vmlinux 0x7153214b blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x71544fdd linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x7157987d ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715c6c85 sync_blockdev +EXPORT_SYMBOL vmlinux 0x7161cc8c input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71812b90 dentry_open +EXPORT_SYMBOL vmlinux 0x7188de3e param_get_byte +EXPORT_SYMBOL vmlinux 0x7188f336 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x7198f657 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a8d456 dump_align +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d42f8d param_ops_invbool +EXPORT_SYMBOL vmlinux 0x71d85231 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x71d9b3ba ps2_handle_response +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7224e301 regset_get +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x725461f3 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x7256c1e9 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x725cb3c1 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7267930e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7281c79a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x72a35824 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72aae68d dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x72ae3234 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c925f3 input_close_device +EXPORT_SYMBOL vmlinux 0x72caec48 seq_open +EXPORT_SYMBOL vmlinux 0x72e268e0 skb_expand_head +EXPORT_SYMBOL vmlinux 0x72e34d64 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x72e739a3 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f01451 pps_event +EXPORT_SYMBOL vmlinux 0x72f674d4 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x72f85119 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0x73089004 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x73094a55 __quota_error +EXPORT_SYMBOL vmlinux 0x7312cc0a inet_sendmsg +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x731aa163 md_reload_sb +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x733454da netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x733cfa7a skb_pull +EXPORT_SYMBOL vmlinux 0x733eede7 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x734132ac snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x7350d65c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x737b2f60 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73874492 input_reset_device +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739daf34 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73c67e8c genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x73d20fb3 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x73d340da dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73ec676b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x73fd1316 mdiobus_write +EXPORT_SYMBOL vmlinux 0x7400cbab generic_read_dir +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741eadaf mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74b9ceaf __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x74bcaf47 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x74bcd14c fd_install +EXPORT_SYMBOL vmlinux 0x74bf07bc dcache_dir_open +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fccea7 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x74fe8e07 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x75004cbe uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x750e1d62 tcf_classify +EXPORT_SYMBOL vmlinux 0x7510d81f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7539a472 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7582d9b5 md_write_inc +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75caba46 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75da9df7 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x75e88318 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x75fb64e2 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x75fc6c08 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7613d40b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x763ecb97 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764cc81a input_register_handle +EXPORT_SYMBOL vmlinux 0x766106fa blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76749dc3 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x767d5997 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x76999e4f seq_vprintf +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a85b94 input_unregister_device +EXPORT_SYMBOL vmlinux 0x76addafb nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x76b25e09 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x76b93624 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x76c06ca8 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76dc56f1 __nla_put +EXPORT_SYMBOL vmlinux 0x76e8838c tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x76fe5dfc add_watch_to_object +EXPORT_SYMBOL vmlinux 0x770488e8 brioctl_set +EXPORT_SYMBOL vmlinux 0x7709c51e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x77246e06 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x77291488 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x772cd601 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x772f9ad5 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773d01e8 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x7745b4cb blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x7750f4ae tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x775930e0 pci_request_region +EXPORT_SYMBOL vmlinux 0x7766bb73 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77985fdd netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x7798e5e3 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x779c53a8 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d8dcf9 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x77e08a54 single_open_size +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x78067dbc capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780f14d5 scsi_host_put +EXPORT_SYMBOL vmlinux 0x7824200b inode_nohighmem +EXPORT_SYMBOL vmlinux 0x7826af6b ip_ct_attach +EXPORT_SYMBOL vmlinux 0x78514170 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x78570e98 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x787a1ab3 phy_device_free +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78945f0b phy_device_register +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bead63 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x78c3696b serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x78cbb0a1 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e97d13 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x79056553 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7915d9d2 pci_bus_type +EXPORT_SYMBOL vmlinux 0x792f6b33 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x793af39a balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x795e2527 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x796a9e31 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x796ba94c km_report +EXPORT_SYMBOL vmlinux 0x797a9db7 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x798565a7 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x79994f29 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79aa0c5a __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x79b5f200 start_tty +EXPORT_SYMBOL vmlinux 0x79bb9e89 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x79dc76bb noop_qdisc +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax +EXPORT_SYMBOL vmlinux 0x7a001af5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0e6c55 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a24f4e1 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7a3e5532 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x7a72c688 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x7a78146f tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x7a87aaf6 inet_ioctl +EXPORT_SYMBOL vmlinux 0x7a8dd602 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x7a90cd85 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9e4b97 simple_map_init +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5a26c cdev_set_parent +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x7ae11ced udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7ae6e609 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0e53f1 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7b19e0c0 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x7b1f5822 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b3071cb qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7b4b2f2e thread_group_exited +EXPORT_SYMBOL vmlinux 0x7b4c5566 vfs_get_super +EXPORT_SYMBOL vmlinux 0x7b4ede01 kernel_write +EXPORT_SYMBOL vmlinux 0x7b574ff7 param_get_charp +EXPORT_SYMBOL vmlinux 0x7b5b66a3 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b67ee64 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7b963d05 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7ba27bfd __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x7bb50815 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7c157d3d config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c7f2da7 page_address +EXPORT_SYMBOL vmlinux 0x7c81d5f2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c99ecea free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cb212ce devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc0d43b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x7cc1074b send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x7ccc45f9 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7cdc5dd4 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce48dd7 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7d241796 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d44303e scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7d453f57 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5330ff dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x7d591b92 inet6_offloads +EXPORT_SYMBOL vmlinux 0x7d637f81 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x7d6e833c __frontswap_test +EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x7d79f1bc dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x7d7c9a83 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7d8f8d9c netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x7d9be4f6 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x7da20960 sock_no_getname +EXPORT_SYMBOL vmlinux 0x7daa73a4 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db598b3 __seq_open_private +EXPORT_SYMBOL vmlinux 0x7dbc33c4 _dev_crit +EXPORT_SYMBOL vmlinux 0x7dc15ea2 skb_checksum +EXPORT_SYMBOL vmlinux 0x7dcbb554 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x7ddaa5c6 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7ddcf256 logfc +EXPORT_SYMBOL vmlinux 0x7ddfc073 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0888c0 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7e09c152 __fs_parse +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e4dc8e3 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x7e4dd22a xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x7e5ef2b9 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x7e6fa4cd jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7e86cc18 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7e88b6ec of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7e9fd809 snd_seq_root +EXPORT_SYMBOL vmlinux 0x7ea19086 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x7ebcedfa bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x7ebd3cee nand_ecc_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x7edbf10f snd_card_new +EXPORT_SYMBOL vmlinux 0x7ee98cde netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0b6cf9 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x7f24a9fe jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f272c49 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7f2bec4c simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5e2395 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f6cadae dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x7f756b8e misc_register +EXPORT_SYMBOL vmlinux 0x7f7eddd7 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8ecfea security_unix_may_send +EXPORT_SYMBOL vmlinux 0x7f9f72de __sock_create +EXPORT_SYMBOL vmlinux 0x7fb5ff56 skb_ext_add +EXPORT_SYMBOL vmlinux 0x7fcab4ac skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7fcf7dcf skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x7fdd07ac netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe21e55 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ffb0019 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7ffe7820 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x805e9a7d devfreq_update_status +EXPORT_SYMBOL vmlinux 0x80606378 thaw_super +EXPORT_SYMBOL vmlinux 0x806e28a3 rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x80945767 generic_write_end +EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dde8d9 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x80e40625 sk_net_capable +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80fa909c inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8101d353 generic_write_checks +EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x810bf620 stream_open +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8113847a security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x811bce8c vma_set_file +EXPORT_SYMBOL vmlinux 0x811be0c6 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x8123ea5e qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x8150c2b8 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x817e0b4f xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x818f5014 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0x81a7ab59 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b45989 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x81d32e32 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x81d58e86 param_set_hexint +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dbdd75 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ec9d33 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x82205883 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x822f90a0 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x823e57ce param_set_ushort +EXPORT_SYMBOL vmlinux 0x82466d57 init_pseudo +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x824ee279 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x826af21b dm_table_get_size +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock +EXPORT_SYMBOL vmlinux 0x828cea9c pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x829507d4 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x829a4487 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x82a11174 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x82a8c90f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x82b164d5 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x82e79b15 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x82ee66c4 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x82f347a5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x82f46406 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x8300a6d0 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x83057b09 __bforget +EXPORT_SYMBOL vmlinux 0x830f71ee tty_name +EXPORT_SYMBOL vmlinux 0x8318cb05 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x83199645 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x832cf096 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x8333b768 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x83394f4d input_get_timestamp +EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8360f1b9 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x836bbeb8 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x837134da snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x8396ea17 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x83c1206b xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify +EXPORT_SYMBOL vmlinux 0x83e4f14c make_kgid +EXPORT_SYMBOL vmlinux 0x8401953d current_in_userns +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x84132694 blk_rq_init +EXPORT_SYMBOL vmlinux 0x842703f5 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase +EXPORT_SYMBOL vmlinux 0x8459bdf4 km_policy_expired +EXPORT_SYMBOL vmlinux 0x8461cdaf ppp_channel_index +EXPORT_SYMBOL vmlinux 0x8478d550 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x848863e4 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x848ea5b6 locks_init_lock +EXPORT_SYMBOL vmlinux 0x848ffd15 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x84967522 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x849a9f5a xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x849e62ac rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x84a16ee8 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bcdd34 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84f16b58 tcp_connect +EXPORT_SYMBOL vmlinux 0x84ffd041 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x85061eeb flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x85136f13 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x8523e106 input_register_device +EXPORT_SYMBOL vmlinux 0x85419b54 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x854ecafa sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x85618da6 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x8565bd42 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856f938d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x85759d87 skb_trim +EXPORT_SYMBOL vmlinux 0x85760dcb input_match_device_id +EXPORT_SYMBOL vmlinux 0x85798dde __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x8589a319 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x858a7da8 from_kprojid +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a66a22 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x85a804d8 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x85b379b4 d_splice_alias +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f528d0 proc_mkdir +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x862bc663 memset16 +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8643f0ac poll_initwait +EXPORT_SYMBOL vmlinux 0x86595007 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x865e4cdd skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x8665abd4 fiemap_prep +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a93f05 passthru_features_check +EXPORT_SYMBOL vmlinux 0x86ada79e phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x86d39dc8 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dfd04d mtd_concat_create +EXPORT_SYMBOL vmlinux 0x86e836ba request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x874f1a84 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x8761cb69 param_get_uint +EXPORT_SYMBOL vmlinux 0x8763fb47 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x87846a5d jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x87b64a96 inet_select_addr +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87ba9231 bio_put +EXPORT_SYMBOL vmlinux 0x87d9f2dd drop_nlink +EXPORT_SYMBOL vmlinux 0x87e666c9 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x87ec5f07 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x87fe69c1 input_set_keycode +EXPORT_SYMBOL vmlinux 0x87ff5bcc mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x8803acdf security_sk_clone +EXPORT_SYMBOL vmlinux 0x88073b63 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x88333780 iget_locked +EXPORT_SYMBOL vmlinux 0x8844ea0c migrate_page_states +EXPORT_SYMBOL vmlinux 0x884c1483 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x88544520 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x885a445f mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x88745590 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x887ecec6 snd_device_register +EXPORT_SYMBOL vmlinux 0x887fbffb unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88979f27 proc_create_data +EXPORT_SYMBOL vmlinux 0x889a2a14 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88ba59b8 ethtool_notify +EXPORT_SYMBOL vmlinux 0x88c31498 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x8913ea6e try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x891a75b0 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x892005e3 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x8927c89f tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x89315daf __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x893d797d snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x894964dd buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x8960f79e dev_printk_emit +EXPORT_SYMBOL vmlinux 0x89611945 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x8979dd6f pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x89a6ea1b tty_port_init +EXPORT_SYMBOL vmlinux 0x89d531c3 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x89eb15a2 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x89f80a06 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x89fd1a83 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8a0539bf find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x8a0ed950 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x8a191575 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x8a214cc6 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8a2bd9f3 inode_permission +EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a568e74 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x8a616d8e sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x8aae9a2b block_read_full_page +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac59e62 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x8adbb1d6 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x8adfed82 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b082348 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x8b0b4c6b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x8b0eb13d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x8b105e72 pci_find_bus +EXPORT_SYMBOL vmlinux 0x8b254f77 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8b377121 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x8b44eb8d napi_gro_receive +EXPORT_SYMBOL vmlinux 0x8b49e93f skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8b4e28ce blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x8b530301 simple_link +EXPORT_SYMBOL vmlinux 0x8b57065d free_netdev +EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout +EXPORT_SYMBOL vmlinux 0x8b5adfd1 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67b0b9 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x8b7acb8a vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8baec921 param_ops_uint +EXPORT_SYMBOL vmlinux 0x8bbacedd ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x8bbd4650 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x8bc1ccdc tcp_ioctl +EXPORT_SYMBOL vmlinux 0x8bcc9665 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring +EXPORT_SYMBOL vmlinux 0x8bf91526 load_nls +EXPORT_SYMBOL vmlinux 0x8c0dc0f7 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x8c13fe6d netif_skb_features +EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x8c3c03ae security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x8c47de3f mmc_free_host +EXPORT_SYMBOL vmlinux 0x8c4896c1 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x8c4bf047 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9ac5da inet_listen +EXPORT_SYMBOL vmlinux 0x8ca652a5 scsi_partsize +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb08b8a input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x8cc378a2 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table +EXPORT_SYMBOL vmlinux 0x8ce171b0 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x8ce3be03 write_cache_pages +EXPORT_SYMBOL vmlinux 0x8cf8bbcb tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x8cfd0ceb default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8d07c17f tty_kref_put +EXPORT_SYMBOL vmlinux 0x8d3d4eec sock_bind_add +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d442444 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x8d519944 get_vm_area +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d561543 __free_pages +EXPORT_SYMBOL vmlinux 0x8d5c40ae of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x8d6626f9 dev_get_stats +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8db3cf51 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x8dbb818a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x8dd36910 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x8dda3fa6 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de3fd53 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x8deb80c4 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node +EXPORT_SYMBOL vmlinux 0x8e10183a sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x8e1aa392 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8e20ec8d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8e2a3c2c dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x8e2d9790 neigh_for_each +EXPORT_SYMBOL vmlinux 0x8e2e30fd tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x8e4acd91 kill_block_super +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e5df3a3 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x8e64fd02 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x8e67f2ba fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x8e75904f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9c1c22 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x8ea2229a gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x8eb8d812 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x8ec804c7 inet_offloads +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8ee86ec3 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x8efb68b3 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f08cd0a tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x8f19d523 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8f1e2bbf __serio_register_port +EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8f278ef2 flush_signals +EXPORT_SYMBOL vmlinux 0x8f2a85ac qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x8f2db246 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x8f4de508 init_special_inode +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f666fcc dget_parent +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f8d178d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch +EXPORT_SYMBOL vmlinux 0x8f8f9f71 netdev_emerg +EXPORT_SYMBOL vmlinux 0x8f96c2b7 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa2bc72 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x8fa69a71 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x8fc511b6 clk_get +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd50600 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x8fde4084 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update +EXPORT_SYMBOL vmlinux 0x8fed23cb phy_config_aneg +EXPORT_SYMBOL vmlinux 0x8fef1dd4 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90075f32 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x9009fb1e input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x9016257e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x90168f77 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9040e388 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x9054e1a3 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x906e973c phy_modify_paged +EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9072e10b phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x90759509 pci_dev_put +EXPORT_SYMBOL vmlinux 0x9075a142 md_handle_request +EXPORT_SYMBOL vmlinux 0x9090f2ee mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x90911c2c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl +EXPORT_SYMBOL vmlinux 0x90960508 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x90c7b4be __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x90e334b6 amba_driver_register +EXPORT_SYMBOL vmlinux 0x9110b75f snd_timer_stop +EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x9135e896 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x9145e2fd __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x914880af devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x916040df netlink_ack +EXPORT_SYMBOL vmlinux 0x9160f821 __breadahead +EXPORT_SYMBOL vmlinux 0x916a9543 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x917d307f ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x917d9264 unregister_netdev +EXPORT_SYMBOL vmlinux 0x917dcd43 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x917fc62a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0x9188ea8d fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a58fa6 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c222e4 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x91c39892 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x91cd2eeb ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x91d6eee4 skb_unlink +EXPORT_SYMBOL vmlinux 0x91ec98fd phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x92014010 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x92192a6c module_refcount +EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x922212f6 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923c17d5 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x923c2d17 follow_down +EXPORT_SYMBOL vmlinux 0x9246b520 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x925067e9 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x92627faa sock_no_listen +EXPORT_SYMBOL vmlinux 0x9264c060 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x9272d467 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x92753ff8 get_fs_type +EXPORT_SYMBOL vmlinux 0x927bb7c3 netif_device_attach +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929d318a mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x92b17f3b qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92bd5ff2 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x92bf9de5 sock_alloc +EXPORT_SYMBOL vmlinux 0x92c0710f save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0x92c897eb d_alloc_name +EXPORT_SYMBOL vmlinux 0x92ce7963 d_obtain_root +EXPORT_SYMBOL vmlinux 0x92d207d1 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x92d465aa hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dc3f16 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x92e5ae31 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x92e700c3 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931875e4 put_watch_queue +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x933053b7 blk_put_request +EXPORT_SYMBOL vmlinux 0x933175a3 may_umount_tree +EXPORT_SYMBOL vmlinux 0x935c58bf twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x936393ce phy_write_mmd +EXPORT_SYMBOL vmlinux 0x936c1785 netdev_err +EXPORT_SYMBOL vmlinux 0x93709a7a pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937b3971 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x9385c622 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x938a2db8 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x93965d4e sock_pfree +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b0c767 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93be461f fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x93c0249f mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x93c11182 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x93c6bb8f mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x93e1e55a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x93e6a0bc dquot_operations +EXPORT_SYMBOL vmlinux 0x93f7f4ba vme_slave_request +EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x9412220b backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x9433b520 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be +EXPORT_SYMBOL vmlinux 0x94488a7b unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9450324b simple_getattr +EXPORT_SYMBOL vmlinux 0x94546752 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x947707fe __alloc_skb +EXPORT_SYMBOL vmlinux 0x94819e32 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x948f855b rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a084da phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x94b1c2e2 fc_mount +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c2854b generic_file_llseek +EXPORT_SYMBOL vmlinux 0x94e4259c vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x9503ec48 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x952f5340 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x952f902e devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x956d82d7 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x956fae46 inet_put_port +EXPORT_SYMBOL vmlinux 0x9576844b mdiobus_scan +EXPORT_SYMBOL vmlinux 0x9580dc81 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x9582db59 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x95922fd2 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x95b63c31 page_get_link +EXPORT_SYMBOL vmlinux 0x95d470f3 send_sig_info +EXPORT_SYMBOL vmlinux 0x95d87efb __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95e04d8e kmap_high +EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x95f411ba max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x95f748e3 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x96072023 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x961072fc tty_vhangup +EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x9632fecd __scm_send +EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user +EXPORT_SYMBOL vmlinux 0x964f84a0 try_to_release_page +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965ccf61 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x968618d0 make_bad_inode +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968bef0f iunique +EXPORT_SYMBOL vmlinux 0x968ccff9 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x96a8d5ef make_kprojid +EXPORT_SYMBOL vmlinux 0x96b4d5ea wireless_spy_update +EXPORT_SYMBOL vmlinux 0x96b4f356 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c3585a cdev_device_add +EXPORT_SYMBOL vmlinux 0x96ccd410 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96db850f try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x96e254b3 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x97018746 clk_add_alias +EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work +EXPORT_SYMBOL vmlinux 0x970a369e iov_iter_advance +EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x971533da sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9736ca67 pci_release_region +EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x97539c65 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x975519e2 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x9759d510 map_destroy +EXPORT_SYMBOL vmlinux 0x975a21b5 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x97687931 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x97730aeb genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x97932b75 udp_seq_start +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979ae966 config_item_put +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c3b666 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x97c4576f qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x97e0afb6 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x980e7a39 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x9815b0bd iget_failed +EXPORT_SYMBOL vmlinux 0x981cde7a twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x981ce5ca kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x98210f42 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x982d2a84 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x9840581a inode_init_once +EXPORT_SYMBOL vmlinux 0x984da5db of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x9854837e audit_log +EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x985b6695 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x986b890b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x987c127a __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor +EXPORT_SYMBOL vmlinux 0x989fdef2 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f31d6d dm_unregister_target +EXPORT_SYMBOL vmlinux 0x98f5afb0 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x98fcad3b __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x9902a649 page_readlink +EXPORT_SYMBOL vmlinux 0x99038dd9 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x991549d7 nobh_write_end +EXPORT_SYMBOL vmlinux 0x991aa793 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x9926cf68 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9956710d param_set_byte +EXPORT_SYMBOL vmlinux 0x995d3c5e dma_supported +EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all +EXPORT_SYMBOL vmlinux 0x99758742 mount_subtree +EXPORT_SYMBOL vmlinux 0x99856df9 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x99996511 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a1d97d of_get_property +EXPORT_SYMBOL vmlinux 0x99a31ff3 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x99a7116d rproc_del +EXPORT_SYMBOL vmlinux 0x99ad5f37 __destroy_inode +EXPORT_SYMBOL vmlinux 0x99b4cc0c fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x99b84dbd unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99d250a6 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99e187f3 fput +EXPORT_SYMBOL vmlinux 0x99f37c0c generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a0b9edd phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0e022e pci_free_irq +EXPORT_SYMBOL vmlinux 0x9a127644 dev_addr_add +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a403296 seq_open_private +EXPORT_SYMBOL vmlinux 0x9a537799 finish_open +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a79f307 tty_register_device +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec +EXPORT_SYMBOL vmlinux 0x9a96f288 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x9aa3a220 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 +EXPORT_SYMBOL vmlinux 0x9aa9f958 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9aab3036 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ae1694c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aee9481 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x9b02ae91 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x9b0e3ec8 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b1cd34d give_up_console +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b30d829 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b49b46a tty_check_change +EXPORT_SYMBOL vmlinux 0x9b66d83e of_parse_phandle +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b79a942 dev_add_pack +EXPORT_SYMBOL vmlinux 0x9b7bf41b sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x9ba94918 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x9bbd6fc1 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x9bc6885d security_binder_transaction +EXPORT_SYMBOL vmlinux 0x9beaeb1a d_make_root +EXPORT_SYMBOL vmlinux 0x9bf91c3c generic_update_time +EXPORT_SYMBOL vmlinux 0x9c0f3eac rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x9c12433e fb_pan_display +EXPORT_SYMBOL vmlinux 0x9c2e0698 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9c3a5755 register_netdevice +EXPORT_SYMBOL vmlinux 0x9c4dff71 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x9c532287 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c72eee3 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c88860a fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cad40b3 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x9cafb0c5 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x9cb3e59c pci_enable_device +EXPORT_SYMBOL vmlinux 0x9cb9ddfa mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x9cbc12f6 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd13ac0 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x9cd5281f dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x9cda7d79 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf06d1a udp6_set_csum +EXPORT_SYMBOL vmlinux 0x9cf49b50 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x9d02d8cc vfs_rename +EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0fdd1f mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3b4015 nd_btt_version +EXPORT_SYMBOL vmlinux 0x9d51de5a devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x9d56a4ba ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class +EXPORT_SYMBOL vmlinux 0x9d668ba9 vfs_setpos +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9db1b678 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x9dcd8acd read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x9de06b8d dev_set_alias +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e17f9ad phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x9e18004a nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e553320 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e750a3d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x9e8cddad inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9e955cd8 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eafc51b __pagevec_release +EXPORT_SYMBOL vmlinux 0x9eb4821a pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ece36fb unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee64006 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x9eeedd93 sock_i_ino +EXPORT_SYMBOL vmlinux 0x9ef9a600 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x9f0df799 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x9f22292a snd_jack_report +EXPORT_SYMBOL vmlinux 0x9f2460a7 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x9f3a66ba d_add +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f47f6fe bh_submit_read +EXPORT_SYMBOL vmlinux 0x9f4b0c82 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f645c15 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states +EXPORT_SYMBOL vmlinux 0x9f802da5 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fd35a7a param_ops_string +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe60865 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x9fe75df4 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x9fecf5ad pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9fef8cf5 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffcac5a icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa034779b vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04bc20b snd_timer_global_new +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa0512842 fasync_helper +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05d7b6b phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa071249b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07e3b72 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09a1de1 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b6f003 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa0bb6067 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xa0bd58b0 setup_new_exec +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0de7a62 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xa0e513cb textsearch_register +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0f0ada6 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xa0f10498 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xa0f29bd4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fbcc5e dput +EXPORT_SYMBOL vmlinux 0xa1051aeb cpu_user +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10a60d1 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xa11128cb alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xa1334d82 _dev_emerg +EXPORT_SYMBOL vmlinux 0xa13ce0cb of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xa13e67c0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xa1705433 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue +EXPORT_SYMBOL vmlinux 0xa189796b serio_open +EXPORT_SYMBOL vmlinux 0xa18e6690 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xa197f77a vfs_get_link +EXPORT_SYMBOL vmlinux 0xa1ac0809 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20d0235 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xa210743f unregister_binfmt +EXPORT_SYMBOL vmlinux 0xa2276667 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xa22f628f blk_execute_rq +EXPORT_SYMBOL vmlinux 0xa2324939 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xa233c8c7 config_item_set_name +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24491bf ida_free +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa250ff6b dev_mc_del +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa26013e7 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29a65b5 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa2b511d4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa2cd5694 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xa2d0460b pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa2d4b362 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2da229c param_ops_long +EXPORT_SYMBOL vmlinux 0xa2db599d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xa2e16176 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xa2e42f58 put_disk +EXPORT_SYMBOL vmlinux 0xa2e878ad snd_info_register +EXPORT_SYMBOL vmlinux 0xa2fa5983 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xa2fd5110 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xa303f193 vfs_statfs +EXPORT_SYMBOL vmlinux 0xa30743b3 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa3233df1 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xa3241e19 netdev_change_features +EXPORT_SYMBOL vmlinux 0xa3296481 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xa34164e4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xa344eeba ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xa353a695 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xa36707b3 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0xa38e1765 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xa399887a qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xa39e9e8e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free +EXPORT_SYMBOL vmlinux 0xa3addd46 __block_write_begin +EXPORT_SYMBOL vmlinux 0xa3b462e0 dquot_release +EXPORT_SYMBOL vmlinux 0xa3ba27bf vme_free_consistent +EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa3caad78 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa3d6e43e __skb_checksum +EXPORT_SYMBOL vmlinux 0xa3f41af1 set_anon_super +EXPORT_SYMBOL vmlinux 0xa3f692d6 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fdcc96 param_get_long +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa404e46a dump_skip_to +EXPORT_SYMBOL vmlinux 0xa413cd76 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa41e92be dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xa4294229 set_user_nice +EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed +EXPORT_SYMBOL vmlinux 0xa446ba38 __devm_release_region +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa46bc0aa ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xa46f6521 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xa4b17df0 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xa4c2269d try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa4d5979c param_set_long +EXPORT_SYMBOL vmlinux 0xa4d9a8a6 mdio_device_create +EXPORT_SYMBOL vmlinux 0xa4e5eb32 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50f501f blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xa52324e1 iterate_fd +EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xa52ea0b8 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xa533cc54 pci_disable_device +EXPORT_SYMBOL vmlinux 0xa551d98f pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa564b3e8 bdi_alloc +EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xa572cfd4 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa58ed507 dma_pool_create +EXPORT_SYMBOL vmlinux 0xa59052f0 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa5a174ac d_rehash +EXPORT_SYMBOL vmlinux 0xa5a54cf7 __of_get_address +EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xa5a980ad dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xa5afbea6 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xa5b46bf9 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xa5b7b054 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa5b8ea90 inet6_getname +EXPORT_SYMBOL vmlinux 0xa5bc127a vfs_rmdir +EXPORT_SYMBOL vmlinux 0xa5d379e4 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa5eb919c of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa5f0d912 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xa60f30d3 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6208217 set_capacity +EXPORT_SYMBOL vmlinux 0xa623f39e sg_miter_stop +EXPORT_SYMBOL vmlinux 0xa6320e04 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xa64aebd6 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xa65d2bf4 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xa6691991 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xa67dde33 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 +EXPORT_SYMBOL vmlinux 0xa694c7f8 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6994d00 nf_log_trace +EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock +EXPORT_SYMBOL vmlinux 0xa6a393be posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem +EXPORT_SYMBOL vmlinux 0xa6abcf5c kthread_create_worker +EXPORT_SYMBOL vmlinux 0xa6d57ddc __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xa6d608ff netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xa6e3cb3b peernet2id +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa712a52e jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7a58c03 lock_rename +EXPORT_SYMBOL vmlinux 0xa7b3181c up_read +EXPORT_SYMBOL vmlinux 0xa7e7f5cc scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7ef580c tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xa7f89615 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa80144a8 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xa81076b7 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xa8166a78 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xa8277d96 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xa8324ed9 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84cea68 simple_get_link +EXPORT_SYMBOL vmlinux 0xa855bf70 param_set_bool +EXPORT_SYMBOL vmlinux 0xa8724a77 import_iovec +EXPORT_SYMBOL vmlinux 0xa87b8506 sock_wake_async +EXPORT_SYMBOL vmlinux 0xa88020eb xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8af673a vfs_get_tree +EXPORT_SYMBOL vmlinux 0xa8b30341 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa8b9cfda dcache_dir_close +EXPORT_SYMBOL vmlinux 0xa8bb1369 udp_disconnect +EXPORT_SYMBOL vmlinux 0xa8bd23e7 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xa8c7af03 seq_dentry +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8caf97c vfs_symlink +EXPORT_SYMBOL vmlinux 0xa8d2161a generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xa8e11e9e setup_arg_pages +EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt +EXPORT_SYMBOL vmlinux 0xa8f5d705 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xa9024a30 dev_close +EXPORT_SYMBOL vmlinux 0xa9031c64 phy_resume +EXPORT_SYMBOL vmlinux 0xa930494f blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa9437854 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9819838 sock_no_linger +EXPORT_SYMBOL vmlinux 0xa98b0d75 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xa9994c6d kobject_set_name +EXPORT_SYMBOL vmlinux 0xa9b401b8 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa9df3559 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xa9ee325a netlink_unicast +EXPORT_SYMBOL vmlinux 0xa9f725e9 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xaa0f0783 __bread_gfp +EXPORT_SYMBOL vmlinux 0xaa100965 param_get_hexint +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1c01f0 nd_device_register +EXPORT_SYMBOL vmlinux 0xaa21af23 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa71c3cd generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xaa7dad95 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xaa800146 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa88b20a secpath_set +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaaa5183f xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xaab43d6f pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xaac4b581 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xaacc9e27 sort +EXPORT_SYMBOL vmlinux 0xaaceee8a sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaade70d0 ilookup +EXPORT_SYMBOL vmlinux 0xaae42316 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0f3d53 __devm_request_region +EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xab2747b9 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xab348854 param_ops_charp +EXPORT_SYMBOL vmlinux 0xab353313 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ee2a3 simple_setattr +EXPORT_SYMBOL vmlinux 0xab51aace xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xab5cf1dc __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab7019e3 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8b8182 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xab9f28ec wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xabb60647 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xabbe2a0b of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xabcf669e mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xabdc2dac seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf9bc99 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xac020c5d genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac222f0f vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac346430 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xac367785 iptun_encaps +EXPORT_SYMBOL vmlinux 0xac38b180 pci_iomap +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac504431 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xac504438 pci_find_capability +EXPORT_SYMBOL vmlinux 0xac597daa mdio_device_remove +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac67cad6 ata_link_printk +EXPORT_SYMBOL vmlinux 0xac81d845 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac94ba53 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xaca69976 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc06a30 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xaccf34ba md_finish_reshape +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace0e0d1 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xace4206f __f_setown +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfc145e snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0422a3 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xad0c2de8 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xad12831a pci_enable_wake +EXPORT_SYMBOL vmlinux 0xad1f1a2c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xad21ac9c dquot_get_state +EXPORT_SYMBOL vmlinux 0xad21b4ad dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xad30cf67 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xad4d5eb1 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xad53597d of_root +EXPORT_SYMBOL vmlinux 0xad6f41af _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad790258 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada6ef61 single_release +EXPORT_SYMBOL vmlinux 0xada98063 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0xadd3d90b __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xadd69986 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae097160 of_match_device +EXPORT_SYMBOL vmlinux 0xae102cb1 con_is_visible +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0xae41b5d6 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xae52842c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xae66f168 simple_empty +EXPORT_SYMBOL vmlinux 0xae752a27 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xae935113 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xaea6191d watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeadeea8 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xaeb92af7 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xaebbf9cd register_sound_mixer +EXPORT_SYMBOL vmlinux 0xaec61f46 dev_uc_init +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaed6cbb9 kern_path_create +EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0xaf07f273 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xaf0fe106 d_path +EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf417a7d pci_resize_resource +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf51b200 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xaf552855 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf886617 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf9930eb mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xafbaf860 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafe44f04 elv_rb_add +EXPORT_SYMBOL vmlinux 0xb0015c85 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb01306c3 netdev_info +EXPORT_SYMBOL vmlinux 0xb019d4dc vif_device_init +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb04fa955 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xb05e9df9 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0825bc7 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xb0b20acd skb_dump +EXPORT_SYMBOL vmlinux 0xb0c13460 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xb0cef40d udplite_prot +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fdc540 __d_drop +EXPORT_SYMBOL vmlinux 0xb10c921c amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12de543 nand_write_page_raw +EXPORT_SYMBOL vmlinux 0xb12dfefc scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14eca01 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb151ef0b netlink_net_capable +EXPORT_SYMBOL vmlinux 0xb188605b xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cbf8ca md_unregister_thread +EXPORT_SYMBOL vmlinux 0xb1d27b4c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d9bd18 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb209c9cd dev_addr_init +EXPORT_SYMBOL vmlinux 0xb2178df7 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xb226af07 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xb2288c2e ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23d9b3a kfree_skb_list +EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma +EXPORT_SYMBOL vmlinux 0xb25499e0 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb2591d94 param_get_int +EXPORT_SYMBOL vmlinux 0xb2678fba blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xb26d6057 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xb26ed9a9 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xb2883ee5 vme_bus_num +EXPORT_SYMBOL vmlinux 0xb295fa3e tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xb29df23c inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb2ab5fc6 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb2accacd insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xb2b4c904 d_exact_alias +EXPORT_SYMBOL vmlinux 0xb2b6c9a4 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb2bee328 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xb2c25df3 thaw_bdev +EXPORT_SYMBOL vmlinux 0xb2c5348a nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0xb2c9b005 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2dc0b83 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2ea4e27 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb307e76c jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31f1a33 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32c3a6c snd_register_device +EXPORT_SYMBOL vmlinux 0xb331e8e0 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xb354acea current_time +EXPORT_SYMBOL vmlinux 0xb3667805 dqstats +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb38d072e blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xb39cc5a2 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb3a90f01 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3ca03f8 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3ebba12 devm_request_resource +EXPORT_SYMBOL vmlinux 0xb3ed4dd4 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xb3ef9082 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xb3f5fb4c __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0xb3f6b959 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42aea82 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0xb47878db __ip_select_ident +EXPORT_SYMBOL vmlinux 0xb47c1a15 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xb4856c8f path_put +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0xb492d0b8 free_buffer_head +EXPORT_SYMBOL vmlinux 0xb49835cb crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb4a14333 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xb4ad2007 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc +EXPORT_SYMBOL vmlinux 0xb4edc33e pskb_extract +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f6bfd8 bio_endio +EXPORT_SYMBOL vmlinux 0xb50cbd23 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xb5321988 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb55e496f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5744460 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xb5883d7d inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58dffd5 rproc_boot +EXPORT_SYMBOL vmlinux 0xb5948302 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ad0fa2 file_ns_capable +EXPORT_SYMBOL vmlinux 0xb5ad19c1 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xb5b6066c dst_dev_put +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5c88999 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xb5dab24d scsi_print_result +EXPORT_SYMBOL vmlinux 0xb5fb6fc4 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb634c0eb ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb636acfa scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb637385f kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xb64aed78 kset_unregister +EXPORT_SYMBOL vmlinux 0xb6527fa7 get_cached_acl +EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67ba952 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69e20e7 vfs_mknod +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run +EXPORT_SYMBOL vmlinux 0xb6d78a9b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xb6dd3c87 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xb6e30a73 _dev_warn +EXPORT_SYMBOL vmlinux 0xb6ecbcf0 del_gendisk +EXPORT_SYMBOL vmlinux 0xb6ecc67c sk_stream_error +EXPORT_SYMBOL vmlinux 0xb6ee3605 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xb6f91efc bdev_read_only +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb6ffcdf2 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xb6ffd2da tcp_mmap +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb71ff87e scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xb72a6e15 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0xb74ae175 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb767477d netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb773decc dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xb7a73479 filp_close +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c7a28f mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xb7d02914 dev_mc_add +EXPORT_SYMBOL vmlinux 0xb7de3a46 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xb7e2cdb3 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xb7f88865 xfrm_input +EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb848ea82 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb895f1e4 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a3129b devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb8a48e07 nf_log_unset +EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b6a465 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb8b7bf13 zero_user_segments +EXPORT_SYMBOL vmlinux 0xb8b7dc32 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xb8ba871a dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xb8fdf8f5 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb943cfad xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97274d9 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xb98b92fa pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xb9a2ad52 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb9a613c6 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9afff09 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb9c438cc dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb9c5141a ps2_end_command +EXPORT_SYMBOL vmlinux 0xb9c8fc6c vme_master_request +EXPORT_SYMBOL vmlinux 0xb9d05a8d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ef2bda __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb9f1b5c2 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba02d4b5 skb_find_text +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4e033b __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba8d6154 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xbaa2adbd d_invalidate +EXPORT_SYMBOL vmlinux 0xbabebd12 may_umount +EXPORT_SYMBOL vmlinux 0xbac29a93 cdrom_release +EXPORT_SYMBOL vmlinux 0xbac7a3b7 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xbaf6a686 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0a6cb2 d_genocide +EXPORT_SYMBOL vmlinux 0xbb0eb4df phy_device_create +EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb356d21 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xbb4c12f7 input_open_device +EXPORT_SYMBOL vmlinux 0xbb4e9428 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xbb4faef3 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xbb528e07 unlock_page +EXPORT_SYMBOL vmlinux 0xbb5ada64 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb62bc2c flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xbb6da15f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb73005d inode_set_bytes +EXPORT_SYMBOL vmlinux 0xbb812f03 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbb8421ab tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xbb8a81ff vc_cons +EXPORT_SYMBOL vmlinux 0xbb9280dd pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xbba93636 build_skb +EXPORT_SYMBOL vmlinux 0xbbc87e31 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xbbd3cffa dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xbbeb6542 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xbbf39f97 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xbc095a6c nand_monolithic_read_page_raw +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc15c33e __put_user_ns +EXPORT_SYMBOL vmlinux 0xbc3aa423 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xbc4a1aa5 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xbc71733f file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xbc72c3d2 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0xbc7d8931 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xbca232f4 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xbca52a11 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb20614 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xbcb5b2fb inet_stream_ops +EXPORT_SYMBOL vmlinux 0xbcb608a3 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xbcbc9dc8 netif_napi_add +EXPORT_SYMBOL vmlinux 0xbcbeb817 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xbcf11abf pci_set_mwi +EXPORT_SYMBOL vmlinux 0xbd053cb1 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd08a8ea pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xbd0b46d9 serio_rescan +EXPORT_SYMBOL vmlinux 0xbd194949 kobject_get +EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0xbd21d90c fb_get_mode +EXPORT_SYMBOL vmlinux 0xbd3b1eb5 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xbd403659 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xbd5b73f8 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0xbd796d7d param_set_bint +EXPORT_SYMBOL vmlinux 0xbd815c13 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock +EXPORT_SYMBOL vmlinux 0xbda83366 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xbdb5646d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xbdcaa070 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xbdd6734d snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0xbde5d6e1 tcp_poll +EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe1c356a vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xbe461de0 nf_log_set +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5f5494 proc_symlink +EXPORT_SYMBOL vmlinux 0xbe64451b xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xbe9b5d80 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbea4ebb1 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xbeae632a snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xbeafbfaa phy_register_fixup +EXPORT_SYMBOL vmlinux 0xbecc7a56 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0e3990 key_type_keyring +EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table +EXPORT_SYMBOL vmlinux 0xbf5649dc udp_ioctl +EXPORT_SYMBOL vmlinux 0xbf582f81 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf7205e3 bio_reset +EXPORT_SYMBOL vmlinux 0xbf73232f empty_zero_page +EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xbf7718fd no_llseek +EXPORT_SYMBOL vmlinux 0xbf94e5f3 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa73cd9 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xbfb12a40 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xbfc2ab03 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xbfc4cb34 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffa6e2a unix_get_socket +EXPORT_SYMBOL vmlinux 0xbffaf65b mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xc0055317 misc_deregister +EXPORT_SYMBOL vmlinux 0xc0535386 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xc05d9b76 kern_path +EXPORT_SYMBOL vmlinux 0xc0752a48 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc07b4b43 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xc09758cf netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc09b5625 posix_lock_file +EXPORT_SYMBOL vmlinux 0xc0a25825 mdio_device_free +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a70d94 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b29988 inet6_bind +EXPORT_SYMBOL vmlinux 0xc0c44bf3 snd_timer_continue +EXPORT_SYMBOL vmlinux 0xc0d4d1a3 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top +EXPORT_SYMBOL vmlinux 0xc0da4c72 drop_super +EXPORT_SYMBOL vmlinux 0xc0e1dd08 d_instantiate +EXPORT_SYMBOL vmlinux 0xc0e4dd15 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xc0eac2cc pci_release_regions +EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1092411 skb_queue_head +EXPORT_SYMBOL vmlinux 0xc125c618 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xc12ad8b3 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xc13c17a9 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc13d7b81 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc170e248 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xc179ffd0 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xc18219cf phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc1af9271 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc1cad948 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dbb5b6 proc_create +EXPORT_SYMBOL vmlinux 0xc1fc3998 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc20490eb simple_release_fs +EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit +EXPORT_SYMBOL vmlinux 0xc21c6550 sk_free +EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2839341 locks_free_lock +EXPORT_SYMBOL vmlinux 0xc284d6d4 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc29d672d nla_reserve +EXPORT_SYMBOL vmlinux 0xc29de634 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc2a68323 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2b9b755 da903x_query_status +EXPORT_SYMBOL vmlinux 0xc2c5ec42 vme_lm_request +EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xc2ce3368 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0xc2d5a538 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xc2d71c40 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xc2e4a663 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xc2f0698a pci_fixup_device +EXPORT_SYMBOL vmlinux 0xc2f14ca7 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xc2f624bd unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc3059208 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0xc30fefb2 phy_detach +EXPORT_SYMBOL vmlinux 0xc310f5ed generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xc3134c8f scm_fp_dup +EXPORT_SYMBOL vmlinux 0xc316effa of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xc318233d __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc328d657 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc335f51c phy_attached_print +EXPORT_SYMBOL vmlinux 0xc3376cf0 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xc34dd37b security_path_unlink +EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf +EXPORT_SYMBOL vmlinux 0xc367f3c8 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xc36bf8c1 sget +EXPORT_SYMBOL vmlinux 0xc37335b0 complete +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38a774a lock_page_memcg +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38d831d migrate_page +EXPORT_SYMBOL vmlinux 0xc396061b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xc3969a27 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xc39703bf eth_header_parse +EXPORT_SYMBOL vmlinux 0xc3abd06b mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xc3bb966b phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xc3c64f5a mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3e81b01 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0xc3ea279f file_update_time +EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc3f2f8ba pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xc40e4826 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc4193bc0 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc438997d vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xc4389c15 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47c91b3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xc47d52c6 d_alloc +EXPORT_SYMBOL vmlinux 0xc48080c8 genphy_resume +EXPORT_SYMBOL vmlinux 0xc4813769 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xc488a706 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xc48da492 complete_request_key +EXPORT_SYMBOL vmlinux 0xc496ec3d mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xc4aa2e67 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xc4b4280e input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xc4b8441a __check_sticky +EXPORT_SYMBOL vmlinux 0xc4eb7422 skb_copy_header +EXPORT_SYMBOL vmlinux 0xc4f50c12 phy_find_first +EXPORT_SYMBOL vmlinux 0xc4f83226 update_devfreq +EXPORT_SYMBOL vmlinux 0xc500e78d devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xc515b536 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc53c657d __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc559cc82 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xc570d647 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xc586b26f io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xc58e1a73 param_get_ullong +EXPORT_SYMBOL vmlinux 0xc590efef mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e9924 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xc5a5c610 mpage_readahead +EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL vmlinux 0xc5c3a30f inet_release +EXPORT_SYMBOL vmlinux 0xc5c9f019 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xc5cab1dd tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xc5e0c03e devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive +EXPORT_SYMBOL vmlinux 0xc5ef0d0d security_d_instantiate +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fdc7ec pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61f5fdc blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc624337b pcim_iomap +EXPORT_SYMBOL vmlinux 0xc6243875 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6342bc3 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xc639af22 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xc63cbf0f __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc65e0683 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc677920e of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xc68bb9aa sock_efree +EXPORT_SYMBOL vmlinux 0xc692a1a3 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xc699becd tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6bc7677 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d62759 input_register_handler +EXPORT_SYMBOL vmlinux 0xc6efd2a6 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f8e153 touch_atime +EXPORT_SYMBOL vmlinux 0xc6ff7457 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xc703bb77 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xc709600d skb_append +EXPORT_SYMBOL vmlinux 0xc70e6b50 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xc711e781 pci_match_id +EXPORT_SYMBOL vmlinux 0xc71efc83 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc738fe3f simple_rmdir +EXPORT_SYMBOL vmlinux 0xc750dc76 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xc761f949 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xc77267cd snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7934395 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab3b04 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xc7bf300c inet_bind +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c79313 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xc7cceebb unpin_user_page +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e53d8f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xc7e6c038 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8076eef dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xc8246aff blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xc8282239 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xc8295079 __put_page +EXPORT_SYMBOL vmlinux 0xc82e7d0f of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc844c156 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc86109fe bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc863b142 setattr_prepare +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87c7eb9 generic_fadvise +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc885e54a serio_bus +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a6775c scsi_remove_target +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 +EXPORT_SYMBOL vmlinux 0xc8b6fe8c __lock_page +EXPORT_SYMBOL vmlinux 0xc8bba1cf netif_device_detach +EXPORT_SYMBOL vmlinux 0xc8bbf705 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xc8c25e57 _dev_err +EXPORT_SYMBOL vmlinux 0xc8c6a956 skb_split +EXPORT_SYMBOL vmlinux 0xc8c6cacd ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc8ce1391 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xc8ebd05c mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc8ecc3cc mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xc91307e3 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc9274ef1 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xc92f87dc __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc95ace97 __d_lookup_done +EXPORT_SYMBOL vmlinux 0xc95d166e tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xc95fff56 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc965076b fddi_type_trans +EXPORT_SYMBOL vmlinux 0xc96ac757 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a58963 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0xc9aa038c module_put +EXPORT_SYMBOL vmlinux 0xc9ab0af8 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc9b5364b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc9bdcdb1 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xc9c81c36 key_invalidate +EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xc9f677fc hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xc9fed2f5 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xc9ff1bc7 tcf_register_action +EXPORT_SYMBOL vmlinux 0xca04d765 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xca073d82 mmc_command_done +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca441578 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xca465d52 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible +EXPORT_SYMBOL vmlinux 0xca601fb3 elv_rb_del +EXPORT_SYMBOL vmlinux 0xca6dcc1d neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xca7b18cf kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xca857c38 consume_skb +EXPORT_SYMBOL vmlinux 0xca928195 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9f479a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xcaa0922c tty_port_open +EXPORT_SYMBOL vmlinux 0xcab9d529 set_disk_ro +EXPORT_SYMBOL vmlinux 0xcacb317a __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb009801 vm_mmap +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb07097e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xcb071053 nla_append +EXPORT_SYMBOL vmlinux 0xcb269341 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all +EXPORT_SYMBOL vmlinux 0xcb532096 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load +EXPORT_SYMBOL vmlinux 0xcb616e1d netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xcb6b7069 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xcb76c1f2 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xcb7b490d bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit +EXPORT_SYMBOL vmlinux 0xcb8cb342 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xcba4a2b0 register_sound_special +EXPORT_SYMBOL vmlinux 0xcba84303 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xcbad6272 softnet_data +EXPORT_SYMBOL vmlinux 0xcbb03100 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xcbb5150f of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xcbb7f0b4 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcbbdc8fb msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xcbc0739d __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xcbc16929 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbea9af2 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len +EXPORT_SYMBOL vmlinux 0xcbfeba2b mntput +EXPORT_SYMBOL vmlinux 0xcc1a45d8 inet_frag_find +EXPORT_SYMBOL vmlinux 0xcc217f23 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc27df1f dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xcc2c0b58 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xcc2e2343 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0xcc445115 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc4a332f sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0xcca6d8c9 register_quota_format +EXPORT_SYMBOL vmlinux 0xcca92031 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xccb9b384 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xccca3ebb tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfbbd71 fb_class +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcd04917c skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd164239 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2ebbc8 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd38a183 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xcd4b66c6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd7b9f2c inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xcd910662 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xcdbbaf06 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdfe2626 rproc_put +EXPORT_SYMBOL vmlinux 0xce11ba9e udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce46514a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce51441f single_open +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce691b82 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce94566b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xce991cd9 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xce9f0cc5 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xcea35a86 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceabee8a __put_cred +EXPORT_SYMBOL vmlinux 0xceaf46ba of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xceb2535d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xceb29230 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xcebb9146 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xcede275c memremap +EXPORT_SYMBOL vmlinux 0xcedeb097 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xceea0162 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xcf0a4cfa of_find_property +EXPORT_SYMBOL vmlinux 0xcf269875 key_move +EXPORT_SYMBOL vmlinux 0xcf3deebe seq_lseek +EXPORT_SYMBOL vmlinux 0xcf610921 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xcf7a8384 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa27650 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfb72f0c dev_get_by_name +EXPORT_SYMBOL vmlinux 0xcfc1ad6f seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xcfd5be3a bioset_exit +EXPORT_SYMBOL vmlinux 0xd004885d of_node_name_eq +EXPORT_SYMBOL vmlinux 0xd01e6d4b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd0267bac scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xd0381435 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xd04b6fc6 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xd05bb614 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xd05c5c43 bdi_register +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08e9b09 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xd09beebb tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xd0a68feb ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0c73b2e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd0e1ea1e rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware +EXPORT_SYMBOL vmlinux 0xd1032174 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xd11fdb92 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd137faae wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xd141d118 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xd14a2460 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd1689944 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1858715 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd19410e3 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xd1ab444e of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xd1b33241 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd1b869d8 generic_setlease +EXPORT_SYMBOL vmlinux 0xd1bc596d cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd203a273 nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd207c75d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd20b8798 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xd2178947 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xd21df1c0 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25b8bb9 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2613719 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xd26eb59b ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel +EXPORT_SYMBOL vmlinux 0xd288841c omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xd2935007 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd2a6736b pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xd2a6c7dc ptp_find_pin +EXPORT_SYMBOL vmlinux 0xd2d41902 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0xd2ec4e10 udp_poll +EXPORT_SYMBOL vmlinux 0xd2ef1e97 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd308a37c tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xd30f4d8e tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xd311bcc4 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get +EXPORT_SYMBOL vmlinux 0xd35806c8 request_firmware +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd38b196f rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd38e349e rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xd39b1900 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xd3a55c5b ll_rw_block +EXPORT_SYMBOL vmlinux 0xd3c5be5e vm_insert_pages +EXPORT_SYMBOL vmlinux 0xd3c637cf set_bh_page +EXPORT_SYMBOL vmlinux 0xd3c6859e mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xd3ca6ea1 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0xd3e02d0e fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4163405 end_page_writeback +EXPORT_SYMBOL vmlinux 0xd44b1c4d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xd458745d __SetPageMovable +EXPORT_SYMBOL vmlinux 0xd45b40d5 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xd462f4fa __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xd4673dcf load_nls_default +EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work +EXPORT_SYMBOL vmlinux 0xd4822784 qdisc_reset +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4933f6c security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd4af913b file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xd4b1724a __nla_reserve +EXPORT_SYMBOL vmlinux 0xd4b81aca dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd4bad47e security_path_rename +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c369df __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd4c50b33 pci_pme_active +EXPORT_SYMBOL vmlinux 0xd4cc5cf5 param_set_charp +EXPORT_SYMBOL vmlinux 0xd4e235ee security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xd4e447ee phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xd4eb8a7e xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5003617 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5371edb xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xd547d54f tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xd54e72dc __pci_register_driver +EXPORT_SYMBOL vmlinux 0xd5590068 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xd580acfe inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd580be06 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd59341b4 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xd59e4403 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5b7c68a ata_dev_printk +EXPORT_SYMBOL vmlinux 0xd5c3e7d0 padata_free_shell +EXPORT_SYMBOL vmlinux 0xd5c57f2e copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd5d4bae7 mmc_add_host +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd6032662 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd610dcdc nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd639b3f5 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xd63b2bd6 block_write_end +EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem +EXPORT_SYMBOL vmlinux 0xd64fe237 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract +EXPORT_SYMBOL vmlinux 0xd6878c16 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6889555 file_remove_privs +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd68c86cd truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xd69023ba __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6abc037 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xd6b045e8 __page_symlink +EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xd6c7fb05 param_array_ops +EXPORT_SYMBOL vmlinux 0xd6cddc46 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f16225 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd704885e param_set_ulong +EXPORT_SYMBOL vmlinux 0xd705e8f0 kernel_read +EXPORT_SYMBOL vmlinux 0xd70a285a generic_file_open +EXPORT_SYMBOL vmlinux 0xd70adaba of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7468782 xp_alloc +EXPORT_SYMBOL vmlinux 0xd7524c36 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd7559def dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd758601e put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xd76ed84f __neigh_event_send +EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf +EXPORT_SYMBOL vmlinux 0xd77694bb bio_kmalloc +EXPORT_SYMBOL vmlinux 0xd77f71bc nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xd7902f6f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79f1866 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd7bbf193 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e3ab27 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e82785 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8055cd6 xp_free +EXPORT_SYMBOL vmlinux 0xd8177a9e posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd8188728 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xd81fdd0e ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xd820bfef vme_dma_request +EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc +EXPORT_SYMBOL vmlinux 0xd84510e7 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xd855fa94 udp_prot +EXPORT_SYMBOL vmlinux 0xd85e6855 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr +EXPORT_SYMBOL vmlinux 0xd87bfd9f d_find_any_alias +EXPORT_SYMBOL vmlinux 0xd88b3c35 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b6e797 devm_clk_put +EXPORT_SYMBOL vmlinux 0xd8ba7bf4 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd8cf8aff input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd8e1294b skb_eth_push +EXPORT_SYMBOL vmlinux 0xd8f9d68b pci_irq_vector +EXPORT_SYMBOL vmlinux 0xd9044481 tty_unlock +EXPORT_SYMBOL vmlinux 0xd90c8e04 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xd917a3b6 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd9290573 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd962d6c1 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xd975eaca dquot_drop +EXPORT_SYMBOL vmlinux 0xd979654f vc_resize +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99e76b2 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd9afea47 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xd9b796ff dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9ba1670 generic_permission +EXPORT_SYMBOL vmlinux 0xd9c6f855 netdev_notice +EXPORT_SYMBOL vmlinux 0xd9c9a12e sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d5b0d8 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9dd705a xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd9e27c11 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xd9e58b63 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0xd9f69e4a ns_capable_setid +EXPORT_SYMBOL vmlinux 0xda0d6442 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda57799f try_module_get +EXPORT_SYMBOL vmlinux 0xda5f50ed sk_reset_timer +EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7f8b56 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda930364 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xdaa35e30 mmc_request_done +EXPORT_SYMBOL vmlinux 0xdaabcd0f input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xdaaed9a5 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xdab68671 devm_release_resource +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad0604b thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xdad1f7cc mmc_erase +EXPORT_SYMBOL vmlinux 0xdad672aa nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdae7ba45 seq_putc +EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf +EXPORT_SYMBOL vmlinux 0xdb1d6574 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xdb1fd452 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xdb357639 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xdb3a739a get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xdb55d830 nand_ecc_prepare_io_req +EXPORT_SYMBOL vmlinux 0xdb6763fe mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6c53e5 kill_litter_super +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit +EXPORT_SYMBOL vmlinux 0xdb8430f8 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xdbaaf97d serio_interrupt +EXPORT_SYMBOL vmlinux 0xdbbbed21 add_to_pipe +EXPORT_SYMBOL vmlinux 0xdbbc2679 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xdbd3ef4e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdc0d6f6d ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1c3a33 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xdc247145 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xdc3c5c00 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc458b96 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc535451 ps2_command +EXPORT_SYMBOL vmlinux 0xdc5ad0ef seq_escape_mem +EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xdc6af21a blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xdc76359f pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xdc84a97f sock_no_connect +EXPORT_SYMBOL vmlinux 0xdc84f0e4 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xdc8e09d2 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xdc8efec2 f_setown +EXPORT_SYMBOL vmlinux 0xdc959511 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xdc9c7337 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xdcab7582 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xdcb02ac8 param_ops_int +EXPORT_SYMBOL vmlinux 0xdcb38198 seq_write +EXPORT_SYMBOL vmlinux 0xdcc02a2d ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xdcf4ba18 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd10d8a4 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xdd201340 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2f1709 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xdd545ad1 pci_save_state +EXPORT_SYMBOL vmlinux 0xdd5906f7 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xdd67050d release_pages +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd804e41 is_nd_btt +EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0xdd84867a pcie_get_mps +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd98e458 sk_wait_data +EXPORT_SYMBOL vmlinux 0xddcc63b6 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xddf9a837 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xddfcb692 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xde03cdf5 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xde1fa370 begin_new_exec +EXPORT_SYMBOL vmlinux 0xde2ef089 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xde317d16 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xde4371d0 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xde4b3b22 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xde699485 noop_fsync +EXPORT_SYMBOL vmlinux 0xde7ac7fc clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xde7ae8ca netif_carrier_off +EXPORT_SYMBOL vmlinux 0xde832efa call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xde8eb222 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xde9d7adb scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xdea47b1f dev_remove_pack +EXPORT_SYMBOL vmlinux 0xdea855b4 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xdeab04ad of_node_put +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded63581 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf0c491f scsi_device_get +EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf1e14ac cdev_device_del +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf3f45c5 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xdf47e4a0 _dev_info +EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf89acfc ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf97cdf9 iterate_dir +EXPORT_SYMBOL vmlinux 0xdfa99907 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xdfabcc5f twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xdfcd3a0c vme_bus_type +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfda4a3c flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe47dec adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdff9a6bb netdev_update_features +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0191bc2 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xe01b3e1a dev_get_iflink +EXPORT_SYMBOL vmlinux 0xe03eb2df phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05290a0 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xe05dc4c9 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xe069e38b empty_aops +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0a91f87 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0bf9df7 dump_skip +EXPORT_SYMBOL vmlinux 0xe0d28c8f kernel_connect +EXPORT_SYMBOL vmlinux 0xe0e33e59 key_validate +EXPORT_SYMBOL vmlinux 0xe0e761c7 mdiobus_free +EXPORT_SYMBOL vmlinux 0xe0ed526a nd_device_unregister +EXPORT_SYMBOL vmlinux 0xe0ed6866 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xe0ed81af phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xe0eece84 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xe0ef3723 input_release_device +EXPORT_SYMBOL vmlinux 0xe1069b95 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xe10706cf blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe115c691 netdev_crit +EXPORT_SYMBOL vmlinux 0xe1229a4c con_is_bound +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12a4a89 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe12b1c53 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe13c79e5 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe141eaf6 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xe14c4384 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe1578331 finalize_exec +EXPORT_SYMBOL vmlinux 0xe1596457 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xe15d80f1 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xe17370be configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xe174fb4c qdisc_put +EXPORT_SYMBOL vmlinux 0xe1973cdc __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xe199869b nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xe19ad8bf mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xe1b04cf3 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xe1c75a7e blkdev_put +EXPORT_SYMBOL vmlinux 0xe1cf9209 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xe1d78684 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e3b493 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe1ea2ea9 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xe1fe2b6d task_work_add +EXPORT_SYMBOL vmlinux 0xe2047b0d inet_sendpage +EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but +EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe234bf58 bio_devname +EXPORT_SYMBOL vmlinux 0xe239532c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xe23ba9d5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe278d399 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xe27ef41e neigh_xmit +EXPORT_SYMBOL vmlinux 0xe280f410 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xe2894fae of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xe28c7d91 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe2a555dc genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xe2bc3ad6 param_get_ushort +EXPORT_SYMBOL vmlinux 0xe2c655c7 deactivate_super +EXPORT_SYMBOL vmlinux 0xe2c92548 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ee2066 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock +EXPORT_SYMBOL vmlinux 0xe304f112 of_clk_get +EXPORT_SYMBOL vmlinux 0xe31c6545 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xe32353ac fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe33f7742 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xe3466236 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xe3869cb5 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0xe38777cc jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xe38cd7ad vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xe391a3b6 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xe3b6d123 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xe3b803d4 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe3c2022a set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xe3c9e4f4 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0xe3e4ead1 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe3ebd556 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3eff590 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xe3f4b15e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xe3fbd30a _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe41234ec __find_get_block +EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe46161c5 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xe4a0b9a6 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xe4a442f0 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4d7582f of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xe4e0b01e __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xe4efb873 genphy_read_status +EXPORT_SYMBOL vmlinux 0xe4f06afa open_exec +EXPORT_SYMBOL vmlinux 0xe4f66650 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xe50d7429 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52e5edd kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xe5300f38 phy_read_paged +EXPORT_SYMBOL vmlinux 0xe54bbc5a truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xe5584ef1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe55ed2a8 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xe56996ac dev_alloc_name +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe580c9f6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe5889595 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a45a28 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xe5aaffba cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ca8cfd proc_set_user +EXPORT_SYMBOL vmlinux 0xe5cacb66 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xe5e05286 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xe5e99eb8 vfs_link +EXPORT_SYMBOL vmlinux 0xe5ecde99 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe5f5add8 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xe5fd0905 submit_bh +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6286cac dquot_acquire +EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xe637eee5 kernel_listen +EXPORT_SYMBOL vmlinux 0xe6436a28 register_sound_dsp +EXPORT_SYMBOL vmlinux 0xe650c03c sock_from_file +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe698a86f genl_unregister_family +EXPORT_SYMBOL vmlinux 0xe6a60f35 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xe6b3fb0c __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xe6b66373 skb_push +EXPORT_SYMBOL vmlinux 0xe6c40202 zap_page_range +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xe6df88ec mount_single +EXPORT_SYMBOL vmlinux 0xe6fd5576 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe708b8a4 default_llseek +EXPORT_SYMBOL vmlinux 0xe725d6f7 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xe73247d6 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7536aee md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe75b95b9 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe781b7f4 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xe7caf3b5 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d921f9 file_modified +EXPORT_SYMBOL vmlinux 0xe7daa928 udp_read_sock +EXPORT_SYMBOL vmlinux 0xe7db3c33 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xe7dc5361 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe7def294 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xe7f3add9 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xe7f7c0fe md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe81acf90 dquot_alloc +EXPORT_SYMBOL vmlinux 0xe82a7a97 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xe86f9bc2 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe88b01d6 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0xe891cce7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift +EXPORT_SYMBOL vmlinux 0xe8d30c6c end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91b1a33 dma_set_mask +EXPORT_SYMBOL vmlinux 0xe92cbe42 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe93d9989 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xe94e53c6 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xe94fb346 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe966475c netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe96a5ecb dev_get_flags +EXPORT_SYMBOL vmlinux 0xe97652ba unregister_key_type +EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe99a46da ip_output +EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0xe99f6146 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xe9c4aabc phy_error +EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe9cf1091 user_revoke +EXPORT_SYMBOL vmlinux 0xe9e5b059 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f5094f tcf_block_put +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f86b5d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xea0ec6f0 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xea12c90f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xea138314 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xea13ad86 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xea16357d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea48fd59 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xea4d0cc8 tcp_prot +EXPORT_SYMBOL vmlinux 0xea5a688d md_check_recovery +EXPORT_SYMBOL vmlinux 0xea6d015c inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea71a355 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xea783459 genphy_suspend +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8cb329 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xea94e09f __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xea9772d0 clear_inode +EXPORT_SYMBOL vmlinux 0xeaa72a38 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xeaacb0a2 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0xeabf0a75 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xead296c3 dev_set_group +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb0d06f7 __alloc_pages +EXPORT_SYMBOL vmlinux 0xeb1f280c ipv4_specific +EXPORT_SYMBOL vmlinux 0xeb1fdef6 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb53178a crc8 +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb608ac7 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xeb627c38 lru_cache_add +EXPORT_SYMBOL vmlinux 0xeb8d525e pci_get_class +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebb3f199 to_nd_btt +EXPORT_SYMBOL vmlinux 0xebbdb8f6 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xebc77b94 I_BDEV +EXPORT_SYMBOL vmlinux 0xebca0ca6 blk_get_queue +EXPORT_SYMBOL vmlinux 0xebdf4cb5 proto_register +EXPORT_SYMBOL vmlinux 0xebe193dc vga_client_register +EXPORT_SYMBOL vmlinux 0xebf4691e ps2_init +EXPORT_SYMBOL vmlinux 0xebf59eff scsi_device_put +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec00d3e9 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xec0d9e14 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xec16dd3d devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xec317fe7 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xec38428e pci_set_power_state +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4da239 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xec7d3705 stop_tty +EXPORT_SYMBOL vmlinux 0xec8242c0 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xeca0b1d9 config_group_find_item +EXPORT_SYMBOL vmlinux 0xecae9f50 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xecb7c5d0 pci_dev_get +EXPORT_SYMBOL vmlinux 0xecbf2e10 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xecc818f2 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xecc88a75 snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece79118 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xece9118d __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xed156a6a dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xed30dda2 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xed3a866b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xed4eb10a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed546c18 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xed646a20 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed68b580 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xed73e737 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xed9890ab mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xed98bd5c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xed9ed731 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xeda12063 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xedb84bc8 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc3fc2c snd_power_wait +EXPORT_SYMBOL vmlinux 0xedc74be8 tty_register_driver +EXPORT_SYMBOL vmlinux 0xedd1bbc1 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xeddae981 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xedf6a78b buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee34bfcd snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xee3934b9 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xee39f535 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit +EXPORT_SYMBOL vmlinux 0xee44c30d __neigh_create +EXPORT_SYMBOL vmlinux 0xee550f38 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee922b77 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed6f352 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xeed849e2 lease_modify +EXPORT_SYMBOL vmlinux 0xeede3641 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeeffb53 input_event +EXPORT_SYMBOL vmlinux 0xeef400d9 snd_device_new +EXPORT_SYMBOL vmlinux 0xeefbf659 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xeefc0535 dev_open +EXPORT_SYMBOL vmlinux 0xef12009f dst_init +EXPORT_SYMBOL vmlinux 0xef17a2e0 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xef47d535 posix_test_lock +EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xef561f1d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xef5d8301 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xef636a9f vlan_for_each +EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xef6eccec pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefa4d298 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xefa98d80 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xefb39007 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xefc1f7f1 _snd_ctl_add_follower +EXPORT_SYMBOL vmlinux 0xefe02715 dqput +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff1685a netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xeff4ccfc __napi_schedule +EXPORT_SYMBOL vmlinux 0xeffe54d0 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf001cf64 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn +EXPORT_SYMBOL vmlinux 0xf01adda0 put_fs_context +EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work +EXPORT_SYMBOL vmlinux 0xf0374284 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xf042a05e snd_jack_new +EXPORT_SYMBOL vmlinux 0xf042c4cc tcf_action_exec +EXPORT_SYMBOL vmlinux 0xf0486f26 md_write_end +EXPORT_SYMBOL vmlinux 0xf05ba52b vfs_llseek +EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf08c94ec tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf0d00e96 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef52e8 down +EXPORT_SYMBOL vmlinux 0xf0f1132b neigh_event_ns +EXPORT_SYMBOL vmlinux 0xf0f24c60 PageMovable +EXPORT_SYMBOL vmlinux 0xf0f84ca2 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf0f9e93d jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf0fca49f ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf102732a crc16 +EXPORT_SYMBOL vmlinux 0xf106895c blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12c3fea neigh_table_init +EXPORT_SYMBOL vmlinux 0xf14c6852 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xf16f1817 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf17df1b2 sock_rfree +EXPORT_SYMBOL vmlinux 0xf184cf08 cont_write_begin +EXPORT_SYMBOL vmlinux 0xf1867136 scmd_printk +EXPORT_SYMBOL vmlinux 0xf18ab6c6 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf194c20c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a5dc5e snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xf1b6960f mmc_of_parse +EXPORT_SYMBOL vmlinux 0xf1bb5540 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xf1d3aa43 dquot_file_open +EXPORT_SYMBOL vmlinux 0xf1d8fb5c vm_map_ram +EXPORT_SYMBOL vmlinux 0xf1da6c58 phy_attached_info +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e3acf6 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf1e68601 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 +EXPORT_SYMBOL vmlinux 0xf1f9c9b7 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xf21b0fdc path_is_under +EXPORT_SYMBOL vmlinux 0xf2340639 seq_printf +EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2550259 amba_release_regions +EXPORT_SYMBOL vmlinux 0xf26078fa locks_delete_block +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28db83b phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xf2a043d4 may_setattr +EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ce658f request_key_tag +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf312337c netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xf3253cba sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xf326d12c skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xf3288d69 param_set_invbool +EXPORT_SYMBOL vmlinux 0xf32d1780 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xf32efbe7 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xf3326588 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xf339b8f5 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3590f3b readahead_expand +EXPORT_SYMBOL vmlinux 0xf35a84fe sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user +EXPORT_SYMBOL vmlinux 0xf3661bb4 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39a3311 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3bebecf input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xf3c1ac1e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xf3ca72d9 neigh_update +EXPORT_SYMBOL vmlinux 0xf3d0667c d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xf3dd10f0 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xf3edacc4 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xf3fa3d18 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xf40ff4ea i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf413d367 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xf4223ef9 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf42bb7ba pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xf4341aea __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf465a2c8 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf475fc64 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xf47c4735 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xf4982e1d init_net +EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic +EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xf4bd1059 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4ced257 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e12ad7 of_device_register +EXPORT_SYMBOL vmlinux 0xf4e272c3 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f7c25d unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xf50f25c8 phy_driver_register +EXPORT_SYMBOL vmlinux 0xf517011b eth_header_cache +EXPORT_SYMBOL vmlinux 0xf532ae63 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55f3b99 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf56af7d2 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xf58ee334 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf58fb5fd watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf5b79530 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xf5c13a97 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf5c724b6 kunmap_high +EXPORT_SYMBOL vmlinux 0xf5dab538 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xf5db30ae gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xf5dcc196 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5edd156 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xf623967d csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xf6289dc4 dev_add_offload +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf62d0258 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xf62fc231 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6482f75 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf64cf53c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf651d24d __kfree_skb +EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf653358b tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf680c270 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf688438e seq_path +EXPORT_SYMBOL vmlinux 0xf68e5e21 key_task_permission +EXPORT_SYMBOL vmlinux 0xf68f8cc7 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf6bfd0e7 proc_remove +EXPORT_SYMBOL vmlinux 0xf6c1356a param_get_invbool +EXPORT_SYMBOL vmlinux 0xf6d20f91 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xf6d55b4b mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xf6e23561 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0xf70b97cb pci_get_subsys +EXPORT_SYMBOL vmlinux 0xf70c3b5c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf7190d51 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xf72188ae blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf727254d param_set_short +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf75c358d security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xf7618986 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf79bc67b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xf7add286 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xf7cd8533 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xf7dabd64 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xf7e5b1d7 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xf7f05349 security_sb_remount +EXPORT_SYMBOL vmlinux 0xf7f1baa7 unload_nls +EXPORT_SYMBOL vmlinux 0xf807fe47 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xf80aab88 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xf8109967 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8156318 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xf8277e10 phy_device_remove +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top +EXPORT_SYMBOL vmlinux 0xf83cc616 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf83d2f4f snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0xf843bb6b udp_seq_next +EXPORT_SYMBOL vmlinux 0xf84f2aed dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xf85b463d vga_put +EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf8724ee8 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xf8793a07 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8a94664 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf8bde427 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xf8d0f29c pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf8d5dc23 fget +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf9125a97 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xf913266f fsync_bdev +EXPORT_SYMBOL vmlinux 0xf9202d2c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf923d457 ip6_output +EXPORT_SYMBOL vmlinux 0xf92b3660 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xf936f595 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93e17c7 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94e1a52 input_setup_polling +EXPORT_SYMBOL vmlinux 0xf95ea897 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xf960ac6f of_get_parent +EXPORT_SYMBOL vmlinux 0xf960e2a7 configfs_register_group +EXPORT_SYMBOL vmlinux 0xf9689ce3 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf972f40c tcf_idr_search +EXPORT_SYMBOL vmlinux 0xf975bb51 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0xf992bfa6 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xf9988355 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c4c383 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xf9d717d0 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool +EXPORT_SYMBOL vmlinux 0xf9e0ad75 simple_statfs +EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9f5235c __inet_hash +EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xfa080dc5 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0d6761 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xfa2c95ad phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xfa32130d devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xfa417534 sk_error_report +EXPORT_SYMBOL vmlinux 0xfa5000f7 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xfa528375 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0xfa59372e dump_page +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order +EXPORT_SYMBOL vmlinux 0xfa7e8f8f mpage_writepage +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa8ff001 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xfa90abea amba_request_regions +EXPORT_SYMBOL vmlinux 0xfa933508 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfb01dd2d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xfb16ae74 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read +EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3ffc16 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xfb631c0a dquot_resume +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7bcc57 sk_common_release +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbaaf440 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb33d8e submit_bio +EXPORT_SYMBOL vmlinux 0xfbb4e4d1 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xfbbfc23a sock_sendmsg +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd1b1c8 bio_advance +EXPORT_SYMBOL vmlinux 0xfbdfd3f1 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups +EXPORT_SYMBOL vmlinux 0xfc027add elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xfc0d2a67 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xfc19b039 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xfc26f01b tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xfc2896ba sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc582802 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfc5b3f77 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xfc63850e mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xfc7d0f88 inc_nlink +EXPORT_SYMBOL vmlinux 0xfc8acce5 free_task +EXPORT_SYMBOL vmlinux 0xfc9cab1b fb_set_cmap +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca5aeb0 of_graph_is_present +EXPORT_SYMBOL vmlinux 0xfcbef676 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd133550 __scm_destroy +EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd4996a1 dcb_getapp +EXPORT_SYMBOL vmlinux 0xfd4d1bb2 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xfd657da9 filemap_fault +EXPORT_SYMBOL vmlinux 0xfd82f4d1 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xfd8effff devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb88188 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xfdbba55b of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdeac1da xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0592e0 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xfe09e5b3 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page +EXPORT_SYMBOL vmlinux 0xfe247397 ihold +EXPORT_SYMBOL vmlinux 0xfe3eeb8e dma_resv_init +EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range +EXPORT_SYMBOL vmlinux 0xfe46093e kthread_blkcg +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe589cc7 block_commit_write +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe67f209 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xfea7d2d4 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebe0d24 tty_port_close +EXPORT_SYMBOL vmlinux 0xfed38fae kobject_del +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff04e76b inet_frags_init +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2d38c6 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xff31f395 mem_map +EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff89aa59 account_page_redirty +EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xff8e7f21 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffc6b98f crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7ac4 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xffd8d9da pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xffdc2f01 param_ops_bool +EXPORT_SYMBOL vmlinux 0xffe064cf d_set_d_op +EXPORT_SYMBOL vmlinux 0xffed3230 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x552f4aec sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xf84df367 sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x04951e67 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x0508bd41 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0d012623 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x21a45448 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x4467e05d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x546a5746 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x572d2dcf af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x65f38992 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ca989a7 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x926681f0 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x97d3ba2e af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x9cba6c45 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb658dae6 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc6a9ba0e af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xd74f1d94 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe589d333 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7613576 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xeab6f8e5 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xfbf6540b asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1f9333d0 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x163a2f0e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xaa502af7 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x13245b47 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4eaf28f3 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x20bfe259 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2bb92804 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x34972d25 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdf66e6f9 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x215118c6 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x263feba7 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd793f142 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdef3cf33 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2f06d3d0 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xd47126f0 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x026b6bff cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x14a74ebd cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x1ceae268 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1e720d4b cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3099ec4d cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x3ef4f413 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4cd2c931 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4fef2f18 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6c3e478a cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f655ea7 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa8e0c7cf cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xddcf9937 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe5238121 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xee8ca067 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x01f2583e crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1309a0c3 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c0f9d7b crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5192f839 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x53554ffd crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9bf3d2fa crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9ca47471 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa77bfa35 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xacb8b323 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc67a8401 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd27d2ae3 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf454f069 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf8cacdf7 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa952de7a simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xae89b5ea simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbc36a118 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe32425da simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xfe7d054b serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0xcf1adc09 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4fae91f6 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xbbca0372 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x46da96aa __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x91160441 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xeffa3d09 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xe66f9938 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xefd23c52 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x65a80e0e __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xc637eeb3 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe2a88508 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf0d1abb7 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x9384d540 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xabf982d7 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x221831f2 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7cb9bed2 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8ae04ac8 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe31dd17f __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x83f76e89 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xa54e91e0 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x043de338 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18e20f72 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x192c1bb6 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19f56357 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ae040e7 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c0c54f5 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29715cc4 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b79b2ac bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x468c527e bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4cd99d75 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4dde13b1 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4eb4cd17 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52e44788 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55737099 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a73e37c bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82c80bab bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa6033e2 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb776cdb bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe94d62a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd866132c __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed1565c0 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbde328b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbfccc7e bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfcf0740f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x23cd8aa0 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x513999f4 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9c877a7d btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa0bd6b30 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa2751c3a btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xee398cb6 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xeeb5c048 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf214d440 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x00c9290b btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0b7e6caf btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1135a3fa btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x195e54ec btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1ee6b87a btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3c44906f btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3ce4067a btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3fbe9a48 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40e7da16 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42d84f56 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x79e65bcd btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb0620245 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbcc7a649 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc4d584a btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcfd17da8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe9ee7d76 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x011e0f36 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0aa6987b btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x17aff885 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x19aa4e18 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x53e0d0b2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x776379ca btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x83cb038a btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x931dea9e btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab9c19de btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf4df85b9 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf5dae6a9 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x400e5544 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6e5da64f qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x93099ea7 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd8cd9d54 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf83c2fd4 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x052442ad btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5903440e btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x631f2cc8 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6ea02a24 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x83573bca btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb57ef609 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x497ea859 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x636561e4 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdb4cc561 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xfa0d096b hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0b84bb74 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1e15a9e5 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x3f669f56 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x44a58775 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x52e45222 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x636fadb7 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x68cbe6de mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x72ea69d0 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x740f5c59 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8686dd0b mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8be4041a mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x90226eb1 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x96e03302 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9d23f9b4 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9de20427 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9f59b675 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa7f2fdf8 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xaa6e4168 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb88a2218 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc03873b0 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc4be70f0 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xc93a9a2e mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd284f462 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd5844395 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd76d67cb mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd9c31b37 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xe75d646e mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xf339d64a mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xff2862e9 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4e59bfd5 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x53a94ea2 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xba0a76ba moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd3d0cfa4 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e5f8a53 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e98da3d clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x17d44071 clk_alpha_pll_hwfsm_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x36a3ff0c qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b15a709 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4abffb94 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5abe4e86 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6c069db2 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x71588315 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7bf2bd42 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x81a11494 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9dc41abb krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e6c0ae7 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa5ca0366 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa6bad98b clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3009160 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb89539c7 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc037091a krait_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc6a05db2 clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd3135b41 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0621420f comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1219893e comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d86edf5 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26d97e93 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e42a4f1 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33e32b15 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d6c1605 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e7399d3 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4019744d comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x41b61e87 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x46f57bca comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4cb4cd63 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ffa8965 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5cc3a03a comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5efef645 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61b4d78f comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x620734af comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x63e799dc comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x670ae3f8 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6b193cf2 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x756fdc4a comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x795651d6 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8154c854 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x815e8354 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a0f4300 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8cf0fb2f comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x93d63397 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9463a0a0 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa6346a50 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3c87391 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbe05ac3b comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd318e6d1 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7f2efd9 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xee341e8a comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf95d7963 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa601e54 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x04b181d3 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x16a51462 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3209d6b3 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x565cbabf comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7dd9429f comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa8a57ffd comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb0329230 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xec153033 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x02ada621 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x090ae28a comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x10097d8f comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x41b3c5cb comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x744b46b0 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x88259389 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x9fefe760 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x66c9c932 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x6d7dbd36 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xf310239f amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x07b9f9da comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x31515ec6 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3f285826 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x63eae3c4 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x66afa216 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x74781c88 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b69e35d comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x911633f8 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x91c56ce4 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9dae9923 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbf18ce9e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd1929152 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd61e03c6 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x2bf82ecb subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x899e9ae3 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9f5c5a03 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xbc74098e das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x08b87cb4 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0a6d6c1a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4ccdc4bf mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5c79583f mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x62c937cd mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x63ca0004 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7286dc3d mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x779efcdb mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7e69740c mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x83c088b1 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8534767f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa544298d mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc3a1ca18 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xccceefbc mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe3ffdd85 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe47ed308 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x23538397 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xccff2ec4 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x023fc629 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x12309145 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x21c77f3e ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2fbcc250 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3365cca4 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x41d5e7fe ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4a77fc42 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x53aef442 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e0a4993 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9aae2be8 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9c5a1362 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaa9ca7b2 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xafc1821b ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd1cc80a2 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe1cb8d87 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf299f5c0 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1a6470ed ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x595e734a ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x89da452b ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x935645e2 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb062155a ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb3223446 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x29cc2b35 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x47ad4fe8 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4a446c47 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5daf1e75 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6bbc3895 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcbb0815c comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xda068555 comedi_close +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0a942194 devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1ee51c47 counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1fff5b19 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x28a82067 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4987150a counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5a1fd05b counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5dd980b2 counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x63aee36c counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x73361b8f devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x737061c9 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x98c8bf2b counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd5a55ba9 counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdfdb0a51 counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x5c2673e4 omap_crypto_cleanup +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd9009a51 omap_crypto_align_sg +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x02f420b3 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x46565930 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x631225c9 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x22a019e3 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4f5acccb dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa629c24f do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbdb32924 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd71dcee5 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe9434046 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xef327d29 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1092d89e fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6decdcfe fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7399f222 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x73a2b58f fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x78b4eeb0 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x88a34d80 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x89db5b48 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x927521d0 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9f84bc6e fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xca79a42d fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd38cf8d3 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xddf9db02 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe28af3db fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf528082c fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf8d9d705 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfd78c1c8 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb60aeee0 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xefeea1ce hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x580f9173 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x2a63a3be alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0bb1a22a dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x10e378a5 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x13d7be21 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1e0a53fb dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x31a62d2c dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x31fed78c dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3c0afdef dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x49c9c940 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x50aeff18 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52941248 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61a7c878 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x692cdf94 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79ecc124 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7bfa869c dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ca62e84 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x918d374b dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96e732f5 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcfbfda46 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd03f0c46 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd9e558d6 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdbc1d2f2 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf382a8ba dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc8e6fa5 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x11498e3a of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x195b75d0 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2f34eb01 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x30b6a071 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6aebbe3e devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x72e853f9 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7837ea2e fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x94a8c9e0 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc161ce1e fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc44ece30 fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcff03cc1 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf7aa88b2 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x07ef07d6 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4eb95084 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5eea2f50 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a2d60ae fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6ff3e16b of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x80b9309b fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86db81cf fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa45ff23b fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbd050217 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd8a5469d fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe9c4dda1 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe9ecedc9 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf155a4db fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf460023b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x043cbd40 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x602fab9d fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6e799656 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x804cb214 fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9b80aafe fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9e0d74c2 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf3fa0e2d fpga_region_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x127859b6 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x200c658c fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x275ef8c6 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x35113512 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x50dea955 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x719dc8b6 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x95d89f82 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9d60b2de fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc29c5a45 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe89a33f0 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x4b96916f fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x5e852a5d sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x8b0a84cb sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4606decd gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5b275cb5 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6d4e001f gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x78d9eb81 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc5344f93 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0728ab52 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x79a85834 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb5ce1f0a gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc8df9370 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf690984a gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x90139d95 aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xc01f4ba7 aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x9a127dd9 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb85dd3a8 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x357ca600 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x367f407e analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x421735d3 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4c420b8d analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4d3134b9 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6d7c3407 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe35e6e43 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe60f95a1 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6863c5ab dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x757d89dd dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x941f4d60 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9477a08b dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x27ef0a75 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xa6fd4c43 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01d39ec6 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x06099de0 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ce41009 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d7f02af drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1e298829 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x273b545e drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37f66f4c drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41884ad3 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4cf5ece7 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x585e8ed0 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5bc928c8 drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63a06b98 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x675e565f of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69d4db2f drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70877508 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x738a6c34 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7dd3a481 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80e22c20 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x862fdfe3 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x913e823f drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9432e962 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9617da4d drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c532337 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e914cab drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa44a7a0a drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9719f69 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xada58b99 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb0743836 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xccfbf382 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd08892e9 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1700a64 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbbf40e8 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe612387f drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf12985a7 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9fbbd01 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x1616fa4c devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xa570a1ad dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xd3e8661a of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xed9758be __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3476713b drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4997901b drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x55136571 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6e102ad2 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x74059d60 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa745477d drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb5518481 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbce30892 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2884c48 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd436c589 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xee2add0d drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf6419aee drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf6a47b23 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x510b1e7e imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xad394df1 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0xa0746059 mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1c63b447 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2a48b89f meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x4088ec5e meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x566ef502 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x9343dde5 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xbcd122d4 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x350523c3 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x26c76fee rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x642c44d3 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7922a8f9 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xac0b705f rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x1907e71d rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x83216c00 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd10f94ef rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd2cb6df8 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x146bea5a vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xba628b9e rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x00582f57 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0849c070 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x150d2205 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1d03ebb1 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x25fe5d8c ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x270b0e30 ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x27951f91 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ba34c4e ipu_cpmem_get_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cb3b819 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ec41e0f ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3020d65c ipu_prg_max_active_channels +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x329cae7f ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x38000c96 ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x38b8ab68 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3a51e63f ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e724cc0 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4033feaa ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x476720f2 ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x47c71583 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4ff3ca4d ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x567bc81e ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x56a1c2cd ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6019cca0 ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x628016c7 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66557475 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6662c0ff ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x67770912 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x68c0c249 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x72cc1aad ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x74501399 ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7453315d ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x772859cc ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7cc09c0c ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7ddffd81 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7e32f875 ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7e776b5d ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8727ba44 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x893af4fb ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a399e41 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a6243c0 ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9458d2 ipu_image_convert_verify +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ba8d97f ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8f0633d9 ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91b91555 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x93e43e5c ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x962954f5 ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x98d13bbd ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9bf907e4 ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6daa1cb ipu_image_convert_queue +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa72fc812 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xac6b84ec ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xafdec7c0 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb17c39f8 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb4908398 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbb807f12 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc2b81827 ipu_vdi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4a0aa89 ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc603fac7 ipu_image_convert_adjust +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce3e0027 ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd27b4e6e ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd355e57b ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd455f531 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd504eacf ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdf6bb2c6 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe032f839 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe42b398e ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xea2afdb7 ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb0261d8 ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb1b4645 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xefce74dd ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf0635440 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf15a3c69 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf97e9cfa ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfab83817 ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x026ed914 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e28d7ac gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x104f8b78 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f05cc1d gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x22ba91e1 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23ba87f8 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37e51337 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4324abff gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45d720ca gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4db17d39 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e3f56e0 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d7919d5 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62795737 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6e1fc815 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x701da620 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7199f031 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79bcbf5e gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d2e5b56 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d317b21 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84126736 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8878862d gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92582290 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9263a884 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x930156fe gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x961a545a gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9755c692 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9dbc162e __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa27a81d6 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5da2a72 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9f9befe greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf57acfd gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7dac26f __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc1be08e4 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca9f2f3e gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2ac0e89 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd908a632 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda8b83e0 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdedf4083 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe84ccb8c __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeecc6b08 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8c5b96c gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa34666e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbd24ced gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbecdf91 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfce99baa gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/hid/hid 0x047979b3 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07a69aaf hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x164781a2 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19ae4037 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c73ce07 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cd0560d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2453b53e hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c65b89c hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2cb3dc9c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x307b718e hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a1dc4f5 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b71f3a3 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4549f640 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ec3de6d hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51f94bf7 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55d77901 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6050e185 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x691f5240 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d7d31bb hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x714d4e6a hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87d54be8 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8983500b hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x953d1f31 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x99378911 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d0a8ba6 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d7f1793 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e94801a hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1eb0eaf hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabd46ff7 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8861ba4 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf48d1b1 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf737c4c hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2816b6b hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd64b6c19 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd68eee2f hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7affde9 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd867ed32 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfd91542 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec51ba5d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedece9ef hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3959fd4 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf55de049 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc91c673 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe8490c5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x12715a45 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0417b1f7 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x339fee9f roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x415dab05 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x47fa60dd roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe297b768 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfb77bd7b roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x03b4a7a0 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0665e991 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x16477745 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x44165d09 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa716aeb8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbb0b5428 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce7f8efd sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe002b3a0 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfea8dd3d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0fc93718 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x25b419e8 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x596fa7a3 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8517da69 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe53b40d4 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x40ce1a1a uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd52479c9 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdeaa6ef0 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06344dcd hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x080bde35 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0d3d8619 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3538a493 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3dbef440 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5281f8ee hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54584b7d hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5977c535 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x71c1e3ca hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x826fe4d7 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ffca909 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x924b6dc0 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1c768ac hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc31ccb0f hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd36ac104 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd3e2d4e7 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe36cea61 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea4399a0 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2faf9f7e adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x746a2c82 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9c5685ab adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xb0bd6e34 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38ec81ab intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4b8fbc0b intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4c55908f intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x64443e1b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6bb721e3 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7bbff7ae intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc0473b6a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcade1766 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xde388f34 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6258bb82 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7913d3f3 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd82773c5 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01dee3cf stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x12e4def9 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4010a863 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x44b65078 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6030ca8c to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x662e6e91 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6f46f44a stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x947cbc88 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaed2d043 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1d680b39 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x23afe7cd i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2f82e87e i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x42ca363b i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x06f23c19 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbf857ab9 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc27186c2 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xeeb7478b i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0d5babca i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0efdf4d1 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x196cb7ef dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36c9bd36 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e031aaa i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4f8c5294 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5211002d i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53b3eba1 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5f4af648 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64cdc322 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x67b77cc0 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6c183d0c i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74d659ab i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x867af595 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8ed91343 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9a888b27 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9c585896 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa4a7523a i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xad07819c i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb046a1bd i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0857bce i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb7027d5f i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbb7e8422 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc855824b i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf8f7b0f8 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x215ee962 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xb7f2e70b adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0d6a54f1 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa650d71e bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb8f91fc9 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xdbfc60a0 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0c588621 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xa4a0ce94 bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbdf34b68 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xffe17472 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x22506b9a fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x6e5191b0 fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xfa64782d fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x49ce681e mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf43cbf93 mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xf6b3e833 mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x93577c85 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xe32e0209 ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x3000a472 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xff958486 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2160517d ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x261d699c ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5889fe0d devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x58ace0e8 ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x697acfdf ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8e7cf95f ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb2a78303 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbda01f06 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd52d5c8c ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xef3eff3d ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x2383941f adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xc4858075 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x184d4791 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa0efcdb8 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc4a438ff iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0cf0e173 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1a459b35 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x28da8352 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x50b3a224 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x55fc395c iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x572b8ee9 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7741fdcf iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7dd6061d iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe6d75fc7 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe79ccff5 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf088bc0d iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf3e6a332 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xd2637b89 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x288de6ed devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x47375e85 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x9e8f5ff0 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xdcd555c4 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x44c1667b bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xb0b5588c sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10e7ab16 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x39cb7cbe cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x544639bc cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x581edeb7 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6619b2ad cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x780c2d11 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xaa619c1a cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xaf16c809 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0ac4cb3 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xff7795e7 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x37fb61b9 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x42875219 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x94c40e7a ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xb8b08d3a ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x63383fdf bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa50d2858 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdeb46e0d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x9f1f403d fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xd1e2f14b fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xd4ff57a7 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x02f647ff adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ce3a80f __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3cd622ce __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4205de5c devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7d8733ba adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7dcd9b28 __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x85d643fb __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8876f96b __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe08045df __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xebc75093 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfbfa0972 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xc743208d bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x6ad58ef1 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0851d09c inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x160002d6 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe55c62f6 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x686cd026 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xd934e231 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xae631576 st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xef237329 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0010f542 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00dc8b53 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x061cef7a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08abb015 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x225194e5 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28686702 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d448ed9 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ca4615d iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3edbd9be iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40ff07fa of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x496973dd iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5867be0c iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x588a40ed iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5aeb4474 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6038aeba iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x638a0a1c iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e1c7f90 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8520f958 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a0f9f89 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b18db35 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f0e576e iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9009132a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9065c41d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91e508d4 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92d9a3c0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92fd8a5e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0500297 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa42a7a71 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa55b3b61 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5be371f iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa70eb1f1 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacffc913 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae212e8d devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb2aeab1e iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3965bc5 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba287971 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc48b360d iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf682674 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc569867 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xddb67771 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3e9dc63 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe89f2d9c iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xebad858d iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee3b7c57 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4b0534f iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf63717e6 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7211af7 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x7179f312 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xd5d615e5 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x2d1913b3 zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x60dc1523 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x69ea8216 zpa2326_remove +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x78e8dfa1 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa268e48a zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xeb4d8358 zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x072a20f4 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6d1f661e rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x820d3fa0 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x973ad203 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9bd6056e rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9e043b2e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xba582e6b rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcd344286 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd095aeeb rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdcabdb1d rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe96c8ebe rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfcb09599 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb4eb0868 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xb5e35033 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xae2afa9f adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x06983343 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x12cc4ac3 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1687a83e rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1f97e775 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2d92d697 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4e1b4819 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x86065acc rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x88ca3cd5 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb20d9a5e rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7658635 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcd6b7fc0 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe31ccddf rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe3978cec rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x40035c63 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8d7abb47 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf6bc8ed7 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x080e763a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa881b2e2 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xcf12e1cc cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd73e56cf cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x039005b8 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x14416d95 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2b8c6920 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7d654254 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1cdb4e2c wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f2a2b43 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69f4550e wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b573d1e wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x97eba1a3 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa55e5590 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb8e048ca wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdea70745 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe850b932 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeba1f989 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf462ffd6 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfcacd722 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x40d7eded of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0c5d8a07 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x82b146ed qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x867178c3 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa67d8ef5 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcdec951e qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd637515e qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf01c792f qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0a8beabb put_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x1c277593 free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x2dfd9690 reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x3df3928c __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x6b8f8617 free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7497e72c init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcb8c4eb0 alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe2908238 find_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xfb845e71 alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3c73f4dc ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5b0cd633 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6bab7d39 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6f3b7116 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94f2b220 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9c3defbf ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa7f455ec ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf9baa89 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe8a55fb7 ipack_device_del +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0ac5a2dd led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7a7aeb9d devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7f51390d devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbb0125b9 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe8cfb6b2 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf561d5ce led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfbbf0862 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfd518af4 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2fe7d3cb devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x32c2c547 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x611a663e led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xbca83442 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xbdad4613 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x12f11a1a lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x188ae13f lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1cfd7bf4 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1d41c645 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x507a7b15 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7163d1bb lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7c52957e lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9e368bd2 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc34e1334 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc84d900d lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08c2e549 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0919e854 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0aaec180 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0fe8c770 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25bbd6d5 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26487dd6 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x29631c3e __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c0dcd91 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f328748 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30556300 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3079df16 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31057c80 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x628aeadd __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6457cb54 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67abbb76 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a95a9f9 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7124b5f5 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71388d39 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7267dab1 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72a3de4b __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b6679bd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x803c2c0b __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fa505e __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8410083b __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ae53615 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f8604ba __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92662b95 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97f5b85f __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98ddc365 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c271314 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c29a067 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cc61059 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d23546a __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9290f57 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8183ec8 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc12035e6 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7fd0138 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf12a58a __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd62314e2 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda554237 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdba23768 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4a3a1a3 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe754d114 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7f969db __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf07d4885 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1b11871 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4656e2f __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf488bbfc __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7fba67a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc338967 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfda8097f __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfe973ae7 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c7007ef dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x133a1457 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x70915187 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x999e93f3 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9d3ca37 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbe854e69 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc0ccb9ea dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc4e51ee8 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc8e9818e dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcf9f730d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdd0a8c08 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe195b20e dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe595e2f7 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe5f39c78 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe87dda6c dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf238f2aa dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfce1e127 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcb548c56 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x03bb93e0 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fe42aa5 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf13cce07 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2cf9adbc dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf2e0574e dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x23f7755d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x278dc0c0 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9cdd0114 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd0462d04 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd67029eb dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xeec7d97b dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x29c25d50 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46af8087 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46eff63a dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x64976f82 dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x807c17a2 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8a56150c dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcd28942d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd7a78ba9 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe41c4f79 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x19ee1d19 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1b34b7b2 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2767c992 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x278e101d cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x290c29eb cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4291d0e7 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x441783c2 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x480d7549 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x700d9328 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x97547380 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a4b306c cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa0bb5211 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa1b4a3c9 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb2e102b2 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb6b403a3 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc282dfbe cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd48af48b cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdbaa2a08 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xef70693a cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf79ed83b cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0adb9766 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x221f415f saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x30bdfae2 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6fb8cfdc saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9b6d49b4 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa9e0f5c2 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xafcb1f1c saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc964f270 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd2fca419 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd4a5d060 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x28168dc0 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2ed5ece4 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8864eff4 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa4a04d9a saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb44e5cf8 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcf9f8ef8 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd04ef23a saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x063da1b8 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x08b9160e sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1b2a95ac smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2b335f7d smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x353e9744 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58f5fa4d smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5df8d732 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7255a6fd smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7ef14f7d sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x81057c3d smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa060c1c7 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa78660c8 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7735565 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7a7827a smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2e3fe01 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef8f11fe smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfdd95d4a smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06f7abf8 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x078544b2 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b18ca34 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cc25ce3 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x117781e0 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x18a47434 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f3c651b vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x226e7af3 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x29bc4855 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x361d594b vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3a74a4cc vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f9f0cda vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50808e91 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x816e9f52 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x89e1d3eb vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8f7cfd __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ebe564a vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9a801e75 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9efdf31c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb85ad0a8 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7550273 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd404f17 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd43cec1d vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd473cfbe vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdaf01295 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc691935 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe58a2770 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xea6d4dd7 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xea720fbf vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf58a27d8 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf7a10ce1 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfc1a9561 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x152b65a6 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3b0bedc3 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x65f19ad8 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xff55d146 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d5dcf13 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0feae3f2 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x234045e6 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b2e02f5 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e6c2d65 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e7dd096 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2fec296b vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32e3f72b vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x341659b0 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4b148678 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4b70ab88 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f1aae7e vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x506b93e5 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5ab6d482 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5ffa430f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x72edf6a2 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c02cc86 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7f2ca06c vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x834843da vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x889bbc68 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x90f97b7c vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x914b129b vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95081e63 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95ecd670 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x98e85340 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9a3f7efa vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9e2623d6 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f97ae7d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa13d02fa vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb7fd731a vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd6221ba7 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbe03b26 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe05739eb vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0c47837 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xf1b0d141 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x057db9f0 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x91c1b629 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xad5aac25 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xe7b64ed5 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x3aefdc33 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xe5df386a gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3911edd9 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x68ec51d3 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x6fcc7033 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf0cd5e2e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xdefa5680 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x6d5d209b ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x07d33fc7 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0fd25aed max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6160a2a6 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x64a09a25 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x74bc6cf6 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7b422256 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x839e7e53 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8ad6115d max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x976ef200 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xac8368dd max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb2ba6e30 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xeb8ed50c max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf59c4d4d max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0242d31c __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x045c470b media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x055dc2bf media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x074d5a13 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07d9a3c2 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c944ba1 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16e84b53 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17450609 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1bc3a9d2 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2076d8e1 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x27f44349 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29b82b2c media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3641de6f __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x397d9e57 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3988e2c3 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a43adbb media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3aa5006f media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45f05e1d media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b7a1850 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57930387 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c6eaa7a media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f44f4f4 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x628f5c52 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66db082c media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67b0a662 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x686bf280 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ec9e853 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75637f4c media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ed4cd1e media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f6885bf media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x833f36fa media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8882d87f __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e67a348 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e7d8a8d media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9540e094 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe1a87f7 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc97a7d0c media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcdb1c966 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcdf375f1 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd82ca1b7 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9506392 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd342736 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde4fddd8 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe8a02b5c media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2830b87 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff96bff8 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb656d6cb cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0a6670c7 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19b33cdf mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x20d2146f mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2441dfa3 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2d9f4bd3 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2dec50db mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x482c3c67 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x49cb27f0 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5db66d44 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6347316a mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x71d1a11b mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8066f31d mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8d2bd76a mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x98b18649 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb46c1576 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe360262d mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe898a0de mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeca93174 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6f25611 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09ddb3c0 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0ed2892d saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1960b956 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22c14078 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4fb6e2d8 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5f3e7f7a saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x691988a4 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x78011503 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d233030 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c4c39a2 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c57256f saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e5d96a6 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1d9ee62 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae762895 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0cbc066 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb2e1d5a5 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd17e3ac4 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4bef4e8 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5f848f7 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x24780415 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x44086f91 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x819ae239 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9232a8b7 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xab044379 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbeebc524 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd275d13e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x1e13f05e mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x7675143f mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x99807cd0 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd40bb7aa mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf83373a9 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x262779df vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4befdff8 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4d9eb564 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x56101757 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7284406f vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x73b36147 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa32f6f4d vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xade6d7b1 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x90e9a35f rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x15ed1009 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x8d0bd5d2 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xba6d1062 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xc1684a09 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd6d53e4b vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xdf7ead0d vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe5ab8340 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x33acebb9 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x40fd6c72 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x624e09c1 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x68d06648 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x703bf861 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xde731bac xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xeb9dbdd1 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x900754f0 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x405ca3cf radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb549a63b radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5b500f92 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x83b485d6 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8b109069 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xea615beb si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xec29e2db si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x334599c6 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36af900b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x426c9f8c rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x434ec43b rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f10f788 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76873e0b rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x83030e35 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e81bba5 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5b7276d rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3da28ad devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb50c9f2f ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbae2e891 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc33fa53a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd68e8f22 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7d3d098 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf217ec07 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbc5ae07 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfe816d22 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xdfe0093d mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xa269c54b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xca4f79b3 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xd6f12f03 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x032fc4d4 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x0a7b7d6e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x25c8f2de tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x81cbd0c8 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xf7c8d5d1 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5e95c54c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xda8fa775 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xad98c5e3 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xfb92719e tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xab1e0699 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0214f8bf cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09216c56 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3be32631 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c2a3526 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5490287d cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6b30d5e7 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76bf3500 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8824a4fe cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa46e495c cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5fcce02 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9c6db8d cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb094cd84 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc13430ac cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc1b126cd cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca1b88db cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca6abf12 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd47bd19b cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb555570 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd49f028 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe860d9d cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7ab62f80 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf203aee7 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x14407d2a em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x29ec5975 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ee46b38 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x344cf876 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3bd68a28 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d45f3a5 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e4fe5a2 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e920e04 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x49685a3b em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e587c71 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4fbe414b em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x67919241 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x75c3bc64 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x919cd0ad em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcaca7bd1 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb965a63 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd81ac7b em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe7d3a4e em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3d1de363 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbd930749 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcf176c6e tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf0ec9bd7 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2021c1aa __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x31ee4dbb __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3c705f30 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9a0ac668 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xac9c26be __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0252c588 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4bcb194e v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xceb31cf1 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x12e2c506 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5008f232 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x54e2737b v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5919dbbd v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb22103c2 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb562d71f v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb6f8936d v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb792bfe8 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xebd6aaee v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfafe039c v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04dd4149 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1454cc78 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18d14814 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2aa36ee2 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35058d61 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37cc2da2 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3af4357c v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bdd8cc3 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3caa5a38 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x452389b2 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45842be9 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a40ed1e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x530a94f3 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x546a00b5 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55e205ac v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a33daf6 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60a184bf v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x628286b5 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62bc0466 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64666def v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6acfe88d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6aec3dfe v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e80e371 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75f65f5b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x767df2ee v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a899c35 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ae775c9 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81cecd51 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83a07808 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9699290a v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x976fbee9 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa00aeada v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa464e90d v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8ea080a v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadac5c37 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc19a9b7b v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xccde4935 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce6d88fd v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd18e29af v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdcedc1dc v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf45c0365 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4e3bb60 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8987a76 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc487add v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03d95405 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0bb306c3 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f567107 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x23f65767 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2be8ebdc videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3bdee72d videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x577df289 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5bc1ad0a videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6fb5f3b8 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a42018b videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82859f52 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90a05ebe videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa1dc2306 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0e500b0 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb55719e7 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc834f9d videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc43d8ce3 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc54ac82c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcac8b15f videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2c8b221 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd550486b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe84e2559 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeaccaafb videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf9d5a540 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4af770ab videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x693d11ea videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6cf0d1d5 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc029b913 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3c80bc33 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xabfc750c videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xcb058ba1 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0405dfb4 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04c6fb1b v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x054a2bb9 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05776a70 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x082153e0 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x088b0728 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09d1b28f v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x127bc1fd v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x130c0251 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x136815a3 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ea409ea v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f63cbfb v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f6c0035 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2496a215 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2574636a v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2622e847 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b90bda5 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f2f34a6 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f52ed0d v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32ed84b4 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x346ee34b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34c86c63 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x469691f3 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49144682 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a2a0357 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fd8046c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x534d02f7 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5460e625 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59429489 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x613d390a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x706b39ee v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x738e8d81 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75af04a6 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x76fe6d9c v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b9b4bca v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x861dc463 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a5260aa v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x902d0b6f v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91abd861 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fff2cf0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac3e823b v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad125907 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadb35541 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb71d097f __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb85678ef v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb92189c8 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb998ee3a v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbbbddebf __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9b14f33 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfa7fb37 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd48577c2 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5f2f0bc v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9b48e0a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xddb817a5 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde27be07 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3a35330 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef104a0b v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf001fcf8 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xa71f0248 mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xb548f268 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0ff95203 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x766797bf pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa6e0fd75 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01a5d569 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1789032b cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2938b913 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x359312ac arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c827b9e wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6a00785f wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74064b51 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b599481 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7bf2aeab wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x81ae6589 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x83219402 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9347b18b arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x97532c62 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa257bfe8 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb82fd796 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1fafe79 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd46bed2e wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xefcdc548 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x4c12d51e atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfc4cd93c atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3c80f0e1 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5dbb7201 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x71f133d2 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94229e6b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb3ddcc51 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbaab1ea6 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdf07b131 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x00a09759 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b94dfc4 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5f6f458a kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x646df7a8 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7736de72 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa1f06a92 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3abc74f kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe795bcd2 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x08da5f07 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc2bd8131 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xec1fbdd3 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2dd442cc lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8bd0068a lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x912a2d7b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa0fcc562 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xac0d4f2f lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc8c2d130 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdc1bd09a lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x29ab39d2 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x44034790 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf8316c97 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x07b7c779 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x07ba1b39 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x136d2354 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1622d091 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1a889df6 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f62b0c9 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f6f6c89 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x28e3ab34 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x28ee7774 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35c55c01 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35c88041 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4482da75 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x448f0635 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x59872d5a cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5c57adc5 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5c5a7185 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6bd6b638 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6bdb6a78 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6ca68e78 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76f0410d cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76fd9d4d cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x852db06c cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb90faed7 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc33ebc1 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc3e3781 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf136007b cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xff06f6cd cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xff0b2a8d cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x07e6322b mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x15e9c743 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x344d507d mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x55538c63 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x608ddf96 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf819f3ad mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0a65bf81 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x17f0d3c7 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x18c90edb pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3db1c7af pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x619e9770 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x850dc1db pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x913460d0 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x970f7f8a pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaf0a3537 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb30dcb21 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc92580b4 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x294fb8ef pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xaff5f3ba pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2bfe9071 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x46a6461b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa30e6754 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd0ee1fd9 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe7b47cb3 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xc5414fa4 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00e0b9cd si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a375aee si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c9fe01c si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1dadc174 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x233b8a3d si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25bc29f0 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33876616 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37469594 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f4e0361 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49c17be4 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51f50c87 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5430ce44 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x639db9c1 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65712426 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6fcfadfb si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79b28b90 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f028364 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1d16316 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3a14b90 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9d0dc2a si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xacabbf81 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xada53791 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb19348cb si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc1504f6f si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2b451ac si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9a5dd6f si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc9ade00 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2de1c63 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9fea142 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf5ca9a6b si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf84ac7ce si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9443e12 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc09aeee si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe5067d8 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x08f35b27 ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x5a732294 ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x09f651b3 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x5ae85736 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x25733cd7 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbed017be am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe68ee630 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xebccfed5 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x053d6608 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x09ea374d tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcc2913e7 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x3697f374 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x001884f8 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1dac333f alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5a7906a9 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7d14830f alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb65783bb alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe042b65f alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf011fcb2 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x152cc883 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x161951d5 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26677032 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x311318fe rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f863f15 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53dca311 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x54a293b7 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x58ba3f6a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e58a3a0 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x670ce0fe rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6b3b84f2 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6b6dd7ec rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x71d891ce rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x853452b2 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x95347366 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa2ae0521 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbabab6e1 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc4e70d0e rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc7396aaf rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc97c9fa2 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3878ccb rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd7e98385 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xef966f44 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfb4c140c rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x229e5a95 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x616c1f38 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x754e1916 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7b976206 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x913e8f88 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9728ec05 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc272ba69 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcc82a7cb rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd11d57c3 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd18c86a7 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd4dde702 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe8e1f001 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xebbfda96 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xca31cc2c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xea914f53 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xec075415 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xeed4e556 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x00f2c122 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x16c6a34c enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x76521856 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7a033cde enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x91dfd75d enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9bb371a2 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc5e5e771 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd87f19a8 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1c740687 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3bf8ec8a lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7f196289 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa6fbb079 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc54831a1 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc88063a9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xee02665c lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfa9e6ed7 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7a365789 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3d0d25a9 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xa231f8d3 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x115913c7 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x313aea87 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xeddaaf80 uacce_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x71947d11 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x8cb32c93 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc212090e dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x08aef07e renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x4476cce4 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2a7c1982 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x38a394e3 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3f6fb1f9 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5af64d91 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x68388b28 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa76f867f tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xbec13506 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc3aafa0c tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf23b8b4c tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0845f417 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x12554f2b most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3ce1f993 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x42793d0e most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4a288b4c most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x702e89d5 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x873567b9 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x953edb15 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9cd45fdf most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb1b0db8d channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb5153bea most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb90f95b0 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfbddccee most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfd14235d most_deregister_interface +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3c9d6ded cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc183487b cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfeaa6d93 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2dee1509 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa045915f cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xde17da8f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4fd0bc08 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0b4ca845 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbd6dbd85 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xfa296199 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x444014b0 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x58fe5e5a hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x6537a5ea onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xb2ed00f4 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xadbd927d brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xbd5290d6 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xe008e25b brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xee1c07ad denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x6ce1969d sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x99713905 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd626ed29 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x168fec30 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1dcf05e5 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2aa0e061 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3292a2e7 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x459e7dcb ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x46049a25 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x676c2df9 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6ac18ecf ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x753dbd9b ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x80e44de3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8cadf02d ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa74ed828 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaed93b7f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbb11d5f8 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x015b14c1 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0ff549e4 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2e614930 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x30418355 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3c01885e mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6939c85f mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7249ed63 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7e03483d mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x85cdcd45 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb8eb5911 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xddfbe758 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdf6f6cf9 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe52bb820 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6cba56a9 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x91f50db4 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xe18df394 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x26a3e053 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x33638735 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d1f19df c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x950d5310 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9901652d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe819062f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x126ba75b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7e92a0e6 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x80e3aaf5 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd8b88247 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x058ae553 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a0a0de4 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cd5a1ca can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1334f08d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c6d1ee6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1feff687 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d9e182e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2e8b5aeb can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3bf95a39 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x41a451bc can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x42032106 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x480944f7 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5804b010 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62042a18 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6dca8644 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x756593c3 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8463ad67 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97f9f1a5 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9c8b8daf can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ce0f163 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa891ff4f free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb293132a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb9a121c4 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5c1c93d of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc676635b can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd3d81512 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd624000b can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe4939792 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf174a1e0 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfcd15675 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x11fef405 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3dcad0ae m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x628ce24b m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x62fb229a m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9deffbb7 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaa0a6c66 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeeb81f10 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf16c42ba m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2f44bfae free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6171c0fc register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8237fc67 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xeffc79da alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5ae2cddb lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4fec3806 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x540252ef ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5ddc9feb ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x670b78ec ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6f3d93a0 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7cc1aec0 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x945867a1 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x965aa77a ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xad9e23d3 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc5d4e543 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcb6d4546 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd7535c91 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe6762ab3 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf27350b1 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0105016d rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0d1592cf rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2989f5df rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2c0a6abe rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x38ff1d46 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3b5adc2b rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x41258e46 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6b0d5af3 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x76911f95 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x81374cb2 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x87f59a4a rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8ddc5df2 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb09d9b37 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd36b2942 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfacfd960 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x6fd3a581 ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x364039ce arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x40c7c749 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x19dc4fe8 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc5e16003 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf68ac32d enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xfd43212a enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x78b45c72 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xea2e6cdb i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x02fe68a9 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3bcce1b8 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd6b1dfd7 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd75d1f8a ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf5be6a1a ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01f33c07 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x033c434f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c986e0 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a5db270 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b0213f6 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e96e36e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10411fd0 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x123792ef mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156df00b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1588a325 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b3c14ae mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c982efe mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9e3323 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ecda78d mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fdbb3b2 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20a14245 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x214e87c7 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2150aeb0 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d33b91 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2447d537 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25395210 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25bf6ae1 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x260ba37f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28cece4d mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c6dfcc4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f900dbd mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31fca6e6 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3575504d mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ce93e4c mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d746374 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dbe046e mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41043ed3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x420ee57f mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce49a43 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d66648f mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dc71e76 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ecadb26 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525e9c17 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52beaf2e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53cdbcd7 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54d79b69 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5512fba4 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5630d9f2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57db39d0 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5962ad7a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ad67507 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6016c236 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6219dce9 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c3928e9 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x719b7535 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720d4001 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73aae6af mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x758005df mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7623f3d9 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aeadd65 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c3b4d8f mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff6a870 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8406851a mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841532ee mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x849efbd2 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85b457fe mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8659ba57 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87d055cb mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8872fe98 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ada72b1 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e0a8e40 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ea570a4 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x906f3bdb mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x908f8ea3 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93da77a2 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9610d6cf mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99dc293b mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99e65078 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f7a103 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a10814d mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bea803d mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c43b3d7 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c79a030 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3b428e mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20eb165 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa288eb86 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a5dfb5 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7487ef4 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac080202 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf80e114 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3fbecab __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb54c0a6a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb63aec4f mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb647b83a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb802946e mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba23bd65 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd70d727 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda76695 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3b8e9c9 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4984f22 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6c06483 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b95c2e mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc2a78eb mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0888d7 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce2ff307 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd212ed3e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4c2c740 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd862e114 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89d10f7 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddbf6a22 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe12a9cbe mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22c757d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe29507e2 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe32b2ac1 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ee7cf6 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaf01a36 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7777e5 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed7b3510 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeb512ce mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed59003 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09f0fb5 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf12df0d8 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2237c87 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3eb6775 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf52e4162 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf83f4f20 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00216df8 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x002cd5bf mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x086f6715 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08ae311c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c468197 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eaa45d4 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1067e6a1 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f8baad mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c4f56a4 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f53c596 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21229fea mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23f25b1a mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x245e7aec mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x294c3866 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355bc677 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3591e7f6 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3957a615 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3babe767 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c3b06d4 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f8da0e8 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40c9dd09 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43bbffa0 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46f60b21 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x486a184c mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d7a9e63 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5059558c mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f351505 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60324c59 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d499cf mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x659af3ff mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68266530 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69445713 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69bf04f4 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c63cc02 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ebb2d31 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71cef0ad mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7513558c mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75cc710d mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78566973 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa14a5c mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8003ed58 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83163932 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849647f4 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ba5d720 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e762586 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d37c53 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c07a1fa mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f30e049 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1aed606 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa693880a mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75af9a0 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa827df73 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac92b140 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec25d29 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70383fc mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc259c432 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6aee497 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f9c6e0 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87eff9e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad284c8 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc0bc297 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0222ede mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd63665ee mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd937dd32 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc4606b5 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc7ff93b mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebb504a7 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7ebea7 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef096427 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2b61f0d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf40f0a40 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4b06d3de ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x521ccb6e ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf8714b62 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xffc19f05 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1abbe352 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0433eb5a ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07ba5ffa ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16483348 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e749b3f ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24e66bf9 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e47bc27 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5220db52 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54707bc4 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a28c421 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7800d8d6 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf220c1c ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1d70493 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdce384f4 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2f241997 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2f9337d8 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x43e618dd stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc7e28c0c stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfd8df3b7 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0da834d6 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x60159fdf stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa1e2136c stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb67d4c26 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd66b9234 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3fa76b02 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4bad7f1d w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5147f0e5 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe47c1fcf w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0xe2940858 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x29e214a8 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2ba0b223 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2ebac4a1 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x78be48d1 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x89e43b0f ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x558ba065 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8e45ad8e macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xad5e087b macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbbff8add macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe5e5c30b macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x7b27a728 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x10c517a8 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x70fa3c9f net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd0cbbbb5 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x131a5388 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2c910846 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5477b33a xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7e045603 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x955af691 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xec2d241e xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01af465a bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10641816 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x196fd21e bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b149fc6 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2be44203 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31d72d09 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35e41266 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x387b477c __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3aca0630 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ca431da bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3eb60b2b __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3fa7fcd3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x590238b2 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a049f5d bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62fc2329 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6fbe9c44 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78cf4c23 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b6f323f bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bb74689 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e5e3216 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e9d237c bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9fe308aa __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab7a077d bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba419c47 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc35200d4 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcae1f43d bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc285e7d bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddc1370c bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdef19edf bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe19d6c5f bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec21ea37 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef251a99 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa513fb7 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfcb26ed1 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x14d69a63 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2ce9ab8d phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x328d2be1 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x55748b15 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9bcd6bbd phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa0c1f6c9 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa542318f phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb6c2234a phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc880ec8e phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x1dfbb14e tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x254fe317 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x573bfea7 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x8c279764 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x96c84903 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xc32f449c tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xdafe04b8 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xe7b720cf tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xebc7946e tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0059693c usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x14246cc5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x206888f3 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x26ec2493 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdb723010 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xea2eb7f9 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0a3ceb8d cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x11ae5046 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x126e4a41 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x591475cd cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5df01e61 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x65daa81c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6a161fd4 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d0994d1 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9fc6bded cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xac882835 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc2f55991 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xac873936 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x56fdfe77 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c68dac3 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6312ce79 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8d20bc78 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcaca6c6e rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf8bacbd0 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0608999d usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b5c9046 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1327a489 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22bb65ee usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c684406 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f8baabf usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46219ef3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b8a2f77 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4bc3befa usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50872b4f usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5249de9d usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a83234c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d9fecfe usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61f8d007 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c158be4 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ddfd613 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x853ef740 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c069f24 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ba8ee6d usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0035d58 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa12b5f2d usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8e5d78f usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa6fdea3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf26cda4 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0abc97e usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbeb9aeb usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc8104cc2 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce489762 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe351938d usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeff06b4d usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf16fa9c5 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf45918a2 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdec5e81 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfebcf220 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3083a914 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xdd2eefc4 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xde402551 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfa847345 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x6a256f9b libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e121ecb il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1356955a il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb232d22b il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb41dbf15 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1a27ba0 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01405212 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09e82ab8 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e9e8f0f iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229f8a07 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2758c51b iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e6441cc iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x321e1132 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x341cc585 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38ecabb9 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x39b4e0cd iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x415fd80c iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x476dcc3e iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e3dc83 iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x535b2db3 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55a35624 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d618534 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f5d66c7 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63972d91 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x681c78a0 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e556dae iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73023998 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x731d9480 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7692b136 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x855ab8c2 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86a6fe36 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86e798cc __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88f04cde iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x89379d09 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bbe0b27 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e5f1336 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97a123a1 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98236c04 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98837da5 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ac58b51 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9fcf8e50 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa03269a5 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa2406123 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4160048 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa52b035c iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb800d3d6 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb879eb1a iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8c5eda6 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd00299f iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc05e5efd iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4a30671 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8a1ffc6 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8ed8a11 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcae11796 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2c2bf17 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2de3cc1 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd889ce9f iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe522a20d iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe522bf2e iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefee3a81 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf29fe3f3 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf66ece16 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1bb1ba iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff0aeb65 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x15bcfdd5 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2caa2caa p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x30ec2e26 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3bb39622 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x526ff435 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5da4971d p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7b8bfe75 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb575a11f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb69ab639 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x19fd1bbe lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1d365522 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4737dd38 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x47b6ce14 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4d5fba84 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d2c30e4 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x64538bcb lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x65bba30b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7a370d5d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x89a7783d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x926fb222 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaefeb0f7 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaf2012cf lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd8f17d51 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xefff096f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfad924fb lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2b880a69 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3cf5e4d1 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x42d0c6fb lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x64b59ed9 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x663e1488 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9a63b0e2 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcc88703c lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf1cc2571 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x008f5fad mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0607c2bd mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0821db49 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0a149ccd mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11e036b0 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12194d02 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x19cb0200 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20d3ca56 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d4b148b mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3355d13f mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41c32dec mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47192799 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d649a55 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55881aac mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7119355b mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ddecc0e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x89bcbe26 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8b2fbeb3 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5c0af46 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb768b385 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbd51bd47 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xecf7048b mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xef600600 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xffdb39a9 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0210fc06 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04eb09ac mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1833aa71 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d79f048 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ee444f9 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x293cefc0 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d24351d mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3161c323 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x346de4f6 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37c91b6e mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c146b7c mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e497793 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fd65c68 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40d8e57f mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41aedb21 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x426d0290 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42e635d6 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x431c397b mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x453a1660 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45e17017 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f829d3b mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5153b2e9 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x585b81e7 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58fac8e2 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ca386f0 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d063210 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63cb5ed6 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x672603cb mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a6f6b7a mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c1f746c mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73d45f79 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80a043c0 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84869e06 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8900ce02 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ce8dc7c mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f0df879 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f6e878e __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92638c19 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93960f09 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x945263e5 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x960c294f mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9765cf8f mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c37a7e3 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4b10901 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5aeb7cb mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa68bc119 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa70ace8f mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9109b3a mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab132039 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf8e5d3e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafcfa55a mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb60612a2 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8bf9c29 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbdfe97d mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc183f70 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc78f2411 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7edadbf mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc851aa21 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3081aa5 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd415ae4d mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd546041c __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5d6ac29 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd85b43ef mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdab9d61a mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1a43908 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2e2010a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe86aee7d mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea423ab4 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeae8ef2e mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb6ac0e5 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xedb3c5c2 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf32cf512 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4fdf9f9 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf556fec8 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6fb0a24 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x02e9dc48 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x083c4e03 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1631bfe3 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x175a72d7 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d749d4d mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26cae951 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f045bb3 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36a1b3a6 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37e48bf8 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ff7ed23 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40bcdc18 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4313f796 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43f33f74 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x554a87b4 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5698ad9b mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x654133fe mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x655c0d20 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67f9efe6 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68ee896a mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b581a09 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7878164c mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8405f5b4 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x877a4c4a mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x890edcae mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8c439280 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8e210824 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9042ff5a mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x926cbf11 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92c0fc1e mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a0c8ace mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa293cc6d mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xacef9e4e mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3346eb2 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb5b89628 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb953246b mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0207c2f mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca60b008 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc495486 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd8ccfc54 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6c66e29 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe705ff4f mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe84dd5e9 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfecf6644 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x11a26ca8 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6d30e27e mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc0c62593 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0411b7fd mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3176146c mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x498484b9 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa7bb6546 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb9e72e5a mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe0c0860c mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe113b707 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xea3a62ef mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf36380ec mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a7e9c29 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e4e42af mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2e759b1c __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x351b7330 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5f204bf5 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x611185a7 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x647fe286 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x66cdfbb7 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6760b99a mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7352b7d7 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x814da71a mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8398a589 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ffd6157 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91430c1e mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x98080fc7 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9a0c6bc1 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9c4027ef mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d6ea33a mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3cbb69f mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa4efa221 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaeea62f4 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb4219466 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb8337272 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0c5ada5 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd1fb55ee mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdb70d6b7 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd135f4f mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfc6440b0 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xff905dfa mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x4065ecb6 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x05af6119 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1a05a21f mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x9f5da69f mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xdb94f288 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1d2a08af mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2aa20656 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3085463c mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x38b85ee9 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6a557b5a mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x90d12e33 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x034564a9 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x04994c2a mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x093ffc33 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0e261f85 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x11fd3a49 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14e9505c mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x227b7bd6 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26c6574e mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x298e6433 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b5d9c9c mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32caaedd mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x365b5b5e mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x372d7174 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b44dc95 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b5e1ec4 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f219bbd mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48aeeaa2 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4af79774 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b8facbc mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c5e4e90 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55987e6c mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5626d770 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a005980 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b0e5af0 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6781bf4f mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6808ac2c mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ac28536 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b32fef8 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6be0d8de mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c5fa04d mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c704fc1 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6cff829d mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e737920 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x833efc4d mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83efedec mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x86a47d6b mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x86d0068c mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8738aedf mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x876e73cd mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89cd52e3 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b811e21 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8be1169f mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x919ccc5a mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x939151e8 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cc720ce mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dd34d88 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ffd508c mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3d4de10 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa669c3a6 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7e86e5e mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8d07c12 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabb3f50e mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaed49744 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf362553 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3601b5f mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcac7dcd0 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce3f415e mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce434b84 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd676d05a mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7bfa06e mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8e777af mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9efd16b mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf42436e8 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf83f157b mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf853f333 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcd41368 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1ca52acf mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x215c1f23 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6546bee2 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6cd31f52 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x80ae0c05 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x90c9dc51 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x91ca609f mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa8aa879e mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0680c1fa mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x12397a7e mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x144bf13b mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x19e5e827 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2b64bf21 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x34d699b0 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3a583e15 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x515dea11 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6927cef0 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x699d35ff mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x780aa5c9 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x87fe5e4d mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9351d124 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaee1d6db mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc7835579 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcc916c57 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd77cd2d5 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xee5fe568 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf1fd09e3 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0ab9302d host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x124aee6f wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x180e8b8c wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2633250e chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x97a737a9 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc117aadf chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf84199a5 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x20ce10fa qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4de82fe8 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x816d9526 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x937f5770 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbeaa2fb0 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf3d3a2df qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00e6c26e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c9d552e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ead4a7a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11f96782 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x124c0819 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14909b02 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x163a2b4b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19e3e479 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a26ef82 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e69b549 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x317f9029 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37401ed2 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39272f7a rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a3aa4ac rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b308e9a rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5834b284 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58eab792 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d6515cb rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f44c508 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x772192bd rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d102ef0 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85ed0687 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8676c26f rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b243f7d rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b76dfdd rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9cbf031c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa411d47e rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa629c106 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa81e4a47 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9f950ae rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xae8bc3de rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5576d85 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7833ce2 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbf180f1 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbcc3d72d rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf318367 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb97619d rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0f8df79 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2c69d6b rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec0f2b3e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3c26a10 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5e6bf22 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf82a9dec rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfe054ea8 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x08ef10d1 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x16080ac3 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x46597756 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x478a5436 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x573cacc8 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x75e1d761 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9fc374bd rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa0da9fe2 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb4ca4702 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb99e747f rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xba20e480 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd007dd4c rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd0f94924 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe403f42f rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf5656d82 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xff3fa0f9 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04d9861d rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x076265a7 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e9ac557 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11b1b367 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1545a755 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x175a4709 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1844fa45 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18ed08ae rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1aac3e0b rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2205e648 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24d26e59 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27839c39 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f88f32f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x315b5831 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3785c734 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x470069ff rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48dc23f2 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a599031 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50f79285 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x559014f8 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57c58440 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5df24091 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e5037a1 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71c625c5 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x776c1766 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bcaf7a1 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8847efe4 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f3ee897 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9376a7f3 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa101a0e8 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa27679ac rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaded3e59 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb380760c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4b67593 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb79f245a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbfa2792a rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1079c12 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc18fcb60 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4b3dc19 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc62a270e rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9cd443d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda9dbc94 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0453956 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0467537 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0e9bc69 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf14d9ea8 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4699f71 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x742c6362 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9cd95b7c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd11533e6 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe0083f89 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe814d2b2 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3bc5e6a0 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3c4a84ae rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4bfad285 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1115a7c9 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1c316883 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2d3a7632 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3348a6a8 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x48cc5140 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x70e3536c rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x742322f6 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8ad407f7 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb0742c3f rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb405caef rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc606ffb8 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xccd18c5e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdfb0ca2d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeadb92eb rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb695d11 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf795e5b2 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0408580b dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33dfa5c2 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69013167 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaec68a99 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03b85280 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ab36979 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ba23460 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x113d8f27 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3cb938d7 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ab68b16 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5fb8b23b rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bde014e rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c75df3d rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82da60a7 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x985d1e24 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0a9d200 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb0b40dec rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb647ecf3 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb91cadc1 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd497600 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc64b9535 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcec190ed rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf54975d rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4557308 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda4198cb rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc7e71cf rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc9e8bf9 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5c638f3 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf438a6b2 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x096e20e4 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c6b94f0 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ff2ee54 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29a3f712 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fe23307 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31894856 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a6fc933 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3be67775 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x495750d3 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b65ba64 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5258b4fe rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b0fd32f rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b453c3a rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x720ac471 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x786537e8 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81ac6d88 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac9737c5 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad1012ba rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadc33752 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb74364b3 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7f9dbe5 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbee73c9d rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9bc4ab9 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec3b459d rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf23eae93 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x45853176 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x75ae2e2a rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8c24823b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb5b48e70 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbc17faf6 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x68bfac20 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa3ce8f70 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe9b96b0d cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf16a9135 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0b44dcc8 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3394f473 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x85bab072 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x05dc7591 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0da83ff1 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14073c62 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b6d22fe wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ce636bd wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d9c9ab2 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24b2444f wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24bf8e0c wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2be587ad wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x320a2f1c wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a2dc68c wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d8b68d1 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x432a3910 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x467502d3 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4abf2779 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bca08bb wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53b41f77 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d38fae6 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62dc525e wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f1f4dfa wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76eb8185 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x820d65f3 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f59656c wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9254304c wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f9a22e5 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4490502 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5678c03 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa11c4b6 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4bc2950 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4c80ff5 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7d8aa73 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb90b2faf wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc687a18b wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdbea928 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd740a64d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd77605d2 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8735110 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbf8c0fd wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc4f0789 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0e064f1 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe35d7f4a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4e5c903 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee150f7b wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x50c4e0d4 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x56c5ae85 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x58db497a nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd83e202f nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x645fff94 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x729f25d9 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7a7aef7c pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8004a151 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x91d0c465 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbac772a4 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbd3af58d pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x366bb6f8 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x485613ac st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x78bde6dd st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x95f0e551 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x99aa19fa st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc348a85b st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeb0d2995 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf11a1d65 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x80ddb43d st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9e2a4eec st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xbd16ba25 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9518c616 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa4ee1c4a ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe32dc588 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x578d66aa virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x7e486ab1 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0672e86c nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c2cad1f nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11a95119 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17257e30 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x219fd3e5 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25c8fce2 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2655f3f1 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d7988b1 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ae8537b nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c7be145 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d90a900 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55280a04 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a7cf766 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x60111285 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x623ad936 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x655daf77 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7703ab9a nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d96e749 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87bf9029 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8cc0de71 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91f0b398 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9270606e nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92f0795d nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9bb3f103 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa14a2561 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5717498 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa66fbe77 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb304e44a nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbae940f1 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0b8f18a nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc313927f nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5cebad4 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc821acb2 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd7743a0 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd88cfc5b nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8f70b39 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec1cb0b4 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf5994ea4 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8f4085e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9daa0dd nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbd4e7a8 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a109838 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x375f30f2 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x60e8411a nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7295f2a4 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x89a2c799 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb625056a nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbf99c839 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc348e25a nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd2382dab nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf5c63f99 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xb3a06e9a nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0d96b408 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x364811f3 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x863f803a nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8ab8be0d nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa1d60d26 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb009a16a nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb6fb59eb nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xda5ce1e1 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe37fd0b7 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe510bb41 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfe716183 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4e47e3ab nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xd5d696ae switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xb1e957da omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xb71f82e2 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xf0cfc72f omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4a7b3476 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9624f708 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa65f53e7 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8a5a18a4 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc8efbf5e cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0a4a0987 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4a58f5cf reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5ce05fa4 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x724756d2 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x3260a88e bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x3fa1fae2 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe45f5210 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2ac61a59 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x64abda09 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8ff315ec pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3bc9fd24 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x52489a37 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x637b4b4a ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x82d6e08c ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc09c22a6 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xdbd85b71 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe9c646f7 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfb53cd69 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x028335b1 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x63cf8a7d mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x64417be4 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xce0992a7 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdb44a5cf mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x586c2c96 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x90856e0a wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x98a07567 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa2b5acbb wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa40afe60 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfd0bef76 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x1037a30b wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0415af92 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x105c7a3b scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x57aee219 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x78d93c4b scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9dbe8839 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xaa30cc0e scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcc790063 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x38a37c35 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x74b45a23 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x75912b1a scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8efc58f8 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9a1f74cb scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0a244ff0 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1155b61b qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2fecad2a qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x52b3bf32 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x69c7e841 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x70ed0a83 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa554a94f qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc90e80af qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x950d8f20 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x25d3facd qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4f3bff15 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5c2d7333 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb842ee31 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd143df75 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe0195a28 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x81028a83 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x5071196e mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa73b4336 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xfc31d842 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x012f170c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x058fcf70 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07a18b06 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d1a9b20 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a9fd2d4 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bb9a480 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a38d61d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3395a894 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x367ecc81 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38e79ad5 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c18ccc3 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d70afe5 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e2a0dd2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f55cb5f cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4734b460 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5460d5d1 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b1309fc cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fbb2322 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fef4e22 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64238186 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6499ba04 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ade5012 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70064365 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73ce84c9 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c15c470 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c4f6242 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2da5cf cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95da120b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97c551a3 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa10daa0e cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa578e150 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa80edfb6 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaae90bd0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadd1771a cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb69aa3bc cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb90d8374 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc37f993d cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc876aed9 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc987fa1a cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdcdbd7b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf89246a cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd687f726 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbc98086 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6b5948b cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f009fab fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x146deace fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1afc739c fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c2de6c9 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25689e8f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x306fcd97 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e9b19cb fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ae78a01 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x620167a9 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ac8860a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c8234b5 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa1fdb271 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7634290 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8f5f719 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xec6b7cdf fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa4dd7ee fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x0a2cd01c fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x12c892d5 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2fc908e2 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x445a6935 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x45dff51c iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x662d8a70 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc70416b6 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcb4ff13b iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfbd0ae54 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xe540147a fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06d7f663 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08e648e5 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c68f410 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1235720f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1494eb75 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19c6986d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a73c0e3 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22b0fa3c iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24cb33c5 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2abd2573 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fe32337 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x335a995f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x419369b0 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43289284 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e43aa5f iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5996e4f5 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c4d372c iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x681bdcf3 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78717791 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86e68e31 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e80b319 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9260b661 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95f83922 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5aadc95 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5d74bbc iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa933aae1 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafdc178b iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3a526e9 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0804ad9 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcced5695 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd031047e iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4d48fd3 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd582a2ca iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6731a83 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd85ded2d iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbf14cf2 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe27ca9c7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe360ac84 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2f49841 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf72508a1 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf89ed2a4 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8c362d1 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa74c382 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff710e53 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03c79e12 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x305c3638 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3765b072 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x39777dbf iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3b9c849e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x841990ef iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86892a42 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8721358c iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d9361f9 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb83d55c5 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbb0fd421 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcdad2754 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcecfb376 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdd7b079e iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec5b529b iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0df3246 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9ec341c iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0354c332 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0828bb3e sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0baf2d6a sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e6de0ba sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ff0dcda sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x215f7441 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4223b693 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44dcdd07 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49c743a3 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ae75481 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c0bcfe3 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c9ec392 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x657e9270 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66f3602c sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fa30367 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d28cd25 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82706616 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d65dc20 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d33878d sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb54f14c5 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5d01d65 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8c45360 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4c8ed46 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe52213f8 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeaf30af6 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed9f1fa1 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc2ce330 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x3d2b8b0a fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0383c413 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05dcc475 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x072d3b3a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0effc8a0 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16e18af2 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1803d793 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1dd1f167 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22a96cdb iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x247d1ff8 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x264205be iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c649985 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f596f66 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bbc9c61 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bc09ad1 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3df2c366 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42ce4309 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bbd6da1 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x518c9407 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x599f8c01 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59d115f2 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f54f95f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f1811df iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f8d1c1c __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82ab4a28 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82fcb691 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a9195e3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8da8e46c iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f85b451 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91d77f74 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a38592b iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ba017ff iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d00ed70 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa465eeb6 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa55ad07f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb11698bc iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb41d7634 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb518ace4 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb636360 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0e2aec8 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc222198b iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd09bc417 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd44dba4b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9e44481 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd0da23e iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2d8bd88 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe667042e iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2e44b66 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf623633c iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2920ce02 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7b07ce72 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb0f87f7f sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xebc3b02a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x2a2c3b75 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x04b3d51d srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2c96b198 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x463764c3 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcc789591 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe30cbce5 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf1c6c62d srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0de15591 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x19c09ffa ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2c7beafe ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2ffd415c ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x561407ee ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5e940834 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6fe2b2fd ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x73a31e3b ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74286f62 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x755a3834 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x775705ac ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7d6cc316 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x95b72aa5 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x972d1330 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd31b44dc ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd3898348 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdfedd886 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe144ec4a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe66916f6 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe8936b01 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xace9d582 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xae7db274 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0dfe503c siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1d1c38ab __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x36c92396 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x406e2e51 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xada3974f siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc65dea38 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b308ec2 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2282ec73 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e5c1d5c slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x33e8f428 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x39ab972d __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x428406f7 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x45eb897d slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x59465155 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x640517ed slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67ea34a3 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x691c82da slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x89ab90b4 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x959d93f3 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x981d2689 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x990a6544 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb4b2a929 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb5f008a6 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb80b840c slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd054f888 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb3d894d slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdd7233f5 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe41d6646 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec737488 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf33c2231 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf46c3b83 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfd147a0e slim_device_report_present +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xc47812e2 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0a28a408 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2eb9248a apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x36ac739b aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xaaf756b3 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x2027e82d llcc_slice_getd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x62ff6e92 llcc_slice_putd +EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xdffee709 llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x42f47788 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x531a40cc qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xcb7519f6 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6d7f3dd2 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xca667cdb __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf0cc4e36 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x0dde7fb4 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6c184db7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x94ec5312 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa86fb841 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc57f5ee6 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd89c28a1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xed25f74e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x17919c75 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x17de3317 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1be0c697 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x702c02e4 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x77de164d dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x82c27c4b dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdabe295a dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdadc50f6 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf5e1d63e dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2045e592 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x691aca89 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9efcea50 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x043db9be spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1066165e spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x12f38b00 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e358768 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4366a789 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4fdc651b spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x573d85a9 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x602edf66 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65923a5f spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7da492f4 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8084fed5 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x962ab3b3 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcc47d04f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd75c93ab spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8c2ea4d spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe60a46f8 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeef90c1d spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5e5d9f8 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x219b9e0f ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x113b1cdc anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x35bb50f3 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3bb11fbc anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x43a41789 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x452db936 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x57835c58 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7b00e4a5 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8bfd3800 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8f575bed anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x946101fb anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9b68b044 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbef9d5e3 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcf88f4c2 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x0e8d5403 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x27b30a77 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8afc7f26 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8e22dbe9 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x03f4d670 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x058ef7c1 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2234c5b8 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x256688d1 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4ad53019 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4fd4e883 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x79e3c3f3 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9054c3f7 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9d23230b gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc73c77a4 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb83c5bc gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdd4786ad gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf8b53656 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x047e47ca gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2627ec61 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3a648ad8 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x474415f0 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x611da48d gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6212b063 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x630f10df gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x631460b0 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6f7e6a17 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x984a2b20 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa5ee4eac gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa5f53ec3 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa6f87f3 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4924d63a gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xf48d6caa gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x92be3b32 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xbb6fc9e3 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4fb502a6 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xbc2a7598 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xec5679f6 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0c142671 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x218ce143 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x247d215c amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2b312bc8 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x33dc4898 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x36b26e25 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5688cb32 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x57bd2fb4 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5a19ada0 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x645f30a9 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x719c7cdd amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x817573b2 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x891bf6a2 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x96aa39bb codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcb9e280a amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0dfbe46 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe55f1a87 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe716b5a2 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf0b9cb28 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf1997592 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf423917b amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3aebf639 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4cac348e target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5643d492 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa8c1188f target_queue_submission +EXPORT_SYMBOL_GPL drivers/tee/tee 0x015313e5 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x09a8f6e0 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x24fcd624 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2638cdcd tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2c04216e tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x33ad24ec tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3fd0cec0 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x444b19b7 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4d698016 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7e500135 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85194451 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x94cbdfb0 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x96618467 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x980e6254 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa20a74ae tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb082286b tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc2eeea34 tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd0b2ec94 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd475bc2b tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd84ab07e tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd9e3dde0 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdbff07ce tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe2b05827 tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf986bf65 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfc0b7101 tee_device_register +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01c84173 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x03af15f2 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x057920be tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10ba12d3 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1bf4d847 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1f7cb416 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24f18ad0 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2cdb0736 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d695bbf tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67920882 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x68abbcbb tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7895016c tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x824ae9b1 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8450ee05 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b5039bc tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa957877b tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0aa6733 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb61edb5d tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe1b2438 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcce28147 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd3352ad9 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1235e23 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf97f24df tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfe2e1e00 tb_ring_start +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3d703b5d __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7025692d __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7b7f7ce8 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9d04ef53 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x24c78d8a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6c19d3c5 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x157a47bd cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x20b2d8d0 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x433651da cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4608d9b5 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x77fc3bf1 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x90a96f31 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa8cf7ba1 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc832feec cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf372ee21 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9ee030a0 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa2c7e212 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa3c51039 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xcd6e3fa0 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0b024548 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2e142c08 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5db32fd0 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x69d091ec imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6fefd7a2 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd2bb3b7e imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x53b941e8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5e656020 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6221f1d3 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8e2b4486 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8e845522 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb6a35287 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0da9ff4b u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1d5a6dd1 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x301d2acd u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x342a9b48 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x59d98afe g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x680532e5 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb5619d2d u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc0f03a3e u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe52e73f4 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfe60b975 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12feb2d5 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x13d48b20 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x181e2191 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2520c5b7 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x378b5cb3 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3eac96e1 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4090cb2b gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4ef744da gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x766f4bb5 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76e31192 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x80672891 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1c34a2e gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb446556b gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc29a4007 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc8977d3 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf725faf2 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1434b6e9 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x31755912 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x976be29f gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xff5071e4 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x58b36070 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x84062a5b ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0eab7b5b fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1bb228aa fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x31580cbe fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x322e002a fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x36cebd3c fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x46a84682 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x540ce296 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x78a9fe95 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x80b8458c fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x838930b1 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8630e71c fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9690c588 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5da92d6 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd21b73dc fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd48ae885 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdb291c9f fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5a9b210 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b25f399 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26f1dced rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x320ec223 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3b40d0c1 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x427eed12 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5fcffd77 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6604320e rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x69051e53 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f9f02f9 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9008986b rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafbba19b rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbe6ba502 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcda8761c rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xef6bb5d8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa5efe22 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x054aa94e usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x07723697 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bc29880 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c5656be unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17b01903 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b2d17ec usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x20b7447c usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b1ac913 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2cf04b93 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x375d0f10 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x409ef7d9 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a1f1ac9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54868f68 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c9efbb6 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78db4cd0 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a053313 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80fa71a2 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85553bdd config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a589c8c usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a68dfea usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8bc66b27 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x909a1c55 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9755fd20 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x982cb36d alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9adf1912 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8edcfb1 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9c01a9a usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb845db15 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8378c6e usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfdc5551d usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe283a49 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe7f0432 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1656d7f3 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x17750166 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x239d1c95 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x68182747 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8ad9b0a5 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9cf7fa8c empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb5185b12 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xeaf189f2 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfa9d5340 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x95fd4a3b renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x050b4661 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x940ddb65 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x10cbae7e usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x42936f27 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4c7c46c9 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60a1cbf2 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x64f954eb usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x83801eb7 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa48caf78 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xafca36d9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc4334a3e usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x815f420a am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x15d8a8a9 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x0e26403b usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x048adb39 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x240c4db0 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30d366e2 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x468d0de0 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4786bf62 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56f23ac7 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64acc856 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66a4e30b usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6ade3305 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7354217e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x852064f2 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99028168 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6dc791b usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc41c8963 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc88671ed usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5ec5197 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda94e6ba usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd667feb usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1f1fdea usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe22f06f6 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x155873e3 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa6d71479 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x5daf7793 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x4e105e34 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05543c45 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05ec0757 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07983a5a typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10a47895 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11139095 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1308ec66 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x14198fd9 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18f4e3c8 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1aded802 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b45da33 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1e728ce2 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22e40ff9 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x295a538b typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bbdd5f5 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c872e67 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2cccef3d typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ce9f31c typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x490f182d typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4eb16611 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53354b57 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aaf1057 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c8914e9 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5cc12382 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62426026 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62f7d3db typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63bace8a typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69604d42 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a951d1a typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bb3fa92 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c37b5ec typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c47637a typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6cd1c49c typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d71a3d7 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dffeaaf typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f0b99f5 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7160a59b typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77e03d11 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a89f16d typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x811942af typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b97fa5a typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ed046e9 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x958fa313 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e819bff typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa09a8afb typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6979642 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaab95bd2 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaf37bbda typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5954f57 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb8a157b2 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc10ecbbb typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1e6a8e1 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc6403eef typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc895a43f typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd009d797 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3d71e9b typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe45bf879 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6b5be72 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebcfeaab typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0deea0e typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb7bf4ca typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x204d3197 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4522e303 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x75d47338 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8c8896c7 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8cb2dca9 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa997408d ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbb6a72e1 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbe92e13c ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf5e26b11 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1ae2d5e8 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d812cfb usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ff2a69f usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x422b080e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4dc0ace5 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5dcd4bab usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x647a4463 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x666e6536 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6ebdc64b dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x73cfb801 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7ac8a3ca usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc74b4eb2 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe6b18d41 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0c95b33c _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x20401651 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2ac5b910 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x48ae97ad __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x622439fd __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x94357c5d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x94e047d3 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc9abf3af vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xccc49356 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x74c255a9 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x03787b15 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x121e5895 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x15b0feb5 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x18b148a8 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x40e4c31b vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57021d5a vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5a39dbbc vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x62ceccf1 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6c8f4e8a vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a767c0d vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d858e09 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85811d2e vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8bab338f vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa1bdb385 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbee7b562 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcceaf3e9 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf2592bce vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfd8ed69a vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x390bfea4 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7c4ec42c vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x99e218ad __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xce9e688a vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x048482e1 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1599da8a vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5bc78321 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6b23fa58 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e9d8032 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x93951be5 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9a0b1f88 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9dd65dc5 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa6c36d8c vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb995f45f vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcfd53580 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xda619913 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3192535 vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe6afee05 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7d4f155 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x8b89fb06 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xa037c78f vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0151a502 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x041729c2 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16e9426a vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18c805a2 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18cefb7f vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x258fbe3b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25c8d1a3 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2969e335 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d127a60 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e3a0dd8 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32d62cb1 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38eac088 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d3dc709 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3dc1f651 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e16f294 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ef67f9a vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x606dadd9 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ad0405e vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7422f396 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76ea0dc9 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f2ddba2 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8314dc85 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8be73188 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cd36fb6 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9880afb0 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ddef8f6 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0a5e85f vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadf00f3c vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb495967a vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9a1dd96 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd6b75ee vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4d86e65 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd6fbb4c vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd15d700f vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb3c4779 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5880816 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6bb4214 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf869fc96 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf943a9a1 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfcd42234 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x104490aa ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5f66a9df ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbc2ba5ba ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc32fcb14 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe8e688fe ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf441b92e ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf817c6d5 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x15ba1ada fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x4e2a1e47 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7b85090e fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4a50f33d omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6508fa20 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x69caaf01 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd64a1cad omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3573e7e8 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x456244e4 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0529594c w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2444dbe0 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5b71cb75 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6261d07c w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x662322e5 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4abf8cf w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6950342 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbc020c6c w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd1cec6c w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc7dcae0d w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc9b8c25 w1_touch_bit +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x91b037d4 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa0897aaa dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbb984871 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x07b30688 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1b6c4e97 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x81ddd0d9 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaaaeeba6 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc16e63ed nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd1022b4b lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe0404957 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0283fd3a alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0330c84e nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x074c737e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08eb6686 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b2384b0 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d31efd8 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11f98b92 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x131e607c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15a12d99 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f4398d nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e6f9f0a nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25022dee nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25632935 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26dae914 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x298111d6 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29c7e287 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2aa4e4b2 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ada1ba0 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d38cac9 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35279be1 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36ebd2cb nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x387b0560 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39ae7c89 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3baed44a nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x440b6345 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x463e7751 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c14177e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d1d396f nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ed225d5 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5213f509 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x539eff1e nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x546cd267 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dd2b749 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62800b58 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x699a813a nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a366f9e nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a3d4bec nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c570939 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c721519 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f67ffe4 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70f09ca0 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71ec07cf nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7360433b nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75526cfc nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x765fe9b5 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769d6511 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76abcd5c nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76fdf467 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x772337b9 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77c9aff3 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78678cb0 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b02c38a nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b3ed065 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ee7ad8e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80440a74 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84026063 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x857fcd25 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87df17d5 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a6a0929 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c0a64fd nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c0f5e17 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c3179b6 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dd5bf85 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90bba5f4 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90e54b08 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x923864ae nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93ae16ea nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x955ee426 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96a2070a nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bbfb3f4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd9a133 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9da8ce7e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e10ba33 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4202a86 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa636fa68 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa686c1a3 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6ad0645 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa81c3360 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa81f38f5 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9520e95 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9977bbb nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada5388c nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae658247 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2ff54dc nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb43f1e85 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb47d5d75 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb50358b9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb80dda39 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8949552 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8e820b5 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb99a1d73 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcb9ba92 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd1a2a2c __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc22552fa nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36d98ba nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5a42a13 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77b0f33 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7e02a3f nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcac51ef1 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb764611 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbd4a71b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf5a8bd nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc3628d3 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce772bc7 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcef3c022 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6dff38 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd08d6bc8 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1fa34be nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd59b1df4 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6752e2e nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb341580 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc6337a6 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd8ca71d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc88c49 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfda9dbd nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0f36ddb nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe116660d nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe40a9016 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe73f91b7 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecbf0b17 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedd94d9e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf01ce2ee nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0891262 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1058a13 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1a06a0f nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf380a856 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5e88867 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf677982c nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7dea8ec nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa682f1c nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfacc9ea8 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc71b8cc nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd60bd45 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe5a4510 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa0c09c nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xaeba690f nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02e2c24c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077d688b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x082ab174 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x084069b3 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bdf0a02 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c65c8ab nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12eb44ef nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cd42efa nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208647e0 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24bfd47a __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2665c737 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283aa0b9 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x299025ad pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b85f7c3 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eb33eec nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x316e9457 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32438f02 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x359f110c nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35cb91bc nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38361c5c pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d208c50 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ffe7b9d pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40d7991c nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43c31bd7 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x454adfc1 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x482707d5 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50084883 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e54f3c8 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67226436 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a183064 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e4038e2 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e405b8e __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76866853 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bd13583 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ab7f41 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83278fde __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8840a23e nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a013218 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a4e9563 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bc1bb9e pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d5323ad pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96abe01d __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9747b179 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x975f7745 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a66ae05 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa39edbf7 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa50a3cd9 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac448e00 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf9f7552 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafb425b8 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0c8ff8a pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2352b22 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb30e3d73 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9ba0c7f nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb29362a nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc0bcab8 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc20d3a60 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc358bfb6 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc40f1235 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6ef1d96 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca28bbdd nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc7e24ed pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce502c3c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1d17eda pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfa01bba pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe29e22e8 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe303191f pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5d1b60c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8fc5fcc pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed1d11c4 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede19ff2 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef9ef48b pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf29ffb0f pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4a801f2 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf571a2dc pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5f28cb3 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7639110 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7fd9a85 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb339171 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x22f1e7f4 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4371d10d locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7d3f192e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1ca65cd3 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7cb1d043 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7db58590 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7e938bdc nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xe54b2079 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x35ce350c o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5f35b576 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x611d4214 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb161ea0e o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd003f63f o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd5e34080 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfdbd8010 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x097b31a9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3709c377 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4f5c47e7 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd32281c5 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd3c0e484 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf4a3f54b dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2979291d ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3f37d209 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd89fccc0 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xede650ec ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0x955ee96c crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3cd8026d notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf378fa8a notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8585313d lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfa00318c lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x3059c495 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x8d0e9454 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x90cb2d46 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xbed34626 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xcf514959 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xf92f6c57 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x0cc9bed1 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x43955cb4 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6e02549b mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x9e0f3643 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xb1f27a8f mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xfc2c1998 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x6301bb09 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xbfe3e0e8 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x03894c26 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf24700cd p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xce558ba6 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0651bc8a l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x292f67be l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x39d80f1d l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4700f712 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x701a587a l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80d69576 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8a8880e4 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9ea9ac4f l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf964f679 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x1e33c7b9 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23c0a6a7 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d11952c br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x41e43daf br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x43bae4c9 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45370348 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d1013c4 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ec9421f br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x508b1186 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61fe06f4 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x68ffa99f br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6bc86503 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6fbb8692 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x71d93f1e br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x73d297ca br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x89df6a06 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x90ad29cf br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb92dd17e nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc36fe831 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd12292a1 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6604d8e br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd9fdc3a5 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc84c5e5 br_get_ageing_time +EXPORT_SYMBOL_GPL net/core/failover 0x75f50b78 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x8d460a3d failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9791f59e failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x15eb5a20 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27b8d9dc dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b525182 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e8f2dca dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fc4bfc8 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30358661 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33afe03b dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36ea47b3 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dd243fe dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x447e2c5d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47b05a86 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5655a2a2 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x646aa6be dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67f030a1 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7503fec1 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x874566b8 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8afb3cd3 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e78d2af dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x916a49fb dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94001fa8 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x963944ca dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa001fe55 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0d024c5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa46c0f03 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6b15f0d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae8ab8de dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf04eb69 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xce7ac0cc dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd34e02f8 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xde8d8bde dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4b156f0 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4f837f9 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3a20edaa dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6c9185f8 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7e23434b dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa4b656d7 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa7924a67 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe768d3a9 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01a8020c dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x023ac893 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x08c05bb1 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x175bd2b6 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e52cc19 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x289d3997 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3023ddd5 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38fa65c4 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c35d5b8 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ab65e1b dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x578f4880 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x59a62dd9 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c7c1e27 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x612135ca dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7097880c dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74e6646f dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76a8ec77 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7c9272f1 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e17b6ee dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e867166 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82fd81ee dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e43f855 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x940855df dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa240cc02 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xade4c16a dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc0761399 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd33df832 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea8bc3cb dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeba0f19d dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xecace1e4 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xef8f874c dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf20ceb3a dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf75b8e2c dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd29b7ac dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7bf34d6c ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9fe6fcbe ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf2356f8a ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf91f2ffe ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x14801c28 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6c4cae6a ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x918735e5 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa159e2e4 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xcea848ac esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x74511d7f gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x832bf73b gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0fe71819 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x15de176e inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3af5d0ca inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44fe7249 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f18b3d7 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x66383e63 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x71f92047 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdd14f968 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe1d9432d inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb3cb47df gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02f4f97c ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b6da9d2 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x428c6f62 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x467133d6 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c90aa91 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x696c59a6 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d5d7b38 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7215809d ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7bff4033 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x843e1c76 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x89b2d2e3 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a1a2d06 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94b6fefb ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc2d43bb1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd075cf07 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf444d3df ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd59c17f ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xbe6ee89f arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x07ef2b41 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x08cfc3ae nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x27842de4 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x60dd4ace nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x01679c4c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x15118c15 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x46eade7f nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x730c2ba0 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa65fc155 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa6dffce0 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf8f244d7 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x1b484275 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x07ba7c40 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3e95ec2f nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa5a14f12 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x428f6860 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe9d33e49 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x51a8fa3e tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa13a9e1a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd2db8efc tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf016f480 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf41dfa34 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x37bfe0d1 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3fa4b92f setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7b755144 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa1aa66c2 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb989ff71 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbfd8c0c4 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf51e0480 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfe15d519 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3935fe39 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7db8753b esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8543a8a4 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x76ebe60d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa26912fa ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcca8b2a3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x04bf36b3 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x5af540aa udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x97d9275c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2fd17fbe nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x998b20ae nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa465304c nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xbe3c0db9 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1208cedb nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x172d9585 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x50be79ed nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5a3c9cfc nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6c89bf0a nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbaa01800 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf8816fbc nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x9c2fe31c nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4c7913a9 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x59e6b6b3 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfc5e9bc2 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x252e0684 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa0fac832 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d14048f l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15e67b4c l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x17036e9c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ad9d05b l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x214908c0 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3fe6a084 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b7218ef l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60685754 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f372288 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f9f86a2 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80357548 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2971fd8 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbaad3df2 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdcd5841 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb6ac3d2 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd669eac0 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe27e3dc7 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7a2a1d0 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe833b5a8 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf18d407e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7baff88 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xa7bb475c l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc7682e03 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0bc7749c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b4e10a7 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4abca0fe ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x590b30ed ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b8f1974 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77e07ed6 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c757ee2 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x823bcc6d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82453066 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84741707 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f047630 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f87fc49 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3f78991 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa2d3319 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaded1f81 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe0fc044 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf34bafd wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf99636b ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4d03a50 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfc9e2242 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x02994bc4 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4c626a4b mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6eac935f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7a25a82f mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd2095aee mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c05b2ea ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1e753b72 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x20c5f7d8 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a2ace9c ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b9e9bb0 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47339744 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f8115a7 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x986cec56 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa956bea9 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7973292 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb8063821 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbfc912c3 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc26d4567 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc8e20a1b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdaeb05a8 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe073ca26 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec6e256d ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed2f5044 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf105a560 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0de27552 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa1da3a7b ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb753f2a0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd08a0e06 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x209ae6aa nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x34dd6f9c nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x377e80ba nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7de17697 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7f73738f nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04524641 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x060ba551 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d5dfd9b nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e2cc71a __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x142a57d9 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d76b9a5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x223aeee8 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25e027e3 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29329236 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c312800 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e8b5103 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31ed6548 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34fed9d2 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39c550ef nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b655a31 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cc83fbb nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f28677d nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40433461 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f78de8 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x472b4170 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x493cb37b nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a6aa956 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4daec1c7 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55cdfe27 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ca9ea60 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ffd59c4 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61139ce0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68d70181 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a5049e3 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c0b672c nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dcc19cb nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f284ed2 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x706025b4 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7616e9e4 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x770d3023 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ad175be nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c9b644f nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cdb1f5d nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ef389ea nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b979448 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x962498eb nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96c8f3a1 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ff61625 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0c1af48 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa29e3527 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa39a73b0 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa595d88e nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0e3dc0 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa3d5eee nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab7a181d nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad4a7339 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb18b6c1b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2be452f nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb33df3fa nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5f04c5c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb622a567 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6ac72c1 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7a039bc nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba84a4ec nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb261442 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbeb84769 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf3917f9 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc06dc7cc nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc21247d1 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc465057c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc514b4cf __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca0a3d36 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf3e7899 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd55f52f1 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc9c1ae8 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5c04796 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8829358 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8f91eae nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea88be8f nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaa048cb nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec25abc8 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf033e313 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf406c829 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4d58baa __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc225e56 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf2c76494 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x714a36f1 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc3317b42 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3a8ec664 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3fece701 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x414f19b4 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66468010 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7a16c97c nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9ed3ab8c set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xba1e66ac nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca693268 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdee45d36 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xffb2c5cd nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x66eb3e70 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x19720afc nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x21e6a28a nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4c42a5bf nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x83544045 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2e4a29d4 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7f0449ab ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x89c67a56 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8e9b9666 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x92116dba ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1a5dfa4 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd3734336 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xbb538ff2 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf8e0a7bc nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2bc35014 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa2af89e8 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe8c98685 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x124169a7 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1256f77a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2e0fbb18 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x35e97552 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44fef501 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x50cb1361 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x89acc792 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8aed05f1 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x92f61531 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9426848f nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9e293ec2 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf50d023 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc1f34476 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6146624 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd23e14e4 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe0fdb80e nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xea1654a6 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0606e7de nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c43f190 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x37ca6e1b nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x476d7638 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68fbf3ab nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x789a4eb8 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x98ebc4ad nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1f237ec nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2e33cba nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa7b12a4c nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbf160ad3 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcaee1b03 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7143cfa nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7d8ace2 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeee53561 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc04d48c nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c697371 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0cb3288f synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x117d6568 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x21d78e55 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2cf6891c nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x539b566f nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb30f04f5 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc62db86 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd0b22dcc ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe1ca62cd synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xecba6eff synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b53caea nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1fa059ce nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25e15a94 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2785f7f4 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30199146 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d9824c8 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4040ef29 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43946dde __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44306db0 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aea0694 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53fd5c38 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x601f97b4 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7605470d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x786da435 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b8d2539 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x884971e8 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x910cbb7a nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92412e4d nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95d5cc68 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97a56f00 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97ad4329 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98aa3565 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f45ccab nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa25015e1 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaaeb005b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf8d6d72 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb18b3a44 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7e6c4cf nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbceff24d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbef907ab nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1586b01 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd53af4a3 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0ba1aaa nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe49391f9 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef3dde99 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1489969 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7738411 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x048062cf nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x23091efe nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x28d188d0 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bf88c4c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7066051f nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x73fa9257 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xea37a00f nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5c880520 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x717fb605 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb81c03a3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4c086365 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x552b5d2a nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x649bc982 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7518871b nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x90f32342 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x913dc8a2 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7d8cf794 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x85719bc9 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8b35949d nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19f6eb49 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d9b7b7d xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23398d5e xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2519b0bc xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x35a4175f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c5c5aeb xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41257af6 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e0e48df xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x533d8d55 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x59209614 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5980efd1 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5bf4dc02 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79ced367 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x941f4cae xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94425dd3 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9ad7a159 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe243dc46 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xbd44be28 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf5440cbe xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0e41303a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5e50971f nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x95237715 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x13a909b9 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x40460bd6 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x920c9b1f nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc5d8eb89 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xd2e42aa3 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0643b646 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6061cdb7 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8c857550 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb492cdac ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb66c88e3 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca277be1 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x8cd14b7d psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xc7687f8c psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xe7c8d5d5 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xeaa0d0f6 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5ac4e431 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x825f62b1 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x91c16350 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x044b2fa1 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x09f13213 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x0b59c0eb rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x17a8e817 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x1e09d85e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2d970116 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x319fc4a9 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x37dd35e4 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x38596c10 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3f3b3ff7 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x428d05e7 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4ccb5537 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x57735d8d rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x6366356f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x665606ed rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x6a55a8a3 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x703897f4 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7abed132 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7d6ccf1f rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x83227077 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x871f0d91 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb6b919ad rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc584765e rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc5f356e0 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xd1d0a300 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xec41853c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xfba0571d rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xfeca2188 rds_message_put +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x821a7118 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x8c0b83b6 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xd765a904 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x06536c19 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x651886ff sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa31c1647 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd358b94e sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x012d2f64 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x1637e73a smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x2064dcca smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4e7c623a smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x81c0165b smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xa96d7e09 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xbdc18d69 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xbf6456bf smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc12762e3 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xec8db953 smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x16c0c155 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6997e2a4 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc4fd7fa9 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xce9716be gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00c482e1 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x021f738f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x034805fb rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c65e88 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e8a66f xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05357f19 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b82205 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e58c93 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0642feea write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x069ed192 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f70445 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08911522 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a115186 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b7a73a6 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf96612 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c7cd180 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd6fda1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea3fab9 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f386f25 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14d9177d svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f0e119 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15163514 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151fbcef xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155c7278 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15bc80f3 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x170dd610 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1885e121 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ccf409 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19eff240 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b538239 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b84824a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfc441c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d3e8e29 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f14b1bd rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2047d61b rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2130b890 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21955957 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22339364 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2297cb57 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24756cf5 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26cf8a06 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272a25b9 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c96841 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c9a3be read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285bb54a rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x293be3d3 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac8576c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9a6541 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34792133 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348982a8 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3577ea52 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36956f73 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c3f375 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b70a734 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd4d6b1 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4095ec0b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d60de2 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a432f7 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42259dd8 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x484c961c rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4946ab78 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x496c7642 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498eeb63 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ad1696 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b8c6009 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce87134 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f2468c3 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x511f9914 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51511a93 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x540c68a3 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54558380 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55054355 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x564086da xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x571cacc2 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5915dc34 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5990498a rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b3d08de xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba2ec03 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d27ae67 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d82c64 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x626a65d2 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6278a9e6 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x627f2583 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64729b4d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64eea0d8 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6665cc84 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66c22607 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67392775 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e45aa6 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x680309d1 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69b5a6b0 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca9b204 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eb00ec2 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7450719f cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ab5182 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7590d058 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77798691 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f39b61 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7872038e cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790f36a9 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793046a5 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79cc641b xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3b2715 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7adc77eb gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b95ca76 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bdefc50 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cbd230c rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd0e436 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d061f3a rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2a105a xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ed5c3c9 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8024a67f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x804e25d9 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8098b23b svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8179a778 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822bdb66 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82cafe4f svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86342535 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87beadc0 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885cce21 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8896d549 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892ab540 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a8bcd2 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b22e0c9 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b602be9 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf809de rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c22d360 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb84411 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb6e1a7 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x902ccb76 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9266c7a9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926d522b svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92abce51 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93143527 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93c18ca8 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9671783f xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x968f51d8 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c12fd7 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x993c5c5e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9a6883 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bb062aa rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bb93b6a xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c2bcbdc rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c3447b1 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c66eb3f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca3a416 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccc6ce7 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc971fc rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e8d98a0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ecffd55 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f53dcea rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa28bc359 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39258db svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6a06876 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa820b288 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8f7e42c rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa95edbe6 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa973653d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a0d7c2 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba026c2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac12edb1 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac994e4c svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec01127 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf39834a svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0641252 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb077fc52 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0c1d2e4 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0d4fe76 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1fb15b9 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2b5b6cd rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4198e12 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb476e34e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb47cb9a1 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb58ee3db xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e724bb xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb797c3be cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a91628 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba872cc9 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbfeb3c8 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda3a121 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf2a85b0 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1a09bf5 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e2a86a xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ea0368 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc20ed0eb svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2205662 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4c6ce32 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc59d2d83 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d98697 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6252c9d xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a488b7 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc74ecfb6 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd02b7da svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcffc0f60 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd02776b0 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd24e683a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35e435b rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35e9df6 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd455e1e9 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd778f280 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7dc66ff xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd810cf74 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d3f2c9 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1a99e0 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba36c25 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde7ce748 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec89c43 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0881752 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25f878f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe268580c xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29b9e51 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2fa3ec0 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a76a07 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe493144a xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ceaf43 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f233eb xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ff1fd6 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9c6770 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecd8e209 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd9584d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb66f46 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc2f14e rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc8b92c xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46a48dd xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6254d98 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf72770d2 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf749086b rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ea3a37 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf94980f9 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa2a40d4 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd86a4ac rpc_put_sb_net +EXPORT_SYMBOL_GPL net/tls/tls 0x0bac2082 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x7feea939 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xbbfd4ac3 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xd5ca8a99 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x027f7485 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x04b6cb47 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cf3088a virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10815cd6 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b4d75c0 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3539d110 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f00189c virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x441cafb1 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f68fdee virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50b0dab0 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5429dba5 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a85d1cd virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e063240 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68bae10b virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79efa67d virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a760501 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ab3861b virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e8d6a99 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a5681cc virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6910abf virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab890d6f virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaffd09c0 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf8ba446 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4886358 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc8571df virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5b3c809 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd939dfd8 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2d777ea virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6fbd0a1 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe84dce6e virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9f460cf virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebae6731 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2f06800 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe60d7c3 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x131bd3eb vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b0aa4bb vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x20187bd6 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38ab1f1c vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39deface vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a31c0f2 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ad97e4f vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e022273 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x43214eb1 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5ee7d720 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5faaf790 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x649c0998 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x86231681 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba593fe0 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc639353e vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd348b1f4 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5d836c1 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd9745278 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda2a384c vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe8815c0e vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa991113 vsock_assign_transport +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0b9fc4a9 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1058188d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x18da7a63 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2dbb26fc cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x40c2e411 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6702c8cb cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6fc81e79 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7dc5e342 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c16dc4a cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91839064 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x98cd9b58 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9dbd1ea9 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcdcb7710 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd5be3b29 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd762b04a cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd8e78b68 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4fb704e6 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x87f6079e ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8ec7f105 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf09c95c2 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x26638872 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x87c6a4aa snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x009ff63c amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x10425612 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4aafc588 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5aca24b3 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x64ef8c63 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9277de20 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa16087f4 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa43701da amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xab6793aa amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd60e956d amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4357b29 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa1c9c47 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb9cdf70 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0631adf3 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0825d659 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b481e8d snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c62ffc5 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ee1bbbb snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12747694 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1397d064 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x196f028b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c33e11f snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20d83888 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x246304c2 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2698151c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x300ed07b snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30280c4e snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33d50b50 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34805dbc snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35947393 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40d14084 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4431798c snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47c2db56 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52baf506 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x538c5afb snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53c97d08 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5dc7914e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea9a033 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f3b4e51 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x603ef202 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x657e219e snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66a996d4 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fdab47f snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x717df8e1 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71f1a709 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x737446ab snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75532ccf snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x775fe44e snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f561e55 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81194470 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83f0f54b snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fa603c5 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x907d8f1b snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x924a3840 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97033975 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a51288b snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c16b84c snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e885657 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1fcad27 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa49c9824 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7601df2 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb012c804 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb043bc93 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1475542 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2089fbd snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4cba075 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9bcf636 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc233bf3 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe17cdb7 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7138a3 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfc33539 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc056351e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0bf9061 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc14d99e7 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc39093ed snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc453a64d snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc57ad37f hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6865734 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbb9c396 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd256de05 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd26355e9 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4ed0e07 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5ef3203 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7854f5b snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc60b8f1 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe208b8f6 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77214b1 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec81f7ac snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecba9b69 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0eb7248 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5c7c7f8 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9a10456 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb2db968 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb548397 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfecc7d6c _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff997f7e snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e6708e3 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x576bb0f8 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x060adfb4 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3ccda6fc snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9f5fd226 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdb0511bd snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdef3a004 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xecdd376e snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0074d2bb azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02d3fa82 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0384af88 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04dabacb snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07be8ee5 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09375275 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10dc1dc5 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x117d87bf snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1599cdcc snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16741b48 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17b055e9 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1902f0b3 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19e1c2cd snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aef5914 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b4d078e snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2553415d snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2626809a snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26350210 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28ab5a1f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x295f6b4c snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d06d2f8 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d5f8c80 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d65950e azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f9ed6a7 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32caa456 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33ab3745 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34d9cf2e azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x351b47f6 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36605a14 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x377dc458 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a97bd52 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c979402 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f4419ed snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43930382 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x457148b2 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x486bf287 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4967d9e3 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4acee84a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b5f7d12 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bb2ad97 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e6e4a8d snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e83f949 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ff7d520 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x501c68b8 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50dbd7ff snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50fd983f snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5190d0c0 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534c3d49 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54642faf snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54e69f9a snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x576240cf snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x576bf454 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58f1867d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x592d4538 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a2ddb75 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a7e5be5 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b4f5d4c snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eafaf4e snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f952050 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6277562c snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64a519d3 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64ac6aa8 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68d1c78a is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a690367 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e7653ef snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fa327dc snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fdc6c4d snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x723bacc8 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74db2e22 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ebd8711 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80ba4e87 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80d53e10 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86a2d329 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86a57914 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x888b6a95 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89464120 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a61c32d snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b8f3164 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90dff4a7 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92a8ad98 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92bc261e snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x945bc19b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96f14a54 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9735b19a snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c15a09 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e741fea snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fa3773f snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa25c8bec snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3bf8e53 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6ed9e1c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9bfab16 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab2d560f snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaefaba95 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0f9959e snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb606102f azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8ff5aeb snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98288c4 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd0499b2 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd578079 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe006b0c snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc622fb4f snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc69ff281 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7f568c7 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc97692ed azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9c015c7 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb24b171 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbd4c5f2 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcea28aa8 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd05af2d8 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1fb6ca2 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd68da63f snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd0c6e86 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd4be792 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe255d5f2 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3ba0660 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe71af65b snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe794afe4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7d47044 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7e84ec5 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec7b04cb snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeee956fc snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf45d7d59 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8fc20e6 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa63ee0d __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x049c740e snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13348090 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13f661a3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1cffa3d2 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x220766f9 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e99d6cd snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4898d7fb snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x592cd17f snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5da9bc92 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x606c2760 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x822c1cf7 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9021800f snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9d608aef snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbc7cd0bd snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc2eed15b snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5fed453 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe2ab429a snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe36f57e3 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7f295ed snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeed50127 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb2f28a4 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x5afcb1c8 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xe9b9e8bc adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x04a873fe adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xb4e7c67a adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x11debd26 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1ee85d4b adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x277ea2fa adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x544b2b3c adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8653f6c6 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x89ef86e9 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9192de3a adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9346c975 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa7c91981 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcab5af17 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xb7b035cd adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x00d03a90 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0fc3612a arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1011759f arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x10ebe925 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14c20346 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20b34df2 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x22d7ebb0 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2f6ee5c1 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x31718196 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35ca9e14 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3657c10c arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x42b15165 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4972d6ab arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x52a1b4ac arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x564a50f4 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5958b4c4 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5ea08518 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6349ae31 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x65cc6ecc arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6be372be arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7328d505 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x734ed40b arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x75156286 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7c88788d arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x80d318ca arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bcd6b27 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8c04b74f arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8d9ab538 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8df75156 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x92019b0d arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x987ccf5a arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9b0b59c9 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9e16c6bc arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9e9cd75f arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa204c71a arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa29350a4 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbf5307f7 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc531c70e arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5d8d30d arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc8bd68f6 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd8602b6d arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdb0da14e arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe9ba273c arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xecc35163 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf04e9e8c arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf2e2f4e8 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf4d6bf18 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfadc3809 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfe8ac468 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xff232dea arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb5a08e73 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd00d86a7 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x009a8a62 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1d9beb9c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x24710c08 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa0c23247 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdcd63bad cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8f32396d cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdd3cc76d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfbd3ea8b cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x2e6628bb da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3d495aa5 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x6ac9e11a da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xbc449a1f da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x867c73b5 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xfe416959 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x1396fc5d max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x19337b4e max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x2b9ca9c5 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x42d2099f max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x755d0890 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd1f04ff8 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x0bbbb995 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x386bccfc mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x612eafef mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfcd10107 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x87f48f63 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1e443590 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x4702770b pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf110fcfd pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xf6a050d5 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xfc7f9f82 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xbf3c8ac2 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xfc3eaf31 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x13316cec pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x444e316d pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6e6259b4 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdb89b23e pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x13aab8b3 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6f860b5a pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xce9c2f42 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdce767fc pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x554467a3 rt5514_spi_burst_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x008abfd6 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x51d6e811 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x52e8725d rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5af43897 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9c9f247d rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbed7ba23 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x2b98f679 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb85552c2 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x706e512a rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xba128212 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1f8fcb6d rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x448e0033 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6ac073f1 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x77c62f1d rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7826ce8b rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7a477737 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8a24de70 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91079df2 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9d1cf25a rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd37bdb06 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd695d2ef rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf4b8706e rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2085d2aa sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x490f22f9 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x68b33025 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc6797b51 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xca2670cd sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x8626606c devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x0d754c7e devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x205f7eb8 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7343173a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x486d91de aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe05b8e41 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7ca355b5 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x04f2838f wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3cf66b89 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x69d980a4 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8c5488fc wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa2426d6e wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1315fa29 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x172f3ca2 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x28fe6d87 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3a8912c5 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x467878ad wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x47145581 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5a434291 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c13bd60 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e569e21 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x673ac72d wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x713e1db9 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x75f9d528 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x78a6b316 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7a2c951a wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x80f51141 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x835fc21b wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x89e1d979 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x94315783 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbc167748 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc23dd44e wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc916108c wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdc941d97 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe86d4b15 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee2b54e9 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xff492adf wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5fa6df4e wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7565ccec wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x93c33557 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa52b14a7 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbf4698c7 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdeeb73b5 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe4e7dc71 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe737105e wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2696aaeb wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xac285101 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xca9eff82 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfdbcb2b5 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3a989858 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x593bb39e wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xda72b8c6 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xfd19c078 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf83c5525 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xb0fd747c audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0f7e653f asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1bc9b6c7 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1cf31b04 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f12f4c8 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x274fb90c asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28b01bb0 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c06173b asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x41a7a011 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4b56f52c asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x56ae1b1d asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6cb81fb5 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6e7e6859 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x863ad2a6 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8a56a27c asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xad3ecb1e asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbcf0b11c asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd7f908ba asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb2893e0 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf6a835dd asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfabd9520 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1579993b mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1b0e2ced mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ee2be60 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3557e991 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3ba1d461 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x45649a61 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x48e7cea1 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4aeeadd9 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x543f93b7 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x614d37df mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x68695ae5 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6956df67 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x69bc0f5f mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ba3a736 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x84058b3b mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x89907bf2 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x904c0496 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb09a9ca7 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb707f11c mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb88ae6b3 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe6521568 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe85784cc mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf1d0ed71 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf853c5a6 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xa4b9bd16 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xab87563d mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0625ce83 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x10c04fcb axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1b618779 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3d1a7312 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa01fc993 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb5f5b583 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc6b67799 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc8868bfa axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc8ae3bbc axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x14468237 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x443d22ba axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x506c837c axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6ee596ac axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xceb5716e axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xec74c294 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x13d4363d meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3184920e meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x38bfd66d meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4ca84099 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x69b026ba meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8e472707 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc0e41164 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe9c82fcf meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1917407f meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x38399300 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5994a27b meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x89fd2036 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xb2201840 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf1256446 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa2f71478 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb5177903 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xecb317c6 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x92895550 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xc36fa1f7 q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb4f98cb3 q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb820adaf q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2c1875fe asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3ba771b4 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x55dccc94 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x775445fd asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x97a2aa38 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc80ad3d7 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x8cdb1e4d asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x1066322c asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x9e63ead6 rockchip_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-idma 0x14e9ba13 idma_reg_addr_init +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xd14ae53b samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3e08921d snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5b4e74f5 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5d6f4e3a snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb1934a7d snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf28e2dd2 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x9046679e omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xbfc74a4c edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xd7607adb sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xb1aee6f4 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x17ad5e9d uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x4075a308 uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x45c59f31 uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x58565b46 uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x6e86e7bd uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x966b9d5d uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xcc9c799d uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x038e68f3 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06887ed8 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15cb228e line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x16c06088 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x27d594e3 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47376c76 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5015d0e6 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7499086f line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a481425 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa37f5f13 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcfe9c858 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd18c48c0 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdf0ba827 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef5c33c3 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf61f0a84 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xffb27299 line6_read_data +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x000a098c of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x00260004 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x0028423b extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x002b6502 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x003444dd rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067c77e iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x00685f7c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x007eda48 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0080dfc2 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x009020d1 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x00921fbd regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x00923014 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x00958f0a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00a0bb84 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x00a845df xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x00b3807e tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x00bc2944 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x00c0958f gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x00c697da pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x00c8def8 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x00d3fa9f attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00f1baae serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x00fa82f8 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x011829ed mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x011cb022 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x01255825 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x012ca406 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x01307671 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x01320f41 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x014266ad platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x014a4ea7 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x014fc8f3 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x01594abb bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x01821afd fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x0182ce0c of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x0184c0b1 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01886797 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x0192a34a sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x01a4e848 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x01b5ff5a rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x01b7f152 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x01c0614d pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d29dcd get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x01dfe18e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01eae060 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x01f616b6 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x01fc93a9 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0206f0e6 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x020dcddc stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x020df0e8 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x021eb2b9 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x02283036 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x02332bdb irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024596be is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x02505e15 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0266b2ca rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02820a0e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x0286ec75 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x028aea72 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x028da078 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x029c5353 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x02a3dc01 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x02b3eee7 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x02c73046 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x02c7d491 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x02d12fe7 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x02d8ef44 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02f1e8f3 iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x02fb8ae6 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031cb2ab sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03396363 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x03436475 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0344e59c debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x035c2af1 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x03600d52 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x0365f215 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03968413 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x03b00032 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03bd266a ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x03be78fc snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x03d810e7 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x03e70e45 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x03f79ab1 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x03fb8c4e usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x04116e2f usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x041f28e7 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x0425e942 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04439f16 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x0450d0de fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x0453ade0 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0496c4a2 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x049c000e irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x04a2a97d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04b6142f generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x04bfe358 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04caa891 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x04d07e4f clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x04d127ea ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x04e12ab7 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f39b31 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x050bf6d0 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x051cf99d max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052fa0c9 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05595ba0 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x055b78ea fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x055df465 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x057f988f gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058ba44e pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x058ebd35 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x0599ea37 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05ac8ae8 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x05b56c45 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05e3a996 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x05ee3297 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x05f2e731 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x05f4c693 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x05fde6bf pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x061913f4 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x061be0d2 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x061ea0c2 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06357580 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x06409b7f blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0678f373 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x068256a8 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0688cdc2 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x06b3aeb7 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06b5889f ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x06cb2522 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x06cbdeae fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d15198 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x06e8f5d2 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06f6cbb9 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x06fb9e09 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0708dd58 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x070d7af5 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x0712beeb tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x07181ecb phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07313393 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x07317e6a regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0732ce1a sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x073524b3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0738f4cf nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x0739b108 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0755ed9b device_move +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x0764f043 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x077726aa bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x0786845a xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x079c3109 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x07adaeb9 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07e7305d ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x07fc64b3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x080398de kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x0807c928 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0810633e sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x0811159f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0821e909 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x0848be70 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x08767a9b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x087c04db clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08828c13 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x08837e7c xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x088c5b86 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x0890a198 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x089337a9 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x089a760c serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x08ac703d led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x08acb416 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x08c261aa of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x08d7619f of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x08dc4fb0 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x08e18c64 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08fe4a3e pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x08ffdf67 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091ef521 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x091f283b usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0923959f pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x092c40e0 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x092d42ec dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x093ddebf fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x0941d043 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x095277a2 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0956d8f6 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0963cd49 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x09660372 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x096a8997 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x097266b3 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x09a46cfe devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c14bcf pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x09c23f00 musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x09d3f456 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x09d7c698 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x09deceea devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a0066cf usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x0a17b1e6 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x0a1a6973 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0a1d78e6 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x0a359b88 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x0a3ba7ae dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0a4d6256 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x0a54bf13 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x0a54d1d9 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x0a628b91 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6d4d87 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x0a6d7b9b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x0a78d627 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x0a79c93f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0a893dcd gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x0a9abf5a snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x0aa89e1a pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0aadd811 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x0ab16f26 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x0abfc04e power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x0ae0360d trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x0aef5251 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0af484ce pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x0af5f124 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0b021f5e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0fd6ce nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x0b1122dd crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0b129e28 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3487fb dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0b7c8372 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x0b8765b7 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0b93fc61 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x0b9bdef3 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ba1d771 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb31bed handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x0bc1ec1e __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x0bd33f1b sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x0bd809b0 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x0bf20e26 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa2ca7 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c00b355 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x0c1c34b9 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x0c2bd1d6 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x0c2ea252 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c38c983 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x0c3cc182 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0c46fa01 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x0c5db132 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x0c6222e9 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x0c67c416 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x0c78ff26 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x0c7de1b8 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x0c86a768 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8ab5a4 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x0c901078 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0c95e533 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0ca9ad71 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0cb67ab0 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x0cdaa10b phy_put +EXPORT_SYMBOL_GPL vmlinux 0x0ce5506a is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0ce9ece1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x0cedaba7 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x0cef8f29 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0cf60ff2 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0d0f8542 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0d13d72b devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d2170a3 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x0d29b72f synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL vmlinux 0x0d458096 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d57866a ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0d7f7c17 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d848278 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x0d8f4742 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d99ac14 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x0db24703 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x0db24d2d rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x0db487e7 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0db4a107 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dcce03a mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x0dd5087a blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x0dd762f1 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de4c200 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x0de83a98 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x0e0500f3 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6c16 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0e138f27 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x0e1a4d26 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0e235e1e fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x0e2fc0f5 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x0e4b5b4f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e646891 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e96e08c sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0ea60c50 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0eaeadba blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0ec28bf3 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x0ed06593 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x0ee8356d crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0eeeeaf0 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0eef8f15 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x0ef22f1f da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0efdc428 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x0f0739f8 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0f07f84f crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x0f09f3f1 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0f0d0359 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f42360a phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f45389e wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0f55363e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0f57c1cf fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x0f5e0ace __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x0f69df02 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0f6a3d7f mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x0f725463 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f812eb2 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0f973f0b devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0fa24965 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x0fa8b943 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0fbbd6ef pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x0fc18a43 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0fc9397e input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdd768c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x0fe5bd1a irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x10002913 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x1010922e sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1018834e scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1025daec snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x102c5039 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1031c7a9 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x1059402b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1065c825 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x1066596b regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x10706f9c snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x10783843 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x107c10d2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1080acfb snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x1083f8ba sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x108bcd6c wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x109a1757 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x10a53748 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x10b1b313 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x10cc7941 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x10d85a01 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x10e94ffe udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0556d inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x10f4fd76 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL vmlinux 0x110cb7e5 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x111279df snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x1117896c sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x112d99c2 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1150807d simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x115b59d5 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x115e9d37 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x116283f2 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x116e0bf0 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x117a7037 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x1184705b __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x11869bd0 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x118bff67 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x119a4097 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x119acbea pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a3448b ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x11b4d2bc snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x11c31073 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x11c62631 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x11d19378 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x11d5c03b ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11df3442 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x11f40617 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x11f5fe6d tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x11fecea7 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x1208ca72 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x1211b4ea devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12210ce9 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12350743 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x1235ca03 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x124d5221 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129bc481 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x12a34e2c genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x12a395ed null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x12e4a57a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x12f425b4 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x12f6f655 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x130002fa hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x130c1816 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x13163ed1 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13360c8c get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134e69da tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x1352b9f4 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1354eb74 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x1358c23f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x135b4dda bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x137e510a scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x13817512 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1386c9a8 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13af1b4b usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x13c235b5 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x13eb41d5 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13edbae2 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x13fd47be device_rename +EXPORT_SYMBOL_GPL vmlinux 0x13ff4710 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140d5a07 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x141a8dbf pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x141bc012 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x141e229e of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142b1bcc sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x143a6309 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x143d05ad device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x143d21b1 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x1446abcd snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0x144a55e9 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x145021b7 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x145fa5e9 usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x14602f92 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x14653f4a ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1469e35c rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x147e3be7 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1490a087 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1494d5a6 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x14a0d7b6 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x14c3659a sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d2dbd4 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x15086b41 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x151402f0 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x151c905a mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15435c50 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1573dc69 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x1582ad16 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x1585062d usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1588b982 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x158b7215 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x15db6d06 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x15e4b36d inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x15f12772 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x15f845f6 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x15fbb346 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x16047504 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x160a30eb of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x160c32e0 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x160fb872 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x161cd789 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x1620b904 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x162e0e16 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1633a243 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x163e7895 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x1649293c bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x165b7dc2 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x165d7e6c dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x16641405 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x16716a63 nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168cd88e efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x168ed3c8 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x168edef2 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x168fea71 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1690664a fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16938455 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x169d9141 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x16a39908 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x16a7cd4b gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x16b2bc33 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x16b8c2a9 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x16bcbce3 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x16c8297b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x16ca95b3 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16de0ef9 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x16df416f led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x16e89e4a vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x16f6d0e7 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x17015eaf regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171d7743 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x173df2d6 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x1742fa2e pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174eca49 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x17501a98 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x175906f7 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177fac56 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x17803038 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x179e7dff thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x17a5f3b2 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x17b73e8c set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x17bc6f4d fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x17bc9a38 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x17c440a0 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17d156ee bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x17e5bc87 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x180e2fbf clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x180f625b led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x181ccfee usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x184a3bd3 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x18502d9c ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x185c5fde irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x185fe0cd inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186ad9d8 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1886e14e dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x189108b3 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x189669f9 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x18ab97c8 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x18ad12df sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x18adc53d clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x18b4d2be bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x18b69dd6 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x18ba81b4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x18c59fab screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x18dab7ea watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f0f7fc ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x18f66b16 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x18f8bdfc rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1903972d find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1907ca0f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x191141f1 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x1915755a led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x191ee70e ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x19340fcb uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x194a7111 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x194a7acb housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x194b4974 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x195f2bdc devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x19674646 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x196ef5e9 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x197b293e nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x197dcf51 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x198aaede cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x1997fb19 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x19a1081f of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a6a38d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c8a374 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x19cd3e50 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19e87942 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x1a071e40 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a25152a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a3faa92 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a574d59 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1a60f377 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1a63fd3d mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1a64b785 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7117f0 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x1a73ed3a cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x1a753b50 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a77b72a ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a7b9d55 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1a826d5c devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1a8b5fce __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1a9716ea umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x1a9c2f87 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x1ab7e0fd tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x1ab97477 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x1abe420c dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x1abf4b3b fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x1ac97cf0 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af52fbe dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b011dec auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b06580c lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1b1c9a0e tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1b22fb01 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5c78f2 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9df49b fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bab4f10 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1bac6ac9 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x1bc24eda phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd1b4d7 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x1be9d2e3 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x1bed805b devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfab967 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c09f0b0 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c18e7c0 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x1c25c9c1 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c27a15d sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x1c321b59 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c3f571b __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x1c4c601a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x1c53ec37 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x1c5418fd edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1bc6 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5f071d __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c729055 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c83acfe pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c910b11 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x1c9772a6 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x1c9e2325 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x1ca02a9d shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1ca55d22 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1cbb3fa6 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cce38e8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x1cd02263 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x1ce8719b anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d092d71 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x1d106c8c __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d23a95c usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x1d2ce955 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x1d3711e4 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1d4321d5 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x1d47125b clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x1d491016 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1d530665 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d6e882b regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d85df63 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1dbed316 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x1df2e0c3 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1df76c56 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x1df84dfc irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfb9885 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e1346e8 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x1e1b421c mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x1e2276a7 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x1e34dde0 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x1e358f98 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x1e39bad7 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e4a1957 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x1e5288d7 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1e574035 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1e62fa7d fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x1e632686 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x1e687120 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x1e779a09 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea969bb addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x1eb4c53a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1eb6e5a3 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebca272 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee6b062 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x1ef515a3 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1ef9c3de __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1f05b35d sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f201f14 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x1f21bb79 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1f2b57fe dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1f2c46c7 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3fb751 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4eed50 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f5029ce receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f59689e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1f5a956e i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x1f7215b0 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7d5be7 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa29cbe pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x1fa67378 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1fab6c4b firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x1fba3895 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x1fc8df11 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fd14407 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x1fd3abbb snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x1fd8ce99 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1fdacee9 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x1fe5915f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ffe49a6 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x200964df usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2022a133 nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x202be382 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x202e8b72 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x202ecb15 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x2031f2ea devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2034290d regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x20447852 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x2047ce17 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x204bc83f kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x20551fa9 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x20590694 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x20720ce4 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2078c273 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20987bab watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2098ddd8 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x20b1519e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x20c9cc1f task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x20ca3542 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20d7d5e1 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x20d80fa1 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x20e255ed fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2104da41 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x2107a981 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x210ecbfa __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x21132627 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x21171446 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2117f3dd auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x2119177c vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x211a7425 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x211eb1ae pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x21262185 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x212d036c regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x21359715 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x213996ba clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x213d6419 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x21435b8d pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x21581b4f usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x216f4d23 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x217e8f3a dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x218a479f serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x2192e38a __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d1e20c crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x21e4a271 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x21f0aa26 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x21fb35c3 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x220bc990 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x220c1656 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22206a53 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x222bcea9 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x2234af73 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x2244eb7d irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x2248f6ae snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x22564a0d cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x2258a439 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x22655558 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x2270f26a __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x22aa2e5d usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x22c05eb3 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22ee440c __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x22eff9e7 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x22f3a676 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x2309d44b is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x230c5000 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x230f003e devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x2327395c pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x233b53cc pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234b0b41 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23501ffe perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x2382f4e2 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2388e2a3 snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x23950433 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a2e751 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x23cbaae3 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x23cc5315 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x23d3c0e2 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x23d7ec78 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x23d8f668 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x23f1c214 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x240c696b thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x2417201b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24226bed bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x2426b358 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x242e7a4d dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x2434d299 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x243f12dc sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x2442ce03 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x244dfd38 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2452df06 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2458ce2d crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x247f5c5f of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x249206c7 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x249fd63d crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x24aaae73 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b8fa18 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x24bef2e6 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x24bf81a2 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x24c52861 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x24d675ab bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x24d6a418 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x24d6db81 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24df0e3d regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x24e2de59 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x24e54722 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24edc36c fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x24f063fc relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25033233 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x25038068 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x25299a25 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x2544b879 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x2547d244 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x2556c8bc dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x257093f0 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x257f2c62 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x258003ca __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25a09508 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25beed29 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x25c5ae70 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x25d75fb7 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x25dde837 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x25e8ac47 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x25f76252 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x260a9a44 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x260cd6cc devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x260e9e1a syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x261c7934 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x263b3c41 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2676c93c ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x267d8dbb dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26919052 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x2699ff07 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x269c46f3 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b29f46 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c79bbb bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f0ebfb __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x26f4e6d2 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x26f8730d i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x2713fc44 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x2715ff45 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2728f0e2 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x2729ab49 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x274b2ae5 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27649e18 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x27757320 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x2775ed00 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x277d8b8a mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x27a87ec5 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x27aabbe1 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x27aac613 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x27b271fd of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x27beba92 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x27ced88d crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x27cef512 __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x27d5f4e2 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x27d949c3 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x27e5ba29 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x27ed1627 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x27f3954a fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fbc842 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x2800604f musb_set_peripheral +EXPORT_SYMBOL_GPL vmlinux 0x280c92a8 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x282b0608 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282e89ae regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x283a50e2 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x284863fb rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2852b0ad fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x285c8fa9 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x285f845f sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x2861517a vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2862a126 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286b252e __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x286c3d86 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286d0ca9 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x2879a967 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28947dbf rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x289858a0 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x289e59b1 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x28a7db63 nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28bbc6fe pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x28cb003e amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x28d15cb9 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28f6b370 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x29048708 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x290aca60 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x292caafc bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x292f244a vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x29332892 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x29332d1a ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x2943627b usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x2943cb87 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x294e7e99 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x29888e3a fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x298e51b9 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x2995d3c0 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x299767fa wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x299d31be iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x29a2f22f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x29c9655c fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d4278e rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x29d8f13b clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x29e1e0b1 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f64de8 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x2a1866f8 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x2a22cabd gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a331b1b scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2a386a2d pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2a4dd1d0 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x2a55c81a snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x2a59f6cd devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a90d652 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2a913e3a fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2a927a83 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x2a97951e device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2a9f977f ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2aa49df2 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2aaa5be9 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x2aaca81a xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab40363 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2abf9839 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x2aca8677 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2acbbe8d skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x2acd6abc __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2ad6c629 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x2aeac0ae dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x2af53e43 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x2b024ae0 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2b17bdb7 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2b1dbe44 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2b31c6df __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x2b3c2894 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b58955d of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2b58e14a replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6b4e38 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2b7828d2 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2b7ed3e2 device_add +EXPORT_SYMBOL_GPL vmlinux 0x2b89b5e9 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b975908 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x2b995a3a devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9cf0ca of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2be52ed9 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x2c05d35c extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x2c0f4762 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c182023 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c285e91 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c297397 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2c29c68d uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x2c2d0b56 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3e32e8 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x2c54e865 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x2c608e1a switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c73cff9 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c820db9 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x2c858ecb __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x2c8744aa dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca4fdc6 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cbd27b7 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf2d92e mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x2cf7c26c clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x2d004ee3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2d0c15e8 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x2d0ec05f phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d204021 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d319d78 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0x2d382b9e devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d43ea62 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x2d494061 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x2d49adb4 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d707376 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2d760b53 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x2d9283a5 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x2d9d2a70 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x2da4893f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x2da7f756 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2db337c2 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2db79d6b crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x2dbc7d96 musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x2dc5e880 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x2dcd0628 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x2dce0f83 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x2dd594b0 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x2dda0d9e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2df55577 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x2dfda80f dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2e027c13 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e1419b8 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x2e141cd6 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x2e149c9d sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e324e7f unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2e3f5481 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e43a49a xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x2e443e10 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e4bf018 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x2e553309 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x2e5dba64 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2e60d97f spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2e641dae mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6ba8cd ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e74ff0b to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x2e7b31a9 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x2e88a454 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e905caf serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x2ea267f8 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x2ea4ff6f snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x2eacdeb4 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ead9c23 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2eb4a978 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec57e60 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x2ed61208 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2ef40e77 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ef64fb3 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f17f3ea dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f20e248 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x2f2388ad cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f4a6f95 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2f51351b omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2f52fae3 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f665e80 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x2f66c521 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2f68816d hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2f70bce8 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2f7d678f devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x2f8042b2 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2f945e71 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x2fa19fd0 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2face2d4 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2fb7559b __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2fbd1d96 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc85fdb tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x2fd70c81 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2fd7ec34 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x2fdc6875 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x300af5a6 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x300b4815 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3010d6ff tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x30132eba devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x3023c108 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x303c7d39 usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x30430b20 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x305b89d9 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x309faf66 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a839e9 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x30a89347 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x30c1cf25 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x30f01b07 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x30f05d99 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x31016fb0 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x311f6f2b iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3183688d fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x31866453 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b878cf mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x31c3c52b msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d13b04 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x31da5c3e virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x31e66555 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x31ef2fba component_add +EXPORT_SYMBOL_GPL vmlinux 0x31f3aa0d pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x31fdaf74 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x321d8d0a fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322e5b11 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x3237ddfb mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x32485bfc sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x3257a2f8 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3259285d iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x32602313 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x3260a2a7 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3260a4a0 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x328860fa nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x328bdd81 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x328c96db ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x328de143 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b06fc2 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c3d26b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x32c89979 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x32e69905 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x33181a5a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x3327c55a get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x332ae4b4 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x332b3f66 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3336f6a6 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x3342bf84 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x33583ed0 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3360558f kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x339a9e14 led_put +EXPORT_SYMBOL_GPL vmlinux 0x339c28d2 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x33aae2af blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x33bf41c4 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33e5b115 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x33e7a514 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33fe40c3 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x340046d4 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x3403324e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3403d00a user_update +EXPORT_SYMBOL_GPL vmlinux 0x34232f97 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x343923ae devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344a6541 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x344d705e gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3453d3a3 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x3457637c spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x3466c9f4 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x346b4f29 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x3470d596 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x347dda7b device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x349a8dc6 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34b02ad4 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x34bda3c9 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x34c7221f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x34f1e1a6 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x34f55f39 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x35006b5a gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35328ffe __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x3532c716 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x353b8330 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3546c569 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x356c4468 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x35890c42 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a53016 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x35d2442f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x35d4c394 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x35da2945 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x3603d33d nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3608b584 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x360ab253 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x360aed55 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3636d7e4 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x36430ed3 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x365b4c08 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x3660898a of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x3664e947 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x36781728 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ac27e5 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x36c3a52b trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36cb9c59 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x36dc3513 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x36e67ed0 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x3710256f usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x371bae61 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x37258abf lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x373c65f5 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x373db3d2 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x373e5c25 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x374b1109 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x3764a3f3 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x376beda1 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x37726829 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3778355f crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x3782190a usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x37846f88 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x379540d7 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x37a4047a pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x37ab9731 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x37b0d789 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x37b26238 device_register +EXPORT_SYMBOL_GPL vmlinux 0x37b4bfa4 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37e1b9af netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x37e987ca yield_to +EXPORT_SYMBOL_GPL vmlinux 0x37ecf132 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x37f1c6f7 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x37fb6bec debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x38069ce2 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x38258f4f regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38588ae3 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x385e8d89 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x386061f2 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x38656dc3 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3886c65f led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x38a243dc pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38aa4657 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38cedfc2 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x38db6fe5 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e6b2f9 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x38fa88d9 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x390124d4 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x39021834 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3908d9be switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x393d43a6 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x39539e10 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3989f6c5 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39af3662 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x39b194ac devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x39bea15b md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c4a2b2 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x39c4e665 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x39c883a5 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x39f7d06e bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x3a0191a4 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x3a03db09 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a0da919 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x3a177962 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3a1fcba8 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3a2d0f75 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3a3a5390 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x3a3af83d sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x3a49318d thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a4f76f3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a66c9d0 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x3a773928 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x3a78e59e pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab1cd78 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x3ab325d6 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x3ac1242a __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x3ac678fa dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad80840 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3addf3d6 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x3ae4671b store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x3ae962fe nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3af7a252 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x3af94489 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3b008bc5 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x3b023852 sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b0a2e75 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x3b0c1b0e __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x3b234abd efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x3b277636 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x3b2ac653 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x3b3101e8 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b4d22cd irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3b537e82 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x3b7159f7 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x3b72a156 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x3b8837b4 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3b92448d nf_route +EXPORT_SYMBOL_GPL vmlinux 0x3bb1f64a lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x3bb48496 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3bb67b9b mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x3bc076a7 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x3bc9647d led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be156fc omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x3be4c849 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x3bebc139 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfd09b5 sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x3bff3a64 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2c6dc5 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c3cf8a8 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x3c4e632f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c73d9b0 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3c8a7f36 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x3c8e3506 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x3c9495fb nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x3cb36251 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x3cbbbe2a blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x3cbe3068 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x3cc39fc7 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce5ec37 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3ceb55e9 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ced7f9a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3cee10a4 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x3d0b0ee8 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x3d122463 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3d17d887 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3d22021f mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d36d71e sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3ed482 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x3d41dc0a usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x3d4a38de phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d519be3 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d638762 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3d67fcbf sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3d7a6462 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3d7a9942 user_read +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8be099 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x3d8bf28f simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3d8dad50 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3d94b988 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x3d9625a7 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d972adc gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da61ee9 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x3db0fb19 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3dd32de1 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x3ddcd103 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e0495cf net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x3e063e89 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x3e1119b8 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e43c61e sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e50d2d4 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3e51efc7 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x3e57f9ba usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x3e61c574 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x3e6200be hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x3e6fb99b of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e742763 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x3e99b130 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x3eb53ab1 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x3ec0f885 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ed3a4f7 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efc20e5 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3efdd004 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f0e1346 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3f109051 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3f18fe8d serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f309b24 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f7d77e9 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fb6ffd5 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fb7fddc i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x3fc426ab usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fc76d65 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x3fd51cc6 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3fd666fe kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3fe2c4da ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe92498 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fe93ab3 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fea0e25 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x3feae7b3 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffab0d9 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40012a91 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4005c388 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x4005eb24 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x402cd68e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x402d28a9 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x40325964 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x404bfd78 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x40573323 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x40574a09 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407047b1 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40796b92 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x408a64ca validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x408e3596 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409f490b blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x40b601e8 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40c48e3c dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x40dd61ac led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41147e4a mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x41182064 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x412692a5 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x413d969a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4144aefb devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x41541b4d perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x416632ff iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x4167afe6 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x416a6bed ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x416fbb6f devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x417b107b devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4183acc2 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x41842ae2 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x41842b79 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x418f0c57 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x41905144 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x41945814 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41aa04ac device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x41b947ea pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c17eb5 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41dcdc0e iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x41e80b10 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4213c1af gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x421608dc devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x421e85e6 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42437e73 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4249decd rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x425cfefb devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426c0863 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x426e0834 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x427a4ac6 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428d36e1 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x42a7b7bb gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x42b32eeb serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42f82605 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x42f9ef89 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x42fc2f46 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x4306152e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x430ab24c usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4318ce14 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x433b7fa6 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x43495ba7 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x435f6533 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43716a13 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4374879a dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43969913 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ace9e1 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x43d51ab7 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x43d7d6c1 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f5d2fe sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4416c073 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443dc29e serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x444c4d7f cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44641b35 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x446b04d6 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x447f735b mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a259f5 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44dbbe6a bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x44f3c1c0 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x44fff47a fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4503e2d1 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4531dbad pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x4534f89c devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x453c384f dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x454978d2 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4567ab80 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x4568b6e5 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d4d69 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x458c0bfb snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x458e4273 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x459366e3 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x45b7d12c devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x45baef1e device_del +EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x45d9eaf7 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x45e2aef5 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x45ecf830 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x45f4eccf gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46025fae usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x46168132 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x461b10f2 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x46357861 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x463a096d fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x463c9ca9 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4653a7c2 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x4654afbc gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x46624741 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x46626907 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4673b268 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x467705fd device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4684c4b9 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x46853cc6 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468da30a mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4691108c mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x469b75f0 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x46b8de78 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x46bbb6e4 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x46be3b13 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c8f5a8 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x46c93910 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x46ea63a8 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x46ec5a60 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x46f350e2 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46f4cf38 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x46f7ece9 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x46fd87b9 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x46ff0465 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4709b0a5 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0x4715b63f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x471db73d pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x471e9890 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x471fae6a nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x4743beda ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x47544f60 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47694c66 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x477d2000 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4783988f __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x479a64d2 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a6029c rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x47a9afdc sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x47aac071 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47af9144 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x47c0ab35 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x47c34986 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x47c65743 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x47c76ccc __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x47d2a126 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47d59582 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x47dae1db snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e61063 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47ed2d17 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x47fc79ee devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x4802e174 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480a7515 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x480eaba0 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x482ce196 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x482daa6d tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x483a7c4e usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x483d646f tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x48462bf0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x485d91d2 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4876df84 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x489165b1 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x489c229a dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a5d21e sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x48b73a50 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x48c12bee pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c6309e of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48f670b2 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x49009991 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x490caece mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x4928dd22 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493ff768 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4947340b serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x495934f8 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4965dc3a generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x496c10f4 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x496d2c4a irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4973679d irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x497b8c6d usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x497c1ab3 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x497d39d7 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x497de789 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x4984c71b pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x498ca416 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499287ca find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x49983b5c blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x499b4994 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49a1c475 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x49a67541 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x49ac1638 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x49b38825 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x49bd68a8 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x49c60443 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d37b06 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x49d643d9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0x49df5e08 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a0aa68c cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1dbbac ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x4a2222e1 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4a22b42e key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x4a2b952b tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x4a3d0bc1 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a539a6a snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0x4a5719be compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4a7118a8 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x4a71a843 snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x4a9575d7 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x4a9a3e31 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4ab88d5b snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x4ab95a5b tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4abfc9ff iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x4ad135d9 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x4af879fb devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x4aff8715 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4b0565cd debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4b1187fb usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x4b139f51 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x4b1882c1 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b1cb692 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x4b2b6364 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b52b63d devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4b662b59 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b8cbaec ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x4b95ab2d devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x4baa1ab6 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x4baf3ece pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4bb7984d usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x4bb7c0d9 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bd34670 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bd4c6b3 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x4bd5d2fb ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4bf4c32f phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x4bfb7a9c find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x4c12f481 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x4c1e824e __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x4c1f99bd crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4c26014c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x4c2660f1 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x4c2eeeae param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x4c360dbf vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x4c38021b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x4c4babfa efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5fd8ff usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x4c7d4bfd sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x4c96b54b pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x4ca6dade tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x4cac5960 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x4cad2861 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4ccbb2a1 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x4cd89357 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4cdfdc68 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cf31a7b icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d09199e __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x4d0a9edb metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4d107e2a usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4d183611 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x4d1e7b21 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4d23d2a2 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x4d2ddf23 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x4d340c86 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d3ee9d7 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x4d4bb46c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4d4ccaef gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d4dbb93 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x4d538c77 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x4d6956c6 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d84d238 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4d899279 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4d8a93dc nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL vmlinux 0x4d8bd436 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4d9d9696 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4d9fe084 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x4da30767 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x4dacd539 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc5cc71 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x4dcc0627 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4dec9163 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x4dfa9fbb snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e01bd99 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4e0a38a0 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x4e1f4901 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x4e219172 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x4e2387a3 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x4e31c527 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4e59d3ff devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4e77cbb9 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x4e77f27c vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e7f8956 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4e8a0ae6 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e91cebb put_device +EXPORT_SYMBOL_GPL vmlinux 0x4e9b5fc4 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x4e9d92a9 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x4ea236a3 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eae1b36 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x4eb3451f perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x4ebcd891 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4ebd3e81 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x4ec5537f sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x4ed9ffd1 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x4ee0f6e5 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4ee4998e ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x4eea67fe page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f01cf9b decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f2ac0b5 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x4f32bfa6 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f376737 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f5114e8 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x4f605308 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f727a99 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f753a88 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4f8c8954 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4faf24d2 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe25003 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x4fe26eeb tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4fe2cfe4 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x4fe4b483 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4fe65f08 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x4ff4f6f7 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x500a1c77 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x5028496b kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x502888ee uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x5035ef7b fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x50368338 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x5046a7c1 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x506cd8ab usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x506f10b3 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x508457a2 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5098a5f8 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50b4ab10 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50b98a80 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x50c5107e of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d0e2a4 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e8b04e pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x50ebc96e get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x50f627ae pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x50f70089 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x50f9a5ae sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51022ff4 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x510d4e47 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x51122eec __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x511b9bec sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x511fed81 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x5127996f percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x512855b8 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x512b2e9f devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51348723 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x514cbb1b tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x51563861 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515b3c29 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x51657efd extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5171c0a1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x5173ec4b tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x517df235 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x519087a8 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51aa25af ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51b8db06 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x51cd02b0 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x51d70ce1 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x52026c7b devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5209025d debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x52240427 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522d42d2 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x5258de9b irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x52655b80 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x527f89eb regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x52832184 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x528485b6 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x5284baf7 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x5285e6e9 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x529b107a platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ced529 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52df2365 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x52ef7af5 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x52f076a7 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x530e482d trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x532a21c2 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x5339a522 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x533d470b driver_find +EXPORT_SYMBOL_GPL vmlinux 0x534023f0 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5359de96 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x535a8956 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536b5f06 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53c34e4f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x53c5f557 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x53c870a2 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x53ceb220 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x53ced4c3 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x53cfbbc4 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53ded0a9 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x53e84c77 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x53e95fc3 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x53e9642c regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x53f0fb35 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x54105227 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x541a2523 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x543a4e53 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x543b43a5 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x543cdebb subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x544c001f tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x54533d1a msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x5459bba1 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x5468e22d devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x548769c6 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x548be81f snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a8bf58 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x54bb3ce0 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x54eb6e85 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x5509c6c1 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551e3a39 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5545b654 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5557d395 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557cfe88 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x559dc1b9 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x55ab9810 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x55b3aa0f devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fe2bae regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5603882b blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x56046f7d sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562f1aa5 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56319b11 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x5634c0f1 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565d6879 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x56682894 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x5679d6fd led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x56883b40 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x569320d0 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x569d57ac unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56b8d90e md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x56d4db74 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x56dd2571 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x56e014aa sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57054b45 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x57088188 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5709622f __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x570f4c53 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x571b2e42 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5734713c __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x573ab4d2 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x57781814 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x577a59e3 component_del +EXPORT_SYMBOL_GPL vmlinux 0x5781f19c __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x578c430f rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5799b8f8 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57a4a9c5 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57b70e81 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x57c2ff69 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x57c79955 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x57cdfd19 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d4973e tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x57db3321 input_class +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x580cc79b gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x580f2c74 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x581300cc tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5832234d tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x583e3d54 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x583fdc8f gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x58412be0 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x5849af30 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x584ff14d irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x586836cc __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5879fe9d tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x588dbc31 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x58a86235 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x58bac0a6 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x58bc9242 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x58c5e582 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58c8d8ea dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x58c9e94c netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x58d0eaef sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x58d40687 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x58f1d8f0 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x590027d6 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x590038f2 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x59036c80 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x591954ce devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x59219438 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x59237177 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x5925d489 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x59264b01 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x592dbb4c sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x59354b31 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x593ceb51 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x593d780a call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x596b836d devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x597e8618 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598f28c1 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x5993f435 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59a293e7 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59b497d6 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x59b98ef7 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cac795 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x59ccc42a snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0x59dd6527 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x59e67324 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x5a0204f5 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5a0360c1 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x5a0770fe __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5a0de182 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a15ff24 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x5a1a100a gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x5a1b3b75 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a338955 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x5a3610d4 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x5a39929d fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x5a3d7674 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x5a44e56c reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a551bba gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5a59c5fd dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x5a5d169e bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a65cc92 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6ec8f6 mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7ffd4f usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5a815850 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x5a861e4f netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a8f37da mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a90dafc ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x5a938904 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x5a9f55a8 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x5aa1660a linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x5aa2b116 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab0f8cb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5ab3600f gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5ac0390a ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x5ac1811b pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x5aca242b nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x5acb9391 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5ae4111b snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x5aed7490 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x5af9df77 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x5b076ffa rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5b0dddf5 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x5b102eda regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5b16ad45 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2afb68 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b364367 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b37cc00 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x5b3a67b3 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b65c126 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5b68a000 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5b68cb7d genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x5ba001d3 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd61b6a of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bfd6ae6 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5bfd919f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5c12c2b6 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5c13ff66 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5c15017a rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x5c1fa348 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x5c25fcd9 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2ca918 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c3ff109 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x5c4d6729 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c4f82b3 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c600670 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x5c6f85f5 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x5c70cdc2 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5c70e341 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7b7675 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x5c7c5712 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x5c7f3258 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c84d1f6 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x5ca359ea pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x5ca73c36 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x5ca811df gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a8c2 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5cce4a64 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5ccfd631 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cfc848b irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5cfd312c da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d121192 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3d0600 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5d729768 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x5d75cce0 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x5d80b7eb dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x5d821c49 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8a4289 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x5d8ee72b devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x5da36f76 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5daa15ed irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5db377d7 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x5db5e875 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x5db6b3e6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x5dd20ed0 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x5dd6a432 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5dda4465 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x5ddac590 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x5de0ede0 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x5de4628b fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x5dec3880 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5df82a94 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5df9f79b metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x5dfb8e99 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5dff8cd6 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5e00d8fc usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e040c13 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5e0e8bc3 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x5e1d8dd7 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5e2146c4 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x5e23521d dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5e2e81a9 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5e3c660b dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x5e44d152 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e6946eb dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x5e6e5215 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x5e6e75f9 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x5e71df31 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5e73f7e0 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5e78bdd4 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e932dfb nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x5e93c9c5 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ed43f6a fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5eeceb16 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x5ef33017 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5f08aeb0 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f34a485 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x5f34ff80 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x5f35bf7a blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x5f5564ff cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x5f6b5bf0 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7bba10 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5f81f628 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x5f8d15e0 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x5f92cab9 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x5f93d3b0 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa8711a mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5fdea700 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5fe3503d of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5fe792e6 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5ff0a58f devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60171b2e ping_err +EXPORT_SYMBOL_GPL vmlinux 0x601bb078 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x602537f5 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x60258502 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x602dc827 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x602f02fc nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x60422dff rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x6045a7c4 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x6050f9fa __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x60567579 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x60589f50 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x605dbcf1 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x605eb66e spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x60630721 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x60699a33 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x60703299 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x6072ff7a iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x60753149 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x6078fd91 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609a3467 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a39a50 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x60a4f437 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x60d01740 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x60d37d14 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x60eba252 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f5fe22 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x60f66c78 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x60f803af tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x60fd6137 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x60fde8e4 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6103fb68 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x61116f3a mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x611780b1 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61477e4e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6151ff77 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615d98a6 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x61669686 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6172ffd0 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x6175ffea gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61821258 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x618c9e3b extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61b6b71b kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x61b871d8 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61e0f6b9 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x61e389e5 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x61f2083c nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x61f4a700 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fd1107 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x6218269f rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623e3174 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x6243c077 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6256e09d sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62604cf9 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6277ef1b virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x627928b7 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x627c6947 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x628907f8 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x628ba7e1 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x628e4f45 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x629a733b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x62a6f432 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x62b80920 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c44e54 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x62cba43d hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x62cda8bb mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62ee3cc6 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x62fcefbf elv_register +EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x630eb9a7 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6317deaf pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631f266d icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x634056e9 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6366a0fc snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x636f6fde pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x6378ea64 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6386353d devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x63a4e86e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63b4cd5c snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c1b597 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x63c96c73 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x63c995e3 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x63d6f3c6 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x640f4110 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6416d9f8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642fa32d dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x64304094 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x64328078 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x6467af04 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64819061 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x649c4308 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x649e51ad devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x64a69163 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x64acdaee snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x64bcbf9a snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x64be65be virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d54c8c extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e350ce bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x64f85055 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64f8c3b3 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x6511374b led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x651d4c2e crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65332063 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x656d3f83 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x65ad7de0 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x65b285e5 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x65b9aa6c serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x65c66d66 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x65ca7d86 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d4d333 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x65db74a9 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x65e8e16a xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x65f33437 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x6614d637 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661645bc crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x661949e7 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x662a68ac sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663be527 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x664929c1 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x665dd834 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66830f66 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b76824 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd841b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x66c62163 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x66d7ddac serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dd568a usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x66f916f2 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x66fba24d sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x670b5a18 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x67105e7a snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x67115abe dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x671c2dba handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673701a6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x673e6a38 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67512d7c genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x675b4234 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x675c4fff shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x67784f4c kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6788b04e iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x678970f5 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67975af5 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x67975fb0 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x67a0f5ca gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x67af7a8f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x67bc5ab0 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x67c17639 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x67c7c377 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67f7f2e2 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6800381d __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x680718f8 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x68130a82 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x682579df crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683d3194 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x683fcb6a snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x684523dd devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x684fafca snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x6859bfb7 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x68647368 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687b73fb ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x6885233a irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x688b527b rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689c2ecf of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x68cb4136 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x68d3ede9 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x68e45806 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6911822a pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x6911de5a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x692098e2 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x693ba9d3 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x6941fd75 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6952b717 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69530252 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x69534a4e pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6969ed03 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x696adc36 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x696d1eec pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69716054 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6988fc27 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x698ef4e5 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x69a824a0 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x69b27ae3 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x69ca676d i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x69cc36a3 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d41360 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x69d6e2db cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x69d7b03a snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a009d8a dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x6a035a91 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6a049435 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a157f53 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1ae899 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a56ed45 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a65b0e6 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x6a6911e9 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6aa63f19 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6ab7d3f4 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x6ac36029 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x6ac83c75 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x6adaf419 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6adc9de0 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x6b1009a5 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x6b146987 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b298eb1 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b347e7a rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x6b3899c5 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x6b40f2b1 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b5d8154 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b9e2247 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x6ba875ed component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x6bb63b09 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x6bbad0e3 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce93d8 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6be444f7 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6be6dcc6 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6beeb8c3 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6c04fe22 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x6c0a1c15 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6c35fecc tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x6c3624c1 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5a652b em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c7c3a49 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x6c7da188 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6c9105d4 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x6c91ef47 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cbc0412 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ccc6ef5 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cedb34a crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x6cf61c2c blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x6cf92c3a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6d004608 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x6d0048ca class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d027979 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x6d0950d0 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d2f1f76 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3e4d47 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d474004 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6d5680e4 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x6d5e28e7 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x6d6d6445 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7de92f pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d89a280 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d8f3515 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd8d6ab pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6de2d2b4 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x6de60fcc sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e027221 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e1a7b1a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x6e28ce54 snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x6e2a9ef4 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6e33dc6c pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x6e3730d4 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e68d6d4 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x6e6ad4f8 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6e6b8756 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x6e6d8430 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eb2560d pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec0139d usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efe0503 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1d0f48 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6f1d71ef pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f229dfb of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6f34a310 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x6f3dcc18 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x6f550d96 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f65d0ce fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x6f6d5841 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f874fbf ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6f8d5806 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa75846 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x6fab3fa3 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fbc4182 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x6fc8ed6c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd28e68 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x6ff0928e mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70003b24 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x70015704 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7006f4a2 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x702d92a8 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x703866a8 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x703e445c fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x705563d5 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7067a207 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707891c3 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x707ef6d4 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x708cf5e4 usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x70ada318 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x70b92568 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x70c3dc0b device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x70c5271a devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e2025b __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x70fb7b08 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x713e9206 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x715177fa raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x715cf22c ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7163c8b3 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x716cffb5 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x717d8169 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a23a69 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71a7ccba i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71bc1e94 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x71c4d6b3 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x71c6213d regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x71da08da devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71ef66e9 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x71ef6db5 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x71fd058c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x72057a3a blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7214713a snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x72197d88 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x721a01df rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x722638f2 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x7246672b regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x72499f7e inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x724f01bf icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x725e0011 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727d0c6c devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7281e72c pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x7282481d perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x72932f62 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x72962164 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7298320e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x729deb71 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72b5e354 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x72c9fb79 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x72cc2d52 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x72cf8572 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x72e3754c pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x72e8dab3 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x72e8eda4 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x72ebcce0 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x72ee94a5 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x72f2c5d5 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x7334a132 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x733f4460 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x734870e6 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x7359f09b irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7364bf44 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x7383b4e8 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x738d942d pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7397c93b __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73aaf09b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c09697 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x73c93809 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73ee0173 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x73f41e8d param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x7404a0d3 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x74165f8b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x741d3f68 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x7421a246 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x74237b7c crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x7429a3b9 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x742ad207 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x74309ee2 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743ee9b3 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x744153fb usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x744414f0 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x7447c669 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x746b6224 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x7489477a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x748a79bb iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x748ed80d clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x7499bdeb vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x749b67e6 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x749b742d xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x74aa2b46 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x74ae7301 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x74aeb294 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x74af4da3 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x74b2632b rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74be2823 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x74d7d259 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x74e0a146 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x750295df fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x7505d39c __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x750fc1c2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x751cc423 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75236374 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7527d6d8 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x753f70fa genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x75558784 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7556991c dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x75574858 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7585183d power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7586d8df perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75a191c0 cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x75ae21fa wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75c59b6c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d15143 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75dde99c crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75efa07c fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x760197ae of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x760fc34b vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x76148cdd gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7623603d sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x762ba452 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x763370ab usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x764724b4 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x76532e9c ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769985e4 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7699f202 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x76bad108 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x76c6183e devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x76d34d53 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dd4dc2 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76ed35f7 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76ef71b3 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x77047051 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x771f2c1e clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772a50cc ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x772fd7de __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775972f8 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x775e249b devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x77867fa2 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7794934b devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x77989e7e nl_table +EXPORT_SYMBOL_GPL vmlinux 0x779e47ce crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x77a1e3ab rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77a85d97 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bb58fb musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x77dfc921 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x77e5b8bc dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x77e5c9ac pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77fcd79a strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x780355e6 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x78038af4 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x780eb987 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7819a495 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x781b2c9f devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x782089cd pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x78273a02 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x782cb653 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785e6431 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x787f0e06 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789834d6 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a2b3ad input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x78a84aae led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x78af2648 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x78ca44a5 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x78cbf819 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x78cfa277 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e95188 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x78ee5b3d handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x78f21989 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x78f3cbc8 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x78fdae58 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x7929cc83 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x7931c474 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x7939dc39 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x7942bb2e icc_put +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794f24d5 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7953f576 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7957a155 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x795df701 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7978f339 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x797c3aac pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x797df455 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x79a52d1e ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x79b88e72 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f03d12 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x79f7f2ff regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x79f99a55 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x7a1e54ed serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x7a2921e4 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a3b64e5 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a47ebce usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7a5ba718 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x7a661bbd meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x7a6e3d23 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a756862 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7a759aab devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a75e4d3 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a7f4fd3 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a807c49 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8c7de7 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7a9229a2 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9baefd snd_devm_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7aae6d4b dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac6919e fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad7746c inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7af272dd __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7afe8b0a cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b1116a8 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b772b66 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7b7ff7b1 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x7b86899b tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba13e1b cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb134ea blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x7bb4da7e kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7bbaf039 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x7bbd1b60 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x7bbeea24 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7bc19838 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7bca4c98 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7bd36913 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7bd687e3 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7bdb6777 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7bdcb138 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x7be00aa1 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7be08614 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7bf208c4 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7bf842b4 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x7bf97d5a vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7c11363e nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c423834 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x7c4de218 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7c58d97f regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7c5f8206 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7c6f0c37 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7c762eb6 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7c7d9a29 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7c96af88 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7c97e1bb pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9da6c0 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7cb815c9 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7cb843a1 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7cb92169 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7cbb1f9d __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7cc37d3b serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cfc2c11 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d09bcc7 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x7d0b6833 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7d12b549 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x7d1cb2f4 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x7d27a258 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7d388e27 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7d467f46 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x7d492ee9 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d64dac0 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7d665fc7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7d676951 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7d801585 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x7db466de dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7dc6876d param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7dc7a992 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7dc8a6f3 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x7dd5a906 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddfd40f tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x7de7747e debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7deadd17 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7defbd90 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7e03ee04 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x7e074ac4 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x7e0bd1d2 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x7e10195e do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7e1761be usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7e1c0583 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e26633d nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x7e2f677c rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3f4f14 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7e590a9b gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e63c3e2 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e828b4c ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x7e87a23b crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x7e8df652 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e93ad81 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ed8c83f iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x7ee8122a mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x7ee8cc91 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eeb899e pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x7eed337c amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7ef3f61c sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x7ef8ec52 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x7f0d1322 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f28d3db ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x7f2ce2b4 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f5b7baf amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7f63338e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7f7379d8 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f9766ec validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fc06f0c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fee88e3 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7fee9f68 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x801ba403 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x80468e40 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x804c74ab em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x805f8eea regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8076d71d wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x807a03d9 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80813abf __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80aca344 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d00c28 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x80d47c45 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8132526a devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x8135b757 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x8141aa0f ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815de7cb badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x815de8c1 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x815dea95 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816095f6 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817237da regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x81742d56 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x81809f43 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x818cfa79 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x819d657f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x819fe250 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x81a07967 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b95247 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x81e677ab shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x81e8b26b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81ea44fd of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x81ec63e1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x8206f0de __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x820c8bc2 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8219c382 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82222f77 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822caae3 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x822dff27 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x823b913b device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x823ee60f mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x827df277 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x82802cc5 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x828af364 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x828c016f of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x829bf496 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x829ff701 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b276ec eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x82b4e897 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x82b90b96 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82da5e17 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x82e22c44 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82f86de5 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x8308043b devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x8309a9d6 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8316a5af powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x8339662f rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b983e uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x8340a1ba nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x8342f9a4 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x835fe87c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x8362e96b __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x837c21cb tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x8383c698 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8396e080 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x83b03613 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x83c43e39 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x83eabd54 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x83f07f93 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x83f15966 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x83f5e5b3 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x83fab3ca rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x83fc396a tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x84051646 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8432eca8 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x844a48ad scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845e355a debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84631295 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x84639071 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8470b311 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x84847466 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x8495376c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x84a1b77e gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x84a3bd83 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84ab199f ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x84aeab92 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x84b78c19 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x84b7eb24 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x84d50485 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x84ddd2ab usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x84e6c464 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x84eb02f5 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x84fd51e4 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x85070f6e crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8515951b paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x852a48e3 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x853847b5 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x853870ae snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x853a7f54 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x854ad6df wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8554c221 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x85677e99 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x856e015b mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x8576f72e dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x857b4f2b __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x85821682 snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x85822047 usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x85c325d9 musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x85c3a9e0 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85ca2232 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x85ddca63 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x8601745d regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x860373ab nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL vmlinux 0x8613dc3a snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x861b7a0d devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x86203bc1 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862e4c22 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x86348c31 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8648bcab rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x86570563 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865f0b30 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867edbd7 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x869062b8 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x86b0a7ea key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x86b34130 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b6e553 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x86b95f48 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x86e7e097 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f7c0c9 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8709bea4 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x870f36be dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x8735e9f6 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x8737c01d skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x87394351 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x874b0812 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x87550722 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x875b01ac exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x875d91e7 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x878f9615 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x87b8f6a0 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x87ceb0b6 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x87dc9d74 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x87e1a501 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87ef1515 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x880628a9 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x881712bb spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8820afe8 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x88223151 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x882ad952 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x883eceae page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x8846f7ec __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x88528967 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885c30a8 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x8864d49c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x88658150 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x8865d6c7 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x8867ce50 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8873d3c2 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x88818118 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88ad2b1b __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x88ad5685 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x88b12752 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88caf91a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x88cb8248 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x88d10a66 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x88ee0ec7 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x88f117f2 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x890092cf thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89053c00 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x89095f5c devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x89142dd8 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892aa699 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89447465 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x899667f0 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x89b2536c blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x89c1ae37 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x89ed866d synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x89f0c42b wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x89fc65fd mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x8a01e8ce iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a074f02 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x8a206485 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x8a23cd83 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a58d2fd nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x8a5ce89d sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a642540 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x8a6a8985 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x8a6c670a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x8a6ff34d edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x8a7361d4 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x8a766fe7 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a923d46 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x8a94eb5a dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8a9cc1d2 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x8aa8ba0a mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x8aa8bc7d dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8ab64394 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x8ab8d2de ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8acd3602 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x8ad77b85 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x8aea455a iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8affcbcd mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x8b00a422 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b07c80b tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b175c7d __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x8b273a78 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x8b532cf1 nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x8b5ca6ca rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8bc73d72 soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x8bcff27f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x8bd21ec1 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x8bd6de85 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8bdbd349 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x8bdeb522 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x8bee4dd3 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c19ea09 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x8c1f6262 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x8c3116f1 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8c463f6c xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x8c5262cf relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x8c606242 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x8c672fa3 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x8c743ec2 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c763782 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x8c7cced0 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8a8573 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x8cae6b4a invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8cb3d686 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x8cb4ca0b ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8cd6bab3 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8ce4da48 snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x8ce7a06c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x8cfe9458 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8d001931 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x8d173029 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2f0d62 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x8d2fe0b4 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x8d34e69d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x8d474fcd regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x8d781a5c __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x8d7cc361 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d9c5dad crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8da353f2 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db5f9d3 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8dc0f73b gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0x8dc8a79f devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x8dd0362d da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dddab94 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x8de25b33 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x8de31ac0 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x8de365da soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8de3f492 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x8de6b6a7 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8dfed9b8 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x8e08de84 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8e0f9122 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x8e217078 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e236b19 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x8e3952a8 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8e3b2d35 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8e56ed61 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x8e65489a sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x8e6a8d4d iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6de603 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8e708145 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x8e792dca usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x8e7bebd9 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8e826d97 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8e83b7b8 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x8e8494cd snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x8e894995 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x8eac9e84 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x8ec6d884 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8ee9e308 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0e2503 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8f3b0464 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x8f5369b2 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x8f5707d1 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8f5a0c07 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x8f6218d0 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6ec2cf mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x8f7002b1 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f945ae8 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8fa1028e devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8fa3d08b __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8fae8bde synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x8faf42bf debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x8fbea157 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x8fbf4ce5 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8fc80674 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8fd3e412 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x8fe9a97f thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7897d mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x8ff7c404 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9008e9d9 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x901576b3 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x901d90f3 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903c59a5 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x90452389 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x9049b38c devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x905ba09c sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x9063090c ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90b91b0b pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x90ba5f70 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x90bdb396 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x90d07b87 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x90d99c19 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x90da3297 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x90f2ca81 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x90f739e7 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x90f7cbbb dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x910a22c0 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x911a4f1b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x911f7db5 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x91280194 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x91288e93 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x914efd3e anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x91627fd4 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x91651d47 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x916b59e6 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9173ee3c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9176a1f2 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x918457bf ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x918d2fbe gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919d609a fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x919d7b38 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x91a898c1 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c3b48d dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x91c4aa2f device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c73e50 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x91e99b97 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x91edd40f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x9200050f l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9222157d crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x922a6be8 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x9238c3b1 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x9247582f crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924fe00b irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x9266764c devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92676ba0 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9275acaa pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x927814e7 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x929fcaf6 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x92a5383b of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x92a6016a uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92b5bcda phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x92b65322 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92c7fb3e percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d653ab tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e90ff2 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x93029b4f snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x93069efd fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x930899cd snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x932ef67b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x9366192e fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x937a8f6c ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x939e1b64 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x939e2754 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x93c33aed sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x93c56394 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cb87e2 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93ce29df crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x93d8a2cd pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f0e06b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x93f21158 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x93fa38aa tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x93fd69be dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x941583bd of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941bc5c8 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9429b479 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x94393415 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x9440c935 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x94418306 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x944356d5 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x94481267 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9452a957 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x9465335e sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x946c9f37 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9482d15d nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9483e297 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x94845ff2 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x948ba98a __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x949944fc usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x94ab03bb wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x94ab1bb7 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94bbf886 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94cc34da usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x94dccfe0 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x94e2a241 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x94f24b5b snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x94f8fcf3 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x94fbfe03 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950ce7e1 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9518cefd crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95301ddb fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954d3d90 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9558462f iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955e949b bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x95612a27 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x956938e9 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95703c22 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x9573a43f phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x957c8f0a trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x95833286 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x9595f4e2 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x95ad7515 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x95afd294 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x95b881fc of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d3d800 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x95de846e usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x95e40e30 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f68964 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9620b4c7 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x962500fa regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x962688e2 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL vmlinux 0x964a34f6 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x964a8267 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x964f5700 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9659442e devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x9673e0b7 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x96789fbb aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x967a7231 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x96801dee crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x968c9dee fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9690de92 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x9693b387 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x9698d2c7 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9699cd40 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x96b062a3 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x96b64bc7 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x96bb2470 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x96c5db6c ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96fe0f23 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x9704a1fd usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9717aedb ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97181730 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x971e3344 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9734e002 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9739d454 snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x97470788 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x97496b18 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x974a8246 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x974db783 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975f59f1 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x97774e64 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9779948d pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x977c6372 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x977eddbe of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x97837118 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x9785089b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x97857d86 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x978670e3 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x97b934a2 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x97c30fb5 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x97c349f5 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x97cc0ae5 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x97ccb1d6 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x97d252b9 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x97d42aaa tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97fc5c07 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x980691a4 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x9814e987 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9834887f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x98360add bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x983b7479 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x984e1ef2 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985cd6b1 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9883483a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x98868d68 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98943e4d of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x98a2cac1 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c5b9a5 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x98cd6eef exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x98d7fd5d page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x98e025ee gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98e73e7c nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98e9d07e __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x99050806 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x9915d766 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x99185adc sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x9926710e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x992c11e7 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9930b7fe rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x99591c35 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99670234 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996c402e edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x996fdabd mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x99700ec1 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x9978eb68 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x99796923 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x997b65f0 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x998eaad5 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x99925c8c vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x99944b83 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x999df8a0 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x99ae0113 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x99bc3164 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x99c14c54 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x99c9d620 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x99d286a9 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x99edfee5 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99fa89d4 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x9a031d5f power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x9a09a944 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a24c94d ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x9a550e07 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9a6857a5 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x9a711a63 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9a79cbfe ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9a7a95f2 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x9a87ab2d regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x9a98d701 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9aa04f0b md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x9ab36448 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac5e69a wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac969c5 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ac9d9dd usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9acc7262 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x9acf45a0 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b079e5b __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9b154b7d xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9b18a3e1 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x9b1dd646 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x9b29a312 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x9b491ee4 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9b507cf5 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b52dcba phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5ed715 dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x9b6d83a1 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL vmlinux 0x9b842fef __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x9b88f01f netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9550e1 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x9b9e13f4 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9bb93e19 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfa1ee2 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL vmlinux 0x9c02dd14 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9c0757ec nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x9c157017 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9c319b58 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9c47be81 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x9c4f18c0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9c65d757 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c74ebd1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8e734c trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ca6967d sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x9cae93c0 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x9cb64a8e rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9cb9bea6 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9cbc3bd3 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccbc4d3 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x9ccc490a edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x9cd797aa ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9cda24dc devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x9ce2b416 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x9ce7bac0 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x9ce80b0d mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d17dd86 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9d186fb3 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9d29e422 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d3cf74e of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x9d4515da mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9d5ba889 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x9d60d5c5 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x9d688280 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9d9809c5 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9d9aef4c rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9da27c3d crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x9da290e1 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x9db5942d scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x9dc9cad9 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9ddb6221 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9de45c89 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9df0cac6 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x9df58c0f sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9dffc475 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x9e0c68b0 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x9e1499cb phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x9e1667ee skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x9e752dbc uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x9e97bffb regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x9e99a999 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0x9eb9ad61 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x9ebe2853 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x9ecd392b tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x9ed28fb4 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eedff91 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x9ef87e4e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x9eff1ca4 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9f13af5b __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x9f1fd948 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x9f22175f nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x9f2ffedc __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x9f358ca2 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9f381667 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x9f384b27 md_run +EXPORT_SYMBOL_GPL vmlinux 0x9f3d995f devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x9f42abda extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x9f430268 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x9f4621c8 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f606632 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9f74478b regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9f7aefc3 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x9f7e7fee regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x9f8c3885 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x9f9aa0f3 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x9f9b81e6 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9fa32059 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x9fc79257 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fedae3e devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9ffa2909 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xa0067cd9 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xa009bc1e pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa00ce540 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xa011e36a dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa02c4abf tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xa02f3300 sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0xa02f46f3 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa06756f4 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xa08862b5 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xa089bbde i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xa09fc42a dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xa0a8038c amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xa0a84fc9 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xa0a97997 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xa0e1c252 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0ee1f00 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa102bd5d regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xa1123bcf regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa1174884 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xa12d79ee mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xa12ff211 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xa134ff00 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xa139dff5 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa142e7ce dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xa15391fd spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xa17382d3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa177a092 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa18080b8 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa1900001 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa1a7c3c9 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xa1d36c61 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xa1d494b6 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xa1d6a274 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa218c741 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xa2232c00 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xa2317b6c tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xa236e6aa tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xa24009da spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xa24707a8 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa2507d36 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27ee0a9 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa282687d dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa2891d54 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xa29dccd7 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa2a7baf3 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xa2a9950b of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xa2b02a9a gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b9286f snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2ca0fe3 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa2d039b0 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e201db ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa2e3e98b tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xa310b52e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3229bad udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xa323087d snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xa338b700 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa345c475 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa368404b fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38e7632 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xa3a0178a ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a6ab5e regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa3ac241e tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xa3ad122c sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa3c222fb gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xa3c2df08 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xa3c3d990 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa3cae89a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3db4506 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f649f2 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40cdbd1 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa40e2857 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4186457 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa426f401 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0xa42df931 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa436e060 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xa43ca325 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xa446314f dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa4666401 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xa4787711 sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa48101d8 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49db9b2 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa4d06c16 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa4d3a9d1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xa4e5c8c9 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa4f53445 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa5019700 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa50804b4 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xa51735e7 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa51cb436 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa52263f2 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa5286233 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53ce965 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xa53ee4ec do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0xa560ca0d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xa57661f0 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa57b5779 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa57d3b06 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xa588b88d ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xa5a6bda6 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xa5abfea9 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa5b2efbe nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xa5b31d48 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa5b6c7e1 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xa5c3dc50 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xa5c748d4 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e577a5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xa5ea473d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xa5eb683d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f983b6 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xa5faf573 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa604f857 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xa6188efe irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xa62afaf1 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa64c2609 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa65becf8 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa65ca3cf of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa66090e4 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa68672ff __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa69108c7 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a300e5 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6bdba72 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xa6dec1cf fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6f2222c scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xa707e56a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa71e0cee snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xa721a6ea gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xa73247ab devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xa7399842 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xa74f1650 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa753ce71 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xa75b0795 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0xa75d92ac devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa7619d3f of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xa7646a11 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xa765a164 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xa7769330 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa7bf0afd pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7fd7d6b __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xa802e6b0 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xa810ae3f gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xa815fcf8 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xa81ad2d1 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xa8264e26 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa865429e __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xa8656f58 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xa87edba2 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xa8874966 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xa8be1826 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xa8cdc098 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa8e56568 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0xa91cd4ed usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa953a9ed evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xa95d20f5 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa9951a52 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xa996f660 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99cb5fc sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a040a0 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xa9a3f1ae uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xa9ac62ac put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa9b2b238 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa9c43128 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xa9d843ef lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xa9d96b37 nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xaa04cf16 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xaa05ebe3 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa395fe6 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xaa42f711 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa4533e2 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa49d8ef register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xaa4b7d41 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xaa5b711e pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xaa6f8236 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaa71b580 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xaa7565d0 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0xaa767b37 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xaa8eb056 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xaa974d20 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xaaa37dea pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xaaa5751e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaab77d2 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xaab22bb4 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xaab24f53 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xaabb4bb5 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xaac43139 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xaad88b9a devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xaae0ad71 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaee0f05 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xaaf28fdb pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaaf9a2e4 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xab12d701 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xab18dbcc bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xab28f39c da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xab2b3b69 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xab2de4c9 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xab35cf6f rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xab3b38cc of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xab3b57de tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xab5750b2 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xab5c9b8b rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xab6a9c5e devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xab75f79f usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xab76dfe1 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab8407ec inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab8918a7 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xab8a8c78 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaba7b229 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc96694 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabce70e2 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xabd3ceb5 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xabe8743a mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xabecd9eb fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xabfc66ca da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xac183c92 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xac1c0124 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xac31ea4c serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac3a6945 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xac3f8a9a usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0xac412224 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xac799106 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xac84d6f7 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xac893daf led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xacb0f755 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc0ebe4 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xacc15ba4 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xaccb0555 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xacdf39a9 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad1b3bd7 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xad40c427 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad433136 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4f32eb stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5d6c53 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xad5f0eaf pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad65cf4f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0xad68eef3 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xad6c9bb3 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xad752dcf snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad8bd37d cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xad8e97c7 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xad99c16e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadbbce8b snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xadda5122 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xade07ecf nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL vmlinux 0xadf2dd60 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xadf6e59f ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xadfcc748 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xae12644a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xae24eda1 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xae2b4cf5 snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0xae34b2c4 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae51dac6 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81c3a8 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xae9795e0 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaea67764 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xaea7704c of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xaebd2a55 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xaebec320 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xaee08439 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xaee314aa vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xaee61d39 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xaee9a8b1 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaefb8506 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xaefc43c2 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xaf1c7fdd tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xaf1f4077 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0xaf29d902 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xaf33f958 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xaf3468db ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf55f20a stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaf819460 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf836ba9 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xaf889a08 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf9d22bc mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xafa890bc scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xafad76ab rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xafbb62c4 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xafc20641 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xafd6e8c2 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xafdbe83a nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe22510 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff05eaf serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xaff8a652 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xb00d7c0b iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb01544a0 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xb022cdc8 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xb0291e49 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb03d56b5 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xb041eaa0 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb05d4c4d __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xb05d65e6 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xb06343d0 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb0659de0 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xb0666a37 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb076ff97 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb085163f iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb089b08e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb0a3efca ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb0b13711 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c069b9 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb0c15bc9 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb0dcf1bd rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb1121d54 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb115c11a blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb11aaf76 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12885a3 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xb13634f8 md_start +EXPORT_SYMBOL_GPL vmlinux 0xb13c58d5 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xb13fcdb8 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb1401dfd dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1595caf mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb15c4f00 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb1628930 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb1642178 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb1667fac put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb16a28f3 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb17a40f2 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb185dffb mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0xb19f7160 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1a6845a pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb1a75e2c snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xb1a98b5b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d99ff3 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xb1dc5fd0 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f4c308 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2308ef8 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xb2356d7b ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xb23e6c40 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2432a3a locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xb245048f usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xb24d4abc i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb2562124 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xb25a5bc8 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xb25de4a4 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26f875c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xb2720a33 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xb28244aa tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xb2b1f083 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb2b20ad0 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c2a047 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e8d4dd devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2f0d192 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb2f72325 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2fe133a of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb312037f genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb332243c pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb3403614 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb34f5124 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xb3508228 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb35f8403 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xb361eea3 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xb365c565 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb3825766 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0xb382bca2 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xb38719c0 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xb3891e18 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0xb39293a7 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xb39fb8ef vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb3acf6e9 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb3b909b4 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb3bd0fa9 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0xb3c4af88 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb3dfbf66 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xb3f50171 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb3f538cb page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0xb3fc034f sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xb3fd6129 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xb3fed17b dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xb407d9f4 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb411236d ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xb422b4f9 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb4266690 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb42697f0 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4291f3b hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb42d26d0 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb442ee00 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0xb443a9c9 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4600706 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb466fa94 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xb4717103 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xb4816055 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xb481c47c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb482c0b0 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb499a7c1 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0xb4b4634b efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4b9bd83 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb4c0b2ce tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb4d4c0f8 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4e12020 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xb4e9c42f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f57f3b l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xb4fa8001 sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xb50e7860 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5254feb alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5576d67 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb57cc446 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xb591fab8 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5962b3c regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb5a6385a mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xb5b19771 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb5bb9b79 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb60a3ca0 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63f8b6f fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb677f1f1 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb678c323 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb67b7cd7 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xb6953fc9 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb6a76f7a pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6aa09dc fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb6b68c32 nand_reset +EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb6d3e4fc PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eb97ea regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb6fc30d0 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb711ec9e dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7354a16 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xb737a9ae gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb753acf0 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb7613af8 cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb76e708f md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb7817127 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb782ea18 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78de330 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xb7938411 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xb7941341 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xb795029b vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb79da2c9 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c280ee sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7f5235f fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xb7f76ac6 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb8029737 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb832bc5a mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xb83f7d75 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb842f1b0 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xb864ad0d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xb884f77f devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb88c91ec dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89cb4c1 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb8a2d9e6 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xb8a44781 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8a64d4a sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0xb8abb8d4 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xb8b84ca5 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb8b8e11b nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb8c7d5ad class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e4c385 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xb8eae21d snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb9009373 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb9029531 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb90a9f1b pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb92c044c dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb95e5972 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96a684c regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb96dbc84 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb97ae2c4 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xb9aed8e0 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c272f0 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cb9f17 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d91377 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb9e34a7d disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xb9e49eb3 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f84362 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xba017f37 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xba0e97ef fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xba19f8a6 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0xba29f414 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2db82e unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xba374204 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xba45f1b2 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0xba483e64 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xba64ae76 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xba656cc3 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xba701a1a tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xba8ece4c mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xba9d8040 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xbaa1e539 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac0a598 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xbac18168 nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbac27ce4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xbac5646d sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xbad5297a bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafa37e3 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xbb01bd4b ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0babf5 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0c4c70 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb0cba45 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xbb200dda dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2578e4 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb321d04 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xbb3841c6 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbb402567 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xbb40e2e8 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb59bc45 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xbb5a9f84 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbb680c95 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb74efc4 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbb78309c kill_device +EXPORT_SYMBOL_GPL vmlinux 0xbb7e2a33 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbb877368 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xbb87c40c regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xbb93535b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xbbac3bc6 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0xbbade36c mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xbbb2d307 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbbd7ef6 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbd91e90 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xbbef734e irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xbbff50ee ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xbc08fb77 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xbc0b00a1 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xbc244724 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xbc39572a regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4a8402 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xbc5f3fca of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xbc64fe69 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8c6621 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xbc901d50 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccf5419 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcea9274 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xbcee720b iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd1e27c0 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd41703c wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbd52cef6 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xbd699560 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xbd6db30a driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xbd8ee9d2 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xbd8f9fe7 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xbd972856 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbd9c6a09 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xbdae1e6e regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xbdb5d461 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xbdb736ae usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbdb991f8 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xbdc7283b regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xbdcfff5c snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0xbdd3273e of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xbdd98001 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0xbddd431f rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xbde41b72 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbdea5d78 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xbdf19777 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xbe0af7dc dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xbe13cdb7 sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0xbe558cbe to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe61423d genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe69f3a5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe6d3de8 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea77da8 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xbea9807b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbeb870eb regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xbecc4c42 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0xbee5137c devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbefb4bff regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbf031ac9 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0597fa ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xbf214750 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbf279658 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xbf33bfae pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xbf349714 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xbf35d770 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xbf3936e9 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf5d7978 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xbf84b64e snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc7bb35 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbfcd2fb1 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe84dc9 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xbfee178c dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xbffe9ec9 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc003dc52 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc00471c9 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc02170be crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xc02cdec9 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xc02e9d50 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xc03bf17b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc04a8475 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xc0516614 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc07e019c gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc07ea2a3 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc07faad4 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc0876cb8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xc088d19a dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xc08cf3df __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0930e30 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0aa37e1 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xc0ba6365 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc0c7c211 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xc0c81158 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f4ae36 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xc0f5e292 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xc1018f00 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc10719a1 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc108a60a ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc129b2d0 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0xc14f2b69 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xc15fd87e nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0xc160f38f mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xc1620bd9 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc16cbb27 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1830683 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc19b1b75 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1f5b322 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xc1f9977a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xc2143e76 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xc2196bb8 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc21cf85c sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xc2294bbf bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a5ad5 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xc22e0366 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc24ae945 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xc2575dda serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc27af48a phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xc287d8fb mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc298164f dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a7daf8 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2abf962 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xc2af89a0 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xc2b436fd adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2d130b0 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc2d6d1d8 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc2d7d30b blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find +EXPORT_SYMBOL_GPL vmlinux 0xc2dd5336 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xc320cd3f amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34e063b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xc34f1468 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xc355a51a pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xc366eb82 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37452cb thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xc37547e2 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc39872d7 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc3acecf6 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xc3b9b1a5 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc3bc8905 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d85eb4 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xc3ddafcb sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e76ed7 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xc3e7b7ad __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3fe7b7f regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xc401b57c switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0xc4078938 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xc408309e vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xc40ded4e bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4108d5f gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc418d14a ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc42346a0 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42c475a cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xc433ec79 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc4368168 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc439f464 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc469e73a nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4747c3c ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc478f191 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xc47a3590 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xc488766b device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc488c82b net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby +EXPORT_SYMBOL_GPL vmlinux 0xc497dd2a call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xc4a0cc9b nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc4a50695 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f2b656 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xc4f32253 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xc4f9139c handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0xc50ad0ca iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xc540b798 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xc5506cc9 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc550c8fd serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc5513484 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc583aa96 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc58979a1 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58efdad devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b5f883 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xc5bd25ce of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc5c49b90 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xc5c4d9e4 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0xc5c58a6d sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0xc5d4de38 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xc5d70b07 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5e924c0 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xc5eb25ef usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc607381e to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc623d873 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xc62bd581 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xc636135f dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6376a06 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xc63ca555 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xc63d0b55 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc64b3010 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xc6676b0e devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc67bb108 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc6909458 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xc691bc89 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a84181 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc6b277de devres_get +EXPORT_SYMBOL_GPL vmlinux 0xc6cf1cdc ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc6d02895 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xc6d4e24c component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xc6e15270 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc6e3caa6 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0xc6e97adf blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6f00d5b sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc6fb4939 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xc711975d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc723429b ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc730cec9 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xc734a3c8 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xc737317f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xc73e559f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xc74188b2 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xc74a1acd crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc763a958 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc770efb2 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0xc772dd4d gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc773f358 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xc77dfab2 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xc7816034 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc783470e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc78678e2 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xc78f0176 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80c2dc9 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc814fec0 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc83aa89f tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xc84d8d32 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86209e2 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc866b661 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xc889b193 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc8916dfd split_page +EXPORT_SYMBOL_GPL vmlinux 0xc896c9ad dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc8a847f9 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc8bf3243 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xc8c6590b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xc8cacb39 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xc8d83ae9 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8eb5660 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc8f2eaf0 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc90d4619 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc910942d sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xc9224a9a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc947e8c4 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc95093ad regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95c2a5e pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xc95ec754 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc971580a dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc97ab327 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9960308 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc9968778 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc9985756 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc999e1e2 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xc99da451 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0xc9a3b8ca usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9aa1203 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xc9c08a3a devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xc9d0d60f devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xc9e40e5c register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc9e46633 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xc9fed88f balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xca2ba262 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca2ba9db usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xca3ea7a9 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca46a7d1 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xca502628 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xca65f077 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7293df ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7ddd32 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xca8d3ef5 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcab2627a ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcac76f08 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcacd0504 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xcad7f530 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xcadebb80 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcae8bfce blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xcaedf721 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0xcaef4ad2 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xcaf1f656 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xcb035cf4 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xcb0f049e sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1763ac mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xcb1aad1e exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2f7a7c pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xcb4c9187 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb52b9d7 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xcb539779 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5aa628 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb6a84d1 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xcb7f66c4 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xcb9659ad snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xcba36fc5 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xcba6f0bc xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xcbb736ed irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcbb779be blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xcbbf0627 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xcbc8ffe9 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xcbd09df7 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcbd67094 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xcbe04fcd seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xcbe051d0 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xcbf700e1 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xcc1e8396 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xcc1f35d8 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc34f155 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xcc36ae4e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3b6f66 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc470b97 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcc48b387 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xcc4c7b95 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcc5b721c wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xcc6cbc57 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xcc7b7a40 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xcc895a8a regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xcc9cf60a __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xccab435a snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0xccb1dc83 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xccbfde78 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccf151f9 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfdcb78 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xccff02aa pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2fd567 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7a207a synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xcd7e3329 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xcd88f070 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9375b0 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9f9ceb i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xcda30e5f virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xcda49911 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcda74778 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xcdb025e3 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbac57a phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcdc04c57 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xcdc4f5f8 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd91c01 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xcddde50d l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcde20024 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xcde9c079 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xcdee6484 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xcdf220c3 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xce0e7aaf __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xce0edd45 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xce12aafc devres_find +EXPORT_SYMBOL_GPL vmlinux 0xce171017 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xce369fc6 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xce3faef6 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xce42c836 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xce45af00 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xce522f8d icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xce685bda __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6f136e __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xce7d3393 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xce8b828f otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xceace44b extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xceb63f57 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xcec08dd4 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xcec0a994 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xcedabd0d rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcef9a4ae serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xceff87fe add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xcf0e1716 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xcf14d766 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xcf182dc1 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf308575 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xcf31a24a fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xcf42f3eb dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xcf4c320b apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xcf55c6a8 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xcf61f1ea put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcf6d2bc5 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0xcf80b0f1 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xcf879cfc device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xcfa83939 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfbef2b8 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc73b38 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcff7e141 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xd020fefa inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xd0232eb7 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd032095b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd03582d3 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04659d6 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd059a14b __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07b00cc of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0ab036e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xd0abff0c nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xd0afe429 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xd0b53128 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd0bb583b synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d21837 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xd0da0d62 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dd510d ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0e56139 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd0ec8137 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd0f6b82e page_endio +EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xd100553b ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xd112bf48 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1508362 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xd161e971 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xd166bb06 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xd17d2576 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd1a5b5b7 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ff02 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd1af196d dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd1afccc0 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d5f664 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd1d7efa4 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd1ec4591 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd215b414 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd225cb75 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd2291d4e bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xd22c56bf ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xd2488670 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xd24c8cf2 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2747b6e sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xd27cf8be fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd28094fd devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd282efeb snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0xd297ad57 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xd29823cb phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd2ac087a fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xd2af0c25 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b49b4c iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd2c643a6 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xd2c77873 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xd2f7c392 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd30380ab devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xd30bb1ec regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xd310c15b __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd32ab9b9 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd32f07ec ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd3328595 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33cb0c6 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xd345c6d9 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xd3499e40 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0xd358f656 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xd3640ae3 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xd366995d pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xd3842410 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xd391a76d strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xd395b66e nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xd39becf3 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a6d6b2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xd3aa0489 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xd3bf9dbd extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0xd3d35376 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd3d6cc77 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xd3e26dd1 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd400d14a devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd401f3ef irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4035ffa adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xd4055114 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xd4079f39 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xd40bc981 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd40d0bab devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL vmlinux 0xd4261495 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4331528 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xd43349f9 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xd4387280 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd43a6e33 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44ed3ac class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd4648397 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd4720464 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd47a4e97 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xd47af47b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0xd4adc2fa bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c2a357 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0xd4c6e1f6 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4d1d71c device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f93c3f blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xd50a4983 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd511381e sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xd511ca03 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd5152685 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd518e535 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd522210f snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd536ba90 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd53f2578 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xd5402612 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54a0938 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5705d19 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd57a312c request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xd57c0cb0 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xd584f451 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xd58a6a3e devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xd595134e of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xd5acca54 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xd5b6f6c4 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xd5d49389 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xd5de16da splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xd5e73205 snd_ctl_register_layer +EXPORT_SYMBOL_GPL vmlinux 0xd60bac41 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xd61a4a03 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd61db669 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xd63168ac blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xd6332496 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd64dabb5 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd65a3c50 xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd65c2fb1 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67a5efc irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xd68289a0 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xd699276f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd6c2451a lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xd6ca3ba8 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd6cd2484 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd6d9ca86 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd6e2b831 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd70bbb8a xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xd70c6a88 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xd70cb404 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xd71ab8c0 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd71b3653 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd722649c icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xd72f6c0c smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd746f412 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd75af323 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd7610e76 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd770b10c tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd77f5dfe __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd78220f9 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd78619e8 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xd79598a7 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd7a74011 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xd7b4765d mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd7bdbd05 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7f51b52 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd802402a phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xd80d6ab3 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd80dcb8a crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd812e569 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xd813fbb7 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xd81973fc lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xd82f9bc2 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd83fa672 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd86b781e ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xd87438bf pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xd8774842 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8868eb7 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xd8aed8c5 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xd8b725c3 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xd8c27e8c __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd8c584a6 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd8caeb9e debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd8cbcddb crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xd8d083cc fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8d12c46 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd8d2435a __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8d752eb of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd8dbbe47 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd8e6ea47 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xd8f4c5c3 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd8f4e036 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xd8f92fba pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd90b66a9 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xd9104ea6 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd940e6f4 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd94438eb ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0xd9894f32 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd9b35c3a fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xd9b38d59 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xd9c9cf46 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9cd7c51 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xd9d71ece sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xd9d86b19 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ea2ce3 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xd9ff1e33 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda1a437e devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xda28c702 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xda2f9443 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xda30663c sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda55e19c usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xda6280da dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda7c8627 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda8e98c7 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xda92bc7d vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xdaa7db8c pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xdaaa658b acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xdab33edc ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab5a469 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xdac3e527 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdae09b81 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xdae1f738 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xdaf208fa rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdaff7fad __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdb1d1c1a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xdb202007 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdb26b216 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xdb44aa78 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xdb4ad5a6 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xdb55d2ed regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xdb5a357f snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0xdb65cbe8 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xdb8281e0 of_css +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8deada sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xdb914831 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xdb97a436 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xdbb31f59 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xdbc64e14 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xdbca3a33 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdd2b71 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbe26328 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfad73a fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xdbfdcdb4 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0fdc47 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xdc1c6ba6 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdc2aa5c7 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdc2e1ef2 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xdc3098c4 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc530c9e snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0xdc58cd6f pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xdc60c620 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc90f09f gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca0d478 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xdcbe0623 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcd5ff6a power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xdcdf3853 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xdceadd90 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1184cc usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd177f2f serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xdd286e29 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdd304c8b dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3e8129 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xdd43ffbb crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xdd453695 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xdd47542b irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd4f3d5d of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xdd5a544e sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xdd5c94d7 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xdd5d39e1 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd66db67 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0xdd90d3fc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xdd97a665 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xdd9a5096 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xdd9da7a0 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xdda10161 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdda92234 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddbf4aa3 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xddc5fd79 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0xdddc687a devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xdde366d3 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xddebb151 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xddebd021 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xddf0e282 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xddf267a1 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0xddfa21c8 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xde00c9ba device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde0592c4 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xde191188 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xde2b8ea8 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xde336d7d pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xde3c2bd1 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xde49e0a8 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xde4a32b1 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xde4a3ce5 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xde52cb9b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xde5db505 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xde6b7315 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7d58c6 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xde8d3f26 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xde8e2f2f regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde9aac3a vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdea88fd4 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xdead066b devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xdeb0392f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xdec62d84 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdee48465 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xdefc0d0d of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xdf048cde get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xdf06d63b udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf493a33 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xdf4b1e05 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xdf4ecdea devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xdf8b7bae tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xdf97ef4f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xdf98ad09 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xdf9b2469 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xdfab8ef1 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfb1deb0 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xdfb3c140 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xdfbad8cd blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xdfc400c3 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xdfc43445 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xdfc843af platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfce6101 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xdfda3f6f tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xdfe2145b sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xdff044a4 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xdff279df arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xdff52c32 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xe0152c35 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe0180886 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xe0313c7a blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xe03553ba tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xe0402bfd bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05ebfc9 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xe074ae3e crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xe085a417 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe087786a blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xe0951ae1 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xe0a532a5 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bae067 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe0c1ff20 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xe0c3eba9 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xe0cc6d49 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe0d2b63d usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xe0f74f28 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0f9d7db uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe10cfd43 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe118d8c9 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xe13912db snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xe13d1b94 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xe143bd03 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe147c549 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xe152126e account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe183a6a3 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0xe192dfe1 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0xe1933a03 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe194cba4 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c0b921 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1e0200f regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xe1e6d0de ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xe1f298d2 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0xe1fc6a63 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0xe219b6ae skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xe232db3d regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xe260f639 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xe27086fc to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe278b384 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe27d5fce of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe286329e crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xe2af6cde regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b5ed00 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xe2cce76d sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0xe2d25d72 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe2e0f798 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe2e8a988 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe2f6b3bf devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xe300d8d0 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe304d553 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xe306b250 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xe30ff43f virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe32caf51 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe346989f nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xe35efc96 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe35f4213 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xe38f4027 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b10cfb hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xe3b18d19 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xe3cb1acd vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xe3d54761 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xe3de08a8 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xe3e91d3d snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0xe3eb6c6c serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xe3ec330d rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe3fabe87 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe416df4e dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xe41c180c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xe420366b inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4495781 cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe44fce3c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xe45854f3 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xe45a28e4 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe466a423 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe4838eb0 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b61a95 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4c0141b fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xe4c03234 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xe4d687ae balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f19d62 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe509df26 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe51e1738 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe5253fd1 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe565fd0d free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xe568bc31 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xe569f395 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0xe56ca8e3 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xe575d105 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xe5829395 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe583c9e5 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xe584b0fe pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe593c11c pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xe59ac2f4 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe59bb95b ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0xe5a1eb8a ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe5b433bc register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe5bcb980 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5cca2d2 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe5f8c473 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xe604efd7 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe612ca67 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe617c990 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xe61d9f4e devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xe627199d fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe629440f iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xe631c7b9 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe633eab8 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xe6387b61 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe650a7bb usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0xe659bc9a snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xe66e4765 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6b624f5 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe6ba9188 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xe6badd25 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe6bd424e regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xe6c687a4 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe6c903c0 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6db459f mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f7770e espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xe6fd7f4d ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe7025317 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xe702a74c snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0xe7030d06 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe70cca81 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xe72e6b61 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe74a6222 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xe74d7c4b usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe759584c nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xe75ed694 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe773b774 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe7761203 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7b7fa73 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe7cad425 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7dd3620 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe7e97091 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe7ee3d2d dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe815431e usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xe8189465 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81c55d8 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe82b27a0 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xe83cd682 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe83e5554 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe84b415d tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8656d0e dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xe867c369 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xe87e5388 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xe87e93b4 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe87f0723 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe8c19b79 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xe8cb8d7b nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe8ec5f64 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xe8f8b51d pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xe910d283 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9122190 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9244fa2 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe92c49ba usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xe9362144 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0xe938ad74 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe948f9fa devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe94c4c04 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe954ca47 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xe9551964 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9754891 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe9856147 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe991c1d3 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xe9975180 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe9a9422e umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xe9be2109 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xe9c31654 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9de7919 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xe9e841b4 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1461b9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xea3016a5 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xea314986 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3c036f seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xea42ad78 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xea48fe1b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xea50b123 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea5606aa blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xea7759ca sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xea7a7d67 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xea84203e __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xea984cc6 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xea9e345c lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xeaa24159 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeaae3901 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xeab587ca devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xeab85072 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xeab86422 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae2f014 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xeb002130 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xeb0023e4 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0xeb3ec9e4 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xeb3f89c4 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xeb46b7ee mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0xeb49c46b snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xeb54952d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0xeb5a5c1f device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeb6d6df8 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb819337 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xeb8f3362 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xeb94135c ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba3b0de clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xebb10593 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebbf0f49 snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0xebc58780 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd692c5 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xebd74b74 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xebfe9fad crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xec04f93e tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xec0fb240 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xec15ac19 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xec1bd3f4 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xec2f0aa9 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xec41abc0 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xec41bcfa mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xec6e50f8 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xec7123d0 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xec73b02d devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec7f8f90 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xeca100db devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xeca189ea of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xecb68e0c ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xecb80879 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xecb8631d regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xece82c64 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xecf24537 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xecf5b9c0 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xecfbdff4 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xecff4eb4 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xed06e703 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xed13397a ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xed177e9a dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xed2713a3 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0xed3b4930 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xed3ff3d8 nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0xed5eb6c9 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xed5ef22f tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xed6c2c37 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xed7ac20a devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xed80fbc0 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xed8247ee snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0xed8b9351 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xeda5bd1d clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xedaa2186 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xedabf9be ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xedb772d0 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xedb7874b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0xedc75c62 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xedd3154b iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xedd66920 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xedf3c870 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xedfee31d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xee09655e ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3f03a5 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0xee40d0fc __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xee4ca691 nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0xee4f4896 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee88f2ad platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xee9010f3 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xee9f560b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xeea7acf4 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xeec0d85e edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xeec9837d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xeedb2420 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee58a50 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xeee5fe32 bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeef29241 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xeef71ed7 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef0ba19a snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xef2524e0 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2ed35d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0xef3f4d1f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4b4349 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xef544d97 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xef5d2582 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef65c7f5 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef72ddc6 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xef78ba16 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xef798c65 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef9b1485 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xef9cfe50 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0xefae92db fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xefbf1f06 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xefc0aeaa devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xefc23548 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xefc85166 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xefea9d4c aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xf01d9522 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf021fb06 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf050cb8e usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05eb8e4 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf063fa2a sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf07148cf pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf0858466 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xf08edc65 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09165f6 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf092bd6d posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xf0a7751b usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf0e7bc46 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xf0eb6670 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0xf1012b58 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xf1019498 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xf10a1147 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xf10b144f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xf10f402c dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf11b207b usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf12311da devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf12cc4f2 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf136775f find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xf13fbf28 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xf14a9678 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xf15ffdcd __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xf16adc55 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xf16fb5d1 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0xf170328f skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf171abba pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xf17c3c35 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18fc961 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf1a2912b of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xf1cad00c dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xf1ec71e7 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0xf2058707 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xf21ce2aa sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22cf496 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xf22d1bfb device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf22e5503 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xf2407b65 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf261511a gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2734ea7 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xf27cdebf irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf28a4c59 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a2e629 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xf2b869f0 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf2bfa419 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2c12c6c snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0xf2c717fe device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf309c242 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3136a3b sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33de568 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf3527aaf extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf3568f97 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xf356b7ec pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xf3610fb1 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf370cb6e regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf37475d6 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xf3752898 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38b9d7d add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf38c922c of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xf38e6036 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xf39663d1 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xf3a53b3f ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xf3a60d67 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf3ae0d38 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3c97878 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xf3cf61fc spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xf3d4e884 snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0xf3d6b734 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xf3dd6ee1 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3ded577 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf3ec61f0 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xf4074876 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xf40f677a trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf4114dc6 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xf42181df pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xf4287273 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xf451101c scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xf483a41f usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4850dfc mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf49583e7 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf498778c devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0xf4a20da9 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b37d13 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf4b7c5ff blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xf4b900aa platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf4c265df dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0xf4c2e596 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xf4c93dd0 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4cf5bec pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf5016c7c pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf51822d6 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf51e1afd devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xf52b9b5e snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xf5398218 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xf53f962a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf541e88f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54d82ff spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5575676 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf576ea6f ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf589ff13 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf58f53b1 sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf593142f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a449bf device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xf5b8140f snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0xf5d76f3c pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xf5e75e40 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf62b96e5 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf63946d9 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf63c422a tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf64c7801 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xf64def29 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf667c7fa hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xf66896a8 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf66c93ea of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf670de6c unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf6718e66 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xf68054da to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf6818869 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xf68a3d91 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf68ba63d cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xf6af76a2 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xf6bdcad7 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c50d52 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d4a550 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f0efbc snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0xf6f7440e ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf6fc2d65 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf70c0951 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf713ddc8 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xf726bde7 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf728ee70 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xf7293e68 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72d9289 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7367b15 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf73a934b class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf746e4fe irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf75080b9 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf752a147 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf785ae80 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf7aa0465 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xf7b243b0 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xf7b98445 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf7bba7d4 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7d17e8b tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xf7d6b617 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xf7d870ce pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf800cec4 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf80c276f rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xf80cadd3 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xf80e6dd1 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xf8160a10 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xf81a6084 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xf81b26c1 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xf81ca25a nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xf82d6834 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf82e4b66 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf842ce14 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf865ed3f pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xf86825ae device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf884c9e1 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xf8bc5693 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf8d12af0 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf8de09d8 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf8f1c777 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf90631ad crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf9164683 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf917dcc4 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xf92e2d63 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0xf92fc6d7 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xf939ac14 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf93aed92 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf93f8af1 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xf94519a2 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf9494bdb snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xf94b994d ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf94d4b29 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xf9529d12 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95c35e8 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf964e0a6 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0xf9880e62 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xf9902eaa usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xf999bdca ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b53e96 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xf9b8f266 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf9cb6a00 nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xf9d5ebe1 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xf9d8a829 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xf9d9c2ab pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9dd657c nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xf9f88e92 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xf9fab719 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf9fba5df cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa024222 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0xfa06d3c2 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xfa1c68b6 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb96e iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xfa41d9c1 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xfa5cb27d power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xfa5d8967 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xfa5eff03 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xfa7e515a pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xfa90b198 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfaa1531b ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xfaac1366 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfaafa18a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab8407e crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xfac35655 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaebb355 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL vmlinux 0xfafb5ed9 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xfb0d4a3e devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb2c1803 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb418cf6 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xfb4e4cd8 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xfb505b51 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfb5c41c2 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xfb6760bb rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xfb6a2dd2 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last +EXPORT_SYMBOL_GPL vmlinux 0xfb89aea2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xfb8c2577 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xfbb3cfd1 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xfbbb8b37 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc21f5e dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xfbc33a6c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xfbd4112e snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfc0094d6 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc188ad3 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc216a0d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfc23c343 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xfc28d208 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xfc365cef of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xfc44722c switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xfc4a1bfd crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfc4eafec __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xfc519ac8 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xfc5489e4 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfc8b43a7 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xfc94b340 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xfcbd7106 mmput +EXPORT_SYMBOL_GPL vmlinux 0xfcc02fdb ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xfcc90e9d mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0xfcd09091 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xfcd60252 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xfce313b3 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0xfcf6fd0d metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcffe235 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfd26a2ba relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xfd30e76d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0xfd47405d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfd544b19 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL vmlinux 0xfd6c91fb spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xfd9e512f xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbe475c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfde174c5 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xfde19a28 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xfde748f5 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfde8985f ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe0ced4d synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1f53af crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xfe1fa524 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xfe222287 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xfe2547bb get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xfe25a3ab fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xfe36d02c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe52e029 device_create +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe772aa3 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xfe7a0d5c ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfe88d3a1 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe8e9930 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xfe95dc69 nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeadda4d serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfee80a92 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0bee06 virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff250cbc fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3d75c7 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff598833 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff807556 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8f51f9 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xff99de24 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb0833b icc_get +EXPORT_SYMBOL_GPL vmlinux 0xffb7076e umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xffb83783 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xffc1f3cd usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xffd0dfad rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xffd1123f save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xffe0f837 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xffe24de4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xffef6eb5 snd_soc_add_component +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IIO_HID EXPORT_SYMBOL 0x01bc4a9e hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x043d7c79 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x09acd897 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x15f90e1f hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x1d829ad4 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6dbc0557 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x74eb5423 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7b4053e4 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9d6d6d11 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9f8c5e32 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe0e1232e hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf64f71c1 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1d982565 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7265e58f hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x8f932aed hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xaf944d10 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x8d881ca1 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x9e629726 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x09d83eca mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x0a6591bf mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1628c877 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2097653f mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x39381546 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4b1da016 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x514d5de2 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8d8b03fe __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x90b5ad6a chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa7e6362e mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb2a90d17 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc42914a7 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdfbdfa38 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfd63617b mcb_request_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5975276d nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x77aafa23 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa0e41b31 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbfa88c20 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc1d46a40 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x2bc6b471 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3724cd00 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4e08aa33 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4e3c13bc pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x594322a3 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5b34608c pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5cf2920a pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5d28c3e6 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6e5549b0 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x867d0d30 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8815fd70 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa49313fe pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb4ea62c6 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbc4858af pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc6696ffa pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe4a29fb9 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe73c8b89 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe8a372d9 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf2165aa7 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +USB_STORAGE EXPORT_SYMBOL_GPL 0x012d07f9 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1814f5b3 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bbccc60 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x21e62482 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2d6148ed usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x33f6d8c9 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3f317864 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4eaccdbc usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5089a7af usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x72199ae7 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7c977ce9 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7e590882 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x851aa95f usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9d329321 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa2acf756 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb9e5e221 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4a7b52d usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc5a1fd1 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcdae133e usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd5bce7b9 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdf3ca285 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeef227ad usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf8316434 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfdb370d7 usb_stor_suspend drivers/usb/storage/usb-storage diff --git a/debian.master/abi/armhf/generic-lpae.compiler b/debian.master/abi/armhf/generic-lpae.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/armhf/generic-lpae.modules b/debian.master/abi/armhf/generic-lpae.modules new file mode 100644 index 00000000000000..e6bc54518d7143 --- /dev/null +++ b/debian.master/abi/armhf/generic-lpae.modules @@ -0,0 +1,6470 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a53-pll +a7-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +abp060mg +acard-ahci +acecad +acenic +acp_audio_dma +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9467 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aes-arm +aes-arm-bs +aes-arm-ce +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_dm816 +ahci_mtk +ahci_mvebu +ahci_qoriq +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +al3010 +al3320a +al_mc_edac +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-cvp +altera-fpga2sdram +altera-freeze-bridge +altera-hps2fpga +altera-msgdma +altera-pr-ip-core +altera-pr-ip-core-plat +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am35x +am53c974 +amba-clcd +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc_pci +amd8111e +amdgpu +amlogic-gxl-crypto +amlogic_thermal +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx6345 +analogix-anx78xx +analogix_dp +ansi_cprng +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-mfi-fastcharge +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar1021_i2c +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scpi +arm_smc_wdt +arm_smccc_trng +armada +armada-37xx-cpufreq +armada-37xx-rwtm-mailbox +armada-8k-cpufreq +armada_37xx_wdt +arp_tables +arpt_mangle +arptable_filter +artpec6_crypto +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +as73211 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-lpc-ctrl +aspeed-lpc-snoop +aspeed-p2a-ctrl +aspeed-pwm-tacho +aspeed-smc +aspeed-vhub +aspeed-video +aspeed_adc +aspeed_edac +aspeed_gfx +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atm +atmel +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel-i2c +atmel-sha204a +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +ax88796b +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +bL_switcher_dummy_if +ba431-rng +bam_dma +bareudp +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm47xxsflash +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7xxx +bcm87xx +bcm_vk +bcma +bcmsysport +bd6107 +bd71815-regulator +bd71828-regulator +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bd9576-regulator +bd9576_wdt +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b-neon +blake2b_generic +blake2s-arm +blake2s_generic +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bochs +bonding +bpa-rs600 +bpa10x +bpck +bpck6 +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +bsd_comp +bt-bmc +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence-nand-controller +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sc7180 +camcc-sdm845 +camcc-sm8250 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +cap11xx +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccree +ccs +ccs-pll +ccs811 +cctrng +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-pltfrm +cdns-usb-common +cdns3 +cec +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone-icn6211 +chipone_icn8318 +chnl_net +chrontel-ch7033 +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cirrus +cirrusfb +clip +clk-axi-clkgen +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-exynos-audss +clk-exynos-clkout +clk-hi3519 +clk-hi655x +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-rpm +clk-rpmh +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-twl6040 +clk-versaclock5 +clk-wm831x +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmtp +cnic +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_example_test +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +contec_pci_dio +cordic +core +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppi41 +cpr +cqhci +cramfs +crc-itu-t +crc32-arm-ce +crc32_generic +crc4 +crc64 +crc7 +crct10dif-arm-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-anx7688 +cros-ec-cec +cros-ec-regulator +cros-ec-sensorhub +cros_ec +cros_ec_accel_legacy +cros_ec_baro +cros_ec_chardev +cros_ec_debugfs +cros_ec_dev +cros_ec_i2c +cros_ec_keyb +cros_ec_lid_angle +cros_ec_light_prox +cros_ec_lightbar +cros_ec_mkbp_proximity +cros_ec_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_typec +cros_ec_vbc +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +curve25519-generic +curve25519-neon +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl_core +cxl_pci +cxl_pmem +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm8250 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9000 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi-imx +dw_mipi_dsi-stm +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc3 +dwc3-exynos +dwc3-haps +dwc3-meson-g12a +dwc3-of-simple +dwc3-omap +dwc3-qcom +dwmac-altr-socfpga +dwmac-dwc-qos-eth +dwmac-generic +dwmac-intel-plat +dwmac-ipq806x +dwmac-loongson +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efct +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-npcm7xx +ehci-omap +ehset +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erofs +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-qcom-spmi-misc +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +exynos-gsc +exynos-interconnect +exynos-lpass +exynos-rng +exynos-trng +exynos5422-dmc +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +fan53880 +farsync +fastrpc +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fsi-core +fsi-master-aspeed +fsi-master-ast-cf +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dcu-drm +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mph-dr-of +fsl-qdma +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +fsp-3y +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftm-quaddec +ftmac100 +ftsteutates +ftwdt010_wdt +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gateworks-gsc +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gcc-apq8084 +gcc-ipq4019 +gcc-ipq6018 +gcc-ipq806x +gcc-ipq8074 +gcc-mdm9607 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8939 +gcc-msm8953 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gdmtty +gdmulte +ge2d +gemini +gen_probe +generic +generic-adc-battery +genet +geneve +gf2k +gfs2 +ghash-arm-ce +gianfar_driver +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpi +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-arizona +gpio-aspeed +gpio-bd70528 +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-moxtet +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-rockchip +gpio-sama5d2-piobu +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ucb1400 +gpio-uniphier +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-wcd934x +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc-hwmon +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +habanalabs +hackrf +hamachi +hampshire +hantro-vpu +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd3ss3220 +hd44780 +hd44780_common +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi556 +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421-spmi-pmic +hi6421v530-regulator +hi6421v600-irq +hi6421v600-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-google-hammer +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_powerkey +hisi_thermal +hix5hd2_gmac +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hnae +hnae3 +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwmon-vid +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-altera +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-aspeed +i2c-axxia +i2c-cbus-gpio +i2c-cp2615 +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-of +i2c-hid-of-goodix +i2c-hix5hd2 +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-npcm7xx +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-cci +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xiic +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-bcm-voter +icc-osm-l3 +icc-rpmh +icc-smd-rpm +ice +ice40-spi +icp10100 +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +impa7 +ims-pcu +imx-ipu-v3 +imx-ldb +imx-tve +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx319 +imx334 +imx335 +imx355 +imx412 +imx6ul_tsc +imxdrm +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int51x1 +intel-m10-bmc +intel-m10-bmc-hwmon +intel-nand-controller +intel-qep +intel-xway +intel_pmt +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io-domain +io_edgeport +io_ti +iova +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipa +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-rx51 +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +irq-pruss-intc +irqbypass +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-it66121 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +kcs_bmc +kcs_bmc_aspeed +kcs_bmc_cdev_ipmi +kcs_bmc_npcm7xx +kcs_bmc_serio +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khadas-mcu +khadas_mcu_fan +kheaders +kl5kusb105 +kmx61 +kobil_sct +komeda +kpss-xcc +krait-cc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +led_bl +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lm3692x +leds-lm3697 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pm8058 +leds-pwm +leds-regulator +leds-rt4505 +leds-rt8515 +leds-sgm3140 +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-turris-omnia +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lima +lineage-pem +linear +linkstation-poweroff +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +liteuart +litex_liteeth +litex_soc_ctrl +lkkbd +ll_temac +llc +llc2 +llcc-qcom +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmh +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lochnagar-hwmon +lochnagar-regulator +lockd +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp873x-regulator +lp8755 +lp87565 +lp87565-regulator +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpass-gfm-sm8250 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-codec +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +macb +macb_pci +machxo2-spi +macmodes +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mailbox-test +mali-dp +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-88x2222 +marvell-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9286 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mcde_drm +mceusb +mchp23k256 +mchp48l640 +mcp16502 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +mdc800 +mdev +mdio +mdio-aspeed +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdt_loader +me4000 +me_daq +mediatek +mediatek-cpufreq +mediatek-cpufreq-hw +mediatek-drm +mediatek-drm-hdmi +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gx-mmc +meson-gxl +meson-ir +meson-ir-tx +meson-mx-sdhc +meson-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +microread +microread_i2c +microtek +mii +milbeaut-hdmac +milbeaut-xdmac +milbeaut_usio +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8994 +mmcc-msm8996 +mmcc-msm8998 +mmcc-sdm660 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp5416 +mp8859 +mp886x +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msc313e_wdt +mscc +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi001 +msi2500 +msm +msp3400 +mspro_block +mss-sc7180 +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359-rt1019-rt5682 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-devapc +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-rng +mtk-sd +mtk-smi +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_dsps +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv643xx_eth +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n_gsm +n_hdlc +nandsim +national +natsemi +nau7802 +navman +nbd +nbpfaxi +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_routes_test +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm-rng +npcm750-pwm-fan +npcm_adc +nps_enet +ns +ns558 +ns83820 +nsh +nsp32 +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-uniphier-efuse +nvmem_meson_mx_efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +omap +omap-aes-driver +omap-crypto +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap2430 +omap2fb +omap4-keypad +omap_hdq +omap_hwspinlock +omap_remoteproc +omap_wdt +omapdss +omfs +omninet +on20 +on26 +onenand +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9282 +ov9640 +ov9650 +overlay +owl-dma +owl-emac +owl-mmc +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +panfrost +parade-ps8622 +parade-ps8640 +parallel-display +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +parser_trx +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pbias-regulator +pc300too +pc87360 +pc87427 +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-exynos +pci-pf-stub +pci-stub +pci200syn +pcie-mediatek-gen3 +pcie-rockchip-host +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcs-lynx +pcs_xpcs +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-armada38x-comphy +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-cpcap-usb +phy-dm816x-usb +phy-exynos-ufs +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-mapphone-mdm6600 +phy-meson-axg-mipi-dphy +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-mvebu-cp110-utmi +phy-ocelot-serdes +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq4019-usb +phy-qcom-ipq806x-sata +phy-qcom-ipq806x-usb +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-snps-femto-v2 +phy-qcom-usb-hs +phy-qcom-usb-hs-28nm +phy-qcom-usb-hsic +phy-qcom-usb-ss +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-dphy-rx0 +phy-rockchip-emmc +phy-rockchip-inno-csidphy +phy-rockchip-inno-dsidphy +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-tahvo +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +phy-uniphier-ahci +phy-uniphier-pcie +phy-uniphier-usb2 +phy-uniphier-usb3hs +phy-uniphier-usb3ss +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-ipq4019 +pinctrl-ipq6018 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-mdm9615 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-qcs404 +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc8180x +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8350 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +pl353-smc +pl35x-nand-controller +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pms7003 +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305-arm +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +pru_rproc +pruss +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptp-qoriq +ptp_clockmatrix +ptp_idt82p33 +ptp_ines +ptp_kvm +ptp_ocp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-beeper +pwm-berlin +pwm-cros-ec +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-iqs620a +pwm-ir-tx +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-ntxec +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +q6sstop-qcs404 +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-apcs-ipc-mailbox +qcom-coincell +qcom-cpufreq-hw +qcom-cpufreq-nvmem +qcom-emac +qcom-geni-se +qcom-labibb-regulator +qcom-pm8008 +qcom-pm8xxx +qcom-pm8xxx-xoadc +qcom-pmic-typec +qcom-pon +qcom-rng +qcom-rpmh-regulator +qcom-spmi-adc-tm5 +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom-wled +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_pil_info +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +qcom_usb_vbus-regulator +qcomsmempart +qcrypto +qcserial +qed +qede +qedf +qedi +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnoc-msm8916 +qnoc-msm8939 +qnoc-msm8974 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-gyroadc +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas-ceu +renesas-rpc-if +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-a10sr +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-scmi +reset-ti-syscon +reset-uniphier +reset-uniphier-glue +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmobile-reset +rmtfs_mem +rn5t618 +rn5t618-adc +rn5t618-regulator +rn5t618_power +rn5t618_wdt +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-isp1 +rockchip-nand-controller +rockchip-rga +rockchip-vdec +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rohm-bd70528 +rohm-bd71828 +rohm-bd718x7 +rohm-bd9576 +rohm-regulator +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmpd +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-aspeed +rtc-bd70528 +rtc-bq32k +rtc-bq4802 +rtc-cadence +rtc-cmos +rtc-cpcap +rtc-cros-ec +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-meson +rtc-meson-vrtc +rtc-msm6242 +rtc-mt2712 +rtc-mt6397 +rtc-mt7622 +rtc-ntxec +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r7301 +rtc-r9701 +rtc-rc5t583 +rtc-rc5t619 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-sh +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rx51_battery +rxrpc +rza_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s5p-cec +s5p-g2d +s5p-jpeg +s5p-mfc +s5p-sss +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sample-trace-array +samsung-keypad +samsung-sxgbe +samsung_tty +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sbp_target +sbrmi +sbs-battery +sbs-charger +sbs-manager +sbtsi_temp +sc16is7xx +sc92031 +sca3000 +sca3300 +scd30_core +scd30_i2c +scd30_serial +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scmi-cpufreq +scmi-hwmon +scmi-regulator +scmi_iio +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci-cadence +sdhci-dove +sdhci-milbeaut +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-omap +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensorhub +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha3_generic +sha512-arm +shark2 +sharpslpart +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +simple-bridge +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slim-qcom-ngd-ctrl +slimbus +slip +slram +sm2_generic +sm3_generic +sm4_generic +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc911x +smc91x +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs8427 +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-aries-wm8994 +snd-soc-arizona +snd-soc-armada-370-db +snd-soc-arndale +snd-soc-audio-graph-card +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-i2s +snd-soc-ics43432 +snd-soc-idma +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-meson-aiu +snd-soc-meson-axg-fifo +snd-soc-meson-axg-frddr +snd-soc-meson-axg-pdm +snd-soc-meson-axg-sound-card +snd-soc-meson-axg-spdifin +snd-soc-meson-axg-spdifout +snd-soc-meson-axg-tdm-formatter +snd-soc-meson-axg-tdm-interface +snd-soc-meson-axg-tdmin +snd-soc-meson-axg-tdmout +snd-soc-meson-axg-toddr +snd-soc-meson-card-utils +snd-soc-meson-codec-glue +snd-soc-meson-g12a-toacodec +snd-soc-meson-g12a-tohdmitx +snd-soc-meson-gx-sound-card +snd-soc-meson-t9015 +snd-soc-midas-wm1811 +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6359 +snd-soc-mt6660 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mt8192-afe +snd-soc-mt8195-afe +snd-soc-mtk-common +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-odroid +snd-soc-omap-mcbsp +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rk817 +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5659 +snd-soc-rt5663 +snd-soc-rt5682 +snd-soc-rt5682-i2c +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sc7180 +snd-soc-sdm845 +snd-soc-sdw-mockup +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-sm8250 +snd-soc-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tm2-wm5110 +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-uniphier-aio-cpu +snd-soc-uniphier-aio-ld11 +snd-soc-uniphier-aio-pxs2 +snd-soc-uniphier-evea +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm-adsp +snd-soc-wm-hubs +snd-soc-wm5110 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-of +snd-sonicvibes +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +sni_ave +snic +snps_udc_core +snps_udc_plat +socfpga +socfpga-a10 +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundwire-bus +soundwire-qcom +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speedfax +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-geni-qcom +spi-gpio +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mtk-nor +spi-mux +spi-mxic +spi-nor +spi-npcm-fiu +spi-npcm-pspi +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rockchip-sfc +spi-rpc-if +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-ti-qspi +spi-tle62x0 +spi-uniphier +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spmi +spmi-pmic-arb +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssbi +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm-drm +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpddc60 +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc3589x-keypad +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tef6862 +tehuti +teranetics +test-kprobes +test_blackhole_dev +test_bpf +test_div64 +test_power +tg3 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunderbolt +thunderbolt-net +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-cal +ti-csc +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-sc +ti-sn65dsi83 +ti-sn65dsi86 +ti-soc-thermal +ti-tfp410 +ti-tlc4541 +ti-tpd12s015 +ti-tsc2046 +ti-vpdma +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_cpsw_new +ti_edac +ti_hecc +ti_usb_3410_5052 +tidss +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tusb6010 +tvaudio +tve200_drm +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-exynos +ufs-hisi +ufs-mediatek +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uniphier-mdmac +uniphier-regulator +uniphier-sd +uniphier-xdmac +uniphier_thermal +uniphier_wdt +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-dmac +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-mem2mem +v4l2-tpg +vcan +vcnl3020 +vcnl4000 +vcnl4035 +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-rhine +via-sdmmc +via-velocity +via686a +vicodec +video-i2c +video-mux +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocc-sc7180 +videocc-sc7280 +videocc-sdm845 +videocc-sm8150 +videocc-sm8250 +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_pvrdma +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vqmmc-ipq4019-regulator +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcd934x +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +winbond-840 +wire +wireguard +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wp512 +wwan_hwsim +x25 +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgmac +xhci-histb +xhci-mtk-hcd +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xilinx-csi2rxss +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xillybus_class +xillybus_core +xillybus_of +xillybus_pcie +xillyusb +xiphera-trng +xlnx_vcu +xor +xor-neon +xpad +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yurex +z3fold +zaurus +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress diff --git a/debian.master/abi/armhf/generic-lpae.retpoline b/debian.master/abi/armhf/generic-lpae.retpoline new file mode 100644 index 00000000000000..7f959eb917cddc --- /dev/null +++ b/debian.master/abi/armhf/generic-lpae.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.master/abi/armhf/generic.compiler b/debian.master/abi/armhf/generic.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/armhf/generic.modules b/debian.master/abi/armhf/generic.modules new file mode 100644 index 00000000000000..c51cb054d67a68 --- /dev/null +++ b/debian.master/abi/armhf/generic.modules @@ -0,0 +1,6612 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_uniphier +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a53-pll +a7-pll +a8293 +aacraid +aat2870-regulator +aat2870_bl +abp060mg +acard-ahci +acecad +acenic +acer-ec-a500 +acer_a500_battery +acp_audio_dma +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9467 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aes-arm +aes-arm-bs +aes-arm-ce +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +afs +ah4 +ah6 +ahci +ahci_ceva +ahci_dm816 +ahci_mtk +ahci_mvebu +ahci_qoriq +ahci_tegra +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airspy +ak7375 +ak881x +ak8974 +ak8975 +al3010 +al3320a +al_mc_edac +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-cvp +altera-fpga2sdram +altera-freeze-bridge +altera-hps2fpga +altera-msgdma +altera-pr-ip-core +altera-pr-ip-core-plat +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am35x +am53c974 +amba-clcd +amba-pl010 +ambakmi +amc6821 +amd +amd5536udc_pci +amd8111e +amdgpu +amlogic-gxl-crypto +amlogic_thermal +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx6345 +analogix-anx78xx +analogix_dp +anatop-regulator +ansi_cprng +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +aoe +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9300 +apds9802als +apds990x +apds9960 +apple-mfi-fastcharge +appledisplay +appletalk +appletouch +applicom +apr +apss-ipq-pll +apss-ipq6018 +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar1021_i2c +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_emac +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scpi +arm_smc_wdt +arm_smccc_trng +armada +armada-37xx-cpufreq +armada-37xx-rwtm-mailbox +armada-8k-cpufreq +armada_37xx_wdt +arp_tables +arpt_mangle +arptable_filter +artpec6_crypto +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +as73211 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-lpc-ctrl +aspeed-lpc-snoop +aspeed-p2a-ctrl +aspeed-pwm-tacho +aspeed-smc +aspeed-vhub +aspeed-video +aspeed_adc +aspeed_edac +aspeed_gfx +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_snoc +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atm +atmel +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-hlcdc-dc +atmel-i2c +atmel-sha204a +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796 +ax88796b +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +bL_switcher_dummy_if +ba431-rng +bam_dma +bareudp +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bcm-keypad +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm47xxsflash +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63138_nand +bcm6368_nand +bcm63xx_uart +bcm7xxx +bcm87xx +bcm_vk +bcma +bcmsysport +bd6107 +bd71815-regulator +bd71828-regulator +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bd9576-regulator +bd9576_wdt +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +berlin2-adc +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b-neon +blake2b_generic +blake2s-arm +blake2s_generic +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bochs +bonding +bpa-rs600 +bpa10x +bpck +bpck6 +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmnand +brcmsmac +brcmstb_nand +brcmutil +brd +bridge +broadcom +bsd_comp +bt-bmc +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btqcomsmd +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence-nand-controller +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camcc-sc7180 +camcc-sdm845 +camcc-sm8250 +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +cap11xx +capmode +capsule-loader +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccree +ccs +ccs-pll +ccs811 +cctrng +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-pltfrm +cdns-usb-common +cdns3 +cdns3-imx +cec +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha-neon +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone-icn6211 +chipone_icn8318 +chnl_net +chrontel-ch7033 +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cirrus +cirrusfb +clip +clk-axi-clkgen +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-exynos-audss +clk-exynos-clkout +clk-hi3519 +clk-hi655x +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-pwm +clk-qcom +clk-rk808 +clk-rpm +clk-rpmh +clk-s2mps11 +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-smd-rpm +clk-spmi-pmic-div +clk-twl6040 +clk-versaclock5 +clk-wm831x +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmt_speech +cmtp +cnic +cobra +coda +coda-vpu +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_example_test +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +contec_pci_dio +cordic +core +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpcap-adc +cpcap-battery +cpcap-charger +cpcap-pwrbutton +cpcap-regulator +cpia2 +cppi41 +cpr +cramfs +crc-itu-t +crc32-arm-ce +crc32_generic +crc4 +crc64 +crc7 +crct10dif-arm-ce +crg-hi3516cv300 +crg-hi3798cv200 +cros-ec-anx7688 +cros-ec-cec +cros-ec-regulator +cros-ec-sensorhub +cros_ec +cros_ec_accel_legacy +cros_ec_baro +cros_ec_chardev +cros_ec_debugfs +cros_ec_dev +cros_ec_i2c +cros_ec_keyb +cros_ec_lid_angle +cros_ec_light_prox +cros_ec_lightbar +cros_ec_mkbp_proximity +cros_ec_rpmsg +cros_ec_sensors +cros_ec_sensors_core +cros_ec_spi +cros_ec_sysfs +cros_ec_typec +cros_ec_vbc +cros_peripheral_charger +cros_usbpd-charger +cros_usbpd_logger +cros_usbpd_notify +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +cs89x0 +csiostor +curve25519-generic +curve25519-neon +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl_core +cxl_pci +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da8xx-fb +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm8250 +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9000 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-mipi-dsi +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_hdmi-imx +dw_mipi_dsi-stm +dw_mmc +dw_mmc-bluefield +dw_mmc-exynos +dw_mmc-hi3798cv200 +dw_mmc-k3 +dw_mmc-pci +dw_mmc-pltfm +dw_mmc-rockchip +dw_wdt +dwc-xlgmac +dwc3 +dwc3-exynos +dwc3-haps +dwc3-meson-g12a +dwc3-of-simple +dwc3-omap +dwc3-qcom +dwmac-altr-socfpga +dwmac-dwc-qos-eth +dwmac-generic +dwmac-imx +dwmac-intel-plat +dwmac-ipq806x +dwmac-loongson +dwmac-mediatek +dwmac-meson +dwmac-meson8b +dwmac-qcom-ethqos +dwmac-rk +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efct +efi-pstore +efi_test +efibc +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-npcm7xx +ehci-omap +ehset +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emac_rockchip +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +emif +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erofs +error +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +etnaviv +evbug +exc3000 +exfat +extcon-adc-jack +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-qcom-spmi-misc +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +exynos-gsc +exynos-interconnect +exynos-lpass +exynos-rng +exynos-trng +exynos5422-dmc +exynos_adc +exynosdrm +ezusb +f2fs +f71805f +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +fan53880 +farsync +fastrpc +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fl512 +flexcan +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fsi-core +fsi-master-aspeed +fsi-master-ast-cf +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-dcu-drm +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mph-dr-of +fsl-qdma +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +fsp-3y +ftdi-elan +ftdi_sio +ftgmac100 +ftl +ftm-quaddec +ftmac100 +ftsteutates +ftwdt010_wdt +fujitsu_ts +fusb300_udc +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gateworks-gsc +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gcc-apq8084 +gcc-ipq4019 +gcc-ipq6018 +gcc-ipq806x +gcc-ipq8074 +gcc-mdm9607 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8939 +gcc-msm8953 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gdmtty +gdmulte +ge2d +gemini +gen_probe +generic +generic-adc-battery +genet +geneve +gf2k +gfs2 +ghash-arm-ce +gianfar_driver +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpi +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-arizona +gpio-aspeed +gpio-bd70528 +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-moxtet +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rcar +gpio-rdc321x +gpio-regulator +gpio-rockchip +gpio-sama5d2-piobu +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ts4800 +gpio-ts4900 +gpio-ucb1400 +gpio-uniphier +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-wcd934x +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpmi-nand +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc-hwmon +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +habanalabs +hackrf +hamachi +hampshire +hantro-vpu +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hclge +hclgevf +hd3ss3220 +hd44780 +hd44780_common +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi556 +hi6210-i2s +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421-spmi-pmic +hi6421v530-regulator +hi6421v600-irq +hi6421v600-regulator +hi655x-pmic +hi655x-regulator +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-google-hammer +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hifn_795x +highbank-cpufreq +highbank_l2_edac +highbank_mc_edac +hih6130 +hip04_eth +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_powerkey +hisi_thermal +hix5hd2_gmac +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hnae +hnae3 +hns_dsaf +hns_enet_drv +hns_mdio +hopper +horus3a +host1x +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hwmon-vid +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-altera +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-aspeed +i2c-cbus-gpio +i2c-cp2615 +i2c-cros-ec-tunnel +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-emev2 +i2c-exynos5 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-of +i2c-hid-of-goodix +i2c-hix5hd2 +i2c-i801 +i2c-imx-lpi2c +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-meson +i2c-mt65xx +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-npcm7xx +i2c-nvidia-gpu +i2c-ocores +i2c-owl +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-qcom-cci +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-robotfuzz-osif +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-tiny-usb +i2c-versatile +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xiic +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +icc-bcm-voter +icc-osm-l3 +icc-rpmh +icc-smd-rpm +ice +ice40-spi +icp10100 +icp_multi +icplus +ics932s401 +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +impa7 +ims-pcu +imx-audio-rpmsg +imx-bus +imx-cpufreq-dt +imx-dma +imx-dsp +imx-interconnect +imx-ipu-v3 +imx-ldb +imx-mailbox +imx-media-common +imx-pcm-rpmsg +imx-pxp +imx-rngc +imx-sdma +imx-tve +imx-vdoa +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx2_wdt +imx319 +imx334 +imx335 +imx355 +imx412 +imx6-media +imx6-media-csi +imx6-mipi-csi2 +imx6q-cpufreq +imx6ul_tsc +imx7-media-csi +imx7-mipi-csis +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxdrm +imxfb +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int51x1 +intel-m10-bmc +intel-m10-bmc-hwmon +intel-nand-controller +intel-qep +intel-xway +intel_pmt +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io-domain +io_edgeport +io_ti +iova +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipa +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +iproc_nand +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-rx51 +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +irq-pruss-intc +irq-ts4800 +irqbypass +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-it66121 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +kcs_bmc +kcs_bmc_aspeed +kcs_bmc_cdev_ipmi +kcs_bmc_npcm7xx +kcs_bmc_serio +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +khadas-mcu +khadas_mcu_fan +kheaders +kl5kusb105 +kmx61 +kobil_sct +komeda +kpss-xcc +krait-cc +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +led_bl +leds-88pm860x +leds-aat1290 +leds-acer-a500 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lm3692x +leds-lm3697 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pm8058 +leds-pwm +leds-regulator +leds-rt4505 +leds-rt8515 +leds-sgm3140 +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-turris-omnia +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lima +lineage-pem +linear +linkstation-poweroff +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +liteuart +litex_liteeth +litex_soc_ctrl +lkkbd +ll_temac +llc +llc2 +llcc-qcom +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmh +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lochnagar-hwmon +lochnagar-regulator +lockd +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp873x-regulator +lp8755 +lp87565 +lp87565-regulator +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpass-gfm-sm8250 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-codec +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +macb +macb_pci +machxo2-spi +macmodes +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mailbox-test +mali-dp +mantis +mantis_core +map_absent +map_ram +map_rom +marvell +marvell-88x2222 +marvell-cesa +marvell10g +marvell_nand +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9286 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mcde_drm +mceusb +mchp23k256 +mchp48l640 +mcp16502 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +mdc800 +mdev +mdio +mdio-aspeed +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdt_loader +me4000 +me_daq +mediatek +mediatek-cpufreq +mediatek-cpufreq-hw +mediatek-drm +mediatek-drm-hdmi +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gx-mmc +meson-gxl +meson-ir +meson-ir-tx +meson-mx-sdhc +meson-mx-sdio +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +microread +microread_i2c +microtek +mii +milbeaut-hdmac +milbeaut-xdmac +milbeaut_usio +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_spi +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8994 +mmcc-msm8996 +mmcc-msm8998 +mmcc-sdm660 +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp5416 +mp8859 +mp886x +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +msc313e_wdt +mscc +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi001 +msi2500 +msm +msp3400 +mspro_block +mss-sc7180 +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-accdet +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6380-regulator +mt6397 +mt6397-regulator +mt6577_auxadc +mt6797-mt6351 +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359-rt1019-rt5682 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtk-btcvsd +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-devapc +mtk-hsdma +mtk-pmic-keys +mtk-pmic-wrap +mtk-rng +mtk-sd +mtk-smi +mtk-uart-apdma +mtk-vpu +mtk_ecc +mtk_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_thermal +mtk_wdt +mtouch +mtu3 +multipath +multiq3 +musb_dsps +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv643xx_eth +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvneta +mvpp2 +mvsas +mvsdio +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc-jpeg-encdec +mxc4005 +mxc6255 +mxc_nand +mxc_w1 +mxcmmc +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n_gsm +n_hdlc +nandsim +national +natsemi +nau7802 +navman +nbd +nbpfaxi +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_routes_test +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nicstar +nilfs2 +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +noa1305 +nokia-modem +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm-rng +npcm750-pwm-fan +npcm_adc +nps_enet +ns +ns558 +ns83820 +nsh +nsp32 +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-uniphier-efuse +nvmem_meson_mx_efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +of-fpga-region +of_mmc_spi +of_xilinx_wdt +ofb +ohci-platform +omap +omap-aes-driver +omap-crypto +omap-des +omap-mailbox +omap-ocp2scp +omap-rng +omap-sham +omap-vout +omap2430 +omap2fb +omap3-isp +omap3-rom-rng +omap4-iss +omap4-keypad +omap_hdq +omap_hwspinlock +omap_remoteproc +omap_ssi +omap_wdt +omapdss +omfs +omninet +on20 +on26 +onenand +onenand_omap2 +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +orion_nand +orion_wdt +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9282 +ov9640 +ov9650 +overlay +owl-dma +owl-emac +owl-mmc +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +panfrost +parade-ps8622 +parade-ps8640 +parallel-display +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +parser_trx +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pbias-regulator +pc300too +pc87360 +pc87427 +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-exynos +pci-pf-stub +pci-stub +pci200syn +pcie-mediatek-gen3 +pcie-rockchip-host +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcs-lynx +pcs_xpcs +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfuze100-regulator +pg +phantom +phonet +phram +phy-am335x +phy-am335x-control +phy-armada38x-comphy +phy-bcm-kona-usb2 +phy-berlin-sata +phy-berlin-usb +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-cpcap-usb +phy-dm816x-usb +phy-exynos-ufs +phy-exynos-usb2 +phy-exynos5-usbdrd +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-gpio-vbus-usb +phy-hix5hd2-sata +phy-isp1301 +phy-mapphone-mdm6600 +phy-meson-axg-mipi-dphy +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-mvebu-cp110-utmi +phy-ocelot-serdes +phy-omap-control +phy-omap-usb2 +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq4019-usb +phy-qcom-ipq806x-sata +phy-qcom-ipq806x-usb +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-snps-femto-v2 +phy-qcom-usb-hs +phy-qcom-usb-hs-28nm +phy-qcom-usb-hsic +phy-qcom-usb-ss +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-dphy-rx0 +phy-rockchip-emmc +phy-rockchip-inno-csidphy +phy-rockchip-inno-dsidphy +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-tahvo +phy-tegra-usb +phy-tegra-xusb +phy-ti-pipe3 +phy-tusb1210 +phy-twl4030-usb +phy-twl6030-usb +phy-uniphier-ahci +phy-uniphier-pcie +phy-uniphier-usb2 +phy-uniphier-usb3hs +phy-uniphier-usb3ss +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-ipq4019 +pinctrl-ipq6018 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-lochnagar +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-mdm9615 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-qcs404 +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc8180x +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8350 +pinctrl-spmi-gpio +pinctrl-spmi-mpp +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl2303 +pl330 +pl353-smc +pl35x-nand-controller +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pm8916_wdt +pm8941-pwrkey +pm8xxx-vibrator +pmbus +pmbus_core +pmc551 +pmcraid +pmic8xxx-keypad +pmic8xxx-pwrkey +pms7003 +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +poly1305-arm +poly1305_generic +port100 +powermate +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +pru_rproc +pruss +ps2-gpio +ps2mult +psample +psmouse +psnap +psxpad-spi +pt +ptp-qoriq +ptp_clockmatrix +ptp_idt82p33 +ptp_ines +ptp_kvm +ptp_ocp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-beeper +pwm-berlin +pwm-cros-ec +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-iqs620a +pwm-ir-tx +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-ntxec +pwm-omap-dmtimer +pwm-pca9685 +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-samsung +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6asm +q6asm-dai +q6core +q6dsp-common +q6routing +q6sstop-qcs404 +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-apcs-ipc-mailbox +qcom-coincell +qcom-cpufreq-hw +qcom-cpufreq-nvmem +qcom-emac +qcom-geni-se +qcom-labibb-regulator +qcom-pm8008 +qcom-pm8xxx +qcom-pm8xxx-xoadc +qcom-pmic-typec +qcom-pon +qcom-rng +qcom-rpmh-regulator +qcom-spmi-adc-tm5 +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-pmic +qcom-spmi-temp-alarm +qcom-spmi-vadc +qcom-vadc-common +qcom-wdt +qcom-wled +qcom_adm +qcom_aoss +qcom_common +qcom_edac +qcom_geni_serial +qcom_glink +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_nandc +qcom_pil_info +qcom_q6v5 +qcom_q6v5_adsp +qcom_q6v5_mss +qcom_q6v5_pas +qcom_q6v5_wcss +qcom_rpm +qcom_rpm-regulator +qcom_smbb +qcom_smd +qcom_smd-regulator +qcom_spmi-regulator +qcom_sysmon +qcom_tsens +qcom_usb_vbus-regulator +qcomsmempart +qcrypto +qcserial +qed +qede +qedf +qedi +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnoc-msm8916 +qnoc-msm8939 +qnoc-msm8974 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ravb +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-gyroadc +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +regmap-ac97 +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +renesas-ceu +renesas-rpc-if +renesas_sdhi_core +renesas_sdhi_internal_dmac +renesas_sdhi_sys_dmac +renesas_usb3 +renesas_usbhs +renesas_wdt +repaper +reset-a10sr +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-scmi +reset-ti-syscon +reset-uniphier +reset-uniphier-glue +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rmobile-reset +rmtfs_mem +rn5t618 +rn5t618-adc +rn5t618-regulator +rn5t618_power +rn5t618_wdt +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rockchip-dfi +rockchip-isp1 +rockchip-nand-controller +rockchip-rga +rockchip-vdec +rockchip_saradc +rockchip_thermal +rockchipdrm +rocker +rohm-bd70528 +rohm-bd71828 +rohm-bd718x7 +rohm-bd9576 +rohm-regulator +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmpd +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-armada38x +rtc-as3722 +rtc-aspeed +rtc-bd70528 +rtc-bq32k +rtc-bq4802 +rtc-cadence +rtc-cmos +rtc-cpcap +rtc-cros-ec +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-hym8563 +rtc-imx-sc +rtc-imxdi +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-meson +rtc-meson-vrtc +rtc-msm6242 +rtc-mt2712 +rtc-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pm8xxx +rtc-r7301 +rtc-r9701 +rtc-rc5t583 +rtc-rc5t619 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rx51_battery +rxrpc +rza_wdt +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3c2410_wdt +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s5p-cec +s5p-g2d +s5p-jpeg +s5p-mfc +s5p-sss +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sahara +sample-trace-array +samsung-keypad +samsung-sxgbe +samsung_tty +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_rcar +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sbp_target +sbrmi +sbs-battery +sbs-charger +sbs-manager +sbtsi_temp +sc16is7xx +sc92031 +sca3000 +sca3300 +scd30_core +scd30_i2c +scd30_serial +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scmi-cpufreq +scmi-hwmon +scmi-regulator +scmi_iio +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +sd_adc_modulator +sdhci-cadence +sdhci-dove +sdhci-milbeaut +sdhci-msm +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-of-esdhc +sdhci-omap +sdhci-pci +sdhci-pxav3 +sdhci-s3c +sdhci-tegra +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +sh_eth +sh_mmcif +sh_mobile_lcdcfb +sha1-arm +sha1-arm-ce +sha1-arm-neon +sha2-arm-ce +sha256-arm +sha3_generic +sha512-arm +shark2 +sharpslpart +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +simple-bridge +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slg51000-regulator +slic_ds26522 +slicoss +slim-qcom-ctrl +slim-qcom-ngd-ctrl +slimbus +slip +slram +sm2_generic +sm3_generic +sm4_generic +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc911x +smc91x +smc_diag +smd-rpm +smem +smipcie +smm665 +smp2p +smsc +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsm +smsmdtv +smssdio +smsusb +snd-aaci +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-ens1370 +snd-ens1371 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hda-tegra +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-alc5632 +snd-soc-apq8016-sbc +snd-soc-apq8096 +snd-soc-aries-wm8994 +snd-soc-arizona +snd-soc-armada-370-db +snd-soc-arndale +snd-soc-audio-graph-card +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-cpcap +snd-soc-cros-ec-codec +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-da7219 +snd-soc-davinci-mcasp +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-eukrea-tlv320 +snd-soc-fsi +snd-soc-fsl-asoc-card +snd-soc-fsl-asrc +snd-soc-fsl-aud2htx +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-i2s +snd-soc-ics43432 +snd-soc-idma +snd-soc-imx-audmix +snd-soc-imx-card +snd-soc-imx-es8328 +snd-soc-imx-hdmi +snd-soc-imx-rpmsg +snd-soc-imx-spdif +snd-soc-inno-rk3036 +snd-soc-kirkwood +snd-soc-lochnagar-sc +snd-soc-lpass-apq8016 +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98090 +snd-soc-max98095 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-meson-aiu +snd-soc-meson-axg-fifo +snd-soc-meson-axg-frddr +snd-soc-meson-axg-pdm +snd-soc-meson-axg-sound-card +snd-soc-meson-axg-spdifin +snd-soc-meson-axg-spdifout +snd-soc-meson-axg-tdm-formatter +snd-soc-meson-axg-tdm-interface +snd-soc-meson-axg-tdmin +snd-soc-meson-axg-tdmout +snd-soc-meson-axg-toddr +snd-soc-meson-card-utils +snd-soc-meson-codec-glue +snd-soc-meson-g12a-toacodec +snd-soc-meson-g12a-tohdmitx +snd-soc-meson-gx-sound-card +snd-soc-meson-t9015 +snd-soc-midas-wm1811 +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6359 +snd-soc-mt6660 +snd-soc-mt6797-afe +snd-soc-mt8183-afe +snd-soc-mt8192-afe +snd-soc-mt8195-afe +snd-soc-mtk-common +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-odroid +snd-soc-omap-abe-twl6040 +snd-soc-omap-dmic +snd-soc-omap-mcbsp +snd-soc-omap-mcpdm +snd-soc-omap-twl4030 +snd-soc-omap3pandora +snd-soc-pcm +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-qcom-common +snd-soc-rcar +snd-soc-rk3288-hdmi-analog +snd-soc-rk3328 +snd-soc-rk3399-gru-sound +snd-soc-rk817 +snd-soc-rl6231 +snd-soc-rockchip-i2s +snd-soc-rockchip-max98090 +snd-soc-rockchip-pcm +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt5514 +snd-soc-rt5514-spi +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5659 +snd-soc-rt5663 +snd-soc-rt5677 +snd-soc-rt5677-spi +snd-soc-rt5682 +snd-soc-rt5682-i2c +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rx51 +snd-soc-s3c-dma +snd-soc-samsung-spdif +snd-soc-sc7180 +snd-soc-sdm845 +snd-soc-sdw-mockup +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-sm8250 +snd-soc-smdk-spdif +snd-soc-smdk-wm8994 +snd-soc-smdk-wm8994pcm +snd-soc-snow +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-storm +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tegra-audio-graph-card +snd-soc-tegra-machine +snd-soc-tegra-pcm +snd-soc-tegra-wm8903 +snd-soc-tegra186-dspk +snd-soc-tegra20-ac97 +snd-soc-tegra20-das +snd-soc-tegra20-i2s +snd-soc-tegra20-spdif +snd-soc-tegra210-admaif +snd-soc-tegra210-ahub +snd-soc-tegra210-dmic +snd-soc-tegra210-i2s +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tm2-wm5110 +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-twl4030 +snd-soc-twl6040 +snd-soc-uda1334 +snd-soc-uniphier-aio-cpu +snd-soc-uniphier-aio-ld11 +snd-soc-uniphier-aio-pxs2 +snd-soc-uniphier-evea +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm-adsp +snd-soc-wm-hubs +snd-soc-wm5110 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wm8994 +snd-soc-wm9712 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-of +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-variax +snd-usbmidi-lib +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +sni_ave +snic +snps_udc_core +snps_udc_plat +snvs_pwrkey +socfpga +socfpga-a10 +socinfo +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundwire-bus +soundwire-qcom +sp2 +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speedfax +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-imx +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mtk-nor +spi-mux +spi-mxic +spi-nor +spi-npcm-fiu +spi-npcm-pspi +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip +spi-rockchip-sfc +spi-rpc-if +spi-rspi +spi-s3c64xx +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-ti-qspi +spi-tle62x0 +spi-uniphier +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spmi +spmi-pmic-arb +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssbi +ssd1307fb +ssfdc +ssi_protocol +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-asc +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm-drm +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpddc60 +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc3589x-keypad +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tee +tef6862 +tegra-bpmp-thermal +tegra-drm +tegra-gmi +tegra-kbc +tegra-vde +tegra-video +tegra-xudc +tegra186-cpufreq +tegra30-devfreq +tegra30-tsensor +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test-kprobes +test_blackhole_dev +test_bpf +test_div64 +test_power +tg3 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunderbolt +thunderbolt-net +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-cal +ti-csc +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-emif-sram +ti-eqep +ti-lmu +ti-sc +ti-sn65dsi83 +ti-sn65dsi86 +ti-soc-thermal +ti-tfp410 +ti-tlc4541 +ti-tpd12s015 +ti-tsc2046 +ti-vpdma +ti-vpe +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_cpsw_new +ti_davinci_emac +ti_edac +ti_hecc +ti_usb_3410_5052 +tidss +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +tilcdc +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmio_mmc +tmio_mmc_core +tmio_nand +tmiofb +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts4800-ts +ts4800_wdt +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +turingcc-qcs404 +turris-mox-rwtm +tusb6010 +tvaudio +tve200_drm +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +uda1342 +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufs-exynos +ufs-hisi +ufs-mediatek +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uniphier-mdmac +uniphier-regulator +uniphier-sd +uniphier-xdmac +uniphier_thermal +uniphier_wdt +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-dmac +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +vcan +vcnl3020 +vcnl4000 +vcnl4035 +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vexpress-hwmon +vexpress-regulator +vexpress-spc-cpufreq +vf610_adc +vf610_dac +vfio +vfio-amba +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_virqfd +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-rhine +via-sdmmc +via-velocity +via686a +vicodec +video-i2c +video-mux +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocc-sc7180 +videocc-sc7280 +videocc-sdm845 +videocc-sm8150 +videocc-sm8250 +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_pvrdma +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmxnet3 +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vqmmc-ipq4019-regulator +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsp1 +vsxxxaa +vt1211 +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wcd934x +wcn36xx +wcnss_ctrl +wd719x +wdt87xx_i2c +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +winbond-840 +wire +wireguard +wishbone-serial +wkup_m3_rproc +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wp512 +wwan_hwsim +x25 +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgmac +xhci-histb +xhci-mtk-hcd +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xhci-tegra +xilinx-csi2rxss +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_sdfec +xilinx_uartps +xillybus_class +xillybus_core +xillybus_of +xillybus_pcie +xillyusb +xiphera-trng +xlnx_vcu +xor +xor-neon +xpad +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yurex +z3fold +zaurus +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress diff --git a/debian.master/abi/armhf/generic.retpoline b/debian.master/abi/armhf/generic.retpoline new file mode 100644 index 00000000000000..7f959eb917cddc --- /dev/null +++ b/debian.master/abi/armhf/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.master/abi/fwinfo b/debian.master/abi/fwinfo new file mode 100644 index 00000000000000..1e01925b1fb26b --- /dev/null +++ b/debian.master/abi/fwinfo @@ -0,0 +1,1948 @@ +firmware: 3826.arm +firmware: 3com/typhoon.bin +firmware: 6fire/dmx6fireap.ihx +firmware: 6fire/dmx6firecf.bin +firmware: 6fire/dmx6firel2.ihx +firmware: BCM2033-FW.bin +firmware: BCM2033-MD.hex +firmware: BT3CPCC.bin +firmware: RTL8192E/boot.img +firmware: RTL8192E/data.img +firmware: RTL8192E/main.img +firmware: RTL8192U/boot.img +firmware: RTL8192U/data.img +firmware: RTL8192U/main.img +firmware: acenic/tg1.bin +firmware: acenic/tg2.bin +firmware: adaptec/starfire_rx.bin +firmware: adaptec/starfire_tx.bin +firmware: advansys/3550.bin +firmware: advansys/38C0800.bin +firmware: advansys/38C1600.bin +firmware: advansys/mcode.bin +firmware: agere_ap_fw.bin +firmware: agere_sta_fw.bin +firmware: aic94xx-seq.fw +firmware: amd/amd_sev_fam17h_model0xh.sbin +firmware: amd/amd_sev_fam17h_model3xh.sbin +firmware: amd/amd_sev_fam19h_model0xh.sbin +firmware: amdgpu/aldebaran_mec.bin +firmware: amdgpu/aldebaran_mec2.bin +firmware: amdgpu/aldebaran_rlc.bin +firmware: amdgpu/aldebaran_sdma.bin +firmware: amdgpu/aldebaran_smc.bin +firmware: amdgpu/aldebaran_sos.bin +firmware: amdgpu/aldebaran_ta.bin +firmware: amdgpu/aldebaran_vcn.bin +firmware: amdgpu/arcturus_asd.bin +firmware: amdgpu/arcturus_gpu_info.bin +firmware: amdgpu/arcturus_mec.bin +firmware: amdgpu/arcturus_rlc.bin +firmware: amdgpu/arcturus_sdma.bin +firmware: amdgpu/arcturus_smc.bin +firmware: amdgpu/arcturus_sos.bin +firmware: amdgpu/arcturus_ta.bin +firmware: amdgpu/arcturus_vcn.bin +firmware: amdgpu/banks_k_2_smc.bin +firmware: amdgpu/beige_goby_ce.bin +firmware: amdgpu/beige_goby_dmcub.bin +firmware: amdgpu/beige_goby_me.bin +firmware: amdgpu/beige_goby_mec.bin +firmware: amdgpu/beige_goby_mec2.bin +firmware: amdgpu/beige_goby_pfp.bin +firmware: amdgpu/beige_goby_rlc.bin +firmware: amdgpu/beige_goby_sdma.bin +firmware: amdgpu/beige_goby_smc.bin +firmware: amdgpu/beige_goby_sos.bin +firmware: amdgpu/beige_goby_ta.bin +firmware: amdgpu/beige_goby_vcn.bin +firmware: amdgpu/bonaire_ce.bin +firmware: amdgpu/bonaire_k_smc.bin +firmware: amdgpu/bonaire_mc.bin +firmware: amdgpu/bonaire_me.bin +firmware: amdgpu/bonaire_mec.bin +firmware: amdgpu/bonaire_pfp.bin +firmware: amdgpu/bonaire_rlc.bin +firmware: amdgpu/bonaire_sdma.bin +firmware: amdgpu/bonaire_sdma1.bin +firmware: amdgpu/bonaire_smc.bin +firmware: amdgpu/bonaire_uvd.bin +firmware: amdgpu/bonaire_vce.bin +firmware: amdgpu/carrizo_ce.bin +firmware: amdgpu/carrizo_me.bin +firmware: amdgpu/carrizo_mec.bin +firmware: amdgpu/carrizo_mec2.bin +firmware: amdgpu/carrizo_pfp.bin +firmware: amdgpu/carrizo_rlc.bin +firmware: amdgpu/carrizo_sdma.bin +firmware: amdgpu/carrizo_sdma1.bin +firmware: amdgpu/carrizo_uvd.bin +firmware: amdgpu/carrizo_vce.bin +firmware: amdgpu/cyan_skillfish2_ce.bin +firmware: amdgpu/cyan_skillfish2_me.bin +firmware: amdgpu/cyan_skillfish2_mec.bin +firmware: amdgpu/cyan_skillfish2_mec2.bin +firmware: amdgpu/cyan_skillfish2_pfp.bin +firmware: amdgpu/cyan_skillfish2_rlc.bin +firmware: amdgpu/cyan_skillfish2_sdma.bin +firmware: amdgpu/cyan_skillfish2_sdma1.bin +firmware: amdgpu/cyan_skillfish_ce.bin +firmware: amdgpu/cyan_skillfish_me.bin +firmware: amdgpu/cyan_skillfish_mec.bin +firmware: amdgpu/cyan_skillfish_mec2.bin +firmware: amdgpu/cyan_skillfish_pfp.bin +firmware: amdgpu/cyan_skillfish_rlc.bin +firmware: amdgpu/cyan_skillfish_sdma.bin +firmware: amdgpu/cyan_skillfish_sdma1.bin +firmware: amdgpu/dimgrey_cavefish_ce.bin +firmware: amdgpu/dimgrey_cavefish_dmcub.bin +firmware: amdgpu/dimgrey_cavefish_me.bin +firmware: amdgpu/dimgrey_cavefish_mec.bin +firmware: amdgpu/dimgrey_cavefish_mec2.bin +firmware: amdgpu/dimgrey_cavefish_pfp.bin +firmware: amdgpu/dimgrey_cavefish_rlc.bin +firmware: amdgpu/dimgrey_cavefish_sdma.bin +firmware: amdgpu/dimgrey_cavefish_smc.bin +firmware: amdgpu/dimgrey_cavefish_sos.bin +firmware: amdgpu/dimgrey_cavefish_ta.bin +firmware: amdgpu/dimgrey_cavefish_vcn.bin +firmware: amdgpu/fiji_ce.bin +firmware: amdgpu/fiji_me.bin +firmware: amdgpu/fiji_mec.bin +firmware: amdgpu/fiji_mec2.bin +firmware: amdgpu/fiji_pfp.bin +firmware: amdgpu/fiji_rlc.bin +firmware: amdgpu/fiji_sdma.bin +firmware: amdgpu/fiji_sdma1.bin +firmware: amdgpu/fiji_smc.bin +firmware: amdgpu/fiji_uvd.bin +firmware: amdgpu/fiji_vce.bin +firmware: amdgpu/green_sardine_asd.bin +firmware: amdgpu/green_sardine_ce.bin +firmware: amdgpu/green_sardine_dmcub.bin +firmware: amdgpu/green_sardine_me.bin +firmware: amdgpu/green_sardine_mec.bin +firmware: amdgpu/green_sardine_mec2.bin +firmware: amdgpu/green_sardine_pfp.bin +firmware: amdgpu/green_sardine_rlc.bin +firmware: amdgpu/green_sardine_sdma.bin +firmware: amdgpu/green_sardine_ta.bin +firmware: amdgpu/green_sardine_vcn.bin +firmware: amdgpu/hainan_ce.bin +firmware: amdgpu/hainan_k_smc.bin +firmware: amdgpu/hainan_mc.bin +firmware: amdgpu/hainan_me.bin +firmware: amdgpu/hainan_pfp.bin +firmware: amdgpu/hainan_rlc.bin +firmware: amdgpu/hainan_smc.bin +firmware: amdgpu/hawaii_ce.bin +firmware: amdgpu/hawaii_k_smc.bin +firmware: amdgpu/hawaii_mc.bin +firmware: amdgpu/hawaii_me.bin +firmware: amdgpu/hawaii_mec.bin +firmware: amdgpu/hawaii_pfp.bin +firmware: amdgpu/hawaii_rlc.bin +firmware: amdgpu/hawaii_sdma.bin +firmware: amdgpu/hawaii_sdma1.bin +firmware: amdgpu/hawaii_smc.bin +firmware: amdgpu/hawaii_uvd.bin +firmware: amdgpu/hawaii_vce.bin +firmware: amdgpu/kabini_ce.bin +firmware: amdgpu/kabini_me.bin +firmware: amdgpu/kabini_mec.bin +firmware: amdgpu/kabini_pfp.bin +firmware: amdgpu/kabini_rlc.bin +firmware: amdgpu/kabini_sdma.bin +firmware: amdgpu/kabini_sdma1.bin +firmware: amdgpu/kabini_uvd.bin +firmware: amdgpu/kabini_vce.bin +firmware: amdgpu/kaveri_ce.bin +firmware: amdgpu/kaveri_me.bin +firmware: amdgpu/kaveri_mec.bin +firmware: amdgpu/kaveri_mec2.bin +firmware: amdgpu/kaveri_pfp.bin +firmware: amdgpu/kaveri_rlc.bin +firmware: amdgpu/kaveri_sdma.bin +firmware: amdgpu/kaveri_sdma1.bin +firmware: amdgpu/kaveri_uvd.bin +firmware: amdgpu/kaveri_vce.bin +firmware: amdgpu/mullins_ce.bin +firmware: amdgpu/mullins_me.bin +firmware: amdgpu/mullins_mec.bin +firmware: amdgpu/mullins_pfp.bin +firmware: amdgpu/mullins_rlc.bin +firmware: amdgpu/mullins_sdma.bin +firmware: amdgpu/mullins_sdma1.bin +firmware: amdgpu/mullins_uvd.bin +firmware: amdgpu/mullins_vce.bin +firmware: amdgpu/navi10_asd.bin +firmware: amdgpu/navi10_ce.bin +firmware: amdgpu/navi10_gpu_info.bin +firmware: amdgpu/navi10_me.bin +firmware: amdgpu/navi10_mec.bin +firmware: amdgpu/navi10_mec2.bin +firmware: amdgpu/navi10_mes.bin +firmware: amdgpu/navi10_pfp.bin +firmware: amdgpu/navi10_rlc.bin +firmware: amdgpu/navi10_sdma.bin +firmware: amdgpu/navi10_sdma1.bin +firmware: amdgpu/navi10_smc.bin +firmware: amdgpu/navi10_sos.bin +firmware: amdgpu/navi10_ta.bin +firmware: amdgpu/navi10_vcn.bin +firmware: amdgpu/navi12_asd.bin +firmware: amdgpu/navi12_ce.bin +firmware: amdgpu/navi12_dmcu.bin +firmware: amdgpu/navi12_gpu_info.bin +firmware: amdgpu/navi12_me.bin +firmware: amdgpu/navi12_mec.bin +firmware: amdgpu/navi12_mec2.bin +firmware: amdgpu/navi12_pfp.bin +firmware: amdgpu/navi12_rlc.bin +firmware: amdgpu/navi12_sdma.bin +firmware: amdgpu/navi12_sdma1.bin +firmware: amdgpu/navi12_smc.bin +firmware: amdgpu/navi12_sos.bin +firmware: amdgpu/navi12_ta.bin +firmware: amdgpu/navi12_vcn.bin +firmware: amdgpu/navi14_asd.bin +firmware: amdgpu/navi14_ce.bin +firmware: amdgpu/navi14_ce_wks.bin +firmware: amdgpu/navi14_gpu_info.bin +firmware: amdgpu/navi14_me.bin +firmware: amdgpu/navi14_me_wks.bin +firmware: amdgpu/navi14_mec.bin +firmware: amdgpu/navi14_mec2.bin +firmware: amdgpu/navi14_mec2_wks.bin +firmware: amdgpu/navi14_mec_wks.bin +firmware: amdgpu/navi14_pfp.bin +firmware: amdgpu/navi14_pfp_wks.bin +firmware: amdgpu/navi14_rlc.bin +firmware: amdgpu/navi14_sdma.bin +firmware: amdgpu/navi14_sdma1.bin +firmware: amdgpu/navi14_smc.bin +firmware: amdgpu/navi14_sos.bin +firmware: amdgpu/navi14_ta.bin +firmware: amdgpu/navi14_vcn.bin +firmware: amdgpu/navy_flounder_ce.bin +firmware: amdgpu/navy_flounder_dmcub.bin +firmware: amdgpu/navy_flounder_me.bin +firmware: amdgpu/navy_flounder_mec.bin +firmware: amdgpu/navy_flounder_mec2.bin +firmware: amdgpu/navy_flounder_pfp.bin +firmware: amdgpu/navy_flounder_rlc.bin +firmware: amdgpu/navy_flounder_sdma.bin +firmware: amdgpu/navy_flounder_smc.bin +firmware: amdgpu/navy_flounder_sos.bin +firmware: amdgpu/navy_flounder_ta.bin +firmware: amdgpu/navy_flounder_vcn.bin +firmware: amdgpu/oland_ce.bin +firmware: amdgpu/oland_k_smc.bin +firmware: amdgpu/oland_mc.bin +firmware: amdgpu/oland_me.bin +firmware: amdgpu/oland_pfp.bin +firmware: amdgpu/oland_rlc.bin +firmware: amdgpu/oland_smc.bin +firmware: amdgpu/oland_uvd.bin +firmware: amdgpu/picasso_asd.bin +firmware: amdgpu/picasso_ce.bin +firmware: amdgpu/picasso_gpu_info.bin +firmware: amdgpu/picasso_me.bin +firmware: amdgpu/picasso_mec.bin +firmware: amdgpu/picasso_mec2.bin +firmware: amdgpu/picasso_pfp.bin +firmware: amdgpu/picasso_rlc.bin +firmware: amdgpu/picasso_rlc_am4.bin +firmware: amdgpu/picasso_sdma.bin +firmware: amdgpu/picasso_ta.bin +firmware: amdgpu/picasso_vcn.bin +firmware: amdgpu/pitcairn_ce.bin +firmware: amdgpu/pitcairn_k_smc.bin +firmware: amdgpu/pitcairn_mc.bin +firmware: amdgpu/pitcairn_me.bin +firmware: amdgpu/pitcairn_pfp.bin +firmware: amdgpu/pitcairn_rlc.bin +firmware: amdgpu/pitcairn_smc.bin +firmware: amdgpu/pitcairn_uvd.bin +firmware: amdgpu/polaris10_ce.bin +firmware: amdgpu/polaris10_ce_2.bin +firmware: amdgpu/polaris10_k2_smc.bin +firmware: amdgpu/polaris10_k_mc.bin +firmware: amdgpu/polaris10_k_smc.bin +firmware: amdgpu/polaris10_mc.bin +firmware: amdgpu/polaris10_me.bin +firmware: amdgpu/polaris10_me_2.bin +firmware: amdgpu/polaris10_mec.bin +firmware: amdgpu/polaris10_mec2.bin +firmware: amdgpu/polaris10_mec2_2.bin +firmware: amdgpu/polaris10_mec_2.bin +firmware: amdgpu/polaris10_pfp.bin +firmware: amdgpu/polaris10_pfp_2.bin +firmware: amdgpu/polaris10_rlc.bin +firmware: amdgpu/polaris10_sdma.bin +firmware: amdgpu/polaris10_sdma1.bin +firmware: amdgpu/polaris10_smc.bin +firmware: amdgpu/polaris10_smc_sk.bin +firmware: amdgpu/polaris10_uvd.bin +firmware: amdgpu/polaris10_vce.bin +firmware: amdgpu/polaris11_ce.bin +firmware: amdgpu/polaris11_ce_2.bin +firmware: amdgpu/polaris11_k2_smc.bin +firmware: amdgpu/polaris11_k_mc.bin +firmware: amdgpu/polaris11_k_smc.bin +firmware: amdgpu/polaris11_mc.bin +firmware: amdgpu/polaris11_me.bin +firmware: amdgpu/polaris11_me_2.bin +firmware: amdgpu/polaris11_mec.bin +firmware: amdgpu/polaris11_mec2.bin +firmware: amdgpu/polaris11_mec2_2.bin +firmware: amdgpu/polaris11_mec_2.bin +firmware: amdgpu/polaris11_pfp.bin +firmware: amdgpu/polaris11_pfp_2.bin +firmware: amdgpu/polaris11_rlc.bin +firmware: amdgpu/polaris11_sdma.bin +firmware: amdgpu/polaris11_sdma1.bin +firmware: amdgpu/polaris11_smc.bin +firmware: amdgpu/polaris11_smc_sk.bin +firmware: amdgpu/polaris11_uvd.bin +firmware: amdgpu/polaris11_vce.bin +firmware: amdgpu/polaris12_32_mc.bin +firmware: amdgpu/polaris12_ce.bin +firmware: amdgpu/polaris12_ce_2.bin +firmware: amdgpu/polaris12_k_mc.bin +firmware: amdgpu/polaris12_k_smc.bin +firmware: amdgpu/polaris12_mc.bin +firmware: amdgpu/polaris12_me.bin +firmware: amdgpu/polaris12_me_2.bin +firmware: amdgpu/polaris12_mec.bin +firmware: amdgpu/polaris12_mec2.bin +firmware: amdgpu/polaris12_mec2_2.bin +firmware: amdgpu/polaris12_mec_2.bin +firmware: amdgpu/polaris12_pfp.bin +firmware: amdgpu/polaris12_pfp_2.bin +firmware: amdgpu/polaris12_rlc.bin +firmware: amdgpu/polaris12_sdma.bin +firmware: amdgpu/polaris12_sdma1.bin +firmware: amdgpu/polaris12_smc.bin +firmware: amdgpu/polaris12_uvd.bin +firmware: amdgpu/polaris12_vce.bin +firmware: amdgpu/raven2_asd.bin +firmware: amdgpu/raven2_ce.bin +firmware: amdgpu/raven2_gpu_info.bin +firmware: amdgpu/raven2_me.bin +firmware: amdgpu/raven2_mec.bin +firmware: amdgpu/raven2_mec2.bin +firmware: amdgpu/raven2_pfp.bin +firmware: amdgpu/raven2_rlc.bin +firmware: amdgpu/raven2_sdma.bin +firmware: amdgpu/raven2_ta.bin +firmware: amdgpu/raven2_vcn.bin +firmware: amdgpu/raven_asd.bin +firmware: amdgpu/raven_ce.bin +firmware: amdgpu/raven_dmcu.bin +firmware: amdgpu/raven_gpu_info.bin +firmware: amdgpu/raven_kicker_rlc.bin +firmware: amdgpu/raven_me.bin +firmware: amdgpu/raven_mec.bin +firmware: amdgpu/raven_mec2.bin +firmware: amdgpu/raven_pfp.bin +firmware: amdgpu/raven_rlc.bin +firmware: amdgpu/raven_sdma.bin +firmware: amdgpu/raven_ta.bin +firmware: amdgpu/raven_vcn.bin +firmware: amdgpu/renoir_asd.bin +firmware: amdgpu/renoir_ce.bin +firmware: amdgpu/renoir_dmcub.bin +firmware: amdgpu/renoir_gpu_info.bin +firmware: amdgpu/renoir_me.bin +firmware: amdgpu/renoir_mec.bin +firmware: amdgpu/renoir_pfp.bin +firmware: amdgpu/renoir_rlc.bin +firmware: amdgpu/renoir_sdma.bin +firmware: amdgpu/renoir_ta.bin +firmware: amdgpu/renoir_vcn.bin +firmware: amdgpu/si58_mc.bin +firmware: amdgpu/sienna_cichlid_ce.bin +firmware: amdgpu/sienna_cichlid_dmcub.bin +firmware: amdgpu/sienna_cichlid_me.bin +firmware: amdgpu/sienna_cichlid_mec.bin +firmware: amdgpu/sienna_cichlid_mec2.bin +firmware: amdgpu/sienna_cichlid_mes.bin +firmware: amdgpu/sienna_cichlid_pfp.bin +firmware: amdgpu/sienna_cichlid_rlc.bin +firmware: amdgpu/sienna_cichlid_sdma.bin +firmware: amdgpu/sienna_cichlid_smc.bin +firmware: amdgpu/sienna_cichlid_sos.bin +firmware: amdgpu/sienna_cichlid_ta.bin +firmware: amdgpu/sienna_cichlid_vcn.bin +firmware: amdgpu/stoney_ce.bin +firmware: amdgpu/stoney_me.bin +firmware: amdgpu/stoney_mec.bin +firmware: amdgpu/stoney_pfp.bin +firmware: amdgpu/stoney_rlc.bin +firmware: amdgpu/stoney_sdma.bin +firmware: amdgpu/stoney_uvd.bin +firmware: amdgpu/stoney_vce.bin +firmware: amdgpu/tahiti_ce.bin +firmware: amdgpu/tahiti_mc.bin +firmware: amdgpu/tahiti_me.bin +firmware: amdgpu/tahiti_pfp.bin +firmware: amdgpu/tahiti_rlc.bin +firmware: amdgpu/tahiti_smc.bin +firmware: amdgpu/tahiti_uvd.bin +firmware: amdgpu/tonga_ce.bin +firmware: amdgpu/tonga_k_smc.bin +firmware: amdgpu/tonga_mc.bin +firmware: amdgpu/tonga_me.bin +firmware: amdgpu/tonga_mec.bin +firmware: amdgpu/tonga_mec2.bin +firmware: amdgpu/tonga_pfp.bin +firmware: amdgpu/tonga_rlc.bin +firmware: amdgpu/tonga_sdma.bin +firmware: amdgpu/tonga_sdma1.bin +firmware: amdgpu/tonga_smc.bin +firmware: amdgpu/tonga_uvd.bin +firmware: amdgpu/tonga_vce.bin +firmware: amdgpu/topaz_ce.bin +firmware: amdgpu/topaz_k_smc.bin +firmware: amdgpu/topaz_mc.bin +firmware: amdgpu/topaz_me.bin +firmware: amdgpu/topaz_mec.bin +firmware: amdgpu/topaz_pfp.bin +firmware: amdgpu/topaz_rlc.bin +firmware: amdgpu/topaz_sdma.bin +firmware: amdgpu/topaz_sdma1.bin +firmware: amdgpu/topaz_smc.bin +firmware: amdgpu/vangogh_asd.bin +firmware: amdgpu/vangogh_ce.bin +firmware: amdgpu/vangogh_dmcub.bin +firmware: amdgpu/vangogh_gpu_info.bin +firmware: amdgpu/vangogh_me.bin +firmware: amdgpu/vangogh_mec.bin +firmware: amdgpu/vangogh_mec2.bin +firmware: amdgpu/vangogh_pfp.bin +firmware: amdgpu/vangogh_rlc.bin +firmware: amdgpu/vangogh_sdma.bin +firmware: amdgpu/vangogh_toc.bin +firmware: amdgpu/vangogh_vcn.bin +firmware: amdgpu/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_ce.bin +firmware: amdgpu/vega10_gpu_info.bin +firmware: amdgpu/vega10_me.bin +firmware: amdgpu/vega10_mec.bin +firmware: amdgpu/vega10_mec2.bin +firmware: amdgpu/vega10_pfp.bin +firmware: amdgpu/vega10_rlc.bin +firmware: amdgpu/vega10_sdma.bin +firmware: amdgpu/vega10_sdma1.bin +firmware: amdgpu/vega10_smc.bin +firmware: amdgpu/vega10_sos.bin +firmware: amdgpu/vega10_uvd.bin +firmware: amdgpu/vega10_vce.bin +firmware: amdgpu/vega12_asd.bin +firmware: amdgpu/vega12_ce.bin +firmware: amdgpu/vega12_gpu_info.bin +firmware: amdgpu/vega12_me.bin +firmware: amdgpu/vega12_mec.bin +firmware: amdgpu/vega12_mec2.bin +firmware: amdgpu/vega12_pfp.bin +firmware: amdgpu/vega12_rlc.bin +firmware: amdgpu/vega12_sdma.bin +firmware: amdgpu/vega12_sdma1.bin +firmware: amdgpu/vega12_smc.bin +firmware: amdgpu/vega12_sos.bin +firmware: amdgpu/vega12_uvd.bin +firmware: amdgpu/vega12_vce.bin +firmware: amdgpu/vega20_asd.bin +firmware: amdgpu/vega20_ce.bin +firmware: amdgpu/vega20_me.bin +firmware: amdgpu/vega20_mec.bin +firmware: amdgpu/vega20_mec2.bin +firmware: amdgpu/vega20_pfp.bin +firmware: amdgpu/vega20_rlc.bin +firmware: amdgpu/vega20_sdma.bin +firmware: amdgpu/vega20_sdma1.bin +firmware: amdgpu/vega20_smc.bin +firmware: amdgpu/vega20_sos.bin +firmware: amdgpu/vega20_ta.bin +firmware: amdgpu/vega20_uvd.bin +firmware: amdgpu/vega20_vce.bin +firmware: amdgpu/vegam_ce.bin +firmware: amdgpu/vegam_me.bin +firmware: amdgpu/vegam_mec.bin +firmware: amdgpu/vegam_mec2.bin +firmware: amdgpu/vegam_pfp.bin +firmware: amdgpu/vegam_rlc.bin +firmware: amdgpu/vegam_sdma.bin +firmware: amdgpu/vegam_sdma1.bin +firmware: amdgpu/vegam_smc.bin +firmware: amdgpu/vegam_uvd.bin +firmware: amdgpu/vegam_vce.bin +firmware: amdgpu/verde_ce.bin +firmware: amdgpu/verde_k_smc.bin +firmware: amdgpu/verde_mc.bin +firmware: amdgpu/verde_me.bin +firmware: amdgpu/verde_pfp.bin +firmware: amdgpu/verde_rlc.bin +firmware: amdgpu/verde_smc.bin +firmware: amdgpu/verde_uvd.bin +firmware: amdgpu/yellow_carp_asd.bin +firmware: amdgpu/yellow_carp_ce.bin +firmware: amdgpu/yellow_carp_dmcub.bin +firmware: amdgpu/yellow_carp_gpu_info.bin +firmware: amdgpu/yellow_carp_me.bin +firmware: amdgpu/yellow_carp_mec.bin +firmware: amdgpu/yellow_carp_mec2.bin +firmware: amdgpu/yellow_carp_pfp.bin +firmware: amdgpu/yellow_carp_rlc.bin +firmware: amdgpu/yellow_carp_sdma.bin +firmware: amdgpu/yellow_carp_ta.bin +firmware: amdgpu/yellow_carp_toc.bin +firmware: amdgpu/yellow_carp_vcn.bin +firmware: ar5523.bin +firmware: asihpi/dsp5000.bin +firmware: asihpi/dsp6200.bin +firmware: asihpi/dsp6205.bin +firmware: asihpi/dsp6400.bin +firmware: asihpi/dsp6600.bin +firmware: asihpi/dsp8700.bin +firmware: asihpi/dsp8900.bin +firmware: ast_dp501_fw.bin +firmware: ath10k/QCA6174/hw2.1/board-2.bin +firmware: ath10k/QCA6174/hw2.1/board.bin +firmware: ath10k/QCA6174/hw2.1/firmware-4.bin +firmware: ath10k/QCA6174/hw2.1/firmware-5.bin +firmware: ath10k/QCA6174/hw3.0/board-2.bin +firmware: ath10k/QCA6174/hw3.0/board.bin +firmware: ath10k/QCA6174/hw3.0/firmware-4.bin +firmware: ath10k/QCA6174/hw3.0/firmware-5.bin +firmware: ath10k/QCA6174/hw3.0/firmware-6.bin +firmware: ath10k/QCA9377/hw1.0/board.bin +firmware: ath10k/QCA9377/hw1.0/firmware-5.bin +firmware: ath10k/QCA9377/hw1.0/firmware-6.bin +firmware: ath10k/QCA9887/hw1.0/board-2.bin +firmware: ath10k/QCA9887/hw1.0/board.bin +firmware: ath10k/QCA9887/hw1.0/firmware-5.bin +firmware: ath10k/QCA988X/hw2.0/board-2.bin +firmware: ath10k/QCA988X/hw2.0/board.bin +firmware: ath10k/QCA988X/hw2.0/firmware-2.bin +firmware: ath10k/QCA988X/hw2.0/firmware-3.bin +firmware: ath10k/QCA988X/hw2.0/firmware-4.bin +firmware: ath10k/QCA988X/hw2.0/firmware-5.bin +firmware: ath11k/QCA6390/hw2.0/amss.bin +firmware: ath11k/QCA6390/hw2.0/board-2.bin +firmware: ath11k/QCA6390/hw2.0/m3.bin +firmware: ath3k-1.fw +firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 +firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin +firmware: ath6k/AR6003/hw2.0/bdata.bin +firmware: ath6k/AR6003/hw2.0/data.patch.bin +firmware: ath6k/AR6003/hw2.0/otp.bin.z77 +firmware: ath6k/AR6003/hw2.1.1/athwlan.bin +firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin +firmware: ath6k/AR6003/hw2.1.1/bdata.bin +firmware: ath6k/AR6003/hw2.1.1/data.patch.bin +firmware: ath6k/AR6003/hw2.1.1/otp.bin +firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin +firmware: ath6k/AR6004/hw1.0/bdata.bin +firmware: ath6k/AR6004/hw1.0/fw.ram.bin +firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin +firmware: ath6k/AR6004/hw1.1/bdata.bin +firmware: ath6k/AR6004/hw1.1/fw.ram.bin +firmware: ath6k/AR6004/hw1.2/bdata.bin +firmware: ath6k/AR6004/hw1.2/fw.ram.bin +firmware: ath6k/AR6004/hw1.3/bdata.bin +firmware: ath6k/AR6004/hw1.3/fw.ram.bin +firmware: ath9k_htc/htc_7010-1.4.0.fw +firmware: ath9k_htc/htc_9271-1.4.0.fw +firmware: atmel/wilc1000_wifi_firmware-1.bin +firmware: atmel_at76c502-wpa.bin +firmware: atmel_at76c502.bin +firmware: atmel_at76c502_3com-wpa.bin +firmware: atmel_at76c502_3com.bin +firmware: atmel_at76c502d-wpa.bin +firmware: atmel_at76c502d.bin +firmware: atmel_at76c502e-wpa.bin +firmware: atmel_at76c502e.bin +firmware: atmel_at76c503-i3861.bin +firmware: atmel_at76c503-i3863.bin +firmware: atmel_at76c503-rfmd-acc.bin +firmware: atmel_at76c503-rfmd.bin +firmware: atmel_at76c504-wpa.bin +firmware: atmel_at76c504.bin +firmware: atmel_at76c504_2958-wpa.bin +firmware: atmel_at76c504_2958.bin +firmware: atmel_at76c504a_2958-wpa.bin +firmware: atmel_at76c504a_2958.bin +firmware: atmel_at76c505-rfmd.bin +firmware: atmel_at76c505-rfmd2958.bin +firmware: atmel_at76c505a-rfmd2958.bin +firmware: atmel_at76c505amx-rfmd.bin +firmware: atmel_at76c506-wpa.bin +firmware: atmel_at76c506.bin +firmware: atmsar11.fw +firmware: atsc_denver.inp +firmware: av7110/bootcode.bin +firmware: b43/ucode11.fw +firmware: b43/ucode13.fw +firmware: b43/ucode14.fw +firmware: b43/ucode15.fw +firmware: b43/ucode16_lp.fw +firmware: b43/ucode16_mimo.fw +firmware: b43/ucode24_lcn.fw +firmware: b43/ucode25_lcn.fw +firmware: b43/ucode25_mimo.fw +firmware: b43/ucode26_mimo.fw +firmware: b43/ucode29_mimo.fw +firmware: b43/ucode30_mimo.fw +firmware: b43/ucode33_lcn40.fw +firmware: b43/ucode40.fw +firmware: b43/ucode42.fw +firmware: b43/ucode5.fw +firmware: b43/ucode9.fw +firmware: b43legacy/ucode2.fw +firmware: b43legacy/ucode4.fw +firmware: bfubase.frm +firmware: bnx2/bnx2-mips-06-6.2.3.fw +firmware: bnx2/bnx2-mips-09-6.2.1b.fw +firmware: bnx2/bnx2-rv2p-06-6.0.15.fw +firmware: bnx2/bnx2-rv2p-09-6.0.17.fw +firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw +firmware: bnx2x/bnx2x-e1-7.13.15.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.15.0.fw +firmware: bnx2x/bnx2x-e2-7.13.15.0.fw +firmware: brcm/bcm43xx-0.fw +firmware: brcm/bcm43xx_hdr-0.fw +firmware: brcm/brcmfmac*-pcie.*.txt +firmware: brcm/brcmfmac*-sdio.*.bin +firmware: brcm/brcmfmac*-sdio.*.txt +firmware: brcm/brcmfmac43012-sdio.bin +firmware: brcm/brcmfmac43012-sdio.clm_blob +firmware: brcm/brcmfmac43143-sdio.bin +firmware: brcm/brcmfmac43143.bin +firmware: brcm/brcmfmac43236b.bin +firmware: brcm/brcmfmac43241b0-sdio.bin +firmware: brcm/brcmfmac43241b4-sdio.bin +firmware: brcm/brcmfmac43241b5-sdio.bin +firmware: brcm/brcmfmac43242a.bin +firmware: brcm/brcmfmac4329-sdio.bin +firmware: brcm/brcmfmac4330-sdio.bin +firmware: brcm/brcmfmac4334-sdio.bin +firmware: brcm/brcmfmac43340-sdio.bin +firmware: brcm/brcmfmac4335-sdio.bin +firmware: brcm/brcmfmac43362-sdio.bin +firmware: brcm/brcmfmac4339-sdio.bin +firmware: brcm/brcmfmac43430-sdio.bin +firmware: brcm/brcmfmac43430-sdio.clm_blob +firmware: brcm/brcmfmac43430a0-sdio.bin +firmware: brcm/brcmfmac43430b0-sdio.bin +firmware: brcm/brcmfmac43455-sdio.bin +firmware: brcm/brcmfmac43455-sdio.clm_blob +firmware: brcm/brcmfmac43456-sdio.bin +firmware: brcm/brcmfmac4350-pcie.bin +firmware: brcm/brcmfmac4350c2-pcie.bin +firmware: brcm/brcmfmac4354-sdio.bin +firmware: brcm/brcmfmac4354-sdio.clm_blob +firmware: brcm/brcmfmac4356-pcie.bin +firmware: brcm/brcmfmac4356-pcie.clm_blob +firmware: brcm/brcmfmac4356-sdio.bin +firmware: brcm/brcmfmac4356-sdio.clm_blob +firmware: brcm/brcmfmac43569.bin +firmware: brcm/brcmfmac43570-pcie.bin +firmware: brcm/brcmfmac43570-pcie.clm_blob +firmware: brcm/brcmfmac4358-pcie.bin +firmware: brcm/brcmfmac4359-pcie.bin +firmware: brcm/brcmfmac4359-sdio.bin +firmware: brcm/brcmfmac43602-pcie.bin +firmware: brcm/brcmfmac4364-pcie.bin +firmware: brcm/brcmfmac4365b-pcie.bin +firmware: brcm/brcmfmac4365c-pcie.bin +firmware: brcm/brcmfmac4366b-pcie.bin +firmware: brcm/brcmfmac4366c-pcie.bin +firmware: brcm/brcmfmac4371-pcie.bin +firmware: brcm/brcmfmac4373-sdio.bin +firmware: brcm/brcmfmac4373-sdio.clm_blob +firmware: brcm/brcmfmac4373.bin +firmware: brcm/brcmfmac43752-sdio.bin +firmware: brcm/brcmfmac43752-sdio.clm_blob +firmware: c218tunx.cod +firmware: c320tunx.cod +firmware: cadence/mhdp8546.bin +firmware: carl9170-1.fw +firmware: cavium/cnn55xx_se.fw +firmware: cbfw-3.2.5.1.bin +firmware: cis/3CCFEM556.cis +firmware: cis/3CXEM556.cis +firmware: cis/COMpad2.cis +firmware: cis/COMpad4.cis +firmware: cis/DP83903.cis +firmware: cis/LA-PCM.cis +firmware: cis/MT5634ZLX.cis +firmware: cis/NE2K.cis +firmware: cis/PCMLM28.cis +firmware: cis/PE-200.cis +firmware: cis/PE520.cis +firmware: cis/RS-COM-2P.cis +firmware: cis/SW_555_SER.cis +firmware: cis/SW_7xx_SER.cis +firmware: cis/SW_8xx_SER.cis +firmware: cis/tamarack.cis +firmware: cmmb_ming_app.inp +firmware: cmmb_vega_12mhz.inp +firmware: cmmb_venice_12mhz.inp +firmware: comedi/jr3pci.idm +firmware: cp204unx.cod +firmware: cpia2/stv0672_vp4.bin +firmware: cs46xx/cwc4630 +firmware: cs46xx/cwcasync +firmware: cs46xx/cwcbinhack +firmware: cs46xx/cwcdma +firmware: cs46xx/cwcsnoop +firmware: ct2fw-3.2.5.1.bin +firmware: ctefx-desktop.bin +firmware: ctefx-r3di.bin +firmware: ctefx.bin +firmware: ctfw-3.2.5.1.bin +firmware: cxgb3/ael2005_opt_edc.bin +firmware: cxgb3/ael2005_twx_edc.bin +firmware: cxgb3/ael2020_twx_edc.bin +firmware: cxgb3/t3b_psram-1.1.0.bin +firmware: cxgb3/t3c_psram-1.1.0.bin +firmware: cxgb3/t3fw-7.12.0.bin +firmware: cxgb4/t4fw.bin +firmware: cxgb4/t5fw.bin +firmware: cxgb4/t6fw.bin +firmware: daqboard2000_firmware.bin +firmware: digiface_firmware.bin +firmware: digiface_firmware_rev11.bin +firmware: dvb-cx18-mpc718-mt352.fw +firmware: dvb-demod-m88ds3103.fw +firmware: dvb-demod-m88ds3103b.fw +firmware: dvb-demod-m88rs6000.fw +firmware: dvb-demod-mn88472-02.fw +firmware: dvb-demod-mn88473-01.fw +firmware: dvb-demod-mxl692.fw +firmware: dvb-demod-si2165.fw +firmware: dvb-demod-si2168-a20-01.fw +firmware: dvb-demod-si2168-a30-01.fw +firmware: dvb-demod-si2168-b40-01.fw +firmware: dvb-demod-si2168-d60-01.fw +firmware: dvb-fe-af9013.fw +firmware: dvb-fe-cx24117.fw +firmware: dvb-fe-drxj-mc-1.0.8.fw +firmware: dvb-fe-ds3000.fw +firmware: dvb-fe-tda10071.fw +firmware: dvb-fe-xc4000-1.4.1.fw +firmware: dvb-fe-xc4000-1.4.fw +firmware: dvb-fe-xc5000-1.6.114.fw +firmware: dvb-fe-xc5000c-4.1.30.7.fw +firmware: dvb-tuner-si2141-a10-01.fw +firmware: dvb-tuner-si2157-a30-01.fw +firmware: dvb-tuner-si2158-a20-01.fw +firmware: dvb-usb-af9015.fw +firmware: dvb-usb-af9035-02.fw +firmware: dvb-usb-dib0700-1.20.fw +firmware: dvb-usb-dw2101.fw +firmware: dvb-usb-dw2102.fw +firmware: dvb-usb-dw2104.fw +firmware: dvb-usb-dw3101.fw +firmware: dvb-usb-ec168.fw +firmware: dvb-usb-it9135-01.fw +firmware: dvb-usb-it9135-02.fw +firmware: dvb-usb-it9303-01.fw +firmware: dvb-usb-lme2510-lg.fw +firmware: dvb-usb-lme2510-s0194.fw +firmware: dvb-usb-lme2510c-lg.fw +firmware: dvb-usb-lme2510c-rs2000.fw +firmware: dvb-usb-lme2510c-s0194.fw +firmware: dvb-usb-lme2510c-s7395.fw +firmware: dvb-usb-p1100.fw +firmware: dvb-usb-p7500.fw +firmware: dvb-usb-s630.fw +firmware: dvb-usb-s660.fw +firmware: dvb-usb-terratec-h7-az6007.fw +firmware: dvb_nova_12mhz.inp +firmware: dvb_nova_12mhz_b0.inp +firmware: dvb_rio.inp +firmware: dvbh_rio.inp +firmware: e100/d101m_ucode.bin +firmware: e100/d101s_ucode.bin +firmware: e100/d102e_ucode.bin +firmware: ea/3g_asic.fw +firmware: ea/darla20_dsp.fw +firmware: ea/darla24_dsp.fw +firmware: ea/echo3g_dsp.fw +firmware: ea/gina20_dsp.fw +firmware: ea/gina24_301_asic.fw +firmware: ea/gina24_301_dsp.fw +firmware: ea/gina24_361_asic.fw +firmware: ea/gina24_361_dsp.fw +firmware: ea/indigo_dj_dsp.fw +firmware: ea/indigo_djx_dsp.fw +firmware: ea/indigo_dsp.fw +firmware: ea/indigo_io_dsp.fw +firmware: ea/indigo_iox_dsp.fw +firmware: ea/layla20_asic.fw +firmware: ea/layla20_dsp.fw +firmware: ea/layla24_1_asic.fw +firmware: ea/layla24_2A_asic.fw +firmware: ea/layla24_2S_asic.fw +firmware: ea/layla24_dsp.fw +firmware: ea/loader_dsp.fw +firmware: ea/mia_dsp.fw +firmware: ea/mona_2_asic.fw +firmware: ea/mona_301_1_asic_48.fw +firmware: ea/mona_301_1_asic_96.fw +firmware: ea/mona_301_dsp.fw +firmware: ea/mona_361_1_asic_48.fw +firmware: ea/mona_361_1_asic_96.fw +firmware: ea/mona_361_dsp.fw +firmware: edgeport/boot.fw +firmware: edgeport/boot2.fw +firmware: edgeport/down.fw +firmware: edgeport/down2.fw +firmware: edgeport/down3.bin +firmware: emi26/bitstream.fw +firmware: emi26/firmware.fw +firmware: emi26/loader.fw +firmware: emi62/bitstream.fw +firmware: emi62/loader.fw +firmware: emi62/spdif.fw +firmware: emu/audio_dock.fw +firmware: emu/emu0404.fw +firmware: emu/emu1010_notebook.fw +firmware: emu/emu1010b.fw +firmware: emu/hana.fw +firmware: emu/micro_dock.fw +firmware: ene-ub6250/ms_init.bin +firmware: ene-ub6250/ms_rdwr.bin +firmware: ene-ub6250/msp_rdwr.bin +firmware: ene-ub6250/sd_init1.bin +firmware: ene-ub6250/sd_init2.bin +firmware: ene-ub6250/sd_rdwr.bin +firmware: ess/maestro3_assp_kernel.fw +firmware: ess/maestro3_assp_minisrc.fw +firmware: f2255usb.bin +firmware: fm_radio.inp +firmware: fm_radio_rio.inp +firmware: fw.ram.bin +firmware: go7007/go7007fw.bin +firmware: go7007/go7007tv.bin +firmware: go7007/lr192.fw +firmware: go7007/px-m402u.fw +firmware: go7007/px-tv402u.fw +firmware: go7007/s2250-1.fw +firmware: go7007/s2250-2.fw +firmware: go7007/wis-startrek.fw +firmware: hfi1_dc8051.fw +firmware: hfi1_fabric.fw +firmware: hfi1_pcie.fw +firmware: hfi1_sbus.fw +firmware: i915/adlp_dmc_ver2_10.bin +firmware: i915/adlp_guc_62.0.3.bin +firmware: i915/adls_dmc_ver2_01.bin +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_62.0.0.bin +firmware: i915/bxt_huc_2.0.0.bin +firmware: i915/cml_guc_62.0.0.bin +firmware: i915/cml_huc_4.0.0.bin +firmware: i915/dg1_dmc_ver2_02.bin +firmware: i915/ehl_guc_62.0.0.bin +firmware: i915/ehl_huc_9.0.0.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_62.0.0.bin +firmware: i915/glk_huc_4.0.0.bin +firmware: i915/icl_dmc_ver1_09.bin +firmware: i915/icl_guc_62.0.0.bin +firmware: i915/icl_huc_9.0.0.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_62.0.0.bin +firmware: i915/kbl_huc_4.0.0.bin +firmware: i915/rkl_dmc_ver2_03.bin +firmware: i915/skl_dmc_ver1_27.bin +firmware: i915/skl_guc_62.0.0.bin +firmware: i915/skl_huc_2.0.0.bin +firmware: i915/tgl_dmc_ver2_12.bin +firmware: i915/tgl_guc_62.0.0.bin +firmware: i915/tgl_huc_7.9.3.bin +firmware: icom_asc.bin +firmware: icom_call_setup.bin +firmware: icom_res_dce.bin +firmware: idt82p33xxx.bin +firmware: imx/sdma/sdma-imx6q.bin +firmware: imx/sdma/sdma-imx7d.bin +firmware: intel/ibt-11-5.ddc +firmware: intel/ibt-11-5.sfi +firmware: intel/ibt-12-16.ddc +firmware: intel/ibt-12-16.sfi +firmware: intel/ice/ddp/ice.pkg +firmware: ipw2100-1.3-i.fw +firmware: ipw2100-1.3-p.fw +firmware: ipw2100-1.3.fw +firmware: ipw2200-bss.fw +firmware: ipw2200-ibss.fw +firmware: ipw2200-sniffer.fw +firmware: isci/isci_firmware.bin +firmware: isdbt_nova_12mhz.inp +firmware: isdbt_nova_12mhz_b0.inp +firmware: isdbt_pele.inp +firmware: isdbt_rio.inp +firmware: isdn/ISAR.BIN +firmware: isight.fw +firmware: isl3886pci +firmware: isl3886usb +firmware: isl3887usb +firmware: iwlwifi-100-5.ucode +firmware: iwlwifi-1000-5.ucode +firmware: iwlwifi-105-6.ucode +firmware: iwlwifi-135-6.ucode +firmware: iwlwifi-2000-6.ucode +firmware: iwlwifi-2030-6.ucode +firmware: iwlwifi-3160-17.ucode +firmware: iwlwifi-3168-29.ucode +firmware: iwlwifi-3945-2.ucode +firmware: iwlwifi-4965-2.ucode +firmware: iwlwifi-5000-5.ucode +firmware: iwlwifi-5150-2.ucode +firmware: iwlwifi-6000-6.ucode +firmware: iwlwifi-6000g2a-6.ucode +firmware: iwlwifi-6000g2b-6.ucode +firmware: iwlwifi-6050-5.ucode +firmware: iwlwifi-7260-17.ucode +firmware: iwlwifi-7265-17.ucode +firmware: iwlwifi-7265D-29.ucode +firmware: iwlwifi-8000C-36.ucode +firmware: iwlwifi-8265-36.ucode +firmware: iwlwifi-9000-pu-b0-jf-b0-46.ucode +firmware: iwlwifi-9260-th-b0-jf-b0-46.ucode +firmware: iwlwifi-Qu-b0-hr-b0-66.ucode +firmware: iwlwifi-Qu-b0-jf-b0-66.ucode +firmware: iwlwifi-Qu-c0-hr-b0-66.ucode +firmware: iwlwifi-QuQnj-b0-hr-b0-66.ucode +firmware: iwlwifi-QuQnj-b0-jf-b0-66.ucode +firmware: iwlwifi-QuZ-a0-hr-b0-66.ucode +firmware: iwlwifi-QuZ-a0-jf-b0-66.ucode +firmware: iwlwifi-SoSnj-a0-gf-a0-66.ucode +firmware: iwlwifi-SoSnj-a0-gf4-a0-66.ucode +firmware: iwlwifi-SoSnj-a0-hr-b0-66.ucode +firmware: iwlwifi-SoSnj-a0-jf-b0-66.ucode +firmware: iwlwifi-SoSnj-a0-mr-a0-66.ucode +firmware: iwlwifi-bz-a0-gf-a0-66.ucode +firmware: iwlwifi-bz-a0-gf4-a0-66.ucode +firmware: iwlwifi-bz-a0-hr-b0-66.ucode +firmware: iwlwifi-bz-a0-mr-a0-66.ucode +firmware: iwlwifi-cc-a0-66.ucode +firmware: iwlwifi-ma-a0-fm-a0-66.ucode +firmware: iwlwifi-ma-a0-gf-a0-66.ucode +firmware: iwlwifi-ma-a0-gf4-a0-66.ucode +firmware: iwlwifi-ma-a0-hr-b0-66.ucode +firmware: iwlwifi-ma-a0-mr-a0-66.ucode +firmware: iwlwifi-so-a0-gf-a0-66.ucode +firmware: iwlwifi-so-a0-hr-b0-66.ucode +firmware: iwlwifi-so-a0-jf-b0-66.ucode +firmware: iwlwifi-ty-a0-gf-a0-66.ucode +firmware: kaweth/new_code.bin +firmware: kaweth/new_code_fix.bin +firmware: kaweth/trigger_code.bin +firmware: kaweth/trigger_code_fix.bin +firmware: keyspan/mpr.fw +firmware: keyspan/usa18x.fw +firmware: keyspan/usa19.fw +firmware: keyspan/usa19qi.fw +firmware: keyspan/usa19qw.fw +firmware: keyspan/usa19w.fw +firmware: keyspan/usa28.fw +firmware: keyspan/usa28x.fw +firmware: keyspan/usa28xa.fw +firmware: keyspan/usa28xb.fw +firmware: keyspan/usa49w.fw +firmware: keyspan/usa49wlc.fw +firmware: keyspan_pda/keyspan_pda.fw +firmware: keyspan_pda/xircom_pgs.fw +firmware: korg/k1212.dsp +firmware: ks7010sd.rom +firmware: lantiq/xrx200_phy11g_a14.bin +firmware: lantiq/xrx200_phy11g_a22.bin +firmware: lantiq/xrx200_phy22f_a14.bin +firmware: lantiq/xrx200_phy22f_a22.bin +firmware: lantiq/xrx300_phy11g_a21.bin +firmware: lantiq/xrx300_phy22f_a21.bin +firmware: lattice-ecp3.bit +firmware: lbtf_usb.bin +firmware: lgs8g75.fw +firmware: libertas/cf8305.bin +firmware: libertas/cf8381.bin +firmware: libertas/cf8381_helper.bin +firmware: libertas/cf8385.bin +firmware: libertas/cf8385_helper.bin +firmware: libertas/gspi8385.bin +firmware: libertas/gspi8385_helper.bin +firmware: libertas/gspi8385_hlp.bin +firmware: libertas/gspi8686.bin +firmware: libertas/gspi8686_hlp.bin +firmware: libertas/gspi8686_v9.bin +firmware: libertas/gspi8686_v9_helper.bin +firmware: libertas/gspi8688.bin +firmware: libertas/gspi8688_helper.bin +firmware: libertas/sd8385.bin +firmware: libertas/sd8385_helper.bin +firmware: libertas/sd8686_v8.bin +firmware: libertas/sd8686_v8_helper.bin +firmware: libertas/sd8686_v9.bin +firmware: libertas/sd8686_v9_helper.bin +firmware: libertas/sd8688.bin +firmware: libertas/sd8688_helper.bin +firmware: libertas/usb8388.bin +firmware: libertas/usb8388_v5.bin +firmware: libertas/usb8388_v9.bin +firmware: libertas/usb8682.bin +firmware: libertas_cs.fw +firmware: libertas_cs_helper.fw +firmware: liquidio/lio_210nv_nic.bin +firmware: liquidio/lio_210sv_nic.bin +firmware: liquidio/lio_23xx_nic.bin +firmware: liquidio/lio_410nv_nic.bin +firmware: me2600_firmware.bin +firmware: me4000_firmware.bin +firmware: mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin +firmware: mediatek/WIFI_RAM_CODE_MT7961_1.bin +firmware: mediatek/mt7610e.bin +firmware: mediatek/mt7610u.bin +firmware: mediatek/mt7615_cr4.bin +firmware: mediatek/mt7615_n9.bin +firmware: mediatek/mt7615_rom_patch.bin +firmware: mediatek/mt7622_n9.bin +firmware: mediatek/mt7622_rom_patch.bin +firmware: mediatek/mt7622pr2h.bin +firmware: mediatek/mt7650e.bin +firmware: mediatek/mt7663_n9_rebb.bin +firmware: mediatek/mt7663_n9_v3.bin +firmware: mediatek/mt7663pr2h.bin +firmware: mediatek/mt7663pr2h_rebb.bin +firmware: mediatek/mt7668pr2h.bin +firmware: mediatek/mt7915_rom_patch.bin +firmware: mediatek/mt7915_wa.bin +firmware: mediatek/mt7915_wm.bin +firmware: mellanox/mlxsw_spectrum-13.2008.2406.mfa2 +firmware: mellanox/mlxsw_spectrum2-29.2008.2406.mfa2 +firmware: mellanox/mlxsw_spectrum3-30.2008.2406.mfa2 +firmware: mixart/miXart8.elf +firmware: mixart/miXart8.xlx +firmware: mixart/miXart8AES.xlx +firmware: moxa/moxa-1110.fw +firmware: moxa/moxa-1130.fw +firmware: moxa/moxa-1131.fw +firmware: moxa/moxa-1150.fw +firmware: moxa/moxa-1151.fw +firmware: mrvl/sd8688.bin +firmware: mrvl/sd8688_helper.bin +firmware: mrvl/sd8786_uapsta.bin +firmware: mrvl/sd8787_uapsta.bin +firmware: mrvl/sd8797_uapsta.bin +firmware: mrvl/sd8887_uapsta.bin +firmware: mrvl/sd8897_uapsta.bin +firmware: mrvl/sd8987_uapsta.bin +firmware: mrvl/sdsd8977_combo_v2.bin +firmware: mrvl/sdsd8997_combo_v4.bin +firmware: mrvl/usb8766_uapsta.bin +firmware: mrvl/usb8797_uapsta.bin +firmware: mrvl/usb8801_uapsta.bin +firmware: mrvl/usbusb8997_combo_v4.bin +firmware: mt7601u.bin +firmware: mt7603_e1.bin +firmware: mt7603_e2.bin +firmware: mt7628_e1.bin +firmware: mt7628_e2.bin +firmware: mt7662.bin +firmware: mt7662_rom_patch.bin +firmware: mts_cdma.fw +firmware: mts_edge.fw +firmware: mts_gsm.fw +firmware: mts_mt9234mu.fw +firmware: mts_mt9234zba.fw +firmware: multiface_firmware.bin +firmware: multiface_firmware_rev11.bin +firmware: mwl8k/fmimage_8363.fw +firmware: mwl8k/fmimage_8366.fw +firmware: mwl8k/fmimage_8366_ap-3.fw +firmware: mwl8k/fmimage_8687.fw +firmware: mwl8k/helper_8363.fw +firmware: mwl8k/helper_8366.fw +firmware: mwl8k/helper_8687.fw +firmware: myri10ge_eth_z8e.dat +firmware: myri10ge_ethp_z8e.dat +firmware: myri10ge_rss_eth_z8e.dat +firmware: myri10ge_rss_ethp_z8e.dat +firmware: netronome/nic_AMDA0058-0011_2x40.nffw +firmware: netronome/nic_AMDA0058-0012_2x40.nffw +firmware: netronome/nic_AMDA0081-0001_1x40.nffw +firmware: netronome/nic_AMDA0081-0001_4x10.nffw +firmware: netronome/nic_AMDA0096-0001_2x10.nffw +firmware: netronome/nic_AMDA0097-0001_2x40.nffw +firmware: netronome/nic_AMDA0097-0001_4x10_1x40.nffw +firmware: netronome/nic_AMDA0097-0001_8x10.nffw +firmware: netronome/nic_AMDA0099-0001_1x10_1x25.nffw +firmware: netronome/nic_AMDA0099-0001_2x10.nffw +firmware: netronome/nic_AMDA0099-0001_2x25.nffw +firmware: ni6534a.bin +firmware: niscrb01.bin +firmware: niscrb02.bin +firmware: nvidia/gk20a/fecs_data.bin +firmware: nvidia/gk20a/fecs_inst.bin +firmware: nvidia/gk20a/gpccs_data.bin +firmware: nvidia/gk20a/gpccs_inst.bin +firmware: nvidia/gk20a/sw_bundle_init.bin +firmware: nvidia/gk20a/sw_ctx.bin +firmware: nvidia/gk20a/sw_method_init.bin +firmware: nvidia/gk20a/sw_nonctx.bin +firmware: nvidia/gm200/acr/bl.bin +firmware: nvidia/gm200/acr/ucode_load.bin +firmware: nvidia/gm200/acr/ucode_unload.bin +firmware: nvidia/gm200/gr/fecs_bl.bin +firmware: nvidia/gm200/gr/fecs_data.bin +firmware: nvidia/gm200/gr/fecs_inst.bin +firmware: nvidia/gm200/gr/fecs_sig.bin +firmware: nvidia/gm200/gr/gpccs_bl.bin +firmware: nvidia/gm200/gr/gpccs_data.bin +firmware: nvidia/gm200/gr/gpccs_inst.bin +firmware: nvidia/gm200/gr/gpccs_sig.bin +firmware: nvidia/gm200/gr/sw_bundle_init.bin +firmware: nvidia/gm200/gr/sw_ctx.bin +firmware: nvidia/gm200/gr/sw_method_init.bin +firmware: nvidia/gm200/gr/sw_nonctx.bin +firmware: nvidia/gm204/acr/bl.bin +firmware: nvidia/gm204/acr/ucode_load.bin +firmware: nvidia/gm204/acr/ucode_unload.bin +firmware: nvidia/gm204/gr/fecs_bl.bin +firmware: nvidia/gm204/gr/fecs_data.bin +firmware: nvidia/gm204/gr/fecs_inst.bin +firmware: nvidia/gm204/gr/fecs_sig.bin +firmware: nvidia/gm204/gr/gpccs_bl.bin +firmware: nvidia/gm204/gr/gpccs_data.bin +firmware: nvidia/gm204/gr/gpccs_inst.bin +firmware: nvidia/gm204/gr/gpccs_sig.bin +firmware: nvidia/gm204/gr/sw_bundle_init.bin +firmware: nvidia/gm204/gr/sw_ctx.bin +firmware: nvidia/gm204/gr/sw_method_init.bin +firmware: nvidia/gm204/gr/sw_nonctx.bin +firmware: nvidia/gm206/acr/bl.bin +firmware: nvidia/gm206/acr/ucode_load.bin +firmware: nvidia/gm206/acr/ucode_unload.bin +firmware: nvidia/gm206/gr/fecs_bl.bin +firmware: nvidia/gm206/gr/fecs_data.bin +firmware: nvidia/gm206/gr/fecs_inst.bin +firmware: nvidia/gm206/gr/fecs_sig.bin +firmware: nvidia/gm206/gr/gpccs_bl.bin +firmware: nvidia/gm206/gr/gpccs_data.bin +firmware: nvidia/gm206/gr/gpccs_inst.bin +firmware: nvidia/gm206/gr/gpccs_sig.bin +firmware: nvidia/gm206/gr/sw_bundle_init.bin +firmware: nvidia/gm206/gr/sw_ctx.bin +firmware: nvidia/gm206/gr/sw_method_init.bin +firmware: nvidia/gm206/gr/sw_nonctx.bin +firmware: nvidia/gm20b/acr/bl.bin +firmware: nvidia/gm20b/acr/ucode_load.bin +firmware: nvidia/gm20b/gr/fecs_bl.bin +firmware: nvidia/gm20b/gr/fecs_data.bin +firmware: nvidia/gm20b/gr/fecs_inst.bin +firmware: nvidia/gm20b/gr/fecs_sig.bin +firmware: nvidia/gm20b/gr/gpccs_data.bin +firmware: nvidia/gm20b/gr/gpccs_inst.bin +firmware: nvidia/gm20b/gr/sw_bundle_init.bin +firmware: nvidia/gm20b/gr/sw_ctx.bin +firmware: nvidia/gm20b/gr/sw_method_init.bin +firmware: nvidia/gm20b/gr/sw_nonctx.bin +firmware: nvidia/gm20b/pmu/desc.bin +firmware: nvidia/gm20b/pmu/image.bin +firmware: nvidia/gm20b/pmu/sig.bin +firmware: nvidia/gp100/acr/bl.bin +firmware: nvidia/gp100/acr/ucode_load.bin +firmware: nvidia/gp100/acr/ucode_unload.bin +firmware: nvidia/gp100/gr/fecs_bl.bin +firmware: nvidia/gp100/gr/fecs_data.bin +firmware: nvidia/gp100/gr/fecs_inst.bin +firmware: nvidia/gp100/gr/fecs_sig.bin +firmware: nvidia/gp100/gr/gpccs_bl.bin +firmware: nvidia/gp100/gr/gpccs_data.bin +firmware: nvidia/gp100/gr/gpccs_inst.bin +firmware: nvidia/gp100/gr/gpccs_sig.bin +firmware: nvidia/gp100/gr/sw_bundle_init.bin +firmware: nvidia/gp100/gr/sw_ctx.bin +firmware: nvidia/gp100/gr/sw_method_init.bin +firmware: nvidia/gp100/gr/sw_nonctx.bin +firmware: nvidia/gp102/acr/bl.bin +firmware: nvidia/gp102/acr/ucode_load.bin +firmware: nvidia/gp102/acr/ucode_unload.bin +firmware: nvidia/gp102/acr/unload_bl.bin +firmware: nvidia/gp102/gr/fecs_bl.bin +firmware: nvidia/gp102/gr/fecs_data.bin +firmware: nvidia/gp102/gr/fecs_inst.bin +firmware: nvidia/gp102/gr/fecs_sig.bin +firmware: nvidia/gp102/gr/gpccs_bl.bin +firmware: nvidia/gp102/gr/gpccs_data.bin +firmware: nvidia/gp102/gr/gpccs_inst.bin +firmware: nvidia/gp102/gr/gpccs_sig.bin +firmware: nvidia/gp102/gr/sw_bundle_init.bin +firmware: nvidia/gp102/gr/sw_ctx.bin +firmware: nvidia/gp102/gr/sw_method_init.bin +firmware: nvidia/gp102/gr/sw_nonctx.bin +firmware: nvidia/gp102/nvdec/scrubber.bin +firmware: nvidia/gp102/sec2/desc-1.bin +firmware: nvidia/gp102/sec2/desc.bin +firmware: nvidia/gp102/sec2/image-1.bin +firmware: nvidia/gp102/sec2/image.bin +firmware: nvidia/gp102/sec2/sig-1.bin +firmware: nvidia/gp102/sec2/sig.bin +firmware: nvidia/gp104/acr/bl.bin +firmware: nvidia/gp104/acr/ucode_load.bin +firmware: nvidia/gp104/acr/ucode_unload.bin +firmware: nvidia/gp104/acr/unload_bl.bin +firmware: nvidia/gp104/gr/fecs_bl.bin +firmware: nvidia/gp104/gr/fecs_data.bin +firmware: nvidia/gp104/gr/fecs_inst.bin +firmware: nvidia/gp104/gr/fecs_sig.bin +firmware: nvidia/gp104/gr/gpccs_bl.bin +firmware: nvidia/gp104/gr/gpccs_data.bin +firmware: nvidia/gp104/gr/gpccs_inst.bin +firmware: nvidia/gp104/gr/gpccs_sig.bin +firmware: nvidia/gp104/gr/sw_bundle_init.bin +firmware: nvidia/gp104/gr/sw_ctx.bin +firmware: nvidia/gp104/gr/sw_method_init.bin +firmware: nvidia/gp104/gr/sw_nonctx.bin +firmware: nvidia/gp104/nvdec/scrubber.bin +firmware: nvidia/gp104/sec2/desc-1.bin +firmware: nvidia/gp104/sec2/desc.bin +firmware: nvidia/gp104/sec2/image-1.bin +firmware: nvidia/gp104/sec2/image.bin +firmware: nvidia/gp104/sec2/sig-1.bin +firmware: nvidia/gp104/sec2/sig.bin +firmware: nvidia/gp106/acr/bl.bin +firmware: nvidia/gp106/acr/ucode_load.bin +firmware: nvidia/gp106/acr/ucode_unload.bin +firmware: nvidia/gp106/acr/unload_bl.bin +firmware: nvidia/gp106/gr/fecs_bl.bin +firmware: nvidia/gp106/gr/fecs_data.bin +firmware: nvidia/gp106/gr/fecs_inst.bin +firmware: nvidia/gp106/gr/fecs_sig.bin +firmware: nvidia/gp106/gr/gpccs_bl.bin +firmware: nvidia/gp106/gr/gpccs_data.bin +firmware: nvidia/gp106/gr/gpccs_inst.bin +firmware: nvidia/gp106/gr/gpccs_sig.bin +firmware: nvidia/gp106/gr/sw_bundle_init.bin +firmware: nvidia/gp106/gr/sw_ctx.bin +firmware: nvidia/gp106/gr/sw_method_init.bin +firmware: nvidia/gp106/gr/sw_nonctx.bin +firmware: nvidia/gp106/nvdec/scrubber.bin +firmware: nvidia/gp106/sec2/desc-1.bin +firmware: nvidia/gp106/sec2/desc.bin +firmware: nvidia/gp106/sec2/image-1.bin +firmware: nvidia/gp106/sec2/image.bin +firmware: nvidia/gp106/sec2/sig-1.bin +firmware: nvidia/gp106/sec2/sig.bin +firmware: nvidia/gp107/acr/bl.bin +firmware: nvidia/gp107/acr/ucode_load.bin +firmware: nvidia/gp107/acr/ucode_unload.bin +firmware: nvidia/gp107/acr/unload_bl.bin +firmware: nvidia/gp107/gr/fecs_bl.bin +firmware: nvidia/gp107/gr/fecs_data.bin +firmware: nvidia/gp107/gr/fecs_inst.bin +firmware: nvidia/gp107/gr/fecs_sig.bin +firmware: nvidia/gp107/gr/gpccs_bl.bin +firmware: nvidia/gp107/gr/gpccs_data.bin +firmware: nvidia/gp107/gr/gpccs_inst.bin +firmware: nvidia/gp107/gr/gpccs_sig.bin +firmware: nvidia/gp107/gr/sw_bundle_init.bin +firmware: nvidia/gp107/gr/sw_ctx.bin +firmware: nvidia/gp107/gr/sw_method_init.bin +firmware: nvidia/gp107/gr/sw_nonctx.bin +firmware: nvidia/gp107/nvdec/scrubber.bin +firmware: nvidia/gp107/sec2/desc-1.bin +firmware: nvidia/gp107/sec2/desc.bin +firmware: nvidia/gp107/sec2/image-1.bin +firmware: nvidia/gp107/sec2/image.bin +firmware: nvidia/gp107/sec2/sig-1.bin +firmware: nvidia/gp107/sec2/sig.bin +firmware: nvidia/gp108/acr/bl.bin +firmware: nvidia/gp108/acr/ucode_load.bin +firmware: nvidia/gp108/acr/ucode_unload.bin +firmware: nvidia/gp108/acr/unload_bl.bin +firmware: nvidia/gp108/gr/fecs_bl.bin +firmware: nvidia/gp108/gr/fecs_data.bin +firmware: nvidia/gp108/gr/fecs_inst.bin +firmware: nvidia/gp108/gr/fecs_sig.bin +firmware: nvidia/gp108/gr/gpccs_bl.bin +firmware: nvidia/gp108/gr/gpccs_data.bin +firmware: nvidia/gp108/gr/gpccs_inst.bin +firmware: nvidia/gp108/gr/gpccs_sig.bin +firmware: nvidia/gp108/gr/sw_bundle_init.bin +firmware: nvidia/gp108/gr/sw_ctx.bin +firmware: nvidia/gp108/gr/sw_method_init.bin +firmware: nvidia/gp108/gr/sw_nonctx.bin +firmware: nvidia/gp108/nvdec/scrubber.bin +firmware: nvidia/gp108/sec2/desc.bin +firmware: nvidia/gp108/sec2/image.bin +firmware: nvidia/gp108/sec2/sig.bin +firmware: nvidia/gp10b/acr/bl.bin +firmware: nvidia/gp10b/acr/ucode_load.bin +firmware: nvidia/gp10b/gr/fecs_bl.bin +firmware: nvidia/gp10b/gr/fecs_data.bin +firmware: nvidia/gp10b/gr/fecs_inst.bin +firmware: nvidia/gp10b/gr/fecs_sig.bin +firmware: nvidia/gp10b/gr/gpccs_bl.bin +firmware: nvidia/gp10b/gr/gpccs_data.bin +firmware: nvidia/gp10b/gr/gpccs_inst.bin +firmware: nvidia/gp10b/gr/gpccs_sig.bin +firmware: nvidia/gp10b/gr/sw_bundle_init.bin +firmware: nvidia/gp10b/gr/sw_ctx.bin +firmware: nvidia/gp10b/gr/sw_method_init.bin +firmware: nvidia/gp10b/gr/sw_nonctx.bin +firmware: nvidia/gp10b/pmu/desc.bin +firmware: nvidia/gp10b/pmu/image.bin +firmware: nvidia/gp10b/pmu/sig.bin +firmware: nvidia/gv100/acr/bl.bin +firmware: nvidia/gv100/acr/ucode_load.bin +firmware: nvidia/gv100/acr/ucode_unload.bin +firmware: nvidia/gv100/acr/unload_bl.bin +firmware: nvidia/gv100/gr/fecs_bl.bin +firmware: nvidia/gv100/gr/fecs_data.bin +firmware: nvidia/gv100/gr/fecs_inst.bin +firmware: nvidia/gv100/gr/fecs_sig.bin +firmware: nvidia/gv100/gr/gpccs_bl.bin +firmware: nvidia/gv100/gr/gpccs_data.bin +firmware: nvidia/gv100/gr/gpccs_inst.bin +firmware: nvidia/gv100/gr/gpccs_sig.bin +firmware: nvidia/gv100/gr/sw_bundle_init.bin +firmware: nvidia/gv100/gr/sw_ctx.bin +firmware: nvidia/gv100/gr/sw_method_init.bin +firmware: nvidia/gv100/gr/sw_nonctx.bin +firmware: nvidia/gv100/nvdec/scrubber.bin +firmware: nvidia/gv100/sec2/desc.bin +firmware: nvidia/gv100/sec2/image.bin +firmware: nvidia/gv100/sec2/sig.bin +firmware: nvidia/tegra124/vic03_ucode.bin +firmware: nvidia/tegra124/xusb.bin +firmware: nvidia/tegra186/vic04_ucode.bin +firmware: nvidia/tegra186/xusb.bin +firmware: nvidia/tegra194/vic.bin +firmware: nvidia/tegra194/xusb.bin +firmware: nvidia/tegra210/vic04_ucode.bin +firmware: nvidia/tegra210/xusb.bin +firmware: nvidia/tu102/acr/bl.bin +firmware: nvidia/tu102/acr/ucode_ahesasc.bin +firmware: nvidia/tu102/acr/ucode_asb.bin +firmware: nvidia/tu102/acr/ucode_unload.bin +firmware: nvidia/tu102/acr/unload_bl.bin +firmware: nvidia/tu102/gr/fecs_bl.bin +firmware: nvidia/tu102/gr/fecs_data.bin +firmware: nvidia/tu102/gr/fecs_inst.bin +firmware: nvidia/tu102/gr/fecs_sig.bin +firmware: nvidia/tu102/gr/gpccs_bl.bin +firmware: nvidia/tu102/gr/gpccs_data.bin +firmware: nvidia/tu102/gr/gpccs_inst.bin +firmware: nvidia/tu102/gr/gpccs_sig.bin +firmware: nvidia/tu102/gr/sw_bundle_init.bin +firmware: nvidia/tu102/gr/sw_ctx.bin +firmware: nvidia/tu102/gr/sw_method_init.bin +firmware: nvidia/tu102/gr/sw_nonctx.bin +firmware: nvidia/tu102/nvdec/scrubber.bin +firmware: nvidia/tu102/sec2/desc.bin +firmware: nvidia/tu102/sec2/image.bin +firmware: nvidia/tu102/sec2/sig.bin +firmware: nvidia/tu104/acr/bl.bin +firmware: nvidia/tu104/acr/ucode_ahesasc.bin +firmware: nvidia/tu104/acr/ucode_asb.bin +firmware: nvidia/tu104/acr/ucode_unload.bin +firmware: nvidia/tu104/acr/unload_bl.bin +firmware: nvidia/tu104/gr/fecs_bl.bin +firmware: nvidia/tu104/gr/fecs_data.bin +firmware: nvidia/tu104/gr/fecs_inst.bin +firmware: nvidia/tu104/gr/fecs_sig.bin +firmware: nvidia/tu104/gr/gpccs_bl.bin +firmware: nvidia/tu104/gr/gpccs_data.bin +firmware: nvidia/tu104/gr/gpccs_inst.bin +firmware: nvidia/tu104/gr/gpccs_sig.bin +firmware: nvidia/tu104/gr/sw_bundle_init.bin +firmware: nvidia/tu104/gr/sw_ctx.bin +firmware: nvidia/tu104/gr/sw_method_init.bin +firmware: nvidia/tu104/gr/sw_nonctx.bin +firmware: nvidia/tu104/nvdec/scrubber.bin +firmware: nvidia/tu104/sec2/desc.bin +firmware: nvidia/tu104/sec2/image.bin +firmware: nvidia/tu104/sec2/sig.bin +firmware: nvidia/tu106/acr/bl.bin +firmware: nvidia/tu106/acr/ucode_ahesasc.bin +firmware: nvidia/tu106/acr/ucode_asb.bin +firmware: nvidia/tu106/acr/ucode_unload.bin +firmware: nvidia/tu106/acr/unload_bl.bin +firmware: nvidia/tu106/gr/fecs_bl.bin +firmware: nvidia/tu106/gr/fecs_data.bin +firmware: nvidia/tu106/gr/fecs_inst.bin +firmware: nvidia/tu106/gr/fecs_sig.bin +firmware: nvidia/tu106/gr/gpccs_bl.bin +firmware: nvidia/tu106/gr/gpccs_data.bin +firmware: nvidia/tu106/gr/gpccs_inst.bin +firmware: nvidia/tu106/gr/gpccs_sig.bin +firmware: nvidia/tu106/gr/sw_bundle_init.bin +firmware: nvidia/tu106/gr/sw_ctx.bin +firmware: nvidia/tu106/gr/sw_method_init.bin +firmware: nvidia/tu106/gr/sw_nonctx.bin +firmware: nvidia/tu106/nvdec/scrubber.bin +firmware: nvidia/tu106/sec2/desc.bin +firmware: nvidia/tu106/sec2/image.bin +firmware: nvidia/tu106/sec2/sig.bin +firmware: nvidia/tu116/acr/bl.bin +firmware: nvidia/tu116/acr/ucode_ahesasc.bin +firmware: nvidia/tu116/acr/ucode_asb.bin +firmware: nvidia/tu116/acr/ucode_unload.bin +firmware: nvidia/tu116/acr/unload_bl.bin +firmware: nvidia/tu116/gr/fecs_bl.bin +firmware: nvidia/tu116/gr/fecs_data.bin +firmware: nvidia/tu116/gr/fecs_inst.bin +firmware: nvidia/tu116/gr/fecs_sig.bin +firmware: nvidia/tu116/gr/gpccs_bl.bin +firmware: nvidia/tu116/gr/gpccs_data.bin +firmware: nvidia/tu116/gr/gpccs_inst.bin +firmware: nvidia/tu116/gr/gpccs_sig.bin +firmware: nvidia/tu116/gr/sw_bundle_init.bin +firmware: nvidia/tu116/gr/sw_ctx.bin +firmware: nvidia/tu116/gr/sw_method_init.bin +firmware: nvidia/tu116/gr/sw_nonctx.bin +firmware: nvidia/tu116/nvdec/scrubber.bin +firmware: nvidia/tu116/sec2/desc.bin +firmware: nvidia/tu116/sec2/image.bin +firmware: nvidia/tu116/sec2/sig.bin +firmware: nvidia/tu117/acr/bl.bin +firmware: nvidia/tu117/acr/ucode_ahesasc.bin +firmware: nvidia/tu117/acr/ucode_asb.bin +firmware: nvidia/tu117/acr/ucode_unload.bin +firmware: nvidia/tu117/acr/unload_bl.bin +firmware: nvidia/tu117/gr/fecs_bl.bin +firmware: nvidia/tu117/gr/fecs_data.bin +firmware: nvidia/tu117/gr/fecs_inst.bin +firmware: nvidia/tu117/gr/fecs_sig.bin +firmware: nvidia/tu117/gr/gpccs_bl.bin +firmware: nvidia/tu117/gr/gpccs_data.bin +firmware: nvidia/tu117/gr/gpccs_inst.bin +firmware: nvidia/tu117/gr/gpccs_sig.bin +firmware: nvidia/tu117/gr/sw_bundle_init.bin +firmware: nvidia/tu117/gr/sw_ctx.bin +firmware: nvidia/tu117/gr/sw_method_init.bin +firmware: nvidia/tu117/gr/sw_nonctx.bin +firmware: nvidia/tu117/nvdec/scrubber.bin +firmware: nvidia/tu117/sec2/desc.bin +firmware: nvidia/tu117/sec2/image.bin +firmware: nvidia/tu117/sec2/sig.bin +firmware: orinoco_ezusb_fw +firmware: ositech/Xilinx7OD.bin +firmware: pca200e.bin +firmware: pca200e_ecd.bin2 +firmware: pcxhr/dspb1222e.b56 +firmware: pcxhr/dspb1222hr.b56 +firmware: pcxhr/dspb882e.b56 +firmware: pcxhr/dspb882hr.b56 +firmware: pcxhr/dspb924.b56 +firmware: pcxhr/dspd1222.d56 +firmware: pcxhr/dspd222.d56 +firmware: pcxhr/dspd882.d56 +firmware: pcxhr/dspe882.e56 +firmware: pcxhr/dspe924.e56 +firmware: pcxhr/xlxc1222e.dat +firmware: pcxhr/xlxc1222hr.dat +firmware: pcxhr/xlxc222.dat +firmware: pcxhr/xlxc882e.dat +firmware: pcxhr/xlxc882hr.dat +firmware: pcxhr/xlxc924.dat +firmware: pcxhr/xlxint.dat +firmware: phanfw.bin +firmware: prism2_ru.fw +firmware: prism_ap_fw.bin +firmware: prism_sta_fw.bin +firmware: qat_4xxx.bin +firmware: qat_4xxx_mmp.bin +firmware: qat_895xcc.bin +firmware: qat_895xcc_mmp.bin +firmware: qat_c3xxx.bin +firmware: qat_c3xxx_mmp.bin +firmware: qat_c62x.bin +firmware: qat_c62x_mmp.bin +firmware: qcom/a300_pfp.fw +firmware: qcom/a300_pm4.fw +firmware: qcom/a330_pfp.fw +firmware: qcom/a330_pm4.fw +firmware: qcom/a420_pfp.fw +firmware: qcom/a420_pm4.fw +firmware: qcom/a530_pfp.fw +firmware: qcom/a530_pm4.fw +firmware: qcom/a530_zap.b00 +firmware: qcom/a530_zap.b01 +firmware: qcom/a530_zap.b02 +firmware: qcom/a530_zap.mdt +firmware: qcom/a530v3_gpmu.fw2 +firmware: qcom/a630_gmu.bin +firmware: qcom/a630_sqe.fw +firmware: qcom/a630_zap.mbn +firmware: qed/qed_init_values_zipped-8.42.2.0.bin +firmware: ql2100_fw.bin +firmware: ql2200_fw.bin +firmware: ql2300_fw.bin +firmware: ql2322_fw.bin +firmware: ql2400_fw.bin +firmware: ql2500_fw.bin +firmware: qlogic/1040.bin +firmware: qlogic/12160.bin +firmware: qlogic/1280.bin +firmware: qlogic/sd7220.fw +firmware: r8a779x_usb3_v1.dlmem +firmware: r8a779x_usb3_v2.dlmem +firmware: r8a779x_usb3_v3.dlmem +firmware: radeon/ARUBA_me.bin +firmware: radeon/ARUBA_pfp.bin +firmware: radeon/ARUBA_rlc.bin +firmware: radeon/BARTS_mc.bin +firmware: radeon/BARTS_me.bin +firmware: radeon/BARTS_pfp.bin +firmware: radeon/BARTS_smc.bin +firmware: radeon/BONAIRE_ce.bin +firmware: radeon/BONAIRE_mc.bin +firmware: radeon/BONAIRE_mc2.bin +firmware: radeon/BONAIRE_me.bin +firmware: radeon/BONAIRE_mec.bin +firmware: radeon/BONAIRE_pfp.bin +firmware: radeon/BONAIRE_rlc.bin +firmware: radeon/BONAIRE_sdma.bin +firmware: radeon/BONAIRE_smc.bin +firmware: radeon/BONAIRE_uvd.bin +firmware: radeon/BONAIRE_vce.bin +firmware: radeon/BTC_rlc.bin +firmware: radeon/CAICOS_mc.bin +firmware: radeon/CAICOS_me.bin +firmware: radeon/CAICOS_pfp.bin +firmware: radeon/CAICOS_smc.bin +firmware: radeon/CAYMAN_mc.bin +firmware: radeon/CAYMAN_me.bin +firmware: radeon/CAYMAN_pfp.bin +firmware: radeon/CAYMAN_rlc.bin +firmware: radeon/CAYMAN_smc.bin +firmware: radeon/CEDAR_me.bin +firmware: radeon/CEDAR_pfp.bin +firmware: radeon/CEDAR_rlc.bin +firmware: radeon/CEDAR_smc.bin +firmware: radeon/CYPRESS_me.bin +firmware: radeon/CYPRESS_pfp.bin +firmware: radeon/CYPRESS_rlc.bin +firmware: radeon/CYPRESS_smc.bin +firmware: radeon/CYPRESS_uvd.bin +firmware: radeon/HAINAN_ce.bin +firmware: radeon/HAINAN_mc.bin +firmware: radeon/HAINAN_mc2.bin +firmware: radeon/HAINAN_me.bin +firmware: radeon/HAINAN_pfp.bin +firmware: radeon/HAINAN_rlc.bin +firmware: radeon/HAINAN_smc.bin +firmware: radeon/HAWAII_ce.bin +firmware: radeon/HAWAII_mc.bin +firmware: radeon/HAWAII_mc2.bin +firmware: radeon/HAWAII_me.bin +firmware: radeon/HAWAII_mec.bin +firmware: radeon/HAWAII_pfp.bin +firmware: radeon/HAWAII_rlc.bin +firmware: radeon/HAWAII_sdma.bin +firmware: radeon/HAWAII_smc.bin +firmware: radeon/JUNIPER_me.bin +firmware: radeon/JUNIPER_pfp.bin +firmware: radeon/JUNIPER_rlc.bin +firmware: radeon/JUNIPER_smc.bin +firmware: radeon/KABINI_ce.bin +firmware: radeon/KABINI_me.bin +firmware: radeon/KABINI_mec.bin +firmware: radeon/KABINI_pfp.bin +firmware: radeon/KABINI_rlc.bin +firmware: radeon/KABINI_sdma.bin +firmware: radeon/KAVERI_ce.bin +firmware: radeon/KAVERI_me.bin +firmware: radeon/KAVERI_mec.bin +firmware: radeon/KAVERI_pfp.bin +firmware: radeon/KAVERI_rlc.bin +firmware: radeon/KAVERI_sdma.bin +firmware: radeon/MULLINS_ce.bin +firmware: radeon/MULLINS_me.bin +firmware: radeon/MULLINS_mec.bin +firmware: radeon/MULLINS_pfp.bin +firmware: radeon/MULLINS_rlc.bin +firmware: radeon/MULLINS_sdma.bin +firmware: radeon/OLAND_ce.bin +firmware: radeon/OLAND_mc.bin +firmware: radeon/OLAND_mc2.bin +firmware: radeon/OLAND_me.bin +firmware: radeon/OLAND_pfp.bin +firmware: radeon/OLAND_rlc.bin +firmware: radeon/OLAND_smc.bin +firmware: radeon/PALM_me.bin +firmware: radeon/PALM_pfp.bin +firmware: radeon/PITCAIRN_ce.bin +firmware: radeon/PITCAIRN_mc.bin +firmware: radeon/PITCAIRN_mc2.bin +firmware: radeon/PITCAIRN_me.bin +firmware: radeon/PITCAIRN_pfp.bin +firmware: radeon/PITCAIRN_rlc.bin +firmware: radeon/PITCAIRN_smc.bin +firmware: radeon/R100_cp.bin +firmware: radeon/R200_cp.bin +firmware: radeon/R300_cp.bin +firmware: radeon/R420_cp.bin +firmware: radeon/R520_cp.bin +firmware: radeon/R600_me.bin +firmware: radeon/R600_pfp.bin +firmware: radeon/R600_rlc.bin +firmware: radeon/R600_uvd.bin +firmware: radeon/R700_rlc.bin +firmware: radeon/REDWOOD_me.bin +firmware: radeon/REDWOOD_pfp.bin +firmware: radeon/REDWOOD_rlc.bin +firmware: radeon/REDWOOD_smc.bin +firmware: radeon/RS600_cp.bin +firmware: radeon/RS690_cp.bin +firmware: radeon/RS780_me.bin +firmware: radeon/RS780_pfp.bin +firmware: radeon/RS780_uvd.bin +firmware: radeon/RV610_me.bin +firmware: radeon/RV610_pfp.bin +firmware: radeon/RV620_me.bin +firmware: radeon/RV620_pfp.bin +firmware: radeon/RV630_me.bin +firmware: radeon/RV630_pfp.bin +firmware: radeon/RV635_me.bin +firmware: radeon/RV635_pfp.bin +firmware: radeon/RV670_me.bin +firmware: radeon/RV670_pfp.bin +firmware: radeon/RV710_me.bin +firmware: radeon/RV710_pfp.bin +firmware: radeon/RV710_smc.bin +firmware: radeon/RV710_uvd.bin +firmware: radeon/RV730_me.bin +firmware: radeon/RV730_pfp.bin +firmware: radeon/RV730_smc.bin +firmware: radeon/RV740_smc.bin +firmware: radeon/RV770_me.bin +firmware: radeon/RV770_pfp.bin +firmware: radeon/RV770_smc.bin +firmware: radeon/RV770_uvd.bin +firmware: radeon/SUMO2_me.bin +firmware: radeon/SUMO2_pfp.bin +firmware: radeon/SUMO_me.bin +firmware: radeon/SUMO_pfp.bin +firmware: radeon/SUMO_rlc.bin +firmware: radeon/SUMO_uvd.bin +firmware: radeon/TAHITI_ce.bin +firmware: radeon/TAHITI_mc.bin +firmware: radeon/TAHITI_mc2.bin +firmware: radeon/TAHITI_me.bin +firmware: radeon/TAHITI_pfp.bin +firmware: radeon/TAHITI_rlc.bin +firmware: radeon/TAHITI_smc.bin +firmware: radeon/TAHITI_uvd.bin +firmware: radeon/TAHITI_vce.bin +firmware: radeon/TURKS_mc.bin +firmware: radeon/TURKS_me.bin +firmware: radeon/TURKS_pfp.bin +firmware: radeon/TURKS_smc.bin +firmware: radeon/VERDE_ce.bin +firmware: radeon/VERDE_mc.bin +firmware: radeon/VERDE_mc2.bin +firmware: radeon/VERDE_me.bin +firmware: radeon/VERDE_pfp.bin +firmware: radeon/VERDE_rlc.bin +firmware: radeon/VERDE_smc.bin +firmware: radeon/banks_k_2_smc.bin +firmware: radeon/bonaire_ce.bin +firmware: radeon/bonaire_k_smc.bin +firmware: radeon/bonaire_mc.bin +firmware: radeon/bonaire_me.bin +firmware: radeon/bonaire_mec.bin +firmware: radeon/bonaire_pfp.bin +firmware: radeon/bonaire_rlc.bin +firmware: radeon/bonaire_sdma.bin +firmware: radeon/bonaire_smc.bin +firmware: radeon/bonaire_uvd.bin +firmware: radeon/hainan_ce.bin +firmware: radeon/hainan_k_smc.bin +firmware: radeon/hainan_mc.bin +firmware: radeon/hainan_me.bin +firmware: radeon/hainan_pfp.bin +firmware: radeon/hainan_rlc.bin +firmware: radeon/hainan_smc.bin +firmware: radeon/hawaii_ce.bin +firmware: radeon/hawaii_k_smc.bin +firmware: radeon/hawaii_mc.bin +firmware: radeon/hawaii_me.bin +firmware: radeon/hawaii_mec.bin +firmware: radeon/hawaii_pfp.bin +firmware: radeon/hawaii_rlc.bin +firmware: radeon/hawaii_sdma.bin +firmware: radeon/hawaii_smc.bin +firmware: radeon/kabini_ce.bin +firmware: radeon/kabini_me.bin +firmware: radeon/kabini_mec.bin +firmware: radeon/kabini_pfp.bin +firmware: radeon/kabini_rlc.bin +firmware: radeon/kabini_sdma.bin +firmware: radeon/kaveri_ce.bin +firmware: radeon/kaveri_me.bin +firmware: radeon/kaveri_mec.bin +firmware: radeon/kaveri_mec2.bin +firmware: radeon/kaveri_pfp.bin +firmware: radeon/kaveri_rlc.bin +firmware: radeon/kaveri_sdma.bin +firmware: radeon/mullins_ce.bin +firmware: radeon/mullins_me.bin +firmware: radeon/mullins_mec.bin +firmware: radeon/mullins_pfp.bin +firmware: radeon/mullins_rlc.bin +firmware: radeon/mullins_sdma.bin +firmware: radeon/oland_ce.bin +firmware: radeon/oland_k_smc.bin +firmware: radeon/oland_mc.bin +firmware: radeon/oland_me.bin +firmware: radeon/oland_pfp.bin +firmware: radeon/oland_rlc.bin +firmware: radeon/oland_smc.bin +firmware: radeon/pitcairn_ce.bin +firmware: radeon/pitcairn_k_smc.bin +firmware: radeon/pitcairn_mc.bin +firmware: radeon/pitcairn_me.bin +firmware: radeon/pitcairn_pfp.bin +firmware: radeon/pitcairn_rlc.bin +firmware: radeon/pitcairn_smc.bin +firmware: radeon/si58_mc.bin +firmware: radeon/tahiti_ce.bin +firmware: radeon/tahiti_mc.bin +firmware: radeon/tahiti_me.bin +firmware: radeon/tahiti_pfp.bin +firmware: radeon/tahiti_rlc.bin +firmware: radeon/tahiti_smc.bin +firmware: radeon/verde_ce.bin +firmware: radeon/verde_k_smc.bin +firmware: radeon/verde_mc.bin +firmware: radeon/verde_me.bin +firmware: radeon/verde_pfp.bin +firmware: radeon/verde_rlc.bin +firmware: radeon/verde_smc.bin +firmware: renesas_usb_fw.mem +firmware: riptide.hex +firmware: rockchip/dptx.bin +firmware: rp2.fw +firmware: rpm_firmware.bin +firmware: rs9113_wlan_qspi.rps +firmware: rt2561.bin +firmware: rt2561s.bin +firmware: rt2661.bin +firmware: rt2860.bin +firmware: rt2870.bin +firmware: rt73.bin +firmware: rtl_bt/rtl8723a_fw.bin +firmware: rtl_bt/rtl8723b_config.bin +firmware: rtl_bt/rtl8723b_fw.bin +firmware: rtl_bt/rtl8723bs_config.bin +firmware: rtl_bt/rtl8723bs_fw.bin +firmware: rtl_bt/rtl8723ds_config.bin +firmware: rtl_bt/rtl8723ds_fw.bin +firmware: rtl_bt/rtl8761a_config.bin +firmware: rtl_bt/rtl8761a_fw.bin +firmware: rtl_bt/rtl8821a_config.bin +firmware: rtl_bt/rtl8821a_fw.bin +firmware: rtl_bt/rtl8822b_config.bin +firmware: rtl_bt/rtl8822b_fw.bin +firmware: rtl_bt/rtl8852au_config.bin +firmware: rtl_bt/rtl8852au_fw.bin +firmware: rtl_nic/rtl8105e-1.fw +firmware: rtl_nic/rtl8106e-1.fw +firmware: rtl_nic/rtl8106e-2.fw +firmware: rtl_nic/rtl8107e-1.fw +firmware: rtl_nic/rtl8107e-2.fw +firmware: rtl_nic/rtl8125a-3.fw +firmware: rtl_nic/rtl8125b-2.fw +firmware: rtl_nic/rtl8153a-2.fw +firmware: rtl_nic/rtl8153a-3.fw +firmware: rtl_nic/rtl8153a-4.fw +firmware: rtl_nic/rtl8153b-2.fw +firmware: rtl_nic/rtl8153c-1.fw +firmware: rtl_nic/rtl8156a-2.fw +firmware: rtl_nic/rtl8156b-2.fw +firmware: rtl_nic/rtl8168d-1.fw +firmware: rtl_nic/rtl8168d-2.fw +firmware: rtl_nic/rtl8168e-1.fw +firmware: rtl_nic/rtl8168e-2.fw +firmware: rtl_nic/rtl8168e-3.fw +firmware: rtl_nic/rtl8168f-1.fw +firmware: rtl_nic/rtl8168f-2.fw +firmware: rtl_nic/rtl8168fp-3.fw +firmware: rtl_nic/rtl8168g-2.fw +firmware: rtl_nic/rtl8168g-3.fw +firmware: rtl_nic/rtl8168h-1.fw +firmware: rtl_nic/rtl8168h-2.fw +firmware: rtl_nic/rtl8402-1.fw +firmware: rtl_nic/rtl8411-1.fw +firmware: rtl_nic/rtl8411-2.fw +firmware: rtlwifi/rtl8188efw.bin +firmware: rtlwifi/rtl8192cfw.bin +firmware: rtlwifi/rtl8192cfwU.bin +firmware: rtlwifi/rtl8192cfwU_B.bin +firmware: rtlwifi/rtl8192cufw.bin +firmware: rtlwifi/rtl8192cufw_A.bin +firmware: rtlwifi/rtl8192cufw_B.bin +firmware: rtlwifi/rtl8192cufw_TMSC.bin +firmware: rtlwifi/rtl8192defw.bin +firmware: rtlwifi/rtl8192eefw.bin +firmware: rtlwifi/rtl8192eu_nic.bin +firmware: rtlwifi/rtl8192sefw.bin +firmware: rtlwifi/rtl8712u.bin +firmware: rtlwifi/rtl8723aufw_A.bin +firmware: rtlwifi/rtl8723aufw_B.bin +firmware: rtlwifi/rtl8723aufw_B_NoBT.bin +firmware: rtlwifi/rtl8723befw.bin +firmware: rtlwifi/rtl8723befw_36.bin +firmware: rtlwifi/rtl8723bu_bt.bin +firmware: rtlwifi/rtl8723bu_nic.bin +firmware: rtlwifi/rtl8723efw.bin +firmware: rtlwifi/rtl8821aefw.bin +firmware: rtlwifi/rtl8821aefw_29.bin +firmware: rtw88/rtw8723d_fw.bin +firmware: rtw88/rtw8821c_fw.bin +firmware: rtw88/rtw8822b_fw.bin +firmware: rtw88/rtw8822c_fw.bin +firmware: rtw88/rtw8822c_wow_fw.bin +firmware: rtw89/rtw8852a_fw.bin +firmware: s5k4ecgx.bin +firmware: sd8385.bin +firmware: sd8385_helper.bin +firmware: sd8686.bin +firmware: sd8686_helper.bin +firmware: sd8688.bin +firmware: sd8688_helper.bin +firmware: slicoss/gbdownload.sys +firmware: slicoss/gbrcvucode.sys +firmware: slicoss/oasisdownload.sys +firmware: slicoss/oasisrcvucode.sys +firmware: sms1xxx-hcw-55xxx-dvbt-02.fw +firmware: sms1xxx-hcw-55xxx-isdbt-02.fw +firmware: sms1xxx-nova-a-dvbt-01.fw +firmware: sms1xxx-nova-b-dvbt-01.fw +firmware: sms1xxx-stellar-dvbt-01.fw +firmware: softing-4.6/bcard.bin +firmware: softing-4.6/bcard2.bin +firmware: softing-4.6/cancard.bin +firmware: softing-4.6/cancrd2.bin +firmware: softing-4.6/cansja.bin +firmware: softing-4.6/ldcard.bin +firmware: softing-4.6/ldcard2.bin +firmware: solos-FPGA.bin +firmware: solos-Firmware.bin +firmware: solos-db-FPGA.bin +firmware: sun/cassini.bin +firmware: symbol_sp24t_prim_fw +firmware: symbol_sp24t_sec_fw +firmware: tdmb_denver.inp +firmware: tdmb_nova_12mhz.inp +firmware: tdmb_nova_12mhz_b0.inp +firmware: tehuti/bdx.bin +firmware: ti-connectivity/wl1251-fw.bin +firmware: ti-connectivity/wl1251-nvs.bin +firmware: ti-connectivity/wl127x-fw-5-mr.bin +firmware: ti-connectivity/wl127x-fw-5-plt.bin +firmware: ti-connectivity/wl127x-fw-5-sr.bin +firmware: ti-connectivity/wl128x-fw-5-mr.bin +firmware: ti-connectivity/wl128x-fw-5-plt.bin +firmware: ti-connectivity/wl128x-fw-5-sr.bin +firmware: ti-connectivity/wl18xx-fw-4.bin +firmware: ti_3410.fw +firmware: ti_5052.fw +firmware: tigon/tg3.bin +firmware: tigon/tg3_tso.bin +firmware: tigon/tg3_tso5.bin +firmware: ttusb-budget/dspbootcode.bin +firmware: ueagle-atm/930-fpga.bin +firmware: ueagle-atm/CMV4i.bin +firmware: ueagle-atm/CMV4i.bin.v2 +firmware: ueagle-atm/CMV4p.bin +firmware: ueagle-atm/CMV4p.bin.v2 +firmware: ueagle-atm/CMV9i.bin +firmware: ueagle-atm/CMV9i.bin.v2 +firmware: ueagle-atm/CMV9p.bin +firmware: ueagle-atm/CMV9p.bin.v2 +firmware: ueagle-atm/CMVei.bin +firmware: ueagle-atm/CMVei.bin.v2 +firmware: ueagle-atm/CMVep.bin +firmware: ueagle-atm/CMVep.bin.v2 +firmware: ueagle-atm/DSP4i.bin +firmware: ueagle-atm/DSP4p.bin +firmware: ueagle-atm/DSP9i.bin +firmware: ueagle-atm/DSP9p.bin +firmware: ueagle-atm/DSPei.bin +firmware: ueagle-atm/DSPep.bin +firmware: ueagle-atm/adi930.fw +firmware: ueagle-atm/eagle.fw +firmware: ueagle-atm/eagleI.fw +firmware: ueagle-atm/eagleII.fw +firmware: ueagle-atm/eagleIII.fw +firmware: ueagle-atm/eagleIV.fw +firmware: usb8388.bin +firmware: usbdux_firmware.bin +firmware: usbduxfast_firmware.bin +firmware: usbduxsigma_firmware.bin +firmware: v4l-cx231xx-avcore-01.fw +firmware: v4l-cx23418-apu.fw +firmware: v4l-cx23418-cpu.fw +firmware: v4l-cx23418-dig.fw +firmware: v4l-cx2341x-dec.fw +firmware: v4l-cx2341x-enc.fw +firmware: v4l-cx2341x-init.mpg +firmware: v4l-cx23885-avcore-01.fw +firmware: v4l-cx23885-enc.fw +firmware: v4l-cx25840.fw +firmware: v4l-pvrusb2-24xxx-01.fw +firmware: v4l-pvrusb2-29xxx-01.fw +firmware: v4l-pvrusb2-73xxx-01.fw +firmware: vicam/firmware.fw +firmware: vntwusb.fw +firmware: vpdma-1b8.bin +firmware: vx/bd56002.boot +firmware: vx/bd563s3.boot +firmware: vx/bd563v2.boot +firmware: vx/bx_1_vp4.b56 +firmware: vx/bx_1_vxp.b56 +firmware: vx/l_1_v22.d56 +firmware: vx/l_1_vp4.d56 +firmware: vx/l_1_vx2.d56 +firmware: vx/l_1_vxp.d56 +firmware: vx/x1_1_vp4.xlx +firmware: vx/x1_1_vx2.xlx +firmware: vx/x1_1_vxp.xlx +firmware: vx/x1_2_v22.xlx +firmware: vxge/X3fw-pxe.ncf +firmware: vxge/X3fw.ncf +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin +firmware: whiteheat.fw +firmware: whiteheat_loader.fw +firmware: wil6210.brd +firmware: wil6210.fw +firmware: wil6210_sparrow_plus.fw +firmware: wil6436.brd +firmware: wil6436.fw +firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin +firmware: xc3028-v27.fw +firmware: xc3028L-v36.fw +firmware: yam/1200.bin +firmware: yam/9600.bin +firmware: yamaha/ds1_ctrl.fw +firmware: yamaha/ds1_dsp.fw +firmware: yamaha/ds1e_ctrl.fw +firmware: zd1201-ap.fw +firmware: zd1201.fw +firmware: zd1211/zd1211_ub +firmware: zd1211/zd1211_uphr +firmware: zd1211/zd1211_ur +firmware: zd1211/zd1211b_ub +firmware: zd1211/zd1211b_uphr +firmware: zd1211/zd1211b_ur diff --git a/debian.master/abi/ppc64el/generic b/debian.master/abi/ppc64el/generic new file mode 100644 index 00000000000000..fab8ce055a7a32 --- /dev/null +++ b/debian.master/abi/ppc64el/generic @@ -0,0 +1,24492 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4fc8582e crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb8580e19 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf138749b crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x10a1ccb6 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29c4609a cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x340321f3 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x45ac37d9 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x563d06dd to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5fa205fa devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x606af128 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x69ef1852 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c085dfc is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x96e0bacd cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad54fa0f devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb025fe1f devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb82889a8 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb87198bb cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd28299bb devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd6a8c3b2 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd939c6c9 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe314bd10 cxl_add_dport drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/powerpc/kvm/kvm 0xbc1d9550 kvmppc_core_queue_syscall +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x913f1e6d hvcs_get_partner_info +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xa73464c7 hvcs_register_connection +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xbdf97f58 hvcs_free_connection +EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info +EXPORT_SYMBOL crypto/blake2b_generic 0x32e24c8a blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x18dbe46d crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x41132e83 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x6368f81b crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x6f777be8 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xa14c755e crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xaaf6779d crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x0bdbd28a crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x10526e26 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x83e7c355 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0xb2ee2436 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x6d3f153a crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xa5045abb crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xe4ddfb30 crypto_sm3_final +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x6d05ddbf suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x30e08b9d bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x3de1f1c0 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x2f72b310 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x30a44482 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x44e8bf45 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4b36dcc9 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4e792280 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x6a96c91e pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x6ef45018 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x79015e68 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8f8b8322 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x93639820 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x9a64a375 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbb12f884 pi_read_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xc3cea716 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x7ff84f43 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/core/mhi 0x30ef5b6e mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12af0c06 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5aca2825 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe11384b5 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfb52f9c9 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x02bf1177 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7c8ab361 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7defa1ef st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd049b6db st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x26586a8c xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x46aad4c5 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xaa71cb65 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1574a59c xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6e587e2a xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb9346c35 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x34d50e68 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x695085fd atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfe6b0e33 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x02161091 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12261588 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16b785b9 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x226a800d fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x26366836 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2babd75e fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3027d007 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3eb9c879 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c9adcad fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4cd9f3a7 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62261109 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62d21127 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6560234b fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x75475c99 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8491d665 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x871c20f0 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa286cc3f fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf7adb30 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xba9d957f fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc36416d5 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbf2742f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc6845cf fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec9f63a9 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf22fa1c5 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8b0cf10 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xff0e8b68 fw_fill_response +EXPORT_SYMBOL drivers/fpga/dfl 0x875db790 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xd2aceff9 dfl_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008beae3 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00bb1510 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0136a250 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ee3b48 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0270ec86 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0352084f drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a91fdf drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04741359 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04bcf02a drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06005aba drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x061e450c drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0680bd38 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0761f4b7 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d29a13 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x097b6776 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0982b4bd drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ef2d21 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b8a5fe4 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be80964 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfcaf73 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d314371 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d433162 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5b15e7 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e448dc9 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10bf4428 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x113a6b41 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x115c3489 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1161e322 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12822860 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x144db798 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14fb6161 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15aeeceb drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f0e3b1 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19982d5f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ad2db23 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c35f46c drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d34f7d3 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d8c2055 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dac1054 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e164446 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4feb8e drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e96408f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef11014 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f9a8f53 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fe1cb9c drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20111413 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217128a5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a21729 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b03e56 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21bbbd39 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2281fe9a drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x234f6ab6 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23de3d2c drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x240225e5 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24f2c889 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260d522c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a3b49a drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c442bc drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x286e3cb3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa78b4b drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bf46374 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ca853be drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce0d02e drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce32a3b drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db13944 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc47f16 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfa4e24 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb77529 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2bc668 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f4e67fb drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8c5aa7 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x300bd717 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30137528 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30729347 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b2ee16 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d7d8ff drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ec53ce drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33088445 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ac489c drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f78ab8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x379250e7 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38007fc1 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3882db2a drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fc2716 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b3b5c1e drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b851749 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc1c684 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c6fd686 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e37ae33 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f1ef83a drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f211584 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f41abb6 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x406efa77 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x419a8520 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x422d55f6 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x423cef60 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4290712f drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d6a10a drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x434cd15d drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4370d5f2 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43b210d2 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43cdfcdf drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4449eb25 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453ed322 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47660329 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a159781 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf511bc drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c1584ae drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3a0d69 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc525ed drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4db2c045 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e042ddb drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4fa4f7 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef4f107 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa37edb drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50920c39 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a14074 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51887e55 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5349d59b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542dd4da drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542ef040 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546e4337 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55aa7571 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56674e99 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b91d9a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57120766 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57cb4629 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e5f309 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596ccb5f drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59766bdd drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59913c8a drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3bd0e2 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3f59c6 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abb8c06 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be3e19c drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ceef48c drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d17be9a drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e38207a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e600dc2 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ebf63a8 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee7d574 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f49050a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x604692c4 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f9960c drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6108e960 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x613f320e drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61777d8a drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61af1b42 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e075b5 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6392ecf1 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64562965 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e341fd drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c9e3f5 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66f4005c devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fd552a drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x679eccfe drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68282c62 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a2ebbda drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf27ffe drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c1d470f drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c23d6a7 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c932be0 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d246741 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d88e2be drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6decbd71 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70259e08 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a51825 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70c0e3e0 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7130ced2 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7188727e drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7191c644 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c02ca6 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e907e6 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x730d2fcf drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733143d5 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x734e572c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x739e28ea drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745c915a drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c388ee drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x759a7d07 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ef924c drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c775b1 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78dac068 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d85d34 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b31ba1d drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bef7536 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cae64ad drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3c48fb drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8659a8 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e36ea60 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee78657 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f221190 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2aba89 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc44224 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80266a35 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810ac7de drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810cae97 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a5d5b8 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823df4c8 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e8ba7b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83380db2 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83fbf513 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85f0b23c drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8622e1c4 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86347067 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86386576 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8680328f drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87988c6f drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e25ec4 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8953ee89 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897a5abc drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab4d403 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd0e82f drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eacb2cb drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec70f59 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3d18ce drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fda0d46 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90144663 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c724c3 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9142d313 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92664b6a drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f608a2 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x937787c1 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9406a86c drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94942f38 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b285e9 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a18999 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d86c49 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e21537 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9731daa3 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979a022e drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f8c239 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x983d4795 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98c82b06 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a788692 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a9a7f8e drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b5580fb drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bf2a464 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfbdc62 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1925a4 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9da000a7 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6bc0b8 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f60d214 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f95f86b drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa108513b drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa114bc11 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14e41ba drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa179c12c drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a83c8b drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa296529b of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31c8d6a drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31efe7a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6575b0d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa731cbfc drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa738a7fa drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7510cb5 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c48657 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c7b99c drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8883488 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9227be8 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa96a3ff5 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9750f6c drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2f7566 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab37adec drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0a2218 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf5cf9e drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad53201f drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade0ff7f drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb01fbb5d drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb030d15c drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c396e0 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0fe8d7b drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1736233 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17630e8 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb387c752 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5baa184 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61ba64e drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64b5130 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6677319 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7378bd4 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83a638e drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8f85729 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90ba8aa drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba470085 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8f0cd4 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac9075f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbc3ab9e drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce7b167 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcfc5164 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd31bc04 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6b11f6 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda41f0f drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf54934d drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc113b12b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29f7547 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2be39e7 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2cfcf93 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3dc89b8 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e47a54 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46240be drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6902118 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91f41ed drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b3884e drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca63ad23 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce3bebf drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcceeef09 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd27b2d1 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb9926a drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce3e3f08 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce58c94a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce82b13c drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef9f0ce drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf753548 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfb9bc6b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09bc86c drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd09e5cf0 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0cabeae drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd16bc568 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ea1c0b drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd20214e7 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd253ba1a drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd32e6a03 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f633fa drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6881a21 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ab1e03 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7968264 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd799d8f2 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7ad21d4 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8889edc drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d9043e drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda0eb1f3 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa3e53a drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb4b3098 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb4eeacd drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7727b3 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcde08ed drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0a2c9c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd44168d drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4806bf drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde315e37 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3a4ce6 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfca251a drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe269fca6 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a05315 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe58b9e96 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5ebf1eb drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe67b004c drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82b2140 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83c7bc0 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8561ed1 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86b85fe drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe88c5a55 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8bece6e drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xead8b0e0 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeafbe308 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb0d4911 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb7d82ae drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebbd1780 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda42888 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6e5d46 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeffd424a drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06cedcc drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0891d5f drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2bf0351 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2cb1c07 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3537c86 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b2e73e drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf61d71b5 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf71f54f9 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf755fa84 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7775f46 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ec1d53 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f464b6 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81c5f6d drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ff0913 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93b360d drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9426f61 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98580b0 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9be1548 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e9e042 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa598d11 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb10d349 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb1ae830 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb71aad7 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb8d23c drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbeac1ee drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc60e8c7 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0f710f drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd30f0a2 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfcb08d drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff2e2e18 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6f7e2e drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00354924 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0195ce89 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01adc609 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0332344a drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03401bf9 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03cf37cf drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047497ec drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05c42972 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0682d436 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07875b6b drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x079c9428 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x083a7aa9 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e47e20 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0909ad35 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f23b60 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a8690ea drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac4c5f7 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae03df6 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c818e8e drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d43f7ba drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f7f4479 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fcd0c5e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10d21ff7 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12472d6e drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1253eb7b drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a1774f drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x157f675d drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x172c8ffb drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17cb69c7 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x196275a7 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1967560d drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a14e3a2 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d64a928 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e072eed drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff76a33 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2013b9bb drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2239eac4 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22665912 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23707f47 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23de17b4 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x240bcb3d drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25bdefe5 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x264c762e drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x296ad317 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29a4b0f0 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba5030f drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e2acb1e drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x311d17cb __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31d34c21 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3407b2cf drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3454f022 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34b5d147 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3793319a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3955b98f drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aa217e0 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d0e873b drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d11d11b drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d52702c drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e5bc806 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e84bfd6 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c0ff6f drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43b56426 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43fb4c78 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44fa07a4 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x469d3273 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4732eaf1 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4858e0f2 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x489b8e2a drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48cc3ec3 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a67e997 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b5d0d78 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b8ef820 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c18655a drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4caf5785 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d0f4716 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d1e11a0 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d2e0f32 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e1d5fb4 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e83e344 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb8d6f7 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x519b5b11 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x523086ff drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52f68bf9 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x557b1fab drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5665032c drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571411f8 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x578f891d drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57c59eec drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c1db1e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1bcb5b __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06322b drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cc2b966 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2271f9 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5da08a6b drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ee7246a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6009c54d drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6050f6f2 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x618e23c7 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61cfe21d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637dac6e drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b71456 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64352d19 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64729aa9 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x658648f9 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f65067 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67fb0c82 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68b8ab29 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69886f0a drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a2f9ab2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c3ad83b drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7ba95d drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dd26cfc drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e8d2837 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a7f03b drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x710d12f7 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c96a39 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x725932ee drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72cba0ef drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74040bf6 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x755c5cf3 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x770112a9 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79fdd00a drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aa15761 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b69257a drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bb277f9 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cd12b88 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d7d39c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83f50733 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84a0ef04 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8717dbe9 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8980d115 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b1ae769 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b5ba34e drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c3ea84d drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d568447 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f17de5a drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f6a669f drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91d3c297 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e210c3 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e68d85 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92bd4dc6 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93aa6ea0 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x947ecb4c drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x966d7bc4 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96c53ef3 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96df210b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x977d90a6 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9811a7b2 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98b314ae drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a07cb1b drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a126045 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a3f41ad drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a49d39b drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af2cc8e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bacbaac drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0bde0a drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e1866ff __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa42e8d13 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa468a4bb drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4919f3b drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6afc788 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6f0b041 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7f908c6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa89ebd4d drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8c69a89 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa90bdd9e drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa950b91d drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a68b29 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa129679 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabf39f02 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac66f7a3 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae4ef331 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1561afd devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1aad9d4 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb230dd81 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2913e46 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2958590 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb41b6bd9 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52dcae9 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52ebf25 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb53de803 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5d42a45 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8bc79d1 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb6b4131 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc74ae2f drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd4a2a1c drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdcc05f1 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf0ddf63 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf244d35 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc091ae67 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc13a62f6 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc22e7406 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2358af9 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2b0b5fe drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc37e3f74 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc44c3f2d drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc44fe9f0 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5828672 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7a2c79e drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc83f94e7 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93674d5 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf7652b drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbb2ac27 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccc568a8 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd7dc7fa drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8901a2 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce14928a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce851943 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0044421 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1764bef drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd25c563b drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd306cd85 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd363c9af drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd36d34fe drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd53597a2 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f39cfd drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda20c3fe drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda976cc3 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbf35f25 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc90d185 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcff68ef drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdefd9ba5 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8cdd32 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfc384a9 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe065f34b drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe172d2fc drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c8383d drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30706fb drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe35039f3 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39715b2 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5010a29 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6acd563 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe708112a drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7232baf drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8050d47 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea063c6a drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeabdc908 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeacd5c58 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebc830f7 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee1fc5bf drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04adc35 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0be398e drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0e5652d drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf119ebf7 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2951e9c drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf46e84c0 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf528e67f drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68c98df drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf81a5fc9 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8b818f1 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8eb4438 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb07c4eb drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb5a40dc drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe00f3fd drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe731702 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffbf6cce drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0aeba6f9 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x25b12ab6 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x356d07d7 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x38c4a65b mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4597a375 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4c4a4541 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x60588f42 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x688f9614 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7ca45d2a mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8d6d60b5 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa44eb96f mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb9bf7b17 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe66fa513 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe6e23375 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xea7039ac mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf3bdacf1 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfb70594b mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2edde3a4 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x63595da4 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8961b41b drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd9354734 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf2f1c87e drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x11d67012 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x292c22be drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a452f57 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4dac0197 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5f734301 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66d058bf drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x69d2c68a drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x70e12b36 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7d31e530 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaacf8ef6 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaff0b716 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc4f31b6d drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcc3f052f drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd82f5e8d drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7b1bf31 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfcbe1c03 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12e5d44b drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19ba19d1 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x434a634d drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x448c3e95 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4e4932cc drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x51210e72 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x551c882f drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x575c7e6d drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x593c8231 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6fb56315 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x76726a06 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b744e6a drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cb8c5a8 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8c7154f1 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x995cdb20 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9b37de14 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9c6f3da4 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd825e09 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcd798a1f drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd04ff668 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdbfe72af drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe6713ffd drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf58cbe74 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf9597643 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0089777b ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0310b1ee ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03faed52 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05b20e3f ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x066c1f64 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0becf8d5 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f9fca84 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21004654 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21d8fe68 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x248fd471 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b487b32 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d8dad76 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4016b58a ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41994a02 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41e4a3c9 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4285497a ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44b37119 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e2f6c13 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5af35345 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60c4759e ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6123fc63 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6400ddf0 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6684992e ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66d88341 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cdf5efb ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d8e3e9a ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6eacf2b5 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d162cbe ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80f0e0d9 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8130cf11 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82dd2ea6 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x837b780e ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8788628c ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d3ce41f ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x945acfe9 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9780ea92 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dc50ca3 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9df845c3 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fadfc43 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaee85076 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb391e053 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5cf2123 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9c2c5ef ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc60cdcc4 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc73c5216 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca557799 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce8630c7 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd05b7067 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2d90414 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3ca7b42 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4c8fa50 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeba07e9 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0aea8d0 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2d3626f ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec352fea ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf269d55d ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf839df83 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8a4a33a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/hid/hid 0x0f597a21 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x44ee4b8a i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x62a66a83 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd017e32c i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1267b497 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x206c1921 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xa2d1c82d amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x1cb3391c bma400_regmap_config +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x4080c9f1 bma400_remove +EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xaf6c4d9b bma400_probe +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x10325c8b kxsd9_common_remove +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x2969cb09 kxsd9_dev_pm_ops +EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd4ebe615 kxsd9_common_probe +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x088e4110 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0947f185 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a7d14f2 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1781ade7 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x24ea31cb mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x621884b9 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6fcfe216 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x713d60bd mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x73ab0cfb mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9636112c mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9dceee20 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb9742c8d mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd46ac01f mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xda017bf0 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea4969cc mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfbfdcb25 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x05959975 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0761fc25 st_accel_get_settings +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x51c66d4c st_accel_common_probe +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x30112a63 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdf347ebb iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x17ac65dd iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7cf23cf9 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xe9c3f200 bme680_regmap_config +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x05c0d525 scd30_probe +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x903d74da scd30_resume +EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xc31215c9 scd30_suspend +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0b85dbec ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x18a38712 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x34d7bf04 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3ab22ee7 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8b8f1a17 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x96b2092e ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb07ec897 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdd48c24f ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe4a3f135 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0e0cbd52 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5679b9f0 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x62e97a68 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8592b470 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8afeddca ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x50daf1ab ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x84d325b2 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc1a4598a ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0dce7bd5 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0dfa3c2d st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x10346dc8 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x156b77ff st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51da4600 st_sensors_verify_id +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x538032fb st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5628a9cd st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x64345649 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6d21d1ea st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9cddd9d2 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa213a715 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaeb87e71 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb36ccb6c st_sensors_get_settings_index +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb6d913aa st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb8ef62a2 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc8619ff5 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdc1c7c73 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf38c1a4f st_sensors_dev_name_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x1f4cde0a st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x1bc322f9 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd3fc84ad mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xdb670fce mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xee21bb60 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7790f7b8 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8bbdeb33 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc9edbeaa st_gyro_get_settings +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x053849f1 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xbab3de2b hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x66e7bdbd adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xac9eba14 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x1b85ffb6 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x0f19bf65 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xb46575c9 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xf35dcefd st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x194abd08 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x31d89917 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x323b4e3d iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x32cb4318 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x35ff2c8b iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x3e295e20 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4095009f iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x5d4011fb iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x64c0b1ae iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x65a343f2 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x67cd3eaf iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x6b6e731e iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6f6368b6 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7273ffde iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x901e793a __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x90e18b92 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x924ae471 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xae1f8a67 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xb6be84f0 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc2f6321e iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xd4dc49f7 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xd5c64796 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe17c65fe iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xa4fc88cd iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1b928f2f iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x28967c84 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x57e34567 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb72d6802 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x107f4b27 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3173e994 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x97d04d9f iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xca0def8a iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5d7644b1 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xed7e4445 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x4098f6a3 st_uvis25_pm_ops +EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbd98f585 st_uvis25_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x26c41304 bmc150_magn_regmap_config +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x437c5e4b bmc150_magn_pm_ops +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x5cb0860f bmc150_magn_probe +EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x9a204869 bmc150_magn_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x04b55f0a hmc5843_common_suspend +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x5e816975 hmc5843_common_resume +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xdad6a9c9 hmc5843_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xed7b2c47 hmc5843_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x41f283f0 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5819750b st_magn_get_settings +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xea835599 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2dbdad6b bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x85865f8b bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xa9da3e13 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc73b7009 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc2a25a62 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xfc0786ca ms5611_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0105d66b st_press_get_settings +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x15c26c95 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xfadef704 st_press_common_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ed3adca ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x101bed4d ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x19da4d4c ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1a6e9ba7 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24820992 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2622b906 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4cb3b1ef ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x548826a5 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5abe9a11 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7487058e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75aa6aa5 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85dac13d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88ed05f2 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8beb6b02 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ddd16a7 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01ea86e6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0564c649 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07b36125 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x090e7aed ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09f59e56 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a19c82e ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a2cd0af ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c8d70c rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12079495 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12dd352a ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x149cc346 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14b1439a rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1517674f ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x153fb5e6 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1665504e rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16b10efb ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x184621a4 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1988566a rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e04709 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a583a52 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ad06d87 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ad4d2b5 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d50896c ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f059a30 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21159ddc ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21af4160 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22511aaf ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25aa2daf ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x262bd0f5 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26bf12fe ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292c87af ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29f424a7 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a5626db ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ad9dd1f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c06f6db ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c2c9be4 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d6fed4b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc70b9e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32865aac ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32d3695d rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33397869 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x338859a2 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x344399c1 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3675c952 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36cb9721 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x377623d0 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x394aec56 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39746be9 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3aff0d5a ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bbe14bf rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3be5278a ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8423d8 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ebafc1e ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f865d59 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43744ef9 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45c52481 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b1a35b9 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b8c7089 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4be00972 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c4f595e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c6fc09c rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e8e01e9 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x504669c2 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x512145ab __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5298f62c rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54309336 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5751427e ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58d16268 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c6e02b6 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d69fd4f __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e66ec20 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ee05901 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6179913f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6339473e rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x645db35f rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66e90c90 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6796ef56 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x685b3748 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68708956 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x689ab3b4 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c259248 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de4ddfe rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703ab365 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7088d6ad ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70fabcb0 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x771b1951 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ce1ddd rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a17671d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a2581a8 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a54bf0f ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b898a39 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd28bfe ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c4869c8 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dc3d02f ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f0b0b35 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84dbad6e ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a7c3fe2 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c0b5c6c rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c113ae3 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c699181 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c947f3b ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d208c90 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d53af81 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dfa8c8f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9092eed9 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90a325dd rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x926ad092 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9300c627 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95801a3e ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96bf0260 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98c8e7e0 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a3e7b93 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9afdc448 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c1e26b9 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce5edb2 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa09d359c rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa183feab ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa29b1e08 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ccfa7d __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa484ba8b ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57d2f2f ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9517ed4 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9a42417 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab702c41 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2cd5e78 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3bcf66b ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb453b600 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4597c0b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb52ce77f _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8b9f728 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9dbcdd0 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb0a3bc0 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd83403a ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfe15685 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc006a362 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08079eb ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0cbef09 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc307039e rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d6a18d ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc47621dd rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a14ae7 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc94907ee ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9b8c819 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc98ebe8 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd0b4264 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce94dffd ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd05c0d3a ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1a97609 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1c01373 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd20042b1 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2319195 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd23409da ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2860ff2 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42a1981 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63ac692 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd688290d rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6f17b31 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7af0520 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb388293 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd839bbe rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde98a930 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf9f2025 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe02573c2 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4e25cd6 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5170358 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe620c6dd ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6e22038 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6fbb3ae rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe84debae rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9caf3fa ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea745824 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec2a38b9 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee89ae57 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefda2d8a ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1012b8c ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c45dd7 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf222e33d ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2d1d7e1 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3de12d5 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf52d23e3 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf78e5e47 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf790a03b rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9639f3e ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa3cd12d rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb9bc9ab ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe9a6282 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfec8c440 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffccdc85 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09d42a9c _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x14dde592 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x313f01b9 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c08c852 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c42c51d uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51f095a8 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x55efee3b uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a522401 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6cd1097f uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x716f8354 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7caa6c7c uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8bec726a uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9365ff7e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x947fe7d3 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x975269a4 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9783e611 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e0b60c2 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa39aabe4 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4098b46 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa54cb9fc flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad16f09b ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb062515f ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb60809ce uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf822680 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd8302c0 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd05ff924 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2bfabde ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeaa01893 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf07190ca ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbe88193 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc81a4fd ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd8b87bd flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x055e4c3a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2b03de11 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2e437c92 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x36922d1a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e3661fa iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bf3fa17 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd428c5a7 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf34143d3 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c2e0176 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ee3714d rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f199c7b rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12b3b567 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x135d947f rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23d227d1 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24d1827f rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32dad6e0 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44748b9e rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x44d8bf74 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d69c1cf rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x560ec33a rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d8071f0 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5dc7b004 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f78b1f1 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x668ef517 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6fffa437 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70310071 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72b76e72 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7732f4cf rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81e2cf81 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85fec218 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x973514f2 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b4b480e rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1bbd35b rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb18871f3 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3075750 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6287ac3 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc29777a rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca199fe2 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccb3dd6c rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2d40245 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe83529a5 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xede9c511 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1aeb1714 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2dbb93c7 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3971cf44 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3f232092 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6a6bb536 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x865bc672 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x896dbfab rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4165823a rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4ede9f62 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x95f69d7f rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc539c779 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x09184e94 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcd63432a rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xce5d26a7 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcf0717e5 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe2c13f25 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xffa38dda rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x154f9ff5 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1d97cbf0 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x25d41b4b gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x43571c83 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9ef59a3a __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf92c2b5 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc4d727ed gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdf289b6d gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf76b094e __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x44b3bd6f iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7dfde987 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf693da18 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x53113f47 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5698f2ec ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x569ca012 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc9f8e960 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xec273f7d cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x5dbf52fa rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x28d2ec00 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4d7301a4 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x710d82f3 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa31511f4 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb4bc53df sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5d8222f0 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x810d3fc0 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0c7c4631 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3428ed38 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4262b07e attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x60e086c8 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd5b54a38 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0666f489 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2c208cb8 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6ad08886 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb43eecf3 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa247a05e mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd6dbb942 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x024c086b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x153b9705 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1eae1de2 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x269c2a7e bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2745ec20 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a94f7c9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2baf4452 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x479ad1ba mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f48db1b queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f58b441 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x504c3942 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5868e5b0 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fb2c69a mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8378fe9a recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x85b3d0b0 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91117372 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae7693bf recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbfee294b mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca389d96 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc663185 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd47bdf3 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdde8788f dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe0118244 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x10338727 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xfde51956 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/md/dm-log 0x369d2af0 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x50fb84ac dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x5acfd188 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x955e16aa dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x13f05d12 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x39f5470e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x71c6dbe5 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xac0b6c06 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdbe012e6 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe8d3c44f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0xa6da59b0 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xf5a4dd9c r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x053b56a1 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x231cd7f3 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x58450f48 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5fe4aa36 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6e4abaf6 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7026bca9 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb60a0df2 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc158faa flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc33c0b79 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcf5f67c1 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe963e2f8 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf63f101b flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf69c6311 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15237dd3 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x540ed0c2 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6468c27d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x81706800 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x416e097b cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x10fc7add ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xd03a6503 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7b1af7fc vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe9f24ae0 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x0a88c639 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x123258b8 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x60f2bea3 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x813e4de2 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xec312918 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf53c17f4 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb455afe vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05a4ecf9 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x064fd246 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15052806 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31677782 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32d68760 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x332ffe5a dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35053b67 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3da5de6c dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4181e1a5 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x49b4dec7 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a9c6481 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e20d4b1 dvb_free_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66a68864 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66bd7694 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ab6aac6 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6cded7d4 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77386aac dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fd6e094 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x949f7223 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x995d2fdd dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b221113 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dffb35d dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa764fa49 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc05d026 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd3954fd0 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9968bea dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed056cde dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf294c7eb dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf49a8a9d dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5738064 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb135c2d dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd3020f5 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdb065f0 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x1b77fd55 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x6f80d544 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x03741446 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2b7f7f19 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x54d102d9 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5973088a au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6ffdb789 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x73e0dbe0 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x931a8808 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x98243f32 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb9ce182b au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x70b8b5bc au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xbc2db6cc bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xa423e14f cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xa9af7ca5 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x002d76e0 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x439a4dd1 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x9df09d6b cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x1c98499f cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1c1c169a cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x131fad94 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf6df73da cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x443c9c66 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x92d74e96 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf43512e1 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xfa1ce792 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6a007339 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6bc167e7 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xdbe914a9 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe45b0402 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf15a996a dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x04f30c64 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x147dbbae dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2183baf3 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2d07e131 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3712c810 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5a80e1fc dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5be3df7d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x63d0fb7d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x86b52651 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8ddd745e dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9ff3938c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb2a538c8 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc673c743 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc689df2b dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe031701a dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x1009c320 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x13d89724 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x27e3346a dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3ce6a95c dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4baad85d dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaa6f79d5 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd3b8df99 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5a22daf7 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb2d31e70 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd05abba8 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfd3b56e8 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x0c8e3e7b dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x976e4f09 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0e938977 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x13bcf367 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x14c42158 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x19aaa454 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2df41bbe dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6c15f888 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x74fc5b0c dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x88b3177d dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa030023e dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa7bdd718 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xab859fcf dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcf41a3ba dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe7b9f7c7 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4ad2d3aa dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x63d25fb3 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96f4446e dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xaae00a97 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb47a6beb dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5598fde0 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x27e955f5 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x94977a99 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x3d416430 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xab890622 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3040b308 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x9b8e9760 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xbf8d3d78 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2a7a7110 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x2f69b571 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6c0d9fac helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x9ef40a1d horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x55ce9a52 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x538e76aa isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x3479ef68 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x920e03de itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xa4c41a70 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x018ae354 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xf02c50d6 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x4bbf9e83 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x07ebf500 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0e8c77ae lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xee8b6a35 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2ef3c414 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x18cb4733 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x122a3823 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7ba116e0 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x89da3a18 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x16ae1363 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7cfc7ba9 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa361958f m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x30d8c24b m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7955af2b mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x9651718d mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xfca43dfd mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x7f1ca42e mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xbac588d1 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xa2010c10 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x4c494007 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x528cd75e or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x5d2bd3e4 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x87c9f42e s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0ca22442 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2fa11f5d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x09cbb8b1 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x87ee04cd s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xa8e22175 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x8e63e151 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x90f77766 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x84668732 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x28cd5c5b stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x202a8faa stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9f69910b stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x5d2d9678 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x34e1e6ef stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x932900c8 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe05d53ad stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x6a6c0ce8 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xd56fa871 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc9f3b611 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe4a8cc1c stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x4dc1c769 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x37f2f7c8 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xb388a9b8 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3e5bde1a tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xca380840 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x4b4d6bf1 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xa4164da9 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xbb52399e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa67868c2 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x3b8fab69 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x664de0b5 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x225c7257 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xbeb77ee9 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xde8a8fef ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x100486d2 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb776bf58 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x81d29fa7 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xba143513 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xac1805e3 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x263783ba flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f02efcc flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5be5808e flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9aea12aa flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9b0e52bd flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9d1e9807 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcb215b68 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x11533ba2 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3c19d971 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7b40c270 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x98ba631a bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6c05ab28 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9572b33d bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xdddd375b bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x30b5c5f1 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x41f5b8a2 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x44a5c57e dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x514cd2d2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x68982c64 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x82d48d99 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x95aec950 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd6fc0590 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd97d14d4 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x0421f429 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x75d8d0b1 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9284c1f3 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaec4926a cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbc529a2f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe45bc8ad cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbd2ab821 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0ea60a62 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x310ce05b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6767d77e cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa451646d cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb322080b cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xce421de4 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd9763413 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xcdd1bfb4 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfa138cc2 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x063fc285 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6b35427c cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdcedca22 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfb7dee5a cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x399903be cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3dc4ddf6 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x78818e30 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x801d6a82 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b4de833 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb73988cc cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd369f5bb cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x068d8d5c cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15d90560 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2401217d cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4b5f8ef3 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f3be491 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6d0493e3 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7144e0df cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85f96930 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88861164 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8902b2d2 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x951f730e cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6b2f0dd cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbb8483c2 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6bf8831 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xca150b34 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcaf79bb3 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb8f6890 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd10eb31e cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4978979 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfada35b1 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x568f31b3 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d479c95 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1df7be36 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x20cb2b7d ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2f2cd2e7 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b51de38 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x77d2fa44 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x792147c2 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a73de81 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x832e8bb5 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88865693 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9234e793 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9f2c56f1 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9a33498 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xad73a3ec ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc33f31c2 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcba292b4 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xea7c5d74 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e26d06 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0b2c4d23 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2adc0115 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3ff331ce saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e418c3a saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4fb40f03 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x665e4eab saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7e0f06a5 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x89893ea8 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2bd53d8 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbbee81ae saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbdd5e3b8 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1894ad3a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x309fd905 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x469550bc snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcfd43e9c snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdb0221d2 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdb7829dd snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdf56eec4 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e12e343 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc3f5f0aa ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf3104409 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xc457508d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x149541fa fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2346be7b fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5d05ce98 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb737157a fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x084e3394 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x8747dd3a mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x0f3f8a11 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x80f0ebb8 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x27bf1e4d mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x5facd14d mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x0a15db3d qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x24fa9bd0 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x858f30fe xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc412a9ab xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x9435c456 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1ef47ec4 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc179e9c3 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0e3bdd76 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3c3bfb87 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4293b506 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d39fdc4 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x798292bf dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x836b5768 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8dc33505 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb53bc63b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc064bfbe dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x12fc65ce dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4ab7fef7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4d36a076 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5edb6c94 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xccc3f8bc dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe989f936 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x6e3f672c af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x003e5c5a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x09ade9a8 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x144f9fe1 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x31cecac7 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x46327ce1 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbdcda272 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc9139f12 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd9b72090 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xef225a94 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x85071951 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd5b2f35a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x35563493 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x666c4fe7 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x04b6025a go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2607d97d go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2aecdf22 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x414c9ad6 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x641f56e8 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x66efe619 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x71b2bda3 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8d42b544 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc4c52ad0 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1eccb4aa gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x422a5859 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x55c2a0cd gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6b49fdd7 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x87d350d2 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc1d9e3f9 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc788b20d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf6e080f7 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x547319b5 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb118673d tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe7d2b5ca tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8872787b ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa3b579b1 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x04c4e09b v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1db80492 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6c875f8e v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x86f1dd70 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xca81bb7f v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf9bad471 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0bc37038 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1a0a9e6b v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x57c79fa6 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x949a2414 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01677a83 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03e0fa18 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x107164a2 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16ba349d __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22e6620e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b1bcde4 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c19943d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bc181e0 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42d7f8aa v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x445ec621 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4be28e20 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ee04258 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x501c589f v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52b7d5bf v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52d15381 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58d7a862 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d24bc53 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e341b1d v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x660c4db0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66a54789 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c108b5b v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e3b75f1 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f18cde6 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ffb2e62 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7124d663 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72228146 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72c7dafe v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x751a6bd7 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x752343d8 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7531b7e8 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76c67973 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a80ea22 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c202a49 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80ae0659 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84182886 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e0d8d22 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96c263d3 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99a8e18d video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae01d570 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae3f55cf v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1630196 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb71ae2c1 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe903b17 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc07b2e54 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc445f291 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8666a9b v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd422db32 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb80518a __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf44cf28d v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdd40d23 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdd58631 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/memstick/core/memstick 0x12a59afc memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x23c55564 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x25bebe57 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x32816962 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ee69b1e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x45b3ec21 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4f4383e9 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5957468d memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7090100d memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7548cdf5 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdbb93f7a memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xecf15631 memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05cdea07 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x071c1a5d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08fc5329 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ad32b26 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24a63c0e mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c2e051f mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32e29875 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3eb56820 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47abc574 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47c45f87 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b773203 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b7c47db mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x65b7136e mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7435ff02 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x838f9186 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x85316687 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92fbca6e mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4e9044b mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa69c978f mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa99bd369 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf25c31b mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba66c706 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdf6abfe mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd52b0458 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd92c247c mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb682a3b mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdea45022 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc9f954b mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff784dcd mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12b22041 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c4bbe73 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ca55a0f mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x203728e5 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26f94e6f mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e2123bf mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3dff1525 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b2af825 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f34d7cd mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72ab53cc mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8feb9466 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x939e4e5e mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d40c618 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5b760a6 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb01395b5 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc04f7873 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3572931 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcadc3fb9 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb55dec1 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0235e17 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2fc96d4 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8172674 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea3df73e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed799e6f mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef3a174a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb2ba25e mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfde125fd mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/mfd/axp20x 0x23c8770a axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x270c13f4 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xb1aac83d axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x281f95ab dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x96486f3a dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xccd5f311 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xadd1b883 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb773f9af pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x22136014 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x580e69a4 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x58daa2e3 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x69b101e2 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e7ec871 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x999c9770 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb246f61e mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc07f7f44 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd1c260b2 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd61e605f mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf8e2bb9a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x19490cda wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x2b73b743 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x65ce1d3a wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x862b0ef7 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xb299ed21 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xd9ecdb5a wm8994_base_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x0fcf068a ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe554648b ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xcc16deab c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xcdea4db3 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x112e501a tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x22fb069f tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x33df76ee tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x34dc2846 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x45e12549 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9d0f89a5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9f142654 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa80f73ac tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xbb214371 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xd79461f2 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe070d692 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfd81e38e tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x090189d1 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1abdd46c cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2cb8984a cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9b11569e cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xdc3458e2 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe4074f2e mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xebfdfd3e mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0727640e cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2a6c3d32 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6b0bd302 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9a7ea597 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaf292fd0 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd66129d7 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xda9d042d cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0eb9ea68 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4912dad1 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7ed78b3b register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb3447c74 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x6ee38f72 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1a997802 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xaa60459f simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x519ada56 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xb5c69590 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0e7dc789 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x12c9d29f nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x279d9cb6 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x342ddd14 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4724d0e6 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4d5b9bf2 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6b68598b nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6ebd5d50 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x73a6f9a5 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79b89583 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7c325eb7 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7e0806e4 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa286e26e nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa9c5afb0 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaee75e46 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb554c61a nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb75ab2c2 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd15ebbb9 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x1634f23c onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x1d3e9a8a flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x22051b9a denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x429ef4cb denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x05602282 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0650677b nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0a2510cf rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x360efe73 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x48e0a472 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x595b2493 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65fc2a20 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x67895f7f rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8f9a9d45 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaf73107e nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd0814657 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd4cbb20d nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xeed8ad7a nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf341fe82 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf47daae7 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf6789c87 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xff8aee52 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0cb05cf3 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1568d10d arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1e80d7f0 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f4fc34d free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c32307d arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x623d9f2d arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x90161673 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe61567d5 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeafc7f75 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xef06c908 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf82cf1cb arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2e02a5cc com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x808af1a7 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe6093b78 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03b332d4 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0405be1e b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14e8747d b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2017f56e b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x202ab295 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20317572 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2197bce4 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x255c6e9b b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x304dcb4a b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x364b51e2 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x45c423a6 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46fd1106 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a2cdc9b b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b0732f2 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c6f44d1 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52abebc4 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x559fc18d b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55e37645 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ca0bc10 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64341291 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68268883 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74a72822 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75f985d4 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x767ef29f b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ca72d9d b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8654032f b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8917b967 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95e1b031 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9771ac85 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc77e53ea b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc7ec10b3 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcfb36b26 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd192d519 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde728f66 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe10c0cda b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1341b23 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xecbb9223 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xee86c806 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf02a47a9 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfca78ec9 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe53d2a1 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0ea38260 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1579f035 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1926a40a b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1d267038 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x891de73d b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb136cbf8 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5082894f lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbf81a89f lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc2355f81 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xed6b106c ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xc7ad139f ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6db21bc7 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x90a5508b ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe6132ade ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x334b50f6 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x34482893 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9b488664 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0758f774 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4eb0230a xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x94ab3951 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb0207e6b xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x060e58e6 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4b61ae34 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x62f9c10c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6fc98910 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9e7d2f4a ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xacfc9b77 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd0d65d86 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe0fde0ea ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfdb14115 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xff3f036b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xe37a3142 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x2d90cf6a cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x5417ff35 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xe5b09d0d cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw +EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1298636a dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3272b35f cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33de7826 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b7fd2e3 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x425c5aae t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58f745e5 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5a22fc75 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x648856f9 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7ad01460 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7b3c4589 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa690a9ed t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xafc786f1 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbfb33b10 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5534df4 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce879bdc cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0a0a481 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x012fc6bd cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0227962b cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02e7bb55 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08f445a9 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b6b48b3 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x102eb1e4 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19508ca7 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x202e98d4 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24188ad2 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x255f4611 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2668e30e cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26b38187 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2785e95b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ddb1205 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5924b80f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c0acaa3 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68797c47 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69bba323 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69ffec5c cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c14bdc8 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x748b608e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e97ee57 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d5a2f73 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9019d8fb cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9da7af87 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa9a4f51 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xace92b25 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb50cc24e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba7d2149 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf50d41f cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc39fd3ac cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc592ccb3 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7a5db1e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfb1a3ed cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda3373c7 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf8e8826 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe17d3138 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe36326e3 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe41fb8b0 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8ad6a51 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9498b07 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeab2ffe8 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedf001fc cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf34a3312 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5e36571 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf964ae64 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x11d6b663 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4967abf5 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb6384b2a cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc1aa4f59 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdf1d0285 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdfac78e9 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfcda00c9 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0ed6469f enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x10a337c2 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1570a699 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaa4f8f02 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbfffc8f3 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc3b6f711 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb595fc4a be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xdd348ef3 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x113fe676 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x1f3a3a07 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf98fca4b iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x19934151 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x5d1809e8 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b23813d mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1516407b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x164b4b6c mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20108e51 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25195414 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x281c32a7 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x294bf0c6 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d551537 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c52594a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40552da3 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43f3f214 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45579874 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560fa742 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x578d2a11 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59bd67f0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df101f2 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ef36219 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6029713d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x624de2ed mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x662713bb mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d06b16c mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e35b6e1 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e59c253 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8643b4fd mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8745cf69 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c3b1c48 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0208e7 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d93353f mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b2d42df mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bfd455c mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9f3b579 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3018857 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba642125 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd034abf mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf143f08 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc181ba67 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc63674dc mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb3e76b3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbccea4d mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce71d064 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd16464c1 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd44c5b87 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe9a9cb mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d20644 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09685db8 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09836e28 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bf6c0c1 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d8ca504 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e8bb36f mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x105d0b86 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10df6d88 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12216933 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12f3f276 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12f53830 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13b3e2d4 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1458ec0e mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1837955d mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18beef03 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c37d3fe mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20111aff __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x207160b2 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c2db5b mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21dfd677 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x231ca8cc __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24fdd16f mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29c70151 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b09c7dd mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x353d864a mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3754bdbc mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39ba4f83 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c12aa11 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cbe7892 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dca985f mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42bef442 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c0aa31 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4547c980 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4666fa88 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f476203 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5289f871 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c30d46b mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c9fe8d1 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f8329ff mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x614f95dc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62bba697 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63578a8b mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x648ccd30 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64ee3e83 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660773e2 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68701267 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ace69e5 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c409f1 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x712b9024 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x763cff2b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ab29acc mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da6d5a8 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f94da0b mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fb9a017 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8200108b mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82066436 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82219e27 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8250ac1e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84a54ff0 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a11696 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b4251f2 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bd384a0 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bde953e mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c828368 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d99da04 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e30deec mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e8583af mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f780ff3 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90cc4848 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91a38a80 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x953708bd mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98edd256 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x994dcc1c mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e631612 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa11a4537 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1e32990 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e66f45 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa614541c mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7e5b9f9 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa910cc9d mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9938544 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1cd2d95 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1f2fb09 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb216ea0a mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c09126 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5ad546a mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb80dcec9 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb50733b mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdbcf1dd mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee2f3e9 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf9febea mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0570a7f mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc123d808 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c31382 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3347e50 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3c60666 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc45cfab3 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc483846c mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4bb7459 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc626f2ba mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc727c5d9 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca58457a mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac94053 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb4bbea mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6d27ec mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0fbf9d2 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4972c05 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6e8552a mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7c3ebe9 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7fe4a48 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9dc015e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdada32b8 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbda65d5 __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd5f907b mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf148c2f mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdffedc35 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2bc3fde __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d5ce74 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6828ed7 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe960c518 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb11ca25 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd67161 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecee4497 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed496afa mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0ae3691 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1514409 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2998329 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9dc4b6b mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa4f25b6 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe229597 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeaa0046 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xfa218add mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1db6ea4d mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2715ec66 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x344a6a01 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51471ced mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x583eb2b8 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff8952f mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x64deae88 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x69f26d22 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x762a0c13 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaab603eb mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaba46e51 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc94ba5ef mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd8386f07 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4915bd8 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9bbb36d mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd12e2d7 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x27b057fd mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xc41f3edf mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x42e9fa58 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa32d23dd mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03eb316b ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0796c789 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f5b786e ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1011a26c ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x114d4bc8 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x194d244c ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c936a9e ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cdcf637 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d0410be ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ffe15c8 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3171d45d ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x339f6d27 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34701809 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38336e71 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40285c9f ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42244888 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x449520a0 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45d5d186 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49844627 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49e678a5 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49f92e37 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ed71cb8 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50857f32 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e9165f2 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60aad103 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d7f104c ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x715809fc ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75a26a86 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76c2388a ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81b8a1b9 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x847acb3a ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86742e2d ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c333bd9 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e47bdcd ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90ffb6b0 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92a0e1be ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94935e5d ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98374782 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ac768d9 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ceafee9 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eb0773c ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ee70cdf ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4050ca1 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaac15808 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae885b52 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3bf469e ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbad93c73 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc27af7b ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd118277 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd7ec3b8 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1b340da ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc77d2f7f ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd02e3840 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd383b2ae ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4ea2fea ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd84c9e8e ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8a5d5b8 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd951bb3c ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdad31cf6 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdaf91a09 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1f1bf89 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeafdcac5 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb239613 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef18a515 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf654da26 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7be4e5e ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfff04b8e ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x38e4b6b9 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4003b7b9 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa07e0bc4 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa61e9bbb qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x270353df qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc0aebb72 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x66663eec hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xab63abb3 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd20611ca hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf66432ad hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xff7cc75e hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1718afd4 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9109aadd mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd06995b9 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd314063d free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1818a9b2 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xf7552049 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mii 0x03c24877 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x320ead1b mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x434cabd8 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x4c4aeb1c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x7cc0df6e mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xab0d820d mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xed2b9b55 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xf037f8d0 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xf5cccdbb mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xfeeb71c0 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xb104910d lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xbe3ac95f lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x28a3f5e3 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0c65d62a pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbe065c5c register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe8a2c004 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfff98a48 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0x92e8ea82 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x4b5d85f1 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x68d4335a team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7f67cc29 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x95f4ca78 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x9cd503c7 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xaa513152 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xbe96c429 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc62909ce team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x10976683 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x22ec9461 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x27a4d20b usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x010f8fc2 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x12a315a2 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2836a1f4 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x38dce777 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7f1732eb detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8796c9f5 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa1cc63c1 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa3df66f7 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd5ba0dd unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf17c6a92 hdlc_open +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0e1d4694 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2995d070 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3c5c83c3 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x46872f5b ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4c03f45e ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f19deac ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x67c71803 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1e27a46 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb5348cc3 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb7091e6 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf502ff0 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe37bd041 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe54696f5 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x045ca37c ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09ae9b9a ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b084896 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0bda9885 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0cdbc98d ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x146c839e ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17016179 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d2b2f58 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f96ae09 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22c4be9b ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27157a5b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29d7cfc3 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e66fc03 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31b99fa1 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3bd97100 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d96418b ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x415b3e80 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x459d9c83 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x462a02de ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x483f0c8f ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d5d6a5e ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x549a927a ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55c28fe4 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x565d1df8 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b58c896 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5cbcf562 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x626202f3 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6be83cd0 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cdfaf10 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d68b493 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ae69c26 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x890b61fc ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x935cf3ea ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93c6e4f6 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9402d05e ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94e74093 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a967a87 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa76be79b ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae0d0423 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb75dbf43 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc70a0ff ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdac1a34 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc316f91b ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3d2e8bd ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca1b2eb4 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcac14b20 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc5b869e ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd20030ff ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2cedf30 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5433db3 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd34906f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5217272 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebc27ac7 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee8d5cb5 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef0c26b6 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0a7be5c ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0461282a ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x14aa4624 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x216c382f ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d807078 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2fa17985 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34c21d33 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3a3c91bd ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x464cab4d ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4954b9bb ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4fd273a6 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ae01683 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c844afb ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7814463f ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x80ff36c7 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x90e02277 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d413c05 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e93f739 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf92ef06 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb96b46d7 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc4dd5095 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf782a840 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf7d24371 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x29d2064e ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6601e66e ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c249f1e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x87c417c0 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb7ade288 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc57e4369 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca617df2 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd24108bd ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd954ecdd ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xed7d5a7b ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5f8f35a ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ac5dd84 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16cad5f6 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x266798aa ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28f78f55 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x35b2b406 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x451bebe2 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47fb46a8 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x651df012 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66dada9e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73fbee2a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76f0b1ff ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77e5d835 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x801ff760 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x820b97e4 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x871b6320 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf523d8c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc21157b1 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcca740c7 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcd2b87a8 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0443157 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0b33863 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd4fa8e6 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd716038 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x009c7b2b ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07163cee ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07f5ab4a ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b6f23b ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ca79fed ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14ea890a ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aa5f3c6 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x206d4210 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x209db2bc ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22d4d6b8 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2352087e ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24266382 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2575f374 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2632338e ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28f3379a ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b0593d5 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f2a2973 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x308521d5 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33a46a38 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x343fd7c0 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35de6f3d ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36a14ecc ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38e1dfae ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc4f4d2 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3da2ad30 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x452ebdf7 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4576c252 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a74993c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d88148a ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51124d5b ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x515564ab ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5abf3604 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ad5e223 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e2409aa ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61840ef1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66c07598 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x675ea583 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6800890c ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69cbde4a ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a1ecd64 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b72d338 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c29fd27 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d346829 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ea0407b ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7449810b ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a436d8f ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b226e7c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x807219bb ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8177bd53 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81e616f1 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8671ff78 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x895c88f9 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c12a165 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d31d710 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dc17c23 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x949b4cfe ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x963c177c ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x985573a1 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x993d65c0 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd55bce ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f5bad1e ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa03383b4 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0a983bb ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2d18497 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa338f0cb ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3e100f1 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa73924fd ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa1dcf8e ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaab3f1fa ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1367ae8 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb19835af ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2315d51 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2ebdc1f ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3b76d47 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3d5b1ba ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5c9f688 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8b3bdec ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb96e83ee ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb5e3324 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc9e392 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4f98a07 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc57f1fa1 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8a1868d ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc934df61 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcba7c468 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2a022e8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd342167b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4834c86 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd50f0f15 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5e38055 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd941c14f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcea4adb ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf27940c ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2ad2f32 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe490cfae ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe658e366 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe68ab92f ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe95b0a08 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9e5674f ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed70c72a ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeeac018c ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee46ac5 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef0daca1 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf016351c ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaf92a7a ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc0927ac ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc580c46 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x21ab157c stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xad4753a8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc2d491bc init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x06ad37c5 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x073a95f6 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x167cab50 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x42145163 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x490713e9 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x550cd5b6 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x55e93293 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5ad98465 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x74793ad1 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7be08a6b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc02d6af8 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcb341506 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdf6858af brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x824c9dfa stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x999411a3 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xfcf92dc4 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x02fac1d7 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x342969d7 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3c8414ba libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3d078d66 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x528a27c3 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54da0f75 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x58171e49 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d71a20b libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6ffb43fb libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x80b3e50a libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8c01b2fa libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb55500fd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc0552de7 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc8e7a1f3 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xceb8a903 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd3d960da libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd41231f6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeef4c4ae free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6f57922 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfcbb6a36 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x017177cd il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03b409f8 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09583985 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09721ee3 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c110e6d il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c4e8ec7 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dad52c9 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f395610 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x135befc1 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19eb352f il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cef1a62 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ffb4b2a il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21ecd932 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x246a8c81 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28f9f825 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a61843a il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c08271f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c0f87bb il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34f0a781 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36c145b9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e1b0201 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f74ff61 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4004e12a il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4162575a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41e3465c il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x469611a8 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a3233ee il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bca0bcb il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51d531d6 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x575d31a3 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5812f9f0 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c1bd279 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e8cbdee il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x606da04e il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6196bdce il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61dd641d il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x629bd3ea il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63c546ff il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x655c58ac il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x659e9784 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65a3f435 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c2012b0 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c6a8c63 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6da31fb8 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fc2aa32 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72f3fe21 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x732135ea il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73e9e0c4 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7859d6aa il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79929cf2 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79a381e1 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dffbbc8 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7edf2ae7 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8060100f il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x806b053a il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82108373 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84340c53 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8584c242 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87ccd25a il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e7a27e4 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f72fcee il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x908b722a il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91e71de7 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97c95ff5 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b7e63ef il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d15c11d il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0cae712 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1b3a24f il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa56e7d32 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa833a217 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa84910e8 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8906cb7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8bd366f il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa90cda89 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad657150 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae7cbefc il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafd5156b il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc3e60bd il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcb13ae4 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0059f19 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2cce935 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc488a78b il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5af6fd3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6f933ca il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc70b928b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc96d63fc il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc6c1f4e il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8696b8a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2aba35e il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2dff8f9 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe392f6ae il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe48d00eb il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe79a3197 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefd541f6 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0207b9e il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9e1f8ce il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc13d989 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffb95fc6 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f213665 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x950741a3 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcd3c7129 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2e440f6d hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4414daf4 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a496379 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x51d774be hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x54247f27 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x543fba64 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x56b7300f hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e0c6814 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b2b1e15 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x710e16a5 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x79e7434f hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87aac420 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95785296 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a0eb16b hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa9fe475c hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xad2bcb63 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaf47b30b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb577eb2e hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7fbb86b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbb177f65 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc55d00d9 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcc03865e hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd2ec85c9 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe8066325 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf612d562 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x042a7cb5 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1430d6c8 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x22f00afb orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2e99ef18 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3301e21c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x36b28ca4 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x37b733cc orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4559c341 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x65faae75 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c4a1049 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbabae0e0 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbb93fc6c orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc29737d4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd29a476d __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb723035 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf36754ab orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x2c206c37 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa2031c22 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09f4570f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11383edb rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1182a3a5 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11eb622c rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1997fff1 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1db3817d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2045f72b rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20e72801 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x253fe8e5 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c428979 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32f274a3 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33f0d59a rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a7b6a58 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e40d992 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41ec4f3d _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bb360e5 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55249870 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69569074 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f4ff5de rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74eee7ed _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75e67c7f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79f18ad8 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82dcdd95 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85ccf93e rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a2b338e rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e8241ad rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9837d3ab _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c1cda92 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f553780 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa082d5f2 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4e0a578 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac6d2ff1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf526491 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb495425b rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaa06cbb rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd9cd820 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea3e1090 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea89a307 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed3e2841 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf15818b6 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc68d452 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c028296 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3dac4df8 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x47e10a07 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfaac9a1e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x24351980 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x52bc4872 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x580190cf rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe09a04fc rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0043657d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x058d0f3f rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x093f3fbb rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a308153 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d2a0292 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14c67e7f rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x215098e7 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2df636be rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fb6cdef rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x340135d0 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a11bf21 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x417b039c rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x496188ac efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68db9ba0 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a15b284 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bcb5e86 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6daa7f5c rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72187af4 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x914f7a0b efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x967f6494 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f5766b5 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa53cdf47 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa860c78b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa997e238 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb92be9d3 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5cafdf6 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde12be37 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe61f44f1 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebc42e51 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7272ebd rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x302b7ee6 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xadeb096b rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xdbcb0454 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x34096f6a rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x092a5141 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1104f22c rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13a3f982 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1868f4d2 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x26974493 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a98c50d rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d2c7624 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fb51b5f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37a11fe0 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bb327cd rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c6a0685 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f7a3da7 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b941a0f rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4be76d4b rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c886755 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f9a5998 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5109e846 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59962a21 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b89e38f rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c42d173 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f36df7c rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e035508 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73d36bc5 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7741c095 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ae230c3 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7bebda77 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c0940a2 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86c99a0b rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x945b6e11 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x984eb6f8 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a1ebb27 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a9ffd62 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9ff1436 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa92dac9 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaac9ccc0 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xabfa3aa3 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb12c7a7f rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb27ae942 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2b5cbd0 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc86ef628 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9d9e61d rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcddab341 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd476f1ea rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd53f6c5b rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd842c0ec rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda0027dc rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd4e2d04 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde6e44ac rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe75734a2 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe79b503f rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec15906b rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2f14d8e rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf56577ed rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5d55f19 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf68f77b4 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6b80fd0 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf94971c9 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x108d9aac rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x31d7c7e7 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x49904174 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe776c489 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17d1c43b rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2165f9ce rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2f5e5874 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x428c7bee rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44d1c83d rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b46e2da rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5626f379 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x581f8c3c rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x665eec3c rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a1c75d8 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x758f6c63 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x76f6d2db rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7bc0fd5f rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7db89e10 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d6aad0d rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8ff052f7 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9eeef8fd rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe9a0114 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc54c90d0 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdbcf85c rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcfd0b2b6 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xa0330197 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2bccc6bd wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4206d042 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5a64e397 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xce8018c9 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x27114548 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6fd87bfd fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x295d5530 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4605e35a microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x84ad2509 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8d833c07 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe2d58459 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x41dd7cb4 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd642a1b8 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd9486433 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1b4684b1 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x62f30ed0 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc5bd9ae9 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2b48a7a s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x07a88953 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0b803cc8 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5de4dae2 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5fe99aec st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7d67372f st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e2cf72b ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x92d8fd8c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9c366437 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1aebcfb ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaa766413 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06f7e5af st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d088bcd st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x175c4bdf st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c754afb st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4641a729 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x46696679 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x52019bf1 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c98ad02 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72c9d697 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78efbd40 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7e287ac0 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x895faef8 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e2f3592 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd2ae8b2b st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe03e3672 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7e81223 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf22518bc st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf6e1c45d st21nfca_se_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x0aeb4810 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1177e497 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2175e9a7 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x367f1149 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x51a992c8 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x51d80361 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x5319e086 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x58ec0881 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x6b8c4420 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x735103b3 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x772ad05f ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x88b4d0ee ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x97184109 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x99e23c31 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa54e3351 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xb1669f8c ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xbe723905 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xdc36d77f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xfcb5de5e ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xffaa4ef9 ntb_set_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x30588993 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5e4977c6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x03af9548 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x03b513bf parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x0ac415d3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x432ae769 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x43f8120d parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f515498 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6401260f parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x67102dce parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x6bbcc980 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x7794af97 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x858cc5e4 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x87eec7b4 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x8900f541 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8923d9c0 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x939c9563 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xa6207d05 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xad8a9420 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xb883c7f8 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xce21a95e parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xcf3ebbf6 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd09a592f parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xe0a5b310 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xe48f1ad9 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xe55d0dda parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xe61fc182 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xe6803be2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xf2efc9ab parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xf71f00b4 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xfa36048f parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xfd10739b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xffbad16b parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x8ac81f4a parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x995a57e7 parport_pc_probe_port +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xbdbae221 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x02489cf6 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0b32c99e rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0b71949b rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0d2ee94d rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1a7d3f1a rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3a43ed58 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d031060 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x50e569de rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6e3455b6 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x821a799a rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x98c744f4 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa11ea8dd rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb9d8cc8d rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc58cb8ae rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc6104d91 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf980cbd5 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xfddb8da5 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x7cb21dd7 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x756cd42a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9ff76366 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd177d543 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf169207e scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a41396e fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5b580628 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x717ba7a1 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x78050208 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e0da541 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9817494c fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa4a2cb64 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xabbc9474 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbf66cdaa fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5605bc8 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7479f80 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a223c1d fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cd20658 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10788c2a fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x107ae709 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1694c316 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16defe31 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ad4c822 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f7bf41a fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26e647f8 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a2c9d1d fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ca7885f fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x323ca69a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32c4c673 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b0387a7 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fcac774 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40abe0cf fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x499401aa fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c56d182 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5046a8ac fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51de8199 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x567033bb fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59d2ec8c fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a7c0e88 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ce1e244 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x699c812e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6db7e889 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x736f8278 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76631040 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a5e18c1 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f5f848f fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80e34c44 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8264d30a _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x924ef19c fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96b7fd06 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x977198a1 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f3f9298 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7cf3872 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac29e8d7 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaff91edd fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1b58805 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6131f71 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2e3d54b fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc920d58d fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd21487c4 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda091cd4 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedde7e3a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeefd1a49 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef5f4e3f fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0fcaa61 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf133a652 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf750a61b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa65a2b9 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2ab88434 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7b0c30e1 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcdfd64a9 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xdec2c48d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18ae9bec qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x247f0dc4 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2dbb73e5 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x455e0a85 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4e805a4f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x54776945 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x61195bd4 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x62011aea qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x721fd15e qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7a28f939 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaf8fa928 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdfbed0f5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0x4b97885f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x543f14bc raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x69530a41 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x059af81d fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0adc0187 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x210c6bd6 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2baa7aab fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x31fc9a65 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x431dc1b6 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4b619672 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61b66c8f fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9bdb8ac8 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9bfad681 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ca7bd39 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab4fdfbd fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb5a00977 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb5eb9e05 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbba6be05 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc3de6d28 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb528e4e fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x000d0de9 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02a4c716 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b6fe292 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c6ac5cd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x11f27701 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b5c354e scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fde6ee9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x317184e3 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x444b9797 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e43b259 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d35eb97 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5edb0ca6 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66a47b2c sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ca78420 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x764ba419 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x930e298b sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa98db025 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb72be33 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9dd7b9b sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbba6ecd sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xceb57600 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd334b83d sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe35fd2b3 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4e72125 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedd2cdeb sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee22088e sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5ae79f7 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcce7e7d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfeccf72b sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0d7e5337 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1b8f58cf spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6a6bd132 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x92da08f3 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x95c2317c spi_attach_transport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x1dfc988f tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x9a8d65f7 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x04a82cc8 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3ddeef13 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x54ea2f91 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6f81e2fa ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x98e79e8e ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xde33bf97 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xee9e86a1 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf2502584 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x6fb60fe8 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xb71077ce ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x02792114 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x17806b27 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x319de615 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3750534f qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x509f2756 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x55b715dd qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5de236ef qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x80b8d503 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbdce2434 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfba29dd0 qmi_txn_cancel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x25112f6e sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b04462c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30ec4a8e sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x34fe1723 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3570fa94 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x38de00af sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f181d28 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4703890b sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x63818500 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x652d2a76 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71f0d552 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74b1c06d sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7543b7bc sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7d5b64ff sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8415b0fb sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa542f562 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa8cf8a5c sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa48119d sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3629857 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb650af7e sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9f4a271 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd18246e5 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe794056f sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef2b3d3f sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf2cf731c sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfde48832 sdw_update_no_pm +EXPORT_SYMBOL drivers/ssb/ssb 0x0f5e6731 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x11d714ce ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x49c67fb2 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x4a380e2b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x53eee985 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x597f44ac ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6e1e8359 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x70b16a06 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x944f92fd ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x9baa8830 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9ead8c50 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xae36e745 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb44dba27 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xb92e241c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xbcde160b ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xdd6091b8 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe24306d4 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xf09cb690 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xf9794003 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xfa59c9a1 ssb_device_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ca7e4ea fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1cedcbf6 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22009e09 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3347f886 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3610aa07 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x369dac5a fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37b6eb44 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a5f8bf7 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40f813ab fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41faaaea fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x43c68378 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x466e5ac4 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48aff3ff fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78ca0ba5 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x823168fb fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x826b527f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83f32d2f fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x891565c0 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x91f570c5 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d6330fe fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f67e700 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdaab686c fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdbcbe54d fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe457c980 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xee1469c9 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x3d9d0eb3 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x60998198 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb2c2d592 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe1d24ccc adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x825864e9 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xe8cc9191 sp8870_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x9e9c152c videocodec_register +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd0ffcffa videocodec_attach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xdc149b9b videocodec_detach +EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xfb3aa8b3 videocodec_unregister +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x005fff37 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c8fcd1a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0fb643a2 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x148c7f9b rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x167ae9f5 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b1c63bc rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2270b548 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2602bd90 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x287b719e rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x292026da rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d65f7b7 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33a0f143 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x349f8511 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36abaf09 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4307eef4 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f59a7ea rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55c51a37 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60c49248 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x612e65cc HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62ee6b5f rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66ed953e rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7635711e rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ce17d54 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83a07316 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88a911fc dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b6e5543 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ff4a774 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9558884e rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x968ce7eb rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa45e0c95 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa64b67c1 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab2afcd4 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabbbf742 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabe159b9 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3e80e68 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6c5aee9 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdd52a3e rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce755180 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd86811d3 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9fa999c rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe09fc9a4 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe19b3486 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe298234d rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf22280b0 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa157784 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd7eeac8 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe0cc515 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff1c0f4a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffa49def rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01ee213d rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x051ec95e ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0993194f ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1347beb1 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x197ef5b4 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e7ec2bc ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29dee88e ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b29ec76 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3289d11a ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x337f89ed ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36e99b9a ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x383c2cd9 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44ce8906 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48382dd5 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b171325 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b3b0e04 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e32b04f ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e78d283 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x557f3afa ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a4d1c38 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b35b6ba ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x618d770f ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x656c168f SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65dd3194 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x692812a8 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ad53311 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79ca2985 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b13cc66 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f1836e5 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86b8d7bb dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86b8e37d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8dfb4649 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a12f01b ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa694b581 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab86bff5 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf41b121 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafea329b ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb659ece7 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb776f313 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaa3d42e ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1a766f1 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1ed043d ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3d72da4 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc74ee621 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8aab481 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce8cceb3 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1ab0451 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2f14cde ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe331fa54 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7ec78a4 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5bfc1a0 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6901994 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff43838e to_legal_channel +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01f058aa iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16ec3e8b iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16ee82dd iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e058d38 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a6ee9d7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b709fa1 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c60e13f iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30de2116 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31dfaa55 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32a59f7c iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3db51d61 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42f5781a iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49d4cde5 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51faf4f0 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54df4771 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x567889d3 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d1457b2 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d3302e8 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x729edba4 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x734d460f iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8397eeb3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88dc35bd iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x890555da iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f507785 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fffa37e iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94610b6e iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae6fb810 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb165da3b iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2d508ef iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7d69c9e iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd0b22f7 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf4cb139 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0b4e125 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6a3798a iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc20aa6c iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce1d31bb iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0fd613e iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9d462f6 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdab73a0a iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2f03ddf iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe31485d3 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3ac8661 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe73b1359 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf12bba2a iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cd7ba14 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x16787a15 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bda0aaa target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x20e7530b transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x235cb632 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x246cdc56 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ca88ec4 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e0a8984 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ece38e3 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ce872d9 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x48c3af68 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4917f007 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x49b4eb53 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x49c06d88 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e69f9fe sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ef87891 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f640249 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x51d89800 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x58ef0bb8 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x59bf9baf sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b9728c6 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cf2ba81 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x61bbf838 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x61d78010 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x63f0d68a transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x73654b7c target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x736b7fba target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x76f74fef target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a0d3564 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bf11804 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x801c1e81 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x80abff91 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8aca1770 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x93b7cf90 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d1f653e target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9daca672 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9efef623 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa08bfc91 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6bac44e spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7c0c6ba transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3ad7b2e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xb48979a1 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb52742d7 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb85027ef core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb453c97 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe041bae transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0655d95 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc52c3f60 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xcaaf3ee5 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc8fcb43 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf424a99 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfd1797a target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3f03b8b transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4414214 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd469019f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7803026 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd88557ba passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe26e985a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3801bfd core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8982cd2 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb2582d3 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xeca79c59 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0182fe0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0f7b125 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3e86203 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5064e2d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf525b948 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7a6783d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7ba7212 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbed0501 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe52c10f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe9ef7d3 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xffca6078 target_get_sess_cmd +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x38b6c90f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xe3723ca2 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa1ac11fd sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x20a87967 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5b89b0af usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6ba1762c usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x766b1cc0 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x78a5eddc usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x96972032 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa5119fac usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcae24f91 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd976ab9a usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdf32d494 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe895ca83 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3927bfdd usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd6d1b130 usb_serial_resume +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4a316698 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x58a2d429 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5b834ca8 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa217b51f mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc144097b mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd352636d mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe2acffd8 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe65c8a63 mdev_register_device +EXPORT_SYMBOL drivers/vhost/vhost 0x56e11658 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xa57c953d vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x03f16e62 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x0498feb9 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x04fde01d vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x17958c34 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1d3f5a75 vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x29f5fa0d vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x33e11a49 vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3973a07c vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3d44657b vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x42cb4111 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4a6c3df7 vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x4db86f30 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4fc577dc vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5e661a87 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6769867f vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x91c18462 vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xb0b57107 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc62aa61e vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0xc9d39032 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc9fb475c vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xd9cd6edc vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe583840f vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xe674e8b2 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0xe7204e1a vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xea03b482 vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4fe6c6ea lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5b12a2cd lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x63c62d41 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xbe5e4e51 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x11b64dc5 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3059cf7e svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7cee4f5f svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x88c6ac15 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9035e4e3 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x958b3966 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe1746f36 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x9be89ced sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x063d19bd sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd595a011 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x457b618e cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x07f7da77 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x35bf4626 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xaa1e482c matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x17c5073f matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2e8ec30b DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa00850ad matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf728951 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x9566861b matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xa546d1f8 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0cbba623 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2b65e811 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa227494a matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xed7d63ef matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xbd5cbdb0 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc96f43bd matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2f74e8ac matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x62150544 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x74147fe1 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x808f017b matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf39fa861 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x01209c37 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0b4e81e3 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3d6df9bd virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4f720d70 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x51e14b84 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd935e55b w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4abeb58f w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe8488e35 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x965e6c84 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xab21459f w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xad871b13 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xd891c130 w1_add_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x0dfabc76 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x148dfcc4 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1664cc84 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x16daf24b __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x185318e8 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x18f1d432 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x22f94076 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x238eec56 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x2865bf6a fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x2efd0e30 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x42a75ec3 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x44842a87 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x45aebe8c __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x474c899f __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x484b4f2c __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4d13f398 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4f6b659f __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x59511500 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x5c8070c2 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x65476042 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x658194a3 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x66627061 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x6d5abdff __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7a5757b4 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7d0b34e3 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x7ee27c86 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x84b945f0 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x87ed5f93 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x8edd28bd fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xae527e81 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xaf31b97a __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb2a79cde fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xb3cdd5c0 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xc22ddd1a fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc69d0255 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd0ef48aa __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd662b4fc __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdf35295a fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xe6102382 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xeee86107 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xf2edf2df fscache_add_cache +EXPORT_SYMBOL fs/netfs/netfs 0x330e57ed netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x7629940e netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x8e78c4ce netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xd1044b63 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xe84efaad netfs_readahead +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x6bc29e64 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x81aa1dfc qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xaea3121c qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb7bb81eb qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xedb95e68 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xfa3c1b54 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libblake2s 0x7bcc24fd blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xf11679e7 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lru_cache 0xff2e5b63 lc_seq_printf_stats +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xefe4f679 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xfdf70093 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff9c4b56 ZSTD_compressBound +EXPORT_SYMBOL net/6lowpan/6lowpan 0x04ad393e lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x409b9066 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa1ed4398 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xabb9891d lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb524e2b6 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfdaf5711 lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x49c3d02a register_8022_client +EXPORT_SYMBOL net/802/p8022 0x778477c6 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x842ee51a unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xc3947610 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x014986f7 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x02c1e43d p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x06a797be p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x083247f8 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x0da56c0e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x15bd5ce0 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x16923846 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1cdf4f49 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x220820c2 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2aac4712 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x2d767e90 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x3783a75e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4208e463 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x4377ca67 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x475696d1 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x4b245370 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x548a9c89 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x5a467e53 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x5a6f053f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x5dec9320 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x6a909880 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x701c0c22 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x7214f527 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x7563272a p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x77b5d782 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x818ffc9d p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x83257d86 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x863cd4b9 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x8a0b2ca3 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8d52151d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8eda8329 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9216aedc p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x93e482a3 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x997552af p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb6cfcf6d p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbcbecd38 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbe9df7f3 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc4843da8 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xc8b383d3 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeff58a99 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xfb019d3e p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xfc488f43 p9_client_read_once +EXPORT_SYMBOL net/appletalk/appletalk 0x48b93c6b atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x87448207 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x9b6cbc80 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa7461560 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x17b1f234 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x20468f8f atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x350986dc atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x39da8b7b vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x445c1a4e atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4f77f4ae vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x55c1e0dd atm_charge +EXPORT_SYMBOL net/atm/atm 0x5b861657 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x638f13bb register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6d6df983 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb3d85fd8 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xbde7373e atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xdf5ae98b vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x09b00bdf ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1f7dd91d ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7b8c57d6 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x924c58c0 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x94491eec ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x9e26c44a ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe579e6b8 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xea229f48 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06d71e00 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09963d31 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0dfb4864 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x149e131a hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1829b05d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fe6bcd3 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x224a2d29 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d5e5769 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ba862d3 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c398b96 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e725918 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54984528 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5857b6ee l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60136896 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64def00e bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x688cd1ab hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68ed6a2b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ff7952d hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73ebaffb bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77d5a558 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cac65b2 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82dc995c hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87473306 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ef44ed2 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99665188 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fa927e1 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1db685c hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3e9fa57 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5ff7711 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa01e5e0 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb01e509d hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1697168 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb95b7075 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba16ac43 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfefdee2 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3713e95 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4975bd8 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc708173c bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce670c35 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3c65cd0 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3daf003 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd623e7e9 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe135d6b7 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8e8e93e hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf637a2fb __hci_cmd_sync +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5a2d04c2 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x64831f4b ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x70abcb5e ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb42ed58e ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdb1595c8 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe07aebe4 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x27a6fb35 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb2bd4d0e caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xce376207 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xdef9c48d caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xf38e7059 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x203c500e can_rx_unregister +EXPORT_SYMBOL net/can/can 0x46a94a0d can_rx_register +EXPORT_SYMBOL net/can/can 0x614bb582 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x6fe2bda4 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x81b9d990 can_send +EXPORT_SYMBOL net/can/can 0xaf09bc3f can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x02c7724a ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x04b2d164 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x060ed779 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x07a0d3fb ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x0967cb0f ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x0c518f24 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0ca8d4e5 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x0f2c5655 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x0fc46d11 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x10672865 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x10e74afa osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x126b2735 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x156fe2e6 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x189f2d95 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1a1c4eb3 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1eddcaa9 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x233b1998 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2906ac69 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c42e9dd ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x2c8677c1 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x2cc6b0d4 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x2e0522d9 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2f102ef0 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2fba0203 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x30f950ef osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x315a1027 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x31d8921b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x342724e0 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x34a713bf ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3af50f2e ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x3bb3da25 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d17d871 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3e487a2d ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x4242629a ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48406aae ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x48e11e59 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x49318bf8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x4b00a062 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x4b3bea4b ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x4cf4b0aa ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x51b14cad ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x53bde46a ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x56589a0f osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5830c677 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x60cb3eb1 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x63cbfe58 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6774d8eb ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x69eb254d ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6b1ae1bc ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x6f730838 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x701e0ae0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7065b4f3 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x71cf9d05 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x736fe6be ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x7b3a074c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7e4ed93e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x81798920 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x841f1796 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x8585e61b ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8f526204 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x92411f4e ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x93378638 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x9854ab42 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9f16cc13 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa0594ea6 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xa5c4b9c0 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xa69168c6 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6aa1ec6 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa6d9bf20 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xa83fc8e7 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae739ea2 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xaf038940 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb8fe8aa1 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xb934b3d9 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb9c15d3f ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbb570368 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbbc3b00d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc18c990d ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc4020268 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc41ce03a __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc4382c97 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xc656af27 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xca5401fe ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcae39356 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xd13085d9 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xd48783bb ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd58f9aa6 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd6a4bd60 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xd6b42d0a ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd7074fcf ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xd891ed41 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xd9d7002a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xdd4d12ce ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe022108c ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xe2a2cff0 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xe31f3f9e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe417b842 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe4396bf6 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe6a3f849 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe7e1f273 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xefaeb0c8 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf196fcf6 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xf7445d34 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xf834cb82 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xfaaebd65 ceph_monc_validate_auth +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2b517d1d dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x510a9fd6 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x102e93e9 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xd433427e is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5081aedf wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x59ff7ea1 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6417c819 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6851a82e wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x81d02aea wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9d8c743e wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x4bb06203 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x518d186e __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x568df31d gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x128175ef ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x33b1f6ea ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x79b85aaf ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb9fc7c72 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x19ce8a85 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4717c0a9 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9992c223 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xafbfead0 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1b9f3116 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2bb0c116 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4eba7ee7 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x673096b8 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x1c82efbb xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x4dc2d906 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x451fe937 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x165d5395 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3ddddb1a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x485db18a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x60617ac1 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x903416b5 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9cd0d046 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb6896661 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe0825a0d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xff0344c5 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x01647529 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x03c45ac6 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9797938d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xad393e48 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x9539dc8e xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf2439a37 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4da030af xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6a7a8425 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x1eb0a3be lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x6d875d64 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x77bc0c17 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x92b2be1b lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa800b5bb lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xc7476902 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xedcb33d3 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf577315b lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x0bc52ad1 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x37ba4d92 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x90d1ee9f llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xc12ab49a llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc8bf1077 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xcd946894 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xfde34b7b llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x014c8ac0 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x03096dcd ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x04b5f133 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x076a6138 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x090988a7 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x0a3a8343 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x12e5a874 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x14f924d2 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x15bd4724 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x21a42d06 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x2a2a3542 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2a645dac ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2ae64a91 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2e34c8c3 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2f3b4fdc ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x313e0fa0 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x32643c69 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x332c109e ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x33ccc764 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x3b3c77f4 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3b6e3799 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x40f77882 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x46c39d64 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x48f534c5 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4c0170ae ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4c3ae5c5 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4fe16d6c ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x5392b707 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x5f40b506 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x61378a0b ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x64a6baff ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x6549bc5e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x6ab47af3 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6b5fc21e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6dbbba94 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x6df5df19 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6f041731 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x7169cd10 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x75d8913b ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x78db8681 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7a6b7b11 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x81ed83be ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x8242bcae ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x82f33dd5 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x85de3900 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x862c9bc3 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x86f250f4 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x87f9f805 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8f3a0e42 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x92f5ec55 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x93258a9a ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x979302b6 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x9889e18c ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x991e106c ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x9ae1c16a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x9ba25f3f ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x9f17fbf7 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa168eb41 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa2e85894 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa429622c ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xa5666e40 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xa597a5c0 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa69bdede ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xaaea2c1d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xae73748c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xb06ea5f3 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xb0db0b8a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb2cfe308 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb30a5357 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb4058e6e ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xb8d22603 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xbb478379 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc25c09d4 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xc2f759e5 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xc38ffe42 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc61a8f23 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xc6b64cd4 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc6de7d8f rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc77f436e ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcf540425 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xd3a4339d ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd467f8fa ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd6d316d2 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xd7ad0a52 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd7ca498d ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd8af9b75 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xda0c8ddb ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xdc620a63 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdd2d974c ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xddb35daa ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xddba2e0f ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xdddd6a8d ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xe40b6e28 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xe54ac6f0 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe71d65af __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xef3cb607 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xf18bf598 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xf3ca341e ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xfa883b94 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac802154/mac802154 0x24db7450 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5f6584ad ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6c40a4f8 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7009835b ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x9462e2c6 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xab8fcab7 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xaeccb489 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xcb108c45 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x201e72aa ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e05dad5 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33af5097 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x391112ce ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x622ec872 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x632fc9d8 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x65040b18 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d8b2827 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7ae58078 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f8a214c ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f54d0e0 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94f2dc51 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xacb29db3 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb76fb1af unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc5aff819 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf6675d9a nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0xb70f2bc5 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xb78815d8 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xcba53453 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd31176ab nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0b673d8f xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1137bdc3 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x26b6d871 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x573a9148 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x65a66c79 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9a7dcbec xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xae20964e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbb855f0a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd7a02d24 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xf37208df xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0359d0c4 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0d8d75f6 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x162caf20 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x1c82f9e6 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x3076778e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x439bf650 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x57248f56 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x6c6a44f0 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x6c89c62d nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x807f27c7 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x8f28cb5e nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x908ddc5f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xa4fb7794 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xb07872d5 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xb3f3b391 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd0eff317 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xd1e3f49b nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xdd0aa959 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe257357c nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xeae24335 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xf217d962 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x00efc3a0 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x0c126c1e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x17104881 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1a3a7822 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1cf2c539 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x22cb2c75 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x2fa550a4 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x36dd64c7 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x3704f219 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x39cc289b nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x56facf92 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5f98861b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x624578af nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x69762571 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x6c0acf94 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7360d62a nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x80425dca nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x84b5914a nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x8b548e30 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x8fef5aa7 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x9e113a31 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9fa3097d nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xa542ffd9 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xab496f6c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xadfc7ba8 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb12d5f89 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd4f0b980 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd97dcafe nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdaa8b1a2 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nfc 0x11bb6d30 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x12a2a94b nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x13e00e50 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x27e48ecd nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x302c6528 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x479918e8 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x604c994e nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x61d2e52a nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x631eb6b3 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x66aad59b nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x6f23aa57 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x713bf9d7 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x7c8513f3 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x9c584266 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xa6097fbb nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc478fdc2 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xc4f943d4 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xc654b1f5 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xcdd5fa6a nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd29996a5 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xd3b0e6c9 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xe2ed9661 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xf19c28f2 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xf5a9d145 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf6f1c6da nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x0f522cbd nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8432a4ef nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc242f786 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe0295d33 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x4c7f9cad pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6d9922f4 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8ad083f7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa9cf21e9 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xc7d40c05 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xd0a76e84 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd45cba9c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe8e2e99a phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0725cb4b rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0b975d35 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x13db776c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x29dd4379 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a51b11f key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x42d33bdf rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b10fa0d rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x604b0b96 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f612ffc rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8636a81d rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x874c4c6d rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9570c064 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaba0ab92 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb7912454 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbb392bfe rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf169f6a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5621734 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf98141d6 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/sctp/sctp 0xedd6ecea sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x89a3ba23 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8ddcb4b5 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdfdb9910 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x361e5865 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdc35280d xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe27c80f8 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfe977fc7 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0xa5f903d9 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xd60fa9df tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xed9d40b1 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xfd961b38 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x22613351 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x004843b0 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x007be5c3 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x0253d4b1 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x03c85f61 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x067615ef cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x0f80c9be cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x123579de cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x13a41b94 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19f9f5dc cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1b0b73f5 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d94e6cc freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x1ee1ebcb wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x1f47d3d2 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x27a8f40c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x293d36cf cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2b7f0d8b cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x2b86ac45 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2ddd4a2a cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2e33aeda cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x35009580 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x37ff63a2 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x39c5c11a cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3c1cfe52 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3f24dcb1 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3f79a863 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4054ad78 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x4079d18a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4526bb02 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x469c67dc cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x47c58882 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4931c2a6 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x4b48d599 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x4e054231 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x4f3cc140 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x5049c19e cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x513d5146 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5852a28a cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5877693f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x594057a4 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x599d7fbb cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x59c3d592 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x5b34b78f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5fb424aa wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x603e21a8 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6064a72e ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6afa9063 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6db46891 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x707dd011 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x76df3ff1 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x782fbe47 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x793b2c58 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7e48f4e0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f29856a cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x7fcb96f8 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8de17e4c cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x8e3ba349 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x91c917bd cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x92f73313 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x98bb0c08 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x99d6a611 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9adb59dd regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9e8b29a4 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x9f12b6f6 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xa048445b cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa10e852a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa1d952b9 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa205244d cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xa6fed879 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xaec08604 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb81f2d9f ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xba52e9b5 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xbd3a5f4f cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc295a7ef wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xc397784b cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xc673c907 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xc9329076 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xd0608079 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd10c4b70 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd3d73f96 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd4294c68 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd466df77 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd8a45d9a ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xda542cb7 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc05b967 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xde2898be ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe0669dfb cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe4ecf224 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xed172e9c get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf140fe0c cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf22810e5 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf528adc0 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5d89050 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xf78f8c92 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xf846ed5b __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf8beae02 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf8f81eef cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfe4b106e cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xff144dc5 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/lib80211 0x0c4f2145 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x5f898398 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x63f1b1cd lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x90ac8f3e lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x98a27155 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xc88ac0c0 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0xf5380fdc ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x237979ed snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x475f8fde snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x709b396c snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x93ea66f6 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9fca5880 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xddcf2191 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb849478b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02218aee snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x0717d51e snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x0bea7e89 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x11c0752b snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x11c48a63 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x1551c72a snd_device_free +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1a1d5fd0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x1dfea338 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x247d4c33 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x36305ade snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x37d1b208 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3f636fdc snd_card_register +EXPORT_SYMBOL sound/core/snd 0x42325c4c snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x458fbecb snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x459d765c snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4635dee5 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4819fe28 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4d59ff93 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x4fa74d9e snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x51bb3c80 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x57930933 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x5d337398 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x5dc4997a snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x6092b0cd snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x6238e875 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x63f421e9 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x64a866f6 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x726b03e3 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x7c6b7654 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x7d2d0ad4 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x86f768a9 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x87a33b8d snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x88d23fcf snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x966a46d2 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa1239bed snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xa3918dc7 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xa6a4cec8 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xa7afa725 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xacdd69c7 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xce40cb20 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xd38f2a64 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xd3d35a27 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xd8cf5825 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xe93aad8c snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xebfd9234 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xefcfc12a snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf8bd0c9c snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xf8dc8955 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xb885fc64 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x01a89a9e snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03736b75 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x076bd4f8 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x079369f3 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x11538c0a snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x129e407c _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1fdddf2c snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x2fc8011d snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x309fa61d snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x428d4754 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x44c145e3 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x47709ec7 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x4bd84262 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4f59b31f snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x556e6012 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x571c54b1 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x5d3c9bbf snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6bca9799 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x722c2685 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x75b3b7dc snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x78b2d4ef snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x794e1d8a snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x85092670 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x8cf8cf38 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x90b8e045 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x958dddc7 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x9771d1ff snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x99bdf5e3 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x99ce285a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xa0a5455a snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa40e4a8d snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa5e0a1f5 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb1533160 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb29567ba snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xb38b94ce snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xb4b1fe3f snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb52ef90b snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba15966b snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xbb45522e snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd9f8b819 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe08c5031 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe77ee921 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xedf1944a snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xf3287d7a snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xf7123cc1 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf8e60c0a snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xfb0d721a snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xfbea7c59 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xfc4e0bbe snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2eaaacb8 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x31530ac8 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3cd75034 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x40684413 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x42f6f9d8 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x440a8365 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x54b88480 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x569f4cdf snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x58f5d54d snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6beb65b3 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x71bacd06 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x73a6fbb3 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c877ed0 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7cbc2860 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x82c6f1a5 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9e9f9bd6 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb79c8639 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcfd2e0c6 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd211e1d5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf47713b4 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xfc8686a3 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x32340f1a snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x45785ff8 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x58109d0b snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x592e3e14 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x6fb75ef0 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x861d3421 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xa1fd8ca2 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xa6a675c3 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xa8c9f2cf snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xb65ac343 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xcdf6b3be snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xd75f2f63 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xda35840a snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xf0e32452 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xffc55059 snd_timer_global_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xe4a1d0f0 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0b3ae6cb snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x47a2f1ac snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7268dbca snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9aa13269 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb3c6e567 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb737dc9e snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd1ae1d15 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd4374621 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xef860a5f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0553d475 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5fdc12a1 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x64d4e267 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x92bd6ba0 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9520d5c1 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa33c4995 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa441e663 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc9e12e04 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfed86a67 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01fbfe5b amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14172e8d cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x254ba6bd cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x262fdca4 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a2a594c amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f04e601 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31609189 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33ff7892 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54a67a2b avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56e31704 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6109fbfe amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6278ba3e amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x672a11e7 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e21216c amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7579ae09 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cf94d19 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x858adc41 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92c6f3b4 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x951d5b64 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2168c20 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaba433e2 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb0879e2 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd48189ec fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd87a508c snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe45912ca iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe665b53c cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe90f0d8b cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3233cb7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3acb739 fw_iso_resources_free +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x26d9e74f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x403492e7 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2d04436d snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6c4e714e snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x724c2f31 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x75a5c653 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb5cccbeb snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd1d8a6b6 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdf5d7f90 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec4bb485 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4c8b83cd snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x68397211 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x84b54d3d snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa6e2a835 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9f33b5ee snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc97515b3 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x25f7cce2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x47ac2831 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6bfb0791 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xaa6ca7fa snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb3936c2f snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc39e20cc snd_i2c_sendbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1d99d42b snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x56f134e0 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x87c644dc snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8a0f61fa snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa04d2a77 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb057f24d snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc7ea3e1b snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdd073b75 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe2c0d0e8 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xee56a4a1 snd_sbmixer_new +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05f74ca6 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11d6bd29 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2273e15a snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3559ad8d snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e952adc snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4abb137d snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x88c4ff29 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x994db556 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbaa99dec snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbb1077f2 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc8c6faa2 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd805eaa7 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe114275d snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf3c790f6 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf6a8da83 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa2243dd snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcee30b3 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3af6b8fd snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x664f6e96 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaf7e0fb9 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x038e51bc oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c7b6a66 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0fc19d3e oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e1d6b75 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b396864 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b76c88f oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60fdd49b oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x65d55618 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x675f49aa oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70f76318 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70f8f915 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8157608f oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8191209d oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x86bfac04 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c1fb30f oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe1401894 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee0b1693 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb4baea6 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff0f099f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff2ee23b oxygen_write_uart +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x0f7dbc3d adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x50de6451 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x39efe0b7 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8491900c pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xafb40893 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xeb7039fb tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3a432478 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4097c7ca aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4a945613 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x497e0841 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6dad9d3e aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x11ce1a19 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9155acef wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb2909f6d wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/snd-soc-core 0x50e911e5 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0581c56b snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x060aab16 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b627d22 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ed39505 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11b0dd8e snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1eace5d4 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20ff68c9 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25553cf9 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2565b5f9 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28efeead sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f5b6498 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34ae31ba snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b56fa06 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ca18e66 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e45180a snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42a6e451 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43fe483c snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x499be6c1 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51038f5c sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x541ed8ab snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5566c242 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x556a9f61 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61d5454b snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a29e812 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d851691 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f510c90 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x81961a1c sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83501f6c sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8662f184 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b507bbc snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bf14280 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93f665bc snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9998e6e2 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b323716 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3bead53 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3d7f9a6 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7a18241 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc08782b4 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc257b3b7 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc64d3e27 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc79e2d5c snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc941bfd5 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcad436a0 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xceaa3614 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf64bf41 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd28d1a2e snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfc20c75 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe213a7e8 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3ccdb95 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3dc93eb sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe91dbd50 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xefd0bdfc sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0963066 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3a96062 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4b52332 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf78aff46 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc99deb5 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff115c0b snd_sof_device_remove +EXPORT_SYMBOL sound/soundcore 0x377d5bee register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x495bb182 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7298785a sound_class +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf2a2df8d register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xf6f5832b register_sound_special +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc98da19b __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x001445db __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect +EXPORT_SYMBOL vmlinux 0x004b5a25 param_get_ushort +EXPORT_SYMBOL vmlinux 0x00522379 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x00548fb7 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x0069f357 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x007da3e5 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x007eb6fb tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x008015f6 skb_checksum +EXPORT_SYMBOL vmlinux 0x0087a47f pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x0091e2bd vfs_create_mount +EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x009e2f64 md_reload_sb +EXPORT_SYMBOL vmlinux 0x00a0a08f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c66b38 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x00cc88b1 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00da55a5 of_get_next_child +EXPORT_SYMBOL vmlinux 0x00e5bc4e input_reset_device +EXPORT_SYMBOL vmlinux 0x00e8527f xfrm_register_type +EXPORT_SYMBOL vmlinux 0x00f04f14 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x00f3c698 kernel_accept +EXPORT_SYMBOL vmlinux 0x00fa3653 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01603882 fs_bio_set +EXPORT_SYMBOL vmlinux 0x0161910d __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x016c0780 iget_failed +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017809fe __ip_dev_find +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x0181ebe8 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01895db6 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01aa0424 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x01b50b2d generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01bf9af6 generic_writepages +EXPORT_SYMBOL vmlinux 0x01cccdb2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x01d0c089 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x01d378ef pps_unregister_source +EXPORT_SYMBOL vmlinux 0x01e1911c xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt +EXPORT_SYMBOL vmlinux 0x0208ace1 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021d3357 dst_release +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024e21fc unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep +EXPORT_SYMBOL vmlinux 0x02618e63 giveup_altivec +EXPORT_SYMBOL vmlinux 0x026ba36c dquot_free_inode +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02853325 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x0289014e sg_miter_next +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029c606a kernel_sendpage +EXPORT_SYMBOL vmlinux 0x029fcfb3 abort_creds +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a85bdf __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x02abff5b tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x02b0342a netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x02b69de4 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match +EXPORT_SYMBOL vmlinux 0x02d59bb4 register_filesystem +EXPORT_SYMBOL vmlinux 0x02d8bf3b sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e0b986 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x02e6d963 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x02f92e2c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x03109ad6 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x0316af84 put_fs_context +EXPORT_SYMBOL vmlinux 0x0318f4bb neigh_seq_next +EXPORT_SYMBOL vmlinux 0x031d4025 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x0324bc7b kobject_del +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0339d6ed migrate_page +EXPORT_SYMBOL vmlinux 0x0341a5e0 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x03469433 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x03557e3e configfs_depend_item +EXPORT_SYMBOL vmlinux 0x0356ed5c scsi_remove_target +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0374ba0e tty_register_driver +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0383460b dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039aef76 lru_cache_add +EXPORT_SYMBOL vmlinux 0x03be5db6 d_add +EXPORT_SYMBOL vmlinux 0x03c7a30f sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x03cd94cd __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x03d089b5 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x03dc9bbd filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0400ef6a key_link +EXPORT_SYMBOL vmlinux 0x0416a534 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x041d6462 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x0422fc21 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x042a34ea iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044dbcc2 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x0456a780 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x047af9aa dquot_drop +EXPORT_SYMBOL vmlinux 0x047fa494 unload_nls +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x048a1883 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x04cbcaf2 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x04d63283 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04db9cb0 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x04e1b263 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x0512a47e load_nls +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0535f121 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054669e6 iput +EXPORT_SYMBOL vmlinux 0x0554c2fb iget_locked +EXPORT_SYMBOL vmlinux 0x05578347 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x05671dfe vfs_unlink +EXPORT_SYMBOL vmlinux 0x056a007e pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x0573a650 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x0579d773 unregister_netdev +EXPORT_SYMBOL vmlinux 0x058c8cee param_get_uint +EXPORT_SYMBOL vmlinux 0x05a0ac55 validate_sp +EXPORT_SYMBOL vmlinux 0x05a29efa kset_unregister +EXPORT_SYMBOL vmlinux 0x05b14459 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x05d891e6 of_node_get +EXPORT_SYMBOL vmlinux 0x05f77e63 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x05f7ce8c pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x05f80508 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x05fb7492 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x06055471 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x06093a08 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062c4d0a netpoll_setup +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06350556 vm_mmap +EXPORT_SYMBOL vmlinux 0x0636b406 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x063d6760 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x063e18d6 md_handle_request +EXPORT_SYMBOL vmlinux 0x063fbb83 ns_capable +EXPORT_SYMBOL vmlinux 0x06441ac0 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x0655bef1 submit_bh +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066acf13 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x066e519c flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x0677037f filemap_fault +EXPORT_SYMBOL vmlinux 0x068243b8 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x069dcf22 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x06a3c4d0 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b2b376 param_set_ushort +EXPORT_SYMBOL vmlinux 0x06b99423 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x06c8f2de slhc_compress +EXPORT_SYMBOL vmlinux 0x06c9ca35 block_commit_write +EXPORT_SYMBOL vmlinux 0x06da3ff2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x06ed3022 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x0717234b make_bad_inode +EXPORT_SYMBOL vmlinux 0x0723c1b6 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x0726c239 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07331564 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x074c1c13 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0756168a gro_cells_receive +EXPORT_SYMBOL vmlinux 0x076a47a9 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x07773245 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x07824aaa set_posix_acl +EXPORT_SYMBOL vmlinux 0x07837a61 simple_lookup +EXPORT_SYMBOL vmlinux 0x07914039 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x07a3af8f of_root +EXPORT_SYMBOL vmlinux 0x07a564fc __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a8b0fc dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x07c51ab8 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x07cb784c xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07f1eb15 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0802b9c3 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08159994 misc_deregister +EXPORT_SYMBOL vmlinux 0x08196d94 mmc_free_host +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082db18f tty_devnum +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08511be2 vme_slot_num +EXPORT_SYMBOL vmlinux 0x08635d3e ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x08758ab6 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0875c139 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08961459 __register_nls +EXPORT_SYMBOL vmlinux 0x08cd8499 phy_stop +EXPORT_SYMBOL vmlinux 0x08d30636 dev_driver_string +EXPORT_SYMBOL vmlinux 0x08dbcd48 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x08dd1ec0 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x08e832be input_allocate_device +EXPORT_SYMBOL vmlinux 0x08f0088e skb_queue_purge +EXPORT_SYMBOL vmlinux 0x08fef516 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x09418b00 inet_select_addr +EXPORT_SYMBOL vmlinux 0x0941fbad udp6_set_csum +EXPORT_SYMBOL vmlinux 0x09466522 ata_link_printk +EXPORT_SYMBOL vmlinux 0x09652ca3 neigh_destroy +EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock +EXPORT_SYMBOL vmlinux 0x096f33bd phy_attach_direct +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b16b9 kern_unmount +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09910952 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099b83fd skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x099be001 seq_vprintf +EXPORT_SYMBOL vmlinux 0x09a3078a tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x09aade3a km_state_notify +EXPORT_SYMBOL vmlinux 0x09c271fb generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e1d910 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x09eab1b2 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x09fd85b4 path_put +EXPORT_SYMBOL vmlinux 0x0a009f6d dmam_pool_create +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a2688d4 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append +EXPORT_SYMBOL vmlinux 0x0a4159a9 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x0a51f1ea end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7e08c5 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x0a8094cb fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x0a8e7626 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x0a9b0cdc try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa33d33 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x0aa613ae write_inode_now +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab1d956 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x0ab4a44a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0ac16fd8 pci_enable_device +EXPORT_SYMBOL vmlinux 0x0ac285da napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x0acf1fbe register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae58523 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x0ae86300 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x0aeb7967 simple_write_begin +EXPORT_SYMBOL vmlinux 0x0af24ec8 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x0b013822 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x0b017de5 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0b07ac16 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x0b17bcdd __check_sticky +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1dd666 elevator_alloc +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b39f2dc skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x0b453c19 single_release +EXPORT_SYMBOL vmlinux 0x0b4bf18f sk_ns_capable +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7f5aa7 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x0b877f7c dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0b8da107 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x0b9275d2 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x0ba00e34 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd08ecb xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0bdb9561 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x0bec7bd4 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c24932b tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c27102b dev_deactivate +EXPORT_SYMBOL vmlinux 0x0c5792a9 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x0c67d970 __skb_pad +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c84865d proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x0c8b43a8 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x0c8e521b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x0c9a9579 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0ce2019e dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x0ceac654 param_ops_bool +EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc +EXPORT_SYMBOL vmlinux 0x0cfa53c7 file_remove_privs +EXPORT_SYMBOL vmlinux 0x0d00d438 rproc_alloc +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d08c61d ping_prot +EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d0d14ea tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0d27810d netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d4193cc vme_register_bridge +EXPORT_SYMBOL vmlinux 0x0d48599d free_buffer_head +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d553913 console_stop +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0da8c7d0 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x0dafec95 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x0ddae985 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x0de3571f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x0dee4c87 mpage_writepages +EXPORT_SYMBOL vmlinux 0x0e05820c sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x0e102855 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4b7a8c phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x0e678ecc ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e752c71 stream_open +EXPORT_SYMBOL vmlinux 0x0e89bca5 vme_lm_request +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb52950 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eee894f pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x0ef20f30 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x0f06fa3f km_policy_expired +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f3057b0 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x0f49985c rproc_put +EXPORT_SYMBOL vmlinux 0x0f4e079d inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x0f551f5b agp_copy_info +EXPORT_SYMBOL vmlinux 0x0f57482e kill_block_super +EXPORT_SYMBOL vmlinux 0x0f5a70a7 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x0f5f169c mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x0f6633a2 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x0f6c4d64 nf_log_unset +EXPORT_SYMBOL vmlinux 0x0f70a819 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x0f7a0a90 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x0f9f762a pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x0fa30a13 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb9194b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x0fb9c890 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x0fba2cfa mr_table_alloc +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe269cf bio_kmalloc +EXPORT_SYMBOL vmlinux 0x0ff2ad79 release_sock +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100b11c5 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x100e758e jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10543793 unregister_key_type +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x106765f5 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10737307 d_make_root +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10a4f7af kernel_write +EXPORT_SYMBOL vmlinux 0x10ab129d proto_unregister +EXPORT_SYMBOL vmlinux 0x10af5580 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10caa18b pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x10cd18dc tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x10d35868 iterate_fd +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10dc03cc generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x111d3fd2 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated +EXPORT_SYMBOL vmlinux 0x11320aba dcache_readdir +EXPORT_SYMBOL vmlinux 0x11326dcf i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x1135e7cd blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x115edc19 seq_printf +EXPORT_SYMBOL vmlinux 0x1162c711 skb_copy_header +EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11a7d017 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x11cb706c serio_reconnect +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e2f4fa proc_symlink +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120770da send_sig_info +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x1220ce33 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x124aa518 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x125dfd9c file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1269a584 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c1ca47 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x12c61ad1 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x12c65af2 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x12c65c0e ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d5434a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x1306d5df km_policy_notify +EXPORT_SYMBOL vmlinux 0x130fa3f4 cdev_del +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131cdc1e xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x131ce7d5 d_exact_alias +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1338f4e8 page_symlink +EXPORT_SYMBOL vmlinux 0x133b973d copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135857b6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x136914ff phy_print_status +EXPORT_SYMBOL vmlinux 0x1377a10f inet6_getname +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a4b02c skb_clone +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d3989a file_open_root +EXPORT_SYMBOL vmlinux 0x13d580cf inode_nohighmem +EXPORT_SYMBOL vmlinux 0x13d64375 inet_put_port +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13d9e828 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x13da2a3f dev_alloc_name +EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x14005124 dump_page +EXPORT_SYMBOL vmlinux 0x1418be6f __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x1418d192 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x141d291a udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x14223cdb qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x142a236c ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x142bb56f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x14336615 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x143bcc6c kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x14474945 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x1461be6a ether_setup +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x146345ff cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x148fbed2 key_revoke +EXPORT_SYMBOL vmlinux 0x1494780f kill_litter_super +EXPORT_SYMBOL vmlinux 0x149a6f53 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x14b725a7 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x14ba1d5c jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d4612a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x14d59a30 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x14dc9231 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x14e3414d config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x1508cae7 elv_rb_add +EXPORT_SYMBOL vmlinux 0x15181b91 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152db6d3 iterate_dir +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1552e8f7 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x1577b08a input_set_capability +EXPORT_SYMBOL vmlinux 0x15a65df1 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15ed650f locks_free_lock +EXPORT_SYMBOL vmlinux 0x15f0e8cd mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x16012fc0 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162dafef ptp_clock_event +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163ac44f input_free_device +EXPORT_SYMBOL vmlinux 0x16633404 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x166a1b7c locks_delete_block +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168054c6 blk_get_queue +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a53efc pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x16a798e2 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x16a85835 param_set_hexint +EXPORT_SYMBOL vmlinux 0x16bd85cb framebuffer_release +EXPORT_SYMBOL vmlinux 0x16da5f0d pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170158fa to_nd_btt +EXPORT_SYMBOL vmlinux 0x170aa86c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x172cf379 input_match_device_id +EXPORT_SYMBOL vmlinux 0x1733496c i2c_clients_command +EXPORT_SYMBOL vmlinux 0x173a11f5 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x1751cbd7 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x17608394 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1776a9b0 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x178c82b2 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x17b09d5f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x17bcc981 security_sock_graft +EXPORT_SYMBOL vmlinux 0x17bec3f3 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x17c09955 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x17e1cfa1 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x17ed0904 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem +EXPORT_SYMBOL vmlinux 0x1829abcf sg_miter_start +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x183b80bd of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x1849e407 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x18583fa9 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x1862238d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x1866f2b5 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x186d5423 tcp_connect +EXPORT_SYMBOL vmlinux 0x187286e6 netdev_printk +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18ae0988 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x18b91591 cont_write_begin +EXPORT_SYMBOL vmlinux 0x18c6fa7e of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x18d1ddd0 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18eb1d6b __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x18f9369c pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x18fb9f5c dma_sync_wait +EXPORT_SYMBOL vmlinux 0x192761d8 vif_device_init +EXPORT_SYMBOL vmlinux 0x193118ae refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x194eee88 vfs_fsync +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x195fab37 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x19894dfd mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x199bd0eb xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x199e1c30 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19aa35ba md_finish_reshape +EXPORT_SYMBOL vmlinux 0x19b16b34 up_read +EXPORT_SYMBOL vmlinux 0x19b8a701 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark +EXPORT_SYMBOL vmlinux 0x19d93fb9 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x19f8398c crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x1a198e7b uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a23de35 request_firmware +EXPORT_SYMBOL vmlinux 0x1a2fdddd __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x1a3ea131 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x1a583a70 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x1a610f18 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x1a70b051 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable +EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1aaeec3f ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x1abfe1cb devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x1ac1c034 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x1ac48b27 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac8c753 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x1aed3001 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1af6a6f5 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0d1bcb tcp_seq_next +EXPORT_SYMBOL vmlinux 0x1b159c2b dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1b26dc11 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x1b3775ca is_bad_inode +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b737ab1 netdev_change_features +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b91a4a0 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x1b98f923 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1ba67cfc md_update_sb +EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init +EXPORT_SYMBOL vmlinux 0x1bac98bd scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bc3dbaf blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x1bd454e7 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bf8dbef __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x1bf8ea41 dst_alloc +EXPORT_SYMBOL vmlinux 0x1c0372f6 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x1c09de84 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c4f23b5 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c609913 genphy_read_status +EXPORT_SYMBOL vmlinux 0x1c688658 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x1c7b95c6 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x1c7c4e20 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c84a979 ip_frag_init +EXPORT_SYMBOL vmlinux 0x1c9e0017 mmc_command_done +EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb09418 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cddd19a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs +EXPORT_SYMBOL vmlinux 0x1cea804c __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x1cf5940a security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x1cf5ee13 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0de34a __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d2d7a9a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x1d456b7c __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1d718f71 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1d720b20 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x1d780e2a mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x1d86bef3 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x1d958791 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x1d9cbf74 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x1d9e4506 pci_map_rom +EXPORT_SYMBOL vmlinux 0x1da89ecb i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x1dbdaa77 is_nd_btt +EXPORT_SYMBOL vmlinux 0x1dc18f4e inet_register_protosw +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de9b671 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1df30d10 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0c2748 key_invalidate +EXPORT_SYMBOL vmlinux 0x1e13dbe7 mount_nodev +EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e2d624b inet6_protos +EXPORT_SYMBOL vmlinux 0x1e49e5f2 fget_raw +EXPORT_SYMBOL vmlinux 0x1e529f99 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1e5b4ab6 account_page_redirty +EXPORT_SYMBOL vmlinux 0x1e5df64b ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1e5f073c dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6c9ec1 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7487b5 fc_mount +EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue +EXPORT_SYMBOL vmlinux 0x1e8c1fe4 clk_add_alias +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb5bd07 address_space_init_once +EXPORT_SYMBOL vmlinux 0x1ed0ff08 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x1ed323c1 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x1ed51a51 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1efee5af start_tty +EXPORT_SYMBOL vmlinux 0x1f0f9605 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x1f1b55c7 inc_nlink +EXPORT_SYMBOL vmlinux 0x1f20e037 pci_iomap +EXPORT_SYMBOL vmlinux 0x1f2889c7 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x1f3964c4 param_set_ulong +EXPORT_SYMBOL vmlinux 0x1f3dab7e page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x1f588928 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x1f5b8903 inet_getname +EXPORT_SYMBOL vmlinux 0x1f612a99 skb_trim +EXPORT_SYMBOL vmlinux 0x1f6636ae of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x1f740438 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x1f763333 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1f849b74 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x1f9dd23c phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x1fbcf0f5 udp_seq_next +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbfd349 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x1fc39db4 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fda343a devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2008d5df mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x203b1533 bdevname +EXPORT_SYMBOL vmlinux 0x20438887 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x2044f1f6 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x206e055f skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2070be9d jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x207c1de4 vfs_statfs +EXPORT_SYMBOL vmlinux 0x2080d595 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x208e2b1d phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bc7c8a submit_bio +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e19ae1 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x20f928e8 request_key_rcu +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2101ec2b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x2122eded netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213cfcd8 dup_iter +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x214aafdd i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x21540479 set_user_nice +EXPORT_SYMBOL vmlinux 0x21542625 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x215a8ec8 slhc_init +EXPORT_SYMBOL vmlinux 0x216072ef neigh_app_ns +EXPORT_SYMBOL vmlinux 0x216315a5 dst_init +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a9ca31 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x21b60242 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d7a6ea flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x21e05488 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224c1dc5 drop_super +EXPORT_SYMBOL vmlinux 0x225c5dd7 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2261b427 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x2261e560 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x2269f3af dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x228e50f5 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x22ac2a15 poll_initwait +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b38f22 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x22b4073b skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x22dafa04 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x22ed941d dev_set_threaded +EXPORT_SYMBOL vmlinux 0x22f43abe twl6040_power +EXPORT_SYMBOL vmlinux 0x23052365 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x231fefab fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x232d7eb9 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x233cab92 cpumask_next +EXPORT_SYMBOL vmlinux 0x23445c0d phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x23484789 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23856030 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2385eb69 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23a4d1d3 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create +EXPORT_SYMBOL vmlinux 0x23b79f85 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bfd259 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x23c1f482 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x23c6bdfd skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x23cfd07b edac_mc_find +EXPORT_SYMBOL vmlinux 0x23d051d9 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x23d5d47b set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dde4eb eth_gro_complete +EXPORT_SYMBOL vmlinux 0x23e8ef7f fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23f235a6 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x23f4cd2d simple_setattr +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2403924b netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x2405141b ihold +EXPORT_SYMBOL vmlinux 0x241e0c7f block_invalidatepage +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242c8581 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x243bcda7 devm_clk_put +EXPORT_SYMBOL vmlinux 0x24419f3f of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2443a6e5 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x24459bf0 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x244a32b5 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x244b22a0 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x2451c5d3 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2461c32f xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x246b3259 skb_ext_add +EXPORT_SYMBOL vmlinux 0x246e043b flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x247eb323 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248bae1e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x24b38438 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24db4aa8 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x24e16fd8 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x24f5d28e sock_i_uid +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock +EXPORT_SYMBOL vmlinux 0x2512a946 from_kgid +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x254914c2 finish_open +EXPORT_SYMBOL vmlinux 0x254bcfd1 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x254c9287 ioremap +EXPORT_SYMBOL vmlinux 0x2553a24d blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2566c095 dentry_open +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259b744f ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x25e24291 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f17803 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260aeafe dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x260d3331 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x2663b654 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2692962f __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x26948f1e netlink_unicast +EXPORT_SYMBOL vmlinux 0x26ba27e7 unregister_console +EXPORT_SYMBOL vmlinux 0x26d7dd07 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x26f922a1 sk_free +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27107118 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x27137a90 scsi_host_put +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d22e4 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x27567c3a __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x275a9384 key_put +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276525a8 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x2765a455 inet_frags_init +EXPORT_SYMBOL vmlinux 0x276826c0 param_set_byte +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277b149b ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x277ecee1 down_write +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x2794e0ec blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x279538a9 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x279f2aa2 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x27b20695 agp_backend_release +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bebdaa unregister_binfmt +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27cee88f register_console +EXPORT_SYMBOL vmlinux 0x2806b388 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283581bd dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x2857ba1b skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x286332d5 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2893789e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x28a82fd7 get_acl +EXPORT_SYMBOL vmlinux 0x28ab9c54 vfs_get_link +EXPORT_SYMBOL vmlinux 0x28ba6868 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x28c55760 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x28c6fde6 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x29218c50 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2977289a blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x298888c5 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x29990024 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x29aa7e4d udp_read_sock +EXPORT_SYMBOL vmlinux 0x29abc8d9 dm_get_device +EXPORT_SYMBOL vmlinux 0x29b113f9 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x29ccc9b2 seq_open +EXPORT_SYMBOL vmlinux 0x29d034f6 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29fe7703 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x2a0073fc param_set_short +EXPORT_SYMBOL vmlinux 0x2a023a60 current_in_userns +EXPORT_SYMBOL vmlinux 0x2a117bc9 dump_emit +EXPORT_SYMBOL vmlinux 0x2a1ba3fa phy_init_hw +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a33e168 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2a4f6fa3 audit_log +EXPORT_SYMBOL vmlinux 0x2a51ece3 pci_request_region +EXPORT_SYMBOL vmlinux 0x2a7b8346 netdev_alert +EXPORT_SYMBOL vmlinux 0x2a7d34d5 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x2a831a7d dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x2a8660b5 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a8e32b1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aaf2cbb udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x2ac27f46 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x2ac324c1 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x2ace00aa ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x2ad29e34 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x2ae51e67 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x2aebabfe dev_change_carrier +EXPORT_SYMBOL vmlinux 0x2af03df4 posix_lock_file +EXPORT_SYMBOL vmlinux 0x2b2db430 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x2b30e143 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x2b3fa6c0 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x2b5b3395 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2b5ebffa jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba00d16 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2bbcddf0 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x2bbf267c vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2bc5704c __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x2bd7ef3b phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2be7b9df phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x2bf0315d fb_set_suspend +EXPORT_SYMBOL vmlinux 0x2bf20ee2 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x2c1ca1d2 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2746e7 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x2c2e305d vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x2c358cbc xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x2c4fc3e9 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x2c52ac3a devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x2c5c5f12 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x2c607830 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x2ca9af06 dma_set_mask +EXPORT_SYMBOL vmlinux 0x2cb0b32c tty_port_put +EXPORT_SYMBOL vmlinux 0x2cb42fc6 vfs_link +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdc190f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x2cdc396b scsi_target_resume +EXPORT_SYMBOL vmlinux 0x2cddf25a genl_register_family +EXPORT_SYMBOL vmlinux 0x2cf806be component_match_add_release +EXPORT_SYMBOL vmlinux 0x2d0c3b37 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d36537f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x2d38efbb cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4456db sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d7846b6 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x2d913703 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da0717e twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x2db01822 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x2db59b53 xfrm_input +EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x2dc7f70c __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id +EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x2e0e5d3a pid_task +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2b86ad i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x2e372fef ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x2e45a860 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e6f0ebe flush_signals +EXPORT_SYMBOL vmlinux 0x2e831e22 pps_event +EXPORT_SYMBOL vmlinux 0x2e850883 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2eb77368 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ec7f952 cdev_init +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eeefca1 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x2ef69a78 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x2efaf899 vme_irq_request +EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2f02c2cf flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f083257 nf_log_trace +EXPORT_SYMBOL vmlinux 0x2f0ba5a9 ata_port_printk +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f4171bb tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2f41e487 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x2f4c5130 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7f6f30 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 +EXPORT_SYMBOL vmlinux 0x2f8ea9ed iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x2f91971c scsi_partsize +EXPORT_SYMBOL vmlinux 0x2fa3cdd0 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x2fa68e10 generic_write_checks +EXPORT_SYMBOL vmlinux 0x2faa7b94 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb3b978 blkdev_put +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbb98aa sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x2fc22cef skb_unlink +EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase +EXPORT_SYMBOL vmlinux 0x2fcb359b mmc_release_host +EXPORT_SYMBOL vmlinux 0x2fd5270f tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fea9def kernel_param_lock +EXPORT_SYMBOL vmlinux 0x2fefeab6 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x300327f2 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x3013324f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x301a7c1b fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x3024ae9a __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x302b7662 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x302f230f seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x304eddc6 bio_free_pages +EXPORT_SYMBOL vmlinux 0x304ef108 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x305cf10a security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x305dea01 vmap +EXPORT_SYMBOL vmlinux 0x3065dcb2 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x3077e90c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309cdd38 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b2b8f4 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30ba25a5 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x30cb70c6 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x30cbe333 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x30db596a inet_del_offload +EXPORT_SYMBOL vmlinux 0x30ecc0fb mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x30f3cd2e register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x31028fc0 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x312016af jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312e7f1a netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x3152a64e dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x31549915 netif_skb_features +EXPORT_SYMBOL vmlinux 0x3160b96c dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x3172a4a7 d_set_d_op +EXPORT_SYMBOL vmlinux 0x317e6870 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x31811078 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x3181d431 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x318bdf25 _dev_info +EXPORT_SYMBOL vmlinux 0x31ab1cf1 proc_set_user +EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x31d2b4f3 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x32032e7a blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x320adfd5 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 +EXPORT_SYMBOL vmlinux 0x321dcc70 of_node_put +EXPORT_SYMBOL vmlinux 0x321e3df1 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x321fd6eb netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x322f9293 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x3257c944 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x3264208b sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3288e157 rproc_del +EXPORT_SYMBOL vmlinux 0x32aafb90 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x32b92061 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x32bd6a74 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32f13e30 iptun_encaps +EXPORT_SYMBOL vmlinux 0x32fe1a65 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x33156b98 write_cache_pages +EXPORT_SYMBOL vmlinux 0x331a7fd6 inode_insert5 +EXPORT_SYMBOL vmlinux 0x336b9695 pci_request_regions +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3384fc0a _dev_warn +EXPORT_SYMBOL vmlinux 0x33b2b3a2 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bb77af sk_stream_error +EXPORT_SYMBOL vmlinux 0x33bcec35 devm_ioremap +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f197e6 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3403fe1a memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x341cc594 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x34222e89 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x343029d6 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x344793d5 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x34529fad inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x34538449 md_write_end +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x345da5e1 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x345eac2a create_empty_buffers +EXPORT_SYMBOL vmlinux 0x345fad28 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c24a9a path_is_under +EXPORT_SYMBOL vmlinux 0x34c3de09 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ccc56c agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x34d999bc get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x34de808b unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350a57dd __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351fdbba input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0x352bb201 xa_store +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354aa35b netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3563325b bio_split +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3567a310 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x357513ed vfs_rename +EXPORT_SYMBOL vmlinux 0x357ac865 inet_shutdown +EXPORT_SYMBOL vmlinux 0x358c18b5 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35cc5bc4 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x35dbf3d6 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x35f3e05d remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x3639c4ef skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x36455365 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365cead8 __scm_destroy +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x365f43bb scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3679cd49 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x3692b38f inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x36ad2a01 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x37014d91 bio_advance +EXPORT_SYMBOL vmlinux 0x3714f59a balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x373aa70d proc_create +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374ee0a8 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x37555b2a vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375fa97c security_inode_init_security +EXPORT_SYMBOL vmlinux 0x3769ddde register_framebuffer +EXPORT_SYMBOL vmlinux 0x376a6a3c mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x377037d1 pci_release_regions +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377c9ce9 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x37830bb7 sock_set_mark +EXPORT_SYMBOL vmlinux 0x379940f7 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x37a3ab6a param_ops_short +EXPORT_SYMBOL vmlinux 0x37aff482 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c83fc0 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x37eaf960 nd_device_register +EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x37fbf1a6 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x38026cb6 complete +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381c6e4d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x3838d0b0 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x3840f36b nd_device_unregister +EXPORT_SYMBOL vmlinux 0x38507665 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3869a934 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x386fe742 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388b98ac bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c3f3e6 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x38cd08e9 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x38de28cd revert_creds +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x38fd13df fput +EXPORT_SYMBOL vmlinux 0x392ae7a2 inet_accept +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x397203ee of_get_parent +EXPORT_SYMBOL vmlinux 0x3980dfba sk_mc_loop +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39aa099e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bbec00 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x39e9c951 follow_up +EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x39fafe7e blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a20097a sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a3df3df tty_port_open +EXPORT_SYMBOL vmlinux 0x3a496a90 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5f068e scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store +EXPORT_SYMBOL vmlinux 0x3a98814a gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x3aafdd9a consume_skb +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ab83978 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x3ac16d23 unregister_nls +EXPORT_SYMBOL vmlinux 0x3acadcc4 udp_prot +EXPORT_SYMBOL vmlinux 0x3ad4ad95 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3ae0c4f4 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x3b20d8bd eeh_dev_release +EXPORT_SYMBOL vmlinux 0x3b221e68 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b4bb50a bmap +EXPORT_SYMBOL vmlinux 0x3b56ec5d current_time +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b69aa3c pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b9f6329 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3ba0bee6 sock_release +EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x3be2ecd7 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bea834f flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x3bf9155d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x3c08ca7c eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1bceac register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3c22d7e4 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c329239 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x3c3e7d59 __block_write_begin +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c44db32 would_dump +EXPORT_SYMBOL vmlinux 0x3c661003 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3c7cda75 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x3c9ea999 vma_set_file +EXPORT_SYMBOL vmlinux 0x3cb6b3a3 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x3cc4ce54 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x3ccd20b4 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x3cdc4ba8 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf1322f no_llseek +EXPORT_SYMBOL vmlinux 0x3cf17efc handle_edge_irq +EXPORT_SYMBOL vmlinux 0x3d1a3906 try_to_release_page +EXPORT_SYMBOL vmlinux 0x3d23196d mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x3d3e94df fasync_helper +EXPORT_SYMBOL vmlinux 0x3d4c1b39 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d70030c scsi_register_interface +EXPORT_SYMBOL vmlinux 0x3d848475 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x3d990c99 skb_dump +EXPORT_SYMBOL vmlinux 0x3da56e89 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dace8b9 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db0e78a tcp_prot +EXPORT_SYMBOL vmlinux 0x3db3f073 km_query +EXPORT_SYMBOL vmlinux 0x3dba0268 cdev_device_del +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de977fa read_cache_pages +EXPORT_SYMBOL vmlinux 0x3debd7c3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x3decff32 kfree_skb +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e07a39f mmc_add_host +EXPORT_SYMBOL vmlinux 0x3e2ba00e serio_bus +EXPORT_SYMBOL vmlinux 0x3e358aff vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x3e39c3c3 eth_type_trans +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3f9f3b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x3e4d441d netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x3e56ae79 input_register_handler +EXPORT_SYMBOL vmlinux 0x3e632b42 vme_master_request +EXPORT_SYMBOL vmlinux 0x3e78c1cb clear_user_page +EXPORT_SYMBOL vmlinux 0x3e80e49e lease_get_mtime +EXPORT_SYMBOL vmlinux 0x3e8220e9 devm_memremap +EXPORT_SYMBOL vmlinux 0x3e94d528 finalize_exec +EXPORT_SYMBOL vmlinux 0x3e95b53d devm_memunmap +EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ee8be42 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f3066d6 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x3f307eb1 giveup_fpu +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f56122a rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x3f572e0a clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3f6bf68d filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x3f6f688c mmc_of_parse +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f9617e9 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x3f9bead0 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x3f9c0082 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x3f9ec667 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3fab1213 input_flush_device +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff607c8 ppc_md +EXPORT_SYMBOL vmlinux 0x400e00c9 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x4015ece8 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x40253361 dev_addr_del +EXPORT_SYMBOL vmlinux 0x405211db vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405d59f1 dquot_alloc +EXPORT_SYMBOL vmlinux 0x405f77ff pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x4062e7c8 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x40650709 sock_create_kern +EXPORT_SYMBOL vmlinux 0x406d05ee dma_find_channel +EXPORT_SYMBOL vmlinux 0x407d5a61 vio_find_node +EXPORT_SYMBOL vmlinux 0x408cd4f0 agp_bridge +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bc9089 dev_open +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cb3d84 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40e0d073 scsi_print_command +EXPORT_SYMBOL vmlinux 0x41036282 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x411574e5 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x411c9060 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413cde03 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x4140144e phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x4145a321 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41620e20 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a03516 blk_get_request +EXPORT_SYMBOL vmlinux 0x41a58ff2 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x41aeeadd skb_queue_tail +EXPORT_SYMBOL vmlinux 0x41b0fd7e console_start +EXPORT_SYMBOL vmlinux 0x4207bea8 alloc_pages +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42189ca1 security_path_unlink +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42316a6c vfs_symlink +EXPORT_SYMBOL vmlinux 0x42333c3a decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x4242f973 inet_frag_find +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x429fb524 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x42a7b96d gro_cells_init +EXPORT_SYMBOL vmlinux 0x42ab752e d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x42ae6f1c ps2_end_command +EXPORT_SYMBOL vmlinux 0x42c3ec2e inet_ioctl +EXPORT_SYMBOL vmlinux 0x42c4d7d5 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x42d1cb52 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x42de9dfd eth_header_cache +EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f811c5 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43638396 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437c508f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438b32ff xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x438eef33 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x43a3fb87 vga_put +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43ab82a4 __f_setown +EXPORT_SYMBOL vmlinux 0x43b782e4 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x43b92854 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x43c738a3 generic_perform_write +EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43de8199 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x43f3f2aa proc_set_size +EXPORT_SYMBOL vmlinux 0x43f725c5 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x4417dacd release_pages +EXPORT_SYMBOL vmlinux 0x442100eb neigh_table_clear +EXPORT_SYMBOL vmlinux 0x443db47a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4450e5cb dump_align +EXPORT_SYMBOL vmlinux 0x4457cf09 __put_user_ns +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x44788139 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x447da320 tty_do_resize +EXPORT_SYMBOL vmlinux 0x44867e8c pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44a9863d try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x44d39efb xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x44e376f8 mpage_readpage +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45008a30 kobject_add +EXPORT_SYMBOL vmlinux 0x45058946 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size +EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x45374396 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456e03f0 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457be674 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x459bf0cf icmp6_send +EXPORT_SYMBOL vmlinux 0x45a1fcfb vme_bus_num +EXPORT_SYMBOL vmlinux 0x45beb2c3 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x45de54a8 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x45e7f5ff inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x45e85489 phy_detach +EXPORT_SYMBOL vmlinux 0x45f895dc blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x46098ab4 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462c7669 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x464c500d i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x467cbebd security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468483e1 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a9afa8 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x46b2ce6a sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x46b648ec set_cached_acl +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c989dd nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x46c9e633 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x46cdd7e2 __frontswap_load +EXPORT_SYMBOL vmlinux 0x46ce62fa ip_frag_next +EXPORT_SYMBOL vmlinux 0x46ceb4c8 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x46d0ed7f tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x46ee3df2 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x470fc287 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x471de0fe of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x476a15b2 setattr_prepare +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477cbed8 fqdir_exit +EXPORT_SYMBOL vmlinux 0x478cb48f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x478e77a5 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x47a0aa6d vme_slave_request +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47a56a96 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x47b81468 sk_alloc +EXPORT_SYMBOL vmlinux 0x47be2c17 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x47bf8ea7 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c48af3 store_fp_state +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47e2b379 config_group_init +EXPORT_SYMBOL vmlinux 0x47ee18ed freezing_slow_path +EXPORT_SYMBOL vmlinux 0x48036fe7 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x481c770d ip_setsockopt +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482d1a6c vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48440059 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x484627d6 con_is_bound +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x484f7cba km_report +EXPORT_SYMBOL vmlinux 0x48528cd6 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b00c6e path_has_submounts +EXPORT_SYMBOL vmlinux 0x48b29847 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bce9ca generic_listxattr +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4938bbb3 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x493f9917 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x49412f77 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49797ce9 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a72c1d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x49b9e332 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x49e71174 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x49e9b7b2 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4a239cc8 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4a3a0f47 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x4a3fd572 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a489f50 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc +EXPORT_SYMBOL vmlinux 0x4a67e79b unix_detach_fds +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a908ab4 tty_write_room +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9b6806 sock_efree +EXPORT_SYMBOL vmlinux 0x4a9c0ae6 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x4a9f8d8f __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4abfbbc6 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b136b7b xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x4b2dadf7 serio_open +EXPORT_SYMBOL vmlinux 0x4b42e23a key_task_permission +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b603892 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x4b7524e0 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x4b75a3d6 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x4ba56252 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x4bda0489 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c070235 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x4c071e55 module_put +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5a4db6 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x4c65d69a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x4c67360e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x4c81a462 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x4c872b44 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x4c919910 of_chosen +EXPORT_SYMBOL vmlinux 0x4c947f30 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x4ca7b00a blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4caab5d5 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x4cb03e79 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x4cb89a60 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map +EXPORT_SYMBOL vmlinux 0x4ced6278 nobh_writepage +EXPORT_SYMBOL vmlinux 0x4d11d1dd tcp_seq_start +EXPORT_SYMBOL vmlinux 0x4d253762 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x4d331c15 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x4d384cbf pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x4d38bca5 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x4d43fba0 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d73722f cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x4d812bb0 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x4d8c1c05 skb_put +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL vmlinux 0x4d964828 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da0dcbc netdev_info +EXPORT_SYMBOL vmlinux 0x4db3d380 new_inode +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df681fd __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x4e0aa6be ram_aops +EXPORT_SYMBOL vmlinux 0x4e20732b napi_complete_done +EXPORT_SYMBOL vmlinux 0x4e228c72 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x4e2cdd5f __phy_resume +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e364795 dst_dev_put +EXPORT_SYMBOL vmlinux 0x4e3a9d19 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4e4f21b9 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e58d0ff __serio_register_driver +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed5ec9b netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x4ed72576 put_watch_queue +EXPORT_SYMBOL vmlinux 0x4ef2b6cd ptp_find_pin +EXPORT_SYMBOL vmlinux 0x4f03d7c5 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x4f1242ef file_ns_capable +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2cf495 dev_close +EXPORT_SYMBOL vmlinux 0x4f36e2c9 vme_irq_free +EXPORT_SYMBOL vmlinux 0x4f3a8009 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x4f5183e1 pin_user_pages +EXPORT_SYMBOL vmlinux 0x4f53573c genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x4f594420 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x4f7a83fd get_tree_single +EXPORT_SYMBOL vmlinux 0x4f96ccc3 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x4f998f39 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x4fa27c81 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x4fd3f36d generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4fdd6b91 param_get_int +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fdf1e6b flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x4fe382df write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4fe3fdda blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x4fea2d05 pci_get_class +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4ffc0a79 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x5001daf0 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x501575f9 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x501c39e3 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x503477ce get_tz_trend +EXPORT_SYMBOL vmlinux 0x504069b3 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x504f3ba2 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x5054c06f sk_dst_check +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5066614d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507533f6 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x509856d7 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b36a2f skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cede66 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d34905 scsi_device_put +EXPORT_SYMBOL vmlinux 0x50da3058 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x50e305c7 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x50ea79f1 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x50f331a1 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x50f4dcf6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5126720a register_quota_format +EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x512e3832 skb_find_text +EXPORT_SYMBOL vmlinux 0x515bcf4a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51b8e75c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x51deb1d2 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x51eccbc9 param_ops_long +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fac4be PDE_DATA +EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x52207646 has_capability +EXPORT_SYMBOL vmlinux 0x52212608 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x522d8606 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5230e4f1 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x525888dc textsearch_register +EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a6b005 dquot_resume +EXPORT_SYMBOL vmlinux 0x52acca5d peernet2id +EXPORT_SYMBOL vmlinux 0x52b0c926 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x52b95b8e rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52c29ad6 uart_register_driver +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e09230 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x5306300b xp_can_alloc +EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5318fbea ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x532837da param_ops_int +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x5336f0f6 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533831d0 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x534465f7 fget +EXPORT_SYMBOL vmlinux 0x535de761 mount_single +EXPORT_SYMBOL vmlinux 0x53885354 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x53a8af43 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x53d82c3a simple_pin_fs +EXPORT_SYMBOL vmlinux 0x53e8d028 arp_tbl +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x5405601f phy_start +EXPORT_SYMBOL vmlinux 0x5411ea7a __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x5424ef35 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x543a0d7b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x543a51fc skb_pull +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544a706c __skb_checksum +EXPORT_SYMBOL vmlinux 0x54575c42 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x548633f6 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x54b066d3 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x54b30416 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x54be582e mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x54d1a388 dev_activate +EXPORT_SYMBOL vmlinux 0x54d89f45 netdev_warn +EXPORT_SYMBOL vmlinux 0x54d8acbd vc_resize +EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5518a099 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55476e9c softnet_data +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x556089aa bio_add_page +EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556ebf35 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55c5c755 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x55c5e579 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x561f8cb7 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564370aa scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564761ad file_modified +EXPORT_SYMBOL vmlinux 0x564d8f55 configfs_register_group +EXPORT_SYMBOL vmlinux 0x564dfab8 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x56563a9d sk_common_release +EXPORT_SYMBOL vmlinux 0x5663b354 dev_addr_add +EXPORT_SYMBOL vmlinux 0x5665e08f __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x56778dd0 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568c4c80 tcp_mmap +EXPORT_SYMBOL vmlinux 0x5690555d mr_table_dump +EXPORT_SYMBOL vmlinux 0x56a8755c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x56b176a0 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d6ce70 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56f1458b dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56f6d9df pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x56ff165c __serio_register_port +EXPORT_SYMBOL vmlinux 0x570f5062 vme_register_driver +EXPORT_SYMBOL vmlinux 0x5717523a mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x571785c2 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x5719c95f dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x5731d37e deactivate_super +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57556ac1 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577b2da7 d_tmpfile +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579309a8 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x57a377bd sock_pfree +EXPORT_SYMBOL vmlinux 0x57c8575d param_set_uint +EXPORT_SYMBOL vmlinux 0x57d696ac ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x57dfcd80 udp_ioctl +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x580b6fea netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581e04f0 to_nd_dax +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58272b1d prepare_creds +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582f41c7 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x585e9e37 keyring_search +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5881e478 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x58893132 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x58991823 bdi_alloc +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b0dea1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c89b29 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x58cb4a75 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x58cfa3a1 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x58e12a8f seq_dentry +EXPORT_SYMBOL vmlinux 0x58e22de3 clk_get +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ec368f pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x58efd9e7 unpin_user_page +EXPORT_SYMBOL vmlinux 0x58f97ca8 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x58ff5717 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x59088232 of_find_property +EXPORT_SYMBOL vmlinux 0x590c8351 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5924d113 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x593db9c5 nd_device_notify +EXPORT_SYMBOL vmlinux 0x594147e2 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x5942e20f add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x5943e80d i2c_register_driver +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x59849d7c block_write_end +EXPORT_SYMBOL vmlinux 0x59871155 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a28a8d key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59acee8e jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x59af1fea tty_name +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c34aa9 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x59d01431 lock_rename +EXPORT_SYMBOL vmlinux 0x59d757b2 __quota_error +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a032030 gtm_put_timer16 +EXPORT_SYMBOL vmlinux 0x5a088923 up_write +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a15de70 kernel_connect +EXPORT_SYMBOL vmlinux 0x5a17ffaa tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a352aed mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a630d8e rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x5a7e0321 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a921b75 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x5a930db7 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa9a09e flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5acaa715 mr_dump +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5aedc95f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x5b12ed7b security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b454fac tcf_action_exec +EXPORT_SYMBOL vmlinux 0x5b46ddef __d_lookup_done +EXPORT_SYMBOL vmlinux 0x5b488f3d mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x5b4a9dc3 inode_init_owner +EXPORT_SYMBOL vmlinux 0x5b54f191 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x5b87cac1 param_set_copystring +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5ba51e19 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x5bbfcc79 get_cached_acl +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd76af4 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf4070a inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5bfc2054 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5bfd588e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x5c12544d __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x5c309913 pci_match_id +EXPORT_SYMBOL vmlinux 0x5c3b3e4c xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5c3c39ae pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c42fa2f nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5c430dd1 register_key_type +EXPORT_SYMBOL vmlinux 0x5c4e9e2a ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x5c6ce78d pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x5c72efb8 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x5c8e2f34 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x5c905b8a xmon +EXPORT_SYMBOL vmlinux 0x5cb65e24 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5cdd462c uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5ce1b984 tcf_register_action +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d11e39d ps2_init +EXPORT_SYMBOL vmlinux 0x5d1a697b vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x5d378ce1 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x5d444ed0 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5b33df generic_fillattr +EXPORT_SYMBOL vmlinux 0x5d79cbfe mdio_device_remove +EXPORT_SYMBOL vmlinux 0x5d79cdfa tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x5d7d2100 fb_pan_display +EXPORT_SYMBOL vmlinux 0x5d814f47 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x5dac25b2 seq_file_path +EXPORT_SYMBOL vmlinux 0x5db5b035 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x5dc124c4 skb_eth_push +EXPORT_SYMBOL vmlinux 0x5dc86fd1 init_task +EXPORT_SYMBOL vmlinux 0x5dd0c0c3 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x5dec4b96 bio_uninit +EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e09cedf set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e256781 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3ff822 setattr_copy +EXPORT_SYMBOL vmlinux 0x5e45522d of_n_size_cells +EXPORT_SYMBOL vmlinux 0x5e5abfe0 dev_mc_init +EXPORT_SYMBOL vmlinux 0x5e69e6ea skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x5e724fe8 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x5e85bf6b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x5e90afe5 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key +EXPORT_SYMBOL vmlinux 0x5ea857b4 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x5eaf6b2c mdio_find_bus +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb55e94 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed5751c migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5f05856b xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f2494b3 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x5f24c64b devfreq_update_status +EXPORT_SYMBOL vmlinux 0x5f2ba5cb d_find_alias +EXPORT_SYMBOL vmlinux 0x5f2be7a1 con_is_visible +EXPORT_SYMBOL vmlinux 0x5f3999a0 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8f3dd6 input_setup_polling +EXPORT_SYMBOL vmlinux 0x5f94c81d __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find +EXPORT_SYMBOL vmlinux 0x5fb6fa63 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd1b69d input_set_timestamp +EXPORT_SYMBOL vmlinux 0x5fdd8d04 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x5fee7ca4 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6012dd3c clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x601ca4eb mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602477dc fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6045244f redraw_screen +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60590f38 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6095db44 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a9f531 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x60b74a99 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x60bc5da2 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60db1f41 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x60e708a5 write_one_page +EXPORT_SYMBOL vmlinux 0x60eeb49c pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x60f3ea7e mark_info_dirty +EXPORT_SYMBOL vmlinux 0x60f92c4a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x61024320 inc_node_state +EXPORT_SYMBOL vmlinux 0x61080248 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x6113815b padata_alloc +EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread +EXPORT_SYMBOL vmlinux 0x611f66fb _dev_err +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614ddbb6 inet6_bind +EXPORT_SYMBOL vmlinux 0x61540b38 skb_store_bits +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615d1084 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x615d4ffe block_write_full_page +EXPORT_SYMBOL vmlinux 0x615f9a2a phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x6160b320 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x616e8f25 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x61704058 param_get_ullong +EXPORT_SYMBOL vmlinux 0x61737e1b flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x61747dad devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x6186e684 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6195ee7a reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x61984973 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b1b5fe fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b88c21 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x61c48693 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock +EXPORT_SYMBOL vmlinux 0x61db5d0d get_user_pages +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x620f78f6 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62191ef3 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x6221040d input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622bdaf9 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x6236c7df sk_wait_data +EXPORT_SYMBOL vmlinux 0x6247d626 udp_poll +EXPORT_SYMBOL vmlinux 0x624dae15 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62744bdb uart_match_port +EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6289fb6c __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x628e193c mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x62981d0d param_set_int +EXPORT_SYMBOL vmlinux 0x629c0a79 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x62a0b3a4 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x62a615ea in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x62b072e2 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62ff9c03 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x63032227 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x6304f5f5 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x630c20d2 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6318d91c close_fd_get_file +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632053db of_device_alloc +EXPORT_SYMBOL vmlinux 0x63247ff9 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x63426881 register_netdev +EXPORT_SYMBOL vmlinux 0x634c0e9e sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x6358fb73 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x6365d50b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x636e71e9 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x63734253 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x63771440 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x637c06f9 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x637c16d3 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x63880853 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x63923fda pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x63a3adcb kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac4ba7 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x63afd1c6 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f3e88a param_get_hexint +EXPORT_SYMBOL vmlinux 0x63f75d81 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x63fbacd4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x6405dcd3 slhc_toss +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64296e94 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x643e95fc simple_transaction_set +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64406690 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x64414e50 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x6459c032 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x647ffbbc jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract +EXPORT_SYMBOL vmlinux 0x648861ee of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6494bbb0 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x64b5ac1b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d944da pmem_sector_size +EXPORT_SYMBOL vmlinux 0x64e542aa vfs_ioctl +EXPORT_SYMBOL vmlinux 0x64e6bc34 thaw_bdev +EXPORT_SYMBOL vmlinux 0x64e757ff udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651d6a5f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652300e4 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x65265fb3 netlink_capable +EXPORT_SYMBOL vmlinux 0x6528224d PageMovable +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6531707c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x65810ab4 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658eb961 begin_new_exec +EXPORT_SYMBOL vmlinux 0x65998058 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65c45118 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d059b4 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ddfa96 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x65e05a13 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e418a4 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x65e9fe90 rproc_add +EXPORT_SYMBOL vmlinux 0x65edbdcf sock_from_file +EXPORT_SYMBOL vmlinux 0x660ef256 generic_file_open +EXPORT_SYMBOL vmlinux 0x661b24d1 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x6626d525 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6633f972 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x6651d19b skb_push +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666e0126 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6679eb3e cfb_fillrect +EXPORT_SYMBOL vmlinux 0x668ad0c1 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x6695b952 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x669790f5 ilookup +EXPORT_SYMBOL vmlinux 0x669c3476 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x66a15e1c tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x66a6d6a4 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x66b27ff2 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66ca02ee cpumask_any_but +EXPORT_SYMBOL vmlinux 0x66cb2af8 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x66cf3d08 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x66d205aa tcp_check_req +EXPORT_SYMBOL vmlinux 0x66d77deb pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x66ea355e of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x671f0918 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x672396a7 dquot_transfer +EXPORT_SYMBOL vmlinux 0x6724c891 phy_resume +EXPORT_SYMBOL vmlinux 0x6736d8e0 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675b161e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x675b1857 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x6775e591 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x6782f38a tcf_em_register +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679add2b kernel_getpeername +EXPORT_SYMBOL vmlinux 0x67ae87c2 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bf0445 neigh_update +EXPORT_SYMBOL vmlinux 0x67cca54c __put_page +EXPORT_SYMBOL vmlinux 0x67d88bad __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x67e1c721 dqget +EXPORT_SYMBOL vmlinux 0x67f2dacb pci_release_region +EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x6813b988 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x6825b73c tty_kref_put +EXPORT_SYMBOL vmlinux 0x6829ce33 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x682fe04a of_match_node +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace +EXPORT_SYMBOL vmlinux 0x68675b2f nf_reinject +EXPORT_SYMBOL vmlinux 0x686818bb down_read +EXPORT_SYMBOL vmlinux 0x68686ace sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x6878274a pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68863877 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x688e5c67 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x68a126f0 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x68a1c23f phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor +EXPORT_SYMBOL vmlinux 0x68b70180 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x68b7329e bio_endio +EXPORT_SYMBOL vmlinux 0x68da9475 dcb_getapp +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x692417ca blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x69492f15 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x69512a18 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695ab698 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x697efe90 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x69a38c4b kthread_bind +EXPORT_SYMBOL vmlinux 0x69ab1dc7 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x69adccb8 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x69b4df5d of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e542f7 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a25745d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60a20c jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x6a66e3c2 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a7890f3 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x6a82d8f8 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x6a849fa1 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6a8a467b qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ac4ceab netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x6ad2e722 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af3dd7c rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b23367d kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x6b2a4a13 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b379fbe qdisc_reset +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b64fc20 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x6b661a70 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x6b6fbe3b blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x6b7956b6 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba87f13 pps_register_source +EXPORT_SYMBOL vmlinux 0x6bb4b1fb devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6bbfb0ec phy_error +EXPORT_SYMBOL vmlinux 0x6bc28241 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc61aaf __netif_schedule +EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible +EXPORT_SYMBOL vmlinux 0x6be9c533 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf49262 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x6bf6c6d3 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x6c128890 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c89684a dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x6cabfe15 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb5a307 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x6cbb503d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cc0d628 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x6cec899e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x6cef3e09 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d0a022a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x6d1e3daa vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2ca830 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x6d4aabdd dma_free_attrs +EXPORT_SYMBOL vmlinux 0x6d4bb7bf xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5a6ebf sock_register +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6db3310f netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x6db33714 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x6dc02448 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddb8715 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df7a471 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e17525d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7937e6 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea6cf8f genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eac37e5 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x6eb555df generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x6ec0ac04 update_region +EXPORT_SYMBOL vmlinux 0x6ec17067 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x6ec877b2 node_data +EXPORT_SYMBOL vmlinux 0x6ecfcbfb pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x6edc13b9 rtc_add_group +EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit +EXPORT_SYMBOL vmlinux 0x6f0bb5eb scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x6f11c13d cad_pid +EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each +EXPORT_SYMBOL vmlinux 0x6f29b636 pci_iounmap +EXPORT_SYMBOL vmlinux 0x6f30343b param_get_byte +EXPORT_SYMBOL vmlinux 0x6f3ca24c mpage_writepage +EXPORT_SYMBOL vmlinux 0x6f74967f copy_string_kernel +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe31d33 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x6fe6a7f0 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x6ff2fb67 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7008e1e1 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x700cc90e xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x70102593 phy_suspend +EXPORT_SYMBOL vmlinux 0x7015bdaf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x70278abf mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x70323bab xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x7034b1b5 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x70378ba9 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706f3788 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x707f6682 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x7089816a srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x70907211 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x70c766b5 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x70dee2d7 napi_disable +EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x710b03e2 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x710ebf94 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x710f6f45 from_kuid +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712cfbbe vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x71457c18 cdev_alloc +EXPORT_SYMBOL vmlinux 0x714b3826 elv_rb_find +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716e3966 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71763be9 pci_restore_state +EXPORT_SYMBOL vmlinux 0x7186f151 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x7193bab6 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x7199f832 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a87254 dst_destroy +EXPORT_SYMBOL vmlinux 0x71b2007c module_refcount +EXPORT_SYMBOL vmlinux 0x7202e7ea __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x72067767 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720f1835 import_single_range +EXPORT_SYMBOL vmlinux 0x721d6deb jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x722f57ff neigh_ifdown +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x725a0650 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x725da2b8 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush +EXPORT_SYMBOL vmlinux 0x72743092 ip_defrag +EXPORT_SYMBOL vmlinux 0x727c8363 set_create_files_as +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72aab0f9 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b8e7e6 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72b9f84f md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x72c1e83f twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72d112e4 drop_nlink +EXPORT_SYMBOL vmlinux 0x72d5672e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x72dfa75c mach_pseries +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eabcc5 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x72f76468 tso_start +EXPORT_SYMBOL vmlinux 0x73021286 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x731ac1ca blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x7329900c __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x732badcc xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x732c91fb dm_io +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73361ba4 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x73737d3f filemap_check_errors +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73aa86c0 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73bd8b64 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x73cdb0ba scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x73d224c8 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x742844b5 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x743c08e2 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x743c4d51 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x746111dd filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7467657a param_set_long +EXPORT_SYMBOL vmlinux 0x746e1d76 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x74737680 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7473cab4 user_path_create +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7485cf03 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x7486cd55 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x748a01e7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x748aec8f agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x7490b149 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x749fa530 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x74bed086 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c18454 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x74c633d8 d_splice_alias +EXPORT_SYMBOL vmlinux 0x74e1f47c pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x74e4a67b kill_anon_super +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e6a83f dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7502fe5d vme_irq_handler +EXPORT_SYMBOL vmlinux 0x7527dfe4 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x752b6494 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754be7c1 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x7554d4c0 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x75736aad __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x7584b9e6 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x7588ee63 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x759ab804 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x759b6516 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x759cc5e0 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75ac1d3d netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x75b0edf4 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x75b1b534 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x75b898c9 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x75b9e5ae mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c42b83 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x75c8052b rtas +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e3fa43 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x75e8e426 netdev_state_change +EXPORT_SYMBOL vmlinux 0x75ea4de2 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x75ec24c8 seq_read +EXPORT_SYMBOL vmlinux 0x75f0c2a8 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76166175 param_get_long +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761bfb24 mmc_erase +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762678ca devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7637acd3 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765b1ad6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76657f7d rt6_lookup +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767bed68 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x767f6f10 freeze_bdev +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76b17362 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x76b6bc7a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x76c2ce17 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76de9695 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x76fbc366 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7716bbb5 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774fe8c7 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x77627892 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x7763f5b7 skb_dequeue +EXPORT_SYMBOL vmlinux 0x7776260c rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x777776c5 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779764fb sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x77a16260 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x77b586fd sync_file_create +EXPORT_SYMBOL vmlinux 0x77b792c2 lookup_one_len +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d00471 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x77d7d358 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x77dc8736 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x77e37c5c neigh_lookup +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f573fa pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table +EXPORT_SYMBOL vmlinux 0x7806ee96 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780e0ebb of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x78397d98 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x783afc73 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x78409161 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78476b61 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x785c5d71 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x785e140e blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x78802297 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78826e7a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x78851d2f _outsb +EXPORT_SYMBOL vmlinux 0x78982074 param_ops_uint +EXPORT_SYMBOL vmlinux 0x789a72c2 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b84b66 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78d9a3de __lock_buffer +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e3f0ba put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x78e4a68a kern_path +EXPORT_SYMBOL vmlinux 0x78ebad7a agp_put_bridge +EXPORT_SYMBOL vmlinux 0x78f36a98 init_special_inode +EXPORT_SYMBOL vmlinux 0x78fe2dac inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7917592e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x7919769d rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x7920fc94 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x79312721 pci_dev_get +EXPORT_SYMBOL vmlinux 0x7937ffea unregister_md_personality +EXPORT_SYMBOL vmlinux 0x793f9cce inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x79561355 cdev_add +EXPORT_SYMBOL vmlinux 0x7964d209 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7975f0b5 netdev_features_change +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798e5f17 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x799c7c23 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x79a1c6af sget +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a997f0 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bd372f pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x79d15dd2 brioctl_set +EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x79e1d922 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0b7c06 bio_init +EXPORT_SYMBOL vmlinux 0x7a13d130 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x7a3dc29b scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7a40f451 ll_rw_block +EXPORT_SYMBOL vmlinux 0x7a56c905 sock_create +EXPORT_SYMBOL vmlinux 0x7a6c5074 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7a7298bc padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node +EXPORT_SYMBOL vmlinux 0x7a83779e dm_register_target +EXPORT_SYMBOL vmlinux 0x7a842f7f of_device_is_available +EXPORT_SYMBOL vmlinux 0x7a877276 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9e340f give_up_console +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7abe5893 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x7ac70f43 __fs_parse +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad4de9f mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x7ad7b52d pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x7ad8d1a2 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7aebf052 blk_queue_split +EXPORT_SYMBOL vmlinux 0x7aed658a sock_gettstamp +EXPORT_SYMBOL vmlinux 0x7afd3ed1 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x7b03d0ba fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x7b108fe5 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x7b2a8473 dput +EXPORT_SYMBOL vmlinux 0x7b2febb0 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x7b40a289 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x7b4c1c96 genphy_loopback +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b6638d6 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7b71f890 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7b857e45 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7b918b6f scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7ba73f41 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x7baa6676 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x7bac3377 register_netdevice +EXPORT_SYMBOL vmlinux 0x7bb150a6 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc396f9 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x7bc9f7a0 get_phy_device +EXPORT_SYMBOL vmlinux 0x7bd604b7 _dev_alert +EXPORT_SYMBOL vmlinux 0x7bd6874d __scsi_execute +EXPORT_SYMBOL vmlinux 0x7bd6dfa7 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x7bebcba2 genphy_resume +EXPORT_SYMBOL vmlinux 0x7becbe2e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x7bf90416 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2eccce csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7c33e083 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x7c3525f5 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c56fc6e napi_enable +EXPORT_SYMBOL vmlinux 0x7c5efcf4 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7c613d74 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x7c685859 scsi_add_device +EXPORT_SYMBOL vmlinux 0x7c7236b3 generic_permission +EXPORT_SYMBOL vmlinux 0x7c7f6c62 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x7c87b343 param_get_charp +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca256a6 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x7ca49887 bh_submit_read +EXPORT_SYMBOL vmlinux 0x7ca96f99 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x7cae37b5 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7ce0ddbe ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce1997c arp_create +EXPORT_SYMBOL vmlinux 0x7ce404d4 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7ce50e9b backlight_force_update +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf3ba07 tty_check_change +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d21fe4e textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7d258e01 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5131ae __neigh_event_send +EXPORT_SYMBOL vmlinux 0x7d53c604 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x7d541f84 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x7d5d5a0d input_get_keycode +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d766e07 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x7d7ad56f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x7d8dd240 dm_table_event +EXPORT_SYMBOL vmlinux 0x7d90d1d3 __alloc_skb +EXPORT_SYMBOL vmlinux 0x7d93d03f unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7d98188e dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x7da5b1ad vm_insert_page +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dd743ba of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x7de1faa0 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x7de24c6e kobject_set_name +EXPORT_SYMBOL vmlinux 0x7de3df27 md_write_start +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base +EXPORT_SYMBOL vmlinux 0x7e04c678 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7e21f40a unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x7e2c101b scsi_device_get +EXPORT_SYMBOL vmlinux 0x7e2c739a of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x7e4e58f7 tso_build_data +EXPORT_SYMBOL vmlinux 0x7e76fe15 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x7e920bba tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7ea103ec pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x7eaf73e8 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x7eb5af69 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7ebaa2e2 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7ed19d1a vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x7ede8985 mdio_device_register +EXPORT_SYMBOL vmlinux 0x7ee7f261 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x7eece725 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7eee8209 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x7f00512c may_umount_tree +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0ed47f register_qdisc +EXPORT_SYMBOL vmlinux 0x7f1077ea dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f257929 unlock_rename +EXPORT_SYMBOL vmlinux 0x7f39ebd1 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7f3c244a tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f56969a free_task +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f647488 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load +EXPORT_SYMBOL vmlinux 0x7f7b320d mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x7f7eaf06 arp_send +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fa39230 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7fc01792 sync_blockdev +EXPORT_SYMBOL vmlinux 0x7fcf5de9 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x7fdda9d8 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ffb34e3 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x7ffc6676 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x80086a6d agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x8015b101 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x803a170d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80509088 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x805117e6 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x805b221b dm_unregister_target +EXPORT_SYMBOL vmlinux 0x805bba08 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x8062df6c md_integrity_register +EXPORT_SYMBOL vmlinux 0x8082aaea md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x8082f94a __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x8085fe2f crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x80870cfb mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809f55d4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x80adecce phy_connect +EXPORT_SYMBOL vmlinux 0x80bd040e twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x80c91d06 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d07832 unlock_buffer +EXPORT_SYMBOL vmlinux 0x80d2735a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x80d46489 genlmsg_put +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80fc3189 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x80fdf25a alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x810085df ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8144ca46 set_nlink +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x817ab0a6 generic_fadvise +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818bb278 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x819bac1c xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x819d1c67 dev_mc_add +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b82ab3 ip6_output +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c95a81 param_ops_string +EXPORT_SYMBOL vmlinux 0x81cc4d52 can_nice +EXPORT_SYMBOL vmlinux 0x81d0c292 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e7b847 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x81f963d9 vc_cons +EXPORT_SYMBOL vmlinux 0x820bf091 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end +EXPORT_SYMBOL vmlinux 0x821b5960 simple_unlink +EXPORT_SYMBOL vmlinux 0x8221eefc tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x82431afa unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x8264e576 agp_free_memory +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8282e3e7 ipv4_specific +EXPORT_SYMBOL vmlinux 0x8284edf5 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x82a64bea pci_release_resource +EXPORT_SYMBOL vmlinux 0x82b50422 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cc4bed tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x82de84c9 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x82dfbe4f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x82e26843 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x82f48ad3 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x82f73e91 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x82fc552f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x82fda60d md_cluster_ops +EXPORT_SYMBOL vmlinux 0x8302918d pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0x83054751 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x835226c7 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b5ce1 lookup_one +EXPORT_SYMBOL vmlinux 0x835e8bf0 nobh_write_end +EXPORT_SYMBOL vmlinux 0x83601da8 set_capacity +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x83825aad page_mapping +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83abca9c bio_reset +EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x83c373a5 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cab94f of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x83e9e0e5 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x83ff6b0b free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840aa48a __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x840b890f ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x840ecc9b dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x84156834 __next_node_in +EXPORT_SYMBOL vmlinux 0x8415e0f0 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x8427f9dd __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x844af46c vfs_mknod +EXPORT_SYMBOL vmlinux 0x8475a602 fd_install +EXPORT_SYMBOL vmlinux 0x8479c6a5 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x847ab65f scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84834f5f uart_resume_port +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x8490821f i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8497f4bc iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x84b4574b of_platform_device_create +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c662a3 phy_driver_register +EXPORT_SYMBOL vmlinux 0x84e0281e inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x84f4947a param_ops_ushort +EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range +EXPORT_SYMBOL vmlinux 0x854a0cf4 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8552108a simple_get_link +EXPORT_SYMBOL vmlinux 0x855d8d63 __module_get +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85720957 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x85904d12 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8592f6a1 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85aff424 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c33a56 eth_header +EXPORT_SYMBOL vmlinux 0x85d143c4 make_kprojid +EXPORT_SYMBOL vmlinux 0x85d55f89 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e79808 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fbc931 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x862ac769 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x863360a0 seq_open_private +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8646acf1 kernel_read +EXPORT_SYMBOL vmlinux 0x8666e210 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x8676f7d5 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x867c5319 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86af8082 config_group_find_item +EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec +EXPORT_SYMBOL vmlinux 0x86b45a9b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x86c96e20 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86e794c2 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fde98b ata_print_version +EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x87285906 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x8734cf6c pci_resize_resource +EXPORT_SYMBOL vmlinux 0x873572f9 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x8742caba dst_release_immediate +EXPORT_SYMBOL vmlinux 0x875626bd fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8763f9ae mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x878dc1f6 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87cb801d devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x87e248d9 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x87e6adc3 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8800eb43 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x881ad846 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x8831387d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8840c85b simple_empty +EXPORT_SYMBOL vmlinux 0x88688dc3 xattr_full_name +EXPORT_SYMBOL vmlinux 0x887c0eca agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x887e7361 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8881c349 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x889bae74 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88d90be2 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e9c170 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x88ed1ed0 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x88fce1d4 kobject_get +EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x8917fea5 proc_create_data +EXPORT_SYMBOL vmlinux 0x893307dd netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x8954608e make_kuid +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8955869a jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x895b96a1 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x896b39a8 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x897d56a2 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x89853c2f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x89cd4ac3 ip6_xmit +EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x89db2c40 phy_device_create +EXPORT_SYMBOL vmlinux 0x89ea6e8e pci_dev_driver +EXPORT_SYMBOL vmlinux 0x89f8e263 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x8a0b1fec __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x8a199ce9 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x8a264a49 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x8a313db2 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x8a3ba6f4 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a48072d __page_symlink +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a50ea41 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a73c232 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a943dad netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x8a99527f ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9b0445 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x8ab35e71 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x8ab42958 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x8ab9fb01 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x8aba6487 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x8ac1f6ea pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x8ac50ebd tso_count_descs +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad13fd8 __break_lease +EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x8af5475a dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b0ac940 __invalidate_device +EXPORT_SYMBOL vmlinux 0x8b0c5a35 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x8b1f2e8f rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x8b261ddc fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x8b491bd4 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x8b4f0c3e scsi_remove_device +EXPORT_SYMBOL vmlinux 0x8b57bad7 freeze_super +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7aca5c __kfree_skb +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x8b976fef remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba13aed skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x8bb299b1 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x8bcbad52 kernel_listen +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be1f938 d_rehash +EXPORT_SYMBOL vmlinux 0x8bf2dbac md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x8c177a5f tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x8c1c2e7f key_unlink +EXPORT_SYMBOL vmlinux 0x8c37ab26 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x8c4d80c5 f_setown +EXPORT_SYMBOL vmlinux 0x8c4f9fa4 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x8c6299bd fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x8c65e931 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c86545d jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x8ca90712 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc69d92 inet_listen +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc967e2 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x8cd2520c bio_clone_fast +EXPORT_SYMBOL vmlinux 0x8cdba446 dm_put_device +EXPORT_SYMBOL vmlinux 0x8cddae35 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8d0b1234 noop_fsync +EXPORT_SYMBOL vmlinux 0x8d15243d scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x8d367c6a i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5d75c8 setup_new_exec +EXPORT_SYMBOL vmlinux 0x8d7296c8 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7425a9 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8d74e1e6 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x8d8bf5e5 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x8d948d2e mdio_device_reset +EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x8dcc5865 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x8dd3d54f input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ddf2482 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x8deeea0f dev_get_by_index +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df77bca default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e086683 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x8e12d78a mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x8e24c645 phy_get_pause +EXPORT_SYMBOL vmlinux 0x8e2d51dd tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x8e2ff99a file_path +EXPORT_SYMBOL vmlinux 0x8e435fdf from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e749255 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea5c618 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x8eb93db0 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x8ec0bf5e sget_fc +EXPORT_SYMBOL vmlinux 0x8eeb050a eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f07126b fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x8f28219e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x8f42abc6 __scm_send +EXPORT_SYMBOL vmlinux 0x8f687064 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x8f94e8b6 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa81f8f devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x8fb117f0 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x8fd323f3 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x8fe6d0cf vga_client_register +EXPORT_SYMBOL vmlinux 0x8ff03a6c vme_dma_request +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffbceaa dquot_release +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900474a2 mntget +EXPORT_SYMBOL vmlinux 0x9019b51a rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x901bf6d6 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x90454ecb take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x90466c34 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x904b5189 __neigh_create +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9070b40e __napi_schedule +EXPORT_SYMBOL vmlinux 0x908909d1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x90933ed4 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x9098e269 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x90c6110a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x90c81364 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x90ccdbd6 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x90e590b0 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x90f801fc of_phy_find_device +EXPORT_SYMBOL vmlinux 0x90f94520 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x910d6a2c elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91262586 set_bh_page +EXPORT_SYMBOL vmlinux 0x9127e3e3 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x912bda08 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x91330d85 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x91467cc9 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x914e266f skb_clone_sk +EXPORT_SYMBOL vmlinux 0x915aba23 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x915d71f8 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x915e04d7 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916758a3 node_states +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x917731ff find_vma +EXPORT_SYMBOL vmlinux 0x91811865 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9182a494 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x9193984a dquot_quota_off +EXPORT_SYMBOL vmlinux 0x91940d36 input_open_device +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d3d24e kill_fasync +EXPORT_SYMBOL vmlinux 0x91eef49d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fcd2a2 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x9201cc34 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9202d495 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x92036378 pci_dev_put +EXPORT_SYMBOL vmlinux 0x9209dcb7 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9215ac0e padata_free +EXPORT_SYMBOL vmlinux 0x922703d2 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b8c3e tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x9248d32a sock_bind_add +EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x9299dffc backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x92a53c05 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92bfb7e7 blk_rq_init +EXPORT_SYMBOL vmlinux 0x92c664f0 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d8442c __bread_gfp +EXPORT_SYMBOL vmlinux 0x92ea12ff of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930cd9ff tcf_block_put +EXPORT_SYMBOL vmlinux 0x9331ad9a nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x935cffce pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x935e95f6 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x9369d8dc __nlmsg_put +EXPORT_SYMBOL vmlinux 0x936d44b4 km_new_mapping +EXPORT_SYMBOL vmlinux 0x936e96b2 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x93768590 d_obtain_root +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c7f5b8 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x93d0cdb4 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x93f0a75e __vio_register_driver +EXPORT_SYMBOL vmlinux 0x93f12561 nla_put +EXPORT_SYMBOL vmlinux 0x93f70de1 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x93ffec86 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x940496c7 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x9412c35b phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x9418a2eb tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x941936f9 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x9423c352 md_register_thread +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9430a6fa security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944dfdd4 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x944e6279 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr +EXPORT_SYMBOL vmlinux 0x94829fe1 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x94835f6f follow_pfn +EXPORT_SYMBOL vmlinux 0x948b8fa7 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x949568bb pci_iomap_range +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9497de0b pci_read_config_word +EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x94a89741 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x94af3370 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x94b33405 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d79efe generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94e8f671 rio_query_mport +EXPORT_SYMBOL vmlinux 0x950451cc migrate_page_copy +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9507e567 pcim_iomap +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x952615e9 udp_seq_start +EXPORT_SYMBOL vmlinux 0x952a0ddc bdi_put +EXPORT_SYMBOL vmlinux 0x953bb7f1 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x959a7e7d scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x95b25b9c of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x95b51f39 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x95b6d4f5 seq_bprintf +EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio +EXPORT_SYMBOL vmlinux 0x95e5b1ab mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x95eaf4cb inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x95fcbf8c sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x960cd1df proc_create_single_data +EXPORT_SYMBOL vmlinux 0x960eab87 dev_get_flags +EXPORT_SYMBOL vmlinux 0x96152de0 clear_nlink +EXPORT_SYMBOL vmlinux 0x9624d80d sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x96446fd2 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x96453828 key_move +EXPORT_SYMBOL vmlinux 0x9660b925 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x96706c61 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x96820296 param_get_short +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9684c322 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x96979c62 get_fs_type +EXPORT_SYMBOL vmlinux 0x96992180 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x969a429d to_nd_pfn +EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x96a88ba2 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x96aaf178 input_register_device +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96ce3c60 cdrom_open +EXPORT_SYMBOL vmlinux 0x96da67da netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97074b8d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x970bab49 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x97184f66 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars +EXPORT_SYMBOL vmlinux 0x972a9ea4 set_binfmt +EXPORT_SYMBOL vmlinux 0x97388ad4 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size +EXPORT_SYMBOL vmlinux 0x973edfef key_alloc +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x9755667f blk_put_request +EXPORT_SYMBOL vmlinux 0x97835594 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97941025 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a96267 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x97ac91a4 __seq_open_private +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b0d125 pci_clear_master +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c0b19e inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x97d1b25a nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x97f24f0f watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x97ff7468 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x9807d684 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x980820b1 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x9810038c clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x981af055 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98404047 of_read_drc_info_cell +EXPORT_SYMBOL vmlinux 0x98470a3d nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set +EXPORT_SYMBOL vmlinux 0x985fba5e rproc_boot +EXPORT_SYMBOL vmlinux 0x987de623 md_flush_request +EXPORT_SYMBOL vmlinux 0x98831ba8 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x98872454 serio_close +EXPORT_SYMBOL vmlinux 0x98ac0574 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x98bfb96c dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d281c3 pci_set_master +EXPORT_SYMBOL vmlinux 0x98db44e3 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x98dd0a1c iov_iter_discard +EXPORT_SYMBOL vmlinux 0x98e28036 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f27060 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x98fdcec2 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x98ffc5c9 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x99059ff3 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x991d6481 seq_read_iter +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b5c65 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x993ee063 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x994d5ba2 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9959b2ee pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x996af2e0 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x9980a27a crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x999b6e0b seq_path +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a6eddb agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x99a97d3b key_payload_reserve +EXPORT_SYMBOL vmlinux 0x99aa4df7 mmc_request_done +EXPORT_SYMBOL vmlinux 0x99b43009 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x99bf95d8 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x99c21078 cdrom_release +EXPORT_SYMBOL vmlinux 0x99c6ad1a phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x99d09170 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x99d1021b security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x99d2997d kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fd9bbf scsi_device_resume +EXPORT_SYMBOL vmlinux 0x9a0a7586 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a15bfc0 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1c5422 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a3361a2 radix__flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x9a55fa7d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a68cee0 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x9a6db03d tcf_classify +EXPORT_SYMBOL vmlinux 0x9a7247d2 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a7c4a80 pci_bus_type +EXPORT_SYMBOL vmlinux 0x9a953200 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x9aa1d0b2 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9abeaca3 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x9ac4913a machine_id +EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 +EXPORT_SYMBOL vmlinux 0x9ad18ac3 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b1eb3b9 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3610c6 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x9b3a51b8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9b41c95b netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b5cb149 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x9b6c834f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x9b811830 config_item_set_name +EXPORT_SYMBOL vmlinux 0x9b8dd27b mmc_start_request +EXPORT_SYMBOL vmlinux 0x9b910a67 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x9b9471d1 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x9b9a449d tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bd048a5 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x9c08cff8 dquot_operations +EXPORT_SYMBOL vmlinux 0x9c09b90c seq_write +EXPORT_SYMBOL vmlinux 0x9c2b3e09 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x9c2c0ca9 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x9c345ad2 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9c35efe3 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x9c446e4b sk_capable +EXPORT_SYMBOL vmlinux 0x9c53ff01 pci_find_capability +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c630e0e mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x9c662c56 security_path_mknod +EXPORT_SYMBOL vmlinux 0x9c689520 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8704f2 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb68d33 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x9cc7221e sock_no_mmap +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd8614e request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x9cdf31c3 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ceb705d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1c0e07 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x9d1d3ea1 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d31cfb4 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x9d3609c3 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x9d410c6a pci_choose_state +EXPORT_SYMBOL vmlinux 0x9d69eda2 of_phy_connect +EXPORT_SYMBOL vmlinux 0x9d6ecc05 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x9d77b387 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x9d8d19e5 inet_bind +EXPORT_SYMBOL vmlinux 0x9d920513 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d9adca1 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x9da9e117 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x9dbae48d wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x9dc6c13f __brelse +EXPORT_SYMBOL vmlinux 0x9dc6c552 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x9dd14269 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state +EXPORT_SYMBOL vmlinux 0x9dda0b8e eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9ddaec38 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e19326c noop_llseek +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e68fdb3 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x9e843c25 sync_filesystem +EXPORT_SYMBOL vmlinux 0x9e940d60 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed8e6f1 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee8b349 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x9ef79f9e dev_trans_start +EXPORT_SYMBOL vmlinux 0x9f1fa971 input_close_device +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f520eab of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5ec788 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x9f611883 skb_split +EXPORT_SYMBOL vmlinux 0x9f64a1e9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x9f6e912b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x9f7f0b39 radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fad209e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat +EXPORT_SYMBOL vmlinux 0x9fbbda79 netif_device_detach +EXPORT_SYMBOL vmlinux 0x9fc39ae0 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x9fc80937 vfs_llseek +EXPORT_SYMBOL vmlinux 0x9fd7b02b devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03d5ee8 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa052ca86 seq_release_private +EXPORT_SYMBOL vmlinux 0xa0566d51 __bforget +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa0594af3 radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa0602bd7 regset_get +EXPORT_SYMBOL vmlinux 0xa0615eab submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xa061b738 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xa0751d90 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e8e5af fb_find_mode +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0f1f057 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xa0f9b55a filemap_flush +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120e187 commit_creds +EXPORT_SYMBOL vmlinux 0xa1604b58 d_genocide +EXPORT_SYMBOL vmlinux 0xa1774811 elv_rb_del +EXPORT_SYMBOL vmlinux 0xa17f6f0c of_graph_is_present +EXPORT_SYMBOL vmlinux 0xa199df78 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xa19cd3aa ppp_input +EXPORT_SYMBOL vmlinux 0xa1a4e13d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xa1b8f774 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa1d154a6 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init +EXPORT_SYMBOL vmlinux 0xa200dd43 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa21d51d9 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xa224b277 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa226dd0c pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa231f413 serio_rescan +EXPORT_SYMBOL vmlinux 0xa2331b83 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa2412de5 phy_attached_info +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa258ab46 fb_set_var +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa2625d4a nf_log_register +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa26646d5 block_write_begin +EXPORT_SYMBOL vmlinux 0xa269a2dd param_set_bint +EXPORT_SYMBOL vmlinux 0xa278aa84 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2b0187b pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2d8bf6c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xa302040a pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0xa307570d secpath_set +EXPORT_SYMBOL vmlinux 0xa323757c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xa326a065 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xa347018f iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xa34c50fe scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa36526ed dump_skip_to +EXPORT_SYMBOL vmlinux 0xa365f9a3 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xa3666328 tty_hangup +EXPORT_SYMBOL vmlinux 0xa3668b18 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order +EXPORT_SYMBOL vmlinux 0xa36e905a pci_request_irq +EXPORT_SYMBOL vmlinux 0xa38c69e2 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa394bb61 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3aa28c9 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xa3e6063f genphy_update_link +EXPORT_SYMBOL vmlinux 0xa3eb3955 arp_xmit +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa418a8fa xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xa41effb8 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xa43837bb vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa44a2aa2 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa44ff762 irq_set_chip +EXPORT_SYMBOL vmlinux 0xa458c78c posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa469075f twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xa46f6e4a d_delete +EXPORT_SYMBOL vmlinux 0xa49312b2 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa4abb257 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa4ad4630 vm_map_ram +EXPORT_SYMBOL vmlinux 0xa4af298e tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c7b88a phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d9433e agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xa4e29d81 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xa4e6c2b8 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xa4f146ec dquot_get_state +EXPORT_SYMBOL vmlinux 0xa5056338 __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa524175b __put_cred +EXPORT_SYMBOL vmlinux 0xa5280632 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0xa52a293a md_unregister_thread +EXPORT_SYMBOL vmlinux 0xa5363163 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa53a0d98 may_umount +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5674f51 bio_chain +EXPORT_SYMBOL vmlinux 0xa56be80d inet6_offloads +EXPORT_SYMBOL vmlinux 0xa56cc817 page_pool_create +EXPORT_SYMBOL vmlinux 0xa5782b43 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xa57dedd0 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xa58b6a61 bio_copy_data +EXPORT_SYMBOL vmlinux 0xa5ab10ed sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5c07b06 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa5d0ab89 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xa5e9d1a4 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xa5f10c77 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa5f75583 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xa61bdf68 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61f62cb simple_rename +EXPORT_SYMBOL vmlinux 0xa6328ca7 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc +EXPORT_SYMBOL vmlinux 0xa638c079 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa648e51a __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa6607c23 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xa6612f07 dqput +EXPORT_SYMBOL vmlinux 0xa67e2246 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6ae78ca vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xa6b2dc4c mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xa6dd95c1 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xa6f35a29 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xa708bd2a of_node_name_eq +EXPORT_SYMBOL vmlinux 0xa70f3627 inet_sendpage +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72d512d __do_once_done +EXPORT_SYMBOL vmlinux 0xa733dcff pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7561a33 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77cb2e4 build_skb +EXPORT_SYMBOL vmlinux 0xa78934de xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa7899b94 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift +EXPORT_SYMBOL vmlinux 0xa7c0fcc8 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xa7e63f7a vfs_readlink +EXPORT_SYMBOL vmlinux 0xa7e8e47f default_llseek +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa8073768 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xa80c7020 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xa810dad5 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xa8162ce4 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xa82dd2a3 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84439db seq_puts +EXPORT_SYMBOL vmlinux 0xa84474aa _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa8576cd2 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xa85b39fc xfrm_state_update +EXPORT_SYMBOL vmlinux 0xa85ffb1a vm_map_pages +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8737d12 sk_error_report +EXPORT_SYMBOL vmlinux 0xa883edc9 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa89c6f8e rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xa8a63b67 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xa8a8cd27 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xa8ab7fed ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xa8bfb0e7 km_state_expired +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8ddcd01 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0xa8e06f01 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa8ec8d1c rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90c1e81 clear_inode +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90f13f4 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0xa914eec8 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa915b37d fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9186ef8 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xa91adc4e d_path +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa9253701 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa9488416 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xa94b1172 __free_pages +EXPORT_SYMBOL vmlinux 0xa95da227 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9712539 block_read_full_page +EXPORT_SYMBOL vmlinux 0xa97463c9 __siphash_aligned +EXPORT_SYMBOL vmlinux 0xa976519f finish_no_open +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa988bcce phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9cd40c9 mac_find_mode +EXPORT_SYMBOL vmlinux 0xa9ce6730 __frontswap_test +EXPORT_SYMBOL vmlinux 0xa9cf78c1 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xa9d39237 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xa9de1103 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free +EXPORT_SYMBOL vmlinux 0xa9fc815a pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0c879a ip6_frag_init +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1dc4ea dev_disable_lro +EXPORT_SYMBOL vmlinux 0xaa2681d9 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xaa2c2577 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xaa3f76f7 mdio_device_create +EXPORT_SYMBOL vmlinux 0xaa3fa36c init_net +EXPORT_SYMBOL vmlinux 0xaa54ef07 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xaa586be6 param_ops_bint +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7b61b0 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xaa8132af mmc_get_card +EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa9ee49 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all +EXPORT_SYMBOL vmlinux 0xaac44031 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad802dd phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadd941f clk_bulk_get +EXPORT_SYMBOL vmlinux 0xaadfb02d security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xaaf3f37b rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xaaf6e07c hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab17ed3d pci_set_power_state +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab42c74d rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xab43b437 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xab5065ad nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xab6263c8 nonseekable_open +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7ba8f8 skb_expand_head +EXPORT_SYMBOL vmlinux 0xab96ab66 touch_atime +EXPORT_SYMBOL vmlinux 0xaba246c5 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xaba90150 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xabad7775 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xabaf5ced elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xabb36503 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xabb7fb19 register_cdrom +EXPORT_SYMBOL vmlinux 0xabb92549 param_get_string +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabfa2df6 skb_queue_head +EXPORT_SYMBOL vmlinux 0xac05a7e5 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xac0b760b __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xac0e5288 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2ae595 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3c70eb blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xac3e95e1 dst_discard_out +EXPORT_SYMBOL vmlinux 0xac3ecae0 phy_loopback +EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac4ee1e7 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6640f8 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xac6fc555 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xac7d7448 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac8f9753 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xac9087db dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xaca7a149 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xaca96a30 dev_get_stats +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdcd83d writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfc9e73 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad09c877 page_readlink +EXPORT_SYMBOL vmlinux 0xad0bccc6 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad245957 xp_free +EXPORT_SYMBOL vmlinux 0xad2b995a logfc +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad37ad7a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad7a81c3 __destroy_inode +EXPORT_SYMBOL vmlinux 0xad92404e pskb_extract +EXPORT_SYMBOL vmlinux 0xad93554f iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc8a29b xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xaddc1ce3 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xade5094f lock_page_memcg +EXPORT_SYMBOL vmlinux 0xadf85e06 tty_port_close +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae101adc genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae318c1b fb_show_logo +EXPORT_SYMBOL vmlinux 0xae461c70 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xae49895e may_setattr +EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size +EXPORT_SYMBOL vmlinux 0xae6f301c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xae72cb7d ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xae7428de unregister_shrinker +EXPORT_SYMBOL vmlinux 0xae7a9d30 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaebd0171 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xaec448a6 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaef50c63 input_set_keycode +EXPORT_SYMBOL vmlinux 0xaf035fd2 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xaf167640 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xaf2d2b76 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xaf3a0c0c pci_scan_slot +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5b914c dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xaf5ca967 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xaf73547f dquot_acquire +EXPORT_SYMBOL vmlinux 0xaf84ec24 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xaf926eab fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xaf9273d6 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xafa4cc6d devm_clk_get +EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc284c7 phy_device_free +EXPORT_SYMBOL vmlinux 0xafd2f966 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xafd33890 devm_release_resource +EXPORT_SYMBOL vmlinux 0xafd52a8d dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xafddc9c3 of_get_property +EXPORT_SYMBOL vmlinux 0xafe56c8e unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xaff7d39f ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xb00ababf dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01de77b pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb079a48f input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xb08bc8ab udp_pre_connect +EXPORT_SYMBOL vmlinux 0xb08cc94f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xb08f018d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xb093d558 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0c00d15 registered_fb +EXPORT_SYMBOL vmlinux 0xb0c61bc6 param_ops_charp +EXPORT_SYMBOL vmlinux 0xb0cd458a mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xb0d05827 file_update_time +EXPORT_SYMBOL vmlinux 0xb0d21756 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xb0dc9c68 nd_btt_version +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e55e17 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xb0edd691 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb100bc49 skb_tx_error +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb110416f inet_offloads +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1323c79 dma_supported +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb163d1d9 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb1702abd of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xb1744ed5 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xb17ab102 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0xb1a53802 discard_new_inode +EXPORT_SYMBOL vmlinux 0xb1a8ac9a blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 +EXPORT_SYMBOL vmlinux 0xb1cc5e13 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb21f09e6 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xb22437da dquot_destroy +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb22ef442 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb23e83ea jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xb2490d3d qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xb24a5099 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xb2850c7d serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb28b8584 padata_do_serial +EXPORT_SYMBOL vmlinux 0xb28e9a03 try_module_get +EXPORT_SYMBOL vmlinux 0xb29597ad pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xb29a3549 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0xb29eb863 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xb2af75b0 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xb2b936d2 __pagevec_release +EXPORT_SYMBOL vmlinux 0xb2be5d8c dev_set_group +EXPORT_SYMBOL vmlinux 0xb2c94b80 pci_get_slot +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb317f7b8 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb318e9c1 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3260ebd pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats +EXPORT_SYMBOL vmlinux 0xb3594e45 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb35e234c dcache_dir_close +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb37e4641 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xb38312ae netdev_emerg +EXPORT_SYMBOL vmlinux 0xb3910875 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xb3a9e74f kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3cea87d inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dad6c9 migrate_page_states +EXPORT_SYMBOL vmlinux 0xb3dcf1bb __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xb3de2b58 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb3e89b43 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f6673b simple_release_fs +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f7cdee nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb40032b1 sock_rfree +EXPORT_SYMBOL vmlinux 0xb406a7e2 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xb40c770b key_validate +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free +EXPORT_SYMBOL vmlinux 0xb450d711 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb475bd00 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xb4760125 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4a01b79 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xb4a34118 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xb4e88635 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0xb4eda6ac unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f4039b phy_device_remove +EXPORT_SYMBOL vmlinux 0xb4f4b2ac nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb4fad6fb pipe_lock +EXPORT_SYMBOL vmlinux 0xb4fca4d9 posix_test_lock +EXPORT_SYMBOL vmlinux 0xb50efd87 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb5135a47 register_md_personality +EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xb53f2a0c __frontswap_store +EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 +EXPORT_SYMBOL vmlinux 0xb55c86e9 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5e4f140 dev_change_flags +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb60138cd sock_no_connect +EXPORT_SYMBOL vmlinux 0xb608a26d pcibus_to_node +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb63df5ad fb_get_mode +EXPORT_SYMBOL vmlinux 0xb63eeaab from_kprojid +EXPORT_SYMBOL vmlinux 0xb64331a5 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xb64c58e9 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xb658f5fb udp_set_csum +EXPORT_SYMBOL vmlinux 0xb664a88f xfrm_lookup +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67b9885 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b13fcd pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xb6bf6606 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xb6c67f5d of_get_next_parent +EXPORT_SYMBOL vmlinux 0xb6c7067b netdev_err +EXPORT_SYMBOL vmlinux 0xb6e65c3f param_get_ulong +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7026f2e mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb70289d9 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xb704bfce elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xb710bf08 tcp_close +EXPORT_SYMBOL vmlinux 0xb713cb97 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb716323e set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section +EXPORT_SYMBOL vmlinux 0xb73a3ed1 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb73a88a2 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb747c01b _dev_notice +EXPORT_SYMBOL vmlinux 0xb74b7041 __ps2_command +EXPORT_SYMBOL vmlinux 0xb74fdca9 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb753ffc1 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xb7642eeb tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb77f1d70 rproc_report_crash +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7aa321e kmem_cache_size +EXPORT_SYMBOL vmlinux 0xb7bc6adc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c27321 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb7c6c3e8 dev_load +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7ca1698 pci_find_resource +EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb7ff6f3a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xb82939cf param_ops_byte +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb83e69f5 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb844f021 seq_pad +EXPORT_SYMBOL vmlinux 0xb85e0496 do_splice_direct +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb8772003 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xb8974d39 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89b7438 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xb8a8c3f3 arch_free_page +EXPORT_SYMBOL vmlinux 0xb8ac468c jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b88c87 kern_path_create +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8ba0c09 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb8cd2867 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xb8d499cb open_exec +EXPORT_SYMBOL vmlinux 0xb8dbffdc scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb8dd67c6 passthru_features_check +EXPORT_SYMBOL vmlinux 0xb9044bd3 make_kgid +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9284e2f flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xb93d3ca1 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94759ea tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb948c1b0 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xb95222d2 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xb967b12a dev_addr_flush +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb972d8a0 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xb98ba7b4 of_node_to_nid +EXPORT_SYMBOL vmlinux 0xb9907184 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xb9abc19e mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb9d034a3 pci_select_bars +EXPORT_SYMBOL vmlinux 0xb9dbb7b3 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f0c81e scsi_host_get +EXPORT_SYMBOL vmlinux 0xba0106bb generic_setlease +EXPORT_SYMBOL vmlinux 0xba0126b5 scsi_print_result +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba06b272 poll_freewait +EXPORT_SYMBOL vmlinux 0xba0a226f ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xba0fd024 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba25d960 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xba41432a skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4b411f page_pool_release_page +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba55e28d devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xba5dc41a srp_rport_get +EXPORT_SYMBOL vmlinux 0xba5eb1f2 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic +EXPORT_SYMBOL vmlinux 0xba691c85 _insb +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba7d492f agp_create_memory +EXPORT_SYMBOL vmlinux 0xba8c18cc __sk_dst_check +EXPORT_SYMBOL vmlinux 0xba9b0aed mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xba9f69ba devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xbac6a7fa should_remove_suid +EXPORT_SYMBOL vmlinux 0xbac7fe85 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xbac820ab blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xbaee1c7e security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xbafc346e devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1358c0 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xbb18851c nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb4d86df nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb52ea8a netdev_notice +EXPORT_SYMBOL vmlinux 0xbb60618e ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 +EXPORT_SYMBOL vmlinux 0xbb8d961a sock_no_bind +EXPORT_SYMBOL vmlinux 0xbb8e3b25 register_shrinker +EXPORT_SYMBOL vmlinux 0xbba37ef1 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xbba75607 down_killable +EXPORT_SYMBOL vmlinux 0xbba7e52e skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xbbad99dd sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xbbc42db3 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xbbceb594 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xbbd1ef6e dcb_setapp +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbf31c0e phy_device_register +EXPORT_SYMBOL vmlinux 0xbbf5639d fb_blank +EXPORT_SYMBOL vmlinux 0xbc1b9670 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbc254e76 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc40f8b5 udp_disconnect +EXPORT_SYMBOL vmlinux 0xbc427b57 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock +EXPORT_SYMBOL vmlinux 0xbc46fba0 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xbc4f391c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xbc509b46 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xbc6164ef get_vm_area +EXPORT_SYMBOL vmlinux 0xbc644f6f fsync_bdev +EXPORT_SYMBOL vmlinux 0xbc690980 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xbc7c7b82 block_truncate_page +EXPORT_SYMBOL vmlinux 0xbc8b3a66 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbc9d2e7a pci_disable_msix +EXPORT_SYMBOL vmlinux 0xbca66559 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xbca7cf68 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcad0c22 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xbcb56394 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xbcffd290 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xbd01283c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xbd12b0cb ps2_command +EXPORT_SYMBOL vmlinux 0xbd25c8a3 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbd316a9f sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd402ac2 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd491913 get_task_cred +EXPORT_SYMBOL vmlinux 0xbd520393 proc_remove +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd71b04b vlan_vid_add +EXPORT_SYMBOL vmlinux 0xbd72223e tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xbd76d6e0 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xbd816c8c nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xbd8438c1 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xbd8d8920 phy_init_eee +EXPORT_SYMBOL vmlinux 0xbd993715 param_set_invbool +EXPORT_SYMBOL vmlinux 0xbda802ee sock_no_linger +EXPORT_SYMBOL vmlinux 0xbdb498bf tty_port_close_start +EXPORT_SYMBOL vmlinux 0xbdc0fd67 d_alloc +EXPORT_SYMBOL vmlinux 0xbdc56c4f pci_write_config_word +EXPORT_SYMBOL vmlinux 0xbdc9be6c ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xbdd12669 fb_class +EXPORT_SYMBOL vmlinux 0xbdd79a2d qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xbddb10f9 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xbde4b858 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xbdf78c3c skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xbdf84d76 netlink_ack +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe3e2754 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xbe40ba0b touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xbe43c7bc dev_add_pack +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe58a551 mntput +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5fb9a8 stop_tty +EXPORT_SYMBOL vmlinux 0xbe64e56e phy_modify_paged +EXPORT_SYMBOL vmlinux 0xbe6eed33 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xbe93238e __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xbe973394 dev_uc_del +EXPORT_SYMBOL vmlinux 0xbe9e7663 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xbea62a2b csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xbea9b0a9 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xbec63700 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xbed1b5c3 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf07a548 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xbf186e36 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xbf2408cd tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xbf44f7c1 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xbf45ce13 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xbf474a69 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xbf48df5a tty_unlock +EXPORT_SYMBOL vmlinux 0xbf49ff1d end_page_private_2 +EXPORT_SYMBOL vmlinux 0xbf53e9fe __netif_napi_del +EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5ee79a backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbf7b690d blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbf8ab086 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xbf8e7a92 audit_log_start +EXPORT_SYMBOL vmlinux 0xbf972752 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa0280d sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbfb2517d __d_drop +EXPORT_SYMBOL vmlinux 0xbfb5c6d4 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfcfcafa inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbfe220ff kobject_put +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff00073 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xbff6bad5 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc00930ca get_tree_bdev +EXPORT_SYMBOL vmlinux 0xc00f6777 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc0204dd2 zap_page_range +EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc024f188 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xc02f1469 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xc0408d5b blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xc046cc6c kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xc04e6735 finish_swait +EXPORT_SYMBOL vmlinux 0xc051c7af __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xc0592433 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xc05f2866 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xc06ea307 thaw_super +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc099d2d7 path_get +EXPORT_SYMBOL vmlinux 0xc099d5cc vio_unregister_driver +EXPORT_SYMBOL vmlinux 0xc0af711b tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c23e91 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xc0cda8f0 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue +EXPORT_SYMBOL vmlinux 0xc0ecafbe cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc134b38b ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc17202a7 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xc177a5c8 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xc17ec796 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc19001fb i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xc1a73cf8 param_set_bool +EXPORT_SYMBOL vmlinux 0xc1cce654 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1ed52c5 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xc2066c25 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xc208e444 bdev_read_only +EXPORT_SYMBOL vmlinux 0xc229abb3 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2977953 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a9ba68 ilookup5 +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ede104 md_write_inc +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32eebcd sock_create_lite +EXPORT_SYMBOL vmlinux 0xc342a13c mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xc34a6c58 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xc34c26b2 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xc35e456d blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xc363997f __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xc36a80de qdisc_put +EXPORT_SYMBOL vmlinux 0xc36b7d10 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3929057 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xc3acebc4 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc3af2199 nf_log_set +EXPORT_SYMBOL vmlinux 0xc3b1cd12 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xc3c0eb90 dquot_disable +EXPORT_SYMBOL vmlinux 0xc3c37185 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xc3ea5167 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc3ff6dac __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc4526ac9 single_open +EXPORT_SYMBOL vmlinux 0xc469d1f5 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4c57a6d security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc4c96a4d phy_register_fixup +EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xc4d375ad mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xc4d9eec0 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc4df27bb sock_sendmsg +EXPORT_SYMBOL vmlinux 0xc5048ad4 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xc5092f63 mount_bdev +EXPORT_SYMBOL vmlinux 0xc50fac10 ethtool_notify +EXPORT_SYMBOL vmlinux 0xc5130e41 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable +EXPORT_SYMBOL vmlinux 0xc525d687 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xc536e9b5 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xc56bd15c qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59ec150 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5a5fa80 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5ce1492 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e1ae62 input_register_handle +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f1b5c4 of_iomap +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc604b78e __sock_create +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6147414 devm_iounmap +EXPORT_SYMBOL vmlinux 0xc61771f5 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc6238e5b phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xc62b790d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xc639f8a4 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xc63a0362 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xc65af6e2 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc65e8283 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node +EXPORT_SYMBOL vmlinux 0xc6660ca9 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6738c02 padata_free_shell +EXPORT_SYMBOL vmlinux 0xc6802633 vio_register_device_node +EXPORT_SYMBOL vmlinux 0xc6895894 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xc6a28d65 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc6a6f6a0 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc6b783dd end_page_writeback +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xc6dd13a9 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc7136a40 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc75e0c25 done_path_create +EXPORT_SYMBOL vmlinux 0xc76790ec wake_up_process +EXPORT_SYMBOL vmlinux 0xc7777d4e napi_build_skb +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78bb9a6 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a6e7b1 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc7b27869 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c4d423 kernel_bind +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy +EXPORT_SYMBOL vmlinux 0xc8065e1b pci_free_irq +EXPORT_SYMBOL vmlinux 0xc8225558 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84d077c __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8731f21 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xc87e3bea is_nd_dax +EXPORT_SYMBOL vmlinux 0xc8816ba9 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88e146b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xc88ee523 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc892b038 __find_get_block +EXPORT_SYMBOL vmlinux 0xc8970514 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a9ce00 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e1f33f dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc8fb8488 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc91f2df2 filp_open +EXPORT_SYMBOL vmlinux 0xc923ac58 set_anon_super +EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock +EXPORT_SYMBOL vmlinux 0xc961219d fb_set_cmap +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9655096 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc96add15 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97d7443 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a5b64a bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xc9a994dd dev_mc_sync +EXPORT_SYMBOL vmlinux 0xc9a9aa30 request_key_tag +EXPORT_SYMBOL vmlinux 0xc9c3ee1a phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e00b39 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc9ea8ab4 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc9ef6a65 __breadahead +EXPORT_SYMBOL vmlinux 0xca0cb158 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1544b7 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xca15b49a rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xca1cbaa7 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca414b30 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xca671756 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xca71bef8 sk_net_capable +EXPORT_SYMBOL vmlinux 0xca837d60 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xca92a12f build_skb_around +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcab3fbce skb_copy +EXPORT_SYMBOL vmlinux 0xcab9c38d __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcac77280 neigh_table_init +EXPORT_SYMBOL vmlinux 0xcaeb9d63 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafa2138 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb2dbc13 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb44ce20 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xcb4f7235 iget5_locked +EXPORT_SYMBOL vmlinux 0xcb65e190 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xcb683f3a scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xcb908ae2 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xcb90bd03 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xcbb148de blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xcbb96969 kill_pgrp +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd70e97 thread_group_exited +EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xcbddfad3 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xcbf1e789 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc336fb5 fqdir_init +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5d608d twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done +EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free +EXPORT_SYMBOL vmlinux 0xccb71046 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xccb95bf6 tcp_poll +EXPORT_SYMBOL vmlinux 0xccc66e43 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xccc80845 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccfe171e tty_register_device +EXPORT_SYMBOL vmlinux 0xcd034eae nf_log_packet +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2c62ad watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xcd356897 param_array_ops +EXPORT_SYMBOL vmlinux 0xcd3d513d simple_statfs +EXPORT_SYMBOL vmlinux 0xcd6b3b01 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xcd742d19 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd91c5b3 pci_find_bus +EXPORT_SYMBOL vmlinux 0xcd96c4cf put_cmsg +EXPORT_SYMBOL vmlinux 0xcda3d7d7 init_pseudo +EXPORT_SYMBOL vmlinux 0xcdb0457f uart_suspend_port +EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcf5d0d inode_get_bytes +EXPORT_SYMBOL vmlinux 0xcdd8610e inode_init_once +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xcdf74102 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xce0731f9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xce17366a srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xce1af04d __icmp_send +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3cab90 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xce450973 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xce4982f8 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5576cd touch_buffer +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6df7a4 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next +EXPORT_SYMBOL vmlinux 0xcea00bb5 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xcea13239 proc_dobool +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec1220c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xcec5feeb cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 +EXPORT_SYMBOL vmlinux 0xceca1cdb inode_set_flags +EXPORT_SYMBOL vmlinux 0xceeb2501 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf36a711 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xcf4271a6 mmc_put_card +EXPORT_SYMBOL vmlinux 0xcf50501e flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xcf97bfe6 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xcf99adb5 vme_bus_type +EXPORT_SYMBOL vmlinux 0xcf9a189a down_timeout +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa037e1 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xcfa60cf8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xcfb38b77 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xcfcecf45 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xcfdc8b86 genphy_suspend +EXPORT_SYMBOL vmlinux 0xcfef6f18 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xd009e002 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xd031ee8d seq_release +EXPORT_SYMBOL vmlinux 0xd04385a4 dump_skip +EXPORT_SYMBOL vmlinux 0xd048de84 lease_modify +EXPORT_SYMBOL vmlinux 0xd04a8986 pci_save_state +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd07046a2 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08c0277 __of_get_address +EXPORT_SYMBOL vmlinux 0xd0a31e1b bdi_register +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0afebe7 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd0b28360 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd0b5d3e5 phy_attached_print +EXPORT_SYMBOL vmlinux 0xd0d7bac6 i2c_transfer +EXPORT_SYMBOL vmlinux 0xd0f3ef80 genl_notify +EXPORT_SYMBOL vmlinux 0xd0f429b7 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11a318c __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd1290f26 update_devfreq +EXPORT_SYMBOL vmlinux 0xd1298bff __devm_request_region +EXPORT_SYMBOL vmlinux 0xd1389f73 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xd13e42dd scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd166820e unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xd172b11a ip_output +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd192ba60 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xd19b3c15 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xd1a9c324 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xd1bd186d task_work_add +EXPORT_SYMBOL vmlinux 0xd1cae0e5 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1eec299 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xd1f98464 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xd206db29 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xd208f376 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2272bf7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd2360389 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd24edde9 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xd251cdbd configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xd258152e cdev_set_parent +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25bb147 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26a46a5 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd298eecf ip_local_deliver +EXPORT_SYMBOL vmlinux 0xd2a10819 param_get_bool +EXPORT_SYMBOL vmlinux 0xd2a2bb45 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xd2c65928 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e233f9 simple_rmdir +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e73bcf mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd2e8bc07 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xd2f0e8db mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xd30ee1ae napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd30f95c8 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3396498 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xd34b0cde ip6_frag_next +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3547f78 blk_put_queue +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35e633f tcp_filter +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd39138e4 seq_putc +EXPORT_SYMBOL vmlinux 0xd39aae62 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xd3a54ca0 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xd3b08b85 simple_fill_super +EXPORT_SYMBOL vmlinux 0xd3bd4d8f tcp_conn_request +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3f32786 sock_set_priority +EXPORT_SYMBOL vmlinux 0xd3f8b241 netif_napi_add +EXPORT_SYMBOL vmlinux 0xd3f8c173 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xd406c0da memcpy_page_flushcache +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd40731bc mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xd41c4890 config_item_get +EXPORT_SYMBOL vmlinux 0xd4280211 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xd42c1697 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd436fb7c mdio_bus_type +EXPORT_SYMBOL vmlinux 0xd43ac643 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd44f61f1 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xd45b7779 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd469fa0c mdiobus_read +EXPORT_SYMBOL vmlinux 0xd47086f2 fiemap_prep +EXPORT_SYMBOL vmlinux 0xd47cbda1 d_instantiate +EXPORT_SYMBOL vmlinux 0xd47d9c40 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xd4855027 kset_register +EXPORT_SYMBOL vmlinux 0xd485bd05 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd48f5648 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4b1f541 devm_request_resource +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find +EXPORT_SYMBOL vmlinux 0xd4e4ae86 of_match_device +EXPORT_SYMBOL vmlinux 0xd4f42295 of_translate_address +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xd517fcc1 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53adbf3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd557c560 __devm_release_region +EXPORT_SYMBOL vmlinux 0xd558d711 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xd55b8624 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd55d2202 set_page_dirty +EXPORT_SYMBOL vmlinux 0xd57b6541 scmd_printk +EXPORT_SYMBOL vmlinux 0xd57e5d73 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xd57e6ddb sock_init_data +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd5934c3f phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xd5995c7d trace_event_printf +EXPORT_SYMBOL vmlinux 0xd5b12f7d radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5b89a22 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd5be130e cpu_core_map +EXPORT_SYMBOL vmlinux 0xd5cd74e5 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xd5d3ba94 vfs_create +EXPORT_SYMBOL vmlinux 0xd604f272 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6379961 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd64553cd mdio_device_free +EXPORT_SYMBOL vmlinux 0xd652d6e1 d_invalidate +EXPORT_SYMBOL vmlinux 0xd66ffd67 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6bbeeb1 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xd6ca40b4 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd6d71101 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xd6db3d9c xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f113fb security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd6ff7a80 param_set_charp +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70d7a4a inet_release +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73e0631 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xd7452a82 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0xd75935bb mdiobus_free +EXPORT_SYMBOL vmlinux 0xd773c4c2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xd77a1c8f mach_powernv +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7949af8 giveup_all +EXPORT_SYMBOL vmlinux 0xd7b34645 sock_no_accept +EXPORT_SYMBOL vmlinux 0xd7c0fb20 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xd7c1cccb netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xd7c743d0 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d9d717 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xd7da585f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd7e4bf16 phy_write_paged +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e929af i2c_verify_client +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8172854 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xd8259911 dev_addr_init +EXPORT_SYMBOL vmlinux 0xd82dfa32 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xd831f0ef unix_get_socket +EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xd85a9713 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd85c5f94 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xd85cdfd6 devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xd8637692 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xd8638fd5 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b429c1 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8dcc847 md_check_recovery +EXPORT_SYMBOL vmlinux 0xd8e4dbdb vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xd90e06c0 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd91b9dac dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xd927aaf0 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xd93aabd3 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd941a7b4 dev_set_alias +EXPORT_SYMBOL vmlinux 0xd9477a71 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd976be7e param_get_invbool +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98d10dc sock_alloc_file +EXPORT_SYMBOL vmlinux 0xd9af63c4 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd9b8e0ae scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9cc6594 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xd9ce83e7 phy_disconnect +EXPORT_SYMBOL vmlinux 0xd9d5d805 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e61c6e sock_wfree +EXPORT_SYMBOL vmlinux 0xd9ed397a ip_check_defrag +EXPORT_SYMBOL vmlinux 0xd9eef806 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd9f13db2 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd9f9117e __block_write_full_page +EXPORT_SYMBOL vmlinux 0xd9fc383d devfreq_update_target +EXPORT_SYMBOL vmlinux 0xda172b4d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xda177053 _dev_printk +EXPORT_SYMBOL vmlinux 0xda29444c pci_set_mwi +EXPORT_SYMBOL vmlinux 0xda36f313 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda50644a devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xda5be559 to_ndd +EXPORT_SYMBOL vmlinux 0xda5eb7b0 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xdaa126a4 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xdac0ccf4 vfs_setpos +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdafdf642 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xdb0d1bb3 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xdb0f1c1e get_watch_queue +EXPORT_SYMBOL vmlinux 0xdb3242f5 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xdb4263c5 qe_pin_request +EXPORT_SYMBOL vmlinux 0xdb43deb3 tcf_block_get +EXPORT_SYMBOL vmlinux 0xdb5173d0 agp_enable +EXPORT_SYMBOL vmlinux 0xdb63c354 security_sb_remount +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdba0e773 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc040444 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xdc07ef2d devm_free_irq +EXPORT_SYMBOL vmlinux 0xdc130a01 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3e0982 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init +EXPORT_SYMBOL vmlinux 0xdc449073 phy_find_first +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5ff503 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xdc690bad jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xdc6b1e3e simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xdc72cca3 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xdc7ba89a qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xdc8340cb of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xdc8d2f07 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdca1c829 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xdcb127e6 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdccedd44 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xdcf860b3 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xdcfbf595 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xdcfcabb4 da903x_query_status +EXPORT_SYMBOL vmlinux 0xdd02fe46 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xdd1092b9 dquot_file_open +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3c49d3 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xdd44f9e0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xdd5f5c75 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd66dddf d_move +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddb63256 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xddb6cbf4 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xddb95c58 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0xddcf20eb devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xddd53ddf skb_vlan_push +EXPORT_SYMBOL vmlinux 0xddd8e915 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xdde12692 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xddef7964 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xddf999aa dns_query +EXPORT_SYMBOL vmlinux 0xde149377 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xde21e7b6 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xde3a52b0 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xde461484 set_groups +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde56137b sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xde714070 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdebcfc47 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded545cd tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xdee4c7eb nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xdeecf49a kobject_init +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefce8a1 inet_protos +EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf15ff7a key_type_keyring +EXPORT_SYMBOL vmlinux 0xdf195083 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xdf237634 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2c8c22 d_drop +EXPORT_SYMBOL vmlinux 0xdf344383 netdev_update_features +EXPORT_SYMBOL vmlinux 0xdf45344f copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6207da genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xdf6bbb7c ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xdf6ec0b0 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xdf731ed2 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xdf7eb019 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xdf8b69c8 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xdf8d12f3 dev_mc_del +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfa1e7a7 srp_timed_out +EXPORT_SYMBOL vmlinux 0xdfa99485 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xdfc0b184 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdaed1f security_sk_clone +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfec3cc3 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe01fbbd5 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0xe02e34dc devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe03196da tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xe036a087 datagram_poll +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04a3ea2 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xe04cd99e netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe04f23f6 keyring_alloc +EXPORT_SYMBOL vmlinux 0xe062bde7 read_cache_page +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0873d00 dev_uc_add +EXPORT_SYMBOL vmlinux 0xe08f800d security_path_rename +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0a78c47 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xe0af6a04 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b41e22 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0cac44e cdev_device_add +EXPORT_SYMBOL vmlinux 0xe0deb241 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xe0e2aac7 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe105eb0d dcache_dir_open +EXPORT_SYMBOL vmlinux 0xe1073a32 vio_unregister_device +EXPORT_SYMBOL vmlinux 0xe10f193b tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xe113041f max8925_reg_read +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe12119ec kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1389d15 input_unregister_device +EXPORT_SYMBOL vmlinux 0xe1414a63 radix__local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0xe14c3ec4 mpage_readahead +EXPORT_SYMBOL vmlinux 0xe15ab89a md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xe19d7086 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1ae6469 pci_disable_device +EXPORT_SYMBOL vmlinux 0xe1b68a6e __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e20a53 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xe1f0ceb3 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xe1fa7d6b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xe2187151 par_io_of_config +EXPORT_SYMBOL vmlinux 0xe21df6ef dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22d5dad inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe22f0054 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe24c5da0 __lock_page +EXPORT_SYMBOL vmlinux 0xe256684f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe28796b5 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xe28a9e16 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xe28f5f60 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xe29f5242 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xe2a27b07 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xe2b1dd08 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe2c562ab inode_permission +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d8b0a8 inode_init_always +EXPORT_SYMBOL vmlinux 0xe2e28e71 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xe2f4dcac sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe2fa3dfb netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xe30c8378 input_release_device +EXPORT_SYMBOL vmlinux 0xe310b1e0 filp_close +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe339d40e __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xe36e68dc jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe377096c mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xe383baba add_to_pipe +EXPORT_SYMBOL vmlinux 0xe3925416 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3ab4e41 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xe3adc2bf pci_domain_nr +EXPORT_SYMBOL vmlinux 0xe3b4eac5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xe3badb7d vio_get_attribute +EXPORT_SYMBOL vmlinux 0xe3dc06ad ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xe3e3bc76 page_get_link +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe4109a62 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xe4159646 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe418a7d8 vga_get +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe43ffd51 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xe442f6fa xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xe44c4a1f xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xe470a5d9 neigh_xmit +EXPORT_SYMBOL vmlinux 0xe4a4f85d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c80f85 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe4ed276b textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xe4efb700 register_sysctl +EXPORT_SYMBOL vmlinux 0xe5029d7b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 +EXPORT_SYMBOL vmlinux 0xe513e70f of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xe51d1a2f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe532c33c of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xe56b2614 tcp_req_err +EXPORT_SYMBOL vmlinux 0xe56c7d85 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5b15613 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xe5bc9a53 slhc_free +EXPORT_SYMBOL vmlinux 0xe5c2f5af inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c8f30d pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xe5cf9663 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xe5d372b4 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xe5d8f966 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xe5da72d0 vfs_getattr +EXPORT_SYMBOL vmlinux 0xe5ea3213 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe5f4733f unregister_qdisc +EXPORT_SYMBOL vmlinux 0xe5f57218 rproc_detach +EXPORT_SYMBOL vmlinux 0xe60202ba devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61a5054 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe63e1d76 sock_i_ino +EXPORT_SYMBOL vmlinux 0xe6449e13 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xe66723ed shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xe67d1358 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xe67d9051 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xe67e1b5d filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xe68526a8 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xe6b25e8a rproc_free +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d85954 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe6dbcff4 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xe6e2f0d8 unlock_page +EXPORT_SYMBOL vmlinux 0xe6f027cf vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xe708935f paca_ptrs +EXPORT_SYMBOL vmlinux 0xe731dc95 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe74e5287 bio_put +EXPORT_SYMBOL vmlinux 0xe754d1b5 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger +EXPORT_SYMBOL vmlinux 0xe772cd83 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe77c8562 pci_pme_active +EXPORT_SYMBOL vmlinux 0xe77da006 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xe77df7ef migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xe79f8348 eth_header_parse +EXPORT_SYMBOL vmlinux 0xe7b663bd mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7daf6a9 misc_register +EXPORT_SYMBOL vmlinux 0xe7e6510c netif_device_attach +EXPORT_SYMBOL vmlinux 0xe80e411c ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe812c399 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xe81fb023 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe82654df pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xe82d11e3 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xe83b80ce phy_attach +EXPORT_SYMBOL vmlinux 0xe869ca84 kthread_stop +EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xe87e5e95 config_item_put +EXPORT_SYMBOL vmlinux 0xe889c44a tty_lock +EXPORT_SYMBOL vmlinux 0xe89ce71a skb_append +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8b80834 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xe8c26b34 tcp_child_process +EXPORT_SYMBOL vmlinux 0xe8cb9f05 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xe8dbd1a3 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xe8e35050 xp_alloc +EXPORT_SYMBOL vmlinux 0xe8ec1efa simple_open +EXPORT_SYMBOL vmlinux 0xe8eda6ae deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xe8ee27a3 bioset_exit +EXPORT_SYMBOL vmlinux 0xe8ee7dc0 udplite_prot +EXPORT_SYMBOL vmlinux 0xe9095fd3 simple_getattr +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90fc46d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f2e79 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xe9255d0a input_event +EXPORT_SYMBOL vmlinux 0xe93bb518 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe93ee32d iov_iter_init +EXPORT_SYMBOL vmlinux 0xe9466e8a tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9746827 md_error +EXPORT_SYMBOL vmlinux 0xe9898feb sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe98a9c39 __alloc_pages +EXPORT_SYMBOL vmlinux 0xe9986262 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe99aefcb d_lookup +EXPORT_SYMBOL vmlinux 0xe9b88fd7 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe9bb5e37 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xe9e10680 vmemmap +EXPORT_SYMBOL vmlinux 0xe9f26f09 tty_vhangup +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xea09ea42 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xea0f4938 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xea2b2028 is_subdir +EXPORT_SYMBOL vmlinux 0xea319fd1 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize +EXPORT_SYMBOL vmlinux 0xea46cb8a kill_pid +EXPORT_SYMBOL vmlinux 0xea5441b5 inet6_release +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea7a3510 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xea7f6579 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xea80fc0a of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xeaaa4e5e xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xeab97823 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xeac852ff register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xead11994 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb0d1eba pci_read_vpd +EXPORT_SYMBOL vmlinux 0xeb10002f sock_kfree_s +EXPORT_SYMBOL vmlinux 0xeb14a185 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xeb1bd89b pci_claim_resource +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb3701bf flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3fb907 _dev_emerg +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb5357ca dquot_commit +EXPORT_SYMBOL vmlinux 0xeb5c13fd inet6_ioctl +EXPORT_SYMBOL vmlinux 0xeb64e8e7 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xeb67a738 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xeb683b21 bioset_init +EXPORT_SYMBOL vmlinux 0xeb69b22c radix__flush_all_mm +EXPORT_SYMBOL vmlinux 0xeb77e780 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebbbb53b proc_mkdir +EXPORT_SYMBOL vmlinux 0xebcf294f generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xebecaebd con_copy_unimap +EXPORT_SYMBOL vmlinux 0xebf04184 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xebf14644 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xec0f097a neigh_for_each +EXPORT_SYMBOL vmlinux 0xec1b39bc set_security_override +EXPORT_SYMBOL vmlinux 0xec1bfbd6 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xec1cf5e3 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec3566b5 inet_add_offload +EXPORT_SYMBOL vmlinux 0xec357500 dev_add_offload +EXPORT_SYMBOL vmlinux 0xec43d8ab generic_update_time +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xec54236c nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xec782a07 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xec8ce4ae bio_devname +EXPORT_SYMBOL vmlinux 0xec91055a sock_no_listen +EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start +EXPORT_SYMBOL vmlinux 0xec9ea9e8 tty_port_init +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecbe5e01 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceb9a8d dget_parent +EXPORT_SYMBOL vmlinux 0xeced1c86 srp_rport_put +EXPORT_SYMBOL vmlinux 0xecfd8c19 input_inject_event +EXPORT_SYMBOL vmlinux 0xed0be0e2 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xed19c3d4 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xed2f5a70 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xed41da29 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xed4df783 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xed51272c ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed539fa9 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xed62ee81 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed831802 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xed9ef44a netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xeda8e994 keyring_clear +EXPORT_SYMBOL vmlinux 0xedaf4b39 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xedb47a43 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xedba2fb8 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbe9389 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedf4828d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xee1b0663 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xee1b21ce phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xee2a2862 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee324d35 d_alloc_name +EXPORT_SYMBOL vmlinux 0xee3d0a79 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xee51bc87 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6d2f97 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xee6ef4f3 sock_alloc +EXPORT_SYMBOL vmlinux 0xee84f400 sock_edemux +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee8ef74e down_read_killable +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee945080 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xee96fa14 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xee9bb4c8 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xeea5e403 wireless_send_event +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeead4ae9 rtnl_notify +EXPORT_SYMBOL vmlinux 0xeeb05ed3 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xeed0e94d tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeef03a18 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xef1284e8 notify_change +EXPORT_SYMBOL vmlinux 0xef197efc seq_escape +EXPORT_SYMBOL vmlinux 0xef19932e do_SAK +EXPORT_SYMBOL vmlinux 0xef301ff9 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xef4dce1e drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xef577f43 send_sig +EXPORT_SYMBOL vmlinux 0xef579301 device_add_disk +EXPORT_SYMBOL vmlinux 0xef6624cf serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xef672461 __register_binfmt +EXPORT_SYMBOL vmlinux 0xef6940bd netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xef728d20 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xef8b77e3 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xef98dad5 serio_interrupt +EXPORT_SYMBOL vmlinux 0xefa96ca3 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefcbaedd dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xefd27408 mdiobus_write +EXPORT_SYMBOL vmlinux 0xefe41dd2 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xefee09de tcp_time_wait +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf02526fc dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock +EXPORT_SYMBOL vmlinux 0xf03a725b devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xf03dd934 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xf040c3a0 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xf04457ac cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xf0564f81 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xf056e701 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf0705e90 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xf072d127 d_add_ci +EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf07e9b94 empty_aops +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08d3520 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0d022f6 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xf0dfbe3f rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xf0f0c5f4 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf0f2e037 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf0fb9ef9 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xf102033e slhc_remember +EXPORT_SYMBOL vmlinux 0xf10b80a2 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf124af15 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf151bd96 generic_write_end +EXPORT_SYMBOL vmlinux 0xf15dc2bf single_open_size +EXPORT_SYMBOL vmlinux 0xf16138d7 napi_get_frags +EXPORT_SYMBOL vmlinux 0xf161eaae iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xf174a093 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xf187c03c dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xf18f93bd set_disk_ro +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a84cbf tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xf1a8c582 mount_subtree +EXPORT_SYMBOL vmlinux 0xf1b59ab7 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xf1c95b71 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e88e7d __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ee690d xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf1ee9cb4 dquot_initialize +EXPORT_SYMBOL vmlinux 0xf20d9312 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf241461f __xa_insert +EXPORT_SYMBOL vmlinux 0xf249c9e3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf2512a55 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xf2638348 ps2_drain +EXPORT_SYMBOL vmlinux 0xf26fa9d7 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xf27dcbb5 user_revoke +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf2934391 import_iovec +EXPORT_SYMBOL vmlinux 0xf29771e7 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a0b0b7 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xf2a0f901 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xf2a47a06 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf2ac1c0c fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xf2aebd8f shmem_aops +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d9263c devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f165d3 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f70883 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xf3061261 follow_down +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf317cf5b xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf322d940 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf367ab14 igrab +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b07efe scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf3b2dc9b page_pool_put_page +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b7766b md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xf3c31aed xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf3c45455 inet_addr_type +EXPORT_SYMBOL vmlinux 0xf3c86642 load_nls_default +EXPORT_SYMBOL vmlinux 0xf3ce3e55 dma_map_resource +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e8c4c7 mmput_async +EXPORT_SYMBOL vmlinux 0xf3f3ecff md_done_sync +EXPORT_SYMBOL vmlinux 0xf3f7454e sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xf3fd98aa security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf41eee76 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xf429ac26 _dev_crit +EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring +EXPORT_SYMBOL vmlinux 0xf438f9fb dm_kobject_release +EXPORT_SYMBOL vmlinux 0xf43e769f vme_irq_generate +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf46714ac vga_con +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48efe4d dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4cd0798 vfs_get_super +EXPORT_SYMBOL vmlinux 0xf4d50d18 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4df0099 cred_fscmp +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf504fff4 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xf52824a0 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf561fcfd param_set_ullong +EXPORT_SYMBOL vmlinux 0xf5644b06 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf597264b napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b2e290 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xf5c16694 netlink_set_err +EXPORT_SYMBOL vmlinux 0xf5db875a mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf603a8b1 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xf60c2dce truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63b4887 pci_get_device +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf649b1c8 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xf64dbe41 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xf65777ee put_disk +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf66f5997 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6828d0f ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf685744c xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xf6abf14c dev_uc_init +EXPORT_SYMBOL vmlinux 0xf6ad49d0 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xf6b2bb5b ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xf6cf46bc of_clk_get +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f1fffd netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6ff70aa ip_options_compile +EXPORT_SYMBOL vmlinux 0xf719fddc ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xf720f489 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf7279972 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xf72966ca dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73bda27 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf73d7b44 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xf741263b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xf76090ed module_layout +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf776c5db prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf78a0e3d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xf7aa777b tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xf7aa8870 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7e4f05d inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf7f11d36 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xf8055fe6 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf812e574 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf822a4c6 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xf828daa6 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82b14a7 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf872fa7b complete_request_key +EXPORT_SYMBOL vmlinux 0xf8744058 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xf885c070 noop_qdisc +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8ab6365 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xf8ac9700 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d7242e netdev_crit +EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90202f6 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xf92d4a44 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xf939abd6 pipe_unlock +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94491e8 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf995dedc ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ace9d0 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xf9ad257c __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9dc32e8 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xfa057302 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa64a0f5 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xfa745fe2 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xfa84eef1 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa8bdb34 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xfa8f9f1f eth_validate_addr +EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xfa9e55c4 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfabe0a2f page_mapped +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad541c7 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xfb0b9bf1 input_grab_device +EXPORT_SYMBOL vmlinux 0xfb110014 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xfb152539 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xfb1dd574 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3a4233 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xfb45c1f0 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb732c8f proto_register +EXPORT_SYMBOL vmlinux 0xfb875c1c __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xfb8b25e3 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xfb951934 __inet_hash +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbac6e6e cfb_copyarea +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe178e1 phy_read_paged +EXPORT_SYMBOL vmlinux 0xfbeebf38 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xfc056d8f vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0xfc198352 override_creds +EXPORT_SYMBOL vmlinux 0xfc355345 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3cd256 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xfc41a3c4 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xfc4925bb of_device_register +EXPORT_SYMBOL vmlinux 0xfc55dd7f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xfc597d0d tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xfc61634a seq_lseek +EXPORT_SYMBOL vmlinux 0xfc7b2756 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xfc80f5d7 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xfc8bfe12 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xfc91a314 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xfc9710ec of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xfc9cad5a dma_resv_init +EXPORT_SYMBOL vmlinux 0xfcac80b0 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xfcaee07a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xfcc2d14d free_netdev +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd58643 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xfcd85419 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xfceaf0bc flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf4d619 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xfcfd4e76 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xfcffe023 get_agp_version +EXPORT_SYMBOL vmlinux 0xfd135fe7 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xfd2ca1bc dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xfd2d1186 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xfd2dcd27 simple_link +EXPORT_SYMBOL vmlinux 0xfd3f3df5 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xfd3f6649 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xfd43f1c8 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xfd464a05 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xfd4a7a62 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfd4d1b79 backlight_device_register +EXPORT_SYMBOL vmlinux 0xfd788eca ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xfd834998 del_gendisk +EXPORT_SYMBOL vmlinux 0xfd8f0e21 xp_dma_map +EXPORT_SYMBOL vmlinux 0xfd9c3379 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xfda67336 I_BDEV +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdaf250c locks_init_lock +EXPORT_SYMBOL vmlinux 0xfdb26279 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdd6bbad __wake_up +EXPORT_SYMBOL vmlinux 0xfde1256d netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe176df9 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2d37e5 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xfe2e30b0 sock_wake_async +EXPORT_SYMBOL vmlinux 0xfe2ef216 generic_read_dir +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4b1d81 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9915cb vlan_for_each +EXPORT_SYMBOL vmlinux 0xfe9b7d26 netif_rx +EXPORT_SYMBOL vmlinux 0xfeb5773c devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeb62076 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee8de6a _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff085640 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xff1440e2 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff18f457 readahead_expand +EXPORT_SYMBOL vmlinux 0xff1d7352 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff204d43 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xff206ccd ptp_clock_register +EXPORT_SYMBOL vmlinux 0xff25223f neigh_direct_output +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff32c4f9 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xff402a26 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xff4be0ed set_blocksize +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff73b759 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xff76f7c6 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xff79cafd fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xff863f9d jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xff9ab269 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xff9f403c follow_down_one +EXPORT_SYMBOL vmlinux 0xffa28168 iunique +EXPORT_SYMBOL vmlinux 0xffac1f2e pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xffb00d29 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff90432 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x00d5bb1c kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x01a96f2e kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x020b5c8c kvmppc_xive_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x032560b3 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x03fc8a04 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x05169da1 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x057399d9 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0b33be08 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1084fa03 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x144c0b4d kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x16b7657b kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x182a54eb kvmppc_core_queue_machine_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x18587e92 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1aa28c0f kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d045c5a gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1e9f69e8 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2535628d kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27ab47f1 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2cb89465 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3bb8327e kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3df7e9b5 kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3f0a4389 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41e23d7a kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41eb1ee2 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44c100ab __SCK__tp_func_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x468dbbab kvmppc_xive_pull_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4d315abd kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4d629f01 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x521b8bc0 kvmppc_xive_rearm_escalation +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x52b8f995 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x541d37b9 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x55fe044d kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x563e3fa0 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x58e8257c kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5bfa1c4b kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5cd8ee82 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x604b03bf kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x611d8d98 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62c66b2d kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62d94ee1 kvmppc_xive_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65248568 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x66066f2a gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6620e750 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x66601cbf kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x702b6320 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7110be3f kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x721a862f kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x72edcec1 file_is_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x772ebd6c kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x77c21c63 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7936b953 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7b0109f7 kvm_vcpu_gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3b3e08 __traceiter_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d71c086 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7efc9a9f gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8044f720 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x81043800 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x81f8a0ee kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x823c679c kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8baf2284 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8bdc3907 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e8abdda kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x908e881c kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x93a3a5b2 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9862390b kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9edeee0b kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa381e78c kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb31edb68 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb472ab6c kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb62cd490 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb698959c kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb756e289 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf6d4c22 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc087b31d kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc926413c kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc98b2b60 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc344109 kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce09ff91 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce94b7fb kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcf53f612 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1bb37a0 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd57a4644 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd6f34865 kvmppc_xive_push_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd8d5e0ef __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda202ff3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdf5d4a6e kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe05bba8e kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe2aa9cd0 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe323461f kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe36b1e8f kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe52de7aa kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe56a6baa kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe70dad54 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe8a25d7c kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeabcdae3 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xec595ab2 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xed8562bc kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf017de62 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf1f95117 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf3a5e722 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf5fc8cc3 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf68571a8 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf739571f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf98a3f6e kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfc68d7d4 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff74f8c4 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x4350ad3c kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x12172c59 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x16059b52 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x1615245d af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2a38ed19 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c740a53 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x552c7214 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x566d9321 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x568c4943 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x6410ba59 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6df5a40e af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x730907c9 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x7a7c3c67 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8cc1c3b6 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xb28a84ae af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xba14906a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xe51b4163 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6b2b5bb af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xe80a8142 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x37580011 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x98a99d84 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0115cff0 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x35299c83 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x88f63563 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x898b80fc async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2c8cada0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x479d6eab async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xabd5a4a1 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe06d8254 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x11a11e9a async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x206b06e5 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9ec87cca async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc7ac64ed async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xc9222596 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0cbffae4 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x823f29da cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x037dc195 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x27219ced cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x49371f24 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4ede50cb cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x575863c8 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8231b6fe cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x8dc6387d cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd0a61669 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xd2b0607a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd03f344 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf621850d cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfd6f5222 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xfdc8764f cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08f19fb8 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1fe91094 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x26aa153a crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x29088195 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x29ae8551 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3195f780 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x574be303 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5b61bb79 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6e17c4ad crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7040ae57 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7d47dda4 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9f922473 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb5a2e896 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4dbefd91 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0xdb5272e6 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0ddfe7e8 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x32b4c3f7 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39e1a89f ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3faac3ce ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b405665 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4f3352f4 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5c3d92dd ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ec151b8 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5fa11d85 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6520bdcb ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7c2abc9f ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8170e183 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8dba75e1 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ba9b995 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa67ffbec ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad47c60e ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbaf41b04 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcec8849 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc0f2f993 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd55f65e4 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd993120a ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3792d4c ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea8e6a7d ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2b60818 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x04022410 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x06a294c1 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x099b6320 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x11c90709 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x48237f3e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x48ba9bf4 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x799b2f76 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x917a0c58 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9d1602f8 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd68927a9 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd87d6ddf ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd9786c74 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdaba7f7f ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xde226869 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf7091c39 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfb651299 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x3060a730 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x9ad8a455 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xa22afdaa hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xc369090d hd44780_common_shift_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0xf360d788 hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x0845ccd7 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x87a28818 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xa575b7e7 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xb000a544 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xe1c56389 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x095d8e77 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb2b91037 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x8aa249b9 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xfa5c5904 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xd7010fbc __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xff66bb85 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x14c7f62b __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2cccb994 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x58f19874 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x73b2b8b5 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x32eb6e2e __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8fab178b __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01b3dfdd bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x020d7f0b bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a48ae3a bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17340b79 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x194f8b1a bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f4b5b5d bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x213d3d74 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3dc6b82b bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6537a2b5 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6ebb0503 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70d10ba3 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80aeea12 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8222fce2 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x831848f4 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x866b4272 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94850405 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x977e491d bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9965db3d bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4a514f0 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbce1d3e0 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3fdd102 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcb98461 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeada292a bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf7cb9374 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1194b4d6 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x266b3704 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x32964a7a btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6331de22 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8249e35f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb59e2fa0 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbe3dfc22 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf1696ca7 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05296419 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ed9904c btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x15773b95 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x163b676a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21572d55 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2592f551 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c27358d btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c856df7 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x320e88e3 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3d9a835c btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c0416a9 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7a83515f btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbb4d2ba4 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf92f8d6 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe32e6901 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf0a7c76a btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x31fff557 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3bdf89be btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d45a5f3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6cb04673 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x912ec1f4 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x939a1e70 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa54ad49e btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd77067bc btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe96e499c btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf1a2108a btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfe953e4b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x06024454 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x135fad11 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbb838a04 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc57c219b qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xff4f5037 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0a4f1be2 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5248210d btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5a78092a btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb1efbec5 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcc65a03b btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf543db7d btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x04b363b3 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x272e5399 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x93f23c24 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb3b56dbe hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x0c98d940 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1407c38d mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1b5a8b9f mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x1f83a559 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x353507a0 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x4686341c mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x52ee49b1 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x544a81c6 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x5802c11e mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x585b77db mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x6eee6957 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x741d20f0 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x78caa253 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7a52401a mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x7b6f035c mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x821f797a mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x8c22410a mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0x9824f4ba mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xa53f9e47 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xae125d88 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb1dbac22 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb4faf903 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xb9460bbc mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xce8c7b43 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xd2b52f58 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdb296ac3 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xdd030792 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xeb6817ac mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/core/mhi 0xfd32a7a5 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x33a2bfc9 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x48832a20 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x873fb464 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xad2681c0 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0929ad29 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0a663e56 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1a23e7dc comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e74620c comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x245910f7 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29a99c07 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x333e2903 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34a10566 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4760bc57 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4dbb3b8e comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f9162f0 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56798ac4 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b4db66e comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5f733195 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x641c1cba comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6b34ddc6 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6cbae2c7 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6d216798 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x79107397 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a22881b comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x82471582 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8368c027 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x905a00a4 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x99da1fa3 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9fd0db4f comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa4d4fe5e comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf0f2f69 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1e3c0fd comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb23ffaec comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc420f282 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc66cfdc3 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd1fcda99 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd5d6df78 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xef1b6625 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf20fd301 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf275d232 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0846c0fa comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x33c18f9b comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x39e4b549 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x467a9306 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5b8b5f9e comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x690a8bef comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xde002c1f comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf8d23a13 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0295ae2a comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2fea2dac comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x83e05bfc comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xae0d09e9 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe95e3206 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xef2c70e0 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xa8061ad8 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x9600bb32 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xdc17645e amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x61d039a0 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0644c66d comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2a22b238 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x537d6cd7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7447f2b1 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x77ff134a comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x860d1dee comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x89bc8f7b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8a48605b comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9fd3f0d1 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa0d96743 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbd8ef834 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcf3e356e comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xefd41c80 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0124a32e subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x2f67ed65 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x494dbb5a subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x32eb96a7 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x82b05dad comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xdc0d9b85 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xe53bfd3e das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x02c4cad6 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0a20781d mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0d7496d3 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2a3b69c1 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3b947aaf mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3c77870b mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x81652ae7 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8da9cc7d mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9139e2ee mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x93ed16d2 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa982719e mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb77e5912 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd78d3f91 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe0c608ed mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe8025877 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf8b97cd5 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x9bb5db7d labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe03058e2 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x015e771a labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5f67f098 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x9c6e2eae labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xbd485e8d labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xd4b228c9 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0f2ee6ae ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x28a56535 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2d0840c5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3c000a9a ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x417d2e92 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4bbc2137 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x567e9d4d ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5d24038d ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6522bc7b ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x78fda383 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8b753086 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9a498453 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xad9d7ee8 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb6729e36 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcfe8beb4 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd004a3c1 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x083bc523 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0f7575c7 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3efde7c6 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb55a54bd ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe3d495e8 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf3e28aec ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1647761b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x29aff556 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x59c3d0e2 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x63cef918 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa914a81b comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xab3a24b6 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd30bb9b7 comedi_close +EXPORT_SYMBOL_GPL drivers/counter/counter 0x01aab51b counter_count_direction_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0x06387727 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0ac4ed2c counter_signal_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1026b9da devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2b4cea9b counter_count_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x3839c3db counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4b273b36 counter_device_enum_available_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x64e76777 counter_signal_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0x80ffa018 counter_device_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8b7d85cd counter_signal_enum_read +EXPORT_SYMBOL_GPL drivers/counter/counter 0x93e26921 counter_device_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xdbf1382b devm_counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee526d0f counter_count_mode_str +EXPORT_SYMBOL_GPL drivers/counter/counter 0xee562d9a counter_count_enum_write +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf4ab87bb counter_count_enum_available_read +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x8517022a nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x9d0c1103 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xcff4b130 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xf3d20837 nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xf6745e74 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x3ecbceeb __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x689e049d dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x940f8b6c dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02d1184d dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02d85cbe idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x25c9a96c idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x52d2df94 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa142d4e1 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd48bc24c dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf3774954 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x149c02bf fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2fe90676 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x639ecf92 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x81d70696 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x932b890f fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9a122c5c fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9b38ee0f fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9cfc3057 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbf8008d1 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd91d9e58 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdb6585a9 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdb9797cc fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe6eb1e5f fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf1b12f0f fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf3bc1ab5 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf5b3c349 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xa3188878 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xac019715 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x09c0a5d4 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0fb20644 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x0fb6e204 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x42d1cc9e vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb6dd9e42 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x8eabd93b alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0267b289 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x053d7c4d dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x09986d13 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2930a842 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x331df43e dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4d3f89fd dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x56334965 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5a6a6cab dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5cd8e1a2 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x63e49bc4 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x75d3718b dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x76cc3d01 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8234a456 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x835a483b dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x972e769e dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xacb1faac dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb43182af dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1a4ceaf dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd822d6b9 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdb56e6bd dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1342e61 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf275c3f0 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf796e67f dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1c747bb2 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2263e7e1 devm_fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2de5f7e8 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x31ad59de fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4f21e178 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7b873f1a fpga_bridge_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x807eaf6b fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x942c6463 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9f641fc5 fpga_bridge_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa1e295a2 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc9ebb8e3 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdf6d2a93 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1185e6be fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x52ba2b75 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8089e74c fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x839e77ef fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8e3a60ee of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xada10813 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaf21e870 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb581fb66 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc281a180 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdbe6b87e devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdd632611 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe01e618b fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xea59b962 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeb1f7e21 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3bd7f33e fpga_region_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5b511974 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5cbe5650 fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6e9e2f95 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9162e294 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9f34df5f devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd286657c fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11c59e17 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2b77c599 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5ff9a002 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x87351e1a fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa4afb465 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xae9d247b fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb31981a7 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd2bfcff4 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd8d5d63e fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfd5d1af1 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xbcf383f8 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x103dcc3f sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x79d42313 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6e9c9539 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8b4c58cb gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xaff357cb gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc152c1e3 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xebfe9f4b gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2799f369 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x44ca9545 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4f4281b0 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6335af77 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xeed09d5f gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x193328bb __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3be0048f __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x319a3805 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x37876807 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x50199039 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x510c1b78 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5e845b1a analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xaa64ce95 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcdfdaa38 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xdc6c173e analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x225eb8ed dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x381b6572 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9477a08b dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xfeaa79bf dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x001d9c0b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b4a054c drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2940aaa1 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2efeddcc drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41895667 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43161ff0 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x45a19c9a drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47b278de drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4f0311b8 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5681ad28 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6717b935 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6b63cd5d drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6be5b9e5 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74d0ea8b drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x78607fd7 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x793227ad drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81f15c79 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x90895662 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96a418c4 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d49378c drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa256f791 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb05562c9 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbb1a3d1b drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2d20d80 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7355c9c drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcb3ee2d1 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd70c00a9 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb655708 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe686a5eb drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xecd424de drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xed04b42e drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf218ad0f drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2306dea drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfb52f18f drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfce5ea0e drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x9830d54b __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xad470da1 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xca1b36f9 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xe517c3ad devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1336177a drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1bff1121 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2986fb0a drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2a7c6bc2 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5df71ccb drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6558f5c6 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x65ae28b5 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x897f280c drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8f17c8f1 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x957ea525 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb3d6b9bb drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbf40425d drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe87b0538 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x5fe32984 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc878078d s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0cbe3ae0 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1dbd9cf0 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e9a164b gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x240b6dcf greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26999b6f gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26d5d40f gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29096354 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x30c69c47 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3827c3c0 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d213931 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x530642ee gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x540a8f58 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x562da95f gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5824b205 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x599aba13 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62ef6f34 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x642b4e08 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64dbf8b4 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x681600b0 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68606406 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b59e59f gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71f3d20d __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72954675 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77f4267f gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7eda4472 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x80959955 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9069aa96 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98eae0ed gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb14fc721 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9561f5c gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9c403f7 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf11e244 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0e99517 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc36fd705 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb4f67f9 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe354deb2 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe7c5d4e0 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb2b11fa greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf1eee8d6 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf1fa392a gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2532317 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3165e39 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa192644 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x082c6ae5 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08352432 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c4e5835 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0eeb3cd5 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f7f2b26 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x102b457f hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11bc700b hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14c5168b hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b1027e7 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f09ce73 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3850d6f3 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cc690b9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3cd1f9d9 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e30ef5a hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46e300b6 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ddeabc4 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x584a19fa hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d881afd hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f5b08d4 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6738911e hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x736e0985 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7710d5da hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8100be9e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8772aafb hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89f56e78 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8faea298 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x976d9e9e hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7afb0bb hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xadf21826 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1aa83f6 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1ce5f6f hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9cc43fb hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbbb54e81 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbee909a9 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc77f9aa5 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0e1a083 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4ffe16f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde6a377b hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe49f5aca hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe6f59508 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe712412b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8a93635 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebb03b64 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff740a85 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3a8b8b43 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2654b3f2 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5cbdfbeb roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x721e0b1a roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdaabaada roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf5d595df roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfab844e4 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0196d424 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x11b0f92d sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1b733e5f sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x53894275 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x55f40c61 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x60efa4bc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7707a7b2 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb4a468b sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xffeb4746 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x05e38290 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x48635965 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4aa949eb i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x541f8433 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf9d64d0b i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x177ae533 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x80bb86c7 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf94d3c62 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b219494 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0edf4d6a hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x29386a2b hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x299089f8 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b568c5b hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2dee20a1 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x308a0d6a hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x44a1b651 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55c40016 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x570fdf22 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x63108487 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x77878e1c hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b29b384 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6745cf1 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb76beaa8 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc7e94730 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfb95efeb hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe2437bd hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x89ee8229 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa264dc04 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xebf15854 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x1b248a56 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4bc8d5d2 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x558ec108 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x70f0c5dc intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa22089fd intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc0c13da0 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc467f07b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf1ac6daf intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf7b2bb59 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfd9281c0 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0843d155 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4b571673 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x8bf4fc40 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x050ae7d6 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x34996c29 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4923eddb to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x53d9652b stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x81c89fcf stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x92261253 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa4fe2d34 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xab9c0eb2 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfbf2893a stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0c72bae6 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaa081eb0 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc8f2947d i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xff9ce39e i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x12f81dca i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1add45c3 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1b8069a8 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x202221bf i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b113dfe i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2ba5f494 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x321daf8e i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x35d182e7 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x39e3b2ed i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e63f2b1 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5874f0ac i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x647e1f1c i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7b7fd38f i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7ea974f3 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x883ef08c i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x89661d36 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8dc51bc4 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f00b099 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9fd4bb51 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa6a3a80e i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xac008953 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcb637873 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4549aaf i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4f60587 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd9c1664a i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf4b0d478 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x573915ce adxl372_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xcdbb8577 adxl372_readable_noinc_reg +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0320e466 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x74431cd6 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xad3e850f bmc150_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xde9054cb bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1824c4c7 bmi088_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1ce51c20 bmi088_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x7a9fc806 bmi088_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xcb0c60ff bmi088_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x370598e1 fxls8962af_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x4d91e090 fxls8962af_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x8560c435 fxls8962af_regmap_conf +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x6910c9fa mma7455_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xa15e23aa mma7455_core_regmap +EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbe7d2e6c mma7455_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xa08c9514 ad7091r_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xc64e94de ad7091r_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x608a9b89 ad7606_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xfc415292 ad7606_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x09f7a9bc ad_sd_reset +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0d979eaf devm_ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x39747c5b ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5fb1c4f9 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6870b7cc ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8d884a05 ad_sd_calibrate +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb961b8b1 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xde1e0d6b ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe4c08892 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf6ee8f75 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x05013c17 devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x4030fb52 adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x08305777 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x551e6018 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xec6147fb iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x07a13749 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1626fba9 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x48941aed iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4b0d0280 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4e5ce652 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x56420cd4 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5d5ddb61 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6b386800 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7a9b4631 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd0012692 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd197e957 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf910368d iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x742b5ac0 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x6c3bf7c0 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x7e9d221f iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xa7980ed6 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xe4feaa5e devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x47c98bbb bme680_core_probe +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x4902a987 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x68fa301e ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8b772ae9 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6581e60e ad5686_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xec90c890 ad5686_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x488d0a8b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9e270d2a bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd7af850c bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3fccbe7e fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x630acf1a fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x6d225477 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x081ad9cb __adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1e079a8d __adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3ab78ebf adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3f26a201 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5fee5d3c __adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7755ddeb devm_adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb37c9f73 __adis_update_bits_base +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb98904a1 devm_adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbe77f6cf __adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd73e3572 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdc399c52 __adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x6797d3c7 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xb7304f5f fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3ad73c5a inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x7c2decd5 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe6866400 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x1ace7d72 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xec994580 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x08be96cd st_lsm9ds0_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x461be475 st_lsm9ds0_remove +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03500317 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09eb000f iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c181987 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15c335e8 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17819588 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bde2107 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c236114 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24c85869 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2aac1145 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c03489f iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32882792 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x350013af iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3536e7c5 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35e9cc2f iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x360d5bca iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43c5aae1 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d6dbe24 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5719c21f iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58d63833 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a652a95 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b51794e iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e832957 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60089c2e iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ab88b84 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ca7b1e9 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x844bdc37 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a3660d8 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94900b05 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94d61d16 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a8e58c9 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa35897cf __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3f3b248 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7a04735 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa97f2fae iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaeb1379a iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4395495 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc3e0f99 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1788297 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca949f4e iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbe34c5e iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccabc967 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe86d3f27 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf1f0c896 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3462df2 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5eb6e23 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf70b45b0 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc1ed67f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xa4a21ff8 rm3100_common_probe +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table +EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table +EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x435f53e7 mpl115_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x000bce0e zpa2326_isreg_precious +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x66bc3cc6 zpa2326_isreg_writeable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8ddfb03d zpa2326_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa2708508 zpa2326_isreg_readable +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xacde0854 zpa2326_probe +EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd2879a6a zpa2326_remove +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x01109ca7 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1653c7df rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1dd19f8e rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x254aaf30 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2de9dfd3 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6260776e rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67070bbc rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8c0e4d62 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9710d410 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc72e7bc3 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf33e6f66 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfef03155 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8b294869 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x3c144c1c matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x04ca1dec adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0dff53e6 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f0de4d9 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x16158a02 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1d58d77b rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x51f4855f rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6487647e rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x708f29a4 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x891a4598 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x947f9308 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xae8275a8 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xaf7aebea rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xead8ba12 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf4a7af91 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x920047a4 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa94f2af2 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb107c7d5 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x278002de cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf7f046ad cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa0bec1c6 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xedb794a7 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x295ded06 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x411470c4 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x41c74835 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xba633098 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0155a1c1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x071c4637 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2747e12a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7eae0878 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x86e2e84a wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa6aa7f97 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa7165645 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xccc291a4 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcdffa15f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd041bc05 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe57ced8a wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9af9e4f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x07fa098a alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x192c1467 put_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x21f6078d __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x42f5e1c3 free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x92193414 reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xa690fe20 init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc3604a46 free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xdda7295e alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe3c5537e find_iova +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0f697afe ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5f66cd0b ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x74f31835 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76b76da9 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xac5c8fe5 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xca4032f3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd6834618 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfaccc37b ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfcd0e0f1 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0015d83d devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x243e8b7b led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x348f2077 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3b38776d led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x67a8035d led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9cda6776 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xaecdd177 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xaf1df282 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2520494b led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2b3b549f led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x85c26128 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xca660cc2 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdf3c4b47 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x059672d5 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x06be2aaf lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x06caaf1b lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1b929dc2 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x68d813b8 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb9201acf lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbd2cdaa5 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd056038f lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdc5a6947 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe619edf2 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2b36da3b wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5b9ef66f wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb93374f6 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbb815f37 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc51db754 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xcf9c7436 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd8342eb3 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xebedc641 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x189d6047 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23e4d7b2 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x348f77e8 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x440a960a __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a8b0a06 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f8718cc __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65922fe1 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x660cd037 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x736a8964 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a97bc24 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ed6b2e7 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x887cdd9a __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8a8f62bc __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b1401ec __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92c139f7 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92df7fed __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x988a013a __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3ad643c __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbcda6d73 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1152ce9 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1716d33 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe1bd2992 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe99325ec __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf03407c8 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1586a63f dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2af7c210 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x32008d85 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39cdd3a1 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x58c398a5 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f13969f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ddfc1b0 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80ef2d6b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8a2ab28e dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f1d2820 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9f74842a dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaa3895cc dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc5e65fdf dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce4096bf dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0f0a4f6 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec597f5c dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xff3e5e70 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1500f85d dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x62a4ac70 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6b180026 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa935e77a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xef821e14 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x419df783 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x427a9d83 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6e4bb3b6 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8737950b dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8b226579 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf2927036 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2bc1a8d9 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xab86daca dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0d1d8c58 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x12826116 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x183c520a cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2cff9391 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37a8ae81 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4af5a4e5 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4e192eff cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c3695ab cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67e1dfdc cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a393fc9 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8eb472b3 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x94a4d313 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa147e6fd cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc2e79012 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc88b7eb7 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcd9c0b3c cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd082afcf cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd099155d cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdefc6e0d cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xed10f63e cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xef59ff48 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1f530d22 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x25392c53 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x420d1674 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b669751 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4ed0a107 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4f4b7847 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7888318f saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9b77dd20 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb97aa4e8 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdb8ce7b2 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x291f8e7d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4d8ad207 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5bb9f645 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6f0af8be saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x80db28d3 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb30418d7 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xce6e3c8a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1bd41684 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2fc3400a sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x36fb065e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x397b425f sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5075f5a6 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x587e84cb smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63e4a1db smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8f7ae77f sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x950c652a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ea1032b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa2066c72 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbba82422 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbbe5b7e smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdc9a1be smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd6fdfd77 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea5e391a smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xee32d457 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06c45b7c __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x08c9078c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0fd58cba vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x10d0b216 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x15c02db2 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x17b9a1e2 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24eecb35 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2cf19720 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x355b1d77 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x35b63792 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3ad555ff vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x58a9e9f7 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6b7eec4f vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c91ae5d vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94fade54 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3e6e0eb vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa69c8dcf vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaa91dfa2 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb022a5ba vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0399b87 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb646a186 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba7ce45c vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbafb5f7d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcf4a2fd3 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcf981c0f vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0e14eba vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe19bb611 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1522c04 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf87aeed7 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x1358d3e2 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x402ea9d0 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x46b4ed86 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x3fc7e2d2 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03bce578 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x088d6565 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e5c165e vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x24e3579b vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ce980bb vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3e62d093 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ef2f39c vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x53827f61 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5883a475 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5e452275 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x60c4c7a5 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8765ef5e vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x899e1836 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f2e3f37 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9325cfed vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9aac8166 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9af4aa6e vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac4dd844 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad00b446 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad420c43 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb0996e79 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb5f7999d vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbcdf6ae2 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca68690a vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfd5fec7 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd0d132ba vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1470902 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd389a466 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf56aee6 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe97c9a56 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xefdb7c6f vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2408031 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2c5d8eb vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf39c6ad8 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x7d40e8c5 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x1981c008 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x91c20d01 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc322fbea dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc1753cd5 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xeb5df2e7 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x764a575e gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x03c469e4 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x872c8339 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x89bee22c stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x1d93af3b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x3b4a3c90 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x610bdffc ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0bf71fc0 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1e3d27d9 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x35af5c7d max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3cc34ff9 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4e7dc80d max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8d1b021a max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa8f926b8 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb69c4948 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbee30542 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcedc6c71 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe72bf642 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xea1b04ea max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfe370ffd max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x013ad6bd __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0270cb93 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ca538fa media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1842cba5 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1879af73 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x22f2f701 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23f4ebb7 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d8bc38b __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x39faf498 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b8000ea __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41b3662f media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x500ea2cd media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5448617d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57604119 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62c632c4 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x639a02cd __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63a341fc media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6713c2d2 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6cb2ac20 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6cfbf9ce __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f2f6d51 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fae8130 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83ac1819 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84fe6e32 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9aa29a77 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b7769fb media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ea465b2 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3a6084f media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad7aa6dd __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb988acf0 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb99c8b5f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc561f6f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc5704aac __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc83b31f7 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0013a63 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdbecf6ec media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcbf8ce2 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe20a62fb media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9047dc7 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xea532d00 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee88617a media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf859c20c media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf894b31f media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8e4d0c8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf907d60f media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe266633 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xfa55db7d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d6adc96 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2c8daf1b mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3816d2c9 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x46c4d804 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f2b9e4c mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5365e689 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5377859f mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ab561da mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f02cadb mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x81ecc897 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x82d1ccda mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83ca91e8 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb959c1c0 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca0d9f7f mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca1ffc69 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xced43b89 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd3e1c820 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd753f3c5 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf66ab32d mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11322111 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3355dd3b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c62b58c saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3ca833ef saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40254999 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40b50fce saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b210107 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d381589 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9206a719 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ab2d8e4 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e728458 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6fb6753 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd29512b saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2f9e318 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd43f3eb3 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd536b8ef saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9231a7b saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xef42a7bc saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf05e0c2a saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2c2b21ad ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x37cf10a5 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4ae489a8 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x83fb43a7 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9f8dfa63 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf38b1bcf ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xff4864d7 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x430039e2 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x611cb6ce mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xaabf89e4 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc83ce3c3 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd3b529ef mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x28879447 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3b607b7e xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x72e6ca61 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x98595fdf xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa96d06a9 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaf4e9b96 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc31fe279 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x0d24fc8b xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5c728930 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7c6a4f68 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3b81969b si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7d82f540 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9ad04268 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa62271fa si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe0841698 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x17028a58 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2d949f79 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x30d4ce51 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39ccf0f9 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x536f26a2 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5e2691d9 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6b10779d rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ef411ef rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7189d613 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x85cee06b rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ed47c53 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fae9f5d rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaefbe73d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf1c6040 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb51e311e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbef1458e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf71057c rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf03b7ea rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7875151 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xed55f84f ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf94e612a ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x2e7714e9 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x51c1bb12 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xac2f2db8 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x59cf43f2 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xb240849f tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x44a7e01a tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x23a83f8a tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9e41d7ce tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x98fbfcef tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x17d53e10 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xbe1afa20 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2849cfc9 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xaebfcacd tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xc255f36f simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x118adf0c cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1bc272d2 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e90dda3 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f405d3f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f87579d cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2991f53c cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x48edf25a cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a50aecf cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ce4e942 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x698fd9bd cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x69fe8ff2 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f7ca545 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x751f1f44 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f4f4496 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x949435a0 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4148118 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8a2f4f6 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xce2773a2 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe72739c7 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf22f1679 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x36a9b598 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc390881d mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x048a0b6e em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x076a5f60 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1941c29e em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e2b66c9 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x231dc7db em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32651f69 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3616e150 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d6197dc em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c6bf323 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80491654 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x82fda7ea em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x90d9c7ef em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94266b19 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9623afcc em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b602315 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7de2e15 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc7148ce6 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf028f9b7 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3e84f4c8 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8d1297bd tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xaf128dc2 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf04b3c26 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x07bcdc79 __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x375fa7f0 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6c5f1f8a __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x824ea417 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd60836f5 v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xef15cc44 v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0b205933 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x10beff9d v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3d601f47 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x23b13ef7 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2e0e344c v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2eaf8c17 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4b00cb9a v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4c3d17d4 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x82d551a0 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb0153320 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbe226aa3 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe219514b v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf281b20e v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x040c1725 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x049d4564 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07a04829 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a4da82c v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d2740b8 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d980e6d v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11935048 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x144c3408 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14b3c1ac v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15610e57 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16fbc498 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21a3d005 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22b76681 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x230bab46 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d80a13c v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x322209af v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33320185 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x345f6bba v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38f848b2 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40566711 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4195b249 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44f6d644 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x456f12a8 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69902d13 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70ce7357 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7138e6f6 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7363018e v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a1a4ad0 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d55db2f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82c4d8f4 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x953ff59a v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98fe8de7 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa21fd973 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaefb110e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8d08de5 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1b00dc9 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc21340a0 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf2018ef v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd0fafb5 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9b1f9af v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb4b28fa v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebcce7d2 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeea0f6ff v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff17ce46 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02d38d3a videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05356f3f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09143827 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1189b7be videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12a0af5c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1439b3b5 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1506f78c videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x192cf08f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2446c756 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x25add3f4 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x377790cd videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x590b415d videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5df3e518 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6591ab12 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77c75fd9 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x870ced20 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9dbea308 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa940c892 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbef0de24 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1e6f722 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4b4e5dd videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc54ed618 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb78c8ee videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe75a70dc videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x09831a10 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbc63733e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcfc46e94 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd1867b64 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x08ea6d53 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x83e972be videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf2d02294 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01e549c0 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x030fec21 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x079c9dc1 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a59d10f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0aaf4468 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x113a3cea v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11d16a76 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11e6204d v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1290c2a1 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x151610be v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1669485d v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17f3f923 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1932df8e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1abef9f3 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x278f5528 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dee7aac v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33cce62a v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39e8d4a2 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d90e249 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a76748a v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d2f687a v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54c72185 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a47cb6d v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x689e937a __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68c7aaa9 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6982f89c v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x699f9700 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e87cd1b v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a819af7 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8afd7ee8 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x956688c8 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97c52405 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99092b86 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c9b16d1 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d61755b v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f00f426 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1873b48 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3c7194a __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9aac3d3 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad6f5d85 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf006fe9 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb11b4db0 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7662fae v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf37db76 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc307d1ad v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc30c61f0 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8c52c4d v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4630e94 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd91d2b7c v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdceace75 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdef8f558 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe86a3f09 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea70bf41 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec496728 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee174068 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1232307 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2c6ce73 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf750a578 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6e9f9006 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd06f46db pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xedf6d131 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x10cea9ad wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1bea5a27 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3fbb8058 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x463b6e8f arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4802f868 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x53f668e1 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x56ceef7a arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x75d0a2b7 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x76627eaf arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x837fe1af arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8a8858df arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x98273f1d wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa27a16ed arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa8e3a925 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaea53cdc wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbf57ea28 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe96e085d wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xed9dfd90 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x20da18cf atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x5c9da5ce atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x02bc7ebf da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2297b7a8 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x253f7fd6 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x284ac743 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x539b3536 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7b4b3377 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xda5bed08 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x119d0174 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x22214262 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x22d323b7 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4691e904 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6d7a543f kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7c0ed689 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa4ef8537 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd61845df kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x55c72155 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xac73ea65 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbc9cac5e lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x40bb96ec lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x427b4744 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x42ed40dc lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5a05d0fc lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x648bec50 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa12b9040 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf89c48a1 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x994c2a17 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcbfcf56d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf139c4e9 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0427d43a madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0704bbda cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0709679a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0bdd735a madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e9fff2c cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1a224cef cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1a2f90af cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2850d797 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x285d0bd7 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3085a027 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30887c67 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4431a6d6 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x443c7a96 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x529576a2 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x591751e3 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x591a8da3 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b65ca9b cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b6816db cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73b0bd2b cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73bd616b cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93d4fb2f cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93d9276f cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc1ab732e cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd0e1e623 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd0ec3a63 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe576ad61 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7ab176f cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedf7b3c1 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3a9dd475 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87d418b7 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95dbeddf mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc76e5397 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcec83fe5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea70505c mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1610b0c3 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x19f47261 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x30e10190 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4cbaf3ac pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x51d1b240 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6f2f2588 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8c2433b8 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x99ae5d4e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9afeac91 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa4121d2f pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf0e01594 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x250f9a80 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd2895633 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x10cf7935 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4f024e3e pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6415bea0 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x655e45be pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x753ff8fe pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x5b9b271a devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x025fffe0 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0323235e si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0994cf3b si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0bb05a37 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c97edbf si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e394b9e si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x179df3d8 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26029996 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c4bc397 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x386cd534 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43050279 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61e7f99e si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62ce90f1 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62fe549b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69d01670 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7243f05f si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73583dd1 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74024334 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78944793 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e67c62f si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x845d061f si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84b8d0c9 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x858040f3 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f2564c6 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93fe768f si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa11f16e9 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7ad16b4 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5ca5989 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcacfe887 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6417733 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddde0c35 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe70a435f si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf025ebc1 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf75bcedd si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0f19c93d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x21a2b745 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc5ea305c sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd0c94cb8 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xec83db7b sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xad879c24 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xdb134f34 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3e258c4d am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x85c9a360 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xaba4d7cc am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xeee5e645 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x28699be1 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2f90549b tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfd7e6713 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7bdfc4dc ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x19bc1749 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x378d14a4 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8ad9f4ea alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x992456d3 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa990e51f alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc142aabe alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe10646d7 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0e9585f3 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0f264698 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x21a353cd rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24fe40ce rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x36cc4b4d rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3ee0a4f3 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42f902ea rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f79b302 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b599b50 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x60e8603a rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b1eb543 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x81933022 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8513152b rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x87cc10b0 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x889baab0 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad8b9d24 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbff6b8fe rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1c7002f rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2d2216d rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc3d10fc5 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xce27f166 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe51e35c7 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf2b8ee4b rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfcf00eed rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x17525b9b rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3154db88 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x447a59c3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x58668f68 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x73c88a51 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x83631672 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x907c5763 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb82cc564 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbface30a rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc71cf0cd rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd366dc30 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xda27c046 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdbbc06e2 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x17214685 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x86f0e66f cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9985fd43 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc6d53fab cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x042405b4 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0a3894c6 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x112dd79f cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x32fd6062 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3b015da6 cxllib_get_PE_attributes +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3d54a354 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x41b4a49f cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x442f7f0d cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x445d41be cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x45a2e6ca cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x45a2fb78 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6971e8b0 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7e8fcb77 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x81d9363e cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8612a5e4 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x902441f8 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x90c8747f cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x918c696f cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x94de59d7 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x96b2ebe0 cxllib_handle_fault +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9c4d7c64 cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa3547cc1 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa5228e13 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa6088dad cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb141b435 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb7a2824f cxllib_switch_phb_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xba00140b cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcbfeb833 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd1534aca cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd6718a99 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdd900894 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdddb9852 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe29a74f6 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf222ecb4 cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf2c15b4f cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf8623480 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x27b79299 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x56415f38 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7e7689fc enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9a2c475e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc6b991b2 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd8fe2d7e enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xda64e529 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfa50c2b3 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0913aea7 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0ac9121f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x10345fc3 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b6733d8 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6c0561db lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9491204b lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xda29a208 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xda740745 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x03fbf482 ocxl_context_attach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x0539cf1a ocxl_global_mmio_write64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1e7f5a84 ocxl_afu_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x271c697f ocxl_link_add_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3429bd9c ocxl_config_read_function +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x354d70b3 ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x38ee05c6 ocxl_afu_irq_get_addr +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3a7df858 ocxl_config_read_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3ad60656 ocxl_global_mmio_clear64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3f6ca301 ocxl_irq_set_handler +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3f79aee7 ocxl_config_terminate_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x50ad7d23 ocxl_global_mmio_write32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x50d24c36 ocxl_function_fetch_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5448a7d6 ocxl_afu_irq_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5c6620c8 ocxl_link_release +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x65ce2022 ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x68ca3f4c ocxl_function_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6eef261c ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6f42b46f ocxl_global_mmio_clear32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x794c9457 ocxl_function_open +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x80f17319 ocxl_config_set_TL +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x87147ffd ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9805f394 ocxl_config_set_afu_state +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9833a9c4 ocxl_afu_set_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x98f17990 ocxl_config_set_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9b5fd7aa ocxl_config_set_afu_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9c562a83 ocxl_global_mmio_set64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xacff7573 ocxl_global_mmio_read64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb51ff4ff ocxl_function_afu_list +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb8cca6d5 ocxl_afu_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xbd35938b ocxl_context_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc394dda8 ocxl_config_set_afu_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc9c298ba ocxl_global_mmio_set32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57e0fa7 ocxl_link_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe0b4da89 ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe1c60915 ocxl_context_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe1dda2c9 ocxl_config_get_actag_info +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe99c79ad ocxl_afu_put +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf7a69bbe ocxl_context_detach +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x202e7ac5 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x23266ccc uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x3c85e6b8 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xbac3a698 uacce_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0270dbdf sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x195ddbbb sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c540e45 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x23ecbcc0 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x256c92b1 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2792de4a __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30142c2d sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x356e5fb9 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x381382dd sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x392eff15 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3aac4a6e sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4de2bb0c sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f0e0d71 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52e8d41c sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x572a795d sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d37c66d sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61c26a7b __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61cce4b0 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63f5d607 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x686c1b81 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x712aff19 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x73a911ab sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7482ae36 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x750f09f0 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79006ec7 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81e69c81 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8ec82714 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f83331e sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9fdba16e sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa65492ff sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xac2a042a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb638ccda sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb71a7398 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd331eb7 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc06ddcf2 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2055638 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc94855ee sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf69d868 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6e9daf0 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf4a0f36e sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf76349e7 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0769e1ec sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0c95ecf6 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x10667134 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ab9b866 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x50cd5cfd sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x577cae35 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa0ca1400 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe2643b34 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf632454a sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0658d207 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x214ff7a7 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2662eac3 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x332d9a50 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x530fa0fa most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6164ef5f most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x61e1337d most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x68077e9c most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6db6ff3c most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b68968f most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x89752867 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc5169b7d channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd6d99db4 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xda8bed9f most_put_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1ae056a5 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x25c9734d cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd8d756db cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3a5de1b9 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x440faa69 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc9a42e3f cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xab9a873e cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8b1f5cda cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd37c4d91 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xffe1961a cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7678bd9b hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x856b4f84 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0171aaef mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06f30ae0 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07f179e9 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x095ffba6 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a7e897b mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2cf296 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10ba9673 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18d05a9d get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ad40afc mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ecd45b9 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x217dfcb5 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x21e3c0d9 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x253b3b90 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x258fb07a mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3be0ff9b mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f249655 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46d3a15d get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x477f4ed8 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d4e499b mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f1a4495 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60c4d344 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62aa028f register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6784b565 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ae18952 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x712b3124 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7be7b103 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8315e656 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86842884 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91d831ea mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x959d6bb9 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9beaa66a mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c927b0b __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ceea86b mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa98093df mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaac051ed mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab3a4145 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb011ce77 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6d8e6ad mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb70db4f7 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc106282 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3774645 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc780a3e4 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd08828bf mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4e7b40d __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda5a611a mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbbecfff mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdcc1bd0d mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf17f9fe mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2b033c7 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4594bd9 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf585bf1d mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6981bcc mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9261c0b mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb7e6d40 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x31fb9274 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x32e3b66d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc4ca4bcb register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd478a611 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf7ebd5c8 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0a8d5264 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2253a4a8 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3aac404a nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3ca98e93 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5001eca7 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7204cb83 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77d12ede nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7b8531e3 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x82412eaa nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8b42a100 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8cdd5e99 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x94d49727 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbe9b78a1 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbf9bcac9 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc22c2e68 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcaf2b089 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xce9ba6ec nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd095f3a4 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe1ead3de nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe200044e nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeccd1636 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xed791557 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5a074353 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xcff4896f onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8b75859e denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x03934198 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0af24588 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1c5c3b00 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cb3a3ba nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x28892689 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2cdd544d nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a8ce43e nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x408d1eb5 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4bb345ab nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x51c1adad nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64d1e980 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6977360a nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6a01125c nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7a647b48 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x81bccd12 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9cdfc5bb nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa30249f5 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa6081840 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xac031805 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1689a13 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0563052 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xddc5c49a nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe6e5d9cf nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x47adec00 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x74eb7928 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xcfd9ea6f spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x10da99e8 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x172d56ab ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2ed44b9e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x485d7c42 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x53173da5 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x55af190e ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x55f3cb62 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7edc2003 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab01b249 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xae4b787c ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd50f7ad5 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe8c19b3a ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xee8cc959 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa78a7cb ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0319c8ce mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x17eac751 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1aef2720 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2c6e069c mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2c723b79 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x415fe584 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x61895cf5 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7309aaf4 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7f33d7bb mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9116da5c mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x99f3f7c0 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdeba7b55 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xee469e90 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5d63215b arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xed57ddb8 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xb5adba81 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x50ad5018 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x595dae9d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x676ee97a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6c80adc9 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe4248560 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfd5000cc register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x094826c6 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3d956091 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x490b9e7d alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeec36339 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0226f4b9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07f9a523 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0de8220f alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x11128954 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x114f2c2a open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25ec0ab0 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3247cd9b can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x382f2cf8 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3cc5429b can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x460daba8 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5103c7b6 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x587200b6 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5878ab02 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5a0b95fb register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ab2494e of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62e21b4a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x68f862aa can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d527ede unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7aac09f4 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7bd6863f can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86de7a9a can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1a23c4a alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6a22836 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xccddff61 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd433ff38 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe903f93c can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeea9532c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf1a31ae0 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf4bf551a can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfe2624b1 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0ae0f685 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1cf2bd89 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7f349e44 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa92a6c6c m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb34ad842 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb8697916 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe9d6fd05 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf3f27004 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x042b382a unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6e6e23c1 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbc280039 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfbfc8c27 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x96ed6754 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1af92089 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4a29f11b ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4c247c23 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5b92cb47 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x73b812c6 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x75254fa5 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8a1e7547 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb06a598d ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb932df99 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbfbd7f5e ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc0333ded ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc17f7546 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc190a124 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd6a9d359 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0e894316 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x11b48adb rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x19763a45 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x451a0141 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5621e3e4 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5bc8d9e2 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6fdd3862 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7ba3b505 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x836ad158 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x94ae5f15 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9839b9e6 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9b3279eb rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb36ba6a8 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcd68966c rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf98bf580 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x57974f0f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x82473246 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x98afd876 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xe4d9f206 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x740166e7 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x85182262 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x27477431 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2f383018 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5a273622 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc49d346d ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc64e446f ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00147780 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02428d50 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0260df4c mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ffdf3c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0357e409 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x045fea48 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06345bd3 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0687e239 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x093afa98 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x095b710b mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ec03aa mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ff9dae mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12c128b8 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13107d8d mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1740cbe3 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x174eff79 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18657361 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c375d55 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cc98c49 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e690e29 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x228a8276 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23267b48 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25480f2a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x260f637f __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28366435 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aee82e9 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f6c2518 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3073d8e3 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3122a44b mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f73f65 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b835eaf mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bd13239 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bdaf625 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eef1971 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4053a5bf mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c68c08 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42627a5a mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x430d0c57 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46aaa14c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47408b7a mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4be8d679 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d7f1f7a mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f961470 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5224b841 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52d77266 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f38c02 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53dc536b mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e5d6a2 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54d5fdd2 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54f964d5 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56612149 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57f8552c mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c7a808 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60a32455 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61d28a3e mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6653d9bf mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c09eae5 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cdc1402 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73140431 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76b0e123 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x781da9c0 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x790d760a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7982dd18 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b0a3a50 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cb80fc6 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cdc0669 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da4803c mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7df07b65 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x804e82ba mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8228ccfb mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8327a194 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x835c3b72 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86959772 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8726a4e3 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b230ad mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89d33358 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ab98ffd mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e12cff8 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94af932e __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95590260 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2593d58 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a053ef mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3e028f3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa559fe45 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5c22b73 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa785e323 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8782381 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaac92b4c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad7b77f0 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadf8c39d mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf618ed3 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb72f40c5 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb770a5df mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd72f3bc mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2d07739 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc615b9b3 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d70dd7 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb6cc1d3 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccf20823 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdb57db4 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceb2bb2e mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfb2c68a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd355dae4 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a3d75a mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd53332c0 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd582f4c2 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd6023d1 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde9848b6 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe386f12f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3f81e1d mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4de09f7 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7075ed0 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe867185a mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7776b8 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65fa18c mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6efd34a mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc0b585e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd345355 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd606d93 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd794291 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe3058e9 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07573e8a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a66f4c0 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b6eda89 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf5e016 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e432ff1 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c4fbe8 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13ce2305 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1427fa6b mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1982927f mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a180b55 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ee6f495 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x270fe35d mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e6aee67 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32dbfe27 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346ccd95 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347d8fa0 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34b89ecc mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c48bf62 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x447f3479 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46616756 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5139182c mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5387cf60 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x544d92b9 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c99f74f mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d557ac0 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e800543 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61770fd4 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65ecfa1a mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69ad331d mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a3a1b3f mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b6cd036 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x773f83f7 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7811a871 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b6d86c2 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81146b33 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c8718c mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d4dba5 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x857178a1 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x860bd247 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x878989ee mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89ec876d mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a450183 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d030ded mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9162fc08 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9741b933 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98dd8d28 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd5b520 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa10191fe mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9688df3 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc32164 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8ca44f mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2c73761 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb32cab7f mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3369948 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe89b442 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1a117ba mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7ad12e1 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca32959 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd36676 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd5b3eff mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce1bb3dc mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf5b6bbb mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f00457 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6750739 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e91da1 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd7e987 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5194a25 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bb4adf mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa93eff4 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa0d9ba mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffc76412 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x04402510 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x52fb73de ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9bacefd6 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb260c4c3 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4a3f8d5d devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04559f18 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11b1f05f __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13fbaae8 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3186e28b ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41649b9d ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4826c068 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67857e94 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75c9a49c __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b3e32ec ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb876005f ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc87a2c9e __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd444c2b1 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3f7a72a ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x09c73259 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x127330a4 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8c6321ef stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8f9ff10c stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe4909daf stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x09be7e3c stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x147a8c97 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9d081277 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xba2168d2 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xba42b632 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x15ac201e w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4dabe4c1 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x66ca4c39 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x94cac6ce w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0xb87c150c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x45a6058b ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x58b8bcfb ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb17c14db ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe5aaf9ad ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf65abc68 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xbf6613b4 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaa6418a6 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe174e2c5 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf49d4f0b macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf9bfedb3 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x86d8f075 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xdc570c0d mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x29dcf59f net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x7ff3a6a2 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x02524253 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2dddf72e xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5cf1cdc1 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5d068ca0 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xccd22546 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf9d0ebb6 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b69a690 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1933c388 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2059c5f6 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d5cad98 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f56af27 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a1f0d01 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x413a9cfe bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e1c34f6 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e6e0b0f bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f2911fd bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53b8189a bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58c49ece bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b8463a2 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6372aaa5 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x707c2031 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76adbeb4 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7cda5a30 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7e047652 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89416e57 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cf13583 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9809a1c4 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa163a7ba __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc032cd63 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3224367 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc667e9cb bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcad3b13a bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb9da4ad bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3596399 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda07baf2 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdaddf290 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd088005 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd1f1387 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf4a2282f bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7bbd43a bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0145511d phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4dcb0fdf phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x598b9c62 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6ca99bc4 phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa99eb642 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaa54680d phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbf0e88a9 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xda264c10 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xecf6d8f4 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x012bcb27 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x306a3157 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x4ea1380d tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x6fed19be tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x8ff869ce tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x91ddcc13 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xa79e0bfb tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xafddf954 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf792a587 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x212aafb8 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x23c0c54b usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x28eb2ca9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2bb5cb0c usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb5b09ad5 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe2874dc9 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x138e7d78 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x265812c5 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x47019979 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x86204036 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x91221e24 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95bbf170 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9e9ae7f8 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa6d8666f cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbaf87a64 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe429a99a cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf74ec448 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xf21fce9e rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4756b727 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5b7e074c rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9294a490 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa38bca55 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6a95e2d rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf758664f rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x080eb561 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c65425e usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35d3be59 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x371f49d5 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f1c2bdf usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x476dc5ed usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ad0cbac usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e1b1895 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5fe389b7 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x682b11b0 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6834849c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d78fceb usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73d22ea0 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x763abcfa usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x78fc21b1 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c9e8d41 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x887f7196 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bd9ca47 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ccf9280 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x920d5182 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92fba443 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b5ce54a usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1cdc6c6 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa409a0ac usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4780e07 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3d0edb5 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4371407 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc55c203e usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc785fa3e usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd47dd65 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2473d1f usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0c46575 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe67b248c usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd5fa89f usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x26c4a27a vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6c52f055 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x83c823ca vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x974ec6e7 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa9ed6db5 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09b26963 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x158f6c63 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x554b7d30 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8076029d il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfd33bf8 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04034467 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05368a1e iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a3eb242 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0ae22362 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10f8dd73 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13d8afb7 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1cd70cef iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e06e937 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee1c386 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229d8b26 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x25fad82e iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26afd2d1 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28ab1dc2 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c6bb4e9 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35307150 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x39e99ff5 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c566a0e iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x416a4f6e iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41f5b141 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x46091438 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x562b56b5 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ad79a71 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x647b7a7c iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6cd6e360 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d41b232 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4a86d9 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x724e8822 iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7307e077 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78d5b759 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x79bc7b6f __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b76080d iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d09d4ec iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86fb89ef iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d49fb84 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ecf49fa iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90c0d823 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97d085f8 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9faa00c3 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa02b7bf8 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1ee173c iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xada24457 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae140ac0 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb011a8fd iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb51d05f1 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb78b989e iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xba2799e2 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbcd693d9 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc0bdba7b iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7148647 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc766bc86 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc90bad1b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc92f2e66 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcd3662ba __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcd87a7bf iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd809aef iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf873c6c iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0283fe9 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3dd8b2a iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe831aa7d __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebd63cac iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf34eb7fb iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x50f7d548 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x577b3b68 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x65047489 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6a468283 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7508577b p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7ddac6ad p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa56370f9 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb4acf9ec p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbff8cbc2 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x090e63bf __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0b4db216 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1daed7c7 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2bac66b1 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5209e5a5 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x527394c1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x58d95a26 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x67d68ac7 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6bb55d3a lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8301277d lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8ba8d1b7 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e6007fa lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9683ce50 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb2abdcfd lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbb104fc2 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xecf26978 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x09b323b5 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0bdf0c92 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5691d0ce lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8beccec4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9fef299 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe449bb27 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe45b9699 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfebfc078 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x073426a5 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1b60bd47 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x262148ac mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2dab154a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x33f6fbb9 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x45a61608 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x48229e9c mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4e231267 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x60e18d40 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8073bdbd mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80f7c585 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8765cde8 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x88bcbec8 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x89eac80f mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8abedf3f mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8af0f965 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94881fcb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9ea2e1b7 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb10b486c mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9d06295 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbcb4d9ec mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf45454d mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7112c3c mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeb24f495 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02384ed2 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x026c9b19 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03d4808d mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04043f02 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x047d3773 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0afa8b94 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c509f8e mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1425c252 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17d86b25 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ba42816 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ea215a7 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1efbb33d mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x215edb8b mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23b84b34 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bb41cb1 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33924aeb mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a635d82 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3bee1293 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43655121 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a13684b mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c81e758 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5062e7f7 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58bb5621 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5949cf14 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64c35b06 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x666af63a mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a725db9 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72cf9c78 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x734198e5 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x739e1a34 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x768d9ef2 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77b490c8 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d7b0861 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f51af8b __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x806c7637 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8600af25 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8696c1e7 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86b33fb3 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87ef46ab mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a7dd062 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8cc1f3c5 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8cf37682 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x910ddecc mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9527b668 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95575e9f mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x961f1d1d mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x987de117 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa327052e mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaad1e00a mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab62568f mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb33ebe29 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb34e1776 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb50e7c53 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbaa83d98 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc43eebf7 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc52ba260 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc70e6ba3 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc8966a2 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1069fc6 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3070f9c mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6af6cb5 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8598cc6 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaa0c524 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb5fbe72 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc336c3a mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1eff77a mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4af460e mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf398a553 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5d354d0 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf74f5ef0 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa8034fa mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc285172 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfda582f0 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff806bab mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffab81d2 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x244a2dea mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c5b77aa mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31862ad6 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3571e2d0 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3657e0d1 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39289668 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c61d4f5 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3df45f0b mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e6ebdee mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x414348e0 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44a3c49c mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45b5114e mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47607016 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x477b9f0d mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4901f7bb mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b9b9f58 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53ee2017 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x541a9c8f mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5579e0b8 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e9f5832 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ce157bb mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x818aa49e mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82a746db mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99d7428b mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9b2ddbf5 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5ce7e7d mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7951f06 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb57d1cee mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb850f750 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbee9620c mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2ea4244 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc85b527 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcfe0126c mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6cb20ec mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfa9b2b3 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6dcac39 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8cf27da mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe94b2e0e mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf19b2aa2 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1c094e9 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5079c32 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf72aca69 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc7d91c1 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4722950f mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x819753bf mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb3c6a447 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0dd3ebc0 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1d8f62b7 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x34065130 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x356e2dca mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3bf9210e mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x432849bd mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb5b5da03 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeb19bb3c mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf50acd2c mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x07e64927 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f636921 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1580bf88 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1bc9837e mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46fc5e44 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5b1cd749 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5f2c5da7 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x61bbd418 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x632bdb87 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x77728b73 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x848a1a02 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8eef58f5 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95d50c00 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9829bf64 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x98c853e2 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa5c399f9 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa670261a mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaed66c39 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba2e5040 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb541018 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc0711eef mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc60d8e10 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce92e87f mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe4b7e4ec mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6721315 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb4967be mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf2f90b79 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf9a3373c mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfcda9aa4 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x6c107aab mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1a8fcd88 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x29823772 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7d2ae891 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb260c412 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0bfb3b0c mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x18619531 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x89d864fe mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8c8e4e34 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xafbc8443 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdbb0a8c4 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x062f4b73 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13bb093e mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1558225a mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1717dcf4 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x189f5fd8 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d5d9c34 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2aa55eb0 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31311dc8 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x318a6624 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33438c4f mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x337aaee2 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33e867d6 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3557c2ac mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c4c92de mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d5418de mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43b847a2 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45020a19 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4864c5a8 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x495efb8d mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49dba535 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b022462 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e03a34c mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4eaa316b mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58572b00 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f384649 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63d151dc mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6467f81f mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66b2d0a8 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66c35619 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c5d307c mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72ded1a2 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79636921 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ee49739 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x800fbc5c mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83540142 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83ebb868 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x880558dd mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b62de7a mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x912ac5bb mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97e4d93a mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f54ef7b mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6cd4622 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8caf59d mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac87c274 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae992b3e mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf29d92e mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb705f922 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba6ca5ee mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc1deffe mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1815e01 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc334f22b mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6b884ad mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7d9569b mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7e3897f mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9650729 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9ac874e mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdd6d207 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd59c0b69 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc8566a6 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd77b0c4 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe25a955f mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4752e23 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5e83291 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xedf20ad7 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4ed22b2 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8e0277c mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1087c19a mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x36dd1ae0 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4330a385 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4a196d5e mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8d4c785a mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb690d280 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe42a49d9 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf74c403b mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x058dfcb7 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x25a03fbe mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x38326c8a mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x56664f00 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5a89a812 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5b6b2236 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x62b5d32f mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92fbb71f mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa1e744dc mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa9b935e0 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbc18e269 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc7dd2bb2 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf906a47 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd165c60e mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdbc70b26 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe4dbaf0e mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe865f629 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4747a52 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf68fb7da mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x05216194 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1b0630c7 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1da5d29a host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x25a0b1a7 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4c3b2787 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xab46d157 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xcb2f9c34 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x09365235 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0f93fff0 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x30389917 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x76f56cbf qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xba1e182c qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcfb326c5 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00120725 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ba0de16 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e7bf5da rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x127a477c rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14f842b1 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2fb735ca rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3382b42a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36b2339e rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f0d14c6 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x526b5225 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55c069ca rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ce4994b rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63fda9fb rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x680657c7 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8090dbf0 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x813b86ea rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x828d32f7 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84d03210 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x918f2942 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x926b1aa3 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92836989 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98fc2947 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8e3c54b rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa088710 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa74b8af rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0c5a2eb rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8f40062 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9646be6 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba442e78 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba51cbe8 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf93a887 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc92cf323 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd92350e1 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc8490ed rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xddbc7e1c rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe03d0a48 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0bca01a rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0c5c1c2 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea1e8214 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec0685d3 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef2f6d0e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1cb8f83 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf449a642 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff44ab92 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x04f83434 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x20233001 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3437e6ac rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x36d81ab9 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x486021fc rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83803baf rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8a6f4977 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb1fe98cf rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb217e948 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbb5fd381 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb9309f8 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd0792352 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd32886ad rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe383c843 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee03b04a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf53bfd98 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00a9b0f4 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x029c5144 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06018b60 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0bc921a2 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c09cd68 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a0bd447 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a54569f rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a595cb6 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1cd58cab rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x209a593f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20aeca6e rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22611ba4 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x253af75e rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x260bffe4 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30932e47 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x330029b6 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x457b9bfb rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x471d39a6 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e7053f2 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f96ac12 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54b56a86 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5bc7d169 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ffae031 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70216b06 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x745504e3 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7afb33fd rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cc50554 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f7008c4 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fd6e3b8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8761a4ea rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c1570b4 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f4b1a68 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8fdba478 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9cf7a382 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xabfdd126 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0f1a131 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb105ed70 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb13ddc4a rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb47abcb2 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc619680 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3ee78cc rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb57bdbf rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe36167a4 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe466c437 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec9911c4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed10a198 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6b01be7 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4e3741db rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8a1280fa rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa31567e1 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd62c8c45 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf5bb1ef6 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x57e1c78b rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x919db034 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbc4b7e17 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x14136d4d rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x17a5e1a0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x22b259ae rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x28935881 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3bbfd6e0 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4bde2b8a rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5138099b rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x77b3849a rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x793acb38 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x924444e2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d182920 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2244cc9 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd75aa2a9 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdcc5af81 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd3571d0 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xddb11c25 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1835f32f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a9ac052 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d1b83eb dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2fd0132 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f036abf rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x100aa17e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x10247283 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e1d39cc rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20c5e4f0 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3662f05e rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58ba12ed rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5cade460 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65ba488d rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x72e3cfb1 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74ef8ac5 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75260e97 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b07bb44 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8644a7eb rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93546fb6 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d36c404 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6616e9d rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9143c60 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd33421d7 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7a55d1c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6ad26c4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe89d5349 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xefd0d543 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5743491 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6eeca85 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x010f62ee rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08f5e476 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09b67726 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f6f07af rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27cf6df7 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29cd2cb1 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4534a3b1 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x519f86f7 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x592b744d rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c60de8a rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x721a78ba rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7298add5 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83c1a030 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8870da17 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92c140cf rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9730d326 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2aa3957 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9e116f1 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9ea85db rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb24d6aec rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc1c781d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe728b324 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7d11726 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb9b6514 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff42371d rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x34b252c3 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4def71b9 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x58e97057 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5a0d13c2 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb7e0c009 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbb6eff1b cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc57d1473 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe1f8e323 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xebcaf41f cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x20ace80b wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x499ebedd wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xadbae6fa wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0803b0a0 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18621c5b wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21a65074 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x240cf528 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25986111 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e54fc95 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31f8b9ae wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38ecab43 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d5731e8 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e85a71f wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e8a4b18 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52824e09 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x535745a7 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a9e12d3 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5af1acf4 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f4e2744 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6bc76a88 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c9256cd wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ef74593 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f286b1e wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75dfd1f1 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77ac9144 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7be5bbf0 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f7b4768 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83059e22 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8821f4cc wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89ab9b13 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8af40798 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95bf01ba wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ca4c983 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa136144f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb77d8a67 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8f75665 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd48dbe94 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5a1292a wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd698f1b3 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9f9330a wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe707f260 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe70bb9d4 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf121a12e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf92e0cdc wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfba2fa8d wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe5a1d59 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x533b8a0d nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x752080e0 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x882a131b nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9d67b6ee nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x046ac502 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x112ff30c pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3b0f35b8 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x617ca3ee pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeae7092d pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf690a950 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfdd88bce pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04c79a58 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x831c3fa2 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x894b2624 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x95642601 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb9ea5af7 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd2512472 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe687590b st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfb895771 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x13487e9c st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x80895982 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x876738c1 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1def8c7d ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x638dfa75 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7c4aed2d ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x2dfec0b7 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x594e7632 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c2e24a5 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13dfa806 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16718a03 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a0f53e8 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b20744f nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22b751fa nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23fdf8cf nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2607d927 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a371fcf nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e35acd1 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f4257cb nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b70b204 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56e439ac __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x607be3af nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6835de57 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7efc1067 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x805a5f1c nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8482996a nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84d1cc5d nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x851a090e nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88984406 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8af62cce nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x953fb180 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa02c13c7 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa8a634d1 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa8e3f05 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac5144e1 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb02e1ad1 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb583f70f nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe684185 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc306556c nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9896594 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd06c2558 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0afd96c __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd39fe3c4 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbeca215 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb44c4b4 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2f3157b nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf680c564 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6fa979e nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfff29c9a nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a5b479d nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x24ab49e0 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e77205f nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3bacb068 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51a1728c nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x555e44dd nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xccfd40c3 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdca5c4c8 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xee7695d9 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa7d23ba nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x2eb33443 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x227a21f0 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2376000d nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a27ead3 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4b17cf50 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4f327dc9 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x65d58ef7 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6668eb60 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8acf4313 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa6f0d2b0 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xba389d33 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf140723c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xe4083d5a nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x3c4ae24d pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x4e6018a2 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x4447ae0c rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x6605678c rpaphp_check_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x9e8cce34 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xa204f885 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x52c5df89 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5e316804 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x62be7b66 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9cba763a devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa3dd9d2c devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xdadb7807 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xea4e6450 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x06008b53 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2fe91f0b bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb3218b24 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x63e12b52 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xdcc2c837 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xe276847a pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x70d15849 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7f12bd22 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8ce5e9f1 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8d1adeb6 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9b317879 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc90b745b extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcd1c648b ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe16aa7f9 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2badf3b0 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x352ea852 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x47dc7abf mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7f452a33 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd25317c0 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0758fdb2 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x36dab42f wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5ebe4952 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaca68676 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd1407746 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xed48cfe3 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa67d3082 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x5f5a7ef2 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08e304d5 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d93240d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x111f5f2d cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ec49395 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fbb9534 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24c54991 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cc5ac87 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x324697c4 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x355d88a2 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dc68d55 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43075d02 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x518229d1 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x538b27a7 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5be545ea cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ccbb611 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62515545 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a47cd59 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a74743c cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d547c0b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x786d9032 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c4d7a8e cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81e4e408 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ffc06f2 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x932c5fb2 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95de86a8 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa08bdec4 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa4a4ece cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7f3105f cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8169a3b cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9826458 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1605feb cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc548a234 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3d7cb82 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8612a37 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda702bf7 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfb72f08 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe00a728d cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8450b2e cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef357213 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf50ae868 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5ca918e cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5cec665 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfdc18a14 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff3be71d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0113744c fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03018375 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fd83103 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1926175d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x275f1de9 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x380534d6 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x380e5884 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4cd7a0bc fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5e63fdc5 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x766be266 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8ac1c414 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa849d9b1 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb98abd89 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc12e2906 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce0d65b3 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd606cf61 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x384669cf fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x767b4558 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x05afdec8 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0dbc35ce iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x46bb9bc4 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x71dd49cf iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7a39fe3b iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8d66d9b6 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbe51e660 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x033058ee iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ffba339 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11bd9e37 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x173949f4 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x214bf352 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x218e4ddf iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26c4e869 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28d99a21 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x306af5a7 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3707eaba iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c7cfe2b iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cb7e995 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x473a9910 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4adb1df2 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ca19f70 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dd143f1 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fea2d77 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x571dd764 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x592a0d90 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64fcd97b iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65711399 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ce032ec iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74e12c27 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75b92a56 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x776c9b56 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ca86416 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fe14398 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x830dce37 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b29b342 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3c964f3 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0fd6ce7 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1889320 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5025d7f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb76c3389 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaec34e4 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb167b37 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1c1fe6d iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd08422dc iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd727c924 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdce3466c iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe35401fb iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe980a28c iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf059130b iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4676f43 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07e88abe iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f94972f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ceead71 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50747bb2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54a1e41d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e22c4a0 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x979f6963 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97e96be5 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9979693c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c526cd7 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f06c93a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xadf4d477 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb33e7db0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbab7d249 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc5c8b74 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdef589c2 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdfae070a iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01f52116 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a4a8933 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b8f10ed sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ac4e82a sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23cc837a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f97d90b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b356a18 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6528d9f0 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b31b4d6 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78380de9 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c9b135d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b9f703c sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c86e8e8 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d171172 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2e0979a dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa2a2db7 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf7ce2f0 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb38e0774 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbbc7c5d7 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc47c2daa sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4ecccf3 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd07c4514 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd924937c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9b0c8dd sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4b107f0 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf67ee17a sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfeb39eed sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x3a3e1c65 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b8735e9 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0fa40737 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10bf1be8 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26b72bb0 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26d8679d iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2aa89365 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33d3afa3 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x400ef3a2 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4693e56c iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4717d5a1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cffd68a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52e402b9 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54ac1659 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b103c3d iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c8e2ef6 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fa1b632 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x606aac68 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67aea52b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67bf3126 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cf77b55 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c2edd55 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80e312cc iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81465895 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x815eca32 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9528ca16 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95ab3cfa iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9966bca9 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca5bb29 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabc1c2e1 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb64feced iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc35a1a37 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3c79fa6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc68b1422 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca79ad2f iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce97beb9 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd139dda3 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd21c6e8f iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd29b7429 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfd61561 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe70c5162 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe724b2d2 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb407f36 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebdb0b8a __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecdeadf7 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4c550a2 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6d581d5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff3aca8d iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x08681ebb sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6e8d7e13 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf58559ee sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf78383eb sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x4208dbf1 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1f671681 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3261d4f0 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x37743286 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x69bda0e4 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6e34f731 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x895e4e02 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa1a88575 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaa267956 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaa34c5cc ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xac8f26a6 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xba2ff927 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc1c13ce0 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc2c11627 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd03a136b ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd0cfd537 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd708a657 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd8052a85 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe2a23f9b ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe57f1718 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xef5981f6 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x639f7664 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe3806732 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4fe8c8c5 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x563c0d48 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6e916ddf siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x74893e21 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8ac0944b siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x949026f9 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0382d50e slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x18287a62 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x217c65b3 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x29c9d89f slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30c6a59f slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x33fb0d87 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x413c3e9c slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x41c011af slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4d0c2602 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56618b1d slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x568a25db slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5dccf07d slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x766b173c slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7706b663 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x785f05d6 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9428cb94 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e828d4c slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1cb82cf slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaa9830ae slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd527842f slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd7dfdcaa slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdabd2561 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe862ffee slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xedab364f slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef1aca56 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xff70053f slim_stream_enable +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1a0e351c sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x9dddd497 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa0a36cc8 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x1b581bd9 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x344ebacc spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x65c50ea8 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xae50f39a spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcf8bc66b spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe6855165 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf2021542 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x15bdd5b4 dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x225f9d9b dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3a4d0334 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4b7c649d dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xab2d0a18 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb3345d2b dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbc49be8b dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc9eea294 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe6782fbf dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3f4e4d25 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x412e20b3 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x55b298a7 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1592bd7c spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b6fcb84 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x23520562 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x264cf82e spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x416a968a spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5cdf8205 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x67628ace spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6af84dd5 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x934f4a8f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x95392332 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa69220f8 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb15a821f spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd410286 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd77826d1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdbbe7f2c spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdbd0a9b7 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd0d6a87 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd83720c __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xed81a2b3 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x122f03eb anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3b0bdbfd devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4a8f1f56 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x549b0330 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x664cca52 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x68998a8a anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7273f703 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x785e46c0 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9c9ff42e anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa029f159 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcbdcdc0b anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe12113de anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xedeb1219 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x66518a2f fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x68b18ba7 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x78d530c2 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8551f078 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0a4c98c8 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x28d01531 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x89e83fcc gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x93c55802 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa39b9927 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb7d09783 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcee0eed1 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdc83e38a gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe1346861 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeaf52150 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf2d902af gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf98e71ac gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfebe2ff4 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1f85530b gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x458ec5a1 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4f1646fa gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x50a6e49a gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5a394a02 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5a3e67c1 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x767482d7 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8c94665e gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9a23a85d gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb463a520 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd1e5908c gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe5db9e90 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xed0e76f6 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x43771928 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xeb780dd3 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa9b4da71 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xfc0c4254 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0f6915de gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x24d1f8d9 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x31508536 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1ca353f4 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1fd148ff target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf67c5374 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xffdc3e25 target_queue_submission +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0611d4f1 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x06c67946 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0b8d120c tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x122e0290 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x187ade3c tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a0b2ee0 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2506f3dd tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2f4e1a29 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d951c67 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a27e575 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78c14521 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8ccdc40b tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x94a2526c tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa163bebd tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa28735fb tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa56c90c0 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0647fb0 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb33cdf94 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe80debc tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc5ec1fe6 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe84e3ec4 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8ad6d5c tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf526aadd __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfb22f2ac tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/uio/uio 0x026d8596 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3887a78a __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6cfe2a3b uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa0663a4c __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3b48d545 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xecbb6141 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x01931e19 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x30e5c132 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5e2f605e cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x644f07b2 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xab703495 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb023b622 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb0dbaef5 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcfba79a9 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf9d3f183 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x888a830c ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8a180cfb hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb425be7e ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbdd429d6 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x25e020cd imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x375d9887 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3ad931dc imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3fa17c2a imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe67701f3 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf8791848 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x11acae9d ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x12e333f7 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x19777f01 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4411109a ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e8661f3 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb5dc4a82 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0553dc6f u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1b516168 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1db98402 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4472024a u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x50b7cf8d g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6f734044 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaa2d3223 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb769124d u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb7ae8c7d u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xeefe7a31 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x279e7969 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2957a8b6 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2ba838dc gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x33e132e7 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b9e0fcb gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x53715543 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x53c12fe4 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6cff4dd3 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79362f6e gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x87afe42e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8d251fef gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd932968 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xccf3c604 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdbb0cf10 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf38d67bd gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf5e245d1 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x62b970bb gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6e193cf1 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc07a28cc gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd611bbee gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1f1383f6 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xde373719 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe55dce18 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0017bde9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2573aac6 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3508894e fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3a99c1d8 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x47edd622 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x68935a20 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8bc0d886 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x98998c50 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa924587b fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb2e9a523 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb78888e0 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc0564ad0 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1e61a44 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd8864a65 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdaa85424 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe33a4db8 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfde050e5 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10bba7bf rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f0fd3c9 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21766fac rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21859d93 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x250593c9 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x58bf981f rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6009ecbf rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x64b8cd22 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaef5c486 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb5c1b008 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb6b9aeb3 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc4b3e600 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc7e89b63 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdfa984fe rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1c6d9ca rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x015c97a0 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x047ea76f config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0805dd4d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bd5d724 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0dd435f4 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ab7ab40 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1de514a9 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x200465d6 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24b75e85 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29712dae usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c56b40c usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3451f91e usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35ada34d usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b6884ab usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x414ac90f usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4403b70c usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b7b1974 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5050cd46 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52bbdfa4 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5480b87f usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59cc9f2a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a4f3251 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x654adca4 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78e5b4f8 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x846fa478 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99da3282 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa7c3499 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9b63e8e usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe07c82a usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcfe9113f usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe46e98f9 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x036b399b udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x03a5373d udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3bf3da50 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x75a33f79 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9b131b77 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa85b85b7 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa9344e5d free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe2233cc4 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xeea24322 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x013ca264 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0765c809 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x12263f3d usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1584d5a1 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x176668c4 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c801c58 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ac70473 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ad4f0df usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35417ead usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37525afe usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ac69a70 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x70e121af usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7aed82cb usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f74d24f usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81908fea usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81993a50 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9bdd5aad usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa87223c8 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab77653a usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc77f9be2 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc82ead9f usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbedaf50 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7a20c8c usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdbca8046 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd48cd31 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3f3fe9d usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef9428dc usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8bf72a7 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfacc4455 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xed36432e renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xab1bd196 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb849442d ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0536439b usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x059a3640 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x23c68f7c usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x26197835 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x389f4f5b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x53d78094 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x54af51f3 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x86193ac9 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa480f446 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2e013645 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3b70a692 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4b3d54b9 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb1e4498 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe525be18 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xed124907 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x05be0cfa usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1d251350 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2f5fbf7e usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x52fbd58e usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf4e13dfd usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc3684e33 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x87b0a30e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21df5d7b usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22545c0d usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2434b90e usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2659f6da usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3ee9d144 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4cb35dd4 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x56766f38 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7324d844 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86212535 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa042509f usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa15391e8 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa352fc8f usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa451f643 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa51e2e0c usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac979337 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0a968e4 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcde5cf4a usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe521f314 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe81da2aa usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfa4202a0 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xb15d24fb dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xd0dbfad8 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc48ff2d9 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xa3ff5499 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07b55c43 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08c81702 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a135141 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0eac34ca typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f257f1e typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x100b9c36 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10419f94 typec_unlink_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x143f62f4 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1c1471fa typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ddcb2a7 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x24fb3edd typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29454f03 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29fcf4dc typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30d2b520 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x342a644c typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38f1e088 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x390921df typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3923914e typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x393ed2cd typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ca779bc typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x543232a7 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56ecb7ff typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60af22b8 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a0335a5 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b20c9bc typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d63fdcd typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7298cc00 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7944b65a typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81b0e02c typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x83c58010 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86334241 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87aaf41a typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93c8a066 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96e768a3 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x98e7cafb typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b550eee typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa00e75a3 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa1e69a07 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa429cd70 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad5ce339 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb83b783 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc03f206 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbed349c5 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1213609 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc273e1df fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc33222fc typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcda154ce typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd68a51b5 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdbdef60f typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde799299 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe5b912cd typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe61358f6 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe95feeaa typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebd43489 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeed8ae96 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf06335ae typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf923eb02 typec_link_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfaa66104 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb834e80 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc9a16c7 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x18788134 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1c4c0ac4 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x359152f1 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x48089f2f ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x60732609 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7521251f ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xabf91ad5 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaefb7eba ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb4c16249 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c3f8835 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2d4fe4ce usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4933647b usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4b10b502 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5564cef5 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6ddcf366 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x82b211df usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8c0deadb usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d5ecdd6 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1272666 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa89712e5 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb93c9388 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbe294a76 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x243208e6 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5b3977c3 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x69cb051e vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6ccb1584 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8ea94374 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xadc606aa vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbd20675b __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdead4021 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe16d65bb __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x9ec82dda vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd0df591e mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x015d9217 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x149ec57a vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x183ecf44 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26894386 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x309e55ba vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30acc7a6 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a41dac7 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fb18e61 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c27339f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d3e57f1 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5380446b vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58e619b0 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a5f3a4e vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6173ec8a vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73fc13a3 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76870ee9 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80429446 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x863d8d4c vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87974a3e vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a1c3afa vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93b0c91c vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b18989f vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2a49521 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf6cbc73 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2169537 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf8bf07c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc32032aa vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc65997be vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6702e0e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd000a848 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd266cd98 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd47cce55 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xddd20622 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde6b0c21 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfc0a1fd vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2c972dc vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe99a69b1 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeda40756 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0feccf2 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf94df918 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0294a036 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x237be917 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x31f43920 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x385d3344 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3c5115ad ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6a8159ec ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74d9c1ef ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xd64a75cb fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x940ce307 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9a81e4b7 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x0e6dc358 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x710e1126 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1414f47b w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x182531e7 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3f860a80 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4b92e90c w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x53ea005d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x54424144 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9cc173a9 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9ec1fbf3 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd2ea92c0 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe62746d0 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf442ad35 w1_read_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x51c819a5 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbbb73075 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe6f14e5b dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x043872dc nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x07e1643a lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0cbbab13 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x19dc4f29 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x44ee2168 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7b61e9b8 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb36e920e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0240670a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x027fa166 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04e914d9 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x092c8133 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d02ed5e nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f6b488a nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10cfae84 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1360d50c nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x139674e3 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x140f38e9 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14141294 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x177a5ea7 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ab29034 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bec47bf nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bf2abc6 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce1a768 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21fb52f3 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25960263 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29357c5f nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a026189 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b3e4fdd nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c3d1c21 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d05eae9 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e9271e1 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x302dd239 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33b1abda __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cb8266 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x380b1342 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a469ace nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3caef98a nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2fa24a nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40532230 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43f58aaf nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480e2d7d nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a58c61 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aa6a28c nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4abc2e4d nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b687bfa nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c228837 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d1bbbda nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ece091e nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f9ea615 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fe78ef9 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54632549 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a69038 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x561054bc nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5870d3a9 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58e05e31 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x595d9fe2 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a8befdd nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e80ba80 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60eeba85 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61b1245d nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62abede1 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6460bb39 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x649c2ccf nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65acb991 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65bdd1f7 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66536a3c nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6822f4a5 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bb11535 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d9ea8ad nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6de8a0ef nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f92a047 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72dd9c3e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737a81ae nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a85942b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b9f5e95 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f5112b8 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc66f19 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82acd830 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x835b5e82 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88bbfe5c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8906f845 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9a1874 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e691d56 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f075e68 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91230c63 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x912e4a7f nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93236461 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93302c90 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9333f688 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x947f255e nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de20c08 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9edfac89 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f34e96 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa61fd14d nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7647084 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8628b86 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab6a41ac nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadc5514c nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf7896dc nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19b13c2 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2d71335 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb384a065 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb50a902f nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9d7660f nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb0e515f nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe3a9130 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe7aba7d nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe94581a nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf7e480b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc015aa1f nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2f16985 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc37e6294 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc57e088c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc673e75b nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9538f8 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaba9051 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc0c17e nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0c390c0 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c199b9 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd502d811 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcc1bf65 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddbe77e5 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0ad4b94 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d831e9 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2d9a8f9 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3a7d853 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe62a9d5c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe832ae85 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaca89e8 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedb6d20a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef8d55d9 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b2cddd nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf301188a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf430707f nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4dca10d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51570c7 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf696b011 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9dad87a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb12f665 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb247068 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbc4557d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffe3405b nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe241ec2d nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x007bc366 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x016779dd pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01d9269d __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02636ccc nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02ba4ee1 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077cff64 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b44a837 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0caa8d44 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x122037ab pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16800269 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18231dca pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x190d5255 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1998b51b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ae2f8ad pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208bd520 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2df1f44c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e568179 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x323e9685 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ec2ccda nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fc14a7f pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x452abd10 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48c4d940 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a46aef8 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a6029ed pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c32f1ed pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d166ad8 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x541a6ca4 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x553e4f9b pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5eb35534 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6217f71b pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6574967d nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d3bf317 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d805645 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dd3ac39 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70aafc21 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x733895d9 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x751805ff pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a6339e0 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b85ac04 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c719412 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f4b0d1f nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x816db658 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82111e3d nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8553a1ae __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x866c231d pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x871037d1 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e8f7390 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x956f9a72 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x981f3d98 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6e914c5 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaca3aa33 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb16ca9d0 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb490566c __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9d3b01 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc12001bf __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6ea6c77 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7224eee __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8cd566b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3e449a nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1e88d4f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3440c41 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd50d861a nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd65e3f51 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd94d1e58 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd97c00d0 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1419217 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7b1ac6b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec74c6eb nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeda95bd0 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef1ae96e __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0b03df2 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4f99929 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf63b9a37 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8953a57 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc2ad2a7 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfce922c6 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd1b3b01 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdf7e3d7 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe8362db nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x23a55612 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2e128225 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6a736d31 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0c110988 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4c53a37c nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9697e9db nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfff7e3cd nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xe1868e64 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x12ee8785 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x291ed6ab o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x45ffe23e o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x53105eed o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5eb64b7c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7eed5097 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe77dd71a o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x03a0d401 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0755553e dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x53b0d9e0 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6c76cc0a dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae0ba6c7 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd9f11f28 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x873070a3 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x894e4190 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xeef25d21 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfb317482 ocfs2_kset +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x31d4e581 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xd7219de2 poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1e7b8d08 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf2ec37c8 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x22687497 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9e373dea lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x17bc130d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3e6803fb garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x44bc62a0 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x77e4b78d garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc0771a76 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf47d252d garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x175b7176 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4017defe mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5b5fc72b mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x92bf4688 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xea3226d9 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf9b8072f mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x024e3ec9 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7c800c88 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x27f4c974 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2a9d1bda p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0xb09faf79 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xcfb6a3da unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xc8adfd9d ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x01988961 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0a56c070 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3874bd8c l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6e75c04b l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f7a18ff l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc418f0e7 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe1115033 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf1e70603 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfa19594c l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x90b844a1 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1311ec76 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x348a66e2 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e609ed2 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x492c1e73 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x53dce720 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x544ddd4c br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x60dc1256 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x644cc83c br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6533b452 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6d4ea8db br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x75484b50 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x86bcb290 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ce0be94 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97f2804a br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb06aa4c0 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1ba0925 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3535054 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb4be0785 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbe46e0a9 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcaa83ffb br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xebda2f84 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa3d33d5 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/core/failover 0x435dd69a failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xce1a7776 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xea9961ea failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dfe630e dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1da51fc7 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x205ae2df dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2959a97d dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x305214e3 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37eac520 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x39d4a4a9 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x454dfbc9 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45f5b0dc dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49b913a4 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x532febc0 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b65a292 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f7c36f1 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e9b363e dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e68b9ea dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91d4f42d dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a105b08 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f7d5f4b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7724c78 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab0bd65d dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae55c6b5 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb040d3f4 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7a37419 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbb74630 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc7b0758 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd65b356 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1b77f5b dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2b92fea dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcea07078 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0b3433d dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe088395a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecf4513e dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5080cfc dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f91b996 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x888aac73 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbf00116e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd8aa8fd3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xde80a78d dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd652283 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x091461e9 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x158d84d0 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e05cbaa dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27b8f7b3 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2ce0f3c2 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d8c14b8 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b08a176 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b384513 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x471fec80 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4eb6c9f1 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50440ca6 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x530630f3 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53f0b3ca dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x54c51066 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x582011cd dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x59b7705a dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c51c3d8 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x727069b8 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79fb2e8f dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80efada4 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83ab6001 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88d897c0 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x92429338 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9564df52 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x98089071 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9bddccfd dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0d95479 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa754754e dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf7c417e dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc1def598 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd5802d8 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe42d9144 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4b778fb dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8384928 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3fa632fb ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x494e3837 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6c539c5d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xedbc587f ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x9effaf7e ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xd5b5e5ac ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x41d526c7 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6d950198 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8cbb7b9d esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x19607cdb gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x57a601c2 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5e90f164 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72facc04 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9763ef9f inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa76a11d8 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0f896f9 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd911906a inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdeb2e98e inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xea6f9561 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa105fd4 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x498b1281 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0979140a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ec5a4b3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x45a2c5ed ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x546686d8 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7bec3fc8 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7eecb88b __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8af92801 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7bcb635 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa861a4b0 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbe17eb44 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc62e23ed ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc9bf02fe ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xceea9cd3 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd28b4f0a ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf7af41a0 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfa900b25 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff7156d8 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa0130833 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x1e7f4864 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9a9c0854 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa163c802 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xad3f9ee5 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x247c3b6e nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3618618b nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91bbd968 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xae9a02ab nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc622673a nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe3cd35cb nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf6850009 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x2febf940 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3afb4ff2 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8e307cd0 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa67f4028 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6af8c241 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe746c945 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6f88eb77 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7b81df98 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x88f4a63d tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x943ac528 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdda2fec1 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x29f4a32d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5e1ed441 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x73d2b27b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7f272fe0 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x94efcd44 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9c6cf9f7 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3f97cb6 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf78a84dc udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0dd1fbcf esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6c5b0303 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xbc5ed76a esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3cb788d6 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6eedbddc ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xedbd52a9 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x175cef42 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfcd6f15b udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0373f411 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9153b514 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa581495b nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe4e57dfa nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xe1d1140a nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b9df62e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x35aaa0f7 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4e34f293 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x92f4a172 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9691fb9a nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd07f5ced nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc2f0a88 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xa88c5829 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x37c93a89 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x72546064 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x827c6c82 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xdb5b1d07 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xefe37a19 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x06f96391 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10a58c3f l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15e43e72 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d126d1d l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2ca8a0ac l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3154d832 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x329f69df l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33c80722 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b667bb9 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4216733d l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42e4d2b6 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e5ed135 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62c0c5d7 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c157e58 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bf793f8 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaed9da63 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc02fff3f l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd207b629 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xde4c7413 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6be6179 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed74478d l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x5855f495 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0afaae65 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0648f11b ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11bc7b71 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x242a9051 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2d97de0e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30c38e82 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52118145 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65c8afb4 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69f6e7af ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a04eec2 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x98494d30 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f3b9dc1 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa45a17e1 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa76f0840 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xba12c45c ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7fc6187 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc883621b ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb7c4197 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe76bd0d8 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd1fa223 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe122cd6 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1f56e834 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45065896 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x839d958e mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb70588c9 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xef01c72d mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1813850d ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b0d9884 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29f19ea4 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a01c925 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c982353 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4154601f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5cdffdc0 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ddc6701 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x667f8f93 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7c67c9b4 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9773d721 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5706e9b ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae3aacae ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaf91a6af ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7bf6d5e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda972938 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3dac48a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe72da39a ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf430b18e ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x08ddabb0 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3656f34a register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9e53cbbc ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb6a64b11 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x162e96f1 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x31e19397 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x36f7ba90 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5c445176 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd7883601 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xefc4ac43 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2728e70 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04b325d9 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x064c4d0a nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f29c933 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fb4b36d nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x130b507f nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x156ed893 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x177f1f26 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17ba682c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d5553af nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f97a27f nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x275c45db nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27a0baca nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a74431c nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e056bbc nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x309a3b31 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32993a59 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35eb834c nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36187159 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x365d0601 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37791d84 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38d01c45 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f9da6e7 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40e7e88c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4369bc82 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5acde802 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c454b48 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x605be3a4 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60eddfa1 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64f3e18c nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x651db8ce nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67844d58 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69315398 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ddf3bc2 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6df73668 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e900935 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f5a9a15 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70b63b24 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7343f8d2 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74624a85 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca13569 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7eabe70d nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8087c1e7 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8235a3f1 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83360b41 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8502e5e4 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8586b020 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86a4c9c6 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8de6631d nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f187b7f __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f5b2c4b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f6e214a nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x922dd1ab nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9237c865 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92deba82 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x946f4e02 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96ef2312 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x981ab354 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9858de86 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1c9f621 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8ad044c nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9d4e5da nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac515f40 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1ea00b2 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb25d94e2 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb49aedb1 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf6f70c8 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2ab0191 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc926bccf nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcea54931 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfbf47e4 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3f15266 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6b80df0 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe97da6ed nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb0d0278 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb44dda4 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed93163d nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeef33067 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf545e42b nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6e863d8 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9b00a1a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc6cfc0d6 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x355193d3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x45862eaf nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x19bdea64 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x20b14044 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3580895c nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47f430af set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4cb6e7bb set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x50e8baca nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x68be6061 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa9243bd6 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdefbc03f set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeff27217 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa8412c11 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x481c163b nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7a462161 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7ca9d3bd nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd97d4aad nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7da18c8d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8caa4ded ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9040f2bb nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb9e6571a ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xddf1a57a ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xebaa28ac ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf3893f3f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa94a9ba9 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5515991c nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x15e69b5c nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb4a01589 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe9f77480 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0584abf6 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x09ee64fe nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d52bf1b nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x293006ae nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x48f27d03 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4ff739a4 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5473540e flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5c72491b flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66ddaa7e flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72df8ba6 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x74b718bf flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x79ceb939 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97746308 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xae45fc51 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb653af04 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc2d478dd flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce94afaf nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x145078b9 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x19e3e4b6 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a3d2d29 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a9b6a61 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b8c9c2e nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x52ce02a3 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x55929833 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e332178 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7e225a5c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x847c70dd nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8623ec47 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9964f12f nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbe430f9b nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd1ea722 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe8f1339d nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xec7a1d26 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1084a1ea synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1eb82235 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2269716e nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x291ff389 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x30a2247c synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x72606f25 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9335c0f9 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb383c437 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb8f546d0 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc58a6b3b synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcf0b1aaa ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11dda61e nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x214920e6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30a8502b nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34d889c0 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34dbc3df nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40840ced nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42fa61ba nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43a37c45 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44718429 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b18dcd5 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5deee9df nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68d49acf nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ceabdf5 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d26f442 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e0e81b4 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x738b473e nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77673222 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77c7ec03 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d8b6150 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81ff29c5 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86f0ada5 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88b70c78 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bd1c052 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d688c21 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa267faba nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4a61c8b nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa60541bd nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7bc34dc nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb888e582 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc483f856 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca1ccbf2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca536044 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xead3457c nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0bd22dd nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0d2fccb nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf67a2822 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfeb5d12a __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfef873f7 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2d167479 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6a30e9d7 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9b25d733 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xacd082ff nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc2ca13e9 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcf0bbc61 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf60127cb nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1fb2e90f nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaabd46e4 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd0adcf54 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x409ccc67 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x89d92c7f nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x155dbbe1 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb6d779c8 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb90017cf nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc6c47ac6 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa25e47e4 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xdc9e8fcf nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfa992359 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28bbedf5 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e8f313b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38af0bc4 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3dc03b87 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41c178e4 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46db6bbc xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57cd4e9c xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x72ddffd7 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x797221b5 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d476537 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82a03f0f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x948fc005 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c2f5d84 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa218d7f7 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd631d686 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb5132a4 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe552129c xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe92b4ffd xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb0a7048 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed104ceb xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed3165c7 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2c4b4dd xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfbeb104e xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x6977b7d7 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa9e5ae2c xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x80e8097d nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb1646476 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc6073d4d nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2d6e62cb nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc98accca nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe5cc50a1 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x94bec897 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xb5ea3a93 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x662c515d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaddee69c ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaf2118b6 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd184d2c6 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd92e03a9 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf438499e ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x9bd2946a psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xbe412fd8 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xe0a7d8fb psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xe59c38bc psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/ns 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/ns 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa2bd758c qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb6f40ad8 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfaa2a3c3 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1489c0de rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x2485522f rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x32c393e8 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x399d3083 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x45bff359 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x49743e66 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x4fc1a688 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5ce5e5c7 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x5fa21a70 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x6595db69 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x67b8442b rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x95e97404 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x9942b8c4 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9a8fdc83 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9a983686 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa37b5b5a rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa6ca5587 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa9ac2f77 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xb5381ae2 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xb84f7826 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc5e5fe30 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xcc539f33 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xcd5e83d4 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xcd6cfa17 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xce49bc3f rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe304dc02 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xea3f12c4 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xeef53af9 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x7483e6ce pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbb06c66a pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1bab2e86 sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2ddbf38a sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3458adda sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xdcf7bc8b sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x1a722d15 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x21b9a7ca smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x2d8db3f0 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4302fe9b smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5dad499c smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x674b6a90 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x6d9e99cc smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x74723e18 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x8f627bb4 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x9efb4ccf smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5869a2a1 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbcefe706 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbe62b02f svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xddd1d40f svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002d3011 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x006c22b9 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e2ab52 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02733623 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02c59cd4 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x030f53b9 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x037eaaab xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e21ddd rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05041ab5 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06d7e824 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x076e0bbe xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0818a466 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08553fd7 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0918f4ba rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e5c8f7 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09fb52f7 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09ff9aa4 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c834573 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca0b65e rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e938df2 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d34341 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14120f3d xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b462ac rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15be7120 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167d0a54 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d51441 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17453a1c rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174ee000 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e88921 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182edbb6 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1934dc9c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aad3649 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b46e5d2 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba14e55 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb7a217 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d621665 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dafad74 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6e8120 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f42c3e9 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b77006 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222b7877 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2239833e svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x225c4dbf xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229be873 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b12294 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2430e700 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26652e95 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271d1df3 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27a85ee0 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b1aafa xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29805a58 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bda3e73 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c9370e8 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c94be2a svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db08f50 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e0a9845 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ef77a21 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f29bb0d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f407f1b xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36cbcf45 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x372e13e4 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a5aa66 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37eded76 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ef98db rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3808b288 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39469cae rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a66dfba rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4be788 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d0ea984 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6ad697 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42881bdb xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b004ef sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44118a8a svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44301bcc rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x462062dc rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47488cdf rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47549f8d xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48bde4f6 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48cedb06 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48e6d8a5 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4963b30e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a79cd9f cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9a6b41 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4abf13c3 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b60386a xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c954c9e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d894003 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51a93e60 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e88f16 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52db62d7 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548ca003 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x555c2079 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566dc3b4 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57773746 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59296586 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4799bb xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f6b767a __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a33b4f svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6333a45e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643dfda0 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b85749 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x685170bd svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a271f79 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0137b5 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e71afec svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7060362b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7135ddb3 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732a3a81 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7400dfc6 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74cc4da4 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7643ffab xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7761d45b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7906180a sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a25ef74 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a61984e rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bef87af xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c7cb1be svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dce99b1 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7ffb31 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f856a52 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x802f95b6 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81402a4d xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x814380d2 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81fc9301 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82a2ed81 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x831aab4f xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83271b1a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83bfee21 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x841af403 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8420429f cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84bc7a2e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x860de739 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x862564de rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b57d06 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e51777 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a258c76 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd994c4 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c698992 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca148a0 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d162a10 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa3f554 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x928c9854 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e31a58 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95f298a2 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x963b89bf svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x991cde95 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9922f80d cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0bee69 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aee48f6 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c2b0f45 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e5e040d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ecae76a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa00dbca2 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa440f354 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8117eb5 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e6704a svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacbb9e58 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad973264 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadf81b86 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafb4953a cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0868463 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d55b28 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb219fda9 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2b9d0f2 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb36693fe xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4563799 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb472d1ef xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5a800ee rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8069f5b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb84f1f5b xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f1ae27 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb995d0eb write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9c8a433 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb707f87 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbbe4343 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde2deb8 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe538513 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee50f66 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf621de5 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1280f92 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1eb3cfe svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1f90e26 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc30f1e91 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3994217 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4c05560 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52c11de rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc54f5cfc svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc62c3e9 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc921e72 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc95e3c9 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1315dd bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd07c27e3 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14802e4 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd456bbd9 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd568118d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd60fd324 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd68df304 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d45d1f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8414681 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8b7a9cf svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a483ef xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a5e9bc rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda69b623 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda8a96b2 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0b9401 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc47ecec svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf0ab5b8 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfab8d57 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfc51e4c rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfed47f9 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0dfe879 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e74fca svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f05814 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41b63ec svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6c4f3e8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe879eb68 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaa06d6f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeba34d66 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb04d8a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8a17de svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee5a8eb rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef2aaa1c rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefecfbf8 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf00f628a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf54a9392 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf614fdce xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65ca983 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9812258 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf999808d xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc292d4b rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd3ffea3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd4a83ae rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd5957dc sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6f99ea svc_rqst_free +EXPORT_SYMBOL_GPL net/tls/tls 0x0c007421 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x36828cfe tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x609a72e4 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xd95bcde1 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0df03033 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18a1dc76 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x194e6ac2 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b79546c virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c7a0848 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27ec7b2b virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35a84d55 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e1cbabd virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3edffcf9 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x679075c0 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x763099a0 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d5e1f83 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fcc1598 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88511ca9 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x975cd8a5 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8eebcf6 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa979aa6b virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaabe6cda virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab411d6a virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb13a2280 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb145ccc2 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2c123ca virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3a4a5a8 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc9eb480 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc27ef8c5 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc46d26aa virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4fb3e37 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd39c52d virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce6ba398 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd20f78f2 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb6fb4b7 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4380921 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe48801ed virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xec612bd7 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e6f817f vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27950827 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f2d0537 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x449c9a15 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d8534bb vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4eb94fae vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5163c815 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69fc8d61 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6dd8d0fb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x860bd2e7 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xafc39d07 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb66f7339 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4f515bb vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd941e442 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdcc72b9f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe2c3f595 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe75452c2 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec0177ce vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf17f4ad3 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfc00a940 vsock_core_unregister +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x146b715b cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2cfbd058 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x492d73e8 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x517bed55 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x74dbc299 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x799ae8ab cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7a6b9742 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81969458 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x85991b4a cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d6f7d86 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x920fa47e cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9792c402 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9927021f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2d242a1 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeabbe430 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee8898eb cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3c2cdb55 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x43b17809 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb2701112 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf68b4157 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xd4f0c676 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/snd 0x1d374631 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x2eef7b5f snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x37f969f8 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x55cdec69 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x67174a70 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x6c47e4d5 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x70291953 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x7aceb613 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xa1c3579c snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xb39c2b34 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xb42b0bd4 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xba4cccc3 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xce06e2ae snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xe3f64a2f snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xf5ca2eb3 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xfe0af163 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xfe0dbdde snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x20b7badc snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2bb4f86a snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33eda345 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x47d5ffd6 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8582d6e8 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9286aa46 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9905b1bf snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa863ddf2 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xba450273 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe3f928a1 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeb78cebc snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfd38026b snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x03b5e79d snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0efcb9ab snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x272fcc7d snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2d13dd69 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x31d7d10e snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7a79e448 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9ae868db snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xccf7c030 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcd052f8d snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd0813116 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe677d320 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfe18dbb7 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xa172b3db __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xdefaafd3 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x063ea8c6 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x45fe8fdb amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x60a500fe amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7b2b7038 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x85a75939 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xacf3710a amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb0e7970 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbbb4aec2 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe6cf1547 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf1c1c539 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf29223e1 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf445459f amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfe0b8406 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x037570ca snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03e9ca37 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05f57962 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07db1c9d snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e937053 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1099b207 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x132f8f15 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x149f5509 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b0ab291 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d35e299 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x231b3078 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26763b5b snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2831fb6d snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x331a113f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38424c6c snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3cd22328 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3eca14fe snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x422a72cd snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x431c1e19 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45e5c7bb snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48d9b6c6 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51b297f9 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51cf6554 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c372001 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6032fca1 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x646c0c2e snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aa92481 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88360d5f snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8eaf20cb snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91651198 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92b38477 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x972a8f69 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97537486 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99003af8 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a34baf8 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e5c7ffc snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f102345 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ff32623 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa088d4e0 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0aad90d snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2a6aee5 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa392d860 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9bdbe27 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad11379d snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf305f61 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2b82943 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb32bcb1e snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb573d9ca snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8031698 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9a2d92a snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba21a504 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba3f4d4c snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb671b20 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe856a2c snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf0d25e1 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc02877ad snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc03c31ee snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0aabb2d snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1a5f8de snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1bcc60a snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc22295cd snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6ce38ea snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc53d817 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcff44800 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3eddc48 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd641a585 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9ef9f9c snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb2f7ef0 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc6d9628 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc87a4d7 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe438af08 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5a4218a snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe684762c snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea87b120 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeaf8309d snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb05b572 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec61e0e0 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec99d621 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee844d05 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf00d8f56 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf403fc30 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe138bc7 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffe5b01a snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x44381816 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x504fa0b2 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x25415fe9 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5be74e27 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6c8f3f03 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7b512f87 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9e882738 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa1c7f8d6 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00408448 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00aae998 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02345874 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04d4a8d2 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06bbfee3 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06ff7b6b snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0712d84f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x092dc129 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09e741db snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0afa380c snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d73aeea snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f9c31cf azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11e0c227 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1325ee8d snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14ca6fd9 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x174b463d query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18dff64a snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1954b6f6 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b1b6e21 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1be3d8f1 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ce0b52f snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x229dc2c7 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x233c1baa snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x241b4558 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c83b6f6 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d65a0fe azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e077a7c snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3079e55a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3616e285 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3df03104 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x438b3057 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x438e69ad snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43a518e4 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4642f712 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46b0e5dc snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b72542d snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4be4a744 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eab3c2c snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f5c7211 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5291e095 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x533ac727 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54ffbc55 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56aa1a90 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x579fc0d8 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57a5fabe snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x585d10a3 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58bf37ff snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cfb40c6 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f170bc4 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60af8e26 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61d7d139 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62df53d8 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64e9fc51 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67069d29 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67b8a7f6 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x682efbb1 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x698f7b0b snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b02691d snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f891747 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fec7ebc snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70916847 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70ca4bfd snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7379a97f snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73818f24 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x764a77ee snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79ea4d43 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a2f2af2 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ab9e417 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d23597c snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d549111 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f7cd247 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fefd470 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80d681eb azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8164e8d4 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x834221ba snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c011f50 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c96ac74 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9261f1a7 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94b7c002 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98e22c6b snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b095736 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b35cd0d snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cc515dc snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ebec017 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f6d0bc9 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2838540 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2a04b58 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2cc3aed snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa38b0268 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa557b736 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa75da418 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa82bbb14 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa85c6687 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa87cfec1 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa96f8f5c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab51bae2 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab7b0bfa azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae468c58 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb422e168 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba269e99 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe5bedd1 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf4f5bac __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4d87573 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc66b577f is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77779fc azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb28c5c8 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd1e6a41 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0a34f8e snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2b02ff6 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9881dab snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9fa3121 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf033bde snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf67eaa6 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0eeaf4f snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4391b14 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5272867 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe85ccc0a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea4e4122 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeadf8bae snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefd08c2e snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1dd22e7 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc33d40f snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcb7ea6d snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfecdfbe2 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09a969ae snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x259cfaae snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x29b0412e snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31c42b34 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4bc29b14 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x524d5a94 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x529c3bc0 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x639dc82d snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e8ef3a3 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d7482e1 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7de3c5ac snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f7e50fa snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ef359b2 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9622d841 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa72da0f0 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4fd6280 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd6d1f300 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe440aabe snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf061245f snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf4a35e2b snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5036166 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x47811d86 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x53951928 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x9fad30f5 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2453855a adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x274ad246 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6f48ab6e adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x717e2b78 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7ab43938 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x88b87646 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9b3073c1 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa399d282 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd0acb582 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe2c1d271 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x84412433 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x38725f88 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9e7a88eb cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x12fb04ba cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x81054043 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8384b98e cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x84af9001 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xae4a842f cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x64aeee14 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8481aa41 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x954d83c1 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x3c56cfc0 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x3d338efe es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7dd05fda max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa23e0ccb soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe6c942af soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xed86602b max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x4f0d7759 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x188f8c15 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x983f2440 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf058cdb6 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x0d63a75a pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1f3f203d pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1a48c689 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x70a3e99f pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x556fb781 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5e956492 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7036a857 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xab3e517f pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4f17ebbb pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5e218a6f pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6be86309 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe520b525 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0d5c3fec rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x89800b3b rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x97eadae5 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9c1a7443 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbde2fd64 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd9eb5f32 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x724bef47 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc8b216c7 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x0e541918 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x49b21808 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5411daa0 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x72208173 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x79be14cb rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa285a30b rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xba24fe96 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbb9116ac rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc5a49310 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd4264eb6 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdd1bd1ae rt5682_headset_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe307c9a5 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0f8114b2 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5803f47e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x70845303 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7349a418 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x972a4af2 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xf9eac9de devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xebfaa37f devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9adc67d2 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xa383bee8 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0ae8ce8c aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x88439c55 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd14656e7 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x1f2cfd70 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2fb748d8 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb7a7e2c4 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfc18083d wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfc3f60c1 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x20b4e8e9 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8b502b64 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x95f0bf7a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe5e44d4c wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1cfb2a07 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5b78a0dd wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x90e52c01 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-imx-audmux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x2cd415fc audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0379ef2c asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1a1072f3 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x29c02c6f asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x49ef0956 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4c9e5a1b asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5252e1c1 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8b05901a asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9daecc2c asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa82991ea asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabb4f81f asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaca3e19b asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xadc33eef asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xafa5c9e6 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb32f4bc2 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd8cae805 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd9d3da4d asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe003f595 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe6b078a8 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xea9f5f8f asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfe8a4663 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x019dacb1 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02207a5e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x033080c1 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04aaa366 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05075a0d dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05fce2fc snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06d0ebd2 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x076ae8ae snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b992e4b snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c9c9852 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d0e9a34 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e0ace8d snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e840fe1 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10528481 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x115e0988 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1241b005 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12ef3118 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1584c6bd snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a3179dd snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b264689 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bf3cc0c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e228075 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eec31b5 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20576b99 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2084725b snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x212643c2 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2194352d snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2566b46b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2763181c snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ac8bf1 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b4c88b8 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cd4240f snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32e7abcc snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3548d0ea snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35fe0daa snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36a86cee snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d614d1 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38e1e551 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3908924e snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39296bda snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x394fbc53 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a6081f7 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b0edd3e snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb060d1 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x438af9e4 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43b423ea snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x453913d8 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x453f6672 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47fa3f05 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x485946ab snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48c26cb0 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48daa07b snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5f8171 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d1c42f4 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db1aa1c snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e056c82 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e48734a snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e8c8aa9 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f8ff5fa snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5100755a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5263a695 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52fbfec8 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x531528ac dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5548ece4 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55d2fdb4 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x560134b4 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x565d0e91 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5730762d snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x574b38c2 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57fb1049 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58341f40 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5857988f snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591c6689 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59cf7a86 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ac8873c snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c096dc1 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d1fe2f7 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5da011cf snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f123d5f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fcdbc38 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63010645 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x643d7c66 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65ec59ec snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f5362a snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68b911a4 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6939eefb snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69e9ac70 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c2b64fa devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x711a84cc snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71748dba snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72b753de snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x736c8abb snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x751a1f00 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x755376f7 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x789db77d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7987f73e snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79f10f66 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b2ed308 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b7eccde snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7df67cc7 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f3c2210 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fd10d91 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8406b6dd snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8413dc87 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84a7ec29 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84a8267c snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8550e2da snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x862d99aa snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b0c23e snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d4e5eb snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8712c22f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88b41fa3 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b17a550 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b80ba92 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ba9cd10 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8baab8e3 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8babc801 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f551e66 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f6fe225 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fd3255d snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901dfe72 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x912a1430 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94373368 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x963d30d5 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x972bea92 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99100ada snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba95fad snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9be48618 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c29bc0f snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d719fa6 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d97b705 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa347cf3b snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3f92e68 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa412451c snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa443a51e snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa643afd1 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77e7d58 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa818b1db snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa92cb303 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab1d475c dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac22ea29 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacff739c snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae05b50c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb07b0424 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0b44f56 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2694ae7 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3eded4d snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb43e41dd snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4447147 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb462805d snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb613cc26 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6b42caf snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb80f30dd snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8741b2b snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb901df29 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96ce9ad snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba97d857 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb279abe snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb5de97c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe44f8ab snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0edaae3 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc387f8d1 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3d7db14 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc422add1 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc60e8cac snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6352bdc snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca60820a snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd686633 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce2fb8f9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd01d433e snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0fafc09 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13f7a55 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd30c96e8 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5381402 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6fe9868 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd97d08f7 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda393bdd snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdabc46b6 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb21306d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb3051e9 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb556f09 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde8f2b26 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfa104ea snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1126b52 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f43d8e snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8f59f9f snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec81a971 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf705db snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef13caa snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef66ae80 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf064b25f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf186ac67 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1d51a3d null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3a338b9 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf42d8ee4 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf51f93d4 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5b56570 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf677b94a snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf89e8159 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa484234 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd2abb96 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x12b3c6a7 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x33012ac2 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xaadeab09 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd5f433a7 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe2b6ef3a snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x066de3e9 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d17c15e line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10770424 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1768d8d6 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x19a6a8f8 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1adb27ba line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ffc73e3 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3f733e3d line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x483f4746 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ea7dfe4 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8f796a25 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf669b73 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xea1ea392 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa6cc4d0 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfca46944 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe67c389 line6_send_sysex_message +EXPORT_SYMBOL_GPL vmlinux 0x000769e5 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x001040da gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x001b4b40 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x002449d4 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x004ed7df fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005b1eaf i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x00709d81 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x007e5ebf nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0080e6fd nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00a34f1d dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x00a98ba1 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00aafea1 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x00ab02ca dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x00bb8652 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x00be2e95 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x00d0fd93 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d4cddc rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x00e32efb devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x00ec0989 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x010ead3a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x0124c623 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x014cabff ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x015f9cda device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x01660e84 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0176e4ae vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x017f8d43 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x0184882a regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01abab62 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x01b66338 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x01d17d71 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x01d8d815 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e6319b nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x01e8f2e2 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x01f07d64 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x01f8f32a generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x020503f4 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x020f98a0 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0217a95b strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x021e39c4 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x02206ed5 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x02218c6e of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x022eb6c4 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x0246633b receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0254ea6c mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x026b0faf i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x027afd77 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x0294b3c2 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x0296b57e adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x02bc643c skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x02d18344 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x030086ef inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x03076690 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0312b488 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x03152965 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0325bb80 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034807ce crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x034c2f64 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0366a48b of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0373db80 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x0375d2db devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0379e4f4 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x03885828 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x03933e8d cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039de0ff iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d2fd80 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x03e4ce01 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x03fa8dff of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x03ffcb26 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040b3989 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x041b106b devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x041e8b10 xas_find +EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04323ef9 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x043bf8fc tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0445349c pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x044798ab bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x044cfb3d inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x044ed5c4 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x04541e1f register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x0460baae da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x04642d76 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x048283d5 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x048939ba scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bf875a bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x04c392cf usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cb66c4 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x04ccf7aa ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x04cee2f6 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x04d3becc inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f95731 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x04fd9e27 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x05011ed1 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x050faee4 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x051bdc01 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0546f725 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0558ab4a freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x055c884e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x055de877 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0576f97c crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x05809687 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x059402aa device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x059a3787 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x059dc5d4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x05c0ff74 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x05cdae4e scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x05d9adad kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0615d22a inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x061cfd0f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x062aee9b gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x064309bd platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065371f6 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x06648624 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x06775f3d regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0678e2a7 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x067bb57a vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x067bf904 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x06b35418 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x06c8530d relay_close +EXPORT_SYMBOL_GPL vmlinux 0x06c99e88 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06e3b861 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x0707d732 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x0708be5a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072ba986 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x07319ca3 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x073b540d ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x07564eab ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x075a3a10 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x0761c008 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07646cee ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x076cf93c spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x07978297 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x07989e81 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x079c91a1 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x07b11c45 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c0efa7 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x07d94635 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x07e51975 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x07f03526 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x07f5eb4b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x080718b9 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081b57c1 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x0828d609 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x084470c0 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x084ca144 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x08657f66 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x0867301b vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x08695cb4 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x0869ca9a of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0881d91e tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0882a0d4 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x088a6e94 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x089f084b vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x08c723e1 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08cb4a06 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x08d0d343 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x08d74204 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x08df9252 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x08ee7d83 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x0905309d pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x091c1e5b device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x093d5849 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x09447225 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x094a4667 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x094af376 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x096cc7be gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x09711f3e regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x09921219 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0998e488 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x09adbc8f dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09b5da80 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x09c10c6f fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x09c795d9 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x09db059d phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x09e01934 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0a007836 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x0a02b216 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0a11abd0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x0a2f798b skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x0a3f7d18 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0a40f6bc crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4ed82e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a561278 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x0a5e68cd crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0a66c181 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a79b1e4 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a7d6de6 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x0a91a69e __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0a94684a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0a95d7ce key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x0aaa5a80 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ad55365 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0ae7c05b dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x0aeeddbe dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x0af1af5f regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0b0235de fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x0b0687df rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0c0118 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x0b1552ed devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b328fbc blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x0b530513 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0b5fd697 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x0b794314 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0ba7802b pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x0bab0d00 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc13c __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bcd0e4c tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0bd054fc pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0bd27b7a dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x0bd2f44d clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0bd315e6 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x0bdfc6ba pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x0be5bb91 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c112a phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x0c0cc69c usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x0c0cdbcc __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0c0eb282 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c3199ef of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3c9edb uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset +EXPORT_SYMBOL_GPL vmlinux 0x0c4391e1 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x0c5698b6 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x0c80c7f9 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x0c88ad4c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c910654 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0c9d5ff8 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cb3a46b __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x0cbb3e9e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0cbe1eb4 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cd581ac register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0cdafdb0 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x0ce112fb fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cf0f41b clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x0d01c8e5 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x0d07cc66 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d084f97 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x0d250884 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x0d2bb619 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x0d3788de mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d6a823a pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0d7166e7 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x0d7758d0 device_add +EXPORT_SYMBOL_GPL vmlinux 0x0d78f00e irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x0d7f0a73 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0d911388 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0da5c964 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x0da8f779 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x0da9b9bd get_device +EXPORT_SYMBOL_GPL vmlinux 0x0dab4b37 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x0dc11337 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0dc4f1a4 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de4d639 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x0de9ff2b sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x0dfdffae pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x0e066c6b relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x0e0a842d __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x0e0b3e97 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x0e146d7b of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0e246feb uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0e29abe7 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0e3fb30d srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x0e46883b nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0e603f59 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e801bd1 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0e81bb9e clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x0eb92f4b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ebd299e tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0ee5614e pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x0ee77e9b replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr +EXPORT_SYMBOL_GPL vmlinux 0x0eec2a42 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0ef1860e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0ef723eb gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x0f097e24 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1f3d23 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0f421b06 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x0f5664a0 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0f589b3e dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x0f5953e5 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x0f6c2239 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0f714f86 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0f797e2a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0f7db5f7 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f7f1eaa virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x0f805fab dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x0f9e7f1a platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc7a91 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x0fc14852 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fe35dc8 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x0fe4d5a3 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x0fe54cc2 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x0feadb5d bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ff03817 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x1003e2ff __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x100af022 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1014b873 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x102109c1 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x105e5f9a crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x105f2269 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x1060c705 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1063a7d0 vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x1064f390 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x106cc525 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x10762364 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1087e460 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x10890a4b __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108f9e56 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x109761ab rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x10a964c8 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x10bfcf97 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x10cd39e9 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x10ce19f6 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x10cf9bfb regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10d3c8bd blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x10e5fea6 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fd2ce6 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x11047dd3 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x11059a69 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x1109ec58 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x111e9ed7 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x11296327 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x112e7948 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1134b853 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1139e35c agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x113dc140 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x1142eb59 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x11469563 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x1152890a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x1152b58e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x115ad2f8 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x115f06da ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x11673dea devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x11687b03 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x117d5980 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x118b84a3 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x119d4129 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x119d9604 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11ad3646 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x11b38eeb vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x11cbcbc1 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11eedb1f iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x11f24fc1 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1205bff4 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x12073e2f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x121ac4c9 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12396f05 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x123a59be reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12661fb6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1267b7e3 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12700e01 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x1278a716 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x1289a7f3 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x128b1cd9 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x12902cd9 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x1298f34b bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x129d6e9f bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x129ea5d1 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x12a9de0e kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x12b54c2b i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x12b60ec3 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x12b87353 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x12c0fb9e fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x12ebcac5 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x12ec9920 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12fbae63 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x12ffea43 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x130bf919 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x130eec7a device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132ed3eb dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x13380841 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133b240a __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x134f3ac4 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136afa65 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x13760bef sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x13a1aa03 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x13a1cddf gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x13b338bc phy_get +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x13e44dc5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x13ea3443 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13feda0b skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1402f8e4 vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x141fcc58 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x1432835f nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x1435ce54 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x143b5084 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x145239c3 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14609b67 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x146138b8 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x146341f6 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x146410be tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x1467a3d7 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14828732 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x149e7711 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x14aaa78c unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x14b4cc43 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d43b19 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x14df5ae4 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x14e879ed sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x14e8a0bf fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x14ed49c9 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x150b95fe crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1548e47b component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x154d970d ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155437b7 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x155e974b serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x15886b7b pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x158c7943 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x159be993 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x159dd209 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x15bbca20 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15d527a2 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x15dc36a0 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f2372b device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x160a06ff of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x162d8b06 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1634c134 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue +EXPORT_SYMBOL_GPL vmlinux 0x166b81fc __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1674848c __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x1677117b virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x1685a8ab pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1688b498 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1697073f phy_put +EXPORT_SYMBOL_GPL vmlinux 0x16be7d9f blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x16c2dfc4 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x16c4b44d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16da5653 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x16e233bd sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x16e2a671 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x16e8741a blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x16ea372b __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x16fc3ad0 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170cf874 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x171874b2 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x17270967 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x173a072f tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x1745759b ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x1748ca22 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17624c6b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x1764eec5 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x177765d8 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177c95b0 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x1793b66a usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1793c2aa mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x179f7527 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x17ab7b6c pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x17b93da6 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id +EXPORT_SYMBOL_GPL vmlinux 0x17c37d57 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17e5ada2 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x17e66e25 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x17e7b2ea rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x17e901de set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x17e9c184 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x17ec770e kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x17fb53f2 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x180a3de4 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x180a4a37 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x18282af9 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x1843b63a dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x184a160b spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x18510ece perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x185bff02 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x185d2c90 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x18659f6d rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x1867da50 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x1875fbeb devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x1890249d locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x1894aed0 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x1894caf5 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18bcb4f9 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x18d4593d led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e61d60 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x18f2f4a5 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18ff3768 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x19003eca gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1900f121 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0x193ddc88 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x195c11c4 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x1963e322 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x196453b2 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x196c3519 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x196e3f97 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x197336b6 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x197ab59b platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x197b9a62 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x197f75c4 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198594fd max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a81e33 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x19be5751 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19d060a6 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x19d86eda rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x19daa44a stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1e70e0 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a34bce6 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x1a3dbbc3 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x1a41eb77 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a501791 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a8499e1 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a8e5ff2 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x1a9b4b0c mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1a9c8767 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x1a9fd566 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1abe528e dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad2520d of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x1ad531df of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x1ae27765 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b1cf8af switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b56815b ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x1b85d933 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8fd12e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9b084a is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x1bad8403 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc84088 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1be3da0e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1be41366 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf445c8 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x1c0e30fd kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1c13e1f0 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1c1b18da ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x1c40c847 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x1c4c6032 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1c4e56a3 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c61d19b pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c62e34d opal_get_sensor_data +EXPORT_SYMBOL_GPL vmlinux 0x1c65b7c9 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x1c72663d regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x1c791ed8 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x1c7a324d devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c821116 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89b45d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1c8b7249 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store +EXPORT_SYMBOL_GPL vmlinux 0x1c932c54 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1c9a6a63 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x1ca24b3f __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x1cb053c2 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x1cb374ba devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1cbca32b dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cccc43e blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x1cf94e04 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d0b46bd clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1d18f179 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x1d1dd5ac blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2fe851 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x1d3fc80b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x1d46d311 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x1d4a98b1 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d6ac4e1 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7e90f8 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1d86ba2f spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1d8edd9a fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x1da0a282 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1da60443 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x1dc1e41a device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1debc48f dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1dec2fcb powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1e10dfd6 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x1e218a65 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x1e3a7938 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e47ab9c of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x1e5a08f0 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x1e65b57b icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x1e70a579 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1e738300 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8f4d61 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea132d0 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1ea2ad83 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x1ea4d4eb of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1eac0fe4 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec14e61 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x1eceef74 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp +EXPORT_SYMBOL_GPL vmlinux 0x1ee2598d skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x1ee4d4fb ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1ef45cba irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x1ef56fc4 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x1f07d2ad dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f0d3088 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3af8c9 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f45aacf md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1f4c17cf nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x1f55d73c devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ef41b fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x1f725be1 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f882e06 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1f8f1ca8 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x1f8f485f serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa83e12 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x1fc5d5b0 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x201e95f5 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20407059 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2044b6c4 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x2045cb7d mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x205bb47f of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x206f6997 component_add +EXPORT_SYMBOL_GPL vmlinux 0x2075f9fc serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20937056 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x209bdaee devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x20b028f9 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x20b23b97 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x20b41b04 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x20b8a2cc da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x20ce3384 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x20d222fa is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x20d4cfb4 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x2111686e crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x21304cf9 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x21305499 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x21385152 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x2140f052 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x214680a8 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x214c4398 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21582833 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21650a76 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2173f2a5 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2177bd27 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2179218d irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x2189f66d ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x21987a85 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c69828 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21d78b12 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x21f05e82 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x21f54991 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x21f9cf14 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x22091c01 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2209b1a7 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x2209b4f4 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x220b6b4e regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221e0c9a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222a6f02 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x222cd00e regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x223c4877 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x223ef28f usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x22508232 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x2256e939 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x2271b097 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x2291a30e of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x22ab9f6d nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22d422a0 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e7d0f5 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x22f4ee75 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x23144333 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x231a2168 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x2320f825 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x23344d5d fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234b9258 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2358af18 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x23683216 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x23745427 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238d092e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x23916f8b crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23984f3c __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x23a170d9 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x23bb94fb nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x23f64174 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x23f731a2 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x23f75dc7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242c46e4 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x242c6b6d gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2442fda9 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x24498196 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x2451b1a5 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x24579eaa synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x245edc3d devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24638e92 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b1a9d2 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x24b62f62 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry +EXPORT_SYMBOL_GPL vmlinux 0x24bc2e08 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x24cc4f80 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ecb936 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25187ad1 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x25289ea2 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2533dcde rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25457508 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x25479bc7 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr +EXPORT_SYMBOL_GPL vmlinux 0x255cafde device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x256e62d4 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x257406a2 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x259f014b netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x25b745c5 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25d0cdbd __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x25ea92c9 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x25ebe142 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x2606897a dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x260980c6 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x260c6f80 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x2621b59c ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2626ac9e class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2627149d devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x262b459e blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2632b945 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x263ff9a0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x26402914 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2668edbc scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267f60c2 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2687799f elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26900cec clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d2d1c8 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x26d52d58 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x26d6aa28 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2702764d elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x2703acba i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x27050836 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2708c653 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x2712b14d crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x272721ee unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x2740e93d thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27518b56 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x276b143f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2775b27f of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x277897fa inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x277f2e67 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x27abb9af of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x27b650ee pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x27b734ea device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x27c95063 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x27c99154 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x27cbd07e of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x27ce3ec0 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x27d340cc fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27eddd15 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x27f1e9e6 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fa922e serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x27fd8c81 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x2807790f da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x280d727e badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x28131515 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2828d0d3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282e1a33 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x2834d720 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x28425ad4 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x28444634 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x2849d6f2 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2864f821 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2894e194 sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28af4aa0 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28b92a3f ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x28b9697a clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x28be2d36 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x28c5b1a6 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x28cc7a0f clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x28d4e911 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x28dc41e8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x28dcd6e8 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x28df24a6 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2903a15e ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291aa95d vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x2923581e vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state +EXPORT_SYMBOL_GPL vmlinux 0x2954fc10 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x29567acd sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x295e3e5c follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x295f54fd bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x29650224 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x296cea75 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x297a8f8f vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x297ae88c mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2986e853 iommu_tce_kill +EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page +EXPORT_SYMBOL_GPL vmlinux 0x29b07f2d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x29b29c77 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x29badc52 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x29c255ee crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x29c86d46 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29d416f2 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29dfa7be inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ec31e0 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2a0a40fa mdio_bus_init +EXPORT_SYMBOL_GPL vmlinux 0x2a284d05 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x2a30f68b __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0x2a61a357 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a805efd device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x2a87f0ac perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x2a9ee646 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x2ad5ce18 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x2ad5fef3 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x2ae0628e fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x2af50242 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x2b0e5f9c sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b185084 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2b1a339a power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b264b77 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b42c1ff devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x2b42f66e gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6ad3bc ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x2b6cfa7e devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b792894 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x2b85ff50 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b943f67 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2b9458aa query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2badcc4d regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2bb58fec gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid +EXPORT_SYMBOL_GPL vmlinux 0x2bc3b5a8 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x2bc6b8af vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2bdf0c27 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x2be23ab2 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x2c09d07a dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2b5a2d wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c38154f dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2c3f26f9 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x2c4c4a3b regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2c535aec gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7420d7 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c92233f irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x2c97e3d4 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb50f6f unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x2cd845bd cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2cd89155 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce7b094 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf35df5 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x2d06aa8a regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2d0a672f iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x2d0f8a69 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d290e21 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4346f3 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6e5792 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x2d92ac90 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x2dd85e86 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2df944b5 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0cd3fe of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e3766c1 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e3e3a86 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x2e4a474e devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2e5c1ba8 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6b656e usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x2e6c203e iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x2e6d4251 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x2e6dffbd pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e8528a9 kvm_alloc_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x2e8afb4f vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0x2e8b6bff fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x2e916361 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x2e91d548 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e98aff9 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x2e9fc870 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2eacde22 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2eb489c0 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2eca588f clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x2eccecc2 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2ed66430 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x2eda304c sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x2eea68fe rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x2ef8b3b7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x2ef903fc thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ef9a29d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x2ef9e7cf usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x2f03e977 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0e0003 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f2ae913 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4416a6 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f49c46f sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x2f4a1f83 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f54dbc0 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x2f56a926 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x2f6300db serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2fa23e10 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2fa4d26b inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x2fa7b953 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x2fadec5c stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x2fb8e036 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc9ed57 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x2fd7f7de raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2fde9c94 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x2fe9ee71 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x2ff70ea1 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3013b8a3 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x301e76e0 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x3020b7b5 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x30213920 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x30396b49 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x303a6e62 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3044e82e usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x304e4e0d devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x304f6942 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x307b2fcc __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x309c0cd7 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x30bf8fd3 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x30e030a0 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x30fd823f of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31047312 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x311c8881 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x311ccd1c dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x311f0875 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x312795a1 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x3133f838 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x313be901 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x313e6ed8 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x3161da62 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x317cbdb1 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x31820f44 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31945614 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x319b2396 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x31a60215 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31aa5534 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x31bae927 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x31bf3e11 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cd4c77 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x31ddca26 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x31df5905 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x31f1ed0a wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x31f649f9 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x3220639f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322ac6b7 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32324996 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x32358fc0 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3239e3db tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x323a8195 eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x323d48ab devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3246dee3 kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x3256e2f4 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x3257b9c5 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x325c9448 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x326c6fd9 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32709138 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x32818870 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3281c181 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x328a6df7 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x328acdc1 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x32969c1b skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x32a987fc device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d12671 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x32dc3ff8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x32effbdf skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33275bfd vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x332b2022 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x33371313 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x333be882 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3345099a gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x334960f7 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x334d8564 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335c9dff tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x337118e3 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x3377db9a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x337816aa tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x3378501f cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x337cb668 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33a386bf sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x33b7fbaa regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x33d6d719 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x33e34a27 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x33e3ebd8 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f574f9 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x34047940 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3406a160 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x341380b8 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x3434a27d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3436e13a usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3448dac5 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x346b1753 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x348581ac __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x3493cacb pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34c5d880 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x34c7e73e vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x34cc202d dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x34d6bdca __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x34db06d8 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350546e0 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3517f7d7 device_move +EXPORT_SYMBOL_GPL vmlinux 0x35181802 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x35184704 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x351e2d13 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3521214f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35433c91 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x3543e421 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x3553f537 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x3556bfac icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x3562e212 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356c2ad4 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x358a515c usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359f2919 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x35c4f95f dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x35e01108 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x35f3ea91 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x35f4d31e irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x3606afd1 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362ffbd9 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x363f5783 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3655361e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x369ac4fb nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a3bc97 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x36a92162 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x36ac63cf xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x36b72869 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x36b9ed05 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x36c0bd67 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x36d0dea9 device_del +EXPORT_SYMBOL_GPL vmlinux 0x36dc4c70 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x36dd7a8f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x36e162d7 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x36ef0b64 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x36f1542f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x37039886 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x375c2783 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x3766ccad pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x37674a4d devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x3767c808 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x376e859d pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x37777c73 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378d2650 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3793354a tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x37960a5c driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x37988095 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x379d49f2 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x37a85eb2 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x37ab1eeb eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x37bf709b phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c427f9 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x37cd0ca4 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x37cdc62d dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x37d2a5f6 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x37d5730f __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x37eb016a ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x37f697f4 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x37fc7a21 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x37fe0dc0 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380a3995 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384184c5 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x3846394d acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x3855c68f crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x38609ba1 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3867d29c kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x386c30d8 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x387c4591 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a7e758 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38af61f0 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x38bb8b99 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x38df8208 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x390bcfa5 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x39108765 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x3919d3cb ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x391d54bf blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3930b691 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x3938b1dc iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x3945a0a7 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x394b2068 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39812325 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x39848e1a serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3984b737 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x3997f939 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x399879ea skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39bb22d1 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x39c00c31 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39f0b088 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x39fc2e7f vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x39ffa16a lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x3a033999 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a368bca __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a604ca5 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x3a612c84 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a8e8527 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x3a8f8fd7 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab7ffb4 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x3abc8fa0 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x3ac09f13 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3ac9db8d irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3acbfc81 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af62a16 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x3b0ef3af blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3b0f6b5a iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x3b0fbf2a irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x3b16aac1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b1d9ae4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3b4b2a1e thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5cd656 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x3b80e4b1 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x3b88ce57 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x3b8a27f8 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x3b932f38 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9782cf cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bae2aac dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3bb0baa3 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3bb21a0b cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x3bd1c0e3 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x3bd880a9 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be5a6ee regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3be7b9d6 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3bef412c kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf24281 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x3bf3b62f pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3c16201e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1c9f7a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3c23e139 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2db821 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3c357c8f sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x3c37cbf8 machine_check_print_event_info +EXPORT_SYMBOL_GPL vmlinux 0x3c3abe8f regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c405f08 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3c670e3b pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c75a9a1 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x3c840bd4 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3c9a8f95 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x3cb2c552 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x3cb48b4d fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3cc7a13b da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3cc9696d scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce2dc5c rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x3d07232b fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x3d0e1b31 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3d150eb4 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x3d1b1fa1 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d400d57 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3d41de47 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d52f24a xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x3d5a9dd9 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x3d5c648b dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d6666d7 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x3d704a6b scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x3d712e87 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d7615ea sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x3d7b1719 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3d852511 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d867dd0 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d97fd8f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da37677 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dad2833 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x3db0e0b1 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x3db580d1 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x3de4f6a3 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dee366c dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3defaf15 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x3df6efe6 pnv_ocxl_unmap_lpar +EXPORT_SYMBOL_GPL vmlinux 0x3dfd893d evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x3e1300a8 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x3e18778a pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e4533a3 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x3e4690b3 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e8fcd43 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x3e9ad0ad nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e9ebaf7 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3eb7b80f virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3ec4cad7 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte +EXPORT_SYMBOL_GPL vmlinux 0x3ed6e0b3 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3edbc1cd sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f0076ee usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x3f0eada9 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x3f110275 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x3f112572 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f2768f6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x3f2a0ae3 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x3f2fca68 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x3f40fe77 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4a0e08 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x3f4a43f0 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x3f57a894 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3f59a5ea of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x3f786116 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x3f823588 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3f833ff8 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f96bf6d mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3fbd5e90 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x3fc775f9 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x3fcf4da0 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x3fd64026 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x3fdde4bb hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40178e5e remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x401e2cfd ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x40335037 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4036f99e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x405b492d ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40aaf623 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x40c004b0 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x40e61662 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f48f16 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4107dd92 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x41185e11 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x41297699 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412f1852 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x4133eb5e edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x413b03cd __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x414b8e1f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x414be969 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state +EXPORT_SYMBOL_GPL vmlinux 0x416892f7 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x4168f56a virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x4176f8b2 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x417fa8c1 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x417fca77 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418dce78 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x41909056 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a56d0f pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x41b50b69 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x41b6a78c dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fa2130 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x4202dfa6 pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4206e549 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x420a00fb pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x420c9f6d trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42124734 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x4215a507 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x4216385e ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x42378add ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x4237aa50 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426d7c93 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x427e8cb0 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4286c1ab sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x428c6f7a device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x42922a60 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x429a28d6 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x42a704b5 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x42b278b6 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x42be8f1a find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x42d10c08 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x42e90614 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43065cdb irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x43161186 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x43542966 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x43549684 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x435d0bd8 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x435ebd6e iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43847bfc compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x439f6833 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x43a03aed of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x43a92d7a devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c6c01f ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x43c6f1c1 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x43cae5c4 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x43e0660d get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x43ecfe21 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x43f3f8a3 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44151275 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x441e2676 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4441906c scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x444a1842 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44773a9c device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448581f6 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4488960b xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x4491288c ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x4491943e of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x44af3611 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bb407f of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x44c2ed28 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44df6817 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x44e21636 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x44e58a1d dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x44e6546a tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x44fe5040 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45102729 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x45104cd0 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x45234c96 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x452e49ab sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x456b1dac __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458459e5 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x45890d51 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x45a2aa0a fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x45b64816 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x45c4bbff regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x45c7930b __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x45ca3711 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x45da110b rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x45dd05e2 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x45eec7ad kvmppc_find_table +EXPORT_SYMBOL_GPL vmlinux 0x45eff51b spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x45fbdc69 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4604667b sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x461d502a dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4636fd70 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x463e145f crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4658129c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x465bd25e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x4663d576 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x466428d3 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x466c4680 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x466d9eb6 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic +EXPORT_SYMBOL_GPL vmlinux 0x469bb10e eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x46a42296 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x46a5bc08 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46a79487 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x46aa9d8f udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x46ae900e bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x46d6756b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x46daed68 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x46df23ef usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x46f900e2 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x47028f46 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x470467f1 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x47115ae1 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x471f09f4 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472df365 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4742940a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x4752e7d0 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x47549d26 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4755cf57 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x4757c9f8 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476e4715 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x478fee4e ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x47985be3 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a70875 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e9e122 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x47ea92d8 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x47fb9644 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x47fe556f ping_err +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48066c21 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x482c30de sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x482caa30 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x484d5dbc irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x485484a8 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x4856ee1e attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x4878b1d6 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48ab9962 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x48c2de1b xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c9edb7 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x48e5e001 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x48fd8919 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x49035c42 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x490dfe39 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x491a6a14 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x491cbc5a tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x49418e28 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x4942c1ab generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4967b0ae usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x496e41ea blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x49819511 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x498e8db9 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499c32c6 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x499e5992 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x499ee20d mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49aa3c71 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x49aad65f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x49c9e5cf spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49cdb450 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x49d04bf8 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x49d07e12 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49e0731b balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x49f75f98 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a042404 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2c3394 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x4a2c4a96 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x4a39738d user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4a3a08d3 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a46fd6b tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x4a5251f2 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x4a68ecb3 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x4a72a738 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x4a7d1faf of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x4a7dbdfc power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x4a8902b3 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x4a908463 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a914fb1 eeh_pe_mark_isolated +EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a9f0a5c of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4aa350f9 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4aaa6cb7 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4abab641 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x4acae92a regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4acef305 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4ae2e0c8 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4b0e62ca is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x4b204c5c bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b21f048 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x4b24e4a3 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4b2b3611 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4b49fea2 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4b51a34a srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5211f5 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x4b5d8082 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x4b5fed78 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b772b21 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x4b7929d6 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4b89b1a0 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x4b9a9401 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ba0aa84 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x4badaf9e crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4bba5f87 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add +EXPORT_SYMBOL_GPL vmlinux 0x4c00e4ce usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4c0d744a sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x4c10337d pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x4c10a4b9 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5f9a5f desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x4c60cb6e devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x4c7dc653 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4c86864c fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x4c8e7fa3 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4c9207bf led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x4cade7cc scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb5f668 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4ccabbef of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4cd873e4 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4cf9c6db handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0667f8 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4d0c0d73 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4d107fe8 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x4d3939b2 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x4d394192 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d3e1f27 kvmppc_h_clear_mod +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d50c8cd acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d554f73 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x4d5a93b6 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x4d677282 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6e7682 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7656cc ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x4d8aa235 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4daf3a9d usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x4dbec831 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch +EXPORT_SYMBOL_GPL vmlinux 0x4dd59e2e __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4dddee67 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de506ac fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x4deafa80 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4dfb8a90 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e18dbd5 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x4e1a9797 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e27b6fa paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x4e35a2bd pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4e46aa18 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x4e520e23 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4e539b05 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x4e5c4762 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e5dbb6a pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7af99e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x4e7c0d12 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x4e7d10ae pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x4e82afcf ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x4e8fab55 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x4e91acf1 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ebcaa6b iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4ed363cb irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x4edfb722 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4ee978e0 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4eeeef4e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x4eef7448 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efc3828 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f00d67e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f04c6a9 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4f05d514 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x4f0d876b regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x4f1d3eed check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x4f278d17 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f4a6237 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x4f4add7d crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4f65a078 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f92f77f cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdeb6f2 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe5e6a0 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x4fe9ff3b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x4fef5e5b __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x4feff945 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x4ff03a73 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x501b9d65 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x502d9ba9 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x505a8c0b bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x50681f20 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x50705ec1 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x5079bd40 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x507c5a4a regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x508360c8 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x508d4013 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b044b2 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x50b2b63b sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x50b7f424 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x50c79dd9 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x50c8177d devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50dc84cb devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x50e523c9 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f8abf5 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fe79c8 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x5118bae2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513f96ae of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5143ebd1 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5167cb66 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x51698bc7 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x5169986d extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x5179460d cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x5184431e blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x518a4d4c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a9c2a2 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51ccacb5 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x520c40f2 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x520d5aee to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x520edc38 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x521decb6 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x5221d8c5 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5226a23c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x522fb7bb devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523ff028 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x52408d2f devres_find +EXPORT_SYMBOL_GPL vmlinux 0x52436333 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x524841cd blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x524b0b0b dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x525cefdb mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x52697ef5 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52a6627e usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x52aef782 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x52b19879 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c2e1e5 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c7aa39 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d909a5 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x52dae173 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x52e896fd mmu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x52ec6b42 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x52fc7997 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53037a24 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x530accd3 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x530c6f67 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x530edafb __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x531b00d5 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x53291f6d iommu_tce_table_put +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5355894a ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5362e190 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x537a8b7e blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x538136b4 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x53845b81 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x5387815d iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x53884839 kvmhv_load_host_pmu +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x539c8d5c rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x53ab4e11 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x53b82960 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c1b392 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x53c2ab54 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x53c617b8 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable +EXPORT_SYMBOL_GPL vmlinux 0x53e04366 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x53eb2e6e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x53fbfdd4 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x540e84a0 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5411c029 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x541b4ef8 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542ca5fd regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5436f185 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54614e9a trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x546f8211 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x54753e7a pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x5490a10f devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x54928fce usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x54ab9906 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x54ad383f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x54bb2181 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x54ce14c7 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x54d1a2e3 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x54d66707 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x54e07ab7 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x54e2e0b6 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x54ee16fc dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54f2d95f lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55195a7f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b44ff pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553f0e4a ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5548bac6 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5551880e dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x55591454 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5582ffb2 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x5595262e thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55ec4107 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async +EXPORT_SYMBOL_GPL vmlinux 0x55f0a789 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x55f444bb regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x55fb8e25 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x55fdaa01 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5632cde5 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x5633bc0a devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x5633c16f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x563ed623 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x565a193b regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56615dfb kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x5667907b usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5667f4d3 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x56929975 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x56b573e8 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x56d3c17b crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x56d9267b generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5700c798 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x570187f8 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x570ab492 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57199fee eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x57271dd5 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x572e64d8 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x57362ad9 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573fc091 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x575b23dc pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x57603cce devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x57614db9 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x576c408c fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x576c446b phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x576d7f91 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x5770f225 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5797e0c8 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579e110e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x57abde12 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi +EXPORT_SYMBOL_GPL vmlinux 0x57b58238 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x57c64d70 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x57d2c86a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x57f9c004 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x57fb76dd init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x57fdb065 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x581f9249 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583520ee sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x583be611 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x584fe09b disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x5855fb1e led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x585e8e88 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x586cc6d8 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x58781eaf fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589d30d8 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x58baafb5 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x58c99f88 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x58cc8ca2 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x58d2adc1 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x58d797c9 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x58dbf0e9 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58edbb66 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x58f1597a devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x58f24052 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x58fb7fd9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5901484a regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0x5944d7ab uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x59644f4c __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x596d9502 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5973c6e6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x59756d50 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x597aa14d pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x597e9a03 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x59805e60 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598aa627 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x5992e59a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x59a2a30f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59be22bc kvmhv_save_guest_pmu +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cc462f gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x59e8072a perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x59efdd09 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59fcab26 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a3b77ce usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a42f11c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4b97b3 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5a5211c4 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x5a625250 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a795e55 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a99c72e sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5a9c5f87 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x5aa2eed6 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5aa72e72 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5aaa113a policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x5aaad3f0 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab4d404 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x5ab95edd clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x5aba71b7 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x5acb13df iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x5ace809b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5ad694dc __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x5ae96bc6 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x5af32773 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x5afc494a crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5b0748d7 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x5b1a3665 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x5b202cf9 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b3759df wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x5b3db031 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x5b636ce3 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b66998d ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b693bc8 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b69f8ea spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b9787e3 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5b9b3a94 kvmppc_h_clear_ref +EXPORT_SYMBOL_GPL vmlinux 0x5bb288b4 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bbfa6d0 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x5bc14035 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5bc60c36 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd8b84c gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be62d91 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5bf2df31 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5c0e377c devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5c1730fe pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5c1ae07c ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x5c28c0e4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2cb6c7 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c314399 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x5c38c3a6 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c40e205 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x5c444cfa power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x5c47734c crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c6355a1 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x5c7c1188 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5c7e5f1a securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c90d5f9 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x5c99868d dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x5c9fc9fb rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cae546d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x5cb64f51 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x5cc52ec1 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5ccea45c handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x5cd305ed digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5cedbd61 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d1a0303 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5d1b103a sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2c509c ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x5d37066f ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5d3f3575 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x5d498bbf __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x5d637191 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x5d76f7fd usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x5d827f41 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d90bdb2 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x5d917a28 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x5d928c20 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5d92dedd skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5d9c284f mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dcb62ba tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5dd3a377 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5de48e7e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x5df5ecd4 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets +EXPORT_SYMBOL_GPL vmlinux 0x5e036ebb cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e19bf17 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e2e019a con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x5e305fdb wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5e3ff61f tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5c1583 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x5e66af64 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x5e729cbe bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e851202 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5ea08e72 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x5ea995df spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec62549 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ed4217d vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5f0024ae ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x5f0a20d2 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2720cd mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x5f3a40d4 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x5f3f1cdd nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5f5aecbb of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x5f663d8b regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f761a54 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x5f78f775 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x5f89b17f usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x5f958097 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa6613a crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x5fdbc472 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5ff256ae kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x5ff4dca7 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token +EXPORT_SYMBOL_GPL vmlinux 0x60083238 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0x600d6774 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x601d170c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x602f95de platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x60458104 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604f1449 power_supply_set_input_current_limit_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x604f8490 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x60510835 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x6058f77d pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x6076821f spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x608a8f0e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609f9fa0 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b1ffe1 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x60b4d69c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x60b55de8 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x60b74c8e ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x60cef1dc xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x60e269b4 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x60e84a20 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60fe5e70 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6110dc6a ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x611872e8 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x613076f1 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x613b166a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x613b79d8 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x6147cda5 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x614cb4f8 of_css +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615cc5c9 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x615dcdbd gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x6160e262 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6163fdd6 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x61676626 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x6169115a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x616ad1b0 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x61716d21 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6194d5ad xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619a4448 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x619a570a tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x61c15591 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61d075fb usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x61d4ca70 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x61e47409 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6210d43f fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x62126167 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x621580df shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x622c161e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62502e2d get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x62523539 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62807e9a cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0x629816e4 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x62a2d5e1 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x62a876d7 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62cb49b7 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x62d34403 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x62dc5a75 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x62f4a65b pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x62f79cd6 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x62f7b479 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x62f8609d device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x62f9e1c6 input_class +EXPORT_SYMBOL_GPL vmlinux 0x62fd808f fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x6307aef4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x6307c63e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6319e0a7 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x6323c006 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x63516fd1 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x63554b56 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x635a2654 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x63623925 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x63672053 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x636feec5 pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0x63808582 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6388bf53 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x63a746a1 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63d6bba4 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x63e091dd em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x63f31ecd iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x63f4a1cc dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x6400190c devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x6400fd55 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x640a6d02 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x641124f4 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x6414fec5 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x6417d2cc usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x6417fa17 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x64358fa1 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x643eaf6b skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x645e7b49 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6463f668 iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0x64646463 of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x6477928b pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x6480454e pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x64a2213d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x64ce896a hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64fe3ef1 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x65059128 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x65080d34 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x65094296 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653723f3 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x65383b2d extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x6544af97 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x655bd1cc devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x656e7deb regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x65715349 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x657bd664 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x65c90142 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cfc840 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x65e837c4 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x65ea7d1f devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x65eac411 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x65faf2c3 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x660fd282 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661a29ba gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x661df17b devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x662039c0 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663b7985 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66428359 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x664d0739 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6655b6c3 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6669ff5c balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6686427f unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6688692c __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x6689b35f of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x668f907d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x669373b3 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x66968112 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bcefd8 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x66c9bd3e serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e49ba0 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x670ce365 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x671bb39f edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x672ec212 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x6733c3f7 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6733f2b2 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673a9c6c udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x673e46bb devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x674143f4 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x6741d331 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67429f83 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x67490401 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x674c07dd devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x674e3d9d dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x674f468f udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x67539281 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x6764c0c4 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x67733a5f pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6773e9fd pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x67758499 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x678fd61c auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6794b96e devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67ac7074 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x67b87bed clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x67bcdbbb pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x67c6a7a2 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x67d0a346 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67f1a6a9 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6822b0eb sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x684111e2 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x6851b176 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x686b5bb7 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x686fb533 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6879a3b4 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x6887ad53 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x688cdedd auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x689116cf ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68b7cd28 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x68c1df00 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x68d93358 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x68fee2d8 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x6908bdf0 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0x690a9a76 put_device +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp +EXPORT_SYMBOL_GPL vmlinux 0x692d50e5 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x69320ef4 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x693c3b1b tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6968e62c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697a199b inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x69a4e158 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x69a8d0ee sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x69c5b900 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69db4786 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x69e08331 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ec3938 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a01ba2d devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0c5a08 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x6a1119c7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a3e4e03 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a46a102 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a561012 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x6a5e2bde __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x6a7bc0ad skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x6a831de8 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9a308d devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x6aa8ab71 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x6abbb82b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6afc0c52 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x6b0f245a dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2061e6 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x6b2a9e60 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6b2add8a gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b48676b regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6b4ab0fc wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b698469 vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x6b7f5f3f pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b831173 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6b842bdb netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x6b8f459d nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bad13fa ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6bc4f4b3 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x6bcdd057 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd41417 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6be7b393 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x6bf014f8 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x6c0f2bd4 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x6c10c5dc devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c15ef80 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c27288c iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x6c3b22e2 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x6c3bf683 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5d5c39 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6c5fdde0 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6c6b0969 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c6f8e36 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x6c6fb6fd inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6c7ccb8b kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x6c844fee __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6c87a407 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6c8b8d00 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x6c8f2b1f ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c9c9026 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca4d200 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6cbcfcc3 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x6cbf1119 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x6cee5be8 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cf2bba5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6cf5a0d6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d19ad79 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d6318f1 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d7ee48b __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d827713 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6dace47a pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x6daf621d devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc112ab fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x6dc27bb1 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6dd27a22 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6e00fe44 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e03c8c1 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6e096542 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e129a3f wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6e16a747 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6e1ba7de rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6e2786a0 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6e2d366f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x6e2dcc25 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0x6e3d14b9 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4ba65b devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e580f57 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e647afd pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6e64c605 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6e68a0cf regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x6e698e82 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e6d58b1 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7c2cf2 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6e84ea7e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9a2adb blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x6eba550d cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ed2ed43 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eeae89d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efda293 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x6effd4cd crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6f006d26 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source +EXPORT_SYMBOL_GPL vmlinux 0x6f0c389f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f200ead iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f22f1e7 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x6f240206 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x6f2b4afc dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6f373a0e synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x6f3823ef debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6f455a5f dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x6f5884cd usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f58871b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6f6ae2e3 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f7f8ec7 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x6f8dab39 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fab74bd bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x6fae7e5b clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6fbd0696 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd255f5 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6fe672a8 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6fecd430 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff7995b spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x6ffc44f3 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7008c4ff tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x7018b278 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x702bc8de rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x702d88b2 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x703dd6b6 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7045f1c5 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x70545ca1 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x70601bbb bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x706a7366 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x70728303 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x708922e0 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x70a5315e tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x70ac8a25 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x70b59ea0 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c89991 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x70c9df76 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d32d7b regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x70dfde48 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70ebc11c skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x710573b4 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x71065b69 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711bfeba serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x711d7996 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x711e3222 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7125dde7 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x712e4b48 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x71327aed gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x713cc7c6 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x7143c124 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x71446dcb tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x71493060 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x71549330 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7171266a debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71aa0f2c debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71ba05c9 md_start +EXPORT_SYMBOL_GPL vmlinux 0x71bac90d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71da6d71 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x71effb1d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x71f6670b __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x722bf656 kvmppc_h_protect +EXPORT_SYMBOL_GPL vmlinux 0x72326886 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x7236c111 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x7239d930 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x723a20bf hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7241b7e1 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x724e8220 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726cff8d tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x7271835a dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7293292a dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x72cfae3a inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72e9237f usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x72e9deac fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x73071544 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x7309bc34 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7321fe1b cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x733d6171 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x733d9ba8 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x73542c03 kvmppc_set_msr_hv +EXPORT_SYMBOL_GPL vmlinux 0x735acb34 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x735b5df3 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7368ed7e phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7378ca41 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x73837c21 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x738dda16 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x738f4032 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x73a234c1 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a5a37c poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x73bab869 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c3da04 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x73c916ef tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x73cbf662 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d03753 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x73d8e038 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x73e16715 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x7414791c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0x741a2e9d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x742869a3 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743d39a4 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x7447e1af crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x745ab55d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7469227b clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x747cadc7 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x7480575d dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x7482c222 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x748e1186 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x74b00226 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c34f22 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f4cda4 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x75070573 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x7508d526 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x750f55bd __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751af3bf regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x753d212f ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x75529656 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7555f6e0 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x755809fc bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x755a8afb blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x756b9f45 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x7570c7d1 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75a8ef3a __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x75ae0654 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x75b30f6e usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x75c412f8 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x75c43c30 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x75c72c13 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d1cce4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e07e53 kvmppc_h_read +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e69886 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x760742ca __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7612743a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x763eabf5 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7647fb98 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x764e7bdc regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x765633f4 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x76579ccf ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7658f415 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x765ca671 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x76631e4e blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x76746a83 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x76772b99 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x767d65ae usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768c39c8 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x768ee94d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x76929947 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a2480b crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x76b20535 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x76b49c4f phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x76bbb764 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x76c9970c disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x76d0862b __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x76d7346d __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76dd5cc8 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f06549 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x77062e59 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x7708d49c cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x77248084 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773d4bef cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x77409aa6 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77538599 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775af262 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x77615c97 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x77634094 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x777765e7 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x7786d2b5 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779f5c2e regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c15aec generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x77c8e6ef dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x77d75bee bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e8dec9 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f3fabd icc_put +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78044395 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x78045c5a dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x7806225c phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x78133eed __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x781efe34 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x7825fd8f sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x782f1550 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x783ef48a blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x785391dc perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785b9865 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x78602a47 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x786cd660 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x78746e07 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788eb070 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a3be4e sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x78a695a4 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x78abd018 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x78b551c1 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x78b8ef8a hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78c104d3 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x78d8692b to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation +EXPORT_SYMBOL_GPL vmlinux 0x78e91fcb irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x78f2c3ed fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x78fdf8d6 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7907261a xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x79184d8e blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7928dd80 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x793bba80 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7945d634 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79524356 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x79688d92 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x799d5050 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x79b82fa7 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fc3528 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7a04a1c9 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x7a0fd348 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7a1bd4d7 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x7a2ca1b1 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x7a3086b9 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a5b4a33 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x7a6fc73a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x7a715bd9 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a75f147 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a952e68 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x7a97069e gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7ab04377 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7af0fea7 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b1767e1 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1909b4 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x7b20acd1 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x7b30f5c8 copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x7b3f1a67 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x7b45063a nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x7b465b62 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7b4d855b mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x7b50b9f5 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5b2eba pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba25def sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7baa0c8b clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7bab492b usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bd14d09 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7bd59445 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7bdf21fe sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7bdf5a3e transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7be2c3ff irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x7bf7e3cf proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x7c26b851 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c522e42 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x7c53e695 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x7c956904 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cbd06b2 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7cc4be80 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ccb6e08 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cda0452 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ce192b4 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d0030d9 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0101de ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1d7894 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7d413ed2 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7d550938 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5f1d48 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d72f50a pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x7d8ec336 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7d95a5f0 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x7d9b8409 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7da210bd pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x7dbfb7e2 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7dd5126f pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddd5fd4 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7dea47d2 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7df20e39 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7df9c883 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7dff2a0c kvmhv_load_guest_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa +EXPORT_SYMBOL_GPL vmlinux 0x7e353b9d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x7e36ed9a devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4bf21c espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x7e4efa95 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x7e512508 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e68dcbe pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0x7e73a955 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e7c5c6b debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e97a6e7 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e9f2980 pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x7ea6e9d5 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec774df pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x7ed8d44d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x7ee0ab37 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x7ee686b1 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f21378a devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7f524652 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7f612e64 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x7f6768d4 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7f6b8c8f devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7df39f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7fa4d6ff of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fd4d7cb of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7fde03dd pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x7feb56a8 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x7ffa3f96 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x800baac1 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x804a20e9 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x804e9762 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x80577d1d gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x805a0463 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x805cad09 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x806efc17 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0x807699a1 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x807f06f5 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80834317 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a050b9 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x80a39619 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d11b99 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e8a968 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812891f1 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x812abdba gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x812e5a70 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x8133f0a8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x8138caf1 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x81394397 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8145af1b mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0x814806c5 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8162e652 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81843bc4 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x81882294 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x81948064 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x819849b9 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b6a43e rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x81c2f6bd cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x81df7c66 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x81ea3c32 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x81ea6ff2 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x82208309 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822ee370 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x823aa0d9 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8247bac7 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x82554c28 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x826fbb65 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x826fc231 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x82727082 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x829a6d51 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x82a49aa4 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x82a685c9 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82ab296a find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x82ba4e0d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82bf24b1 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x82caf37e iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e61518 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x82f11cef edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x830eddb0 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x831ac57d pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x831dc8d4 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x832b8f08 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8355d439 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x835e5413 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x838e1441 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x838f7c33 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x83966afd xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x83a5ad40 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x83b068d5 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x83b6b3f1 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x83b9b6a9 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x83d4aec8 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x83e3cff4 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x83f9a75b devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x84092ead pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84124bd5 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x84148032 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x841d2393 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x842370fb iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842d1aef pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x844c2f3d vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x844cb3e6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x844fd022 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x84514b12 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x845d1073 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x846966ec badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x848c5774 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x84a0058f __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x84a8b1f5 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84c1e0d6 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x84e58166 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f21f63 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84f4cc40 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850cd286 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85280300 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8542026e dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x85484fe8 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855b0162 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x855ccb1f xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x856a4868 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8573e72b wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x8577eadc blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x857de4a0 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x85b4f55e xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x85bab20e sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x85ccfa0e pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x85cdc67d proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x85fc4004 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x86057355 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x8629075f regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862e65ce devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865c0a68 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x865d23e4 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x866c3ae1 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x867178bf of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867fbd06 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868f583e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x86aff1d1 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x86b3fc5b pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b9fd46 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86ea8f60 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x86f31cf8 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86fd3b58 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x8700cf68 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x8715f649 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x871de830 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8725e13a wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x8734e6f4 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x87456bec scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x8749737d clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x875048c3 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x875c6d4c cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x875f02f7 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x876dee12 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x879c2562 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x87a835b1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x87b58c3f pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x87c81c68 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x87d4bba1 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x87dd37c1 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x87f77435 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x88123e50 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x883c262c hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x8854874d rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885ac33e usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x885d40d8 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x8861cd97 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8863c718 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x8868f2de pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x88760b37 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x889488ec pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x88a0a8b1 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b3b972 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88bc61c5 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x88d6c575 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x88d85e01 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88e2aafc of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x88e4cfd6 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x88ea469b pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x891eedea rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8930e47c iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x895bfca1 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x895ebad4 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x89899867 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x898b0f79 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x898cd482 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x898df3cc task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x89a8bfcd netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89d8606e __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x89e5ced5 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x89e61fe5 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x89f43399 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x8a0d13c6 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8a15ff12 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a16ec44 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8a217cae device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a42c160 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6d256b devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x8a777566 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a9af4f7 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa2d98e lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x8ab49bec __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abb7784 iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x8abd26d3 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ade39a8 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8af89aeb of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x8afa00d3 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2d5071 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b2f9136 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x8b42e51f tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x8b5440f4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b6e9eb5 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8ba0c8e5 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8bc590ee dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8bcdf5c9 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8bce25f0 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c156bca usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x8c184f5a sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x8c1ba898 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x8c1de139 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c2bddbc irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c34aa48 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x8c38acb5 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8c5065a4 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7a5a9b spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c804cea devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x8c80ad1a devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x8c81ad98 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x8c83913b phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c911d5d mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c91bb74 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x8c95e04f dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x8cbc3a3f cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x8cc4108f tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x8ccfca51 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x8cdbc200 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x8ce04319 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x8ce1941e fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce4a65c dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8cf4f33e of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x8cfb55ec vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0c47ee devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8d120db2 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x8d1a30d0 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d5e6779 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d5e8815 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x8d627899 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x8d67a3cd wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x8d79790c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d852057 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x8d9c07a2 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8d9fdc6a __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db400a8 mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dc5ec74 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x8dd0266d iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd42bd7 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x8dd71b35 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x8de5c5b5 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de85720 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8decb032 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8df67752 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x8e0007b5 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x8e12606d devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x8e20197d tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x8e2913aa dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x8e2e2f74 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x8e41e0ca scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e5a72be rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x8e694809 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e8acee4 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x8e928938 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e9a46df phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x8e9bb3ae fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8e9e669b nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x8eaca4b1 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eaead32 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x8eb4ea32 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8eb5c873 is_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0x8eb6fb1d bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ebb8ea8 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x8ebfa1ad bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x8ecb2882 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x8ecdb468 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x8edface8 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efdd1f7 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0ce057 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x8f102baa nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x8f1dd5e9 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x8f2f4819 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8f36892f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8f4053c4 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8f46db88 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8f4f69ae dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x8f4ff80a invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x8f5ecea6 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f768a30 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f83638e housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release +EXPORT_SYMBOL_GPL vmlinux 0x8fbde3b3 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fd16ddc __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8fe7b19c blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x8fef9888 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x8ff2204f gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9002eead cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x9003bd4d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x900423ba register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x900465a1 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x900b9e43 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x900f1cbf cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0x90201f49 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x9027179d dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x9029eb08 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x902dee88 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x90342a7f srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906e2b55 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x9075ed2e spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x907b14cf dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9089c7a5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90f20912 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x90f39071 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x91237954 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9123a1c3 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x912967f0 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9160785d subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x917088e3 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x9187733c aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x918cd3a6 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91ae1e10 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c5c3b9 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d06fbd device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x91e1eb23 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x91e7e9a3 led_put +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f1a7cc iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92238bcb xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924686c9 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926bab6a i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x9280af33 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9289509a i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x928a1f35 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x928ce552 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x92aa19f5 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x92b417e7 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x92b9b785 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x92bb4d2c cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x92c925fb xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e3db20 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f05d02 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x92fc57aa __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x92feb06c __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x9307d6d9 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x9308918c pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x9323e943 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9327c693 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933348d0 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest +EXPORT_SYMBOL_GPL vmlinux 0x9355a9a1 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x935e0942 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x937199f4 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x937590a5 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x93794b2f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x937ec9b2 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9384cd49 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x93ad5ac3 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cbe945 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x93d01659 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x93e21228 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x9408039f fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942ed551 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x942ee186 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x942feb4e scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9441ddfc fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x944ad472 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x945285e4 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x94570e85 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x946798dd device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x94683e04 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x946ae5a6 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x946c7842 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94801eb1 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94aa2473 pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x94adb326 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x94b887dc devres_add +EXPORT_SYMBOL_GPL vmlinux 0x94bc8c74 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f3c3d6 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x95000186 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x95028573 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9505c6e6 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x951189ba device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x95160f23 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951ce510 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953036db preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x953790bb devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954051a8 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x9588d2a0 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959f31a8 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x95b16733 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be08e7 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x95ca056a netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x95cae411 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ed02cf class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x95f0fe45 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x95f91894 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9621fbe5 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x96386397 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x964dd9d9 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9658b2c0 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9669ec51 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x969608b5 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x96ac1ff1 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x96b372bd __put_net +EXPORT_SYMBOL_GPL vmlinux 0x96c23512 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift +EXPORT_SYMBOL_GPL vmlinux 0x96d10aad __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x96d4ce62 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x96daafcc vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x96e37202 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x96ec7073 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x96ee59a2 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x970457fc device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976927e4 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x977719e6 pnv_pci_set_tunnel_bar +EXPORT_SYMBOL_GPL vmlinux 0x979044a3 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x97a371ee ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x97b3a340 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x97b43a28 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x97b81efa crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x97d3f664 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x97d4d865 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97de2dea fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x97e7c6c8 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x981e0d50 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x982385a4 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98360062 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x984cc72f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9851e240 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0x985c131a dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x98668a69 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x986be651 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x989e7c3b tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98da97d0 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x98e11a50 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x98ea8f08 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f73601 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98ff3826 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x99004cb9 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x991a532d usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x992312af cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x992797e6 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x9928f419 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x992b4a11 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x992f4617 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99335f74 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9939a4be crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x99527ddf cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995f30de edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x99650805 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99984ecd vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x99ac2fb3 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x99d814e8 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e25d56 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x99e87ead get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f27d36 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99ff83ce blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x9a0720d9 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a12105d __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x9a2c1b21 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9a3a7456 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x9a48ce3c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9a4fff13 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x9a52844a nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x9a53e15b __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9a5be489 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x9a826cc2 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x9a888a19 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a91618f usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9aa20c0b crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9aa414d6 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9aacf3dc scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x9ab1167b blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac7725a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af4afc1 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x9afab553 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b1b567e crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x9b219160 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b34e798 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x9b36f634 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9b3bd7c3 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x9b40578d usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9b4138ff sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x9b5214c4 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b57493b clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9b6df930 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f8a74 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b73b417 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x9b73b477 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9b7eefac __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9ba18542 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba3f40a pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9bce30a5 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd31db6 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x9bd89157 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf23232 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x9c2d955e of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9c2fc5f2 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c30bced kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x9c37c6e4 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x9c3abc1d __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9c3e205a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x9c5b5e27 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c5c423c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c60f376 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x9c64daa7 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x9c6d2504 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c75c919 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c820ed8 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cae72eb dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x9cb1fb74 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x9cc2f0b6 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cccacf8 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x9cd0321a crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9cd15751 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x9cd34c01 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x9cdabf24 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9ce9959e set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x9cee4c51 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d05bb08 kvmhv_vcpu_entry_p9 +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0dec43 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x9d15bd82 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9d19c53b gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d340c7a hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9d3777d8 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x9d378dde fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x9d39296c msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x9d3e28d5 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x9d4a11e4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x9d50bc2a __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x9d5c4ccc genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9d9483d1 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x9dad4fc6 iommu_tce_table_get +EXPORT_SYMBOL_GPL vmlinux 0x9dbc7a55 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x9dd21f4f vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9dd4e9c2 virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0x9de7bf3e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x9de9be87 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x9deeb62c sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9e0c552c devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x9e1abdc0 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x9e344d86 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e61d7c7 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9e61f14c __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x9e6d4aa7 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x9e947568 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9eb872bc __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x9ecb882f icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edfbb3d gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef58bc5 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ef64015 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x9ef7714e blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x9effdb24 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9f0f254e dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x9f21b7e4 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9f2ffb41 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x9f336c56 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9f3bd189 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f7f90b4 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f8dd9a7 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x9f999461 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x9fb2e0a5 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x9fc47135 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa036d80e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa03bf9d9 vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0xa043cb35 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xa04b6923 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa057adc1 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init +EXPORT_SYMBOL_GPL vmlinux 0xa0862e44 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xa08eba8f fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa095ed55 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xa0a2bbf5 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xa0a31534 kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0xa0b7f5e4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa0bd06e0 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa0be1a33 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa0c983cb dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xa0c9d886 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xa0cb0de9 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xa0cdb6bf clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0dddf5d kvmppc_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xa0edfa3d tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xa0f20485 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xa0f632f5 eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0xa1026ffa iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa1160b4e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xa11c8b81 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa1222b27 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa132a025 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa169815d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa17582d0 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa17643a8 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xa17cafe1 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize +EXPORT_SYMBOL_GPL vmlinux 0xa18a2907 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xa1983404 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa19e7b84 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xa1a9076e disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa1ba7737 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xa1c60880 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f0d283 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa1f6e017 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21059f1 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xa224a37f __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa248ee12 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa253b744 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2558681 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa26340e2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa295afd5 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info +EXPORT_SYMBOL_GPL vmlinux 0xa2a5961d genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa2a5f44a da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xa2a7794d devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa2af5358 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b54d16 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xa2b58f87 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xa2b6a470 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xa2c73672 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e312b5 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xa2eff779 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xa31669c7 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xa319c4b9 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xa320b72a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa329b463 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa32e893c ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xa355dcd4 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xa3627bc5 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa3815c27 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xa3824f16 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38bce5e kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa39ee4fe devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d82fa0 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f18dc4 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa409ba5e class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa45aaddb pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa46a2e23 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa46dcdbf devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa474e1e1 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa47cb897 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa482d989 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa48e5248 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4af3756 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b96f3e bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c6c1ec iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa4ce29a1 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xa4dc86b2 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xa4edc08d of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xa4f2b72f spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa4f5853e pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xa50787c2 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xa50da6d9 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa51c27ed blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa5283ad6 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa52d70f5 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa53fb255 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa551e4a3 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xa5610d9c nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa5686e32 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa5743bb7 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xa5815a3e mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xa598a205 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b17ed7 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa5b52e65 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xa5c471ab dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5db3659 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xa5dc5466 kvmppc_hpte_hv_fault +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fd00fa led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xa6210eb4 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xa63fde21 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa6405fe6 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xa641dc55 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xa643f562 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xa64e307d hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa674777b mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xa67edbb2 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa68f18e6 iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6ad2509 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b3b74e of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6bdb20e blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa6ce30c5 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield +EXPORT_SYMBOL_GPL vmlinux 0xa6d6b332 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xa6de9a14 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa71296a5 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7251ac3 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa72f0d0d skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xa7310860 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa748a825 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xa7552b8d dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xa7683740 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa77aaab2 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa77fee0b phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xa78133c8 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7ddf591 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xa7fb57c5 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xa805330f thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xa8132b69 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xa82873e5 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xa82c84b8 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xa833acf9 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xa83729bc software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa859ce38 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xa85bdb79 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa85d0312 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xa85edebe usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xa89b8978 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8af5cea page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xa8dbec16 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa903b020 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa910aca8 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa92a9e14 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94bca20 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xa94e35dc genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa9551318 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xa96f6c58 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa973ea08 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xa98f77c4 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xa99087f6 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa9917ef3 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa99684a1 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa996e56a dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree +EXPORT_SYMBOL_GPL vmlinux 0xa9a111d0 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xa9a1c689 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d325f7 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa02d900 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xaa0e7bca subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xaa1ddcc0 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa295e61 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xaa303f63 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xaa4b4bd6 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xaa5d1e0f debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7b1179 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xaa7f6c22 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0xaa9b3ff1 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xaa9fdc39 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaa5ec9 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xaaaba09e pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xaab9971c ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xaabcba07 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xab104745 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xab3940ba usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xab3c4a7d gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xab45b46b init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xab46b4e6 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xab4b653a mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0xab500956 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xab5399c7 kvmppc_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xab560ac0 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xab689889 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab74bd4a tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xab7683aa dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xab8f08d2 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb58c53 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc66d3b tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xabcf6d5f rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xabd544ff ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xabd91700 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xabe15e78 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xac007030 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xac05bf5e divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac0ae3fe irq_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xac1027e0 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xac13e4e9 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xac15961e perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xac1804ae ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xac184b8f devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xac483799 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xac501360 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xac531ec4 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xac60bb29 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xac6779a3 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xac6aab90 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xac6e0e22 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xac894f42 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xac9991c7 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xaca080eb phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xacb1ea48 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb9ccdf devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xacc16f7b dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xacc87aaa xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xacd1a6fc platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xacda2f83 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xacef0004 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xacfde71e wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xacffa75d vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0xad00ad99 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xad0536f5 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xad0d4656 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xad176e10 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xad1eebb3 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad3ec61d trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xad41b10f fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4c348b vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6a5c0d isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xad6e34d0 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad780eb8 pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0xad7a8b5d mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xad8925b4 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xad9715ab dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb5e30b dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xadf938a1 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xae0ee610 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1affca dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xae29f570 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xae325d4b bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xaea91369 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xaebaa9ad devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaecad758 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xaecb1261 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaecfe56f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaedaa267 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xaede5882 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xaeee95fe soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr +EXPORT_SYMBOL_GPL vmlinux 0xaf388d24 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4af2ac dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xaf54fc4f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xaf5cd974 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xaf6277b0 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xaf6552b8 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf890aac fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xafa12b47 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafd3f6a5 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xafd7f317 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xafd94c01 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xafef66bf fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xaffb1ac5 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xb0021d08 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xb006140a icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb0193bb1 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xb01ed4d6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xb023fa25 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb0312d06 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0325c88 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xb033435c serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xb0483092 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb0535644 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xb05d52ff crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb05f93a2 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb063af49 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xb06bbc03 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xb07283d3 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb08d1664 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xb09e4f81 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xb0a303b6 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xb0b2dddd spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bb2299 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xb0bb56bc of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb0c31ade __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xb0ce1351 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0de2ab6 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb0e6484e genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xb0e6dda8 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb0fe2f8f create_signature +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb117fe98 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xb11a4866 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb123c500 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xb12b6fce sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xb1332822 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb138cfcc edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb14577a6 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb157a233 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xb157db5e dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16dae40 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb1718828 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a36620 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1d503df mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xb1e1a90f sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e86832 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb200af81 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb209811b usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb20c9e4a unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb2101251 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb21b15da skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb223470c nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb23b26d6 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb23cef51 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2796af0 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xb2875839 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xb2914e63 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock +EXPORT_SYMBOL_GPL vmlinux 0xb2ad5f01 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb2aed7e4 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xb2b7c96f sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xb2bb8885 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xb2bc6114 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d27c4f pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xb2dbb994 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb2df3b76 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb2e1d779 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xb2e2d7a9 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2efaf39 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xb2f52e91 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb2f60ede vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xb2f61458 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3119199 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb3226540 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb33c0b36 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb34d5706 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xb3573cf8 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xb359858a fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xb36d52e0 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xb37e65cf gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3bfae85 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xb3c8496d sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xb3d6a088 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb3f2a384 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xb3fd3388 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xb411e909 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb4123f6e __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb42d3e8f peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb42e5e76 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xb42f3386 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb4369cf6 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xb43a37b9 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4491cd3 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb4941982 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xb4a13622 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xb4a4c683 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd0531 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xb4bd967b devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4d390c5 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xb4d3b46b of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xb4dba0d9 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f09839 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5036e28 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xb5087a5a kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xb50c31b7 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xb514b828 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xb514e033 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb523ff93 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb526f826 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xb52e7419 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xb538debb cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xb53a6aaa dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xb55cc57d fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb573eb2f ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb58198d7 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb588aae6 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb58e108b shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xb591a036 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xb59db98d sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xb5a04f05 xive_native_has_save_restore +EXPORT_SYMBOL_GPL vmlinux 0xb5a2f801 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb5a6d098 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b74e9d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xb5c7e772 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xb5d5bf1b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xb5d60ae8 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xb5ff31b5 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xb603eb65 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb60c4f92 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb60d8c12 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb615278a task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xb625130a sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb634ff9f netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63c265a usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6480746 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release +EXPORT_SYMBOL_GPL vmlinux 0xb649e677 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xb64a73d9 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb652d185 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67a7469 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb69f9989 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xb6a97da1 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb6d1b5ed sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb710a7ba crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xb723be6f inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xb72c5b7b synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7337f9b of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73971e3 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xb73c5b4c regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75718f6 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb7763b26 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb78f0cdb rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b2e1a2 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c80d57 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7ccc27a ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb7cd0e2f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xb7ceb796 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache +EXPORT_SYMBOL_GPL vmlinux 0xb7f8e487 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xb81f89df __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xb82ee2e6 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xb8302f4d pnv_ocxl_set_tl_conf +EXPORT_SYMBOL_GPL vmlinux 0xb830838e iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xb833997a sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xb835e992 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb87f322f kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b76a14 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xb8bbc66b vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xb8c644ab mce_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8c71740 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9174276 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb923b59b crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb9389ca8 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb966ac60 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96d6d15 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb988956c gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99d81b8 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support +EXPORT_SYMBOL_GPL vmlinux 0xb9af5802 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb9afd234 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bcc2ad relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e8d597 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xb9f626ef pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xb9f9132d __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb9fbabd8 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba071ce7 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xba0b18d4 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba17fe1b regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xba20a281 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xba288f55 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba35f6f5 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xba822dd2 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xba86a445 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xba9d1f70 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xbaa552ed virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbaa6d354 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xbaab108f pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbab53891 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac10b2d tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xbad2c768 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xbad582b5 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xbaf0f58d gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb04d01c devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0d919e pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb275958 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xbb32c978 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbb33ee9e device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbb3d6efa regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7c90 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xbb587d70 pseries_eeh_init_edev_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbb5cb28c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xbb6761e2 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb84dd70 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xbb8c7430 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xbb8f9cbb crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbb921155 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xbba663e9 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xbbab15f3 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xbbc2e029 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xbbdd00a0 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbbe118b1 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe98cac dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xbbebf3cf vas_unregister_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0xbbf0da36 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbbf8cf17 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xbc0deb04 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xbc2fb8b7 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xbc302fc1 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc3f768a nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xbc4184bf sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xbc58d7b8 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xbc648754 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xbc69722c vas_win_close +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7e0186 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xbc7e2e38 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xbc862a72 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xbc8c0026 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xbca1327a thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xbcb73d7a devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc2580a ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xbccda111 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd072a8 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xbcd7656c i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce273c5 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf39a80 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xbd0e5ede of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xbd311f01 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xbd352c4b crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbd372d01 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xbd385f2d rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4bde29 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd6aa49b bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xbd6c95dc sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd6eee69 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbd7215bd add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xbd723706 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xbd7813a6 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7e6726 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xbd8c89bd devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd96f5d7 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdcbd4b2 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdcd0817 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xbdd3192b vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xbdefb8fb __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xbe0bf17b ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbe2a5caa rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbe3eb669 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xbe413da5 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe48a63c eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0xbe59637b pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6a0399 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe6cfefd led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xbe70ea85 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xbe72dabe led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe777822 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe883cdc inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xbee9e420 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xbef5c947 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbeff98e4 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf05cac0 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xbf0c41de pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xbf140210 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf20cc19 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xbf22b345 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xbf3d3880 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xbf443431 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xbf53cd8d devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xbf6ce0ff regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xbf8c58b0 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbfa22666 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbfa33de9 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbfa9b28d __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xbfb58f63 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd4f9a4 iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeac79a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xbff128c3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xc012684b serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xc027bb91 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xc0290659 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xc057e5c4 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xc05b7480 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xc05b7cd1 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc0718898 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08addeb attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc092235b bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b021bc debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc0c0e05f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc0cc6856 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc0d4cd53 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0dcde63 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc0e6928f fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0ecb368 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xc0ece3c9 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0ff0388 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc115f0cd tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xc11bc9db blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xc133f58e pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xc13d1306 is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0xc13f399e irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc145f68b _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xc14f095a device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc180f06c pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc181b841 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xc182b456 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xc19e6c6f serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc1a2ff04 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xc1b84fa0 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc1cca98e rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc1ce5b23 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xc1cffaa4 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e150be bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc1f4e93a wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc2024d1a fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc205529e sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xc2214390 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2304bb3 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0xc2308a69 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xc23fab63 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc24364be input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc250802d __class_create +EXPORT_SYMBOL_GPL vmlinux 0xc255ab77 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xc2617487 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc272443b spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2941c53 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc29c6450 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b77f50 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xc2ce2c2b ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xc2ce9cd8 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xc2d15ed1 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xc2ec5f44 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xc2ee16c2 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc2fd3979 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc31d87d0 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc321998e fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc33114d4 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xc33ebb66 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3465e3c devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc348314b __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc3487804 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xc3519cf9 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xc359d5a0 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc36543fa dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xc36ff5d6 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc381e009 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc3af9c0c event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d3cd2f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xc3d53a26 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc3d6a349 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4059d42 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc41641bb __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc41fb184 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4449ae2 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc4496d81 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xc44accdd __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4856073 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4955769 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4aee952 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc4b14695 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xc4bec3df ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4c48b9f debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc4d915da of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc4e5872a dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4e9ac9d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc4efb549 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f57ee6 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xc4f5c021 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc50282dd dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc506fece of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc5138c13 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xc5164af4 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc51e5651 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc523d676 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xc52425fa crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc528dc5d __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc53b660f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc5412e93 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xc54b09fe copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc5641434 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5912a2e spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5993ab6 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xc5a10b54 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xc5a2dccb dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xc5a3d30f debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5cad5c4 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xc5dbf85f sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xc5e5f1b3 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xc5e97c0c of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc5ec7a0b cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc5f9199e iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xc5fb8506 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc6111d5c devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc624f52b pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc6299625 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xc62c8a8b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc651002d dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xc65832a5 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66be40d free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68aecf9 vas_register_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c80241 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc6c9dafb usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e76d61 pnv_ocxl_map_lpar +EXPORT_SYMBOL_GPL vmlinux 0xc6f92782 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xc70255c7 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7117ecc kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xc7133810 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xc714018b blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc7237122 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xc724bf73 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc727e038 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc72b7f71 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xc730d6a7 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc738cf99 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xc74420db i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xc74d11c2 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0xc765ea75 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc76dc854 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc773d3de pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xc7904e68 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc79bda26 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a213df watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc81efaf1 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc83fba84 pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0xc84b3b64 kvmppc_h_bulk_remove +EXPORT_SYMBOL_GPL vmlinux 0xc84d6854 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xc84e4314 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86592cc serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xc8687194 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xc869282a kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc86b2c9a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc873ad7b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8781f9a dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xc87b26dd class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc89a5dfd of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc89aff4e devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc8bda5f9 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8cb3721 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xc8d00188 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xc8d9f222 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f61c6f regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9174b9a spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc917a802 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9267388 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xc926f179 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc92f148c gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc92fbdab irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xc93683d3 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc941f40f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc973c402 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98465a6 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc98f270a adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc99591e5 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xc99c350e regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xc9a623b8 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xc9a8b13a __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xc9b03b16 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc9ba106d bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xc9c17e9f start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state +EXPORT_SYMBOL_GPL vmlinux 0xc9cd5497 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc9db6f09 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca0830ef __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xca16d20e unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xca239bde devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xca25402a usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xca300ead register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xca3eed08 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xca4b9905 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xca593dbf splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xca5d77a8 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xca68c112 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xca72ccc9 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8375a1 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xca872b7a sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xca8cfa10 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xca92d352 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa53041 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xcaa5ea52 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xcaacedee sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xcab24be3 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xcabdf04c devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac58b4d devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xcacab071 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xcae92ad4 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xcb1034b4 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1ded57 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xcb2595ba pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xcb25ad01 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xcb28ae9f gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb4aa812 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xcb54d821 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb7f5055 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xcb81ee52 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xcb8d7cb1 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xcb8f9e03 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xcb929ab1 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xcb92ca5e ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcba2f64f __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xcbb2c323 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xcbc24cff iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xcbcba4ab bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xcbdd9e5d dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xcbe1bc3b rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbef05d7 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xcbf014da platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcbf16cd6 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xcbfa72a0 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc13ba83 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc528d6a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xcc5e4da6 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xcc6b02ff hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcc765276 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xcc7a72ca of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca9b9f7 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xccb7db30 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xcccee116 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd2691c kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce3f5b1 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf82870 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xcd061808 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd07df4f devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xcd10d7c6 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xcd1e903c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2b60cc blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xcd2ca671 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcd47447b soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xcd4b004f pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xcd60cc9a dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xcd615349 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xcd6bf9cc perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd9048a9 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd95124f lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9a9a95 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdaac6c3 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xcdaf7737 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xcdb0d5c8 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb80afd dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcd5198 eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima +EXPORT_SYMBOL_GPL vmlinux 0xcdf1183d ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xcdfd6067 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xce02de25 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xce1e9da9 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xce211cb6 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xce2175a4 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xce30ea7b filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xce685866 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce700272 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xce72636e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xce81b6b1 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xce8e5f1f devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xce93eff1 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xcea5d0ef regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xcebd3184 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcec3e28f skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcede4f74 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcede978d of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee71c0f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcee752b8 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef1f097 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xcef71c86 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xcf1e4963 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf36a3e2 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xcf39d630 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcf6ecd6b crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xcf786a2a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xcf79ddb3 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xcf9ad32b ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xcfab8655 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc8aa28 md_run +EXPORT_SYMBOL_GPL vmlinux 0xcfcbfade rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xcfd0d11c tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xcff7dfb4 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xcffe5a0a sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xd000df30 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xd016e999 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xd01e7b4b switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd01e8c31 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd0264185 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xd03926b0 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xd03c8c64 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd03e36c8 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04928b2 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd04f94ef __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xd0530c53 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0762e8a tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd08a0a31 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xd09fb77a bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xd0a43e5d extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xd0ba5281 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xd0bea361 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c5b50f pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd0cc904f fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e0477d ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xd10412fb tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd1135ffd edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xd1174e2c __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd11ed479 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd12216f9 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd1407f1d crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1597c00 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd165c48a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd16d20f7 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd1826614 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xd1854f60 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1888199 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd18ae991 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1afdf4b device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xd1c08036 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e5b107 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd218747e ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd232bb2a gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd243fc32 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2492f5a task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd25a8444 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd2640fd4 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2784465 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xd288b395 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd28e8fb4 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2d7ae62 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd2e1bde9 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd2f050f6 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xd3118156 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31a4d12 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd32e4781 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd33150de __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd34d5b43 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd356686b ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd372db13 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd3863db8 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xd387b7b1 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd39fc08f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xd3a5e9f8 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0xd3ad5941 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd3b22dbd vas_init_rx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0xd3b9bdfe device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd3dd46b0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xd3e8eaf9 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xd3e9a080 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4085f10 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xd40aef5c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xd4103685 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd417b7fc iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd427e5bd blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xd4280ec3 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xd4295e15 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4333f9e iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xd4389c8f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44a8548 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xd45779d7 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xd45cc581 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xd4667f3b sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xd479b17f edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd4863edb crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xd48b8e38 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4d4c8f6 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4eda48a ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd4ef2e55 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xd4f78f6e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xd4fd86c8 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xd524a2e9 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd529ba1e shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55e6a98 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xd571a19d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5732f81 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd5755e22 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xd57ab4e5 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5865414 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd586a886 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xd587c016 device_register +EXPORT_SYMBOL_GPL vmlinux 0xd58ca06b sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd58d48d2 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5906324 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd599ede6 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xd5b653c1 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd5b7cfe7 kvmppc_inject_interrupt_hv +EXPORT_SYMBOL_GPL vmlinux 0xd5c43091 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xd5c4ad7e __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xd5cd90ca perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xd5d1eb67 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd5d56197 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd5da28ce fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd5fe817a da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd61aa0b4 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xd6232408 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd62a4612 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd62dc109 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xd63a0cbe icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xd63b4ed0 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xd63d2872 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xd63dda93 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd641f6c3 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xd6441f0c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd653c4d7 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xd6601fd8 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd66bb207 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68e3d83 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6b4b56e unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd6cd898d debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd6d5668e set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xd6dbee69 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xd6f048c3 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd6f350f6 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xd6f53c8d of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd6f79d75 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xd6fd535e perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd701abc0 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xd71b46d0 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd71e7e2c serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd750539e trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xd757a019 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xd75a74b4 kvmppc_check_need_tlb_flush +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd7629d25 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76e4a35 ioremap_phb +EXPORT_SYMBOL_GPL vmlinux 0xd7732569 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7d96b6a dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7fc4ecb mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8096915 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xd83401a4 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8598aa9 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xd8633534 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd865b0a9 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xd86e8853 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xd8752ce9 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xd878f09f serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xd87d7376 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8817296 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8822a4c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd88b526a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8ad4ac9 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xd8b83fd8 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xd8edfffa gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xd8f716f8 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xd8f9f831 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90dd7f7 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xd9143f27 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd91b054a raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd946facb usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd952f919 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xd957ee54 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xd95fa8ec regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xd9696110 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96d28ba crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd978a7ca dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xd997d550 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xd9980e1b dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xd9b11386 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e33dc6 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xd9ecc655 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9fb486f class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0441b9 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0f2f0b is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda415b62 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xda42c934 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda907201 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdacdecf9 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xdada6d1c _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xdae18179 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5c16e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xdaf70b75 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xdafad52d dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xdafdc27d regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdb11cafc sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xdb1be00c devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load +EXPORT_SYMBOL_GPL vmlinux 0xdb3f25b5 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xdb4f7dd4 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xdb51b847 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdb55cc10 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xdb5feb1e xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xdb69742e tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xdb6d0a18 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xdb7145b7 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xdb845835 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8caba0 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xdb943938 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdbab8bf9 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbb02b15 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdbb4cde9 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdbba9581 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdbc3a267 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip +EXPORT_SYMBOL_GPL vmlinux 0xdbc8e21f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xdbcb6a8f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdbcd349d pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdca1eb dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf6cfb1 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc00bfe7 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xdc0486d7 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xdc0cdf02 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xdc185ae9 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xdc262106 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xdc2c5a77 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc7debb3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc8651c9 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb090b4 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdcb31270 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdcd51f54 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdcd9ab52 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdce1f055 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdce6cd6a __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xdce98856 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xdcf51276 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xdcf6bf24 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xdcfc6209 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdcff6826 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3ffb82 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xdd403f4d md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xdd4e8a03 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd75c893 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xddb42db5 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc5abb5 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xddde0bf4 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xdde5c1a3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xddea81a4 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xddeadb20 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xddf13e36 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf65231 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xde27d2ce preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde27f0e9 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xde296d53 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xde4033af sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xde4bb936 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xde6221ea tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xde6b3606 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xde6de628 component_del +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xdea272a9 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xded7e46e devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xdee01ebe analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xdee489bd elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xdee7a29b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xdef52741 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1d8673 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf277ab5 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xdf280633 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xdf32873d divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdf3b04f1 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdf43e19b disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xdf4d6d97 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xdf65c1a7 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xdf6a4ecf of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdf6c902d dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xdf6d378c synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xdf74f8c5 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdf7790db __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xdf89ac5c regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xdfb7cfa8 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfefbfc3 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xdfefefdb dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdff474e1 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe0092929 vas_register_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0xe00bc1fa sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xe00eb3c0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe015437a genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xe02952a5 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xe02a0157 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xe0354cdc rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xe049db3b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe04a0d0b alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xe04f5705 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe05100a3 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe051eee4 kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0xe05c6bef of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe07a2fc5 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe0851836 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xe087cc9c init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0a9d663 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bae490 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe0c1854d tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe0d3979b of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xe0dae042 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe0e2a47f dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xe0ece798 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xe0ed425c rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe10708ee iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xe1105e27 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe122e1ea register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe134575b component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe1522945 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe15697e6 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xe169d3da fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xe16a201d ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xe16b88c2 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17f3ea5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xe1902ba6 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xe1956464 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1a28505 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe1b95dca tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1de3505 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xe1e28179 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xe1f71608 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xe2005ee9 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe21bd42e ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe2294d02 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe229a0dd driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe22a6341 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xe22a8271 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xe2306270 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe245d06f do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xe248c44c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xe24d150a of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xe25e49aa gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xe2741d0a input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xe295de83 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xe29717a4 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe298c9ff nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe2a07b55 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xe2a0d260 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c0b408 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d3f9a9 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xe2f2ba42 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe3077b05 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xe3081634 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe3299e74 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe340e324 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xe3501730 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe36692d8 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xe36baa9f devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe36f5366 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3aeaa03 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3baee3d ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe3e17efd device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe3e27945 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe3fc85ac aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe3fe69bd of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe40ad67d debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40e448c nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe41cae04 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xe425a769 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe42bb62b screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe430bb41 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe435c23c fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xe4485d3f devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4493608 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xe45619b5 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe4736a09 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe491a585 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe4932cfe sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49a3629 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe4af7743 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4db8567 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe4e33224 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4ec642e ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe4eec0b0 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe503b144 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xe5071f1d usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xe51737cf sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe519cbd8 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe52cbe3d irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xe530788c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xe53afe7b thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xe54c08fa devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xe54d7221 pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe55d5d5d devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe5650ca3 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xe56f9d20 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xe57dcbd3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xe585a275 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58d857c iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe599a29a espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xe59a2c6b pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xe5b42953 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xe5c603d6 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xe5c908fd clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xe5d0d001 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xe5dbe9ff devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5f4a23a sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xe5fc8452 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a48ab of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe61f8ff7 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe620c60b of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xe62156b3 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe638b132 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe63f7059 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe64163e4 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe6574aff fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xe6577145 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xe68883c5 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6b36d19 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xe6c01329 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe6c379da handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6f2fa03 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe6f7448b em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xe6fed8e6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xe72e9595 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe73c077d unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe74271ed pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xe7447a56 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7545735 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe757b597 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe7605e62 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe7609a47 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7699fd2 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe76e578b ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78623f9 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe78c8151 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe78d5635 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xe790aa47 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7ace5d9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7be906b xive_irq_free_data +EXPORT_SYMBOL_GPL vmlinux 0xe7c58795 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xe7d09676 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0xe7d580d4 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e0be84 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe7ebf4ef dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xe7ed65c7 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe7eee3d5 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7fb122e devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe80ca98e ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xe80f9bc5 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe816cc35 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8253a37 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe833de61 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe840bbfa io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe84fbb5d devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xe85a9d94 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe8629eea blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe86485c9 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe887c191 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xe8a16304 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xe8a659b6 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8dfbfc4 pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0xe8e09042 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8e8b415 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xe9069b14 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe91e4cca dm_put +EXPORT_SYMBOL_GPL vmlinux 0xe924b992 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xe930a9ba mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe9316f69 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9433c3f usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe972fb1c adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe99832b9 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e28c12 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xe9e8846d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9f4fa4e rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xe9f833f7 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea07553b pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1e06ef led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3efa31 pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0xea47ec7d hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea55bbe2 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xea55d226 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xea88c866 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xea90c992 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xea98cc3e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xea9b3cb1 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xea9e1cc0 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xeabbc24f __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xeac6c543 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead486fd crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeadf72e1 tm_abort +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeb021fc0 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xeb05cde9 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xeb134a28 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code +EXPORT_SYMBOL_GPL vmlinux 0xeb438e0f switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xeb609246 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xeb61ca9e driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xeb6b3d42 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xeb7b53c1 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xeb7c4360 mm_iommu_is_devmem +EXPORT_SYMBOL_GPL vmlinux 0xeb957a31 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xeb960ff1 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xeb97166d crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb975721 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xeb9a56de blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xeb9ad12e shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xebab31a6 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xebae690c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xebb57eb8 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xebb7f21d devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xebbcc6af pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcfee57 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd87204 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xebda37c1 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xebdcc1c1 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xebe7f3f5 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xec14d82d ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xec1b8ab3 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xec261d5a usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set +EXPORT_SYMBOL_GPL vmlinux 0xec40e363 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xec46240b usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xec4f3025 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xec532983 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec60a16c irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xec63d41a of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec7e7b1c __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0xec851532 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xec8adcd6 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xeca7ed22 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xecabeae9 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xecac8582 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xecc23aa3 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xeccca026 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xed20b889 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xed34b154 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3e97d4 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xed47fce8 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xed4a8cd7 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xed53683e mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xed7886b2 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xed7f84ea switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xed87cb8b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xed9a3c9c hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xeda0a575 device_create +EXPORT_SYMBOL_GPL vmlinux 0xedad091c devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedb68521 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xedb842fd fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xedc1de04 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xedcd8738 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xedce3c17 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xedd8d2a9 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeddccebc of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xeddde1d9 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xede19d74 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xede85fc6 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xee172cb2 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee1f5ab2 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee42e88d serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xee48d44e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee5b5b21 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xee67d803 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee783301 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xee7b9741 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xee8298ef devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xee84c532 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xee8d3d26 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xeeb10ab9 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xef0a81c2 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef326622 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xef3de309 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef52b883 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef5ee47f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d0376 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef8326e3 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefd0ef9c tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xefd53d0d blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xefda7763 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefe39ae7 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xefe44f96 set_thread_tidr +EXPORT_SYMBOL_GPL vmlinux 0xefe5bed1 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefedd3a4 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xf00ccfd6 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf01142d9 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xf01ad136 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf01bda68 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xf01f63bd user_update +EXPORT_SYMBOL_GPL vmlinux 0xf024eb3b fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xf04d5f76 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09afa9e fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xf09b4436 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xf0bd9e32 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xf0c35220 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xf0d02a17 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xf1033390 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf115f2c5 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf116abe0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf127d05b watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf12d1571 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xf13175b0 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xf132528f __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf14b4cd0 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf182f2be sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1930598 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a6b670 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf1a6e4e2 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xf1a9b0b3 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xf1d9f8bc scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf1e48e68 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xf1e65323 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xf1eb0a2c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xf1f02b8d spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf1f3dab2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xf1f70735 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf20d2139 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf215c8ea regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf21a7528 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22885b3 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf24ef37e pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf26d49cb uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xf2726d5c of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xf28584bd fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xf2886dff pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xf28fa3b6 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf293ce03 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c22f7d mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf2cc5b25 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xf2cf4ae3 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xf2d81767 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state +EXPORT_SYMBOL_GPL vmlinux 0xf2f80efc kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf30020ec tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf305baa6 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf340feb7 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xf3454a72 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf36c0f9f stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf391db14 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf3ab15f2 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xf3b00e6c fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf3b28d59 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3cf8a30 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3d4120c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xf40e4c58 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xf42838bc powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xf42a86c5 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46f7c73 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47f59e7 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xf48d3a6e devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a160fb pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf4a793a8 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b56827 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xf4c03f6a blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4cd4091 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d13874 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xf4e0d044 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xf4e4f42b dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf4ee1328 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xf4fce905 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xf509e394 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xf50eaa35 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xf51ef3be fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf51f3627 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf52993c5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xf532c35d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf53518b5 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf5381664 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5556d99 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf55ea2a3 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf57d16cf __class_register +EXPORT_SYMBOL_GPL vmlinux 0xf58933e6 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xf596e5dd sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf598bc99 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xf59bfec1 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ab9367 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xf5b05ea7 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf5b22da8 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache +EXPORT_SYMBOL_GPL vmlinux 0xf5d0af3e of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf5d985b2 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf5f2a4e7 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf602e3f2 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xf6076df2 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf60bb273 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr +EXPORT_SYMBOL_GPL vmlinux 0xf61ad83d crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf6328f65 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf64d2037 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xf65418f7 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf65e7e57 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xf65ed07c pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf66789df pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xf675179b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xf67c7994 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xf696054d thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xf69eb2f6 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a51679 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xf6ababc9 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf6b0077e md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6bc4d6e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xf6bc5dd5 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d638af kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf6dcdbf4 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6e95087 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xf6ea74e4 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xf706e730 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xf714bacd skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72ac9fe __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7476dcf __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf7511d17 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf77fbc72 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7887d1c cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xf79a7581 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf7a1ff26 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xf7ac8858 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf7b5790c alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7d198dd ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf7d8bd04 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e14b9c debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf80903d1 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf80c2042 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xf8138c1b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83bb4af mmput +EXPORT_SYMBOL_GPL vmlinux 0xf85213fb __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85991e5 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xf86f0c5d fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf87e4de9 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xf885dd68 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf89d457c nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xf8a2f123 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xf8cb11d9 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf8d0aa97 kvmppc_update_dirty_map +EXPORT_SYMBOL_GPL vmlinux 0xf8d1c706 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8f1c63d pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf904b447 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0xf904c74d ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf9197171 mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0xf91d37e2 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xf91e2b94 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xf943fe23 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xf9444acd device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0xf97525ee class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf983f1c7 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xf99f6f76 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a87f9f icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xf9ad42c6 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf9b98cb3 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xf9c070cc lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9c30d30 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xf9c3514a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xf9c4a873 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xf9cf0066 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf9f3d50d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xfa00e53e nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xfa01b3b9 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa337cd3 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfa43773b md_stop +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa6b979d iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xfa6bcbb1 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xfa8ac4d3 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xfa97f418 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab7b938 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaede914 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xfaf92015 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xfaffa068 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xfb066249 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xfb0a1ddf gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfb1924bb nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xfb250412 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xfb2b3f1a mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xfb2db779 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb51709c da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb6f7d67 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfb970977 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xfbacec02 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xfbb56e07 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfbb7beb4 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xfbb7f340 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcd77df devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xfbdd5d99 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf0108c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0xfc26d0ea tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc3f8bc2 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xfc4cced6 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xfc5710d8 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores +EXPORT_SYMBOL_GPL vmlinux 0xfc90deaf usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xfc92e3bc generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xfc9e1cd7 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc22525 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfcdd72c6 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xfcdf069e pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xfcef0b5a l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd032685 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xfd067242 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xfd150895 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xfd17ccc5 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xfd2c2a9d watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xfd3f4d78 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd43d298 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd4c78aa regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfd4d5abf posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd50a1c3 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfd70f3be regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xfd92fbe9 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xfd9656f5 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xfda1beea hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfda27d56 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xfdae62fd phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbedeb3 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xfdc63f5b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xfdc76253 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xfddb0e81 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xfddc2933 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xfddda8e3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xfde5d76b of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xfded4202 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xfe2ccbc8 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfe39b905 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe49ddd4 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfe4acbbf tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfe503dfc umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xfe5b70a4 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xfe5c4849 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xfe70d956 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xfe840113 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xfe877fd5 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea66973 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xfebd559a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfef47868 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xfef6d9a2 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfef83b6a device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff13f6b4 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff271b02 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff504b51 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xff5ef534 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xff5f313f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xff69b27e phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xff730248 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xff75a14b pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xff7d6ea3 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff98930f trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb03000 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xffc18da1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xffc2307f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xffce9b03 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xffec0b28 iommu_tce_xchg_no_kill +EXPORT_SYMBOL_GPL vmlinux 0xfffa3a42 crypto_enqueue_request +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IIO_HID EXPORT_SYMBOL 0x026b1965 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x154d829a hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x1a2b2373 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x27e77723 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3d64e1e9 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3e7bada5 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x78c5b461 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x8530ee36 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcd583dbf hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd966bb24 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xda7dec44 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xf3d5eb90 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x66a55a8d hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x86f07a2d hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xddabc1eb hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xed49cf4c hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +LTC2497 EXPORT_SYMBOL 0x05e0d003 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xc4835265 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x09aa67f6 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x17da499a mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1c8cb058 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x281b7bcd mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x30547045 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3e4bf510 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x69ef9abd mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x79341efb mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x94f0e489 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x952d2e56 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbdef54ce mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc52055ef mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe5b0b074 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf1ce061c mcb_get_irq drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0762d5e0 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x65ef3a92 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8449dfbe nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc3436fac nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf223dc14 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +PMBUS EXPORT_SYMBOL_GPL 0x04e6b773 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x190c73fc pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2e0d75d8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x460ccf29 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4867f0b1 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5116f55d pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x52e126c5 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5cd1e5dc pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6747d90d pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x70a1c79d pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbab2dbe5 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbaec7d28 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc3246352 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcd1a74d8 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd1814da6 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd3ec1dd5 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe4d4b05c pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf65f19f5 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xfedc9160 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x265385be usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x303b4950 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x43055e78 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4a9f89ef usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4c4108db usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x513ffc86 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5277ff52 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x553facaf usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x57065373 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x593d2c0d usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x62451935 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8066d2a4 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x81caa641 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8f758429 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9a440091 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9ebaa29e usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xac2cb28d usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb970c212 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc1523aac usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc955c362 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xee53e20f usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf09d7b71 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf0f31c3c usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf8389bb0 usb_stor_Bulk_reset drivers/usb/storage/usb-storage diff --git a/debian.master/abi/ppc64el/generic.compiler b/debian.master/abi/ppc64el/generic.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/ppc64el/generic.modules b/debian.master/abi/ppc64el/generic.modules new file mode 100644 index 00000000000000..2a9c905cc64c7b --- /dev/null +++ b/debian.master/abi/ppc64el/generic.modules @@ -0,0 +1,5700 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8255 +8255_pci +8390 +842 +842_compress +842_decompress +88pg86x +88pm800 +88pm800-regulator +88pm805 +88pm80x +88pm80x_onkey +88pm8607 +88pm860x-ts +88pm860x_battery +88pm860x_bl +88pm860x_charger +88pm860x_onkey +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870-regulator +aat2870_bl +abp060mg +ac97_bus +acard-ahci +acecad +acenic +acp_audio_dma +act8865-regulator +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad5110 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5272 +ad5360 +ad5380 +ad5398 +ad5421 +ad5446 +ad5449 +ad5504 +ad5592r +ad5592r-base +ad5593r +ad5624r_spi +ad5686 +ad5686-spi +ad5696-i2c +ad5755 +ad5758 +ad5761 +ad5764 +ad5766 +ad5770r +ad5791 +ad5820 +ad5933 +ad7091r-base +ad7091r5 +ad7124 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7192 +ad7266 +ad7280a +ad7291 +ad7292 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7606_par +ad7606_spi +ad7746 +ad7766 +ad7768-1 +ad7780 +ad7791 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad7923 +ad7949 +ad799x +ad8366 +ad8801 +ad9389b +ad9467 +ad9523 +ad9832 +ad9834 +ad_sigma_delta +adc-joystick +adc-keys +adc128d818 +adcxx +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2032 +addi_apci_2200 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +addi_watchdog +ade7854 +ade7854-i2c +ade7854-spi +adf4350 +adf4371 +adf7242 +adfs +adi +adi-axi-adc +adiantum +adin +adis16080 +adis16130 +adis16136 +adis16201 +adis16203 +adis16209 +adis16240 +adis16260 +adis16400 +adis16460 +adis16475 +adis16480 +adis_lib +adjd_s311 +adl_pci6208 +adl_pci7x3x +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm1266 +adm1275 +adm8211 +adm9240 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adutux +adux1020 +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxl372 +adxl372_i2c +adxl372_spi +adxrs290 +adxrs450 +aegis128 +aes_ti +af9013 +af9033 +af_alg +af_key +af_packet_diag +afe4403 +afe4404 +affs +ah4 +ah6 +ahci +ahci_ceva +ahci_platform +ahci_qoriq +aht10 +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airspy +ak7375 +ak881x +ak8974 +ak8975 +al3010 +al3320a +alcor +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +altera-ci +altera-cvp +altera-freeze-bridge +altera-msgdma +altera-pr-ip-core +altera-pr-ip-core-plat +altera-ps-spi +altera-stapl +altera_jtaguart +altera_ps2 +altera_tse +altera_uart +alx +am2315 +am53c974 +amc6821 +amd +amd5536udc_pci +amd8111e +amdgpu +amlogic-gxl-crypto +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 +amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 +amplc_pci236 +amplc_pci263 +ams-iaq-core +ams369fg06 +analog +analogix-anx6345 +analogix-anx78xx +analogix_dp +ansi_cprng +anx7625 +anybuss_core +aoe +apbps2 +apds9300 +apds9802als +apds990x +apds9960 +apple-mfi-fastcharge +appledisplay +appletalk +appletouch +applicom +aptina-pll +aqc111 +aquacomputer_d5next +aquantia +ar1021_i2c +ar5523 +ar7part +ar9331 +arasan-nand-controller +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-haptics +arizona-i2c +arizona-ldo1 +arizona-micsupp +arizona-spi +ark3116 +arkfb +arp_tables +arpt_mangle +arptable_filter +as102_fe +as370-hwmon +as3711-regulator +as3711_bl +as3722-regulator +as3935 +as5011 +as73211 +asc7621 +ascot2e +ashmem_linux +asix +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +at803x +at86rf230 +ata_generic +ata_piix +atbm8830 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +ath +ath10k_core +ath10k_pci +ath10k_sdio +ath10k_usb +ath11k +ath11k_ahb +ath11k_pci +ath3k +ath5k +ath6kl_core +ath6kl_sdio +ath6kl_usb +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ath9k_pci_owl_loader +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlantic +atlas-ezo-sensor +atlas-sensor +atm +atmel +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-i2c +atmel-sha204a +atmel_captouch +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atusb +atxp1 +aty128fb +atyfb +au0828 +au8522_common +au8522_decoder +au8522_dig +auo-pixcir-ts +auth_rpcgss +authenc +authencesn +autofs4 +avmfritz +ax25 +ax88179_178a +ax88796b +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-pek +axp20x-regulator +axp20x_ac_power +axp20x_adc +axp20x_battery +axp20x_usb_power +axp288_adc +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bareudp +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcache +bch +bcm-keypad +bcm-phy-lib +bcm-sf2 +bcm203x +bcm3510 +bcm54140 +bcm590xx +bcm590xx-regulator +bcm5974 +bcm63xx_uart +bcm7xxx +bcm87xx +bcm_vk +bcma +bcma-hcd +bcmsysport +bd6107 +bd71815-regulator +bd71828-regulator +bd718x7-regulator +bd9571mwv +bd9571mwv-regulator +bd9576-regulator +bd9576_wdt +bd99954-charger +bdc +be2iscsi +be2net +befs +bel-pfe +belkin_sa +bfa +bfq +bfs +bfusb +bh1750 +bh1770glc +bh1780 +binder_linux +binfmt_misc +blake2b_generic +blake2s_generic +block2mtd +blocklayoutdriver +blowfish_common +blowfish_generic +bluetooth +bluetooth_6lowpan +bma150 +bma220_spi +bma400_core +bma400_i2c +bma400_spi +bmc150-accel-core +bmc150-accel-i2c +bmc150-accel-spi +bmc150_magn +bmc150_magn_i2c +bmc150_magn_spi +bme680_core +bme680_i2c +bme680_spi +bmg160_core +bmg160_i2c +bmg160_spi +bmi088-accel-core +bmi088-accel-spi +bmi160_core +bmi160_i2c +bmi160_spi +bmp280 +bmp280-i2c +bmp280-spi +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bnxt_en +bnxt_re +bochs +bonding +bpa-rs600 +bpa10x +bpck +bpfilter +bpqether +bq2415x_charger +bq24190_charger +bq24257_charger +bq24735-charger +bq2515x_charger +bq256xx_charger +bq25890_charger +bq25980_charger +bq27xxx_battery +bq27xxx_battery_hdq +bq27xxx_battery_i2c +br2684 +br_netfilter +brcmfmac +brcmsmac +brcmutil +brd +bridge +broadcom +bsd_comp +bsr +bt819 +bt856 +bt866 +bt878 +btbcm +btcoexist +btintel +btmrvl +btmrvl_sdio +btmtksdio +btmtkuart +btqca +btrfs +btrsi +btrtl +btsdio +bttv +btusb +bu21013_ts +bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +c67x00 +c6xdigio +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence-nand-controller +cadence_wdt +cafe_ccic +cafe_nand +caif +caif_serial +caif_socket +caif_usb +caif_virtio +camellia_generic +can +can-bcm +can-dev +can-gw +can-isotp +can-j1939 +can-raw +cap11xx +capmode +carl9170 +carminefb +cassini +cast5_generic +cast6_generic +cast_common +catc +cavium_ptp +cb710 +cb710-mmc +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcimdas +cb_pcimdda +cc10001_adc +cc2520 +cc770 +cc770_isa +cc770_platform +ccm +ccree +ccs +ccs-pll +ccs811 +cdc-acm +cdc-phonet +cdc-wdm +cdc_eem +cdc_ether +cdc_mbim +cdc_ncm +cdc_subset +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-pltfrm +cdns-usb-common +cdns3 +cec +ceph +cfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +ch +ch341 +ch7006 +ch7322 +ch9200 +ch_ipsec +ch_ktls +chacha20poly1305 +chacha_generic +chaoskey +charlcd +chcr +chipone-icn6211 +chipone_icn8318 +chipreg +chnl_net +chrontel-ch7033 +ci_hdrc +ci_hdrc_imx +ci_hdrc_msm +ci_hdrc_pci +ci_hdrc_tegra +ci_hdrc_usb2 +cicada +cifs +cifs_arc4 +cifs_md4 +cirrus +cirrusfb +clip +clk-axi-clkgen +clk-bd718x7 +clk-cdce706 +clk-cdce925 +clk-cs2000-cp +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-pwm +clk-rk808 +clk-s2mps11 +clk-si514 +clk-si5341 +clk-si5351 +clk-si544 +clk-si570 +clk-twl6040 +clk-versaclock5 +clk-wm831x +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmm +cmtp +cnic +cobra +coda +colibri-vf50-ts +com20020 +com20020-pci +com90io +com90xx +comedi +comedi_8254 +comedi_8255 +comedi_bond +comedi_example_test +comedi_isadma +comedi_parport +comedi_pci +comedi_test +comedi_usb +comm +contec_pci_dio +cordic +core +corsair-cpro +corsair-psu +cortina +counter +cp210x +cpc925_edac +cpcap-adc +cpcap-battery +cpcap-pwrbutton +cpcap-regulator +cpia2 +cqhci +cramfs +crc-itu-t +crc-vpmsum_test +crc32_generic +crc32c-vpmsum +crc4 +crc64 +crc7 +crc8 +crct10dif-vpmsum +cryptd +crypto_engine +crypto_safexcel +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +curve25519-generic +cuse +cw1200_core +cw1200_wlan_sdio +cw1200_wlan_spi +cw2015_battery +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24117 +cx24120 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx8800 +cx8802 +cx88xx +cxacru +cxd2099 +cxd2820r +cxd2841er +cxd2880 +cxd2880-spi +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxgbit +cxl +cxl_core +cxl_pci +cxl_pmem +cxlflash +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress_cy7c63 +cypress_firmware +cypress_m8 +cytherm +cyttsp4_core +cyttsp4_i2c +cyttsp4_spi +cyttsp_core +cyttsp_i2c +cyttsp_i2c_common +cyttsp_spi +da280 +da311 +da7280 +da9030_battery +da9034-ts +da903x-regulator +da903x_bl +da9052-battery +da9052-hwmon +da9052-regulator +da9052_bl +da9052_onkey +da9052_tsi +da9052_wdt +da9055-hwmon +da9055-regulator +da9055_onkey +da9055_wdt +da9062-core +da9062-regulator +da9062-thermal +da9062_wdt +da9063-regulator +da9063_onkey +da9063_wdt +da9121-regulator +da9150-charger +da9150-core +da9150-fg +da9150-gpadc +da9210-regulator +da9211-regulator +dac02 +daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 +davicom +dax_pmem +dax_pmem_compat +dax_pmem_core +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +de4x5 +decnet +defxx +denali +denali_dt +denali_pci +des_generic +designware_i2s +device_dax +dfl +dfl-afu +dfl-emif +dfl-fme +dfl-fme-br +dfl-fme-mgr +dfl-fme-region +dfl-n3000-nios +dfl-pci +dht11 +diag +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +digicolor-usart +diskonchip +display-connector +dl2k +dlhl60d +dlink-dir685-touchkeys +dlm +dln2 +dln2-adc +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dm1105 +dm9601 +dmard06 +dmard09 +dmard10 +dmfe +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_panel_orientation_quirks +drm_ttm_helper +drm_vram_helper +drv260x +drv2665 +drv2667 +drx39xyj +drxd +drxk +ds1621 +ds1682 +ds1803 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2781_battery +ds2782_battery +ds3000 +ds4424 +ds620 +dsa_core +dsbr100 +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155 +dt9812 +dummy +dummy-irq +dummy_stm +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-af9035 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6007 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-dibusb-mc-common +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dvbsky +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-rtl28xxu +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dvb_dummy_fe +dvb_usb_v2 +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-ahb-audio +dw-hdmi-cec +dw-hdmi-i2s-audio +dw-i3c-master +dw-xdata-pcie +dw9714 +dw9768 +dw9807-vcm +dw_dmac +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +dwc2_pci +dwc3 +dwc3-haps +dwc3-of-simple +dwmac-dwc-qos-eth +dwmac-generic +dwmac-intel-plat +dwmac-loongson +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e3x0-button +e4000 +earth-pt1 +earth-pt3 +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec100 +ecc +ecdh_generic +ecdsa_generic +echainiv +echo +ecrdsa_generic +edt-ft5x06 +ee1004 +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efa +efct +efs +egalax_ts +egalax_ts_serial +ehci-fsl +ehci-platform +ehset +ektf2127 +elan_i2c +elants_i2c +elo +em28xx +em28xx-alsa +em28xx-dvb +em28xx-rc +em28xx-v4l +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +emi26 +emi62 +empeg +ems_pci +ems_usb +emu10k1-gp +ena +enc28j60 +enclosure +encx24j600 +encx24j600-regmap +eni +enic +envelope-detector +epat +epia +epic100 +eql +erofs +esas2r +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +evbug +exc3000 +exfat +extcon-adc-jack +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-tusb320 +ezusb +f2fs +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fan53555 +fan53880 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fhci +fieldbus_dev +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +firewire-serial +fit2 +fit3 +fixed +fl512 +flexcan +floppy +fm10k +fm801-gp +fm_drv +forcedeth +fore_200e +fotg210-hcd +fotg210-udc +fou +fou6 +fpga-bridge +fpga-mgr +fpga-region +freevxfs +friq +frpw +fscache +fsi-core +fsi-master-aspeed +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsia6b +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mph-dr-of +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +fsp-3y +ftdi-elan +ftdi_sio +ftl +ftm-quaddec +ftsteutates +fujitsu_ts +fusb302 +fxas21002c_core +fxas21002c_i2c +fxas21002c_spi +fxls8962af-core +fxls8962af-i2c +fxls8962af-spi +fxos8700_core +fxos8700_i2c +fxos8700_spi +g450_pll +g760a +g762 +g_acm_ms +g_audio +g_cdc +g_dbgp +g_ether +g_ffs +g_hid +g_mass_storage +g_midi +g_ncm +g_nokia +g_printer +g_serial +g_webcam +g_zero +gadgetfs +gamecon +gameport +garmin_gps +garp +gateworks-gsc +gb-audio-apbridgea +gb-audio-codec +gb-audio-gb +gb-audio-manager +gb-audio-module +gb-bootrom +gb-es2 +gb-firmware +gb-gbphy +gb-gpio +gb-hid +gb-i2c +gb-light +gb-log +gb-loopback +gb-power-supply +gb-pwm +gb-raw +gb-sdio +gb-spi +gb-spilib +gb-uart +gb-usb +gb-vibrator +gdmtty +gdmulte +gemini +gen_probe +generic +generic-adc-battery +genet +geneve +genwqe_card +gf2k +gfs2 +gianfar_driver +gl518sm +gl520sm +gl620a +gluebi +gm12u320 +gnss +gnss-mtk +gnss-serial +gnss-sirf +gnss-ubx +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix +gp2ap002 +gp2ap020a00f +gp8psk-fe +gpio +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5520 +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-amd-fch +gpio-arizona +gpio-bd70528 +gpio-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-kempld +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77620 +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-moxtet +gpio-pca953x +gpio-pca9570 +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-regulator +gpio-sama5d2-piobu +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-tqmx86 +gpio-twl4030 +gpio-twl6040 +gpio-ucb1400 +gpio-vibra +gpio-viperboard +gpio-virtio +gpio-wcd934x +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +gpio-xra1403 +gpio_backlight +gpio_decoder +gpio_keys +gpio_keys_polled +gpio_mouse +gpio_wdt +gpu-sched +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +gs_fpga +gs_usb +gsc-hwmon +gsc_hpdi +gspca_benq +gspca_conex +gspca_cpia1 +gspca_dtcs033 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_jl2005bcd +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stk1135 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_touptek +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtp +gud +guillemot +gunze +gve +habanalabs +hackrf +hamachi +hampshire +hangcheck-timer +hanwang +hci +hci_nokia +hci_uart +hci_vhci +hd3ss3220 +hd44780 +hd44780_common +hdc100x +hdc2010 +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcdrv +hdma +hdma_mgmt +hdpvr +he +helene +hellcreek_sw +hexium_gemini +hexium_orion +hfcmulti +hfcpci +hfcsusb +hfs +hfsplus +hi311x +hi556 +hi6210-i2s +hi6421-pmic-core +hi6421-regulator +hi6421-spmi-pmic +hi6421v530-regulator +hi6421v600-irq +hi6421v600-regulator +hi8435 +hid +hid-a4tech +hid-accutouch +hid-alps +hid-apple +hid-appleir +hid-asus +hid-aureal +hid-axff +hid-belkin +hid-betopff +hid-bigbenff +hid-cherry +hid-chicony +hid-cmedia +hid-corsair +hid-cougar +hid-cp2112 +hid-creative-sb0540 +hid-cypress +hid-dr +hid-elan +hid-elecom +hid-elo +hid-emsff +hid-ezkey +hid-ft260 +hid-gaff +hid-gembird +hid-generic +hid-gfrm +hid-glorious +hid-gt683r +hid-gyration +hid-holtek-kbd +hid-holtek-mouse +hid-holtekff +hid-icade +hid-ite +hid-jabra +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-led +hid-lenovo +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-redragon +hid-retrode +hid-rmi +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-isku +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-konepure +hid-roccat-kovaplus +hid-roccat-lua +hid-roccat-pyra +hid-roccat-ryos +hid-roccat-savu +hid-saitek +hid-samsung +hid-semitek +hid-sensor-accel-3d +hid-sensor-als +hid-sensor-custom +hid-sensor-custom-intel-hinge +hid-sensor-gyro-3d +hid-sensor-hub +hid-sensor-humidity +hid-sensor-iio-common +hid-sensor-incl-3d +hid-sensor-magn-3d +hid-sensor-press +hid-sensor-prox +hid-sensor-rotation +hid-sensor-temperature +hid-sensor-trigger +hid-sjoy +hid-sony +hid-speedlink +hid-steam +hid-steelseries +hid-sunplus +hid-thrustmaster +hid-tivo +hid-tmff +hid-topseed +hid-twinhan +hid-u2fzero +hid-uclogic +hid-udraw-ps3 +hid-viewsonic +hid-vivaldi +hid-waltop +hid-wiimote +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hisi-spmi-controller +hisi_hikey_usb +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hms-profinet +hopper +horus3a +hostap +hostap_pci +hostap_plx +hp03 +hp206c +hpfs +hpilo +hpsa +hptiop +hsi +hsi_char +hso +hsr +ht16k33 +htc-pasic3 +hts221 +hts221_i2c +hts221_spi +htu21 +huawei_cdc_ncm +hvcs +hvcserver +hwmon-vid +hwpoison-inject +hx711 +hx8357 +hx8357d +hycon-hy46xx +hyperbus-core +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-cbus-gpio +i2c-cp2615 +i2c-demux-pinctrl +i2c-designware-pci +i2c-diolan-u2c +i2c-dln2 +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-of +i2c-hid-of-goodix +i2c-i801 +i2c-isch +i2c-kempld +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-mux-gpio +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-mlxcpld +i2c-mux-pca9541 +i2c-mux-pca954x +i2c-mux-pinctrl +i2c-mux-reg +i2c-nforce2 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-pca-platform +i2c-piix4 +i2c-rk3x +i2c-robotfuzz-osif +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-viperboard +i2c-virtio +i2c-xiic +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +i740fb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +ibm-cffps +ibmaem +ibmpex +ibmpowernv +ibmveth +ibmvfc +ibmvmc +ibmvnic +ibmvscsi +ibmvscsis +ice +ice40-spi +icom +icp +icp10100 +icp_multi +icplus +ics932s401 +ideapad_slidebar +idma64 +idmouse +idt77252 +idt_89hpesx +idt_gen2 +idt_gen3 +idtcps +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +ifi_canfd +iforce +iforce-serio +iforce-usb +igb +igbvf +igc +igorplugusb +iguanair +ii_pci20kc +iio-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +imon +imon_raw +ims-pcu +imx208 +imx214 +imx219 +imx258 +imx274 +imx290 +imx319 +imx334 +imx335 +imx355 +imx412 +imx6ul_tsc +ina209 +ina2xx +ina2xx-adc +ina3221 +industrialio +industrialio-buffer-cb +industrialio-buffer-dma +industrialio-buffer-dmaengine +industrialio-configfs +industrialio-hw-consumer +industrialio-sw-device +industrialio-sw-trigger +industrialio-triggered-buffer +industrialio-triggered-event +inet_diag +inexio +inftl +initio +input-leds +inspur-ipsps +int51x1 +intel-m10-bmc +intel-m10-bmc-hwmon +intel-nand-controller +intel-qep +intel-xway +intel_pmt +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +intel_vr_nor +interact +interrupt-cnt +inv-icm42600 +inv-icm42600-i2c +inv-icm42600-spi +inv-mpu6050 +inv-mpu6050-i2c +inv-mpu6050-spi +io_edgeport +io_ti +ionic +iova +iowarrior +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipaq +ipcomp +ipcomp6 +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_powernv +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipoctal +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +ipw +ipw2100 +ipw2200 +iqs269a +iqs5xx +iqs620at-temp +iqs621-als +iqs624-pos +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-usb +ir-xmp-decoder +ir35221 +ir36021 +ir38064 +ir_toy +irdma +irps5401 +irq-madera +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdnhdlc +isight_firmware +isl29003 +isl29018 +isl29020 +isl29028 +isl29125 +isl29501 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isl68137 +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it913x +itd1000 +ite-it66121 +itg3200 +iuu_phoenix +ivtv +ivtv-alsa +ivtvfb +iw_cm +iw_cxgb4 +iwl3945 +iwl4965 +iwldvm +iwlegacy +iwlmvm +iwlwifi +ix2505v +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsa1212 +jsm +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +ke_counter +kempld-core +kempld_wdt +kernelcapi +keyspan +keyspan_pda +keyspan_remote +keywrap +kfifo_buf +kheaders +kl5kusb105 +kmem +kmx61 +kobil_sct +komeda +ks0108 +ks0127 +ks7010 +ks8842 +ks8851_common +ks8851_par +ks8851_spi +ksmbd +ksz8795 +ksz8795_spi +ksz884x +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktd253-backlight +ktti +kvaser_pci +kvaser_pciefd +kvaser_usb +kvm +kvm-hv +kvm-pr +kxcjk-1013 +kxsd9 +kxsd9-i2c +kxsd9-spi +kxtj9 +kyber-iosched +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +l64781 +lan743x +lan78xx +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lcd +lcd2s +ldusb +lec +led-class-flash +led-class-multicolor +led_bl +leds-88pm860x +leds-aat1290 +leds-adp5520 +leds-an30259a +leds-as3645a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-bd2802 +leds-blinkm +leds-cpcap +leds-cr0014114 +leds-da903x +leds-da9052 +leds-dac124s085 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-ktd2692 +leds-lm3530 +leds-lm3532 +leds-lm3533 +leds-lm355x +leds-lm3601x +leds-lm36274 +leds-lm3642 +leds-lm3692x +leds-lm3697 +leds-lp3944 +leds-lp3952 +leds-lp50xx +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8788 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-max77693 +leds-max8997 +leds-mc13783 +leds-menf21bmc +leds-mlxreg +leds-mt6323 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-regulator +leds-rt4505 +leds-rt8515 +leds-sgm3140 +leds-spi-byte +leds-tca6507 +leds-ti-lmu-common +leds-tlc591xx +leds-tps6105x +leds-wm831x-status +leds-wm8350 +ledtrig-activity +ledtrig-audio +ledtrig-backlight +ledtrig-camera +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-netdev +ledtrig-oneshot +ledtrig-pattern +ledtrig-timer +ledtrig-transient +ledtrig-tty +ledtrig-usbport +legousbtower +lg-vl600 +lg2160 +lgdt3305 +lgdt3306a +lgdt330x +lgs8gl5 +lgs8gxx +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libahci_platform +libarc4 +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcomposite +libcrc32c +libcurve25519 +libcurve25519-generic +libcxgb +libcxgbi +libdes +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +liteuart +litex_liteeth +litex_soc_ctrl +lkkbd +ll_temac +llc +llc2 +lm25066 +lm3533-als +lm3533-core +lm3533-ctrlbank +lm3533_bl +lm3560 +lm3630a_bl +lm3639_bl +lm363x-regulator +lm3646 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm8333 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmp91000 +lms283gf05 +lms501kf03 +lnbh25 +lnbh29 +lnbp21 +lnbp22 +lochnagar-hwmon +lochnagar-regulator +lockd +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp3971 +lp3972 +lp855x_bl +lp8727_charger +lp872x +lp873x +lp873x-regulator +lp8755 +lp87565 +lp87565-regulator +lp8788-buck +lp8788-charger +lp8788-ldo +lp8788_adc +lp8788_bl +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2941-battery-gauge +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2978 +ltc2983 +ltc2990 +ltc2992 +ltc3589 +ltc3676 +ltc3815 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltr501 +ltv350qv +lv0104cs +lv5207lp +lvds-codec +lvstest +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +m5mols +m62332 +m88ds3103 +m88rs2000 +m88rs6000t +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +m_can +m_can_pci +m_can_platform +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac80211_hwsim +mac802154 +mac802154_hwsim +mac_hid +macb +macb_pci +machxo2-spi +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mag3110 +magellan +mailbox-altera +mailbox-test +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +marvell +marvell-88x2222 +marvell10g +matrix-keymap +matrix_keypad +matrox_w1 +matroxfb_DAC1064 +matroxfb_Ti3026 +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +max1027 +max11100 +max1111 +max1118 +max11801_ts +max1241 +max127 +max1363 +max14577-regulator +max14577_charger +max14656_charger_detector +max15301 +max1586 +max16064 +max16065 +max1619 +max16601 +max1668 +max17040_battery +max17042_battery +max1721x_battery +max197 +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77620-regulator +max77620_thermal +max77620_wdt +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686-regulator +max77693-haptic +max77693-regulator +max77693_charger +max77802-regulator +max77826-regulator +max8649 +max8660 +max8688 +max8893 +max8903_charger +max8907 +max8907-regulator +max8925-regulator +max8925_bl +max8925_onkey +max8925_power +max8952 +max8973-regulator +max8997-regulator +max8997_charger +max8997_haptic +max8998 +max8998_charger +max9271 +max9286 +max9611 +maxim_thermocouple +mb1232 +mb862xxfb +mb86a16 +mb86a20s +mc +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-i2c +mc13xxx-regulator-core +mc13xxx-spi +mc3230 +mc44s803 +mcam-core +mcb +mcb-lpc +mcb-pci +mcba_usb +mceusb +mchp23k256 +mchp48l640 +mcp16502 +mcp251x +mcp251xfd +mcp3021 +mcp320x +mcp3422 +mcp3911 +mcp4018 +mcp41010 +mcp4131 +mcp4531 +mcp4725 +mcp4922 +mcr20a +mcs5000_ts +mcs7830 +mcs_touchkey +mct_u232 +mctp +md-cluster +md4 +md5-ppc +mdc800 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux +mdio-mux-gpio +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdio-octeon +mdio-thunder +me4000 +me_daq +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +melfas_mip4 +memory-notifier-error-inject +memstick +men_z135_uart +men_z188_adc +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_net +mhi_pci_generic +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +microread +microread_i2c +microtek +mii +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlxfw +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mma7455_core +mma7455_i2c +mma7455_spi +mma7660 +mma8450 +mma8452 +mma9551 +mma9551_core +mma9553 +mmc35240 +mmc_block +mmc_spi +mms114 +mn88443x +mn88472 +mn88473 +mos7720 +mos7840 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_snd +most_usb +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp2629_adc +mp2629_charger +mp2888 +mp2975 +mp5416 +mp8859 +mp886x +mpc624 +mpi3mr +mpl115 +mpl115_i2c +mpl115_spi +mpl3115 +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpr121_touchkey +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mr75203 +mrf24j40 +mrp +ms5611_core +ms5611_i2c +ms5611_spi +ms5637 +ms_block +ms_sensors_i2c +mscc +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +msg2638 +msi001 +msi2500 +msp3400 +mspro_block +mt2060 +mt2063 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt6311-regulator +mt6315-regulator +mt6323-regulator +mt6358-regulator +mt6359-regulator +mt6360-adc +mt6360-core +mt6360-regulator +mt6360_charger +mt6397 +mt6397-regulator +mt7530 +mt76 +mt76-connac-lib +mt76-sdio +mt76-usb +mt7601u +mt7603e +mt7615-common +mt7615e +mt7663-usb-sdio-common +mt7663s +mt7663u +mt76x0-common +mt76x02-lib +mt76x02-usb +mt76x0e +mt76x0u +mt76x2-common +mt76x2e +mt76x2u +mt7915e +mt7921e +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdram +mtdswap +mtip32xx +mtk-pmic-keys +mtk-sd +mtouch +multipath +multiq3 +musb_hdrc +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mv88e6060 +mv88e6xxx +mv_u3d_core +mv_udc +mvmdio +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwifiex_usb +mwl8k +mxb +mxc4005 +mxc6255 +mxic_nand +mxl-gpy +mxl111sf-demod +mxl111sf-tuner +mxl301rf +mxl5005s +mxl5007t +mxl5xx +mxl692 +mxser +mxsfb +mxuport +myrb +myri10ge +myrs +n5pf +n_gsm +n_hdlc +nand +nandcore +nandsim +national +natsemi +nau7802 +navman +nbd +nci +nci_spi +nci_uart +nct7802 +nct7904 +nd_blk +nd_btt +nd_pmem +nd_virtio +ne2k-pci +neofb +net1080 +net2272 +net2280 +net_failover +netconsole +netdevsim +netfs +netjet +netlink_diag +netrom +netup-unidvb +netxen_nic +newtonkbd +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfcmrvl +nfcmrvl_i2c +nfcmrvl_spi +nfcmrvl_uart +nfcmrvl_usb +nfcsim +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nftl +ngene +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +ni_labpc +ni_labpc_common +ni_labpc_isadma +ni_labpc_pci +ni_pcidio +ni_pcimio +ni_routes_test +ni_routing +ni_tio +ni_tiocmd +ni_usb6501 +nicpf +nicstar +nicvf +nilfs2 +niu +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +noa1305 +noon010pc30 +nosy +notifier-error-inject +nouveau +nozomi +npcm750-pwm-fan +nps_enet +ns +ns558 +ns83820 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_perf +ntb_pingpong +ntb_tool +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +null_blk +nvidiafb +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-rave-sp-eeprom +nvmem-reboot-mode +nvmem-rmem +nvmem_qcom-spmi-sdam +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nwl-dsi +nx-compress +nx-compress-powernv +nx-compress-pseries +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +ocxl +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +ohci-platform +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov02a10 +ov13858 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5695 +ov6650 +ov7251 +ov7640 +ov7670 +ov772x +ov7740 +ov8856 +ov8865 +ov9282 +ov9640 +ov9650 +overlay +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8022 +pa12203001 +palmas-pwrbutton +palmas-regulator +palmas_gpadc +pandora_bl +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +papr_scm +parade-ps8622 +parade-ps8640 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pca9450-regulator +pcap-regulator +pcap_keys +pcap_ts +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_udc +pci +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio +pcnet32 +pcrypt +pcs-lynx +pcs_xpcs +pcspkr +pcwd_pci +pcwd_usb +pd +pda_power +pdc_adma +peak_pci +peak_pciefd +peak_usb +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfuze100-regulator +pg +phantom +phonet +phram +phy-bcm-kona-usb2 +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-cpcap-usb +phy-exynos-usb2 +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-gpio-vbus-usb +phy-isp1301 +phy-mapphone-mdm6600 +phy-ocelot-serdes +phy-pxa-28nm-hsic +phy-pxa-28nm-usb2 +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tahvo +phy-tusb1210 +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-lochnagar +pinctrl-madera +pinctrl-max77620 +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-rk805 +pinctrl-stmfx +ping +pistachio-internal-dac +pixcir_i2c_ts +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl2303 +plat-ram +plat_nand +platform_lcd +platform_mhu +plip +plusb +pluto2 +plx_dma +plx_pci +pm-notifier-error-inject +pm2fb +pm3fb +pm6764tr +pm80xx +pmbus +pmbus_core +pmc551 +pmcraid +pms7003 +pn532_uart +pn533 +pn533_i2c +pn533_usb +pn544 +pn544_i2c +pn_pep +pnv-php +poly1305_generic +port100 +powermate +powernv-op-panel +powernv-rng +powernv_flash +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pps-gpio +pps-ldisc +pps_parport +pptp +prestera +prestera_pci +pretimeout_panic +prism2_usb +ps2-gpio +ps2mult +psample +pseries-rng +pseries_energy +psmouse +psnap +psxpad-spi +pt +ptp-qoriq +ptp_clockmatrix +ptp_idt82p33 +ptp_ines +ptp_ocp +pulse8-cec +pulsedlight-lidar-lite-v2 +pv88060-regulator +pv88080-regulator +pv88090-regulator +pvpanic +pvpanic-mmio +pvpanic-pci +pvrusb2 +pwc +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-beeper +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-iqs620a +pwm-ir-tx +pwm-lp3943 +pwm-ntxec +pwm-pca9685 +pwm-regulator +pwm-twl +pwm-twl-led +pwm-vibra +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa27x_udc +pxe1610 +pxrc +qca8k +qca_7k_common +qcaspi +qcauart +qcaux +qcom-emac +qcom-labibb-regulator +qcom-pm8008 +qcom-spmi-adc5 +qcom-spmi-iadc +qcom-spmi-vadc +qcom-vadc-common +qcom-wled +qcom_glink +qcom_glink_rpm +qcom_spmi-regulator +qcom_usb_vbus-regulator +qcserial +qed +qede +qedf +qedi +qedr +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qm1d1b0004 +qm1d1c0042 +qmi_helpers +qmi_wwan +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qsemi +qt1010 +qt1050 +qt1070 +qt2160 +qtnfmac +qtnfmac_pcie +quatech2 +quota_tree +quota_v1 +quota_v2 +qwiic-joystick +qxl +r592 +r6040 +r8152 +r8153_ecm +r8169 +r8188eu +r8192e_pci +r8192u_usb +r820t +r852 +r8712u +r8723bs +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-keene +radio-ma901 +radio-maxiradio +radio-mr800 +radio-platform-si4713 +radio-raremono +radio-shark +radio-si470x-common +radio-si470x-i2c +radio-si470x-usb +radio-si476x +radio-tea5764 +radio-usb-si4713 +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +rave-sp +rave-sp-backlight +rave-sp-pwrbutton +rave-sp-wdt +raw_diag +raw_gadget +raydium_i2c_ts +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rc5t583-regulator +rcar_dw_hdmi +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +redboot +redrat3 +reed_solomon +regmap-i3c +regmap-sccb +regmap-sdw +regmap-sdw-mbq +regmap-slimbus +regmap-spi-avmm +regmap-spmi +regmap-w1 +regulator-haptic +reiserfs +repaper +reset-ti-syscon +resistive-adc-touch +retu-mfd +retu-pwrbutton +retu_wdt +rfc1051 +rfc1201 +rfcomm +rfd77402 +rfd_ftl +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rivafb +rj54n1cb0c +rk805-pwrkey +rk808 +rk808-regulator +rm3100-core +rm3100-i2c +rm3100-spi +rmd160 +rmi_core +rmi_i2c +rmi_smbus +rmi_spi +rmnet +rn5t618 +rn5t618-adc +rn5t618-regulator +rn5t618_power +rn5t618_wdt +rnbd-client +rnbd-server +rndis_host +rndis_wlan +rockchip +rocker +rohm-bd70528 +rohm-bd71828 +rohm-bd718x7 +rohm-bd9576 +rohm-regulator +rohm_bu21023 +romfs +rose +rotary_encoder +rp2 +rpadlpar_io +rpaphp +rpcrdma +rpcsec_gss_krb5 +rpi-panel-attiny-regulator +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rsxx +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt6160-regulator +rt61pci +rt6245-regulator +rt73usb +rt9455_charger +rtas_flash +rtc-88pm80x +rtc-88pm860x +rtc-ab-b5ze-s3 +rtc-ab-eoz9 +rtc-abx80x +rtc-as3722 +rtc-bd70528 +rtc-bq32k +rtc-bq4802 +rtc-cadence +rtc-cmos +rtc-cpcap +rtc-da9052 +rtc-da9055 +rtc-da9063 +rtc-ds1286 +rtc-ds1302 +rtc-ds1305 +rtc-ds1307 +rtc-ds1343 +rtc-ds1347 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1685 +rtc-ds1742 +rtc-ds2404 +rtc-ds3232 +rtc-em3027 +rtc-fm3130 +rtc-ftrtc010 +rtc-goldfish +rtc-hid-sensor-time +rtc-hym8563 +rtc-isl12022 +rtc-isl12026 +rtc-isl1208 +rtc-lp8788 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max6916 +rtc-max77686 +rtc-max8907 +rtc-max8925 +rtc-max8997 +rtc-max8998 +rtc-mc13xxx +rtc-mcp795 +rtc-msm6242 +rtc-mt6397 +rtc-ntxec +rtc-palmas +rtc-pcap +rtc-pcf2123 +rtc-pcf2127 +rtc-pcf50633 +rtc-pcf85063 +rtc-pcf8523 +rtc-pcf85363 +rtc-pcf8563 +rtc-pcf8583 +rtc-r7301 +rtc-r9701 +rtc-rc5t583 +rtc-rc5t619 +rtc-rk808 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3028 +rtc-rv3029c2 +rtc-rv3032 +rtc-rv8803 +rtc-rx4581 +rtc-rx6110 +rtc-rx8010 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-stk17ta8 +rtc-tps6586x +rtc-tps65910 +rtc-tps80031 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtc-zynqmp +rtc_cmos_setup +rtd520 +rti800 +rti802 +rtl2830 +rtl2832 +rtl2832_sdr +rtl8150 +rtl8187 +rtl8188ee +rtl818x_pci +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192ee +rtl8192se +rtl8723-common +rtl8723ae +rtl8723be +rtl8821ae +rtl8xxxu +rtl_pci +rtl_usb +rtllib +rtllib_crypt_ccmp +rtllib_crypt_tkip +rtllib_crypt_wep +rtlwifi +rtmv20-regulator +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rtsx_pci_ms +rtsx_pci_sdmmc +rtsx_usb +rtsx_usb_ms +rtsx_usb_sdmmc +rtw88_8723d +rtw88_8723de +rtw88_8821c +rtw88_8821ce +rtw88_8822b +rtw88_8822be +rtw88_8822c +rtw88_8822ce +rtw88_core +rtw88_pci +rtw89_core +rtw89_pci +rx51_battery +rxrpc +s1d13xxxfb +s2250 +s2255drv +s2io +s2mpa01 +s2mps11 +s3fb +s3fwrn5 +s3fwrn5_i2c +s3fwrn82_uart +s526 +s5c73m3 +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s5k4ecgx +s5k5baf +s5k6a3 +s5k6aa +s5m8767 +s626 +s6sy761 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7134-go7007 +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +sample-trace-array +samsung-keypad +samsung-sxgbe +sata_dwc_460ex +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savagefb +sbp_target +sbrmi +sbs-battery +sbs-charger +sbs-manager +sbtsi_temp +sc16is7xx +sc92031 +sca3000 +sca3300 +scanlog +scd30_core +scd30_i2c +scd30_serial +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +sctp +sctp_diag +sd_adc_modulator +sdhci +sdhci-cadence +sdhci-milbeaut +sdhci-of-arasan +sdhci-of-aspeed +sdhci-of-at91 +sdhci-of-dwcmshc +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-omap +sdhci-pci +sdhci-pltfm +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensorhub +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sgi_w1 +sgp30 +sgp40 +sha1-powerpc +sha3_generic +shark2 +sht15 +sht21 +sht3x +sht4x +shtc1 +si1133 +si1145 +si2157 +si2165 +si2168 +si21xx +si4713 +si476x-core +si7005 +si7020 +sidewinder +sierra +sierra_net +sifive +sii902x +sii9234 +sil-sii8620 +sil164 +silead +simple-bridge +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis190 +sis5595 +sis900 +sis_i2c +sisfb +sisusbvga +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sky81452-backlight +sky81452-regulator +sl811-hcd +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +slram +sm2_generic +sm3_generic +sm4_generic +sm501 +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc_diag +smipcie +smm665 +smsc +smsc47m192 +smsc75xx +smsc911x +smsc9420 +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4xxx-adda +snd-aloop +snd-als4000 +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-bcd2000 +snd-bebob +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-ctl-led +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dice +snd-dummy +snd-echo3g +snd-ens1370 +snd-ens1371 +snd-fireface +snd-firewire-digi00x +snd-firewire-lib +snd-firewire-motu +snd-firewire-tascam +snd-fireworks +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-cs8409 +snd-hda-codec-generic +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-core +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel-dspcfg +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxfw +snd-oxygen +snd-oxygen-lib +snd-pcm +snd-pcm-dmaengine +snd-pcxhr +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-rt5645-mach +snd-soc-adau-utils +snd-soc-adau1372 +snd-soc-adau1372-i2c +snd-soc-adau1372-spi +snd-soc-adau1701 +snd-soc-adau1761 +snd-soc-adau1761-i2c +snd-soc-adau1761-spi +snd-soc-adau17x1 +snd-soc-adau7002 +snd-soc-adau7118 +snd-soc-adau7118-hw +snd-soc-adau7118-i2c +snd-soc-adi-axi-i2s +snd-soc-adi-axi-spdif +snd-soc-ak4104 +snd-soc-ak4118 +snd-soc-ak4458 +snd-soc-ak4554 +snd-soc-ak4613 +snd-soc-ak4642 +snd-soc-ak5386 +snd-soc-ak5558 +snd-soc-alc5623 +snd-soc-audio-graph-card +snd-soc-bd28623 +snd-soc-bt-sco +snd-soc-core +snd-soc-cpcap +snd-soc-cs35l32 +snd-soc-cs35l33 +snd-soc-cs35l34 +snd-soc-cs35l35 +snd-soc-cs35l36 +snd-soc-cs4234 +snd-soc-cs4265 +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs4271-i2c +snd-soc-cs4271-spi +snd-soc-cs42l42 +snd-soc-cs42l51 +snd-soc-cs42l51-i2c +snd-soc-cs42l52 +snd-soc-cs42l56 +snd-soc-cs42l73 +snd-soc-cs42xx8 +snd-soc-cs42xx8-i2c +snd-soc-cs43130 +snd-soc-cs4341 +snd-soc-cs4349 +snd-soc-cs53l30 +snd-soc-cx2072x +snd-soc-da7213 +snd-soc-dmic +snd-soc-es7134 +snd-soc-es7241 +snd-soc-es8316 +snd-soc-es8328 +snd-soc-es8328-i2c +snd-soc-es8328-spi +snd-soc-fsl-asrc +snd-soc-fsl-audmix +snd-soc-fsl-easrc +snd-soc-fsl-esai +snd-soc-fsl-micfil +snd-soc-fsl-mqs +snd-soc-fsl-rpmsg +snd-soc-fsl-sai +snd-soc-fsl-spdif +snd-soc-fsl-ssi +snd-soc-fsl-xcvr +snd-soc-gtm601 +snd-soc-hdmi-codec +snd-soc-ics43432 +snd-soc-imx-audmux +snd-soc-inno-rk3036 +snd-soc-lochnagar-sc +snd-soc-lpass-rx-macro +snd-soc-lpass-tx-macro +snd-soc-lpass-va-macro +snd-soc-lpass-wsa-macro +snd-soc-max9759 +snd-soc-max98088 +snd-soc-max98357a +snd-soc-max98373 +snd-soc-max98373-i2c +snd-soc-max98373-sdw +snd-soc-max98390 +snd-soc-max98504 +snd-soc-max9860 +snd-soc-max9867 +snd-soc-max98927 +snd-soc-mikroe-proto +snd-soc-msm8916-analog +snd-soc-msm8916-digital +snd-soc-mt6351 +snd-soc-mt6358 +snd-soc-mt6660 +snd-soc-nau8315 +snd-soc-nau8540 +snd-soc-nau8810 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-pcm1681 +snd-soc-pcm1789-codec +snd-soc-pcm1789-i2c +snd-soc-pcm179x-codec +snd-soc-pcm179x-i2c +snd-soc-pcm179x-spi +snd-soc-pcm186x +snd-soc-pcm186x-i2c +snd-soc-pcm186x-spi +snd-soc-pcm3060 +snd-soc-pcm3060-i2c +snd-soc-pcm3060-spi +snd-soc-pcm3168a +snd-soc-pcm3168a-i2c +snd-soc-pcm3168a-spi +snd-soc-pcm5102a +snd-soc-pcm512x +snd-soc-pcm512x-i2c +snd-soc-pcm512x-spi +snd-soc-rk3328 +snd-soc-rk817 +snd-soc-rl6231 +snd-soc-rt1308-sdw +snd-soc-rt1316-sdw +snd-soc-rt5616 +snd-soc-rt5631 +snd-soc-rt5640 +snd-soc-rt5645 +snd-soc-rt5659 +snd-soc-rt5682 +snd-soc-rt5682-sdw +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-sdw-mockup +snd-soc-sgtl5000 +snd-soc-si476x +snd-soc-sigmadsp +snd-soc-sigmadsp-i2c +snd-soc-sigmadsp-regmap +snd-soc-simple-amplifier +snd-soc-simple-card +snd-soc-simple-card-utils +snd-soc-simple-mux +snd-soc-spdif-rx +snd-soc-spdif-tx +snd-soc-ssm2305 +snd-soc-ssm2518 +snd-soc-ssm2602 +snd-soc-ssm2602-i2c +snd-soc-ssm2602-spi +snd-soc-ssm4567 +snd-soc-sta32x +snd-soc-sta350 +snd-soc-sti-sas +snd-soc-tas2552 +snd-soc-tas2562 +snd-soc-tas2764 +snd-soc-tas2770 +snd-soc-tas5086 +snd-soc-tas571x +snd-soc-tas5720 +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adcx140 +snd-soc-tlv320aic23 +snd-soc-tlv320aic23-i2c +snd-soc-tlv320aic23-spi +snd-soc-tlv320aic31xx +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic32x4-i2c +snd-soc-tlv320aic32x4-spi +snd-soc-tlv320aic3x +snd-soc-tlv320aic3x-i2c +snd-soc-tlv320aic3x-spi +snd-soc-tpa6130a2 +snd-soc-ts3a227e +snd-soc-tscs42xx +snd-soc-tscs454 +snd-soc-uda1334 +snd-soc-wcd-mbhc +snd-soc-wcd9335 +snd-soc-wcd934x +snd-soc-wcd938x +snd-soc-wcd938x-sdw +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8524 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8804-i2c +snd-soc-wm8804-spi +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8960 +snd-soc-wm8962 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8985 +snd-soc-wsa881x +snd-soc-xlnx-formatter-pcm +snd-soc-xlnx-i2s +snd-soc-xlnx-spdif +snd-soc-xtfpga-i2s +snd-soc-zl38060 +snd-sof +snd-sof-of +snd-timer +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usb-hiface +snd-usb-line6 +snd-usb-pod +snd-usb-podhd +snd-usb-toneport +snd-usb-usx2y +snd-usb-variax +snd-usbmidi-lib +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx-lib +snd-vx222 +snd-ymfpci +snic +snps_udc_core +snps_udc_plat +softdog +softing +solo6x10 +solos-pci +sony-btf-mpx +soundcore +soundwire-bus +soundwire-qcom +sp2 +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speedfax +speedtch +spi-altera-core +spi-altera-dfl +spi-altera-platform +spi-amd +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dln2 +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-gpio +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spl +spmi +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssd1307fb +ssfdc +ssp_accel_sensor +ssp_gyro_sensor +ssp_iio +sst25l +sstfb +ssu100 +st +st-mipid02 +st-nci +st-nci_i2c +st-nci_spi +st1232 +st21nfca_hci +st21nfca_i2c +st7586 +st7735r +st95hf +st_accel +st_accel_i2c +st_accel_spi +st_drv +st_gyro +st_gyro_i2c +st_gyro_spi +st_lsm6dsx +st_lsm6dsx_i2c +st_lsm6dsx_i3c +st_lsm6dsx_spi +st_lsm9ds0 +st_lsm9ds0_i2c +st_lsm9ds0_spi +st_magn +st_magn_i2c +st_magn_spi +st_pressure +st_pressure_i2c +st_pressure_spi +st_sensors +st_sensors_i2c +st_sensors_spi +st_uvis25_core +st_uvis25_i2c +st_uvis25_spi +starfire +stb0899 +stb6000 +stb6100 +ste10Xp +stex +stinger +stk1160 +stk3310 +stk8312 +stk8ba50 +stkwebcam +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stmfts +stmfx +stmmac +stmmac-pci +stmmac-platform +stmpe-adc +stmpe-keypad +stmpe-ts +stowaway +stp +stpddc60 +stpmic1 +stpmic1_onkey +stpmic1_regulator +stpmic1_wdt +streamzap +streebog_generic +stts751 +stusb160x +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv0910 +stv6110 +stv6110x +stv6111 +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9500 +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +symbolserial +synaptics_i2c +synaptics_usb +synclink_gt +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +t5403 +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_hellcreek +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc-dwc-g210 +tc-dwc-g210-pci +tc-dwc-g210-pltfrm +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc3589x-keypad +tc654 +tc74 +tc90522 +tca6416-keypad +tca8418_keypad +tcan4x5x +tcm_fc +tcm_loop +tcm_qla2xxx +tcm_usb_gadget +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcpci +tcpci_maxim +tcpci_mt6360 +tcpci_rt1711h +tcpm +tcrypt +tcs3414 +tcs3472 +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18250 +tda18271 +tda18271c2dd +tda1997x +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tda9950 +tda998x +tdfxfb +tdo24m +tea575x +tea5761 +tea5767 +tea6415c +tea6420 +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +tef6862 +tehuti +teranetics +test_blackhole_dev +test_bpf +test_div64 +test_power +tg3 +thc63lvd1024 +thermal-generic-adc +thermal_mmio +thmc50 +ths7303 +ths8200 +thunder_bgx +thunder_xcv +thunderbolt +thunderbolt-net +ti-adc081c +ti-adc0832 +ti-adc084s021 +ti-adc108s102 +ti-adc12138 +ti-adc128s052 +ti-adc161s626 +ti-ads1015 +ti-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +ti-dac082s085 +ti-dac5571 +ti-dac7311 +ti-dac7612 +ti-lmu +ti-sn65dsi83 +ti-sn65dsi86 +ti-tfp410 +ti-tlc4541 +ti-tpd12s015 +ti-tsc2046 +ti_am335x_adc +ti_am335x_tsc +ti_am335x_tscadc +ti_usb_3410_5052 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timeriomem-rng +tipc +tlan +tls +tlv320aic23b +tm2-touchkey +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmp006 +tmp007 +tmp102 +tmp103 +tmp108 +tmp117 +tmp401 +tmp421 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_key_parser +tpm_st33zp24 +tpm_st33zp24_i2c +tpm_st33zp24_spi +tpm_tis_i2c_cr50 +tpm_tis_spi +tpm_vtpm_proxy +tps23861 +tps40422 +tps51632-regulator +tps53679 +tps6105x +tps6105x-regulator +tps62360-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps65086 +tps65086-regulator +tps65090-charger +tps65090-regulator +tps65132-regulator +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +tps6598x +tps80031-regulator +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi568 +tsi57x +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw2804 +tw5864 +tw68 +tw686x +tw9903 +tw9906 +tw9910 +twidjoy +twl-regulator +twl4030-madc +twl4030-pwrbutton +twl4030-vibra +twl4030_charger +twl4030_keypad +twl4030_madc_battery +twl4030_wdt +twl6030-gpadc +twl6030-regulator +twl6040-vibra +twofish_common +twofish_generic +typec +typec_displayport +typec_nvidia +typec_ucsi +typhoon +u132-hcd +uPD60620 +u_audio +u_ether +u_serial +uacce +uartlite +uas +ubi +ubifs +ubuntu-host +ucan +ucb1400_core +ucb1400_ts +ucc_uart +ucd9000 +ucd9200 +ucs1002_power +ucsi_ccg +uda1342 +udc-core +udc-xilinx +udf +udl +udlfb +udp_diag +udp_tunnel +ueagle-atm +ufs +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +uhid +uio +uio_aec +uio_cif +uio_dfl +uio_dmem_genirq +uio_fsl_elbc_gpcm +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +uleds +uli526x +ulpi +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unix_diag +upd64031a +upd64083 +upd78f0730 +us5182d +usb-conn-gpio +usb-serial-simple +usb-storage +usb251xb +usb3503 +usb4604 +usb8xxx +usb_8dev +usb_debug +usb_f_acm +usb_f_ecm +usb_f_ecm_subset +usb_f_eem +usb_f_fs +usb_f_hid +usb_f_mass_storage +usb_f_midi +usb_f_ncm +usb_f_obex +usb_f_phonet +usb_f_printer +usb_f_rndis +usb_f_serial +usb_f_ss_lb +usb_f_tcm +usb_f_uac1 +usb_f_uac1_legacy +usb_f_uac2 +usb_f_uvc +usb_wwan +usbatm +usbdux +usbduxfast +usbduxsigma +usbhid +usbip-core +usbip-host +usbip-vudc +usbkbd +usblcd +usblp +usbmisc_imx +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usbtest +usbtmc +usbtouchscreen +usbtv +usdhi6rol0 +userio +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +vcan +vcnl3020 +vcnl4000 +vcnl4035 +vctrl-regulator +vdpa +vdpa_sim +vdpa_sim_blk +vdpa_sim_net +vduse +veml6030 +veml6070 +ves1820 +ves1x93 +veth +vf610_adc +vf610_dac +vga16fb +vgastate +vgem +vgg2432a4 +vhci-hcd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-rhine +via-sdmmc +via-velocity +via686a +vicodec +video-i2c +video-mux +videobuf-core +videobuf-dma-sg +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-dvb +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocodec +videodev +vim2m +vimc +viperboard +viperboard_adc +virt-dma +virt_wifi +virtio-gpu +virtio-rng +virtio_blk +virtio_bt +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_snd +virtio_vdpa +virtiofs +virtual +virtual_ncidev +visor +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vl53l0x-i2c +vl6180 +vmac +vme_fake +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmx-crypto +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vs6624 +vsock +vsock_diag +vsock_loopback +vsockmon +vsxxxaa +vt6655_stage +vt6656_stage +vt8231 +vt8623fb +vub300 +vx855 +vxcan +vxge +vxlan +vz89x +w1-gpio +w1_ds2405 +w1_ds2406 +w1_ds2408 +w1_ds2413 +w1_ds2423 +w1_ds2430 +w1_ds2431 +w1_ds2433 +w1_ds2438 +w1_ds250x +w1_ds2780 +w1_ds2781 +w1_ds2805 +w1_ds28e04 +w1_ds28e17 +w1_smem +w1_therm +w5100 +w5100-spi +w5300 +w6692 +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wacom +wacom_i2c +wacom_serial4 +wacom_w8001 +walkera0701 +wanxl +warrior +wbsd +wcd934x +wcn36xx +wd719x +wdrtas +wdt87xx_i2c +wdt_pci +wfx +whiteheat +wil6210 +wilc1000 +wilc1000-sdio +wilc1000-spi +winbond-840 +windfarm_core +wire +wireguard +wishbone-serial +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl18xx +wlcore +wlcore_sdio +wlcore_spi +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x-ts +wm831x_backup +wm831x_bl +wm831x_power +wm831x_wdt +wm8350-hwmon +wm8350-regulator +wm8350_power +wm8350_wdt +wm8400-regulator +wm8739 +wm8775 +wm8994 +wm8994-regulator +wm97xx-ts +wp512 +wwan_hwsim +x25 +x_tables +xbox_remote +xc4000 +xc5000 +xcbc +xdpe12284 +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xhci-pci +xhci-pci-renesas +xhci-plat-hcd +xilinx-csi2rxss +xilinx-pr-decoupler +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx-xadc +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_gmii2rgmii +xilinx_ps2 +xilinx_sdfec +xilinx_uartps +xillybus_class +xillybus_core +xillybus_of +xillybus_pcie +xillyusb +xiphera-trng +xlnx_vcu +xor +xpad +xr_serial +xrs700x +xrs700x_i2c +xrs700x_mdio +xsens_mt +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xtkbd +xusbatm +xxhash_generic +xz_dec_test +yam +yamaha-yas530 +yealink +yellowfin +yurex +z3fold +zaurus +zavl +zcommon +zd1201 +zd1211rw +zd1301 +zd1301_demod +zet6223 +zforce_ts +zfs +zhenhua +ziirave_wdt +zinitix +zl10036 +zl10039 +zl10353 +zl6100 +zlua +znvpair +zonefs +zopt2201 +zpa2326 +zpa2326_i2c +zpa2326_spi +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram +zstd +zstd_compress +zunicode +zzstd diff --git a/debian.master/abi/ppc64el/generic.retpoline b/debian.master/abi/ppc64el/generic.retpoline new file mode 100644 index 00000000000000..7f959eb917cddc --- /dev/null +++ b/debian.master/abi/ppc64el/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.master/abi/s390x/generic b/debian.master/abi/s390x/generic new file mode 100644 index 00000000000000..25fc01cae950dd --- /dev/null +++ b/debian.master/abi/s390x/generic @@ -0,0 +1,13731 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x55a5bd2e crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcc1022e6 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xeedddf54 crypto_cipher_setkey vmlinux +EXPORT_SYMBOL crypto/blake2b_generic 0xe13c4380 blake2b_compress_generic +EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 +EXPORT_SYMBOL crypto/ecc 0x188a1647 ecc_is_pubkey_valid_full +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key +EXPORT_SYMBOL crypto/nhpoly1305 0x0fb5fe32 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x5fd4099b crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x73ab52bd crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xa9c39b10 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xb514cd0b crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xea951269 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x87fb6681 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xb95f2643 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xd04f6ca6 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x45cb8525 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x1388ad1c crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x38ad1083 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xf15dc13f crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/gpu/drm/drm 0x001778a3 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0060bd7d drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008baca3 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0180add2 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0229807a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0241b258 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02fbd050 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ae90c0 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0492ddb5 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d8f1fb drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054a9ed3 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0611edab drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x065e86ac drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a12e39 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06eeb06e drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0871fdfc drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09143a95 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09c9378e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b55089c drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6c8243 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7897a3 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0caf5cae drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d689a62 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db35b6b drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ecc27d3 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eeafc89 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0feace95 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102b05c2 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c37d81 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c84431 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11788e94 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x117ba42c drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ae907d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d05f4a drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12348bfc drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1247ec67 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13551e69 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13704fa7 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13acec93 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13aec298 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x149acfb6 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e180f0 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16576fdf drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18724ba5 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18df71ea drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x192d7a73 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x195f95b8 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19950385 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e68df8 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1bd314 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ace9f9c drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b33e059 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b3565d7 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bbe1a4b drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4d1939 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cdef44e __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1c96ad drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e19f488 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f86efa4 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2064dac2 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b9aa6a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21191930 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21ba5865 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c85f83 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22dd954e __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23172200 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2338ae15 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2371d381 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b90816 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x250d33f1 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2588126d drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ce17ce drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25dbd6f6 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26196ebf drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b4d04e drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2848c828 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2878d7fc drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29453cc0 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29967a89 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ce6fd6 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8220f1 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e989f20 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3f87f9 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x309e0708 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x311d4c5f drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321f9d62 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340b529b drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x347fc5c2 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35740006 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35877a41 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x368dca12 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e59668 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376686ea drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37826735 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37fa7e06 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3962ac66 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a4e5ffc drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a998f19 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb803c8 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d66b8a0 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da5e6be drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecbedc7 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee3ce73 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f534fdf drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4123c39e drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ce9022 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ac82ad drm_gem_shmem_create_with_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f670eb drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c2d911 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44e1e3c0 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49055789 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490e50d5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x492d71b2 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ab485a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a182c40 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a5960a1 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa11980 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b35aea4 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf6e6aa drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d764651 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc62b6b drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2db0d5 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f63ce00 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5199f9ef drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533f0579 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5348b79e drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ca43b8 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x556fbb48 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56072d05 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x567a5d09 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a1c9f7 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57efd54c drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598c80ee drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599dea05 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ad15cd drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa2b037 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aba8790 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c729f7c drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cfba71d drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e7d8389 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea18634 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f148f08 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ffa2ce4 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6113b793 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a8a17b drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6244420b drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6279c4e9 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62c06d25 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x639309fb drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x644b1834 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x648d082a drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64914e86 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d405bd drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653fb994 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x659e2b5e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6730da1b drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67860057 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e184e7 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682fbda3 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6856815c drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ab3e7a drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6914a422 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69249b1d drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6948676f drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x695b21d0 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69dd101f drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0e32d6 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc84262 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5a81fd drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df0cba7 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e672634 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7b673a drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x707746db drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ddc74e drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e1e589 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ed0d05 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75664097 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7585aabd drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75cadbd4 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77868531 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a73909 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78aa0ac5 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d7e42a drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7964f9dc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2250f1 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9aa622 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d71f701 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d94cb9c drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b3370 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9d680f drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc89663 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e37a138 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3f377f drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6ea6bd drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9b1a16 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff76c49 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801ec07f drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x806c1548 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80dc184a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e393e8 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81807944 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b6ba29 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8240f214 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a09bf6 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83249971 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83cc6937 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84d86ee9 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x850891a2 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x852bf91e drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86675eb5 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d8b5cd drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8727bdf2 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875e90f2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897f034e drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b877a9e drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1f61b drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cdd7a90 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d154ef6 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d7f0519 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e11b0b9 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e73324b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e817278 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e850f6a devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2f7ab4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f365e36 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fa4f3d0 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9000b5ff drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90751caa drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90a45388 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93572c92 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x939d3c2e drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b45b98 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cec5c7 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93e97557 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f9e856 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93fe6465 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x953457bf drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x954ad50d drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x986e7dc2 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x989f7059 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a73f7e drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a837e69 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0ddaae drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9942dc drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7e8009 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef99630 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f05c077 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2feb42 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa88d39 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcdfdb drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa003fa35 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08db012 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1325a7b drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1cc11d7 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4481fd3 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4cc5273 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ec2523 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6737ad3 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff050f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82867f4 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa98d12bb drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d2cfac drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d90b24 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac61cc99 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacb6d78c drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacecd964 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad78cf1c drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada264e2 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadbb7367 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadced41e drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaecf938e drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf28cc3d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb021614c drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ea8916 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f93a03 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1340814 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb16466f4 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c8932b drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20de1f6 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3498ed1 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3bd7559 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4251e22 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb459817c drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fe0501 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f4aa53 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb756a00f drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb756aa9d drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8278daa drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f6e38c drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba5467a9 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba6bf07e drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb1d2741 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc116651 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc22acc1 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc5dbf44 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd122dd3 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd18592e drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdedb0b4 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe154a14 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe882fe2 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1edfa92 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3aa5b1a drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44e55ca drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc460392a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5039d83 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5374f61 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5913067 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5a5961e drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6400a72 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dca352 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77b73a8 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7e13dff drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ac6f49 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a90ddf drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9d18315 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2fe9e3 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca6f7f1b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca958c2f drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb200f56 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb513ca2 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdcbd599 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce01fca6 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce18d1ef drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf66e8a0 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf802802 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfec4b62 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd158b0cd drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e9cd75 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41ca11e drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52c8c21 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60baf5a drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6427c45 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77336d3 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd834c257 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9601213 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9964fc8 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d1c747 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda8cfb80 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb4704ec drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc20eb9 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc232d6a __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc619c3c drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb11e46 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde25f1e1 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf043c95 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02fb296 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe08ae5ca drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1aac5cd drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe27be17f drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c3a1da drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f9352b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3567f28 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe55cc3e1 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe637b70e drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe657bb45 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c77f89 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8362900 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe91a06fa drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99a4131 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2385e3 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea5a46dc drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebbca612 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf1114c drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb3a793 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc09232 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee3c3b12 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef11dbd3 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf092af45 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1263af0 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf12dbaab drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf197bfe0 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1ad7312 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b04c34 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3347f0a drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b06895 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406a700 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf40e0287 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf453f811 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48384bd drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5b51a13 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ee2d9e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8069889 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf88d8bc5 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89e0e55 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93c3185 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a9c965 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9dcb5f9 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb5e63ba drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc9a9d81 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc9aeb2e drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb03e10 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda82d22 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdefaf89 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfecc8840 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff96f0e9 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0371ba66 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x037f09aa drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05309365 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x055aebba drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0715280c drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f8a47a drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091532a7 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091a7b87 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c2d55a __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aceeb88 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b98092e drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb3cb7a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0edac96c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ee338db drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f316338 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10499066 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x123c02bb __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13c03e46 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14aa47ff drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15a921f9 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18b11970 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18b4e0b9 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18cf8b11 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1be51fb9 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c5aa8d9 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d02f156 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e6a2f9c drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea98633 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1efd38f5 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe2a321 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20a77a3a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2294ecee drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2314c253 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23267c51 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2401a841 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2450c048 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24811f7b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2544ccff drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25756882 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25d9e9c8 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x260cff15 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26896e66 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26964145 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27d0662c drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2879f4c0 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a60adbd drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ab7e746 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba749cb devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c4c13bb drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e999d47 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f94b772 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd24bb6 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3117b63b drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ad16e3 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ca4bdb drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35c601cf drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f8e34b drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37329294 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3764083d drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38851de5 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c11d47 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f2212c2 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f849daf drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x404f9513 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x413da5e9 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42a229f8 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42b31adf drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42f64b61 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4336b2ee drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f7d541 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4482d61c drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44f74e6f drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4668c9dc drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47030037 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47405c13 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4740a60d drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47bc3d9f drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49491a70 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49575128 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a18909b drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a269bba drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ad75d6f drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b24ad1f drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb89424 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd3b8d3 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e35495a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f042976 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f098182 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f4d6e5 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51badaf7 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5430445b drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5519ba71 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x573b18a3 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57b82387 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5924b9da drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59add312 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5af248cf __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b06f4ae drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b7a1e2c drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2399ef __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2fd6ca drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d6affe1 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e0534ee drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e244842 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60da88d1 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x638e559d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64012ce1 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65a4661d drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b04feb drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c442a9 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e7457c drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f1041f drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x677aa4c2 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6928a3ea drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69f0cc0a drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b549e18 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dc82562 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6995a0 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec55c6d __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6eeef4f7 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f21729a drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70099caf drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72dc2166 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72fbc271 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x739650c5 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e01373 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74bd490e drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75cc3b25 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76705dfb drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ac885c1 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6dcc53 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ccf1d35 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d78c61a drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e6b0ec0 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fec6792 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d420c7 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8461910a drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ff2a9e drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x870c1ef4 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88326df1 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x888b1718 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e21900 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a76f721 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8af539bc drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b251812 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b527596 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d5f169a drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e4a916a drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e6f4713 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f033575 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90cc2c76 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x916d0e54 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9449c646 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94d8923c drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94e2efbc drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x950def42 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x955158f3 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x955f6d64 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96659409 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97a2e712 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97b2601a drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97f569d2 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98086676 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x991ce0ad drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a641587 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b6a5f74 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d1e162e drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e1d5dcf drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1bf7143 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa43de169 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa512fc33 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5733cb5 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5acd9ad drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7c9135c drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8bd4d7d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8e8d6f0 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad02e69e drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad1fb4e3 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadcd0efa drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae9ef8bf drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf095e98 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0a3e250 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1ac0689 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4202dfc __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4833d0a __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b4de7b __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb50ede1d drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5cacdc5 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb64e88ea drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9d670a4 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba27820b drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3d0d89 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbac448c4 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd20a0fb drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe08b8fc drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe39bc18 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbee053fa drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1b8bce1 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc29a43c8 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3bb7f52 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3c0eac0 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3cc9cf2 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7a73ae6 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7e2c652 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc783130 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd585e03 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce11318a __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce171f3a drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0fe9731 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1912a0a drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2b0c7e6 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b54c4b drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5356805 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5adeb52 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b0b59d drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd703ab2e drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd80df9a9 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd917bb59 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd966e5d3 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb351117 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbf98cd9 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25f079 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe00341be drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe090bb8a drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1566d6d drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe215ed0b drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe343b47e drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe512a674 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe61743ae drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64ed167 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7bedad4 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9c7d57f drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9fa6d55 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea7f66d7 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4e8022 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee9a54e9 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef3b0e9a drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefad282e drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd76589 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf12d5c08 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20e9763 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf245dd79 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2471068 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2e6e73a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf387844f drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b03809 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf510d9fc drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5806b5d drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c51261 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6847b50 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68730d1 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8333b3c drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9253445 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9a7dfb6 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb7b4ad6 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc06aeb9 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfddc457d __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff90eb2c drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3786f8d2 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4f9acf3f drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9367b14c drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9c000366 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbf370149 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x279896b0 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x27a9a949 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33a4d389 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54c5afa6 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6d32bc2a drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6fb7670e drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x74b05fba drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x804afa42 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91449612 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x937b7590 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa9f08ebb drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xae5c4275 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc2551ff0 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc3f20489 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeb716e97 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf29a1bb1 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18680ee0 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c5d13cf ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x213729a9 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23271d1b ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x283edea6 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c9f25ee ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x308278d6 ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33a7284c ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38d155a9 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b8bfa44 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bfa16bb ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e616b27 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x442ff6db ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x448e5623 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4741d745 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x505b54d7 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x598a02fa ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dce9fcc ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6123fc63 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fec48f4 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7186aee0 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74984b20 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7616a90a ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x774675bd ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e081dc2 ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8110cd0c ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8750f9dc ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8763e8c8 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8775bfe0 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88ea5ace ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x893b43d4 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ad542e6 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b35d900 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bb4d554 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x919504a6 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b92115c ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d6f1b68 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f3bc70f ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa10ffac8 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2b56439 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5a7d1ab ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5b977ae ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7bee71b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0407bda ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0ab64e3 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc23fbd7a ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc48b4cd1 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc77eb423 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca614b9d ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdea0cf6c ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe64d3bd6 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf51895d0 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8612e7 ttm_bo_mem_space +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1883ee9e i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x32fdde14 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7d291bc5 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0d367533 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x112d31ce i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x15ba6805 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1a316768 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2315101a i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3491d1ae i2c_smbus_pec +EXPORT_SYMBOL drivers/i2c/i2c-core 0x39f4c304 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3caf490b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4adb5412 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x53c67ac1 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5545daae __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7140e71c i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xaa1ca3ec i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xafbb93ac i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb07fb364 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbe29dfec i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc1480dc1 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc3ba9fd0 i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc4391568 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd0218ee1 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd657dc79 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd78a0a37 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe7f893c2 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf26d5b36 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf3085c32 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfd20ea09 i2c_clients_command +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x11f878a5 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5ead8ff8 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5ee8c9f0 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x66c1f5d5 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7033c1e4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x737c42a6 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8b31d9d0 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x90d2f3f0 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa46074fe ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5f77c40 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9bbebdf ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc7de0572 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcde1ba7b ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd04676b6 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2406e7c ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x016fce7c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01d7b727 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c09471 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x035f0adc rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x048f03a6 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c2225d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04ff124f ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07fb4ee8 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x084ff01a rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0929775a ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x095f9778 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b706346 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e0d32a5 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e5606b8 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1114127e rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x112a99a4 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147f04cb ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1543c0db ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1771c765 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189ca343 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a7971ec rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b7e8c8b ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c0d8cb6 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c51d1a6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cc93365 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ebedb23 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3cb2a6 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22c7ef5a ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23a3d091 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25338861 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b9126d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c5e54be ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2efb69b0 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x319d7691 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3271aaeb rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3309b7b9 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3658126c ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36c8b0c6 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3753a1ec ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x388bdd67 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x395bbc84 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a134f2e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc31a5c rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d6c0beb rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dec9ce3 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43285e17 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a7d87b ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x441be3ca ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4579be13 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x463e7b5b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46422b68 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46867279 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x487188c4 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48a1aabd rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c7751d7 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e33a394 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f0d12c1 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5192fe3d ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51b97184 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51e761bd rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d34235 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x551304c9 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5843a1dc ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a697af1 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a90d55b ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6102e1bc ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63f5abbb ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a6797ad ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b896847 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c82f3a5 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e09bdc1 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e9fde27 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70384def rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70e2a1ad ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74531b3f ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74caf2a6 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7872a568 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7927e951 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a170417 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b189f33 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5ebc6a ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc75ff6 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1716d1 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d57dff8 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x801658ce rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80db5221 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8152d2b8 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x888b7bb6 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89101718 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89c25a01 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3c8f06 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cc6dec6 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd47432 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e752187 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ecfaff3 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f1b5a2d rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f59f68d ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90460d38 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9083c8c0 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9169ff12 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91e768b0 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94f1eaec ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9537b136 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x953ae4ee ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95990d24 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97ac1ce4 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97d75da5 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98dd61e3 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bb705d0 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e4c2ccf ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0ae45d8 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1564df3 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2089db0 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa572905 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab352009 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca5dd12 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad48b0c3 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadb09935 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae4f32a1 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f47c52 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb16f16d9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d1f282 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d1e87d rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d0d19b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5921314 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb635007e ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72912af ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdb5f668 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde3cc5b rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe253134 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf0d23e1 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc23a7335 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3639b26 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3679f45 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc369db1e ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5d2e2e9 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc66347aa ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcac21bfc ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb185175 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb9d9ee1 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd26e078 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3b029f ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce46038c rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceedb11d ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd113a9c5 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd15b6d88 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1e32d5f rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3906baf ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3d6caed ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42c2783 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd486acd3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4efdc56 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7031620 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd992783b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0617b3 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda47b21d ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdad92e31 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcb92165 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf17ceb4 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2d02c33 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe43abacd ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4bd326a rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe54fdca3 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63f7d1d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f2e787 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8bcc96a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ceb556 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea7be53c rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed166382 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee5cb781 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea70e0d ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefccb64d ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefce4cef roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0d311d3 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf28fd7e6 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4037219 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4beac60 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf647410b rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6f061c3 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7d2a0ab ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7f55323 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf97ca558 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8947b7 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfae25b7d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfae79ccd ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbd2fd22 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe9a454a ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfedeed37 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13043e1f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c6c9bf8 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2611f845 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x281aa98f ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c6f47dc ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e3f2591 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3efd66b5 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x433557a2 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ba0e06 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e857d33 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5bbfd7db _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61e9a8f7 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65eb8e13 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f1702ad ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7127c0ce ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7930dd72 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x837a14e3 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8866a8b0 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c47aa6f ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x976482a4 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x979f9f10 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98c355a6 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9afd5d0a uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa51b51ca ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb400c247 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc211f852 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3c7e423 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd6da7ce7 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe01a80ed _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed99f643 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef773bba flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4e79bd0 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0182f5a7 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x27a5effb iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x605c07ff iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9f696997 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1db3153 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbc163fca iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbff8fa5c iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc6168a3b iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b01de41 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ca538e2 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0df1604e rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fa988ad rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10aafc82 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1150ef24 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11ef1e0e rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14091c28 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16da3a66 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x197b7ab0 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2bb52058 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33a6b4ea __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x365fadc6 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x422dcce8 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43f3dd9b rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47924178 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x484754c8 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73eddc4f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75d246cd rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87052b9e rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x893103ae rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c99e509 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d9b3d42 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9221bb61 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9395b296 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97bf19b5 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8b6035b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb012ecea rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1818d74 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1b9a3e5 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd302ddc9 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8cb32db rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeef662a6 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf63e4071 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x28e614aa rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x60adb2b5 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6e242b4d rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x716097da rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8d607dad rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdbf22db7 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf90d2e5e rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x18c381bd rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5630ccb4 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x99b7caed sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xaed3b7f6 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd597d4af rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x04f4651a rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x10458364 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x29716fdf rtrs_srv_get_sess_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5ee8aae0 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf0818923 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfccf075c rtrs_srv_close +EXPORT_SYMBOL drivers/md/dm-log 0x2ef3008d dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x4fe84abc dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xe075f1b4 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xfdc7833e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00ec3e72 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x11093a85 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5153bc82 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa1f06f89 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xba7ac28d dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcdaa82bc dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x476d8ace r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x86d28f0e raid5_set_cache_size +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0057d548 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02a7f57c mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0649dd91 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0acbdadc mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e36753d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e3bf579 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e90de0d mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10b45923 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x151e5791 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16eae2d6 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2101bf23 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2269e5e1 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b869c1 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22e784d3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x260ad077 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ec2e6e2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b2a2f3 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3be1f926 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x550d6136 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc0b6f6 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bd0826b mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d7ecf06 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x616a2fcf mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c194276 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75b74712 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cfb934d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b8fe50 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b12973e mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94b52a06 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x990ca5f2 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e1cd4c3 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e6d3771 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6a2d1c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f47834 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb876774 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0a14baa mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1e2bf6c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce1a4277 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8149090 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0b1ec5a set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf728831c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5eb96a mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd73b9e1 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffb64ada mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x077d6c3b mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x088de20c mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a3093e7 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0da0c382 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f0f89a8 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12ee951f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e0ee05 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b4d53c mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1920c341 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a229b76 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc1bd72 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f94c3f0 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x202e8414 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22cc0fab mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29178f4d mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2941247b mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x299f0f29 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b187308 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x309b4d49 __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30c308c2 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x330da511 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3627dc96 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38e69620 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bfe9f49 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d3b1508 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fdae399 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414dd3b3 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f66086 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42b165ef mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47eb1e99 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49d68e0f mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd44a2f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e10b38d mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f43ca70 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f654f76 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50779b9e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565b4a62 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x579a4929 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5af6d82b mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b9b86c6 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e5d822b mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe77b55 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62fbbbc6 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64d261bd mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x663f9be0 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66fd0423 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d85ac8 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69abbe6c mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e4199df mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecb00fd mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f1a2eae mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72738804 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e7103b mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7649a4cf mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x770712ec mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c49d04a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f18381c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89a720b6 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b03f27b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0cf3cb mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c780a21 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8db27302 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dcdd9de mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9064a874 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x917e39e8 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91c33c43 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x964f6504 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991895c0 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa762a5 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9acb1b88 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b0ec277 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b6c2985 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0012b92 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa23bada5 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa312562d mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa31fb83a mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3e6eaad mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b801d1 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9fa9bfa __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac770fd3 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad2207fa mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae627407 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae864f9e mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaefc3529 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf2e37d5 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafd347b7 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb278c8ae mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb396d0f9 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b5d769 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb53c56f3 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc13f62db mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc195756a mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5830d54 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc697869f mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc71dce80 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaeefd1d mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdcfb2ca mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce74d10b mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf42ec13 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04ca96d mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0dba979 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd250a81b mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f9724b mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3c4a8ec mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5cf9d5a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd60625cc mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6707ba3 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6882c28 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74414ca mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74aac85 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd909cc75 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd92a63ac mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdec7c73a mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf3e65db mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf7fa0c8 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2b63133 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4148e34 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5df83b5 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe64ed993 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7eb3d95 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9e225b8 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed02bb0b mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef45e758 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf037d0c3 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d10b03 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4698ca3 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c894f3 __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa816f03 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb443a19 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdb7e442 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xf67644f7 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x017a7985 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0dd8caa3 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f89420e mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d72838 mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35ba2254 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a5d42aa mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a6ed376 mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e2424ee mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x632314f1 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65edff15 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6cdd46a5 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71fe2dff mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76ea4bbd mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ade58a0 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x848e33f0 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x854dc0a4 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa674ac2b mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xce3278bf mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd74bc0a5 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1ba59e3 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe44ad7c8 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2ca3bae mlxsw_core_res_query_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf4909bea mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfb80bf9f mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x99af3880 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa1d3d7ff mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4183a255 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x0060ab72 __mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x03645981 phy_trigger_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0x03a81ad5 phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x05e4b473 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x069626db genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x06f85db2 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL drivers/net/phy/libphy 0x08c9a6d4 __phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x0a2cc50e __phy_write_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x0b2f28dd mdio_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x0bc5eb53 phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0x1293fc33 genphy_read_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0x15c8046b mdiobus_is_registered_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x17858034 mdio_device_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x17e652bc genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x1b10199e phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0x1d0430ec phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x1f600ac6 phy_ethtool_nway_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x1fb6a9e3 phy_read_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x2206c5bf genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x225cd449 phy_read_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x25280cc2 genphy_write_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0x28de8d59 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0x29766dcc phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x29a3b25f phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x2cfb91b2 phy_do_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x31c2f960 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x327d953d phy_error +EXPORT_SYMBOL drivers/net/phy/libphy 0x3566a4c5 phy_attached_print +EXPORT_SYMBOL drivers/net/phy/libphy 0x364c64cd phy_get_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x3763d5ba mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0x3a954906 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0x40f6bb6c phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0x428214b9 __phy_read_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x43e0ec06 phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x455a5803 phy_attached_info_irq +EXPORT_SYMBOL drivers/net/phy/libphy 0x461bba65 phy_write_mmd +EXPORT_SYMBOL drivers/net/phy/libphy 0x49926086 mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0x50174320 phy_set_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x51c4038a genphy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0x5267de80 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x526848cd phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x52ff275d phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x5554b50e phy_free_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x57419a2d phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x5c44c945 mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x5d6e750c genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0x5e0bc1db phy_write_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x5e16d841 mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x61bf285c genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x66387652 phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0x68d06f4f phy_sfp_probe +EXPORT_SYMBOL drivers/net/phy/libphy 0x69a5e9f1 mdio_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0x6bd61a25 phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0x6bf0dd7a phy_do_ioctl_running +EXPORT_SYMBOL drivers/net/phy/libphy 0x6c43ed8a phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x6dffeff1 phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0x71b3df98 phy_ethtool_get_strings +EXPORT_SYMBOL drivers/net/phy/libphy 0x75e64169 fwnode_mdio_find_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x78198533 genphy_read_status_fixed +EXPORT_SYMBOL drivers/net/phy/libphy 0x797bf37d phy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x7a96f259 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x7e256a71 mdio_find_bus +EXPORT_SYMBOL drivers/net/phy/libphy 0x7f06a347 phy_get_c45_ids +EXPORT_SYMBOL drivers/net/phy/libphy 0x814f8c24 phy_validate_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x85f3bdcd mdiobus_register_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x8c57c1d7 genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0x8dbc07f5 phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x8ecc9810 genphy_c37_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x9022c78a phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x90e8abfe mdiobus_unregister_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x94706cd5 phy_get_internal_delay +EXPORT_SYMBOL drivers/net/phy/libphy 0x96cde7c0 get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x985b5b8b mdio_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x9a68d254 __genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x9d72ea99 phy_queue_state_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0x9e4be93e genphy_read_abilities +EXPORT_SYMBOL drivers/net/phy/libphy 0x9fa59ec9 phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x9fb0ea9a phy_ethtool_ksettings_get +EXPORT_SYMBOL drivers/net/phy/libphy 0xa01a8196 mdio_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xa0a80641 mdio_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xa342756a genphy_read_lpa +EXPORT_SYMBOL drivers/net/phy/libphy 0xa4d716ec phy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0xa4e1672d phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xa572b9cd phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0xa576b76f phy_start_cable_test_tdr +EXPORT_SYMBOL drivers/net/phy/libphy 0xab0c0137 genphy_config_eee_advert +EXPORT_SYMBOL drivers/net/phy/libphy 0xb02f1f66 phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0xb0cf3151 phy_ethtool_ksettings_set +EXPORT_SYMBOL drivers/net/phy/libphy 0xb1fdc77c phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0xb214fc53 __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xb226afb5 fwnode_phy_find_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xb2ea430f phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0xb66fee7b genphy_check_and_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0xb79c23e8 mdiobus_get_phy +EXPORT_SYMBOL drivers/net/phy/libphy 0xba632bf5 phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0xbe6c565f phy_modify_paged_changed +EXPORT_SYMBOL drivers/net/phy/libphy 0xbf58d0f5 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0xc13986a0 phy_modify_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0xc374d412 __mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0xc65fadcf genphy_c37_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0xc8337292 fwnode_get_phy_id +EXPORT_SYMBOL drivers/net/phy/libphy 0xc869b11c phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0xca2e93bb phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xceb73813 phy_ethtool_get_sset_count +EXPORT_SYMBOL drivers/net/phy/libphy 0xcee0ea95 mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xd136db78 phy_request_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xd41a184e phy_advertise_supported +EXPORT_SYMBOL drivers/net/phy/libphy 0xd45cbd49 mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0xd4c6c795 phy_set_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xd7345bd8 mdio_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0xd988e7a6 phy_support_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xdc6ee541 phy_attached_info +EXPORT_SYMBOL drivers/net/phy/libphy 0xdd1d3733 phy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0xe371ebb9 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0xe3b26c56 phy_start_cable_test +EXPORT_SYMBOL drivers/net/phy/libphy 0xe60b9c7f phy_support_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xe738b16e phy_remove_link_mode +EXPORT_SYMBOL drivers/net/phy/libphy 0xe7a3dc9d phy_reset_after_clk_enable +EXPORT_SYMBOL drivers/net/phy/libphy 0xe815ed70 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0xeb8b6254 phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0xeb9ef6ab phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xf4458e7c genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xf4ad869a mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xf6dcf8ca genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0xf7238532 phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xffc773a9 phy_ethtool_get_stats +EXPORT_SYMBOL drivers/net/phy/mdio_devres 0x21e16792 __devm_mdiobus_register +EXPORT_SYMBOL drivers/net/phy/mdio_devres 0xcfff6fca devm_mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/team/team 0x13d4461b team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x1ac66039 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x504c0c41 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x533ff7e0 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa9dc8e8a team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xadc25ce0 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xae2f8b52 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xe5379eba team_modeop_port_enter +EXPORT_SYMBOL drivers/pps/pps_core 0x574feb66 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x69a77de2 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x8fd7483e pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xf521ef0e pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x1776bb47 ptp_find_pin_unlocked +EXPORT_SYMBOL drivers/ptp/ptp 0x312b247f ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x6361948c ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x8ccc6043 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x8e5ca38d ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x91378f1f ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0xaf5e04e3 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xb5c7e8ab ptp_cancel_worker_sync +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x07e5e487 dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x08613ab0 dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0e898bf6 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x245cd173 dasd_path_create_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x26ffd0b3 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x27d76078 dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2bf7c5cd dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3b3515e0 dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x43459ad9 dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x457acae7 dasd_fmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4e26e4e7 dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x51e53582 dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x659a4d7e dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x66d1cc52 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7260f82b dasd_set_feature +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x726c1b8b dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7729df92 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7a37bc21 dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x82e5e665 dasd_path_create_kobj +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8a2caee2 dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8d548e5d dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8f1489e1 dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa06b7563 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa8012f9b dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa9793e70 dasd_ffree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xaae9b88c dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb0ac7a6e dasd_path_remove_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc1e78685 dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcd1e0e7c dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd108c33f dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd1d424f1 dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xda4807d4 dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe3ff2a0c dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xef5a78a8 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf7f2b8aa dasd_term_IO +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x08e57a2c hmcdrv_ftp_do +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x3198b5cb hmcdrv_ftp_startup +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x83a6e87f hmcdrv_ftp_probe +EXPORT_SYMBOL drivers/s390/char/hmcdrv 0xba68949c hmcdrv_ftp_shutdown +EXPORT_SYMBOL drivers/s390/char/tape 0x028519ce tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x0400ee0c tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x0584e2da tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0x0e14f936 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x10e300b0 tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0x117c5292 tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0x1426bac4 tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x1872508e tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0x19b0bf9b tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x29d60206 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0x30c305b9 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x30e19e05 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x312564f7 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x328c99c6 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x379694e0 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x38d9292f tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x38e892a5 tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x3fe1bf41 tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x414aceed tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x47c353df tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x49be55f3 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x4c305e73 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x4dd63f3d tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0x5120590d tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x5eb8920e tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0x66a5794a tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x689fa2e6 tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x6b4e0697 tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0x7a282fdf tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0x8da4b1d3 tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x963becad tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0xa567cd22 tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0xa60d7b90 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0xa6568a62 tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0xa9b2c8e9 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xb4db4c10 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0xbbc0fd28 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0xd27f101c tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xd5a01556 tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0xe4d216a5 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0xe9a45b2e tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0xf72b1174 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0xfd0789a6 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xabfaf9c7 tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x66270f95 tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x160661b4 register_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0x73011e3b unregister_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x00c04ec1 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x18db7e59 ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x1de23cfc ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x380c0836 ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xa346b7de ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe3a00558 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe903f964 dev_is_ccwgroup +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xf1674b63 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/qdio 0xd53db6da qdio_stop_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xe4439950 qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x00cbfcde __traceiter_vfio_ccw_chp_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x7acf9c1f __SCK__tp_func_vfio_ccw_fsm_io_request +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x87db7cac __traceiter_vfio_ccw_fsm_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x9cc9b339 __SCK__tp_func_vfio_ccw_fsm_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xab59e724 __tracepoint_vfio_ccw_fsm_async_request +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xb3cb802b __SCK__tp_func_vfio_ccw_chp_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xc4df2d80 __traceiter_vfio_ccw_fsm_io_request +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xc71044f9 __SCK__tp_func_vfio_ccw_fsm_async_request +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xc8156451 __tracepoint_vfio_ccw_chp_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xdb6c0a19 __tracepoint_vfio_ccw_fsm_io_request +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xe7175743 __tracepoint_vfio_ccw_fsm_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xeeaa8b65 __traceiter_vfio_ccw_fsm_async_request +EXPORT_SYMBOL drivers/s390/crypto/pkey 0xa2396123 pkey_keyblob2pkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0327b454 zcrypt_send_cprb +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0ebc8b2f __SCK__tp_func_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1360e3df cca_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x17a7ba6e __SCK__tp_func_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x20a6cee7 cca_get_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2c53a950 ep11_check_aes_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x320b4ee8 zcrypt_card_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x404502d2 __traceiter_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x49b092a9 zcrypt_queue_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52190334 cca_sec2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x54e3c85f zcrypt_card_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x55788ef8 zcrypt_queue_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5b470bff zcrypt_msgtype +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5cdcc74c zcrypt_card_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5d6e9ceb zcrypt_card_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e050fdf cca_genseckey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e89b087 zcrypt_queue_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67cedaeb zcrypt_rescan_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x72bc6e0b zcrypt_card_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7dd52fc2 ep11_clr2keyblob +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x84e72714 ep11_check_aes_key +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x85ca4e1d __traceiter_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x8959e4b7 ep11_check_ecc_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x8fbda2ba zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9018fe39 cca_check_sececckeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa502c213 zcrypt_wait_api_operational +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa54284be zcrypt_device_status_ext +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xadc0c745 cca_check_secaeskeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xbceff607 zcrypt_queue_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc0c976b6 ep11_get_domain_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc20af440 cca_query_crypto_facility +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc23843b6 ep11_genaeskey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3ee9fa0 cca_cipher2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc79ae663 __tracepoint_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xd600f12c cca_check_secaescipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xd99cbc14 zcrypt_queue_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdb0adadb ep11_kblob2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xde81d722 __tracepoint_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec693119 cca_ecc2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec84eb58 zcrypt_queue_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb +EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch +EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel +EXPORT_SYMBOL drivers/s390/net/ctcm 0x812fa936 ctc_mpc_establish_connectivity +EXPORT_SYMBOL drivers/s390/net/ctcm 0xf5440dc6 ctc_mpc_flow_control +EXPORT_SYMBOL drivers/s390/net/fsm 0x312e1b73 init_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0x331bbed3 kfree_fsm +EXPORT_SYMBOL drivers/s390/net/fsm 0x92d7bc3b fsm_modtimer +EXPORT_SYMBOL drivers/s390/net/fsm 0xab62b304 fsm_addtimer +EXPORT_SYMBOL drivers/s390/net/fsm 0xaefe8672 fsm_getstate_str +EXPORT_SYMBOL drivers/s390/net/fsm 0xdf20006d fsm_settimer +EXPORT_SYMBOL drivers/s390/net/fsm 0xe8a7dd7d fsm_deltimer +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3d385e30 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x762bece5 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x772f95ab fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x786230e9 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d0435bc fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89c1bf60 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xad98091d fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcbbc0582 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd78abaf6 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xee581007 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf6d11714 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04a8fdd2 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0753342e fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x085723e9 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a21d720 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b524f1a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x177ea3bb fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1983ec84 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a66595c fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c9a904f fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29a6d7d1 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a37295b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c3d3e4d fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2eccbfa6 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31c1e6ec fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37418e72 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d259049 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f9ff6e6 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41f7a0eb fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x428c6062 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51c3a867 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52b9765c fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a07a384 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62c84dae fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a87d310 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x731837c4 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x733d49f1 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88a98d5e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9af87590 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c7f3bdd fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa09c142e fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9d8447e fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad40df01 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad479fe0 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae052b7d fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb689cd32 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6eecc37 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe4dc926 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc001c992 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2d78056 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2dd8cd4 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3a867d5 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6929d9b fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb8b7e4d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd12a3c6a fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1be4809 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3d391ae fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdcf147d3 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe157fdcb fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3b928e9 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4b0d682 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebce84b7 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeee8c905 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeef63acf fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1019251 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e0571d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa214e05 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa8fe4fa fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc6f4b55 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb5a73f fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x241f01e2 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6c63f139 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6d305c08 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/raid_class 0x53e198c6 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xcbc88291 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xfbd7f528 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x251ade3a fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x337d4bb1 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x393af371 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48e64d5f fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c96e672 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5293681a fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x57a4f836 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x60ff356c fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x85cf31a8 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x97db9bba fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98e311ca fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xae9a0766 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1bf9211 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca435fc0 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeffb9320 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfad061fd fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfe8de507 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0478f4a8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x14a3e903 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1742d9a0 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17ef672f sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x403199db sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x413834a5 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ea07f97 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57514d42 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x610d8ab5 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f22cf52 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81eebf90 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8816e129 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8b75f3d9 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c046797 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d6964c2 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99437296 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d86b7ad sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa402ce6d sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6ece50b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab0f51ca sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaecd6bfa sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf0f0849 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1c0fbfd sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0ceae7d sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc78ee3e2 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3308885 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7666281 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdfc4e340 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe47eccab sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1c0d70ee spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x81cdca94 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x82e84236 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa497dc08 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfcd79617 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1d9a45ed srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47985cb1 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x495e18a9 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9e3ff33b srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdb478abe srp_rport_get +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04545b26 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a662184 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1943d055 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x203f28db iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26a26431 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35edb207 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35eecc95 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3631c213 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f5d7ed4 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43489424 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e03b451 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52c81cc3 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a4983c1 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5eaf0324 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62076458 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66c05543 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a0795cb iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6aa98f28 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x726be77b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74c5d424 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79906692 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79de67d5 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d5d64ac iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f769005 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80f80cfd iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87bf8439 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bcced5d iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x960de7c7 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x978d3151 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98b495d2 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa46e62c8 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1304807 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb178f058 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7875593 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc38ac949 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcac1e805 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcdbdf729 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd07427a1 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc550fdb iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf9d9cfe __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0418f17 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec244485 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf23b3198 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf64d7564 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0aa1bfa8 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d0c50a6 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ef5860a target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x11f621f6 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a177e98 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x20dafbf1 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x211d8d05 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x237e3250 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x24d34aa6 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x304c21d2 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x312b8abb transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x3344a626 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x342fadcb passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3603d005 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a40bc78 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e6ebf7c core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f79680f transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4745ab10 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a5b268f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4adcc51e transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e44ea08 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5191a6c6 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x53309c09 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x55537833 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x567989df sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x58007ab4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ff09c99 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x61daf960 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a67aba3 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b6dba82 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bb4cb76 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f886ac5 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x765b9e67 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7934ed57 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a08953f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c2f81e4 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cafc012 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x82393fa4 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x83abc446 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f386f9f core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x907dd39c target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x92cdbc26 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x952bd352 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x98c6e256 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9af4e671 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b35fd45 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa037f406 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa10d8e09 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4b466af target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa94ff3f passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xae987510 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1733a3b transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb63bbe07 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc03fd025 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc30749ce target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc40d00aa target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5b64029 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc64ece5d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xca514963 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6d255bf core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd815f2df core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xda360403 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdeb3c2df target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xdff181c2 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe08ac207 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe18b9353 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2bca290 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5060ee9 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7dc3a43 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xee56c9b3 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf934e53a transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ae6dd8 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb187e97 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x014cddb8 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0eacbf08 uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x2313affb uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x2559235a uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x2579196b uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7c038afb uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xadc80bf0 uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xbb206acd uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xd4270165 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xdec71ea0 uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xf20d19a2 uart_update_timeout +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5041610a mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x50adf0cd mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x813ee99d mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa1a5d8ee mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb135fc82 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb3423d94 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbc36711f mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc51cb453 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x6b251050 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x9ec9c226 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xa0174901 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xbe2aec2f vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xd44df7c0 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability +EXPORT_SYMBOL drivers/vhost/vhost 0xb241ad68 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xf0abdb9f vhost_chr_poll +EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x4e383106 cfb_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0xe0cd72dd cfb_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0xcc0f2252 cfb_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8376dba8 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2d839873 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x29636d51 sys_imageblit +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8535f286 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa0f26c0d virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xcdb7e120 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf27b3e49 virtio_dma_buf_export +EXPORT_SYMBOL fs/fscache/fscache 0x09329af9 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x0949eba2 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x15137f1f __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x236ccecd __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x2a77f1ac __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x31403cdf fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x39bf5c06 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x3b30553a __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x5396c40b __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x5e37ae15 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x614192f9 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6181e29a __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x6e7c9e74 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x6ec5a5fc __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7dada59e fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x80552feb fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x8b074c98 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x90322e71 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9744fe6f fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x99c0d819 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xab9a6478 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaf65b723 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xb2e9c3d4 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb5de8002 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xbb5f63c5 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbd5ae381 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xbe860253 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc38b3ad3 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc6b2da3c __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xca8c8147 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xcadb374b __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xcb2bd1a1 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xd17c67ba fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xd2ebc8ba fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd4186b34 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdbe82e15 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xddaed01e fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xe1a1152b __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe4b54e7e __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xe8bc8b3c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf76e46ee fscache_put_operation +EXPORT_SYMBOL fs/netfs/netfs 0x0344d4e4 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x3ecab8ce netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x988fe6ec netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xafa69a6b netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xdcf026c0 netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x608bfa0e qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x63e04b66 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x853f85b8 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xa2a03836 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xda6ad921 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xfe5e9e7b qtree_delete_dquot +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xdf59602c crc_itu_t +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xc440541c crc7_be +EXPORT_SYMBOL lib/crc8 0x75d9109e crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libblake2s 0x2fd09944 blake2s_update +EXPORT_SYMBOL lib/crypto/libblake2s 0x8da0a315 blake2s256_hmac +EXPORT_SYMBOL lib/crypto/libblake2s 0xadae6df8 blake2s_final +EXPORT_SYMBOL lib/crypto/libblake2s-generic 0xa6e9c670 blake2s_compress_generic +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x161ec81e chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x35142bf2 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x637307c6 chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xa3883e62 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xb9f848ed xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xff3141e0 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del +EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set +EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get +EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create +EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x96e0136d lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put +EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xd6ac502b lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find +EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x0f3dcf29 LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x7f7bbb7e LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xe06ae6d6 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x38e157a7 objagg_create +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x00441ef6 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x040c92d1 ZSTD_CCtxWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x065b14f3 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0b9a9379 ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x17823f99 ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1ffb27f1 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2411b496 ZSTD_CStreamOutSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x273a39e7 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x35adbdc6 ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x48bfae8e ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x50d289a3 ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x515ab572 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x57b1012f ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x66a8b7ab ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x785d10c3 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x84e61bae ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x8f2f596d ZSTD_compressBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x97b3b7ca ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa88b0af5 ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc2d4374c ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xc83660bd ZSTD_getParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd1ad98e7 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd967de6d ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdc157266 ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xdfb596f8 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe02d4179 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe14f9e35 ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0xebe6a8a6 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xf2068346 ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xff471430 ZSTD_compressBegin_advanced +EXPORT_SYMBOL net/802/p8022 0x7e15c8cf unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x9a756f49 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x3b496838 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x490b1be0 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x04092502 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0432482f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x07405a2b p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x08bea2f8 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0a1a6eab v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x1024f1f9 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x11a1e745 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x141260b9 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x15a121b7 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x16aeb2b7 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x16df3f8e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1c73b6ad p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x33ebe64c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x345dd782 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x38d86032 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x457e2399 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x48ec7314 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x518f3d6a p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x6188bfe2 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x62a04573 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x663af0d0 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x6ad10de3 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x6ad8af4f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x818608cf p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x86eb00ae p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8818fdc8 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8b2f4b39 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x8c149dd3 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x99e4b4d4 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9a4a35a2 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x9b4d8e81 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9f4605c8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa04de16c p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xae0b1506 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xaf71f0d4 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xb90d9ab2 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xbb86a59b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xc7bad4fc p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xca75e914 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xca9d797b p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xd030edcc p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6696aee p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xebb9318f p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xf62ef273 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xfd5127a6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xfd95bf5b v9fs_unregister_trans +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x57a74052 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6b99d0c0 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x78703214 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x98f90e63 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xddfbd714 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe60f5053 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/ceph/libceph 0x013380bd ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x06fc9b4e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x0c35a6a4 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0cd469b0 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x0d953d58 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0e72be8d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x1e226f77 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1e977977 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x2004be50 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2035aa1c ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x208b94fb ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x20fe66b4 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x21139f88 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x22b16a88 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x26798b23 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x28685a84 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x28963509 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x29f48587 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2a3f0e28 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2bbbe8a2 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2c8b18bb ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x2dabe8e8 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x30c4fec5 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3412ce9e ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x362eab96 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x363f5d70 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x388c2ac0 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3c05cbda osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x3c4b3f6a osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d9df2dd ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4154d10d ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x41868f47 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4187cb6c ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x43565613 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x45e213ea ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x45e97750 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x466229cb ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46ad252f ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x49f8e6da ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x4ab6ca54 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x4c2fd37a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x50431451 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x53c55e0c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x54389a69 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x54e333ec ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x5571c5f4 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5955c471 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5a477363 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5b834b46 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x607fdd5b osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x62f7c908 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x63987730 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x67642462 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x67f4e623 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x6a3da16a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6ae5f5cb ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6b9ead24 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x6e1a5d59 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6eaf06b5 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x70e2c9b2 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x7a0d861d ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x7fe813e4 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x80ead5dc osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8659b365 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8a88c363 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8f3c69d1 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x946edbd2 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x97c5c86a osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98d742f6 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa1f89ca0 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xa3de5a59 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xa67dfc5b osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa68aafab osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb455d36a osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7596929 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xb8028006 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xba25718e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xbb0e67f9 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf5be3ae ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc1815577 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xc642b8a6 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xca020edd ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcab25d94 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xcc3f7361 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd53b668a ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xdda28f5a ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xdef2bb6d ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe01e6f5d ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe3e963fc ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xe3fd27ec ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xe582641e ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe6cf7ad0 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe8aa6afc ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xeb51f800 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xeb8ea77b ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xf089332f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xf1857e3b __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf2cac781 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xf2ee4503 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xfb947602 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xfc3dd0c4 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xff23d45c ceph_put_page_vector +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4768e51b dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xfb5d9a98 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xa87ea9d6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xff2453da __fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0x7d2b91c7 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1013cb9e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x24c39434 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbcd6b7e7 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf2447621 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x17314084 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x22c2fdad arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6fa878c0 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf92bdbb4 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x38e3f9fe ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4b53cd7f ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x60d2d092 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfc5af8fe ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x921aa8cb xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x98d2389c xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x934ab5fe udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f643773 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3231df12 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5e68daaf ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x647a1483 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x96230dc5 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc42280d2 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcaaaa428 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xebcb5add ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf048839b ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x271964a7 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5b3b40f5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8f71d288 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdedd0492 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x7aebe4ce xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf092c1e2 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xaaf70112 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfef18098 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/llc/llc 0x14544cc7 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x1aa1176e llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x25c74098 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7a3f73b0 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xe1bac03d llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe42f7dbe llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xfab95829 llc_sap_find +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d8ceb81 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13723c15 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x17be0fa3 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a0392a3 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4001bb64 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40ae2326 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x58153022 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79292fed register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ba84da2 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9df6e585 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e6b3569 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xccb3a8c9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd2c324fa ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe2dac2d7 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeddb53f0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5cfd9588 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x5f3f9b49 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa5750b10 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd1307314 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf6fdfffa nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0141b6e9 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3deef144 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x472d2bd4 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x5f3b6a4f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9b55d9c6 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa84d3746 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xcfd0bdf2 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xe3366248 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xec6602e2 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf74d44be xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0b75be0b rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x10c0cee6 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15d8be5a rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1acda9c6 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1dd59bf9 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x265277b2 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x34caaa70 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x37d4ac14 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x49b2abf4 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x57decc3e rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x82a92ed8 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc3a22599 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc75b9358 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcb10ae0a rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe6c19cde rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe7621b7f rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xec859bed rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xee82ad62 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/sctp/sctp 0x8057ea44 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x36ec60cf gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9349bcbd gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd01214f5 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x025c2600 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x035014ed svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6800df31 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xaa0183bd xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x398d91ad tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x9d71973e tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xcf2f8584 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xf3a5ef79 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xe73644fd tls_get_record +EXPORT_SYMBOL vmlinux 0x000c5567 I_BDEV +EXPORT_SYMBOL vmlinux 0x0014e151 generic_write_checks +EXPORT_SYMBOL vmlinux 0x003b67a7 ip6_output +EXPORT_SYMBOL vmlinux 0x0049cbb3 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x005e052d debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x00a6fc54 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00bcecc3 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x00dcff87 sock_from_file +EXPORT_SYMBOL vmlinux 0x00e1b0bc __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x00effa24 seq_lseek +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x011a06b8 get_watch_queue +EXPORT_SYMBOL vmlinux 0x011b451f qdisc_put +EXPORT_SYMBOL vmlinux 0x01252a8e bioset_init +EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x016ed463 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x0178db6a inet_sendpage +EXPORT_SYMBOL vmlinux 0x01790937 set_blocksize +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x01bd98dd dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c70e78 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x01c892de nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x01d3173a tty_port_put +EXPORT_SYMBOL vmlinux 0x01e1ec00 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x01f3c52c inetdev_by_index +EXPORT_SYMBOL vmlinux 0x02032d35 mpage_readpage +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x023273a4 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x02727799 block_commit_write +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027bea49 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02c9ae9f ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run +EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x0305191f sock_alloc_file +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0345a983 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x0348037a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x03485bf4 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy +EXPORT_SYMBOL vmlinux 0x035d488b unregister_shrinker +EXPORT_SYMBOL vmlinux 0x035e41e9 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037e3b88 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x0391b489 tso_count_descs +EXPORT_SYMBOL vmlinux 0x039660c7 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b7c574 configfs_register_group +EXPORT_SYMBOL vmlinux 0x03ccd08d tso_build_data +EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x03dbf14e follow_up +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0402289b register_md_personality +EXPORT_SYMBOL vmlinux 0x04024f42 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x042182f9 freeze_bdev +EXPORT_SYMBOL vmlinux 0x042b8dfb __udp_disconnect +EXPORT_SYMBOL vmlinux 0x04304116 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x0443a273 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0452e932 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x0454e045 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x0458278a sg_miter_skip +EXPORT_SYMBOL vmlinux 0x047d07b4 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x0482a0de mount_nodev +EXPORT_SYMBOL vmlinux 0x04ab6673 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x04afa66b tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x04c8104c tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x04d89118 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x04d900cb devm_memunmap +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04e1834d xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0522726d ap_queue_message +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05575ad8 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x056329cd node_data +EXPORT_SYMBOL vmlinux 0x057b4b85 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x0593b6c9 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x059619df fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x05a363c8 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x05ab60c2 sock_set_priority +EXPORT_SYMBOL vmlinux 0x05c743bb inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x05e1c6ed __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x05e2bb30 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x05fddab3 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x060c6290 tty_register_driver +EXPORT_SYMBOL vmlinux 0x0613ffd8 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x063015d4 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06376a4b sock_no_linger +EXPORT_SYMBOL vmlinux 0x063a6b31 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x065800c8 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0675a4e4 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x06892268 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x0696132c kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x06cd36da pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x06d00193 simple_statfs +EXPORT_SYMBOL vmlinux 0x06db3351 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x06e6de8f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x06f68fba blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x07227984 netlink_set_err +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x073abf71 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0741e415 generic_perform_write +EXPORT_SYMBOL vmlinux 0x07683c78 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x0782fab1 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x07a38cda page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c22b1a sk_free +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d1cab3 tty_port_init +EXPORT_SYMBOL vmlinux 0x07dd502a s390_arch_random_generate +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f971c4 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x07fee962 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0803e803 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x081fff3f param_ops_ulong +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08456553 match_string +EXPORT_SYMBOL vmlinux 0x086ec40c sk_alloc +EXPORT_SYMBOL vmlinux 0x087644a3 ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0884e398 seq_open_private +EXPORT_SYMBOL vmlinux 0x08865eda cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x08beaf97 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x08dae691 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x08fe251a dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x0928c9a2 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x0929fd2d unix_get_socket +EXPORT_SYMBOL vmlinux 0x0946e0be bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0x095e30d2 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0995dfc8 make_bad_inode +EXPORT_SYMBOL vmlinux 0x09a639b9 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x09bf6fbe ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x09c86c1b sg_miter_start +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09eada1b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x09eb392c msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x09f03643 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x0a156fe8 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x0a15fa98 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0a16a5fe __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a1e9bee security_binder_transaction +EXPORT_SYMBOL vmlinux 0x0a2a0bce nla_append +EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user +EXPORT_SYMBOL vmlinux 0x0a43af63 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x0a5bbf89 seq_printf +EXPORT_SYMBOL vmlinux 0x0a5c495c pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x0a5fa86f deactivate_super +EXPORT_SYMBOL vmlinux 0x0a60c20a devm_of_iomap +EXPORT_SYMBOL vmlinux 0x0a671e92 dev_uc_add +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a781cee configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x0aa0fe99 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ab6ca90 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x0abae0dd locks_init_lock +EXPORT_SYMBOL vmlinux 0x0abeee60 blkdev_put +EXPORT_SYMBOL vmlinux 0x0ad39727 thaw_bdev +EXPORT_SYMBOL vmlinux 0x0ad6e0e2 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0ade55fa key_move +EXPORT_SYMBOL vmlinux 0x0ae60c27 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0aeee8d5 param_get_charp +EXPORT_SYMBOL vmlinux 0x0aef250f open_with_fake_path +EXPORT_SYMBOL vmlinux 0x0af66995 start_tty +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1e9ec0 pci_get_device +EXPORT_SYMBOL vmlinux 0x0b2cb334 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x0b315d48 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x0b43a1c9 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x0b57da95 netdev_change_features +EXPORT_SYMBOL vmlinux 0x0b73c221 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b75ca4d tcp_filter +EXPORT_SYMBOL vmlinux 0x0b87ca8a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bbe7946 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcf52dd d_move +EXPORT_SYMBOL vmlinux 0x0bd35f08 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x0bdb9d35 scsi_print_command +EXPORT_SYMBOL vmlinux 0x0beaff52 inet_offloads +EXPORT_SYMBOL vmlinux 0x0bf1b574 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x0c04b184 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2a6768 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert +EXPORT_SYMBOL vmlinux 0x0c33589b __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x0c42fe12 mount_single +EXPORT_SYMBOL vmlinux 0x0c631bf7 netif_skb_features +EXPORT_SYMBOL vmlinux 0x0c6b0374 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp +EXPORT_SYMBOL vmlinux 0x0c71da07 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c830bea bio_reset +EXPORT_SYMBOL vmlinux 0x0c884134 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit +EXPORT_SYMBOL vmlinux 0x0caf7af3 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x0cc839f6 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x0ccecbcf get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0cd3f245 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x0cd4e2cc lookup_one_len +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0ce19729 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0cf5e094 may_umount_tree +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d335434 pci_match_id +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d760c48 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x0de261d6 seq_path +EXPORT_SYMBOL vmlinux 0x0de3481d dev_printk_emit +EXPORT_SYMBOL vmlinux 0x0dfff410 mmput_async +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1ecfb7 unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x0e644da1 pipe_lock +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0eae7e30 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ece9042 filemap_flush +EXPORT_SYMBOL vmlinux 0x0ed98eaf netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free +EXPORT_SYMBOL vmlinux 0x0efec5df sync_blockdev +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f143bcb ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8a4c3d xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x0f8e2e5c security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x0f8ee51e ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe4db22 input_register_device +EXPORT_SYMBOL vmlinux 0x0fe9e0f4 inet_protos +EXPORT_SYMBOL vmlinux 0x0ff363ee xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x0ffa2362 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100137e9 xp_dma_map +EXPORT_SYMBOL vmlinux 0x100d78ca fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x10112f05 ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x10199a96 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103bafd6 down_read +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x1050a068 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x10584757 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1092f525 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x109c0fe2 pin_user_pages +EXPORT_SYMBOL vmlinux 0x10ba2360 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x10bc851c ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x10c2974e tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f7027f param_ops_ullong +EXPORT_SYMBOL vmlinux 0x10f99cab kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x11015af3 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x11375219 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117cf8e6 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x11808d8f __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x1189dca2 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1196183c bio_split +EXPORT_SYMBOL vmlinux 0x119fd970 consume_skb +EXPORT_SYMBOL vmlinux 0x11a7538b path_get +EXPORT_SYMBOL vmlinux 0x11b141d8 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x11cb778e __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x11d185b0 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d51269 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x11db64cd generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail +EXPORT_SYMBOL vmlinux 0x11f41c80 param_get_ulong +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x121056d0 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x123e3e14 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x1251e335 __napi_schedule +EXPORT_SYMBOL vmlinux 0x125f3ce2 scsi_add_device +EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock +EXPORT_SYMBOL vmlinux 0x1269c14d con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x1281caca irq_set_chip +EXPORT_SYMBOL vmlinux 0x128594b9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x128bcdc0 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b0509d follow_pfn +EXPORT_SYMBOL vmlinux 0x12bc6972 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x12c1a9d8 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1313b1bd pskb_expand_head +EXPORT_SYMBOL vmlinux 0x131ee803 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x1321d6a6 param_ops_uint +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x136f17a9 module_put +EXPORT_SYMBOL vmlinux 0x138bac80 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x13b7b776 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x13c754cb pcim_enable_device +EXPORT_SYMBOL vmlinux 0x13c89ef4 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d2b7e8 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13d929a0 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x13e06300 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x13ef94fd netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x13fe838e get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x14119195 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x142b4370 simple_unlink +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x145542f1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14867ed0 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x148974df configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x148efcc1 import_iovec +EXPORT_SYMBOL vmlinux 0x149ba717 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x149dbae7 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x14a737c3 md_error +EXPORT_SYMBOL vmlinux 0x14c1bd57 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14e950e4 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x14f2a650 param_get_ullong +EXPORT_SYMBOL vmlinux 0x150983e1 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x1549467e dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x158b09eb cdrom_open +EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c7fd52 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock +EXPORT_SYMBOL vmlinux 0x15f8d0a3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x1606d74e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x1627cd29 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16320cb4 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163391ca config_group_init +EXPORT_SYMBOL vmlinux 0x165b0110 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible +EXPORT_SYMBOL vmlinux 0x1668ac33 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x166c2c15 input_free_device +EXPORT_SYMBOL vmlinux 0x167eb487 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x16ad9eab ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x16b94aab __sock_create +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1703ae9f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x1756f73d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x176302cc watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x1798f474 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x17a0e4d3 is_subdir +EXPORT_SYMBOL vmlinux 0x17a6b561 _dev_crit +EXPORT_SYMBOL vmlinux 0x17a7cc11 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x17aa0bfe tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x17bf18fb flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x17e6dd07 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x17f02426 get_tree_single +EXPORT_SYMBOL vmlinux 0x18134b03 from_kuid +EXPORT_SYMBOL vmlinux 0x1820d5e3 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x185f758c rt6_lookup +EXPORT_SYMBOL vmlinux 0x1860edd5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x18706e53 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18a13d84 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x18b7b5df devm_register_netdev +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18baff89 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f8f787 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x18fc52b6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1917c5bd iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x191ee98c jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x192ae20d readahead_expand +EXPORT_SYMBOL vmlinux 0x192b7851 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x192d97bb pci_irq_vector +EXPORT_SYMBOL vmlinux 0x194b4a58 skb_store_bits +EXPORT_SYMBOL vmlinux 0x194cb1af get_tree_keyed +EXPORT_SYMBOL vmlinux 0x194d2407 dst_discard_out +EXPORT_SYMBOL vmlinux 0x19540d77 audit_log_start +EXPORT_SYMBOL vmlinux 0x196de18f seq_vprintf +EXPORT_SYMBOL vmlinux 0x197ef6d9 dns_query +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199489ab pgste_perform_essa +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b0b4e6 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x19b5dbba follow_down +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bff1be __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x19d489d3 sock_i_uid +EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START +EXPORT_SYMBOL vmlinux 0x1a10668d input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x1a2c84da sock_wfree +EXPORT_SYMBOL vmlinux 0x1a3504c6 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x1a467179 kbd_keycode +EXPORT_SYMBOL vmlinux 0x1a46ee0d vif_device_init +EXPORT_SYMBOL vmlinux 0x1a4d5eca pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x1a6411b0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x1a86c904 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1a98a62b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x1ac2ac85 register_netdev +EXPORT_SYMBOL vmlinux 0x1acb9dc1 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x1ae0af5a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b38e3f9 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x1b3aab4f param_get_int +EXPORT_SYMBOL vmlinux 0x1b4da5f1 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x1b53a286 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x1b573b94 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b78de1e flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x1b9488cc input_flush_device +EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb954dc redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x1bbc9a98 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1c154243 init_special_inode +EXPORT_SYMBOL vmlinux 0x1c212cc6 generic_permission +EXPORT_SYMBOL vmlinux 0x1c2eff98 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1c4fff16 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x1c577124 dquot_operations +EXPORT_SYMBOL vmlinux 0x1c5cb902 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt +EXPORT_SYMBOL vmlinux 0x1c66af2f __quota_error +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c8e65cb vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x1c913831 skb_find_text +EXPORT_SYMBOL vmlinux 0x1c917f47 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x1ca9e7ba pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x1cacdc8d pci_disable_device +EXPORT_SYMBOL vmlinux 0x1cbfb123 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1d053e90 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x1d0887b6 pci_iounmap +EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d650713 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x1d6a2cf2 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x1d8bb129 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x1da523c0 xp_free +EXPORT_SYMBOL vmlinux 0x1da9833e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x1dad0bdb proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc +EXPORT_SYMBOL vmlinux 0x1dbc6bad __register_chrdev +EXPORT_SYMBOL vmlinux 0x1dc0c250 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc8303b ping_prot +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddd643c flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x1ddfe03b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1e07d0a3 iget_locked +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e151ee8 begin_new_exec +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e3ab6cd __pagevec_release +EXPORT_SYMBOL vmlinux 0x1e41614f jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x1e45b7ec unlock_new_inode +EXPORT_SYMBOL vmlinux 0x1e516bac skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea092ac prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x1ead608e xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x1ebb739e ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x1ec7f394 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x1ecb17a3 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x1ecd89ec pci_choose_state +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef0dfe9 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x1efba5b8 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x1f002062 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1f0d2713 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x1f19465e inet_frag_find +EXPORT_SYMBOL vmlinux 0x1f1f15d7 single_release +EXPORT_SYMBOL vmlinux 0x1f23e247 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1f25b414 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x1f3f4917 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x1f4ea68c cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x1f4eb4ad dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1f5744d3 __frontswap_store +EXPORT_SYMBOL vmlinux 0x1f6aa322 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x1f6b458d dev_alloc_name +EXPORT_SYMBOL vmlinux 0x1f945553 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize +EXPORT_SYMBOL vmlinux 0x1fad6c37 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x1fd189ff blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 +EXPORT_SYMBOL vmlinux 0x1ff6dbca security_path_mknod +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2020d5d8 sock_create_lite +EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait +EXPORT_SYMBOL vmlinux 0x2077b473 __register_nls +EXPORT_SYMBOL vmlinux 0x208d150a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c587cc utf8nagemin +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x20efd40f tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x2100c443 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210dac42 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x21324d4e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x21552c77 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x2156eb11 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x218ca0a2 security_sk_clone +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219ecedb ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x219fcbf7 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x21bb3ad1 cdev_device_del +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d573c0 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21eb6b85 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure +EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x221843c0 sget +EXPORT_SYMBOL vmlinux 0x22260575 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224da4fd kthread_bind +EXPORT_SYMBOL vmlinux 0x22534308 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x22574d99 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x229f8cdb __kfree_skb +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bf38fb __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x22cb3831 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x22d33eb4 __bforget +EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init +EXPORT_SYMBOL vmlinux 0x23117609 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x23170802 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x234d19ad dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x23592cea filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x236dfb0a pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x239c6969 ip_frag_init +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cd3326 elevator_alloc +EXPORT_SYMBOL vmlinux 0x23ee13fd mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2416426e simple_open +EXPORT_SYMBOL vmlinux 0x241bec2f dev_addr_flush +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x242fcdbc security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x244de60a inet_add_offload +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x247161b3 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x2474ab42 md_reload_sb +EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x24840600 ether_setup +EXPORT_SYMBOL vmlinux 0x248be52a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x249c81cf bio_copy_data +EXPORT_SYMBOL vmlinux 0x24b28cee alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x24b78f1b xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock +EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0x24c4d57e csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x24d1daae security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24f36b08 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x24f612e6 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x25099ef9 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x252a6a6b tty_port_open +EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x2530d5cf neigh_event_ns +EXPORT_SYMBOL vmlinux 0x25433349 noop_llseek +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x25697ba1 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x25744ba5 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258ce07e fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25941f7a tty_name +EXPORT_SYMBOL vmlinux 0x25949370 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x25983044 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x259cc500 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x25d2aae4 sync_filesystem +EXPORT_SYMBOL vmlinux 0x25d6fad3 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x25ecf2fe md_cluster_ops +EXPORT_SYMBOL vmlinux 0x25f3b23f param_ops_invbool +EXPORT_SYMBOL vmlinux 0x25f3d172 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x26076137 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x2622eb3b simple_dir_operations +EXPORT_SYMBOL vmlinux 0x26276528 dev_mc_add +EXPORT_SYMBOL vmlinux 0x2628cc2e skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x2639c11d elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 +EXPORT_SYMBOL vmlinux 0x2642b45d netif_carrier_off +EXPORT_SYMBOL vmlinux 0x265e68f6 iunique +EXPORT_SYMBOL vmlinux 0x2664f031 d_splice_alias +EXPORT_SYMBOL vmlinux 0x26732ba2 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x2696ab13 vlan_for_each +EXPORT_SYMBOL vmlinux 0x2697058c mount_bdev +EXPORT_SYMBOL vmlinux 0x26a0f08a ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure +EXPORT_SYMBOL vmlinux 0x26adea30 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x26ba2d03 free_task +EXPORT_SYMBOL vmlinux 0x26cacdb4 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x26ddc496 d_alloc +EXPORT_SYMBOL vmlinux 0x26df2867 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f2a3dd kill_block_super +EXPORT_SYMBOL vmlinux 0x27093e38 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2738b717 pci_iomap +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275026e9 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x2759f2bf radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x275a848b free_netdev +EXPORT_SYMBOL vmlinux 0x275b045f scsi_host_put +EXPORT_SYMBOL vmlinux 0x275c24a7 kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2760392b blk_queue_split +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277d4035 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x2784a4c9 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27a12cb2 __page_symlink +EXPORT_SYMBOL vmlinux 0x27a1d5d1 netdev_notice +EXPORT_SYMBOL vmlinux 0x27a205c0 vc_resize +EXPORT_SYMBOL vmlinux 0x27a8f51b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x27a90298 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x27b5b63a __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27de0769 xfrm_input +EXPORT_SYMBOL vmlinux 0x27e54b0f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x27f58d53 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x27f99d8b ip_options_compile +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283fc9a8 security_path_rename +EXPORT_SYMBOL vmlinux 0x285106e4 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x2856079f task_work_add +EXPORT_SYMBOL vmlinux 0x285f5afc udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan +EXPORT_SYMBOL vmlinux 0x286b1da8 __breadahead +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287804b9 fb_find_mode +EXPORT_SYMBOL vmlinux 0x2883eb8c submit_bio +EXPORT_SYMBOL vmlinux 0x28ae7b8d __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x28f76b57 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x290ae63b scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x290bf84a complete_and_exit +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296d2d32 fb_blank +EXPORT_SYMBOL vmlinux 0x296e9d1e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x29742b9c debug_register_view +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x297feba5 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x29a7965a blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x29d2b42d xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x2a1941be locks_free_lock +EXPORT_SYMBOL vmlinux 0x2a2cf961 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init +EXPORT_SYMBOL vmlinux 0x2a631b41 dm_table_event +EXPORT_SYMBOL vmlinux 0x2a70a843 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end +EXPORT_SYMBOL vmlinux 0x2a916891 debug_exception_common +EXPORT_SYMBOL vmlinux 0x2a9d461f __put_page +EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x2aba8be3 ccw_device_halt +EXPORT_SYMBOL vmlinux 0x2ac024b6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x2ad3d9a6 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x2ae7f253 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x2aeeea92 d_set_d_op +EXPORT_SYMBOL vmlinux 0x2af3f454 ssch +EXPORT_SYMBOL vmlinux 0x2b12a821 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x2b3ec6e4 dev_deactivate +EXPORT_SYMBOL vmlinux 0x2b495627 seq_dentry +EXPORT_SYMBOL vmlinux 0x2b4c340b xfrm_state_add +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb373b0 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x2bbc7620 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2bc21233 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x2bcae1b2 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x2be3de26 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x2be55cd7 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x2bec2579 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x2bf38dff inet_shutdown +EXPORT_SYMBOL vmlinux 0x2c001871 __skb_pad +EXPORT_SYMBOL vmlinux 0x2c030a39 migrate_page +EXPORT_SYMBOL vmlinux 0x2c0f3b57 pci_request_region +EXPORT_SYMBOL vmlinux 0x2c183f81 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x2c252b48 ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c46a01b eth_header_parse +EXPORT_SYMBOL vmlinux 0x2c4b634c single_open +EXPORT_SYMBOL vmlinux 0x2c535c07 elv_rb_find +EXPORT_SYMBOL vmlinux 0x2c99a2fe bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x2cb673e2 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x2cb75ff1 __tracepoint_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x2ccb01d2 input_event +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2ccd61ec blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x2cd2eb7b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x2cdf85d6 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x2d0f9024 textsearch_register +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d276715 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d4f36a8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x2d59bfc7 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x2d7447eb scsi_block_requests +EXPORT_SYMBOL vmlinux 0x2d754da3 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x2d83aa1e inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da894c6 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x2dadef5f unix_detach_fds +EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2ded6813 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x2e0031a9 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x2e036eaf skb_eth_pop +EXPORT_SYMBOL vmlinux 0x2e1f9797 udp_poll +EXPORT_SYMBOL vmlinux 0x2e28fe15 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x2e43967c close_fd_get_file +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e7a5a63 dquot_release +EXPORT_SYMBOL vmlinux 0x2e89f335 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2ea36b78 security_sb_remount +EXPORT_SYMBOL vmlinux 0x2ea81fc3 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x2eb251d1 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x2ec4191d tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x2ec5765e pci_set_mwi +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2edcab17 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef8a0a8 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0c95d2 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x2f1b438c kbd_ioctl +EXPORT_SYMBOL vmlinux 0x2f23747b sget_fc +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f54ce6b register_netdevice +EXPORT_SYMBOL vmlinux 0x2f662fdb jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x2f67c902 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f825f2d generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x2fa0470c param_set_copystring +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe48402 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x2ffc9f80 ethtool_notify +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x30140397 __put_user_ns +EXPORT_SYMBOL vmlinux 0x301887d0 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x3018b6ac freeze_super +EXPORT_SYMBOL vmlinux 0x301a6b59 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x303910c2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x3040947e eth_get_headlen +EXPORT_SYMBOL vmlinux 0x304f3211 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x3058fdd5 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x307e6478 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x3080429c __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x3088254a km_new_mapping +EXPORT_SYMBOL vmlinux 0x30913d5a ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a78113 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30bf8475 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x30c51824 padata_free +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30edaa04 ptep_xchg_lazy +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3120d254 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x3122b8d7 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3138960c ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x3153408c flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x3156ff32 del_gendisk +EXPORT_SYMBOL vmlinux 0x316d0aa8 kernel_accept +EXPORT_SYMBOL vmlinux 0x317c7d24 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x3185efb5 send_sig_info +EXPORT_SYMBOL vmlinux 0x318f1efe security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x31a39f86 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x31aff59d __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x31b2e7a8 km_report +EXPORT_SYMBOL vmlinux 0x31b7b500 simple_empty +EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update +EXPORT_SYMBOL vmlinux 0x31f0516f finalize_exec +EXPORT_SYMBOL vmlinux 0x32153554 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x3217b5ea setattr_prepare +EXPORT_SYMBOL vmlinux 0x32275413 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x32277220 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x322d4cff security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x323ccbdc block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x324d180a dev_addr_add +EXPORT_SYMBOL vmlinux 0x32613a09 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit +EXPORT_SYMBOL vmlinux 0x327593d9 vm_map_ram +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3283f82a vfs_llseek +EXPORT_SYMBOL vmlinux 0x3286bd95 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x3294939e qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x32b0dd69 lookup_one +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32dc300c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x32de7ff1 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x32e3c8e9 param_set_charp +EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x33246f08 iterate_fd +EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table +EXPORT_SYMBOL vmlinux 0x336eb503 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x337583f1 __d_drop +EXPORT_SYMBOL vmlinux 0x33883b07 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x3389f8ed file_modified +EXPORT_SYMBOL vmlinux 0x339f727d tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x33a0acdf netif_device_detach +EXPORT_SYMBOL vmlinux 0x33a38514 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x33a9265a simple_transaction_release +EXPORT_SYMBOL vmlinux 0x33e0b32d tcp_poll +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x33f84531 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x3416ed42 stream_open +EXPORT_SYMBOL vmlinux 0x3467efa5 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a35fc7 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x34aed042 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x34b0132b jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x34c60aad ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x34c6878a netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34e8a309 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x34eb3d6d zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f7a136 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3513d0f3 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3525c6da vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x352a1f4f neigh_lookup +EXPORT_SYMBOL vmlinux 0x356a6fe6 bdi_put +EXPORT_SYMBOL vmlinux 0x3576ea2a pipe_unlock +EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ce9da6 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x35d01aa0 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x35da72e8 __irq_regs +EXPORT_SYMBOL vmlinux 0x35e0f767 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x35f3aaaf vm_mmap +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x362beefb sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x362cad8b filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x3632a052 km_policy_expired +EXPORT_SYMBOL vmlinux 0x363a2a84 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x364f2add __break_lease +EXPORT_SYMBOL vmlinux 0x365985eb fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3663d824 param_get_short +EXPORT_SYMBOL vmlinux 0x367ac1c1 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x367b4f43 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x36a20d1c inet_stream_ops +EXPORT_SYMBOL vmlinux 0x36a59521 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x36c0cb3f blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x36ca096d dquot_file_open +EXPORT_SYMBOL vmlinux 0x36cac857 sock_i_ino +EXPORT_SYMBOL vmlinux 0x36cc8e7d xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x36e27e49 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x36ebace7 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x36ef0bb0 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x371d4b7a tty_devnum +EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable +EXPORT_SYMBOL vmlinux 0x373d9921 ipv4_specific +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374d0b58 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x37889cb2 __bread_gfp +EXPORT_SYMBOL vmlinux 0x378e7d58 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x37a144cd kobject_put +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d4abb7 skb_tx_error +EXPORT_SYMBOL vmlinux 0x37de30f9 inet_accept +EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381b6527 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x3842b80b tcf_register_action +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x387fdfc1 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389c0175 release_sock +EXPORT_SYMBOL vmlinux 0x38a52db1 dma_fence_init +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38e1dd79 dma_map_resource +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38fa1627 dump_align +EXPORT_SYMBOL vmlinux 0x3908b34f pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x39097ed2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x3934f159 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394b5e9f md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x395000e6 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x395c7f79 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x396d364d netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c29f73 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x39c60ac5 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x39e41e2c xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x39ecf1f4 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x3a06f99c udp_read_sock +EXPORT_SYMBOL vmlinux 0x3a1230bf inode_insert5 +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a3d1688 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x3a4f6eef pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a553d1b param_ops_long +EXPORT_SYMBOL vmlinux 0x3a670394 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x3a6fcb76 pskb_extract +EXPORT_SYMBOL vmlinux 0x3a71023a kill_anon_super +EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x3a995aa2 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x3aa2f6b9 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3aaad9da clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3ad25543 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x3adc2e2f __destroy_inode +EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3b2f0b6f vfs_iter_read +EXPORT_SYMBOL vmlinux 0x3b325def scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3b36daf6 dev_load +EXPORT_SYMBOL vmlinux 0x3b37dfea jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x3b4e8ea3 ccw_driver_register +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6e9e9f skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3b704915 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x3b744254 ilookup +EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le +EXPORT_SYMBOL vmlinux 0x3ba9ee88 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x3bc5d96a dquot_commit +EXPORT_SYMBOL vmlinux 0x3bd7fc74 seq_write +EXPORT_SYMBOL vmlinux 0x3be6a57a inet_frag_kill +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf4f1b0 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x3bfd2e07 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3939f0 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c51430f md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3c8137e8 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x3c9726f7 _dev_warn +EXPORT_SYMBOL vmlinux 0x3c9fffe4 get_acl +EXPORT_SYMBOL vmlinux 0x3cc29027 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3cc462f8 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x3ce23ec5 skb_dump +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d0d4b9c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d1b7f27 udp_disconnect +EXPORT_SYMBOL vmlinux 0x3d27d76d blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x3d2e0e70 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d68dbe8 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name +EXPORT_SYMBOL vmlinux 0x3d878863 seq_read +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db3b5a6 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3dc8edde qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x3dc96690 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df0ea43 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0372d8 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3e1c0252 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x3e1eb5fc read_cache_pages +EXPORT_SYMBOL vmlinux 0x3e2b5979 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x3e329efd xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x3e34dc10 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4a2945 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x3e572682 __wake_up +EXPORT_SYMBOL vmlinux 0x3e636f76 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3e78ce8c inode_dio_wait +EXPORT_SYMBOL vmlinux 0x3e805431 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x3eb94250 itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x3ebe57b3 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3eca5ad0 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x3eed71da insert_inode_locked +EXPORT_SYMBOL vmlinux 0x3f0c7df4 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x3f1db6ea __find_get_block +EXPORT_SYMBOL vmlinux 0x3f2527b5 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x3f321494 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3f34fad9 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x3f35b1d9 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x3f39c0b1 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x3f3ced82 blk_rq_init +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f499018 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x3f4db993 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x3f679a7c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3f75ad91 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x3f7dc1ea netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x3f810a8a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x3f83f3ed pci_iomap_range +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8a280a unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x3fa3bc1a devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fadb213 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x3fb35717 dev_uc_init +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdd0762 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x3fe60225 elv_rb_add +EXPORT_SYMBOL vmlinux 0x3ff40c38 pci_iomap_wc +EXPORT_SYMBOL vmlinux 0x3ff41cd8 mpage_readahead +EXPORT_SYMBOL vmlinux 0x40027f96 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x400f3776 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x4012cd44 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x40237ad3 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 +EXPORT_SYMBOL vmlinux 0x402f0703 tty_do_resize +EXPORT_SYMBOL vmlinux 0x4077f95a __neigh_create +EXPORT_SYMBOL vmlinux 0x408359af blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x40869046 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x40928725 _dev_printk +EXPORT_SYMBOL vmlinux 0x40950e00 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40af6321 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x40b566f8 xp_alloc +EXPORT_SYMBOL vmlinux 0x40c2992a __brelse +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e6763c __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4103a5ba dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x410cb502 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x411ff64c blk_get_queue +EXPORT_SYMBOL vmlinux 0x4120660c ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x41296ee1 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41329c1c neigh_xmit +EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest +EXPORT_SYMBOL vmlinux 0x41533160 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x41678c13 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x416c9384 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x4184650c touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4189f340 tcp_close +EXPORT_SYMBOL vmlinux 0x41a25ec4 dev_set_alias +EXPORT_SYMBOL vmlinux 0x41cda552 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x41effefe remap_pfn_range +EXPORT_SYMBOL vmlinux 0x41f1fa8b configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x41f8630c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4218be6a napi_build_skb +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423afff1 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x4246fab4 iput +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x426c5efa jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x427371d7 make_kgid +EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after +EXPORT_SYMBOL vmlinux 0x42a90e6a fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find +EXPORT_SYMBOL vmlinux 0x42ce07c0 read_cache_page +EXPORT_SYMBOL vmlinux 0x42e75056 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x42e96792 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x42ec840d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fc23ac prepare_creds +EXPORT_SYMBOL vmlinux 0x4302bee7 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x433af9b5 put_watch_queue +EXPORT_SYMBOL vmlinux 0x43506366 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4352685c __lock_buffer +EXPORT_SYMBOL vmlinux 0x436c34ba debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x43737fd1 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x437724a2 set_bh_page +EXPORT_SYMBOL vmlinux 0x43788330 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43852a6a input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43afc091 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x43bd09a2 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43cbc593 iget5_locked +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43df788a unregister_qdisc +EXPORT_SYMBOL vmlinux 0x43e17a79 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x43fb1dcc fc_mount +EXPORT_SYMBOL vmlinux 0x43fc4d9c dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x44018b20 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x4401a32b find_inode_nowait +EXPORT_SYMBOL vmlinux 0x4404bf2c mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x4406de17 __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x4425d6ed netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4462c0eb call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b30fb5 csch +EXPORT_SYMBOL vmlinux 0x44b4b445 d_add +EXPORT_SYMBOL vmlinux 0x44ceae62 debug_register_mode +EXPORT_SYMBOL vmlinux 0x44e6b30d pci_disable_msi +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x44ee6f6a irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x44fcd113 inet_ioctl +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4508d61a sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x45147f2d pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4535ccfe pci_clear_master +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454b7a7d genl_unregister_family +EXPORT_SYMBOL vmlinux 0x456a94ed __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459f1700 ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0x45b53cd8 class3270 +EXPORT_SYMBOL vmlinux 0x45b5a60e pci_reenable_device +EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait +EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x45f17fb6 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x45fdb146 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x460d4468 seq_file_path +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4635d9d2 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x46440ccc ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x46511a69 init_pseudo +EXPORT_SYMBOL vmlinux 0x46543c88 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x46594815 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x46695d62 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x4669c935 param_get_long +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467f16db tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data +EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x46eae281 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x46fb6b1d tty_write_room +EXPORT_SYMBOL vmlinux 0x472563f2 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy +EXPORT_SYMBOL vmlinux 0x4742f5c5 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x475a1522 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477abf71 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create +EXPORT_SYMBOL vmlinux 0x47a0530b __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x47a0cdcb mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47dec4d3 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x47e5767d md_finish_reshape +EXPORT_SYMBOL vmlinux 0x47e8620c fb_set_suspend +EXPORT_SYMBOL vmlinux 0x47eb8034 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x47ed8452 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x47fae738 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x48095a3d scsi_device_resume +EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4832a2ba sock_edemux +EXPORT_SYMBOL vmlinux 0x483c07ab xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4847206a pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x484b28c4 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x484fc1cb dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x48826de0 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x48949967 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x4898e9dd __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48add267 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x48cc86bd vm_insert_page +EXPORT_SYMBOL vmlinux 0x48dcea8a rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x48e109bb xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock +EXPORT_SYMBOL vmlinux 0x49237d4d ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0x492fd89a redraw_screen +EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x49339bdc ram_aops +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x4963b4cb ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x49672828 node_states +EXPORT_SYMBOL vmlinux 0x496b6c5c eth_mac_addr +EXPORT_SYMBOL vmlinux 0x499557d3 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x49a00beb page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x49a865f0 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x49b57be7 mount_subtree +EXPORT_SYMBOL vmlinux 0x49bcaa10 inet6_protos +EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x49d555f4 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x49dbe57d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x49e215b0 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x49e65615 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x49ea0776 generic_write_end +EXPORT_SYMBOL vmlinux 0x49f3ac0c tcp_child_process +EXPORT_SYMBOL vmlinux 0x49f47f52 inet_frags_init +EXPORT_SYMBOL vmlinux 0x4a160270 page_pool_create +EXPORT_SYMBOL vmlinux 0x4a2559fd audit_log +EXPORT_SYMBOL vmlinux 0x4a44b1a5 ll_rw_block +EXPORT_SYMBOL vmlinux 0x4a4c46ec neigh_direct_output +EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all +EXPORT_SYMBOL vmlinux 0x4a58f5f3 blk_put_request +EXPORT_SYMBOL vmlinux 0x4a61b6ed vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x4a8672de key_task_permission +EXPORT_SYMBOL vmlinux 0x4a8a6949 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x4a8b71d4 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9cd80c proc_mkdir +EXPORT_SYMBOL vmlinux 0x4aa62978 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x4ac2a1a4 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x4adb5cfa sock_kfree_s +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b058663 param_set_invbool +EXPORT_SYMBOL vmlinux 0x4b081d00 cred_fscmp +EXPORT_SYMBOL vmlinux 0x4b08976a nf_setsockopt +EXPORT_SYMBOL vmlinux 0x4b1d8cf7 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x4b1f0234 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x4b34805f km_query +EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose +EXPORT_SYMBOL vmlinux 0x4b3ad949 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b68b351 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x4bb07658 bio_endio +EXPORT_SYMBOL vmlinux 0x4bcbb3f6 poll_freewait +EXPORT_SYMBOL vmlinux 0x4bda367b _copy_to_iter +EXPORT_SYMBOL vmlinux 0x4be379e6 inet_release +EXPORT_SYMBOL vmlinux 0x4c1bd131 reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0x4c29a332 pci_iomap_wc_range +EXPORT_SYMBOL vmlinux 0x4c34a18d neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x4c35bd91 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4b782a default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c55b327 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x4c662495 seq_bprintf +EXPORT_SYMBOL vmlinux 0x4c6b4a17 path_put +EXPORT_SYMBOL vmlinux 0x4c884f3e eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x4c8c2599 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4ca9c472 unregister_nls +EXPORT_SYMBOL vmlinux 0x4caf6221 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x4cb81e77 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x4cba9bea fsync_bdev +EXPORT_SYMBOL vmlinux 0x4cc20a6b tcf_em_register +EXPORT_SYMBOL vmlinux 0x4cded98a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x4cf853af sk_net_capable +EXPORT_SYMBOL vmlinux 0x4cfa8770 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x4d10ff6b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x4d312a65 seg6_hmac_net_init +EXPORT_SYMBOL vmlinux 0x4d34c8f7 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x4d363d78 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x4d44e3be pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x4d66ec18 bio_free_pages +EXPORT_SYMBOL vmlinux 0x4d6c1f87 unregister_console +EXPORT_SYMBOL vmlinux 0x4d75b405 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db953aa nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x4dca3fb4 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df9c5b8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x4e1c85d2 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x4e23d57e uv_info +EXPORT_SYMBOL vmlinux 0x4e33a656 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3e1810 sock_efree +EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer +EXPORT_SYMBOL vmlinux 0x4e4b6320 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6d0a32 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7aeeb8 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write +EXPORT_SYMBOL vmlinux 0x4ea54068 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec0ba37 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecc3b81 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x4ee1cf0a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x4f05a150 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x4f0e3804 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x4f0eeed3 bio_init +EXPORT_SYMBOL vmlinux 0x4f172e57 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f27c508 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f3417a6 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x4f3c4819 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x4f4101d1 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x4f4799df vfs_fsync +EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x4f5f2177 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x4f62ca44 has_capability +EXPORT_SYMBOL vmlinux 0x4f8a6ac9 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x4f911d11 ap_flush_queue +EXPORT_SYMBOL vmlinux 0x4fa8bb40 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x4fdf9b2c ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x4fec55c1 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x4fefacef fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x50110d76 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x501fc4bc pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x5022e9ec __register_binfmt +EXPORT_SYMBOL vmlinux 0x5029468f vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x503626e2 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506586d5 blk_put_queue +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50af415a dump_skip_to +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x50edfeb4 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x50ef5c43 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x5101a16d blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x512a3a73 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x512afb54 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x512e55ca pci_scan_bus +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x51512005 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5179ed5e __fs_parse +EXPORT_SYMBOL vmlinux 0x518357e2 pci_find_bus +EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 +EXPORT_SYMBOL vmlinux 0x51c1eda2 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x51cc6c4b ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x51efae09 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x51f1d44b nf_log_set +EXPORT_SYMBOL vmlinux 0x51f85654 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x5210bc10 nf_reinject +EXPORT_SYMBOL vmlinux 0x52185192 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x522d49a8 config_item_set_name +EXPORT_SYMBOL vmlinux 0x5231c43f ip6_frag_next +EXPORT_SYMBOL vmlinux 0x527e6ff4 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x527ec9a6 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert +EXPORT_SYMBOL vmlinux 0x52837c95 d_delete +EXPORT_SYMBOL vmlinux 0x529655a6 tcf_classify +EXPORT_SYMBOL vmlinux 0x52ba576f dquot_alloc +EXPORT_SYMBOL vmlinux 0x52ba6325 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x52c2f2eb sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dd6597 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x52ef547e tcp_ioctl +EXPORT_SYMBOL vmlinux 0x53096cdf tty_kref_put +EXPORT_SYMBOL vmlinux 0x530f0532 touch_atime +EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53584a49 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x538c7ad4 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x53a2cb0f xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x53ad7e03 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x53bdaa19 generic_read_dir +EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked +EXPORT_SYMBOL vmlinux 0x53d056e4 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x540ec55a init_task +EXPORT_SYMBOL vmlinux 0x5411a150 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x54171d6b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x543274b8 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x5437bb23 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544204b0 dma_supported +EXPORT_SYMBOL vmlinux 0x544d5823 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x546acc85 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x546d40a4 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x5474579d vm_insert_pages +EXPORT_SYMBOL vmlinux 0x547542bb dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x54775dcb input_unregister_device +EXPORT_SYMBOL vmlinux 0x547a244d generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x5489b3ef lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc +EXPORT_SYMBOL vmlinux 0x54a3afb9 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x54a92a7f iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x54bd0c08 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x54c39c3b wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x54c81260 key_unlink +EXPORT_SYMBOL vmlinux 0x54ce1b57 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54fb0c5a dm_io +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550a4d71 unlock_rename +EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5522504c pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x55263d47 kernel_connect +EXPORT_SYMBOL vmlinux 0x552e4c7b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x553fcf17 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x554a384a __siphash_aligned +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554f08fc dst_init +EXPORT_SYMBOL vmlinux 0x554fa960 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x555ccb97 up_read +EXPORT_SYMBOL vmlinux 0x558087a6 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x558a6e79 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55951d36 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x559af941 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x559c989f config_group_find_item +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55a7e4ff __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x55c335a0 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x55d3e562 bio_chain +EXPORT_SYMBOL vmlinux 0x55d63108 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e4f409 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x55fa322e pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x560d4e91 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x562b9be5 ap_test_config_ctrl_domain +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564b809a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x56555401 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x565671df posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x5660f88f raw3270_add_view +EXPORT_SYMBOL vmlinux 0x567c4738 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56817386 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x568c8e26 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d78870 chsc +EXPORT_SYMBOL vmlinux 0x56de5ace __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x56dfc650 unregister_service_level +EXPORT_SYMBOL vmlinux 0x571333a8 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x57199d58 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x573bf429 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x57420488 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x574a1d36 proc_create +EXPORT_SYMBOL vmlinux 0x574b2d72 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57bcaff8 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but +EXPORT_SYMBOL vmlinux 0x57c69839 cont_write_begin +EXPORT_SYMBOL vmlinux 0x57ce430f ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x57e791ec pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x57efd10e skb_trim +EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one +EXPORT_SYMBOL vmlinux 0x57ff506a build_skb +EXPORT_SYMBOL vmlinux 0x58026056 dget_parent +EXPORT_SYMBOL vmlinux 0x58125fbb nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x58175838 vm_map_pages +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x583489fa xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x58407c7b tty_unthrottle +EXPORT_SYMBOL vmlinux 0x5856809f flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587d06f0 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x5887d62f xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bbd288 keyring_search +EXPORT_SYMBOL vmlinux 0x58cc7a85 __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x59090197 block_write_full_page +EXPORT_SYMBOL vmlinux 0x590f68f0 simple_release_fs +EXPORT_SYMBOL vmlinux 0x590fd139 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x592088d7 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x5938d705 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x5945b4dd kern_path_create +EXPORT_SYMBOL vmlinux 0x5976ea16 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x597dbf00 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x59824975 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table +EXPORT_SYMBOL vmlinux 0x59910202 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x59a6ba18 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer +EXPORT_SYMBOL vmlinux 0x5a1f157d keyring_alloc +EXPORT_SYMBOL vmlinux 0x5a291e4f pci_save_state +EXPORT_SYMBOL vmlinux 0x5a29c4e7 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x5a3840d3 migrate_page_states +EXPORT_SYMBOL vmlinux 0x5a3af8ba vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x5a43717a rtnl_unicast +EXPORT_SYMBOL vmlinux 0x5a49b8c3 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5be09d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a630934 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x5a6ee1bb blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x5a7982b7 kset_register +EXPORT_SYMBOL vmlinux 0x5a7f4d7c __netif_schedule +EXPORT_SYMBOL vmlinux 0x5a9edb6a tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x5aab3a20 kobject_add +EXPORT_SYMBOL vmlinux 0x5ad92b98 complete_request_key +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5afd9c76 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x5b1325e7 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3c6438 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x5b41ef9a simple_lookup +EXPORT_SYMBOL vmlinux 0x5b4a82cb jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x5b59b6a7 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load +EXPORT_SYMBOL vmlinux 0x5bd2c4a4 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdcabe7 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5beaeca2 dev_get_stats +EXPORT_SYMBOL vmlinux 0x5c13c8b7 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5c1b81d7 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x5c2d456c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x5c2f82bb input_set_abs_params +EXPORT_SYMBOL vmlinux 0x5c37216d sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4caa10 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x5c6edf98 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x5c77f1be bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5c9b3d7d pcim_iomap +EXPORT_SYMBOL vmlinux 0x5ca0bcbe copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x5caea190 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x5cb4090a raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done +EXPORT_SYMBOL vmlinux 0x5cd8c9f0 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x5ced8336 dentry_open +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfd588a __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5cfdace9 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x5d0c90f5 request_key_rcu +EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x5d243d29 netlink_unicast +EXPORT_SYMBOL vmlinux 0x5d28859e sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x5d2a2ceb devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x5d35de33 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x5d423a04 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x5d445c1b __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5af637 ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0x5d5c1257 kobject_set_name +EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad +EXPORT_SYMBOL vmlinux 0x5d957096 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x5d9785d3 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x5dd53461 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x5dd81738 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x5dde0c16 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x5de15e1f kbd_ascebc +EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5dfbf518 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x5e0356ef fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send +EXPORT_SYMBOL vmlinux 0x5e22dec4 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x5e34e1b2 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e655a43 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x5e769eb2 thaw_super +EXPORT_SYMBOL vmlinux 0x5e8462e0 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e8735b9 done_path_create +EXPORT_SYMBOL vmlinux 0x5e87a760 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x5e894ae4 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x5ea85d23 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed26d20 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee0e6ee inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x5ee16721 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x5ef2ef1b set_posix_acl +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f12e930 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x5f15a164 param_ops_short +EXPORT_SYMBOL vmlinux 0x5f1d8970 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x5f349132 seq_release_private +EXPORT_SYMBOL vmlinux 0x5f63ffa9 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5f703abf netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x5f7a1e5d unpin_user_page +EXPORT_SYMBOL vmlinux 0x5f7d1a6a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x5f965f5b regset_get_alloc +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring +EXPORT_SYMBOL vmlinux 0x5fb9397d ccw_device_resume +EXPORT_SYMBOL vmlinux 0x5fba3a14 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x5fc8b386 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fda0adb ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x5fe71f6f inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5fe84b59 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5ffedf63 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60116ced dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x601d472b pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604c4a97 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x606804dd bio_uninit +EXPORT_SYMBOL vmlinux 0x606cb092 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x608b5f89 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x6091a568 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609686de param_get_string +EXPORT_SYMBOL vmlinux 0x60986129 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609bfec9 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b5c8dd register_external_irq +EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start +EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x60d03027 vmap +EXPORT_SYMBOL vmlinux 0x60ef274e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x60f43c4a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x60fe4530 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x6108288f complete_all +EXPORT_SYMBOL vmlinux 0x611a2c26 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6135650b iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x616451f0 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x61776e51 key_validate +EXPORT_SYMBOL vmlinux 0x618818df tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x61b27b44 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bcfa32 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x61c299cb pci_get_slot +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x62046a5b netpoll_setup +EXPORT_SYMBOL vmlinux 0x6207bf3d pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6234d042 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6251f784 proc_remove +EXPORT_SYMBOL vmlinux 0x625a1c00 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6276281c scsi_device_get +EXPORT_SYMBOL vmlinux 0x6282702b bio_kmalloc +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6284b5d6 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6288ac03 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x62ba9229 md_flush_request +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62c11c74 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x62c3c776 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x62d9c766 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x62e5cc30 fb_pan_display +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x63240f77 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x63327afd netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x633b997c scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x634141ff netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x63431827 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x635a2490 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x635e017e PageMovable +EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb +EXPORT_SYMBOL vmlinux 0x637dc98d may_setattr +EXPORT_SYMBOL vmlinux 0x638ba85b pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x638bba4f blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x6390fc63 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a64df9 __SCK__tp_func_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a86a10 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x63ab4adc frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x63b7aac2 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d8e326 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63eea95b udp6_csum_init +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64188421 skb_checksum +EXPORT_SYMBOL vmlinux 0x642661d5 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6434ef79 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x6436a418 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x644b8488 security_path_unlink +EXPORT_SYMBOL vmlinux 0x6466e167 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x646e20df cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x647b295f block_read_full_page +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a93e19 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bc5d4d no_llseek +EXPORT_SYMBOL vmlinux 0x64c3fece kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x64e497ef cdev_set_parent +EXPORT_SYMBOL vmlinux 0x64ee9a0c __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x65057e2f md_check_recovery +EXPORT_SYMBOL vmlinux 0x650bac8f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x650d63b6 vfs_setpos +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x65264206 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6564f087 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659a332e tcp_init_sock +EXPORT_SYMBOL vmlinux 0x659c9d80 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a83ee9 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x65b45106 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x65dac54f filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e99275 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6609f6ed pci_release_resource +EXPORT_SYMBOL vmlinux 0x660cab70 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x6613d26b key_invalidate +EXPORT_SYMBOL vmlinux 0x6619c18c param_ops_string +EXPORT_SYMBOL vmlinux 0x662b855a neigh_for_each +EXPORT_SYMBOL vmlinux 0x665932e3 netdev_alert +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66809585 truncate_setsize +EXPORT_SYMBOL vmlinux 0x669cc3f0 dqput +EXPORT_SYMBOL vmlinux 0x66cc19ce send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x66e632fc pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x671cdaa3 path_is_under +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x672326e5 padata_do_serial +EXPORT_SYMBOL vmlinux 0x67290b88 dev_open +EXPORT_SYMBOL vmlinux 0x672aa59b ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0x672f8fd4 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6738661f security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x673eae1d __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6747b136 register_service_level +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x67533086 param_ops_bool +EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name +EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x676abdb4 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x6785687a __next_node_in +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b4d90c pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c64956 inet_del_offload +EXPORT_SYMBOL vmlinux 0x67ce597c unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x67da5c57 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x67e2a311 misc_register +EXPORT_SYMBOL vmlinux 0x67edea52 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x67f27007 sock_init_data +EXPORT_SYMBOL vmlinux 0x67faceef inet6_add_offload +EXPORT_SYMBOL vmlinux 0x680fe903 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x684b62f9 raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x686455bf generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x68645775 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x6869f59f udplite_prot +EXPORT_SYMBOL vmlinux 0x686bfc6b pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x687173de ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x687c8957 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x6883a17e reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x68a7f705 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x68d02658 single_open_size +EXPORT_SYMBOL vmlinux 0x68f00d6a wake_up_process +EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x6904db8b cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x69097457 crc32_be +EXPORT_SYMBOL vmlinux 0x690f9dfa hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x693e3216 page_mapped +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x69729762 md_integrity_register +EXPORT_SYMBOL vmlinux 0x6992daad neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x69a8c079 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x69cf77c8 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0x69da415f sk_error_report +EXPORT_SYMBOL vmlinux 0x69e4c028 bio_devname +EXPORT_SYMBOL vmlinux 0x69f4e06f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0e63ac follow_down_one +EXPORT_SYMBOL vmlinux 0x6a1dee5c ip6_frag_init +EXPORT_SYMBOL vmlinux 0x6a297c2c filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x6a501619 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x6a59fa89 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a68e134 vmemmap +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a802dc3 load_nls_default +EXPORT_SYMBOL vmlinux 0x6a816adb dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x6a87e1f5 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs +EXPORT_SYMBOL vmlinux 0x6abb7e4c tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x6ac4d866 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x6ad8495c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x6ad8c3ee tcp_req_err +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b2074f6 xattr_full_name +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b380970 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b6bc091 con_is_bound +EXPORT_SYMBOL vmlinux 0x6b707390 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x6b84663b config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8d2325 s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x6b8dc265 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x6ba5af9f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le +EXPORT_SYMBOL vmlinux 0x6bafe9e8 find_vma +EXPORT_SYMBOL vmlinux 0x6bb37deb register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x6bb3e261 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcd11ec dump_emit +EXPORT_SYMBOL vmlinux 0x6be35cd6 sk_stream_error +EXPORT_SYMBOL vmlinux 0x6be74bda super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x6c041e19 __xa_insert +EXPORT_SYMBOL vmlinux 0x6c0e423b try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6c1a6bec ip_output +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c2db0a9 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c65fc4b register_key_type +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c8b87b8 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6ca810ff setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6ccc34dd sort +EXPORT_SYMBOL vmlinux 0x6ce77a34 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc +EXPORT_SYMBOL vmlinux 0x6d0b9a19 current_time +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d43d223 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6d5f87bd security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x6d6121d7 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x6d64758d configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x6d7b750a jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d835ad7 proto_unregister +EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x6db79e70 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddc79e2 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x6ddf6fc0 block_truncate_page +EXPORT_SYMBOL vmlinux 0x6de09f93 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e0631f7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait +EXPORT_SYMBOL vmlinux 0x6e3123c5 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x6e49eb8e inet6_release +EXPORT_SYMBOL vmlinux 0x6e51000e set_binfmt +EXPORT_SYMBOL vmlinux 0x6e546835 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8f3ccd inode_set_bytes +EXPORT_SYMBOL vmlinux 0x6e947d78 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea43f40 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x6ea7f099 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ebdf6ef dev_set_threaded +EXPORT_SYMBOL vmlinux 0x6ebf2aef napi_disable +EXPORT_SYMBOL vmlinux 0x6ed0bf8a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x6ef488b6 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node +EXPORT_SYMBOL vmlinux 0x6f1661c3 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy +EXPORT_SYMBOL vmlinux 0x6f2df3ef dma_fence_signal +EXPORT_SYMBOL vmlinux 0x6f365e44 ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f689943 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x6f6c5396 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x6f781914 open_exec +EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free +EXPORT_SYMBOL vmlinux 0x6f8420a3 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f9b5f55 dqget +EXPORT_SYMBOL vmlinux 0x6fa8e908 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x6fb0466d xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6fb0ac03 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb4eeb2 file_update_time +EXPORT_SYMBOL vmlinux 0x6fc0c58d dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x6fc55897 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x6fc91559 vfs_get_link +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fde0f2c netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x6ff4923b __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70280f1d nobh_write_end +EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark +EXPORT_SYMBOL vmlinux 0x7042a4b4 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x70939941 devm_memremap +EXPORT_SYMBOL vmlinux 0x70a46db3 register_shrinker +EXPORT_SYMBOL vmlinux 0x70c18d3c flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size +EXPORT_SYMBOL vmlinux 0x710ba7aa lease_modify +EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x7129789c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x71483a7b simple_link +EXPORT_SYMBOL vmlinux 0x715524ac __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x71681954 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71775b46 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7194e793 make_kprojid +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71adba58 kobject_get +EXPORT_SYMBOL vmlinux 0x71b00989 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x71c05842 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x71cca363 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x71d5cc94 address_space_init_once +EXPORT_SYMBOL vmlinux 0x71e1dc7c unregister_quota_format +EXPORT_SYMBOL vmlinux 0x71f624e5 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72105293 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x72150f51 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x721512b7 get_fs_type +EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x7239ef01 page_symlink +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x724d68ff generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7262a065 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x729f6ff5 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x72a0d219 netdev_err +EXPORT_SYMBOL vmlinux 0x72a8ae73 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x72b8d4c9 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bc9902 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x72cfa9e7 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x72d75470 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x72e56dff devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0x73130e91 __icmp_send +EXPORT_SYMBOL vmlinux 0x731ff085 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x732bb62c security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73333728 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7341a5ec kthread_stop +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738461a7 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x7389706a __memset16 +EXPORT_SYMBOL vmlinux 0x7392ae29 skb_put +EXPORT_SYMBOL vmlinux 0x739a948c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a5e2da __skb_ext_del +EXPORT_SYMBOL vmlinux 0x73a927e2 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73abf8d6 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x73bba46c __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73c4c81a sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x73e7c11e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741788b1 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x7420462b filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x745c59d6 config_item_get +EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74912967 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x74df678e xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fe73f6 fd_install +EXPORT_SYMBOL vmlinux 0x74ffeb8b commit_creds +EXPORT_SYMBOL vmlinux 0x7506e65d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x750f25fa kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x754be4c1 stop_tty +EXPORT_SYMBOL vmlinux 0x755e5344 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x756b05d9 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x756eb3de inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x759376c0 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x7594f3fc param_set_bool +EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 +EXPORT_SYMBOL vmlinux 0x75a9dd90 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x75ac2b79 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d1d300 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x75d2a644 new_inode +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75f8586f sock_gettstamp +EXPORT_SYMBOL vmlinux 0x760023dc __seq_open_private +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760a3eca ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764c363c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x765c7cb3 sclp +EXPORT_SYMBOL vmlinux 0x765f40f0 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x765f7b43 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x7668d8ea softnet_data +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76739a65 regset_get +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a9c452 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x76aa0120 input_reset_device +EXPORT_SYMBOL vmlinux 0x76b07aa9 key_alloc +EXPORT_SYMBOL vmlinux 0x76be8ac2 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x76c8fe96 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x76c986e5 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x770682d1 fget_raw +EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL vmlinux 0x77256334 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x772a66e9 dev_close +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x774ade71 drop_nlink +EXPORT_SYMBOL vmlinux 0x774e640c udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x77524d9d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x7756eb2e file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x776d7af7 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x778a699d trace_event_printf +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d70441 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x77dad4fb finish_swait +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x7805d1a0 __put_cred +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780d5c8e pci_find_resource +EXPORT_SYMBOL vmlinux 0x78165637 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x781dab13 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x7846ba57 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x78494a3d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range +EXPORT_SYMBOL vmlinux 0x78617098 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7881678d unlock_buffer +EXPORT_SYMBOL vmlinux 0x7889b288 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x789af6e2 can_nice +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bdd506 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x78bf1b60 param_set_ullong +EXPORT_SYMBOL vmlinux 0x78c6b326 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x79070b68 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x79134b47 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x7934fbd9 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x794d10d1 fqdir_init +EXPORT_SYMBOL vmlinux 0x7950aeea dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked +EXPORT_SYMBOL vmlinux 0x7980098e try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x79816357 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x798a5968 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a19a3ab tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2baa4f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x7a3acbfc netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x7a44740d skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7a5d9a71 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x7a635fdc neigh_parms_release +EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register +EXPORT_SYMBOL vmlinux 0x7a85065a xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x7a881083 dm_register_target +EXPORT_SYMBOL vmlinux 0x7a8c60a2 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7acc7a53 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae9b121 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x7aebd72a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7af339b1 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x7b1609e7 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7b162b04 console_start +EXPORT_SYMBOL vmlinux 0x7b18b942 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x7b317bca flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4cc1c0 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b72791a udp6_set_csum +EXPORT_SYMBOL vmlinux 0x7b8c2352 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x7ba23022 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x7bb9eabc dec_node_page_state +EXPORT_SYMBOL vmlinux 0x7bbabc84 __hsiphash_aligned +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc103b6 skb_push +EXPORT_SYMBOL vmlinux 0x7bc5b859 bio_add_page +EXPORT_SYMBOL vmlinux 0x7bd719dd dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain +EXPORT_SYMBOL vmlinux 0x7bdf627c inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c43caeb pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7c4d7f5c end_page_writeback +EXPORT_SYMBOL vmlinux 0x7c51e1f4 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c64967b unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7c7ca829 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7c92466a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca04604 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7cad9bc0 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x7caecc82 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cbcc967 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7cc98b88 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7cd4f6ea md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cecb035 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x7cefa075 param_set_int +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d262a65 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x7d2cf5f6 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7d362066 con_is_visible +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node +EXPORT_SYMBOL vmlinux 0x7d55c9bb from_kgid +EXPORT_SYMBOL vmlinux 0x7d562298 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7d5b9b78 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x7d8f3510 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x7dae9b86 kill_litter_super +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc1c35d gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfdba04 __alloc_skb +EXPORT_SYMBOL vmlinux 0x7e03a92e skb_unlink +EXPORT_SYMBOL vmlinux 0x7e1033dc textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7e1401fb dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x7e14ce7b tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x7e20c24a dm_put_device +EXPORT_SYMBOL vmlinux 0x7e287097 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e437186 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x7e71ec2b dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x7e85b832 dquot_acquire +EXPORT_SYMBOL vmlinux 0x7e8b7e1a napi_complete_done +EXPORT_SYMBOL vmlinux 0x7e8ecc6e __skb_get_hash +EXPORT_SYMBOL vmlinux 0x7e96362a xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x7e9e63c6 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7eaa791a nf_log_packet +EXPORT_SYMBOL vmlinux 0x7eab7a85 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7eb6d2e9 devm_request_resource +EXPORT_SYMBOL vmlinux 0x7ebd2cf3 sock_no_accept +EXPORT_SYMBOL vmlinux 0x7ebea182 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7ec53f21 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x7ecb6f37 netlink_capable +EXPORT_SYMBOL vmlinux 0x7edbc6e8 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x7edbd3ca load_nls +EXPORT_SYMBOL vmlinux 0x7edc46be scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f05083c scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x7f18f400 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x7f1d63df __inet_hash +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue +EXPORT_SYMBOL vmlinux 0x7f4ec8c1 param_set_short +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f59374f alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5cd1e2 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x7fabb2b8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x7fb2c9c5 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x7fc0a93c seq_puts +EXPORT_SYMBOL vmlinux 0x7fd05aba iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x7fd82eb1 napi_get_frags +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x801cc9d4 _dev_info +EXPORT_SYMBOL vmlinux 0x801d5e03 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x80214463 inet_addr_type +EXPORT_SYMBOL vmlinux 0x80298e69 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x80390f96 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8043ebce __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x804fd662 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x80531402 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8053525a sclp_register +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x80728a58 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x808411f0 skb_eth_push +EXPORT_SYMBOL vmlinux 0x808450a1 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x80876d03 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x80951d15 generic_setlease +EXPORT_SYMBOL vmlinux 0x80abca8e dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x80adce13 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x80b1ddcd sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x80b313dc utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x80b9a331 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x80c0ba1f netdev_emerg +EXPORT_SYMBOL vmlinux 0x80c8c5ce kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ca5545 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x80d9ae0d seq_open +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80f815d8 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x80f952c3 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81122740 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81164daa __SCK__tp_func_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x812a75b6 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update +EXPORT_SYMBOL vmlinux 0x813da607 ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0x814444d1 page_readlink +EXPORT_SYMBOL vmlinux 0x814fa5f6 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x814fd9ec configfs_depend_item +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user +EXPORT_SYMBOL vmlinux 0x818f118a param_ops_int +EXPORT_SYMBOL vmlinux 0x819d0bfd param_set_byte +EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node +EXPORT_SYMBOL vmlinux 0x81b433f2 down +EXPORT_SYMBOL vmlinux 0x81c521ce proc_dobool +EXPORT_SYMBOL vmlinux 0x81cdb4a6 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x81ce3fbc rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x8202597f vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x820976d5 sock_rfree +EXPORT_SYMBOL vmlinux 0x823214eb netdev_warn +EXPORT_SYMBOL vmlinux 0x82570886 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x8264b82b add_to_pipe +EXPORT_SYMBOL vmlinux 0x826f9f1a dump_page +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828365a4 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x8288a27e km_state_expired +EXPORT_SYMBOL vmlinux 0x8296e0ec flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x8299fb7c inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x82b27172 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x82c36736 d_obtain_root +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cc0288 pci_restore_state +EXPORT_SYMBOL vmlinux 0x82e01a15 file_path +EXPORT_SYMBOL vmlinux 0x830cd5e7 inet_listen +EXPORT_SYMBOL vmlinux 0x832318e2 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x833d066a dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837c2b4a __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x8393bef1 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x83be0a01 generic_writepages +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83f234b2 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841cc2f6 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x842b382e proc_create_data +EXPORT_SYMBOL vmlinux 0x84336d23 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x844311f5 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x84459db6 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x8445b617 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x84548542 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x84620171 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x8471d923 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x84795b1a flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x84a8cd05 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x84b111e3 ccw_device_clear +EXPORT_SYMBOL vmlinux 0x84b8a66a udp_ioctl +EXPORT_SYMBOL vmlinux 0x84bcd192 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c18f4f ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 +EXPORT_SYMBOL vmlinux 0x84d99f79 iov_iter_init +EXPORT_SYMBOL vmlinux 0x84ebf305 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x84f94e31 secpath_set +EXPORT_SYMBOL vmlinux 0x84fb0eaf fb_set_var +EXPORT_SYMBOL vmlinux 0x85029c01 may_umount +EXPORT_SYMBOL vmlinux 0x8507c2af generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x858ae3c5 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x859076b4 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x859c2428 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c97683 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8606f48f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock +EXPORT_SYMBOL vmlinux 0x861b5725 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x86216acd __xa_set_mark +EXPORT_SYMBOL vmlinux 0x8626728d __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8647d086 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x865ee69a xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x8682e198 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x8682eb0f pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8689d3f6 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x868a0651 eth_header_cache +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock +EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock +EXPORT_SYMBOL vmlinux 0x86bdbe46 __tracepoint_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d9d4b2 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fbace1 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x8703a575 bmap +EXPORT_SYMBOL vmlinux 0x8704a026 page_mapping +EXPORT_SYMBOL vmlinux 0x8708bb1c pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x870bab9e utf8ncursor +EXPORT_SYMBOL vmlinux 0x8711a10d read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x871fb96f blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x873cdf9f eth_gro_complete +EXPORT_SYMBOL vmlinux 0x873cf6d0 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87667906 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x8774a13a block_write_end +EXPORT_SYMBOL vmlinux 0x87b17c7b dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin +EXPORT_SYMBOL vmlinux 0x880a6ac8 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x88157a16 set_cached_acl +EXPORT_SYMBOL vmlinux 0x883023d1 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x883cecbb dev_addr_del +EXPORT_SYMBOL vmlinux 0x8845d89a __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0x8846104f xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x884ce820 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x884cff6d touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x885dd2b9 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88a52fa9 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x88ac4f93 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x88beea8c sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x88c880b9 set_groups +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each +EXPORT_SYMBOL vmlinux 0x88f9ffd8 dst_alloc +EXPORT_SYMBOL vmlinux 0x890fe79d security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x8940f54d pci_read_config_word +EXPORT_SYMBOL vmlinux 0x895d7c4e zpci_report_error +EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x898c6c14 neigh_update +EXPORT_SYMBOL vmlinux 0x8999f3bf jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x89a09837 ioremap_prot +EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0x89bd01a6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x89c04362 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x89d93ef7 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x89fecc70 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x8a0c6810 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x8a114941 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x8a170f69 default_llseek +EXPORT_SYMBOL vmlinux 0x8a202ea5 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x8a218ad1 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x8a21b24f set_nlink +EXPORT_SYMBOL vmlinux 0x8a21d2d0 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8a5ef8e3 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x8a634e58 sock_bind_add +EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a95c3eb ip_ct_attach +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aaad466 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ace5c06 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x8ad9685a pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8ae8a89c eth_gro_receive +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b21e2ba cdev_del +EXPORT_SYMBOL vmlinux 0x8b2cff24 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x8b46dcd6 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8b5abf2a rtnl_notify +EXPORT_SYMBOL vmlinux 0x8b5c1b6b generic_update_time +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b649625 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x8b77787d ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b85f262 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b99224e blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba1735c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x8bbdd273 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x8bd56bff simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8bf85476 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x8c36acf1 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x8c51c9ae ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x8c53e146 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8c811bb1 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x8c816c50 override_creds +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cafc58d wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply +EXPORT_SYMBOL vmlinux 0x8cc47467 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x8cd5fa40 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister +EXPORT_SYMBOL vmlinux 0x8cef78c1 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace +EXPORT_SYMBOL vmlinux 0x8d2a22e3 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x8d3f02f2 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8d50e724 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d632439 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d773763 ap_driver_unregister +EXPORT_SYMBOL vmlinux 0x8d83711f generic_file_mmap +EXPORT_SYMBOL vmlinux 0x8d916836 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x8d959975 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x8da7c546 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x8daa2dd7 md_done_sync +EXPORT_SYMBOL vmlinux 0x8dadda74 inet_bind +EXPORT_SYMBOL vmlinux 0x8dbcfae8 inode_init_always +EXPORT_SYMBOL vmlinux 0x8dd2275a input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e041e5c blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x8e069118 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x8e06e72d dev_get_flags +EXPORT_SYMBOL vmlinux 0x8e26ad32 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x8e345608 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8e377228 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x8e39c767 dquot_get_state +EXPORT_SYMBOL vmlinux 0x8e48dd8d tty_port_close +EXPORT_SYMBOL vmlinux 0x8e68402b netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x8e6efd17 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea5028a dev_set_group +EXPORT_SYMBOL vmlinux 0x8eaa280f skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x8eaad4a5 put_disk +EXPORT_SYMBOL vmlinux 0x8ee957a3 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x8ee99c32 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x8f373f3b fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x8f38e8fc sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x8f3ef87e truncate_pagecache +EXPORT_SYMBOL vmlinux 0x8f45cb74 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8f4ea922 pci_free_irq +EXPORT_SYMBOL vmlinux 0x8f7b4867 registered_fb +EXPORT_SYMBOL vmlinux 0x8f97de53 security_sock_graft +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8faffbbd param_get_bool +EXPORT_SYMBOL vmlinux 0x8fbc7b7a udp_set_csum +EXPORT_SYMBOL vmlinux 0x8fcafe88 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x8fdad70f inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x8fecb4c5 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x8fecd1a6 sock_register +EXPORT_SYMBOL vmlinux 0x8fee3ec9 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x905bf380 cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x9067329f peernet2id +EXPORT_SYMBOL vmlinux 0x907b2f98 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x907b357a vfs_mkdir +EXPORT_SYMBOL vmlinux 0x907be508 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x90b849d1 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x90c237a3 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x90c45c2e pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x90ceb780 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x90e02fc0 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x90e0a1d1 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x90e47863 sock_no_bind +EXPORT_SYMBOL vmlinux 0x90fd0152 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x9107c3fd tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x914a1961 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x916514b6 ap_cancel_message +EXPORT_SYMBOL vmlinux 0x916ab5a5 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x916b40b5 request_firmware +EXPORT_SYMBOL vmlinux 0x917e3899 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x9193fa11 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91ce92ba param_set_long +EXPORT_SYMBOL vmlinux 0x91ec98f1 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x9202cb4c security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x92173c2c ip_getsockopt +EXPORT_SYMBOL vmlinux 0x92230ce5 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92457663 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x9306a592 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x931f6cc9 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x932780a7 md_handle_request +EXPORT_SYMBOL vmlinux 0x932ec676 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x93511d62 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x935792a6 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x9374bee0 tcp_mmap +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937eaa8f pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x93852af8 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x9389d43b set_create_files_as +EXPORT_SYMBOL vmlinux 0x93924900 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x93a16c74 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93aa24e1 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c30b83 pci_request_irq +EXPORT_SYMBOL vmlinux 0x93cc6200 set_disk_ro +EXPORT_SYMBOL vmlinux 0x93f12561 nla_put +EXPORT_SYMBOL vmlinux 0x93f3ca9f alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x93fb39a0 iget_failed +EXPORT_SYMBOL vmlinux 0x940a8471 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x940d9510 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x941a38bc flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject +EXPORT_SYMBOL vmlinux 0x943ad667 dquot_initialize +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x94673c71 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x94929853 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94db264c tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x95096eb1 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept +EXPORT_SYMBOL vmlinux 0x95214b99 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x952ad22c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x952bebbb eth_type_trans +EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x953a1d83 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x953b3771 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9575e584 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x958ef2ee user_path_create +EXPORT_SYMBOL vmlinux 0x9596aa54 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95dcd63c vfs_symlink +EXPORT_SYMBOL vmlinux 0x95e1336a __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host +EXPORT_SYMBOL vmlinux 0x96082708 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x962dfbb0 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x964427e5 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x9660e9d5 arp_send +EXPORT_SYMBOL vmlinux 0x9679ad33 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x968ac418 simple_get_link +EXPORT_SYMBOL vmlinux 0x96b724c4 skb_expand_head +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e238ec get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x96e2b798 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x96e75552 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x96ea817c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x96f3254e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str +EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin +EXPORT_SYMBOL vmlinux 0x97528a54 md_update_sb +EXPORT_SYMBOL vmlinux 0x975d50f4 __frontswap_load +EXPORT_SYMBOL vmlinux 0x976b9f53 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x9780c2d8 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x97830a6c cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x97838cba inet_put_port +EXPORT_SYMBOL vmlinux 0x9788ff9e sock_no_listen +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979ae83d s390_arch_get_random_long +EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked +EXPORT_SYMBOL vmlinux 0x979f7cdf scm_detach_fds +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b11ed0 netif_napi_add +EXPORT_SYMBOL vmlinux 0x97b17e9d register_cdrom +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c8a63c _copy_from_iter +EXPORT_SYMBOL vmlinux 0x97d24a1f sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x97ef7844 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x981bedeb bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x981e60e2 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x983581a6 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x98603e66 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x9864c628 input_allocate_device +EXPORT_SYMBOL vmlinux 0x987d1f88 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x987eaae0 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x988c0487 tty_lock +EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy +EXPORT_SYMBOL vmlinux 0x98b50bf9 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x98bd95b8 write_cache_pages +EXPORT_SYMBOL vmlinux 0x98c5a99e make_kuid +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98db962c skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e70d28 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x9901a2e4 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x994ac4ee grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x994e5b21 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995ed49f pci_remove_bus +EXPORT_SYMBOL vmlinux 0x99686e90 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0x997a308f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x9981fe9a pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x998e54f0 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x99995875 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b7dc7a kbd_alloc +EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase +EXPORT_SYMBOL vmlinux 0x99d21daf iucv_bus +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f8aee0 pci_release_region +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a0ec9a6 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x9a19ec50 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a424598 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr +EXPORT_SYMBOL vmlinux 0x9a7b1f26 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x9a7db438 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x9a87cd63 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9aad66ed scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ad520d0 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aeb3370 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x9b17d9f2 debug_register +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b366cf7 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x9b424171 __devm_request_region +EXPORT_SYMBOL vmlinux 0x9b42ef0f dfltcc_reset +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b7728e2 kset_unregister +EXPORT_SYMBOL vmlinux 0x9b84b0da pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b8e9881 icmp6_send +EXPORT_SYMBOL vmlinux 0x9bb1da73 register_qdisc +EXPORT_SYMBOL vmlinux 0x9bc33b7d kernel_getpeername +EXPORT_SYMBOL vmlinux 0x9bc792a9 ilookup5 +EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x9c073aa9 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x9c0b7c9d ap_queue_init_state +EXPORT_SYMBOL vmlinux 0x9c1e5cb4 _dev_emerg +EXPORT_SYMBOL vmlinux 0x9c291dcd ap_send_config_uevent +EXPORT_SYMBOL vmlinux 0x9c2f04af iterate_supers_type +EXPORT_SYMBOL vmlinux 0x9c5e8a56 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x9c60042a tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x9c60c205 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x9c6733a5 skb_dequeue +EXPORT_SYMBOL vmlinux 0x9c7a1c08 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9cad621b seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x9caf467b qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9cb15e62 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce021a2 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x9ce3fe05 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x9cf8d1b9 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1646d8 fasync_helper +EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view +EXPORT_SYMBOL vmlinux 0x9d22f72e nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x9d250156 __nla_put +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev +EXPORT_SYMBOL vmlinux 0x9d6edbc9 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d9eae0d fqdir_exit +EXPORT_SYMBOL vmlinux 0x9dacfed4 bioset_exit +EXPORT_SYMBOL vmlinux 0x9dc3ecff sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x9de1d6af vfs_mknod +EXPORT_SYMBOL vmlinux 0x9e06d3f6 ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0x9e09b478 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x9e0b57c3 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2544ae shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x9e2be142 nmi_panic +EXPORT_SYMBOL vmlinux 0x9e35840d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e723b97 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x9e7b37c5 noop_qdisc +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9783e1 __tracepoint_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x9e99837e __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaa37d3 sock_release +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec8c637 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x9ed5d280 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x9ede6115 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x9ef22002 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x9f000699 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x9f001375 tcp_prot +EXPORT_SYMBOL vmlinux 0x9f002fc7 fb_class +EXPORT_SYMBOL vmlinux 0x9f0246f8 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x9f10dc0c write_one_page +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5d9393 utf8nagemax +EXPORT_SYMBOL vmlinux 0x9f820763 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9f8c6ff8 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fafc0f2 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa007da56 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022e976 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa02bdbae qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xa02d9c50 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03bc965 pci_dev_get +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister +EXPORT_SYMBOL vmlinux 0xa05809fc netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa066d89f xa_store_range +EXPORT_SYMBOL vmlinux 0xa06e587a release_firmware +EXPORT_SYMBOL vmlinux 0xa07889f4 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b9f80 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa08f2591 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access +EXPORT_SYMBOL vmlinux 0xa0933cab neigh_ifdown +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c9f4d5 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0df3658 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa102acc5 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1090ddf pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa10a0439 kmalloc_order +EXPORT_SYMBOL vmlinux 0xa10c8678 keyring_clear +EXPORT_SYMBOL vmlinux 0xa1200913 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xa1350ac1 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa14045a1 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa1465bcb bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0xa148ef6b page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xa158297c scsi_host_get +EXPORT_SYMBOL vmlinux 0xa18f63ad sock_wake_async +EXPORT_SYMBOL vmlinux 0xa18f7a1a skb_vlan_push +EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xa1b9d8ae request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1d5db4f ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa206a88c key_payload_reserve +EXPORT_SYMBOL vmlinux 0xa22de3e4 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xa22deaa5 input_open_device +EXPORT_SYMBOL vmlinux 0xa23e5d7e kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa246b398 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xa247d1cf tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa25bd30c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa298eedf d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xa29b58fe dev_activate +EXPORT_SYMBOL vmlinux 0xa2a18402 tcp_connect +EXPORT_SYMBOL vmlinux 0xa2a6583a tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xa2ad1c31 generic_listxattr +EXPORT_SYMBOL vmlinux 0xa2b73021 alloc_pages +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2ea0d66 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa306bbc8 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase +EXPORT_SYMBOL vmlinux 0xa334cf75 register_filesystem +EXPORT_SYMBOL vmlinux 0xa34833f6 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock +EXPORT_SYMBOL vmlinux 0xa365652b get_tree_bdev +EXPORT_SYMBOL vmlinux 0xa38cb993 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove +EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xa3ce48d6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xa3dadd65 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xa3eb785c freezing_slow_path +EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa3ff47d2 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xa4089e9f __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xa40caa6e pci_pme_active +EXPORT_SYMBOL vmlinux 0xa420a849 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0xa480e6d2 seq_release +EXPORT_SYMBOL vmlinux 0xa4d518ba alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4e439b3 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa503e31a mod_node_page_state +EXPORT_SYMBOL vmlinux 0xa50483fe __ksize +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50f92c6 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5551e48 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xa562cb09 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xa5836299 param_array_ops +EXPORT_SYMBOL vmlinux 0xa584c131 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit +EXPORT_SYMBOL vmlinux 0xa59aca18 set_page_dirty +EXPORT_SYMBOL vmlinux 0xa5be2df4 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xa5d7704c kern_unmount +EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0xa5f7bd94 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xa617b2bd mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa640a2da __d_lookup_done +EXPORT_SYMBOL vmlinux 0xa67ce9d9 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a37992 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xa6abbd00 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa6c782e8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xa6dd51ef kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xa6e99f79 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xa70910f5 utf8len +EXPORT_SYMBOL vmlinux 0xa70ea6d7 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71a7cfd tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xa73fcf57 netif_rx +EXPORT_SYMBOL vmlinux 0xa74c8eeb dup_iter +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa785e2e5 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xa786d6b9 seq_pad +EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xa7b5340d xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xa7bd36af mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f92777 inode_init_once +EXPORT_SYMBOL vmlinux 0xa8242b7a fs_bio_set +EXPORT_SYMBOL vmlinux 0xa83608ce xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xa83d9d43 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa86b5edc tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xa874996e __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xa87e36b6 dev_add_pack +EXPORT_SYMBOL vmlinux 0xa896c2c8 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xa8a576ff netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xa8d47e0f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa8d8906e rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xa8ddf339 input_register_handler +EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xa8f199ba blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa919bc88 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0xa934bc4b flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa943743a pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xa943cede PDE_DATA +EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9845525 sock_create_kern +EXPORT_SYMBOL vmlinux 0xa98c3d5c __block_write_full_page +EXPORT_SYMBOL vmlinux 0xa98e4875 input_set_keycode +EXPORT_SYMBOL vmlinux 0xa996c94b tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xa9ac8ee1 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xa9b31cee dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa9b85283 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xa9bfb94e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa9c20a2f tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa9cc887e tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xa9d20fcc d_path +EXPORT_SYMBOL vmlinux 0xa9f334ae cdrom_release +EXPORT_SYMBOL vmlinux 0xa9f74bff pci_assign_resource +EXPORT_SYMBOL vmlinux 0xaa02fe55 touch_buffer +EXPORT_SYMBOL vmlinux 0xaa0f966d pci_map_rom +EXPORT_SYMBOL vmlinux 0xaa18933b arp_create +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1c6624 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update +EXPORT_SYMBOL vmlinux 0xaa42112b arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xaa4cda01 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xaa4e0036 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xaa5c9395 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xaa6c24a3 ccw_device_start +EXPORT_SYMBOL vmlinux 0xaa6d146a rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xaa71c2ca md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0xaa896c3f logfc +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete +EXPORT_SYMBOL vmlinux 0xaaba9567 tcp_check_req +EXPORT_SYMBOL vmlinux 0xaabd6fcc tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xaabf7b76 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xaaca284c devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadd2a34 vma_set_file +EXPORT_SYMBOL vmlinux 0xaaebd9b0 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xaaf454f9 netdev_info +EXPORT_SYMBOL vmlinux 0xaafb6c8e qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab043e3b ip_defrag +EXPORT_SYMBOL vmlinux 0xab11a49a filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xab29f286 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xab4a6ed9 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xab5dbf08 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xab628963 __block_write_begin +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab6f9b13 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7eafad register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xabb63d47 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xabd2b772 dev_trans_start +EXPORT_SYMBOL vmlinux 0xabd9149e get_vm_area +EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xabe171c5 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xabee91d3 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf7e54b inet_getname +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1cf5b0 console_stop +EXPORT_SYMBOL vmlinux 0xac2eb4e7 proc_set_user +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac44124a t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xac5ad41b dquot_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6c8cbe netdev_state_change +EXPORT_SYMBOL vmlinux 0xac80c5cc vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xac8597d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xac93f72f sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xaca0aef0 complete +EXPORT_SYMBOL vmlinux 0xaca9a7ef get_pgste +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb6f7e8 input_grab_device +EXPORT_SYMBOL vmlinux 0xacb7ccf4 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xacc5ab60 param_set_uint +EXPORT_SYMBOL vmlinux 0xacd332ff bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace9c1e1 md_write_start +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad08bc74 would_dump +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad2b3d96 inet6_getname +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad52e970 register_quota_format +EXPORT_SYMBOL vmlinux 0xad588461 input_setup_polling +EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad7b118f set_anon_super +EXPORT_SYMBOL vmlinux 0xad7d2292 sk_dst_check +EXPORT_SYMBOL vmlinux 0xad880b14 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xad8cf078 __invalidate_device +EXPORT_SYMBOL vmlinux 0xad91d427 __scsi_execute +EXPORT_SYMBOL vmlinux 0xad9436ee bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xad995dac netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate +EXPORT_SYMBOL vmlinux 0xadbcc116 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xadc42066 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd9f2f2 clear_nlink +EXPORT_SYMBOL vmlinux 0xadda7d2f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xadf4ebfd pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae03f1a2 mntput +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xae07b068 ip_frag_next +EXPORT_SYMBOL vmlinux 0xae0d85cc inode_permission +EXPORT_SYMBOL vmlinux 0xae1d7a06 d_instantiate +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae37becf pci_get_class +EXPORT_SYMBOL vmlinux 0xae53b8d4 km_state_notify +EXPORT_SYMBOL vmlinux 0xae560f5c vfs_rename +EXPORT_SYMBOL vmlinux 0xae8ef138 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xae938fd5 skb_copy_header +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaec1ef0b mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xaecaa908 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xaed3bed8 pci_bus_type +EXPORT_SYMBOL vmlinux 0xaef64b59 filp_open +EXPORT_SYMBOL vmlinux 0xaef72fc2 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xaf1377a8 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf8528f2 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xaf8b4414 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xaf9aab70 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xafaffd08 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xafcc4585 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xaff1065e qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xaffe0e69 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb03f3063 proto_register +EXPORT_SYMBOL vmlinux 0xb0575089 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl +EXPORT_SYMBOL vmlinux 0xb072cc2e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xb081d3b5 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xb092e414 mpage_writepage +EXPORT_SYMBOL vmlinux 0xb0b3147f dcb_setapp +EXPORT_SYMBOL vmlinux 0xb0be970d update_region +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb0fe3543 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb0ff88a3 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb10fa0dc devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xb114e8c7 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xb11af5dd bprm_change_interp +EXPORT_SYMBOL vmlinux 0xb1203bb8 ap_perms +EXPORT_SYMBOL vmlinux 0xb124cef4 __f_setown +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb16f551c vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xb178c5f4 drop_super +EXPORT_SYMBOL vmlinux 0xb17bd75c crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb186a38a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xb19edc01 sock_no_connect +EXPORT_SYMBOL vmlinux 0xb1a70526 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xb1a8019e ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xb1b4b28c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d01934 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d77fb5 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout +EXPORT_SYMBOL vmlinux 0xb1f9524d balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xb21e0e77 ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xb22c1f56 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb2460f19 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xb2466c85 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xb24fa993 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xb27add13 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2f579c7 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb2f65817 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2ff4d2d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb320a4c2 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3290aef ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb32f1f51 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xb34e92e0 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xb354f75e filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb35a44a9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb360c6ae blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy +EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xb394ba8d generic_fadvise +EXPORT_SYMBOL vmlinux 0xb3a7a63a lease_get_mtime +EXPORT_SYMBOL vmlinux 0xb3b386de input_match_device_id +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3d1364d skb_pull +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3eafbd0 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9e0ab security_locked_down +EXPORT_SYMBOL vmlinux 0xb3fa6ae6 qdisc_reset +EXPORT_SYMBOL vmlinux 0xb3fe35c0 misc_deregister +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb414d094 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42d16b2 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xb4336bd1 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xb450656c sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xb4c2aad5 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f838eb xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb504bcc6 sock_pfree +EXPORT_SYMBOL vmlinux 0xb50cc9cb ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xb514634e find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xb524e825 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xb54370da dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb56ffdda tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb582f976 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xb584c406 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58c0158 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xb594fce9 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a60236 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ae656c debug_unregister_view +EXPORT_SYMBOL vmlinux 0xb5b38a28 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bd9cde input_inject_event +EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xb5e41c83 ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f89e4b pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xb6204a67 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb62cb17e tcp_sendpage +EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63733b4 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xb63b9726 do_splice_direct +EXPORT_SYMBOL vmlinux 0xb660af2c pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xb662ec7f dst_dev_put +EXPORT_SYMBOL vmlinux 0xb667a395 set_capacity +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6798d2f dev_mc_init +EXPORT_SYMBOL vmlinux 0xb679b51c md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68f1c39 kill_fasync +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6988da2 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xb6ba5b5f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit +EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb74f273d nf_log_register +EXPORT_SYMBOL vmlinux 0xb7569c6c skb_append +EXPORT_SYMBOL vmlinux 0xb75cee51 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb7679433 sg_miter_next +EXPORT_SYMBOL vmlinux 0xb77a6db2 igrab +EXPORT_SYMBOL vmlinux 0xb784c6a1 pci_release_regions +EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xb7884de8 module_layout +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb79b79c4 bdev_read_only +EXPORT_SYMBOL vmlinux 0xb7b507ea utf8nlen +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d08002 scsi_partsize +EXPORT_SYMBOL vmlinux 0xb7d1ce49 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c +EXPORT_SYMBOL vmlinux 0xb7f4a73c netif_rx_ni +EXPORT_SYMBOL vmlinux 0xb7f6aa96 arp_xmit +EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86e5f36 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb8887812 lock_rename +EXPORT_SYMBOL vmlinux 0xb8946d59 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8dcc01b discard_new_inode +EXPORT_SYMBOL vmlinux 0xb8e22780 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec +EXPORT_SYMBOL vmlinux 0xb8f4299e blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb905b6e4 devm_iounmap +EXPORT_SYMBOL vmlinux 0xb90d3dc5 cad_pid +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9445cea pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xb949d3fb xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0xb9568c21 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb979e0be d_invalidate +EXPORT_SYMBOL vmlinux 0xb99e4671 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xb9bfdbca generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xb9c4fad8 put_fs_context +EXPORT_SYMBOL vmlinux 0xb9c52ee1 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb9d5d800 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xb9df5c0d ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fea344 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xba043bcd mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba09ba01 vm_event_states +EXPORT_SYMBOL vmlinux 0xba126cdc submit_bio_wait +EXPORT_SYMBOL vmlinux 0xba1941c5 skb_ext_add +EXPORT_SYMBOL vmlinux 0xba3b1ec5 simple_rmdir +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5d17b8 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xba5da4c2 pci_find_capability +EXPORT_SYMBOL vmlinux 0xbab017c0 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xbac7d741 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xbad22d09 pci_dev_put +EXPORT_SYMBOL vmlinux 0xbaebabb0 ip6_xmit +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0ff75b fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbb193f2a __dquot_transfer +EXPORT_SYMBOL vmlinux 0xbb1a91dd free_buffer_head +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3b0bae account_page_redirty +EXPORT_SYMBOL vmlinux 0xbb5091d8 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit +EXPORT_SYMBOL vmlinux 0xbb8a3c67 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbbbcc19a poll_initwait +EXPORT_SYMBOL vmlinux 0xbbbd12eb fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xbbc2eb36 devm_ioremap +EXPORT_SYMBOL vmlinux 0xbbe1ce35 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xbc0fe096 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xbc2fa4d8 pci_select_bars +EXPORT_SYMBOL vmlinux 0xbc375589 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xbc48050a dquot_resume +EXPORT_SYMBOL vmlinux 0xbc4a209a n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xbc520b85 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xbc6e58ae ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0xbc88aaa4 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xbc8edacd f_setown +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcd4f137 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbce3a03b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xbcf47e69 pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0xbd27242b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xbd2e1318 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xbd558d1f unregister_filesystem +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6e0e78 vc_cons +EXPORT_SYMBOL vmlinux 0xbd877ee5 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xbd88eaf0 current_in_userns +EXPORT_SYMBOL vmlinux 0xbda4fc13 shmem_aops +EXPORT_SYMBOL vmlinux 0xbdafc8cd bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xbdafea62 __frontswap_test +EXPORT_SYMBOL vmlinux 0xbe061259 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xbe0d1167 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe1c83fb skb_copy_expand +EXPORT_SYMBOL vmlinux 0xbe267bda dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xbe4092f5 dquot_disable +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5bbf93 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xbe5f6393 netlink_ack +EXPORT_SYMBOL vmlinux 0xbe60e01c udp_sendmsg +EXPORT_SYMBOL vmlinux 0xbe66cb2a ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0xbe870934 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xbec65f36 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf +EXPORT_SYMBOL vmlinux 0xbf36976b sock_no_getname +EXPORT_SYMBOL vmlinux 0xbf40122f lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf6a29ed scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xbf7b2ef6 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xbf85659f pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb0700d vfs_get_super +EXPORT_SYMBOL vmlinux 0xbfd9f046 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfeeae3f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xc0243ea6 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc039d2a3 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xc06f0724 ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END +EXPORT_SYMBOL vmlinux 0xc0cbcab2 flush_signals +EXPORT_SYMBOL vmlinux 0xc0e19543 lowcore_ptr +EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc112ee4e skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc +EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc173701f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc178845e sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc1b2e3f0 __scm_send +EXPORT_SYMBOL vmlinux 0xc1c565ef pci_read_vpd +EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view +EXPORT_SYMBOL vmlinux 0xc1d11ed5 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e19d34 param_ops_bint +EXPORT_SYMBOL vmlinux 0xc1e68aa2 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes +EXPORT_SYMBOL vmlinux 0xc22023e5 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xc24cbc4a pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user +EXPORT_SYMBOL vmlinux 0xc268fa26 scsi_print_result +EXPORT_SYMBOL vmlinux 0xc26e589f send_sig +EXPORT_SYMBOL vmlinux 0xc26ecd2b flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xc27176bd tcf_block_put +EXPORT_SYMBOL vmlinux 0xc27deb19 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xc2810f61 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xc29a1878 abort_creds +EXPORT_SYMBOL vmlinux 0xc2b3f99a jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc31be6e8 vfs_unlink +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc330ec6a dev_driver_string +EXPORT_SYMBOL vmlinux 0xc35c7358 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xc36525c4 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xc36acf11 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xc37f46f5 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38f335a tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc3b3f130 thread_group_exited +EXPORT_SYMBOL vmlinux 0xc3ce4ecb param_get_invbool +EXPORT_SYMBOL vmlinux 0xc3ce5096 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xc3e3859a param_get_byte +EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable +EXPORT_SYMBOL vmlinux 0xc3ec2f33 skb_split +EXPORT_SYMBOL vmlinux 0xc406e312 __lock_page +EXPORT_SYMBOL vmlinux 0xc415b271 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42ebced input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xc457c3a0 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next +EXPORT_SYMBOL vmlinux 0xc475471a raw3270_del_view +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48cfd06 bio_put +EXPORT_SYMBOL vmlinux 0xc4946263 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xc4b8959a tcf_idr_create +EXPORT_SYMBOL vmlinux 0xc4c44d6e netdev_crit +EXPORT_SYMBOL vmlinux 0xc4e80e05 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc4fb147d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xc4fd1689 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xc5086dbb pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc50a0512 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xc5192a3a seq_putc +EXPORT_SYMBOL vmlinux 0xc52738e4 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc52e297a __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xc542e48c config_item_put +EXPORT_SYMBOL vmlinux 0xc54c5cff simple_write_begin +EXPORT_SYMBOL vmlinux 0xc57b41f2 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 +EXPORT_SYMBOL vmlinux 0xc57e9651 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xc597b303 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a3f55d ip_local_deliver +EXPORT_SYMBOL vmlinux 0xc5ad8bb6 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user +EXPORT_SYMBOL vmlinux 0xc5dbb8e2 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xc5e3b190 dst_release +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f209cd inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc603abdc finish_no_open +EXPORT_SYMBOL vmlinux 0xc60ac425 km_policy_notify +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc622ea97 stsi +EXPORT_SYMBOL vmlinux 0xc627bb64 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xc628cee8 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xc62ab2bc mempool_destroy +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc646acc2 finish_open +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc67f9695 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xc6838095 inet_select_addr +EXPORT_SYMBOL vmlinux 0xc699136c dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xc6ae4a1f blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xc6c24305 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f74ace mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc6f8989b airq_iv_release +EXPORT_SYMBOL vmlinux 0xc6fe6797 give_up_console +EXPORT_SYMBOL vmlinux 0xc7100bc7 empty_aops +EXPORT_SYMBOL vmlinux 0xc7243518 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xc7255fd1 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xc74ed572 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xc76c40b2 dma_set_mask +EXPORT_SYMBOL vmlinux 0xc772ad5b get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79ac0fd xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xc79f207e revert_creds +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b43534 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc7bceb3f dma_resv_init +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xc802797e rt_dst_clone +EXPORT_SYMBOL vmlinux 0xc80982a9 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc817d03b vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xc82ded33 skb_copy +EXPORT_SYMBOL vmlinux 0xc82e2960 release_pages +EXPORT_SYMBOL vmlinux 0xc82fc1cd tcf_exts_change +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84fddf6 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc85dd077 generic_fillattr +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc8880441 seq_escape +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8967657 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xc8a303ee __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ed889d flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xc8f16dd2 mr_table_dump +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc9187a05 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xc9497448 mpage_writepages +EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc98282aa disk_stack_limits +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc9a55ab3 block_write_begin +EXPORT_SYMBOL vmlinux 0xc9cb293c d_alloc_name +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9df8f8f qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xca044fb1 fiemap_prep +EXPORT_SYMBOL vmlinux 0xca0962d9 __check_sticky +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca4189aa write_inode_now +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca62e768 kfree_skb +EXPORT_SYMBOL vmlinux 0xca6357a9 filp_close +EXPORT_SYMBOL vmlinux 0xca65f755 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xca824a44 netdev_features_change +EXPORT_SYMBOL vmlinux 0xca877e97 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xca87b699 fb_show_logo +EXPORT_SYMBOL vmlinux 0xca90eeac pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaad6e94 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xcaade128 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xcad9cb71 skb_queue_head +EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xcaea8bcd setup_new_exec +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf4f9d2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xcb040f44 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xcb045493 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xcb141665 register_console +EXPORT_SYMBOL vmlinux 0xcb15a22a blk_get_request +EXPORT_SYMBOL vmlinux 0xcb2bef0c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xcb30fa0b gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb42fa08 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xcb484a8e __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xcb6958de try_to_release_page +EXPORT_SYMBOL vmlinux 0xcb74c02f inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xcb7d949d eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xcb7fbd9b add_watch_to_object +EXPORT_SYMBOL vmlinux 0xcb938693 bdevname +EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xcbccf42d netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd946c3 user_revoke +EXPORT_SYMBOL vmlinux 0xcbd9dace mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xcbdcba1b unregister_binfmt +EXPORT_SYMBOL vmlinux 0xcbdf6ff4 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xcbe1e451 tty_register_device +EXPORT_SYMBOL vmlinux 0xcbf6e958 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xcbf9dd95 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xcbfe112d ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xcc25f182 sk_capable +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc39ac17 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6cd9fe put_cmsg +EXPORT_SYMBOL vmlinux 0xcc7e25de _dev_alert +EXPORT_SYMBOL vmlinux 0xcc897b1c copy_string_kernel +EXPORT_SYMBOL vmlinux 0xcc8d1731 scsi_device_put +EXPORT_SYMBOL vmlinux 0xccb0c9a1 file_remove_privs +EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch +EXPORT_SYMBOL vmlinux 0xccb9ed14 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xccc43da9 submit_bh +EXPORT_SYMBOL vmlinux 0xccc6451b airq_iv_create +EXPORT_SYMBOL vmlinux 0xcccab636 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce07e17 setattr_copy +EXPORT_SYMBOL vmlinux 0xcce3e3e8 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xcce5952a filemap_fault +EXPORT_SYMBOL vmlinux 0xccecb6c7 tcp_peek_len +EXPORT_SYMBOL vmlinux 0xccf3041b kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xccf36596 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xccfb0caf posix_test_lock +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xcd118e7f passthru_features_check +EXPORT_SYMBOL vmlinux 0xcd19873d padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd430895 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xcd5b93ff bio_clone_fast +EXPORT_SYMBOL vmlinux 0xcdb2f660 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xcdb41e89 vfs_getattr +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf941d3 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2b9f9b pci_enable_device +EXPORT_SYMBOL vmlinux 0xce37f10f jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xce3d781b kernel_write +EXPORT_SYMBOL vmlinux 0xce3f151d d_set_fallthru +EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xce4b9697 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce61eb40 locks_delete_block +EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec7fa15 sock_set_mark +EXPORT_SYMBOL vmlinux 0xceda586f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xcee0b122 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xceec8abd __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcf06add9 tso_start +EXPORT_SYMBOL vmlinux 0xcf140554 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xcf270e4c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xcf3b85d5 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xcf4543bb fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xcf5bf725 input_register_handle +EXPORT_SYMBOL vmlinux 0xcf5c4e70 set_user_nice +EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xcf66b0af mr_dump +EXPORT_SYMBOL vmlinux 0xcf818856 param_set_hexint +EXPORT_SYMBOL vmlinux 0xcf8f3b49 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xcf967b25 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfd22619 iucv_if +EXPORT_SYMBOL vmlinux 0xcfe62a07 kernel_bind +EXPORT_SYMBOL vmlinux 0xcfee10cf simple_fill_super +EXPORT_SYMBOL vmlinux 0xd0089623 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd00c9604 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xd01e62e5 simple_rename +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04f30b2 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06a9679 __alloc_pages +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08e6e37 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b59e4b sock_alloc +EXPORT_SYMBOL vmlinux 0xd0c9d378 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user +EXPORT_SYMBOL vmlinux 0xd133136a ns_capable +EXPORT_SYMBOL vmlinux 0xd1347343 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd1508c71 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xd156c768 pudp_xchg_direct +EXPORT_SYMBOL vmlinux 0xd15b1339 iptun_encaps +EXPORT_SYMBOL vmlinux 0xd15d4f65 napi_enable +EXPORT_SYMBOL vmlinux 0xd15eada0 nla_reserve +EXPORT_SYMBOL vmlinux 0xd1666948 gro_cells_init +EXPORT_SYMBOL vmlinux 0xd16a8f8e dump_skip +EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd187b791 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xd18fd147 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xd1b3b8b2 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0xd1b4f745 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xd1c5a4db nf_hook_slow +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1db8666 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xd1dcda0b set_security_override +EXPORT_SYMBOL vmlinux 0xd1ee06a3 pci_request_regions +EXPORT_SYMBOL vmlinux 0xd1eff957 tty_hangup +EXPORT_SYMBOL vmlinux 0xd203c1d4 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xd22190e1 md_write_inc +EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xd2510a63 up_write +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd2599a5a loop_register_transfer +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2601768 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xd263eea7 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd29e0c92 noop_fsync +EXPORT_SYMBOL vmlinux 0xd2a7e62a sock_kmalloc +EXPORT_SYMBOL vmlinux 0xd2ce4a75 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xd2d2e731 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2fe1557 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0xd318d6f8 datagram_poll +EXPORT_SYMBOL vmlinux 0xd31a8bc0 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xd31d8bf5 key_put +EXPORT_SYMBOL vmlinux 0xd33f130d sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd340f028 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd3642f8b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd387047b dev_uc_del +EXPORT_SYMBOL vmlinux 0xd390cf1d param_ops_byte +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3b53ae7 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xd3b58352 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3eb6676 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4083dcf page_get_link +EXPORT_SYMBOL vmlinux 0xd44fce84 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xd480a3bc ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xd4ba51d1 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c2fd56 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd4d7ebff iucv_root +EXPORT_SYMBOL vmlinux 0xd4eda9ee udp_seq_next +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52e9aec kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd5360838 debug_unregister +EXPORT_SYMBOL vmlinux 0xd5428361 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd566933c up +EXPORT_SYMBOL vmlinux 0xd56f8ebc scm_fp_dup +EXPORT_SYMBOL vmlinux 0xd58592e3 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xd586b54e tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xd587f07a dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd5ad9659 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c8f933 md_write_end +EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index +EXPORT_SYMBOL vmlinux 0xd5fb5a40 unregister_key_type +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xd6475842 generic_file_open +EXPORT_SYMBOL vmlinux 0xd64fdeea scmd_printk +EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit +EXPORT_SYMBOL vmlinux 0xd676c484 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xd684f320 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xd686cb8a tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68b655e fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xd68bfd28 path_has_submounts +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd690756e qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xd69b3c98 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xd6c053c7 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xd6dbbfe1 kobject_init +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd7403a22 init_net +EXPORT_SYMBOL vmlinux 0xd74b58da nf_log_unset +EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0xd753ec03 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xd7627d44 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd76d9889 request_key_tag +EXPORT_SYMBOL vmlinux 0xd77de763 nonseekable_open +EXPORT_SYMBOL vmlinux 0xd7ad7f71 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd7c0abc8 ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0xd7d00882 is_bad_inode +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e1c5e1 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd808b835 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xd8188dd6 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xd827fff3 memremap +EXPORT_SYMBOL vmlinux 0xd83849e2 ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0xd83ca97d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xd87011c8 param_ops_charp +EXPORT_SYMBOL vmlinux 0xd88afdd9 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aa26fa blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c88c6e tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd92d1747 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xd9376502 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xd93d3866 d_exact_alias +EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset +EXPORT_SYMBOL vmlinux 0xd947624b netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xd9519852 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd95e4354 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string +EXPORT_SYMBOL vmlinux 0xd9717541 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xd97e6545 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9d31060 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd9d5e934 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xda00821a flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xda098527 sync_file_create +EXPORT_SYMBOL vmlinux 0xda1e807c unregister_cdrom +EXPORT_SYMBOL vmlinux 0xda2a3ee7 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda501f92 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda736068 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xda73b423 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xda749739 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xdaa30cf6 zap_page_range +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdadf13d0 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdafbf336 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdb1a59a6 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xdb2833de __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xdb3e5283 _dev_notice +EXPORT_SYMBOL vmlinux 0xdb3fa612 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xdb55b9eb sk_common_release +EXPORT_SYMBOL vmlinux 0xdb58d250 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb89ef1a inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdb99d41a dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xdba16ff6 nf_log_trace +EXPORT_SYMBOL vmlinux 0xdbb3995a md_register_thread +EXPORT_SYMBOL vmlinux 0xdbb9c2f9 key_type_keyring +EXPORT_SYMBOL vmlinux 0xdbdcdcbd d_tmpfile +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbee17c5 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xdbeeb815 mntget +EXPORT_SYMBOL vmlinux 0xdbf3c3e3 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xdbf79849 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xdc04c785 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc263a13 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc47b1b9 udp_prot +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc7bd8d3 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xdc7e74a2 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xdc81a628 build_skb_around +EXPORT_SYMBOL vmlinux 0xdc8f5d89 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xdcbd1236 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdcd65bfc hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xdcf87c5d elv_rb_del +EXPORT_SYMBOL vmlinux 0xdd0a6aa1 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xdd22d4f1 dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0xdd297fa3 brioctl_set +EXPORT_SYMBOL vmlinux 0xdd2a80fd tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd356d6e netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xdd44bf4b skb_seq_read +EXPORT_SYMBOL vmlinux 0xdd5b3aa8 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xdd7663d7 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xdd810edc pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddc439ca key_revoke +EXPORT_SYMBOL vmlinux 0xddc4faef sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xddfae5c2 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde0cfa63 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xde134dcf neigh_table_clear +EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xde162355 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xde23b306 component_match_add_release +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde690bd8 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xde69d3ea framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xde720722 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc +EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdec7c79d __do_once_done +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data +EXPORT_SYMBOL vmlinux 0xdedbcd1a config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xdf0186b0 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0xdf06ad4e tty_vhangup +EXPORT_SYMBOL vmlinux 0xdf087a7f debug_set_level +EXPORT_SYMBOL vmlinux 0xdf140a48 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xdf1dccdb insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xdf292777 param_set_ushort +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf30415d fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xdf4b474f dcb_getapp +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6bbd27 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfc84245 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfdfaf81 devm_free_irq +EXPORT_SYMBOL vmlinux 0xdff9eb9d udp_seq_start +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe01581b5 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xe019ca4a unload_nls +EXPORT_SYMBOL vmlinux 0xe0271986 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe03e3c3c dm_get_device +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe0559b6f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xe07ab4a7 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082b18d __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xe08a5b70 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0ac953f security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b3de06 kill_pgrp +EXPORT_SYMBOL vmlinux 0xe0b59f54 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0e429ad gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xe0e99aee file_ns_capable +EXPORT_SYMBOL vmlinux 0xe0f6c5a2 skb_clone +EXPORT_SYMBOL vmlinux 0xe10595c9 __tracepoint_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0xe10d1f47 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xe12356c9 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12af74d clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0xe13b6e94 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xe140148a bdi_register +EXPORT_SYMBOL vmlinux 0xe14cca07 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0xe15aa860 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xe16fa9bd kthread_create_worker +EXPORT_SYMBOL vmlinux 0xe18cb341 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe1954d0b inet6_bind +EXPORT_SYMBOL vmlinux 0xe1a4f16a secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0xe1d52cd4 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1f6ffa1 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe271c7b3 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe2740e56 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xe27f5fa6 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xe28da80b tccb_add_dcw +EXPORT_SYMBOL vmlinux 0xe296ba30 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0xe2b7cda8 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe2ca02bb bio_advance +EXPORT_SYMBOL vmlinux 0xe2ce444c sk_wait_data +EXPORT_SYMBOL vmlinux 0xe2cee376 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2eadbd2 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe302614e __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3313d46 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup +EXPORT_SYMBOL vmlinux 0xe3740637 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3d76a37 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe3dee633 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40769ee do_SAK +EXPORT_SYMBOL vmlinux 0xe40a1290 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xe4205caa netdev_printk +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe436eca6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name +EXPORT_SYMBOL vmlinux 0xe44c829d iov_iter_discard +EXPORT_SYMBOL vmlinux 0xe461b8da pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xe46a2e15 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xe4ac14eb vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe4d1921f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xe4e50a58 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xe4fc381f skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe50ef36b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp +EXPORT_SYMBOL vmlinux 0xe54ba321 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe54d0e52 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xe5652e83 sie64a +EXPORT_SYMBOL vmlinux 0xe56abf1f set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch +EXPORT_SYMBOL vmlinux 0xe56e55ba pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe59b3c66 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xe5a460ba __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5daea08 pid_task +EXPORT_SYMBOL vmlinux 0xe5db6fe8 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xe5ea6124 ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0xe5fec355 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61b7f5f register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0xe623aec2 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xe647889b migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xe6570cdb udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xe65e03c7 dma_pool_create +EXPORT_SYMBOL vmlinux 0xe67099f1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xe699ebc0 param_set_bint +EXPORT_SYMBOL vmlinux 0xe6b989b2 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xe6bdac52 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xe6c7e669 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe6d055eb eth_header +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6da0c8f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xe6e86fdd unregister_netdev +EXPORT_SYMBOL vmlinux 0xe6edd07e d_add_ci +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe70e184a xa_store +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe71839b3 unlock_page +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe73b0740 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure +EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe798236d jiffies +EXPORT_SYMBOL vmlinux 0xe7bdef66 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe7cb655e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe7d11c2c ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe7d32ee6 __skb_checksum +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f4cac9 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xe80e05e0 input_set_capability +EXPORT_SYMBOL vmlinux 0xe8108de5 inode_set_flags +EXPORT_SYMBOL vmlinux 0xe82f3e2c create_empty_buffers +EXPORT_SYMBOL vmlinux 0xe8332b4b __tracepoint_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xe880f7ad pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe899250f scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8ba0bf8 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul +EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xe90c026a pci_get_subsys +EXPORT_SYMBOL vmlinux 0xe90f1823 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe941e2bd fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe98c89b6 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xe994130a __xa_store +EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe99774da blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xe9a58933 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xe9aed3c2 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize +EXPORT_SYMBOL vmlinux 0xe9e2dd89 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f889a5 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xe9fc8fb3 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc +EXPORT_SYMBOL vmlinux 0xea07af5b unix_attach_fds +EXPORT_SYMBOL vmlinux 0xea3c4f97 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea3d44bf dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xea416e7e skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xea41b480 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xea4fc220 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xea509dc0 genl_register_family +EXPORT_SYMBOL vmlinux 0xea5ca235 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xea5dd81f cdev_init +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea8475f0 page_pool_put_page +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xeac233f0 __free_pages +EXPORT_SYMBOL vmlinux 0xeacba038 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeadc83dd posix_lock_file +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb03eb04 param_get_hexint +EXPORT_SYMBOL vmlinux 0xeb05d604 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xeb13e76c sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xeb1973c4 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb498981 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xeb679d09 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xeb6d28a0 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xeb790854 simple_getattr +EXPORT_SYMBOL vmlinux 0xeb97d631 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba12a1b netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xeba9865e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xebaebdf7 ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebc25f10 d_find_alias +EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xebdb0be9 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xebdb88e0 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xebf8ea64 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xec193607 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xec46de5b inc_nlink +EXPORT_SYMBOL vmlinux 0xec5a32f2 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xec616d07 clear_inode +EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose +EXPORT_SYMBOL vmlinux 0xecb1e8ea ihold +EXPORT_SYMBOL vmlinux 0xecb30741 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed20025e fput +EXPORT_SYMBOL vmlinux 0xed449bbb __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xed46350c dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed5aef39 dput +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed89085d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xeda82dca sock_create +EXPORT_SYMBOL vmlinux 0xeda93d5f module_refcount +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee310eef bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xee4d23be page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xee510823 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xee5a3b3b param_get_uint +EXPORT_SYMBOL vmlinux 0xee7c39b1 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8c8ad6 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9b1e57 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac9d11 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xeec16c6e filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xeedeb31f netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xeedff578 __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xeeedf845 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xeef3054d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xeefac5a4 dquot_transfer +EXPORT_SYMBOL vmlinux 0xeefb3b53 simple_setattr +EXPORT_SYMBOL vmlinux 0xeeff7d0f jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xef04cc7a ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xef12cfb9 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xef1fd776 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xef3c29f9 ap_get_qdev +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef5d79cf bdi_alloc +EXPORT_SYMBOL vmlinux 0xef7a51c6 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xef91713a __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefd2cdc5 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0xefe6c3c1 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff55b19 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf008a885 seg6_hmac_init +EXPORT_SYMBOL vmlinux 0xf015a1bd netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xf01d9233 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xf0270da5 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xf02d8d12 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect +EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xf06bcd53 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0b7a6f8 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf0dd6a49 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init +EXPORT_SYMBOL vmlinux 0xf0f95f18 dev_addr_init +EXPORT_SYMBOL vmlinux 0xf0fbd2b7 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0xf0fea421 input_close_device +EXPORT_SYMBOL vmlinux 0xf10b55e6 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xf116eeb5 vfs_create +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12eca03 dquot_drop +EXPORT_SYMBOL vmlinux 0xf143b022 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0xf170ec26 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xf1768520 cdev_device_add +EXPORT_SYMBOL vmlinux 0xf1808e2b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19e7338 unregister_external_irq +EXPORT_SYMBOL vmlinux 0xf1aa91ed jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xf1adc6d2 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xf1b96974 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xf1d992eb radix_tree_delete +EXPORT_SYMBOL vmlinux 0xf1d9fc6c dst_destroy +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dfc6aa locks_copy_lock +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f908f3 _dev_err +EXPORT_SYMBOL vmlinux 0xf1ff8769 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf209602f validate_slab_cache +EXPORT_SYMBOL vmlinux 0xf2379ffb d_make_root +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xf2592f4e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf270bba6 file_open_root +EXPORT_SYMBOL vmlinux 0xf27efd82 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28d1c8a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xf297e79c neigh_table_init +EXPORT_SYMBOL vmlinux 0xf29ce94c pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d838a5 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xf2e5476a jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e6ea53 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xf300415a from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf319bf0a d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap +EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3471598 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xf3480855 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xf34e5dff ccw_device_set_options +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35f2aef flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xf3861974 kernel_read +EXPORT_SYMBOL vmlinux 0xf38d3956 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39f5fbd fget +EXPORT_SYMBOL vmlinux 0xf3ad9183 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send +EXPORT_SYMBOL vmlinux 0xf3c21248 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xf3c55a52 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xf3d9e826 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xf3decc3d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fc8d68 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf3fdebcd input_get_keycode +EXPORT_SYMBOL vmlinux 0xf41f14f7 kill_pid +EXPORT_SYMBOL vmlinux 0xf4235ab8 kobject_del +EXPORT_SYMBOL vmlinux 0xf428767c bh_submit_read +EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter +EXPORT_SYMBOL vmlinux 0xf43ac8cd vfs_statfs +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf45478d8 netif_device_attach +EXPORT_SYMBOL vmlinux 0xf45820f0 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xf458ec4d d_genocide +EXPORT_SYMBOL vmlinux 0xf467b9b4 padata_alloc +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48f45d3 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xf4ace1a0 vfs_link +EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e2fbdd __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf4fde6f9 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xf518b0b3 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xf51edf09 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xf51f1b2d vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf52575a0 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xf52da5ea xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf550909d utf8_validate +EXPORT_SYMBOL vmlinux 0xf58b1b40 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf5b58205 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xf5c47f39 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xf5da6f51 iterate_dir +EXPORT_SYMBOL vmlinux 0xf5df63e6 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf600b5c9 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0xf629039c devm_release_resource +EXPORT_SYMBOL vmlinux 0xf63bed00 get_user_pages +EXPORT_SYMBOL vmlinux 0xf6431b53 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6678bf5 debug_event_common +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6943a02 __module_get +EXPORT_SYMBOL vmlinux 0xf6b62f39 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xf6e097d7 tty_check_change +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f1550e vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf700348c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf79edef2 notify_change +EXPORT_SYMBOL vmlinux 0xf7a3c550 ap_driver_register +EXPORT_SYMBOL vmlinux 0xf7a596de ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0xf7b89564 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf7b92217 utf8_casefold +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7caf8dc get_cached_acl +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7d9d71e genl_notify +EXPORT_SYMBOL vmlinux 0xf7dae140 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xf7db8cf0 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xf7fd1fff pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0xf80995bd key_link +EXPORT_SYMBOL vmlinux 0xf80ea201 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf816e217 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8504880 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xf855ab20 proc_symlink +EXPORT_SYMBOL vmlinux 0xf855ad1c set_guest_storage_key +EXPORT_SYMBOL vmlinux 0xf85662a5 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf89ce4c7 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xf8a109c2 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xf8b05467 __nla_reserve +EXPORT_SYMBOL vmlinux 0xf8c04696 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xf8cf191f pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d307b1 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf900506c __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xf904e64e netdev_update_features +EXPORT_SYMBOL vmlinux 0xf9128ce1 pci_set_master +EXPORT_SYMBOL vmlinux 0xf91b28ab xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf91e94e8 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xf934b2cd kbd_free +EXPORT_SYMBOL vmlinux 0xf9368f31 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9500d2f sort_r +EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0xf999e11b tcp_seq_next +EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free +EXPORT_SYMBOL vmlinux 0xf9a36920 d_rehash +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a667e8 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf9b7400f cdev_add +EXPORT_SYMBOL vmlinux 0xf9b9a19d input_release_device +EXPORT_SYMBOL vmlinux 0xf9c72471 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xf9d4d3a7 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf9dc9062 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xf9e86c18 get_task_cred +EXPORT_SYMBOL vmlinux 0xf9f3696e __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9f56501 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xf9ff4ce7 lru_cache_add +EXPORT_SYMBOL vmlinux 0xfa044a46 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1c059a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfa1ca0e6 fb_get_mode +EXPORT_SYMBOL vmlinux 0xfa2a9eb4 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xfa4b0c07 arp_tbl +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7b295b sg_miter_stop +EXPORT_SYMBOL vmlinux 0xfa7f68c3 cdev_alloc +EXPORT_SYMBOL vmlinux 0xfa7ff406 genlmsg_put +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa91e339 vfs_readlink +EXPORT_SYMBOL vmlinux 0xfa92f561 import_single_range +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab0a8ad udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xfaba0412 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad7bd55 d_lookup +EXPORT_SYMBOL vmlinux 0xfb28d8b2 __scm_destroy +EXPORT_SYMBOL vmlinux 0xfb35cbce tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb46106e __devm_release_region +EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xfb539433 should_remove_suid +EXPORT_SYMBOL vmlinux 0xfb5c9c7a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xfb618659 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbbd95b6 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xfbc2e655 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc93718 seq_read_iter +EXPORT_SYMBOL vmlinux 0xfbce6731 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xfbebed2b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xfbed1de1 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xfc292fe8 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xfc29a381 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xfc337749 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc7c2e37 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xfc8cedc3 tcf_block_get +EXPORT_SYMBOL vmlinux 0xfcaf4fc1 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xfcc0884a dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xfcc0fb8b ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xfcc35c5a param_set_ulong +EXPORT_SYMBOL vmlinux 0xfcc89a22 from_kprojid +EXPORT_SYMBOL vmlinux 0xfcca12b8 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfced9df9 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xfcefb27e neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xfd0526f0 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xfd0eda78 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xfd10cc65 kernel_listen +EXPORT_SYMBOL vmlinux 0xfd4831d2 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfd4ec7d8 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xfd5b21fb tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xfd748335 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xfd7517b8 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xfd7dd63b register_framebuffer +EXPORT_SYMBOL vmlinux 0xfd8fe1aa flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xfd92754f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list +EXPORT_SYMBOL vmlinux 0xfd9aff02 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xfda4525a input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xfda63cc4 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb5c4db kern_path +EXPORT_SYMBOL vmlinux 0xfdb7f6a9 finish_wait +EXPORT_SYMBOL vmlinux 0xfdb95ea2 inet6_offloads +EXPORT_SYMBOL vmlinux 0xfdc0638f __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xfdcbfacb proc_set_size +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd2aa9a tty_unlock +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0a1724 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xfe148259 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xfe167214 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xfe270dae cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xfe2fc5af set_pgste_bits +EXPORT_SYMBOL vmlinux 0xfe3ea5ee d_drop +EXPORT_SYMBOL vmlinux 0xfe432d89 dcache_readdir +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4ac8d6 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe771463 __tracepoint_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xfe7d59c1 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xfe857463 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xfe894307 device_add_disk +EXPORT_SYMBOL vmlinux 0xfe9d645a dm_unregister_target +EXPORT_SYMBOL vmlinux 0xfeb1b842 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfed473e4 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xff107d1d jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer +EXPORT_SYMBOL vmlinux 0xff368556 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xff3a0f78 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6abf06 try_module_get +EXPORT_SYMBOL vmlinux 0xff7024cd sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc +EXPORT_SYMBOL vmlinux 0xff7ec0ff dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xffc77fc1 dev_mc_del +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcf9ce9 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xffdcbbf8 nobh_writepage +EXPORT_SYMBOL vmlinux 0xffe1acdd inode_init_owner +EXPORT_SYMBOL vmlinux 0xffe67f1f seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x600a4039 s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x92b9f8df s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/net/pnet 0x368419ab pnet_id_by_dev_port +EXPORT_SYMBOL_GPL crypto/af_alg 0x055ea6a3 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x0d0bfbae af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x12c0125a af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x133d3975 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x181a6698 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x25ecd060 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x297a4060 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x6d0724a8 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x785f355e af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xb620f5e3 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xb6e156c4 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb7ea7897 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xc9a14742 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd2c84e63 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xd5330420 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xe810f83e af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xeb70fd0e af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xeea2573c af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xe33b8195 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe9b8384a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x90e684d9 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd1b281ec async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2ab1cd45 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xfc0594c1 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1f0009d8 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc8e44e27 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdc22e288 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x123e140d async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6d32feec async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x95216beb async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd1a744a9 async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x405ded9c blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x736d1abc cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9cefa5f8 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x2c665548 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x30edbcfa cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x42cb4f70 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x56634fbf cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x69e5187f cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6d9ecbea cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x76be1cb6 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb37d6d59 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb95f76a7 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd7a71851 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xdab90e40 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdf9e3e6c cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xed9894ba cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x02c19c61 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0da3cc5b crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x536400bd crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5bebf890 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x622d0696 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x830f40a0 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x86831d91 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x90c1c727 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x93fb76e2 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa13639f1 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa76fe2bd crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc8ce5edc crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0ea721a crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xe082b666 serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x4e87aa07 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x7cfaf86e dev_dax_probe +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xe1bb8fa5 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02777aaf fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0b9f1d07 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2af54355 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2cf6f58b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x650fd07b fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9c5930f3 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb1a570d8 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc4edb358 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcb06da4f fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3c2b004 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd893b77a fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd8b65ed2 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xee02c4f5 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf928fcfd devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xb48c874d bgpio_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01c2b03b drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0300bbc8 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0e3bba12 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1108e5c8 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b05c985 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b0d96d2 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x20d86e86 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x229e09c8 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26423cc4 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x266af2db drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x362d040e drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49767918 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b4e278d drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e493692 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad59f948 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbe6d5783 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc240e721 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7b72b47 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbebff75 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd34e62b drm_gem_shmem_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf17b8e96 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3abce174 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x546ecd81 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x58ce3f22 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cf86ffd drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x66835e4c drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6c2f78f9 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7191f5dd drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x83a05f56 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9afdec2e drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2be86f2 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e8dc15a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x154a84dc intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44ce444f intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x55ce8435 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5e1dba73 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x712c252f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7e1c9f0a intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x913362dd intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd6665d00 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0035451a intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x05a4b353 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xb0ba1603 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a1c5b2a to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x36989061 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6a8ba6b7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6e3c9e8d stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x87394a6c stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xac9617a1 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbcd40f1e stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdce052c1 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf1dfa4a9 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x095380fa i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2648a170 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2c56b404 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x361b433e i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x48ecdd68 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x539dafa3 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x600597eb devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x66834d63 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6f2ddf13 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x74a61b1d i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x756e2f82 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x765702c5 i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x88c082f0 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8f72b7ec i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9a866947 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa984e896 i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbb3353c0 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd713f8c1 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xeaa49e3b i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xefdca7bd i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf17bdfcc devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x14d10619 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3eb019e7 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x477b3f3b i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc29776eb i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x05308307 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x101706e2 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3cc4bfc2 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4427e0a3 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x44da2fea rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x48c7e937 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7bf0198e rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x989c6e0b rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xce947688 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd15eddfb rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe2863155 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeabb511d rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x042ef8f3 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x076d93dc __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25da549d __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b44b517 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37eb3816 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58a9df94 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61883666 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65b5af16 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65e3e6ce __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6886c7f5 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x719c6992 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81090538 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90607e44 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x939a97b8 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95f8db93 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96454a5d __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb2689bea __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc12f24f7 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcc3dbc7a __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9ea1b63 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2ba72cc __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee1026ae __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3e415f7 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc11e1dd __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x052d114d dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0b14468d dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x14f2ce69 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2348fb75 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3639e09a dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4ae3fdc5 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e54e38b dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x697073b0 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x89b46ef6 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8bbf6b9b dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1f612d3 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb85229f1 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc825f324 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd57db5f3 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe713a3c9 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe7c5856e dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeaa6e811 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf2de1d45 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5a1f2fdc dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x796a703b dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd638ed27 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bb31c4 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe756dac6 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe8c5320d dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfc0fd8d6 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x79afa411 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7af55d38 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x457c4f64 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x488ab449 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x68a7a7c3 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x698495e2 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x769fd4f0 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbb474ea0 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x00f5a3c8 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1b1be9e8 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x243ce1ad dm_array_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24507fbf dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c5a02df dm_btree_find_lowest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2d38ecd9 dm_bitset_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3b45ed28 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3d6961ed dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46768dbf dm_btree_remove_leaves +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7bc7621f dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88998224 dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9341b376 dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x95a52abd dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9955fef4 dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9ced228c dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9e798e22 dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa29d4c0c dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa2a74861 dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9c4fc6b dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xae600b00 dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb11cd6c1 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb500e95b dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb720ee73 dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcbba75fc dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd237b9fb dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd39c0246 dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5aada6c dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfcf9fe58 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x472340b2 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc8e56e36 st_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0396f4b3 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x048f30c2 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f47110 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aad1514 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c1b30fd mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d46da21 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10931187 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11fdafa3 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14ee52b5 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1aeca3a1 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d60ab31 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e425b97 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ef73d9e mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4d3ea4 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21ac9fb1 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b26833 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2797b8e1 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c426abb mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e83650a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f5552f2 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325ee084 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3407925d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38aa8de3 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d720067 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0b56a3 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42bbe557 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4502c801 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x472440c2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48c74a74 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x498ed0db mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e76ed90 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eec1fa9 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51aadb0e mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51b478cf mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x539c56f0 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56a4bf11 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f434b7d __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fa79f49 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60085e6f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61574f60 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6229ed5b mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63cd92e5 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64bc3b4f __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c30107 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x656c7f1d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65766c0c mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6823c1f8 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x699cab72 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69d36171 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72e28772 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab720f0 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bf39b57 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bfdf54c mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c7735b2 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x832333b6 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841b99c8 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d33709 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d32e2c mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86bd7ff5 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870d7d1e mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8789513f mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8897e460 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c5dd9d0 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ce6b1a8 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e27a38 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x928c88e6 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a403a15 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a856975 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b4be7c1 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ff75088 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0fc79da mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2ef110f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa34a105a mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa703b0be mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa79e5437 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae50ccb8 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf3e60ca mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafc5c22d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb27e208a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4b79463 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb53734c4 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb759125f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7df7715 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e3de37 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb808365b mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba4ca984 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2d6cb3 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcbaf3d9 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfce3830 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc19aee3a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1c51866 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc279b785 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc318ab4b mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35bb5aa mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc47ccf6b mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0f4b852 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1d1f5f8 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3348569 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd458b7d6 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd481423f mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5029bf6 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda986633 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb5e2f1b mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd49d1d8 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde783cbe mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf312330 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1188a4a mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe189e1b2 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe25e62d8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe269025b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe292de70 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe31ffc54 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe34e637a mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef411dc mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0d74503 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1d0ead2 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3e5dc35 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf47e5f16 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4dda29c mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf784eb80 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc403757 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01624f5b mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0168b827 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09d94813 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f08bb0 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1000e439 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x105178d0 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10fb38c7 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e0de5f7 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f80a18e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x220c03d4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x252d5cb0 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e7e4b4 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b2c4188 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33c41733 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x348ed71b mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37203c7e mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a3869f4 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aafaae4 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ceadedd mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fd70afe mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43c78059 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b457733 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f469bdd mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x533eea30 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562f222e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x564d8187 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567ca31e mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5722dd23 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e47571b mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d29554 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64da49e5 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65fd6626 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68846d05 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a1e7446 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b64b7cb mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f3ca4c0 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f9e13d9 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x742cf5b0 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75aedd37 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7659f2e1 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x766f17e7 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a2718d mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86703562 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87fa254d mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a72ae51 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9205505b mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92ea20de mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94ce9a14 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94dda614 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95473fad mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97389b7b mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99fde635 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b006a6b mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0c6a465 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28bc590 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5efd54e mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf2ddfd5 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe39daf7 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc582e024 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccb405b7 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd546fce mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb3c452 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1dd9c6f mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5e59814 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcc605c9 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1b25a58 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3ce969f mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57ad338 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4c6bf6a mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4f081de mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa400d2d mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/geneve 0x78dd248c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x15cdfc04 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x58d18cb0 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbe302250 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xca333b02 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe9a0bb14 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xbd94f378 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2a4c6b70 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x73d663f8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd3c1a729 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd74a0c02 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x87c486be mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x56b67446 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xb2b8c682 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0ce59c1f bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0dde8aba __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e747069 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x19cbc21f bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d26a478 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20457f94 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x283f05a2 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f870a4a __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x34b4629d bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x36448cfa bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37440883 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b4f37ab bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3cd5de5b __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40c80235 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f3927b4 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x575120de bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57de691f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61da869b bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x672f06ce bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x689e4240 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d44eb26 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7cd7046d bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d4daa68 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ffe9943 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x90a99fe9 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9763b1ec bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaad34539 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac266734 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc286e36c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd5bef194 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda836b83 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee81cedf bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf568a3ee __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8275d35 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x29f564c5 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x3c9baf06 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x866a493b fixed_phy_unregister +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x9061cd02 fixed_phy_register +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xd76ea54a fixed_phy_change_carrier +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x01daff21 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x08dc4fc4 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1e69dd42 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x23fd8b18 phy_modify_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x26e8b83d genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x27058243 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2a0a40fa mdio_bus_init +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2d7c2628 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x36bf541f phy_check_downshift +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x39060e52 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3c7031f1 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x478debf5 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x53558a90 genphy_c45_loopback +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5aaebf4e phy_restore_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x60fc8eba genphy_c45_read_link +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x64498c41 devm_phy_package_join +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x678eba6c __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x76c5a4bd phy_save_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7718bdde phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x77a2bf9f phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x77ad5382 phy_driver_is_genphy +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7aab514c phy_package_join +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7fe0793a phy_modify_mmd +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x82f0b0a6 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8663e6f8 genphy_c45_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x87140b94 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9ca52698 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9e60fa92 phy_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa2ba654a device_phy_find_device +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa3a20d61 phy_package_leave +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xadf83951 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb0dee1e5 __phy_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb2d4ad88 phy_start_machine +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb4314453 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb69106ef mdiobus_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xbede3330 gen10g_config_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc9ed1e1d phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xca3478ab genphy_c45_read_pma +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xcee65d22 __phy_modify_mmd +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd1bb40ea phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd6189de1 phy_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd832388f fwnode_get_phy_node +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe3860454 phy_select_page +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeba30339 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf5cc120d phy_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x22712bcd phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x714a72cf phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8006a938 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x91c4094a phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaae6772a phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaf948f72 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb69e817b phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbd6d906e phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe1df9c48 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x1bf71d50 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x38ef9c08 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x800e53b8 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x80b17cda tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xaf9478ad tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xb38ad9e6 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xbaad5d82 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xdcecde28 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xe235a807 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x50e7d185 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x57f88e3c vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xd0702102 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xdeebc608 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f032bcf nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x214b20d2 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2af6561e nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b6b50c4 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x307bd033 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35d0428e nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3622823c nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d3503b4 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5134727e nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x550a9ea6 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55cb56e1 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x564a19be __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x617e2e46 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63325e85 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65902056 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x665d1fd2 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76675d15 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x777e7bb3 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7df103f1 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b1004b8 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90e15e23 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94faef68 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa8772406 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xacada54f nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xacc6317f nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2a7fd9c nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8ee0122 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbcd13794 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc445c31b nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc56a0db2 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc71650fe nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8663fe8 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcde2b484 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd017147d nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb5160d2 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xece0456a __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefd9de34 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf28ab10c nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf36012e7 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf75845a9 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa710cd9 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1b5e1a00 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3370fae7 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x37e15190 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5948fe1d nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8f5187c2 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x92b3f776 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa63be578 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaac92da2 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xccb633f8 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf43a7e0a nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf7d95f1f nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xdd1abd35 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1ea15c03 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3cb5f4ec nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5e0d4d81 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x94beb7ff nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa208b32e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa31ebd1b nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xba23b980 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbc574ba3 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe967320f nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf8ad080b nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfed63f1f nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x5742286a nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x9bed07ea switchtec_class +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x072cfcd1 dasd_dev_groups +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1003aca3 dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x16f7c001 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x18c75ce0 dasd_generic_free_discipline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x206c456e dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2ebcab38 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3243ba47 dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x33fcc18b dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3f7f7997 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x42bcfd7e dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x44579909 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4666a3d7 dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4a1de2cc dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x50f9780b dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x56d0c1dd dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x61f0f488 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6515a367 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x755519ee dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x86d2b70e dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8d421625 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb1620f4a dasd_biodasdinfo +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb7728b07 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd8129b2c dasd_generic_space_exhaust +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe1e1659a dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe35f0776 dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeb693ff1 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x04bfc209 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x19b2a5b7 qdio_inspect_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x23c0e637 qdio_alloc_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x27488bbc qdio_reset_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x378a5f21 qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x449aa2a1 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x4544e4d7 qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x530f0ab9 qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x775a12d6 qdio_release_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x9bf2b7a5 do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa04bb255 qdio_free_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa9e3b46c qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc9a616f6 qdio_allocate_aob +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x02381b5f qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x115a979d qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x164a64f3 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2b5878f6 qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x426cfa6a qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4c5b3071 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4ddd263a qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5afc04fa qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5d57e734 qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x61188e23 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6345a5aa qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x64b5b3e1 qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6769ac73 qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6b969f26 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x738fe131 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x841c195a qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8ce0d934 qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8ec5faa7 qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x90f3f70a qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x991c2653 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9e507e3f qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9fcd4cd0 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa6e4fa1c qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa7bb5c80 qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb2b4d430 qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc3d3de4b qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd729d061 qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xddd0271e qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe39287ca qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xed610251 qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfda872a6 qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x0857ca5a qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x605d1af4 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fc3ece2 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14d0a27a fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b7d374a fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3cb89c97 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45ad6477 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4685232c fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e0ecad4 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5543b2af fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6283a18c fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7537e2b4 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e92994b fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93f4c099 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9805f26f fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8cfe61a fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce80005f fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd7e97d7f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe42c60c2 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x369fcb7e iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x769d5ff4 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x976bd6b6 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa0f03252 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb7aab117 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd6fa0f0e iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xdbe179f3 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x66f43542 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b023cbe iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x110ed738 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a36e475 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a939ded iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1db76b9a iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ee3c353 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3099bb11 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x390f0058 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x393164a9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dc307f9 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ea8fdbd iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43b1b7b0 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e5eb41b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5978466b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a592e89 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ca7f53c iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d02c5ff iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x726f3f34 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72aebc6e __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x803f0fd7 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81be74a5 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83540343 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x838582c2 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89e34a5f iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a436cd6 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90bc71f2 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91e94cd7 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x953fca7a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2b84625 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa58b4007 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa631417b iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8192961 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaadad2dd __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae3310a6 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb85302e5 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdacbdf5 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcefb22f7 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7e78345 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee3ca985 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeed5e9a8 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf34d6a9e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf74f194c iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa4aff73 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd6084a0 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x069c3c94 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x080f1bab iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0c208ce2 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x113737bb iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14d2f26d iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1df2c9d0 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x250bf773 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f98e29d iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x448fccb0 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ed7d9fe iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ceb46a0 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x95832dff iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9acf4ea8 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e91244d iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4003567 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7dfdc34 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebe9b2dd iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05373871 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d19ac42 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fbed601 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x256b37b9 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3304163a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3eeec3d2 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4828f7b7 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x484f7237 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48b51f47 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ac009a1 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x645666c3 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71075caa sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x748783e7 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8660532b sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8933e946 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c5f3c52 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9092b3a9 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc514bc87 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca1520e3 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc81eee7 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0cc24fc sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe58f57bc sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8e23e4f sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe97bd227 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed1d33a8 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfdedce45 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xfbb5625e fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x029e4732 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03432052 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a3fd841 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a5b7199 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1946cfd7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b66e233 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1febd7b3 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2234f48a iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22ef5132 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x248ae04b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28f6d849 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29c382ce iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f0ae17e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f7b2692 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35dcc3fb iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x501ace29 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5290ad35 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58118d8b iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5abd4145 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6571672f iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68493d8c iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x686fdf2c iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e843f7b __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bd72049 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d985701 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9002b1e4 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90ae6a7a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96683454 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99c5b1a7 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fc2dc8b __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa17cb72d iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4921105 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4a3101a iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8420ac9 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac08e1df __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad202648 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0ee090d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3789c52 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe5e14e9 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0accaed iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2f3c8d3 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc395906c iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c62802 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcda460c3 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd39685fc iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb4207c6 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee827375 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4c303579 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x626e6034 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9694ddd6 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xca2f5e55 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcfa05216 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0c1d0b23 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x56e25e92 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80e70194 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8d28e4be srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x90b70bd8 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf3555ef0 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1d7a6ef4 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2f60a1f7 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6cc4c07f __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8aaa4da6 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x910acde5 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd76ebd31 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0e09a38d of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x113d0103 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x13abbbce __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1c935a89 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1daeb2fc slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x41298a4e slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5fd22874 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x601e89f7 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6744ada3 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6f4f846b slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73f2341d slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c147d42 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e0412da slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9175f2e9 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x95842179 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x95ceead6 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9850f255 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9dbe2044 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa29c3552 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa58eeac3 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa895e68e slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3e7dc19 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb4b4872e slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc72da58e slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcac19000 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd97e2514 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1e79f67e target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x62544e2b target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x64a87cb3 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa845cf26 target_init_cmd +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x28356063 uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x2c97aae8 uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x35d4d953 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x86fb9221 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x9c334813 uart_get_rs485_mode +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xc0c3983a uart_console_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4cc708f1 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x76aa113c __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd707fc4c uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xfd633bbe uio_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x4ff19ad8 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x09186bb4 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f264578 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x11979116 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2f77d44f vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x43303e50 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x599620e1 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68590cbe vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x798c2e8d vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a92378b vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85c9a7aa vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa2364867 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaf835e96 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb67d3676 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd2ad8655 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8362100 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf139dc15 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf68713bd vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x196f8339 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x233c07b0 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x29121fe2 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x472488b8 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x599782ab vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b95a3c5 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7c17ecc2 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x81ef2403 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88124e79 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa6f63971 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad3094a9 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb6fa2f3f vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc17321e9 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc994eb1e vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe2a90851 vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1413b535 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xb9edcbe1 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x022c172f vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0fee953b vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x165599e7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20017f79 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27cf5a50 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d4b2a22 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x326fc469 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d1d4e8f vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3dad4465 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e8c0a8c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cf8ae2f vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50647c58 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53f3c032 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54d8ed3b vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a047dee vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a29987b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ff04ed5 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70dfc760 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72d44491 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x761935fc vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7637ea66 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a37e870 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ff6487b vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bd740d6 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c6832fe vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dad589f vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x996d61b6 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2d692be vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8d0e0b3 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba756e42 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3c17d6b vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4888cf1 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1c0bc38 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc796363 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe12dd686 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xecc44fcb vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf01c0895 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3e7b667 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8bc5182 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdfc19eb vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x320518b1 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xcac678c4 fb_sys_write +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7b0446fa dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc8698db3 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf435be3c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x01353519 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x57fa6594 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6aa40a4e lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x79589983 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9daf6446 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd630559f nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd8ef7ccd nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x011aab62 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0257517a nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a08608 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4174be __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a7fd33c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c7e336c nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d562360 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x133454df nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x146f76da nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15cb719b __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17f2b6d0 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1956b785 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7660e7 nfs_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b356a41 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d8b9218 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb1d093 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed32581 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20096c02 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202bee25 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27613215 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b7bc9d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e26624 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28456a41 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29f20dae nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2aa9d89f nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2aab24a1 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c21656d nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d1f36d4 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e313148 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e45d906 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3539eebf nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ab6a07a nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ac2fa55 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c0d873c nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ccf597a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d479d27 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d82cd4c nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e6a4223 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41ad48b4 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427fc932 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42de1f5a nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43781647 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471545e8 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b2d1d3e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cfe5f9d nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4da8d765 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f4c785f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52d204b8 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52de1792 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5477f9b7 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x557b8b1b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x568b94f3 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59b10de8 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b0e12f4 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d68d6c4 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e2f71ca nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6142a946 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6261b31d nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x636d5da8 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6421a0c2 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68505400 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d31893 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b6a6c3a nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ea723a7 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f924c1 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72814829 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d6e1d5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a9e8503 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b591608 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b5934a9 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c6905b9 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82831194 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85102455 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87d6bbc7 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c77ce20 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cd0be0a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db89b98 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fed62bd nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8feea970 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x905e759f nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911ab650 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x945c2794 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x973b92b6 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a1ede7a nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a8ca489 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c8f6940 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d053e08 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b04b20 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ba93c2 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ddf9c9 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5682acb nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7f096b5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9561980 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9ee0f1c nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaca3d6b7 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad696266 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0f0caba nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb37fba97 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb65c7bc7 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8ce09ee nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb98d0a30 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb539b45 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbaa738b nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcd16f96 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcec810a nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd43cb50 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe33b624 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe947e43 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeae6c7e nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6eb6802 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce1ed58d nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1085c3b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1145b24 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd114fa5e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd38e8273 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd47676ec nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b34105 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9e90db9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaf18b08 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd5212c1 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeb450f8 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1e061c7 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ef5226 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe61ddb22 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe75f62ff nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9853b40 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebea2322 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3192282 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6f15e77 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf792c9af nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf88a6462 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b65716 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9d2ccb6 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb44b275 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe0f619d nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8d34f4af nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0689e02c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07a00cee nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bf0f2fd __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d458524 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d45bae7 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f89a01b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11c1f960 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16b19c92 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ca754b6 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1eaafb3d pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f75c1e8 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x204c5569 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2429032b pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2747758b pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x296eb175 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bd95b14 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2f3826 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33eb6a24 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4835a427 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x495ab79c nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c7e99e6 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50acd13d nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5446bb9c pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58d6d3aa nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a19ba60 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a347f53 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61226b9d __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63e3793a __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64122cf9 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6517bb8f pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66f7f166 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6981c55e nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73bf923f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75ede073 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7937d468 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79885b43 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bc108f8 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f23ac22 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86f20cf8 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87440a5b pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8818ab5e nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8908f5bf __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8af64575 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c636a84 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d176e96 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fcfa7c1 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9147412b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x999a2a9f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa65969df nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab9549d2 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabdddb3a nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad0467f3 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xade63fc2 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae0f604d pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ed318d nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6e52ac7 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb76f34d5 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9024335 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc00d64d1 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1112131 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2fe9705 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3e69e83 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc40d7751 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7584b25 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca82734d pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9fb8f32 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc140434 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde827487 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xded77dc2 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe087b3c8 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe56f2bc2 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xece17ec9 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0833a39 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf43dd0fa pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4e246bd nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5cd735c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf74b8497 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9598281 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd2c4aec __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1401b8d4 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x92818b89 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x98a36106 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7a4fbc2d nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x858e6408 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc519596b nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xda282fad nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xbceab587 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x456fd3bc o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6b90e99e o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6fa9bcf9 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78ab34af o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa0c8f294 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb8f5ea7d o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc2b723c9 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfa83d357 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x228c2c2a dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4bac4096 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5ea69b62 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x884821cd dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xba50de3c dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe8f74942 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1e3cb9a0 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdace6d8a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xed3e8b8a ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf642af46 ocfs2_kset +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0x1b0f70f3 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x31d4e581 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xd7219de2 poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x8dbf7310 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf4671a8e notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x391d9714 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov +EXPORT_SYMBOL_GPL net/802/garp 0x3989e954 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x4c6197d4 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4da54290 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x61cf93dd garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xb3c3745e garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xceb154fc garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x0880cff0 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4fd912ca mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x52ac55f5 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x786aaec7 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbe50af8a mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xde848caf mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x194273c7 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xad87ffbf stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xa7859649 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb8c9e238 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/bridge/bridge 0x00c8e759 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x337ef0d5 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x44ab42af br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fedc2a2 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x62755456 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x65d5f322 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x69c20881 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x79a41304 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7da8c1da br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92074705 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x98a8cb26 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c84e0df br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xacdbea1f br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaefad656 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbcbf5a52 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6028ddb br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbb95315 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd4957ead br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdae1b8cb br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeddbaf00 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf56cc32b br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff55dfbc br_handle_frame_finish +EXPORT_SYMBOL_GPL net/core/failover 0x0f753065 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x509e9e90 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xf5e5d73c failover_unregister +EXPORT_SYMBOL_GPL net/core/selftests 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL net/core/selftests 0xa90b5a57 net_selftest +EXPORT_SYMBOL_GPL net/core/selftests 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a537de1 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2185ba9f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2356fa8a dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x317bfbff dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3445593b dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38c55adb dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3afb6d7a dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d8beba7 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57ccca3e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e6db076 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60f454d3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62821e78 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a7a68e3 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7566eb1e dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78063aaf inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81bbaa9d dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8bdfe058 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ef92e88 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93f37c00 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cdbe1ca dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4eaad1b dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc83e228c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8d4f4f4 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd0e485e dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3559029 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd60f2fd0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdca20610 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdeb60153 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe18a07c6 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea9604d5 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeaa4f5cb dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4e4fb72 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfcfcfc18 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x07a3d404 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31cb8034 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x58ce22ea dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc21917a1 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe673b6e2 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf26f8327 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x8c0391f0 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x9ffe5847 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc46f6952 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc5287127 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf1c99ca5 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x50c002bb gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe9936904 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4680ad22 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6ac9ea6a inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6ec9ec23 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7eacf48d inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x93752499 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9aa4d2cf inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9b94c6ef inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd45ebd2a inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd89c3c1c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xddc8bdaa gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1677ac41 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b3e7611 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d958508 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26a15be5 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30ff6c1d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3536f179 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x40ad7445 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x41248b63 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x547a8275 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f39fe46 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8341dfb2 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8a054491 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9127b893 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa01d1d54 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf16a8f9 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc1165280 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe18469e5 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5b50c795 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x701a1d16 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5385fdf7 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf4c418d2 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xba1494c3 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x28381f18 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x392b2ab1 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3fb98f23 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8aa0e359 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xabf937c9 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xac82093d nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdf2689e8 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xa1de73ab nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2b07cbfe nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xaa519bc5 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xeaae7afc nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x49017d4f nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x53e98ed3 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x07dcead5 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x80875533 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xafb6f133 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb96d7cc0 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc1946f10 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x204b1b9b udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2e165275 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3bd7fe73 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6dd6e1d7 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x84c86148 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x948bfb27 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa50d95b9 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaf970d65 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4f6ed7b0 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x95be201f esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9ddcf1b1 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeec12eb7 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xef4f8ab5 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf087ca55 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x62b4b2a8 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9fc11aef udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xa2be59a6 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x21c36382 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb37d440a nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf0465675 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xc47c2cce nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x102a7c3e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x462e962f nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6cd28bd8 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x88e7c266 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe581dc86 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe5d273e0 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf41c53fb nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x26b9d2c2 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4ecb7942 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x74514184 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb73c94e0 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x21684c10 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf0b7a285 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1088c874 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12450c36 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2effd947 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32aa2586 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x427bcdf0 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x66326c4c l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x796b0949 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7a3a7318 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88848e8a l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b156d58 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91cb2518 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f18fa6a l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f677215 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa331a74f l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa429c214 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa268c47 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaca8f659 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaccb6ee1 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0ec0614 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc9a24e6d l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1593b0b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x55926e4d l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa2102721 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x068e3a9d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xacdf4190 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd639a841 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdc1d9464 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdf8b4beb nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0abfa4c6 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0eee6b9b ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2dd0cd10 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x305ba085 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4419ba3d ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50e83111 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x56f82d12 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ac0510c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f5d4eda ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7a1947d8 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9facc38e ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5def30b ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb23f9558 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2bed6db ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6b5d32a ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb8ad63d ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc11a735 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf65ef683 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe1f0e83 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x09405be1 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x12d26c85 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x19853e58 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaf3d5b24 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3de9fcb1 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x593d950a nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x629d4c72 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x921f0f65 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc862804a nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcbb434eb nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe24bfea6 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0070cc57 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02f4b477 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05247b03 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1690016e nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a1b2f95 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d766f1e nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2052baa1 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x299dd656 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bcd76ec nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33c7d7a1 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a58949e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a853b14 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ba5356f nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e1c1d18 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a1e193b nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ac17ed9 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cad688f nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cec74a9 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ef066ab nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59593619 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a4f2e2e nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ba45cf5 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ced726e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d4f7237 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ecc6deb nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f052107 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62e26043 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6afa13b8 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ce9ba57 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73e80929 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x767049d4 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b3d5c95 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cef595b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fd82fcc nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91553fc5 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x915f366e nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94d80cba nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d0b01c nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a28023c nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a39b5aa nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ff3a3a0 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0de2b38 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1b2a839 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2dd3c69 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa594751e nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa640d15f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6dd83af nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7baab8c nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7ff582b nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa85ddffd nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa96ba0ac __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1467d5c nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1ffb613 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb211b4a2 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb79e086c nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb907c8ca nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaec528f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc257dc50 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc27b2c12 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc37fa499 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc44f1259 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5f1752e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcac94950 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceced8f2 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd091bfaa nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd19c81e0 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7cddfb8 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd4818b5 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfa3d554 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1de850d nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4820319 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe64cf7dc nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee47ec10 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef8a58ce nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3d306c3 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf633e992 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcefd304 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdd4f19a nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfde02339 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe61e806 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x99038003 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa6d909c4 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xd3082d4a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4f499ce3 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x502ce330 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6d67183d set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6f187b55 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x92ec74ff nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd9f77c39 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe17b2d22 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd054c3a nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd323e70 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfed84ba4 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x737e0d8d nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x01e42196 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x41c4f5e9 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd09c4b18 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd46d435e nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0fe79a61 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1375d952 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2c339bd5 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x65ce887c ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6bf76ac3 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdabe63d0 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe62e51d2 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xba95cf65 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1d9d6366 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x01a53368 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1ddc6509 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2136f31b nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0d941764 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x218f3eb3 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2808c2e0 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2bb661a1 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f539404 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3a3ff483 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x56566155 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5fcbf3e5 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x63979d46 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x654602f2 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x77d5d37e flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa77e577c flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc4f204d6 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb164407 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe1c25ec9 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xedea2023 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfcdea5de nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x052814a0 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f0fc117 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3416ba49 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x35d178ca nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4c0dbf34 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5cee37ee nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9350e78a nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9739ad84 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x98d7c520 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xde9e3ef6 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe0ef5793 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe972cd83 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeb062699 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf6f50475 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf7935357 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff19d23e nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2dc30221 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x34506a6f synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4e0845e3 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x53997d46 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x56d5401d synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x677660a1 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcac5e618 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd53cb614 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd754debd nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf01651bd synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfb1b34b3 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x002a31d1 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10411c3e nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b516961 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1bddc175 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d159059 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d53afa7 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22cc39f9 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22fdbcaa nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x347eaa15 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37271cdb nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39b791d6 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47ce078d nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bfd2081 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x58b85c85 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c497354 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb50673 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x619bdaf8 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6dcd5e3d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6efa6e1a nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x795aeb48 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8471971e nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85b07835 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88f3dbae nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8af9e817 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x988bd1e0 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fb69b10 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa885f0c7 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaed30df4 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb25f2ed2 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc12e851b nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc15bf301 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc44053b8 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcace3f30 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb6bf00c nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe192a4c7 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9a950da nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec19ea73 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef2f83b4 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x213029e7 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2e5f8bb2 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x336dd04d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4643b9d9 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x883d19a2 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcb39774d nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xefd3b35a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2058d090 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x28932c9b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbc5e7252 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4e84db16 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5f5edc02 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0e1d85a7 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3c039f8a nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9131fdc6 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xae0ba9ab nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x260e73ab nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x28faaab6 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x48bbed89 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04c093cb xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e547e14 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16e7da6d xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a0d9954 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28edab8f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f3fbc90 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31e8586d xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x35bc3a43 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4d63ffb9 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4de14e07 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54872767 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a1b1e60 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e3c3d1b xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x68e1da04 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c6eb913 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x839c0f59 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8605a8ed xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ffd4ed3 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x961ea4d6 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb17528bc xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb643b121 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd5b31f85 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc92a10a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x595a0cf2 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xab0f6c45 xt_rateest_put +EXPORT_SYMBOL_GPL net/nsh/nsh 0x50f94acb nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xe7daa08b nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x73cfa5e2 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8302a1cb ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9cdf5abf ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbb023fe6 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc2c11b0d __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdee5eb04 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x29e11322 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xab435e18 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xd3e67529 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xe95dd25b psample_group_take +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x03981048 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x0f1dd71d rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x1e4f8f57 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x220c9d09 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x2762a1df rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x288033a9 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x39e64f90 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3aadcbd4 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x486153d3 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x4b8568d9 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x4ec0ece8 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x4ee60e6f rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5d8e2288 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x60abd936 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x694915f6 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x73a40e09 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7477ee50 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7b1ad73b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x8c42bdc4 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8debe465 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x91c3991c rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb20d5b32 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb4391795 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb5192f8a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xb62d99df rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xdb302b16 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xdc7c9796 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xe046f843 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xf04bb22f rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x42a08d84 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6a20403b pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x3aef7c97 taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x3dff2951 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7d15942d sctp_for_each_transport +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9cdd9e1e sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa417489c sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcb9ccc58 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x2adb82ee smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2d91fb9e smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x2e487469 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4c81d2c6 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xaa16c9f3 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xae1df0f1 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc421f1ca smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xc7bf47f3 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xcaf07894 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xe73b6939 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x047d44f9 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7db45163 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcc87dfa6 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xce7e73c3 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x030011fa xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a4ea91 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a98dc2 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0435e121 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f108d4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07640530 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08009451 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a22f15 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x090fab25 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092c7bdc svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa0ec06 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa98cc9 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bbc1b05 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0be44f xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e50dd11 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5625fe svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7160fe xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f75a709 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7eb9cd rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11252e28 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13a93e21 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13d61b48 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14cdf499 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f0d530 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x156a9364 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192e18ad xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19dddb59 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a2f35f0 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9666df xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc0008d svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d75b945 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa015f8 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c3067c rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2426ac03 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x249a2b89 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24e406e7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2517b712 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25418ff0 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bf394a auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b25f7f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2845c4ee rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28517d6a rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a010f34 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b1b50d9 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b1d52ac svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d93ec2f xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2df14ac1 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a4d68a svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3416b1f3 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x366d549a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386654e3 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38a37abd xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38c07bc5 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b37e0af rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2fa7cd rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c7f9e75 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d10df4f xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d45f7f2 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e08677c xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec7225e xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f37b04c xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x402b50d4 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4301681f rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x432b0481 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4343fb4a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x438c7579 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b3499c rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44c64ebc rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45404e61 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4597c2f5 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ae5e50 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b7909c svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x485525c2 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4987875c sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d0ec84a svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d7882de rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5318a713 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x534f91fa xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5437399a rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55318961 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5595c580 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f268ea xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f9d86f xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563eec87 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56dec3b0 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x570cc7de svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585b5fed rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59945f9c svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59a594d8 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1fbd83 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b852cda xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b890092 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cdda03b xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d726aff xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e3c4f19 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x610a85fd svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6169d9a3 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c5e5fd rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6280c4cd rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f90465 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643f7128 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66afebb1 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d81480 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e4bf4a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf250d5 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6daa8313 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fde452b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7062dc79 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ff5ef5 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ba08c6 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d19819 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f98eec rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f53c7c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a05207 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x750150e8 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774b3286 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7786fd2b svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x779de1eb rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78da0d3a rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x795c840d svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797eb654 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a912cf2 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5f7f00 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c2493ec xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3999ad rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813792c0 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822bf973 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82666cc3 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845c420e xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd8dfb8 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e3a5440 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fed0c71 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e0f78c rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95335f30 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9716b017 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a761fbf sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c44c316 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ecd310b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f1d6a40 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa00bff22 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa05cec4c xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e3dd98 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15a40e5 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18c15af svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b17d87 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa489076a xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaad04494 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac58e2fd put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaced556b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb297a97b svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb32f5f68 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3464f7f rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3be7a4e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3cdf34a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb702ce64 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8528228 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9444cbd xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb94ced50 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0660a8 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbed3eeb cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc122716 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcd6f9c1 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcd863fe cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd641b22 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2d0737 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe459a5c rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe7f9bca rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbedce31e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf8f4157 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc027c60b svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc13487fb svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e6d266 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37189a6 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc45467be svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f4c3ed svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc54b29aa rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7762036 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc77bfe02 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a31339 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7acb1fe xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d2b459 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b891f3 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcabee9fb rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5e1534 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbf00d23 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd213abd sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf04376e svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfbaf1af xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfbc7bb8 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfdb659f xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0523637 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a9838f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd354d89a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35a287a cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3d3b489 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44e91b4 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4b7df2e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd555a610 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6bd88f6 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ab562c rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7e24345 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92c5f96 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd932f29b _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdab60c81 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc3f93f9 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4c475d svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce4f289 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa604ec svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfbe1742 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06539a3 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f509db svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4751c00 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48fdf75 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe609535c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe63e23f8 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6d96d9c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74daa2a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8731fa9 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe88f86ec svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea8ba4b9 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd8a5ea rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeff2c8c5 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2248966 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34dda3f rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf391ce6c svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41f385b svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57b8e18 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf70f522b rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa753d83 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb085102 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe53f1ac svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2a22b4 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff3003e1 xprt_update_rtt +EXPORT_SYMBOL_GPL net/tls/tls 0x1f44c814 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x21548257 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xab366516 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xf7188ab4 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x022843e0 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02c1a9eb virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09f278ce virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15086063 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x212d7347 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x257ac873 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26bbdcb8 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f67e087 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30d92894 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35e91741 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a71b8a4 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x409c3d99 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x53b8c57f virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x572baaa3 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b7ceabb virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5be80aaa virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6682d3fc virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f292fa1 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x71f9f258 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x76db9d69 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80c35edc virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99f44111 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cf0e1f8 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d450c34 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa05cccd0 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa13359a9 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6b97cb3 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae157509 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba1e5994 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdfd31f2c virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf11aed0a virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfab7f3e7 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc66f444 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff834d1e virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x095e5a1e vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1df3a33d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x201b14f0 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22480f67 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27758c44 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40749122 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x409812a2 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x466b7905 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f502ca0 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8776db7b vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9768b267 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a8529f3 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa05927da vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb1d2784d vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb844b677 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb9a539a0 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd00a591 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf4848bf vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda16145d vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe876ea98 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4029b03 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfeae66e0 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0db0976a ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x75d7c433 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8883a150 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf6aae23e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7f5dfa6a xfrma_policy +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x00132d0e list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x0026b6e5 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0029dcb7 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x00343d4f __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0047d7db aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x006230a8 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0062d30c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x00648f90 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x006df402 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x00852e3f fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x00e64bb5 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x0101adf6 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x0145fac5 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x0160222e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x016bd372 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x01899b72 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x01b813cc crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01dbbae1 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x01ec72f0 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x01f37b0b pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x01fd0475 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x02096942 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x020be76f fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x02155d0c is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02484fd2 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x02560b72 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x0276daa8 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x02947b46 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x029f0cda ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x02c42cd0 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x02dfb6e9 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x030ab938 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x032f84b0 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x033b16e6 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03441e6e sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0376a3ca bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x03803f8b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x038b6242 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03b090c5 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03e37f46 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x03f39d61 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x03f83984 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x03fc1069 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0402d04d nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x040507ba blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x0435ff22 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x043f3324 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x044be6e8 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0474e6a1 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x0483e8be iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x04983ba5 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c06694 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04db5827 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x04f494eb sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x050829b3 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x05337ff1 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x053416aa sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055fdeae devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x056b3728 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x0593786a scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x05cbd6eb sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x05cc4c3e ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x05d9bd7f irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x05dd435a sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x0622e411 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06505785 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0651ca48 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x06604e7c sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x06717dcb dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x0683c421 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x068c621e debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x06912959 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x06919156 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x06969f5a synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x06b683d8 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cfbcce xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x06df545c strp_done +EXPORT_SYMBOL_GPL vmlinux 0x06f6d9c3 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06f97359 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x073c3906 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0750880b crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x075d6486 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x07917ad5 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x07aacc33 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x07aba26a chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bbcd1f dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c0e281 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08298b2a dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x084780fa pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x084d4e3c fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x0856a360 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x086225c8 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x08661d95 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x086d2515 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0x08743aac generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x089124ff blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x08b5f231 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x08c46771 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08c489ce is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08e77e78 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x08fe881b devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x090b4c6e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x09165d57 cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0x0917fe8e fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x094231e5 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x0966b9ab kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0983fda9 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09d73c69 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x0a2848e0 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0a3624cc kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a55b2eb pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x0a5c54fb pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x0a5cdaa6 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a762ecc wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a822de0 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x0a96ba03 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0a97da4d fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x0af3a2b7 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b08524b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0b11a171 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b472db5 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x0bb0896c fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c03dd80 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x0c096f37 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c6f96ca devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x0c7bcde3 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca09c9e sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x0cacbadc driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0cca9f8d iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x0ce7c9a2 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x0cf0c305 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x0cf766fa watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0cfea7fe device_create +EXPORT_SYMBOL_GPL vmlinux 0x0cff7cd7 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x0d2e6ba6 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5326ed unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x0dd28026 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0def1fc2 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x0dfef509 gmap_register_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0e071e0d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x0e072523 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0e0c258c devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x0e22a0be public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x0e38266a vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0e57342e gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0eb9f268 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0ebc54e6 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0eebce68 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x0eedf67a iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0ef4017c scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f017ff4 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f305c1e fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x0f402aee devres_get +EXPORT_SYMBOL_GPL vmlinux 0x0f4e8a33 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x0f539381 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x0f7866db crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0f83a205 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x0fb4e89f crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x0fc0d9de gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fee864d exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x10112d5c dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x105231f1 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x10602845 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x106ee2ba tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x10a53a1c __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x10bda395 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x10d32dc6 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x10e512ba dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x1112c57a shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x11293a39 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x1132683b __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x1135045b __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x1149863c dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x116de725 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x1171bf7b sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x118394cf devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x1187ae15 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11d8b802 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x11de9fd9 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11f53b3b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x12067b94 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x120db0fe class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1235ce32 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x123c340c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x124049bc crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x124e3a0f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x125efbb7 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x12bedd21 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13187885 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134a49dd gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1376b171 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x13836596 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a45cb9 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x13b15a1d dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x13c1d5c0 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x13c57e42 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f37b29 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x140a7dda bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x140cb0f3 gmap_make_secure +EXPORT_SYMBOL_GPL vmlinux 0x1410293f tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x14184f4b alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x141d6535 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x141e01fa arch_make_page_accessible +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x144b6aac sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x14638036 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x14689020 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x1469ac93 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x147ed8b3 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x14802528 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x148031f4 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x148fdc86 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x14938969 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x149fc591 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x14aa5da2 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x14c1234f udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x14d46469 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x14d9870e virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x14f0c291 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x15138392 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x152cd72c gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x1530257a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1530c837 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153d4269 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x153fc5e8 ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0x154ca014 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155ae72f debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x155c39e9 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x1584e3c5 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x158930d9 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x15a6c109 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x15a80432 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x15a962a1 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15ec1dd0 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x1616da2a blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x16253a39 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1638853e lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x166be6ba css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x169d1605 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x16d5cebe tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16ee392d gmap_get +EXPORT_SYMBOL_GPL vmlinux 0x16f88f53 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x170c5b42 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x172a07f8 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x17321240 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x173b769a gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x1744cec2 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x176f02f2 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1770ed31 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x1796404f virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x17a5438e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x17c8fc50 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x17ec9c12 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x17fe080c kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18134dc4 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x18388500 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x18394947 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x183a1e4d xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x1862c897 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x18736276 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x188ed8e8 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x189b313f fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x189f3379 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x191cfd78 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x192e341e sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1946fcc5 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x194c5cf4 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1978db4b list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19ac99db watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x19b958f2 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1a07b1b1 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a1487d1 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x1a5551be skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x1a60ecca netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x1a615606 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a8a1e07 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x1a9e51fc nl_table +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1adee22b md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x1aedd15c crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b1e1f12 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b6fec18 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1b76a4e4 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1b81b600 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1b885ea9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1bc7b8bd software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x1bce413e synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1bd7a736 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x1bdb3044 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x1bde474a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1bea7924 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x1bfd95ee sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1c3ddbe5 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x1c5ae0bf get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c6d3277 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c907924 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x1ca481c5 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1cb3d61c elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x1cbd1325 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd2b30f irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x1ce0f120 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x1ceaaec2 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1d0d58a3 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x1d0e24c0 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3201f4 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x1d3b54d8 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x1d41f6f0 component_del +EXPORT_SYMBOL_GPL vmlinux 0x1d537b3a pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1d6ae492 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1db1c747 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1ddc3fd7 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x1ddf57f5 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1de7c4ae device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1deeb107 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e012eb6 component_add +EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e38b015 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x1e520cf2 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1e52c489 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1e690b4e pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e9ec696 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x1eaddfa4 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1eafe531 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1eb887c7 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ed7b257 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f2d801a alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x1f3464c9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f79112d fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8853e8 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x1f8c5147 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa8fcf3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x1fa90ee5 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x1fb0ff71 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x1fc074aa ptep_test_and_clear_uc +EXPORT_SYMBOL_GPL vmlinux 0x1fc3332d bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x1fd4387c bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1fdd9cf5 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x2006fa34 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2048973b tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2057fe68 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x205dc4b3 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2079a747 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208677e1 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x208abe05 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x20d45d75 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x20e003d3 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x20e6176b freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x20e6f928 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x20f56ae0 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x2107bff2 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x21198ef1 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21372643 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x21453fce tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21747910 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2177c090 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x218b4bf6 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bbaa6b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2222a5a0 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x223eb66a get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x224d5130 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x224e71e1 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x22858b67 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x22b8146b __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x22bbfce3 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x22ca28e7 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22e9842e __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x230ede97 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x233c4456 xas_find +EXPORT_SYMBOL_GPL vmlinux 0x233e2865 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x2345a5a8 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23570b9d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x236b4435 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238fb5be perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x23e21d35 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x23e2aa78 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x23f7e03c device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x23f82011 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x2419f901 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242923a0 appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x24431ba8 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2448da40 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x2451b3fe bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x245b3cce dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x2468ba7b kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x246d2638 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24ef41a7 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x24fc41e4 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x2510d5f5 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2519321d nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x252443dd devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x25369b62 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x2565f525 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25b2fa53 cio_cancel_halt_clear +EXPORT_SYMBOL_GPL vmlinux 0x25bb75aa irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c00e33 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x25cc0858 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x25d0f4cb create_signature +EXPORT_SYMBOL_GPL vmlinux 0x25e8519b crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x261318c7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x2619c4dd int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x263c7722 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x264453b8 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2653dff0 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265fc2f9 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267af2ea sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2694114d init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c66929 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2731c305 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2769d825 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x27a3678f get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x27a58cfb fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x27b3202b iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x27c17378 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f65c33 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x280bab24 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x280e14b0 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x28102471 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x2824121f crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x28364acf ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x28518899 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x2859f7c7 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2861476a screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28845faf key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x288b76a3 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ba4bb5 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x28c187b2 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0x28e6ba86 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x28feeaf9 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x29175c28 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291a986d fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x293a9fad task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x294a0a76 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x295148fe bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x295cf3b7 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x29d198dd pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f6703d kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a1ce7c1 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x2a360df3 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a75182e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2a89abfd iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x2a916e9a xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x2aad6689 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x2aae4983 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x2ac80c63 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b16943d skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2b1e40ff irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b56740b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x2b59b262 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2b81e03a devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x2b87f96a __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2b980f07 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2b99c349 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0x2bcb3ab5 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2bcb4782 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x2bd17cf1 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2bf0206b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bf392ab relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x2c032f83 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3ff38d gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x2c4081e9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7e1377 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x2cc0af91 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x2ce0fe8e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ce5327a iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cff3d27 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2d01b6d0 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x2d1af1d1 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d28a66f con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d86b734 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x2da9ca85 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x2dc9d367 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2de9da3f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e02949e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x2e0cf7a0 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2e0dd424 of_css +EXPORT_SYMBOL_GPL vmlinux 0x2e14f9a5 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e335287 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x2e5fc5f3 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x2e636f2b __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e66c1a3 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x2e74a93b sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x2e88d882 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec92bc5 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2ecc5b29 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x2ee37195 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ee93493 get_device +EXPORT_SYMBOL_GPL vmlinux 0x2f0b30f1 cio_start +EXPORT_SYMBOL_GPL vmlinux 0x2f1488f7 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f34a0f4 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f53eaa2 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x2f8c0d6c devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x3023d8e2 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x30262927 ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0x303a495a devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x305df3cb irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x30a01053 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x30b6580f __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x30c5dbe8 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x30da7058 split_page +EXPORT_SYMBOL_GPL vmlinux 0x30ef6611 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x30f20d71 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3102f4b2 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x3104743c fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x31064f67 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x311ef849 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3135ac4a cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0x31464621 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3165ed15 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x317d6a68 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31bfc033 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x31e8887f badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x31fe04c9 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x320237f0 handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x320a0d4b devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3225c682 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x323c6add gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x323de09f tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3249037f skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3253ef22 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x327a4247 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x32a864cb fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cec509 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x32d483a5 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x32f002ef gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x32f5e803 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32ff7362 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330770ef unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x33254812 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x3345b610 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x3347fedb __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x334c47f5 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x33514a46 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33900315 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x3393e576 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x33b3d3d2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x33c093a5 gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0x33c835f0 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f779c6 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x3412e7d6 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x3414c01e gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0x3420c6df dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x34240539 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x3430be8c bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x343b951a icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344725ae __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x344b6642 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x344e3c09 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345309f3 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x34530fd1 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x347f4436 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0x34a8c17f transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x34c0bff2 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x34cfd876 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x34d6b8ed badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35292d77 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x354ba6e5 cio_commit_config +EXPORT_SYMBOL_GPL vmlinux 0x355c9e91 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x3564a58f dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x35685278 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x3574ef18 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x3592a999 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x35935a65 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x35c222f2 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35c4ee92 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x35ea20f2 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x35fd33e4 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill +EXPORT_SYMBOL_GPL vmlinux 0x360a4e66 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x363ec987 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x36636ea2 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x367ebc84 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x3681f515 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x3690dd39 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ad7b65 md_start +EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x36eb6d36 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x371c1261 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3725b439 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x37329374 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x37444059 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x378b3f03 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37d55851 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x37da9f3e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x37f4950f blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3805dc60 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x3830dd7c bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3844a4f0 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x3847da1f tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x38527a63 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x385db61c __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x386b2f73 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x3875305c fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x388edddf dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x3894f293 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a6f9a3 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b4cdf8 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x38c0e4ed fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38ea17c4 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x394f119a iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x39791a24 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39929628 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x39a654da synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ec7f75 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x39fe2aa6 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a2c70ba sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x3a4c3dbf kvm_arch_crypto_set_masks +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa02fb8 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x3abd4f16 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x3acc7f35 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3aed8bbb find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x3aef90d3 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x3af13180 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3b05780d metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x3b0e0c71 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x3b1b1a18 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3b3bb176 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3b3df6de crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x3b42e4fe __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x3b5fde3c seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b8b130f perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x3b9092d7 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9dbcc3 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x3b9dde20 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bac91a8 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x3bb8bd2f __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x3bc61d95 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bdc4b61 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x3bebbc52 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c3c5422 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c52c9d4 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x3c614854 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6878bf blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x3ca4de56 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3d3f0d6d blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5a4b76 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0x3d5ffd06 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8a1a81 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x3d9c175c dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daa474f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3dbedf14 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x3dcbbdf5 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x3ddfc7aa mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x3de30ef5 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x3de31c94 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df79a5e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x3e0d1526 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e1041b0 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x3e134520 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x3e2be4d5 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x3e480ec9 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x3e50982b kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x3e60b4b4 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e853651 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x3e8845cc tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x3e919bd6 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x3e92eb19 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e9afdd6 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3e9f3531 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x3ea01071 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x3ec5830c crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3ecc0933 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x3ecf8c00 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x3edd5fd7 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f01fcb4 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3f2092e3 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x3f3636b1 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fb06a3d pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x3fbf2a2b request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x3fc004ad sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x3fc2474e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff5e906 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4014fe1f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x40251dff device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x4035512f blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4064b5db fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40802e72 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x4086a0cd pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x40997517 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fc812f platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x4107d314 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x411ec519 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x41241ac1 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4133c176 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x417abf67 gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x417b5db8 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418579b4 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a112e1 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c9cd49 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x41cc852a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x41dbb524 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f126ed simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x422125fd platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x424e4d03 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42930da0 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x42a08e7a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x42b38998 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x42bd20d6 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x42e640c4 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430fa18b cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x435e374c xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x436409e2 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x43a20f0d bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43c42d1d cio_clear +EXPORT_SYMBOL_GPL vmlinux 0x43e50e62 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fc3250 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4435f573 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4443523d irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x445f8b80 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x4467bc77 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448c4c22 ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44ddeeba sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x44ef75d8 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45091e06 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x45353626 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x4541cd37 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x454fda60 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x456b7f50 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457a5a48 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x457cba45 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45829f4d tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x45884a76 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x458b873e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x45ccdb54 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x45e0fcdb __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x45e5f614 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x45fa120e get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x45fcc835 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460b01da task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46288f13 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x46429f19 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x465d357f devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469083e5 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46a352e5 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x46a997d8 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x46a9d2db __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x46a9f8d1 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x46b43d5c crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x46e3129c disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x46eaf4f5 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x46eb354a fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x470083c3 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x470bd982 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472c87a1 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x478805a3 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47e7696d srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x47f6ea38 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x4801d507 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480516d4 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48397093 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x489d628d fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x48b716c8 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x490f1428 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4937fb01 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493a0c0c devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496a07b6 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49956125 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x49b13f11 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d32001 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x49d9ad75 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2cb4ee vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x4a4bb09d switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x4a6547ff devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x4a816b9a gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x4a905363 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x4a9b0aa2 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x4a9dc057 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4ac55ea6 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x4ac768ee sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x4ad4123f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4ae285da __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x4aed6ade find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4aeeb368 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x4af5bdfb fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x4afbe423 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x4b271543 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b59360e dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x4b72009e dynamic_debug_exec_queries +EXPORT_SYMBOL_GPL vmlinux 0x4b910fea scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x4ba7c997 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib +EXPORT_SYMBOL_GPL vmlinux 0x4bb3bb9b sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x4bbab446 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x4be03e53 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x4be6070d rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4bf1f292 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x4bf38af6 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4bf79aea lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x4c4d8dc4 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4c708f9f sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x4c738176 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x4c8c6902 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x4caa0ca9 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4cb03b29 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb3ab27 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4ccd2e9b wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x4ce2b933 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4cee1206 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x4cfa576e crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0f37b3 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x4d117b85 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4d14a0f8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d44aaa3 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4d4c8606 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d4de221 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d73fc0c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4d80cba4 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4d8f685e device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d90dff3 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4d930c29 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x4d93e92f crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x4dade3c9 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4deea7e7 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x4e2825f3 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4e292d7e fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x4e3c88bd gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e3f7980 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4fdeb5 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7bb5b3 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x4e7f7c76 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e7fcb0a sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x4e90c76b fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x4e9e6f5c pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4edcb8b2 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4ee27415 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4efd5ff4 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4f016c90 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x4f12ef62 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x4f1f9af6 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f8a3a28 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x4faaab2b irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x4fcef7c0 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x4fd08e1e dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe5589f ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4fe93df8 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x4fef8d83 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x4ff65566 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x4ff9ac0a _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4ffdec78 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x502f2d5a blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x5030dda0 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x5081b701 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509651de kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x50b7e402 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e90b32 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x50f96a50 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x51a8d27b driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x51b6a2fa gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x51cc7b00 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x51d0faf3 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x51eb8bac housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x51ede8f7 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x521ab9e2 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x524cba0d iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x5265e9ef raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x52a6ade6 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52bdb846 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x52c1ffa0 gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e9db7e nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x53092ad9 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x53420e7f fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x5359a0be inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x537c0109 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x53a6b0f8 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53db001c bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x53e1b3fd perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x53e2d556 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x5418f4a7 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5419ee46 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542b0901 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5436c929 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x543a5445 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x5442556f pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x5461e146 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x548112bf device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5485951c clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5495a9fb vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x54caa4db devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x54e02f50 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x54e7116f __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x552b8a22 s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555b943b dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x5566155a gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x558a941f devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x55ae2ebd is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x55b1c78b kvm_arch_crypto_clear_masks +EXPORT_SYMBOL_GPL vmlinux 0x55c06365 ccw_device_get_chpid +EXPORT_SYMBOL_GPL vmlinux 0x55c70e0a sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x55fe9c94 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56129788 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x561f0941 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x562479fa sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x563406cb pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564ef37e sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x56639391 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x56871db0 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x56875951 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x568ce256 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x568e8373 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x56c8b5af css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56db2bc2 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x56e59c2f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x56f83947 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5710784b xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x5780595b sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a17ebc l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x57a4e6be irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x57b52376 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x57c175a3 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x57d56a2c firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f70547 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x58100bc6 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584f72b0 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x5865bb07 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58885d23 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x5891360c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x58c9e67d irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x58d3f4f1 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e64b7f tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x58f67460 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base +EXPORT_SYMBOL_GPL vmlinux 0x5983e507 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x598c67ad do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59efc4fc iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a279df3 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a3b10d1 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5a46bc5c iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a54edd7 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x5a671bbe device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5a676794 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a81d821 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x5aa885da tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5aa980d2 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5ab2fd00 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x5ad40afd class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ade6c58 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ae03785 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x5b03f3b5 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b4b8c0e exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b714105 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5b764674 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x5b9a7396 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b9aa82a dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x5ba77442 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x5bb62cd1 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd42553 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bfe2196 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x5c2123ed sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5c2df93d auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c2f6cca elv_register +EXPORT_SYMBOL_GPL vmlinux 0x5c31ee25 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5c361c57 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c41740c trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x5c62ddbf mptcp_subflow_request_sock_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c64222a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5c6ba71a iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8a914d gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x5c97e0bd gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5cb850f7 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d58707d netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d77d976 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1d867f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5989f9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5e5f4c84 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x5e7337e9 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9bd6a7 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x5ea09b15 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x5ea512ae dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x5ea6a90d __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec16abc inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5ecdaa6d posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ee90253 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x5eee7b1f sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5f005172 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x5f00bf90 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5f064513 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5f0af922 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x5f0b96de bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f1e2d33 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f4390e1 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5f4c4d3e crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x5f502bc5 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x5f635d85 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7899ab platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5f8d4596 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x5f941d2b blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fab899c dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5fae20b6 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fd49682 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6007716e kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x603ddbe3 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6077af52 user_read +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60897698 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6092a354 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x6098e23b crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b5b007 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x60c0cf91 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x60da2a6f device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60ec5044 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x60f17b37 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x60f834be dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x61018354 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6108ccbf metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x610f1cee gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6122b309 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61576eb8 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x615beeb5 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x615fa88f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x616c29ad input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x6177373f rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618c9e94 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x61935737 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x6197bf75 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619dc72e balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x61c04215 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61cb041d virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x61d61df7 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x620cc560 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623f26b9 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x624255e7 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x6245d53f xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6261de6c ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x6280f88f user_update +EXPORT_SYMBOL_GPL vmlinux 0x6282943a virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x62ab007a bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bc1771 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x62c0b3ae inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x62fe6b57 ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x631d1483 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6338a386 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x63560f92 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x635777c2 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6372b95a tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x6379ced7 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x63ae87d5 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x63bfe5ce blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x63e07374 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x63e4dfb3 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x63faaf12 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x6455f619 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x64891a11 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64947700 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x649508c0 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x64acda0a crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x64b6c43b crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x64bd0656 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x64bf8e79 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x64d2a0fc sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x64d79683 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6510bce6 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x651f50a5 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x654114c6 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x6549d089 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x655ea853 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x656938c8 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x656a4aa7 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cf9ed1 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x65d6b7f0 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65d6dc45 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x65d9e203 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x65e79e69 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x65ecbcba posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65fc0853 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x66136838 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662910b3 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x665293f8 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x665590fe platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x66611eee unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x666cce4a iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66896543 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x66a0c351 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x66b2bc5b bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c507e9 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x66cf212f debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e05ef5 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x67285bd1 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6785c6d8 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x678d4b4f dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x67933a71 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67938c9a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x680631ab iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x681c2b61 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x6826711e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x682bdaa9 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6832cc28 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x6863582a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x68768157 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68bd4161 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x68bf5299 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x68e24ac1 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x68ed1431 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x68fca55d umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6917f258 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x694472c9 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x6954fb1c md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x69761c65 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6991463e gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x69aaa0fd pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x69b9b2a2 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x69bca79e pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e9f3f6 css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a3062fe tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a584dfd ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a5f02c1 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ac0d91c pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x6ac6104e gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6af61b14 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x6af9da98 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x6b08a994 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6b1452f8 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x6b21a2cd serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x6b22d955 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x6b26b490 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x6b26bbef umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2f2100 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x6b30e1de tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b5a57d4 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x6b667897 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6badd3a1 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x6bb46014 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd37fec kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x6be2bb72 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6c05cbd4 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x6c19f792 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c39f948 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x6c3c0154 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c40d6e4 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c7c1f44 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x6c842fc9 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x6c88cf41 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x6c8adc11 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c95d22b ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cd17393 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x6cec5105 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x6cec51f6 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6cec88b8 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d07957f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d11b13a crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x6d287a6d kill_device +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4db47d dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6d4dda46 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6d5ab310 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x6d5bcdbf gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x6d5ce483 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6d67bb0e __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d6c451b crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d731ddf platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8403c1 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x6d97e4de crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x6da7ed0b tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x6dad4f85 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x6db4173f mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc33db8 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6dd48f17 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dfae5df inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e4e763d sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e799317 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ee15be4 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f0b5a96 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f31520d pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x6f3647ac mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6f456e01 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x6f622eab gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6f6ad31d devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8813f7 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6f9d8df0 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb2dc99 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x702b7b5d dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x702da575 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x704ceccd devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x7067fc2f __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x709d156f input_class +EXPORT_SYMBOL_GPL vmlinux 0x709ef6b7 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x70b18352 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x70b3d6f3 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x70b4ede0 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x70bdd1b5 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x70fe4775 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711cf1e1 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x71209d29 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x71243fb6 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x713c8c71 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7140dfcf kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x7146ce16 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x7156f84c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71650819 add_bootloader_randomness +EXPORT_SYMBOL_GPL vmlinux 0x716f6188 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x71710138 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7171d936 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x7187b915 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71ed2fe6 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71fb2754 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x721ec71e irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x723990e6 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7250f549 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726bb1d0 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7286bb48 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x7296dd28 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x72b9662c fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x72c085e7 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x72c3f82b crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x72cdb590 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x730f949d perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x730fef6f fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7314981f pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x73348ce3 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x733f66a6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x734f8600 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x73536ca9 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x735ad370 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x736ae832 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0x737dec41 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x737fd983 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x73a631f7 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x73a6eb13 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x73a75399 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x73a778e0 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x73c60096 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73e40a79 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x7407d6af get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x743d7031 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x7449c0e0 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7456a7cb tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x747e1b65 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x747f0876 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7481ff43 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x74998dd9 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c048ae crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x74c2e69f __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x74cf063f bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x74e5c167 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74efc775 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x74f27173 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7500c01b __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75370b7c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7548985b pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x754f0b72 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x756b570b free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x75820c3b fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x75cbb7c6 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75edf7b3 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7625b75b screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x762ab8c2 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7648c612 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x765d650e clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7668269a iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x76789028 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a672e9 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x76bdc25f fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x76d886c8 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x76de7267 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x76df1f5a kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x76e3e1d2 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x76ee671e devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x77140dde ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x771a8ab3 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x771c38e7 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x771c7906 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772cad8a __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x772e3cf8 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x7730f500 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77757fa1 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x77766c8f crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x77897943 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a32446 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x77ad2754 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x77bb58c6 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x77ce4639 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x77d18c8f platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x7830d8c6 device_add +EXPORT_SYMBOL_GPL vmlinux 0x783e5915 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x78464587 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x784efd07 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786fea0f ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x7870d220 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x787be59b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78992089 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78ab2a8c tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x78ae9f55 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x78e1b099 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x78ef0b2d sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x78fad5fd pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x790209bd l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79137b5e scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x79299878 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x79346790 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x799c6820 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x79a38ed4 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x79a72972 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x79a7e9e4 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x79c024a0 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e99b8a fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x7a3f89ae pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7a510135 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x7a5111c1 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x7a5dacf8 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x7a665857 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a949c6e vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7ab8511a debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad30a82 smp_yield_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ae0425d pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x7af8eaf8 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b033894 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x7b048a60 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7b1f82bc class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7b20e006 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b26591e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7b468ba1 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x7b524a76 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x7b558aa5 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b81a5c9 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7b84d896 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b8be07e pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x7bedd771 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7bf9290d skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x7c038fc5 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x7c188bfa virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7c358064 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x7c3e66c2 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c599427 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7c720f72 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7c81dee9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7cb5eafa crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cdb3eb9 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d020fd8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d0b5f61 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x7d0e473d bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7d2e7456 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7d383b7f sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7d4fcba2 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7d6153cb __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7d70ceb3 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7d787d57 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x7d81d426 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x7dba61e7 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x7dbb6de3 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de2c81d mmput +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7df4dfb7 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x7e0106a0 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7e1f9a35 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4e2b30 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x7e5991ab iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7e65abb8 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x7e743fde inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e87a43d addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7eafe34b pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb24495 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eba7f20 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7edbe5d9 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7eeb3c92 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x7efdecde __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7f3551d1 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f648633 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f830817 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8cdce1 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x7f8d98cb disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x7f966438 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7fad5bbe skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7fc30236 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fcd8ddf tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x7fdb47d8 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8241 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x800693bd pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x800c17c8 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x8032a93b crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x80631c65 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8081014d virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x8084f046 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x808c0b90 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a9ab4e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x80ab0796 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x80ae8ccd skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x80b5eae8 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x80b8e1aa proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c94142 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d7af86 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x80e95ca9 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x80fe25bc tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x80fe4a49 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x81193124 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81809986 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81bfe3ec pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x81c236cf put_pid +EXPORT_SYMBOL_GPL vmlinux 0x81c5f574 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x81cd48ec fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x81e6fd0d bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f61243 gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x81fd1a56 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8239fb08 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8266f3dd sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x826ef507 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x827b72fb inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82eff4ab trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82faf7a7 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8305d76e ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x830713df gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x831105ec locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x834c8d9e gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x83896208 enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x83a9ccf1 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x83d59845 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x83d80c4d dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x8402de36 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841f99bc mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842788a3 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x844fba03 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8476b4dd crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x84883943 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x849ebc1a kvm_vcpu_gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x84d7f8a5 gmap_shadow +EXPORT_SYMBOL_GPL vmlinux 0x84ebc583 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x8500c8ea fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850d926f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8511d8df nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x852d4fbc gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x85307ab4 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x854c2bb9 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x857fbc05 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x858cb88b crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8590cecd blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x85edcdcf devres_release +EXPORT_SYMBOL_GPL vmlinux 0x85f6c2b9 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x85f9cd82 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x860d674d anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x861db6ba devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x863938b3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x866d1192 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x867196a6 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868b8764 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x869f6462 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier +EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d54920 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f10032 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x86f1b7d6 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8703df66 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x87040cf7 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x870f1bc5 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x871a6307 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x8720e0da devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x8728b555 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x87542aeb skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8754e426 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x8756ecd9 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x87660e47 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x877f8584 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x8783baf4 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8799c031 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x87cede45 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x87efedd0 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x88150d09 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x881fb62b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8830c9f5 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x88437b53 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x889480d5 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x889dd921 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b5aebd crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x88d05114 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x88d0b452 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x88dcad9e fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x88e9a51f ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8900e6fa iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x89036017 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x89065341 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x89214b5d sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892fcc3c set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89442dc7 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x89572f8b blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x8985a326 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x899937f4 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x89aa6a1e addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x8a3d9e7e blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x8a615a20 __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x8a6d03f0 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a9d4d76 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8aabbf56 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abb9eb8 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x8acaf2e9 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x8acc2f8c clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x8aef9907 put_device +EXPORT_SYMBOL_GPL vmlinux 0x8af1bb17 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x8afd1a35 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x8b36c65b rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8b37fe92 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x8b6cc354 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x8bafe308 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8bb2a9dc desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x8bb3d2d9 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x8bb53912 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8be1adc6 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x8bfc100b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c1e469c gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x8c22bb91 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8c303686 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c51467b pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x8c782dde mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x8c895b56 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8cb3c912 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x8cce1b00 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cf0f780 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d0168d3 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x8d046617 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0eb7e8 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8d12925e dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x8d19bfea fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d39fd74 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8d8e2dcd generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbf0a59 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dd1b0fe tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8df7429e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x8e05de6d vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x8e0dd4b7 gmap_convert_to_secure +EXPORT_SYMBOL_GPL vmlinux 0x8e190991 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x8e20d944 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x8e2c5147 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e510088 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x8e5841c7 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x8e5b0633 ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0x8e65fc95 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x8e6ecdff tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x8e762db0 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e77bed5 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x8e92cf6b strp_process +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8ed06001 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef59486 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f4f02e8 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8f5dc9b3 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6f358a do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f9742ae ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffe2c0b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x902b504a gmap_pmdp_idte_local +EXPORT_SYMBOL_GPL vmlinux 0x9032fbfb pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x90385320 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x906443a9 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906abb4d msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x9095a633 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running +EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x90aa032a md_run +EXPORT_SYMBOL_GPL vmlinux 0x90d254a2 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x91212478 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x9124d451 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x913caa57 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x9154c2e4 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x9157a905 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x915a239c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x916c1268 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x918f15bf crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x9193eb01 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91ad5e1c cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91bd3e95 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x91cb2f06 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f76289 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x91fe3fc8 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x92088892 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x9228e705 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x928ba149 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x92be0faa cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932710e0 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x9338a62c pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x936aacc1 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x93797df5 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x939c20c9 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x93a775b9 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x93bf3b04 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x93c4f951 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x9405bb1f fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942e3e1c __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9439a490 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x945614ca relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x946f1b41 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x947a9822 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x948a238a dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x94a86e72 cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0x94cb4d00 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x94d7a04b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x94d9d49a bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x94e1a3e4 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x94ef44db blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f3c2d3 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95367286 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956387d8 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9592fe66 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x95bf58d7 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95f7a42c __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x95f8d56d attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x9609ba8c get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96271416 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x963ea554 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x9646c54d crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9656c518 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9673f705 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x968de527 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x96b734cf sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x96bab996 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x96d41dde crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x96e49a97 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x96e806f3 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x96f3a691 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x96f65130 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x97076087 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971ba299 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x972af546 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x972fc25c irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x973d9070 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x973f270d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x9744cbc9 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975b1396 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x9768485b fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9778732f blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x9782b495 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x97c93a7f fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e755b0 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x97f3b9b0 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x982f4ccc crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x986dd5e7 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x98780640 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x98797cf9 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988cae48 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989d038d inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x98b0395c device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f98b6b fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x99585a09 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996f2d24 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x99d5cdf5 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x99f7b465 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x99fe793a dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x9a0a37c0 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x9a0a697a blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a3d7753 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9a88d562 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9a9198d1 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x9ad765c6 kvm_s390_gisc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9adf03b5 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af1f92f __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x9b361e1f badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x9b596ffd debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x9b5caf75 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9ba1730c l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9baf8118 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x9bb0735e sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x9bb9325b devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bc08664 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd6a091 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c0a59f7 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x9c1201d7 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9c1bb088 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9c2694c1 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x9c42670f kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x9c501020 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x9c561a1a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x9c5edac9 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7b4d0c bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x9ca5b3ab debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x9ca7b3ae irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x9cb77c10 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9cd39301 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9cfcbce1 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0b2fc3 pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d47e593 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x9d4c59b6 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9d879bd6 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9da91b48 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x9db96eca __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x9dba5777 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9dd6ed34 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9dec814f xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x9df4a2a8 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x9df60ed3 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x9e018752 pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x9e0f5cc5 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud +EXPORT_SYMBOL_GPL vmlinux 0x9e2e5fc1 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x9e3bdf08 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9e42d4d6 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e64f670 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9eabd2b6 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x9ebc4bfb bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x9ebe18d0 cio_halt +EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef9b5d1 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x9f23dc86 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9f54ec7b device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5cf61c fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f6bad70 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x9f794bb0 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x9fb3d09c pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9fce3bb5 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fda99f3 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec1298 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xa01f5e5d kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa044e24f ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05bf14b devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa069db7d iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xa06b0645 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xa06f30c9 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa073a1cb platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa097f242 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xa09ab36a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa0a130b5 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xa0ae825a virtio_finalize_features +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0e66463 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa106d6ea fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa196aa0e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xa19c96c4 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xa19d6c76 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xa1bc5223 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xa1c327b8 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f6ed security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cadd5c __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa1dbf75f device_attach +EXPORT_SYMBOL_GPL vmlinux 0xa1e12db2 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa2085d22 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa214e9e2 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa2232aba device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa23eded2 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa25f5808 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xa2666245 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xa268b430 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2bc2ca1 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa2c12c01 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e7e8fc __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa2f4c1b8 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa2f723a6 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xa30bc9d7 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa31e8564 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa324204b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xa33a97f6 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xa344eff0 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0xa36d818a platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xa383ab1c bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a34037 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c9ec5d gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xa3d3d049 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3ffe87c skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa4003fc1 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa42efcee dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa4441e8e crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa4792308 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xa484d1b5 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xa49cfab2 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa4a5529f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4fc9c20 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xa5128d1b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa51f6569 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa5343349 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa53db567 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xa54de030 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xa56d4328 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable +EXPORT_SYMBOL_GPL vmlinux 0xa575a703 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xa5b54331 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xa5b7245b perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xa5bb0480 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xa5d94ae4 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xa5de89f3 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa642494b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xa642a243 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xa645e60f get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xa64a9966 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa64b9773 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa67fb68e md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa6862df3 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xa68c07ab lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6c10cbb sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e4ed91 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xa6e92eec ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa6efc086 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa6fc5d9f bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa70804ce crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7134e9b check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xa722cc9b fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xa7328e6d hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa73678c1 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa7381d46 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa741019a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa76d0f46 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xa785d6d4 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xa795a6e5 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7ad2edd replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xa7bb928c bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xa7c1ba66 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7e77b21 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xa7efc4f8 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xa7ff0eaf evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa806324c udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xa8124295 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa82ded8b fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8747779 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa89f7a02 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xa8bfc0fc dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xa9154bb1 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xa92b2eff __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa95557eb tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xa95c321b iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xa95de309 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xa983c30e fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa9dc2a1c kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa9e16e13 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa07923e linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xaa07dc28 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xaa12183c sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xaa1622d8 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xaa215cba irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xaa21f318 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa5208d1 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa81ff6b dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xaa893d06 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaceced1 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xaaddf5ee ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xab1657cf blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xab350dad component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xab4aed4e trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xab5731b0 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab734bc4 ccw_device_get_iid +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb6154c skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabf7a0a8 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xac1185dc handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xac1c837f cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xac26f733 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xac2c05b8 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xac751e0f bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xaccbe231 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xacebf423 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xacf5f2d2 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xacf68c69 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xad0aca1b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xad17586f relay_open +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad3a94b0 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4423ed cio_cancel +EXPORT_SYMBOL_GPL vmlinux 0xad4b3fab switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad9a4be4 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada9c4e4 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadfea498 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae116bf0 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xae219f82 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae234d44 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae445bf2 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaee6dd8f pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xaef1ba4d irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xaf096ad2 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xaf0a53d3 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaf1c1461 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xaf25eee7 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf4480d9 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xaf6840c7 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xaf741b38 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xaf823828 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0xaf99e10d devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafb67758 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xafbe3ccf tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xafd1b0db pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xafdc3298 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff08fbe pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb016ccff iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb052bc06 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb066c34d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb07c0c6a md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb082021d tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d6adbc crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb0f1800d pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xb0f9e704 xas_split +EXPORT_SYMBOL_GPL vmlinux 0xb0fa3b6a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb137f5ec rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb13e0b1b fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xb14567e7 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb15406bf ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xb15a786b scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xb15b552a sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb1a6ac67 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb1a8f9dd gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb1ae52c9 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1c53c01 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xb1c85427 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1efa3db debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb200b660 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb257a875 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xb265456d devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb270f939 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xb2914fe9 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c2e3b6 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xb2c8cc30 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xb2d64971 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xb304929c param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3220eed security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb350d911 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb369d24e set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xb36dd590 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb3827516 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xb3986e70 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xb3a6d200 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb3b69221 __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xb3b980e4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb3bfeb92 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb3e15f24 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb3e3cf78 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb43f83c4 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4410a40 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb47e2452 blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb4b82ccd switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c162d6 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xb4c5c8c2 vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb508f9ce sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb51a1c2a fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xb51b5271 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xb551b975 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xb55775e4 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xb577236e device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb5778b70 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb5997ed6 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xb59b46f7 gmap_put +EXPORT_SYMBOL_GPL vmlinux 0xb5b95d7d tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xb607387e __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xb6166b63 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xb6198efc platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xb62188a7 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb628f429 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xb63469c7 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb6435140 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xb66181f8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xb662322e lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb69bfc86 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb6a378a2 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6b24316 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb6b50c69 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb6c29e8a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xb6d1cbe1 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb7016b4c fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb70b2f66 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb716e829 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xb72605f7 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xb74e3ffa scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb781d60d call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a65065 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb7b350ed klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb7b7005c pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7d45006 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xb80f8ed5 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xb8172e14 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xb81cea7c xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb83b0b7c irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xb850ceb1 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xb868f519 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a47bcb blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb8a9186a splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xb8bca7fc event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb8c7dc61 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xb8ccab6e inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d6ca52 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb9026024 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb91e1a1f tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xb9207e7c dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xb922d344 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xb9285035 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9286611 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block +EXPORT_SYMBOL_GPL vmlinux 0xb9416c67 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xb9570df3 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96b14b2 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb988cf6d ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xb9950b57 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xb9971768 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb9a29229 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c71553 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9e68e83 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba1200e8 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xba139432 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xba2d99ca __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xba3b73ff cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xba3ededd is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xba40336e pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xba4fb013 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xba878ed3 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba9518be blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xba9e6ebc raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbac6c1b9 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb04cfc9 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb216e70 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2b4f07 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0xbb356a7a ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xbb473c4f iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb593568 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb712830 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xbb7e1544 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xbb82b09a iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xbb85dbc2 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xbb872bdc fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xbba1818a device_register +EXPORT_SYMBOL_GPL vmlinux 0xbba93450 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xbbb57ed5 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xbbbee2f5 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbe30ac0 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xbbe36916 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xbbef4f09 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbbf1318c devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xbc079d37 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbc0de10a crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xbc0e035f gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xbc53d567 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xbc575551 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xbc6395a3 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc72f291 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbc810d32 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcbbd103 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce03534 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd0f8014 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xbd21ec02 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4a6697 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd6afbc1 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8541cd __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdde2e71 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xbe14c01a cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xbe159adf dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xbe1a5735 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xbe22e48d set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xbe2b56c4 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xbe3f8b43 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xbe4677d7 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xbe46b76a blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea1d0d6 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeac5de5 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xbeb879f0 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xbecb1db1 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xbee2bdc0 gmap_create +EXPORT_SYMBOL_GPL vmlinux 0xbefb48b3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf141388 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xbf2c2ddc debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xbf31998c pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbf31a82d pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xbf4e88f4 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xbf74304b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xbf777a48 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xbf982711 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xbf9ebd64 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xbfa8180c pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbfc0eaaa __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xbfc53c35 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xbfca2b0e bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe96bb9 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbfeaac2e crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbfeb887f kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbfeca096 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xc025e503 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xc03d3552 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc06fa203 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xc07e2260 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b98ef8 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xc0d703ed gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc0e30134 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xc0ea9843 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0f03079 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc114affa dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc11ced18 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc1bf7f4a sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1e8c88f __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xc1ea8c92 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc1f4042c __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc1fee3b2 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xc21bb72a devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc22385a5 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24a044c __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xc27c6d95 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xc29d3c0c ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0xc29e7cb7 cio_tm_intrg +EXPORT_SYMBOL_GPL vmlinux 0xc2a1cbaf __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc3112804 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xc31c4606 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3574157 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc38d7e71 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc3a9cdc0 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c58540 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc3cbbe10 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e5a14d devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc40161f3 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xc412309f pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc44136dc device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc45ee2ef gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag +EXPORT_SYMBOL_GPL vmlinux 0xc4810203 nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0xc48406b4 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xc4859a25 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xc4945733 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xc4e94161 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xc4eed4fd event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5097a30 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc5256164 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xc53ba24f atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc53cd7e4 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0xc559c5fc gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5b4337c __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xc5c69dfc skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xc5ce2706 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc5d3f940 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627ec3f noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xc62dea7d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xc62ed88f crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc654a963 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xc65d28aa fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6963cec css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xc698b24f crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6fb3df0 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc70c1ae7 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc70dcbe0 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xc7169808 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc71edc77 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0xc744b27a pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xc75eadc2 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xc76e5080 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc78e6543 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc7a0a7c7 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b9cf03 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xc7da30da xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xc7e0aec9 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7f8b684 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82deb86 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xc89681da mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc896896a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc8b4b7db dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc8ca06ce perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc8d9781b __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xc8dd66c6 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f70930 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc902d8d2 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xc90b4b14 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc90e8ad8 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92d99ca PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc962b889 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc98211a1 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9aa80ea kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xc9e13c87 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ee6629 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xc9ef3cb9 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xca013616 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xca20f365 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xca2496fd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xca27cf1d ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xca2fb1cb platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8479f6 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcac232dc __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xcb28897a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb6de7bd fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xcbcecc6f kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xcbdddd6f fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc102923 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc3f54e5 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcc6d7ad0 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xcc8ae85d __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xccc687a8 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xccc8aa5f pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xccd5722d crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xccf2d1f2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf5d12b dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xccfc668d blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xccffe3f0 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xcd132316 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xcd1b8c1e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xcd1c7046 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd39e781 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd8e7663 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb8aaf3 pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce0c443c dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xce3f9799 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6e73ca crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xce833c1e skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xceb4d6c7 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcebfbad3 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcec30dad __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xced9a068 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xcee39630 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xcef54d3c gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf307d1e dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xcf33d7ab blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcf368346 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcf3fb4ca kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xcf49004e synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xcf541a76 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf5891c5 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xcf7cf0d1 ccw_device_get_chid +EXPORT_SYMBOL_GPL vmlinux 0xcf7ee993 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xcf818b09 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfe13218 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfea8472 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd010b481 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd025807c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd0647f7a lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd071daed netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd072244e sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd086b10d fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xd0ac9faf fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xd0ccdef6 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xd0d29718 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd1193af1 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xd13994d5 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14c611f blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15eaea0 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xd160efe7 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xd163dbe0 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd180bbd9 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xd18cb907 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xd199e3bd trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd1a11664 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2073226 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2182e5d device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd2215372 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xd25bfbfd kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd297131e tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xd2c16741 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xd2df3a4e perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xd2e3868b virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2e9bb3f crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xd3028f1d console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd3034428 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xd310dcfd get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd3144c0e inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd346904d ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd3606585 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xd368a2ed set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd3723661 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xd374d9b5 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xd3760bf9 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xd3804760 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xd381927c gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd389a95a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b5649c gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xd3c0cf40 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd3d1437c iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4339226 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xd4401d58 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4637e37 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xd4639366 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd46c8f81 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4ab3525 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4bf483c inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4d0c2af iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd4d5b993 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4d7112e crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd4f267bb netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xd51eaa9d fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd520753d dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xd53530ac __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd5353b60 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xd5362e5b gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0xd53e71e4 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xd54937e3 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5712d1f ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd577b0c8 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xd58173a9 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd591881a blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xd5a4a418 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd5ae7260 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xd5e77689 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xd5e9564a iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xd5f5d0ef pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd5f8569b kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xd6093d64 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd60e2b86 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xd618c756 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xd619cbab security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd632b2db simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd636bd93 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd66f5a18 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd685eaec trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xd6893e06 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd68ace55 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd699eef0 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xd6a1030a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xd6b2ef9f xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xd6bd6fcf serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xd6ced6f4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd6f13937 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd706a479 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd729a667 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xd72ac5fc device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7acb4b2 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xd7add33e exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xd7c24633 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7ecd3fc __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xd7f5373d driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd80e7d12 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xd8104176 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd816caff blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xd83232ec tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85ce20d blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xd8621454 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xd862cf05 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd887696e cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xd889c659 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd88a5065 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd8baa7c3 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd909de80 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9a2c02e call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xd9e01d68 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9eec967 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xd9f440c6 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda097638 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xda1ea09a iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xda300952 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda4bd4b6 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xda5deacd platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xda75e2c8 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xda79d9de __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xda87589d device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xda8c9060 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xdaa9c057 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdac816c1 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb0d4d09 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xdb1291dd mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xdb20658d vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xdb29405a gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xdb3eb695 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8f6e18 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xdb925643 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xdb9a6016 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xdbbcbf7c unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe60cd9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbff8bac __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc42a3fb tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc481a4e bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xdc648dab crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb44c0e debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xdcb91386 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdcbb4692 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1af015 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4eca03 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdd50cb12 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xddb8f3a9 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc7d3ad iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xddc8accd gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0xddd309b3 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf678c9 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xde10b657 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xde2431f6 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xde31bbfe crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xde3d4a60 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xde3f76ec input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde40b7ba fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xde430670 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xde449a09 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xde523217 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xde5eb380 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7bfb69 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xde7fef95 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xdea1da65 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xdea60399 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xdead76c9 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xdeb75b0b ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xdee07053 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xdef56ebd __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xdf080e04 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf16d0ce inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf7393f0 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xdf8c6b0e ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xdf8d428a ccw_device_get_cssid +EXPORT_SYMBOL_GPL vmlinux 0xdf993a1e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xdfa6de8e dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xdfb4270e fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xdfd72dc6 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe00e00cf irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xe00f4b2f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe02a9f28 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe02f047c xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe057f5e0 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe06b7f01 gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0xe0828b78 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xe0864936 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xe087bf7d kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe08af29d devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xe09d0ae8 device_move +EXPORT_SYMBOL_GPL vmlinux 0xe0c675ff blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xe11007f7 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xe147cadc vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xe14c927f crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe176f177 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a62bb5 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xe1bb922f skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xe1c114f4 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1e878e2 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xe202d984 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe246ec4d __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe2829f07 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0xe28cecba strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2bf27f1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe2d15cca crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe2d35e0b __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xe2f7cd74 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe30d3113 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe32a4528 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xe335f062 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xe3385511 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe338c163 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe370a7d4 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe37d1e80 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3ee53cd kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe416d4ee dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe41d44ce iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe45b043d serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xe46260dc get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xe46e2692 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xe47788cb gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a55d67 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xe4a7e8ad trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe4a95266 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xe4d7e5f8 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xe4d9347c gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4e00f1c devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe50540bf pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xe50a829e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe51802ba xas_store +EXPORT_SYMBOL_GPL vmlinux 0xe522b6b7 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe5247f58 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xe58206d2 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5eca349 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe63714f7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xe6868614 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xe690e367 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e51c35 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe7067433 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xe7345516 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe73ae4e9 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xe74c7ed7 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe789544b noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7ae48ab devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xe7b42bfe fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7b7d708 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xe7bce542 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xe7c6d705 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe7cbae0e iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d772e9 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xe7ddeb66 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xe7efe38a blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe7f2e169 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xe80cd065 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xe8244ddc skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xe831e5bb iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xe8576523 gmap_pmdp_idte_global +EXPORT_SYMBOL_GPL vmlinux 0xe874334d unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8a1ff2f list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe8a5ab06 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe8adad5f blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe8bcc79e irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c82b4b fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xe8d14899 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xe8e7ad14 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe8ef044d __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xe8f4b4a2 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe907317b fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9419895 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xe95aa596 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe961ebe6 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xe9900ba3 s390_reset_acc +EXPORT_SYMBOL_GPL vmlinux 0xe9a1eb2a pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe9b5e8b3 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea066330 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea487077 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xea833d4e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xea9b5c65 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xeaa0eafb virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xeaa9cf2c platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeaaa469f nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xeab5b232 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xeab72f0e lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae4170d access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xeb0b9d74 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xeb238ab0 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xeb2ae999 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xeb3ae1a0 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb57a5ff blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xeb5ced94 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xeb8e1d87 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xeb907eeb __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xebbeec94 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xebc0fb49 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xebd7a9e9 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xebdbc7f8 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xebf3c515 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec206e4d __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xec69368a espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xec7e26eb follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xec8058be tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xec9453cd tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xec9e84cd crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xecb43479 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xecd8f7ad scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xecdf3825 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xed07834b sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xed177b2e dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xed2aea1a unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xed310060 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xed38bb55 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0xed6a9cf3 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xed96eacd dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xedab1df1 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xedad4447 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xedd422c8 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xeddd67a5 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xee164cbf pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee49757b device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xee5ad189 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeea43947 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xeeda33c2 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xef03c51e hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xef092314 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xef0ae4e1 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef2a79c4 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef6ad4b5 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefac207e mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xeffd20aa debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xefff2658 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf02987f2 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xf039eb2d pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xf043efc6 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf060e795 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xf0765418 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xf07e4ea2 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf08c5179 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf08ee4c3 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0a94051 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf0af44a1 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xf0b61ec9 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf0baf5f1 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf0bd918b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf0c81290 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0xf0f58228 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xf0f68581 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xf0f80d0a crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xf126f9a7 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf13f3460 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf197cfce gmap_shadow_valid +EXPORT_SYMBOL_GPL vmlinux 0xf1a8c5fb inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf1db7c2e bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xf1e0ab40 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf1e79f56 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xf1f01031 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xf2034150 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xf217ca6d crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2430d43 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf26881c9 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf296913d nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf2afb8d5 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b8fee9 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf2c0692c device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf2d2ba14 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xf2d87a62 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf2d97052 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf2df5609 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf2e97c68 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf328b2f1 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3acf670 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3cca726 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xf3df54b7 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xf3dfc03c sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xf3fdb6b6 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xf40900f9 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xf43ba574 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xf440bc79 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xf441aebd __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf456a552 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xf457254f kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0xf46197fc devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf49ef4ab fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4ad5113 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c9378e aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xf4d92c3d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf4dd00d8 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xf4f5d22a crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xf52aa8b5 gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0xf53e1215 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54e45e0 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xf54fdbac bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf56b5272 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf57d4d3b devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf594359c ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf598c6c3 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf5996eef cio_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b106d5 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf5b27fed ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf5b504de irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xf5d2156d devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf5e2c363 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf5e36a93 __xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf5e94854 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf6101264 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xf62c2308 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xf6656d79 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf668a404 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xf66abdfa ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf688b270 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf69a7069 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf6a7d25a crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xf6aa48ea xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xf6ab1065 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e5dece pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xf7079da0 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xf70860bc fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72b1f62 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xf735ff2d sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xf7420a26 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf745750b devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf74eb19f ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xf776cbd8 gmap_pmdp_csp +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7bce557 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf7c457f3 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xf7c69c52 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xf7c7adac devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xf7c9b025 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7e8c515 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf816d8cb debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8341570 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85450fc ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store +EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xf8daf1c5 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf8e60444 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xf8ec40db virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xf8f56eb4 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf8f6ceb5 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf8fa1458 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xf8ff6b98 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf9085b16 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf91289f0 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf924c316 gmap_mprotect_notify +EXPORT_SYMBOL_GPL vmlinux 0xf92775fb wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xf952a502 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9620dc4 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf971b029 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xf9949b78 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xf99a9e9d devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xf99b83f8 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b8dbc5 gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0xf9dda518 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf9de8afc __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf9f04a2c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa0d7be6 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xfa11df33 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2186ca netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfa27bc96 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xfa3ea678 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xfa4e0a8a dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa951314 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xfa9de623 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xfaa228a0 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xfaa4e98d serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xfaa70019 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xfaa7aae7 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xfaaa8049 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0xfac392b1 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfb0669fe blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xfb1020dd file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb39e4b5 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfb4bf030 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xfb65fc00 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xfb6ddbc0 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xfb87992e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfb88bcbb class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfbb13f19 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc28644 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xfbf7a2cc set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc053fd6 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc057511 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xfc0f1014 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1d90a5 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc30abb8 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xfc30d653 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfc61d77e pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xfc6e28fe __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfc9d45bc mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfcaa897a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xfcb32fd3 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfce179c9 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd0bbc87 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xfd1fd1a9 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xfd31ce44 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xfd3344ca lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xfd4c167e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xfd4ccb73 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xfd58a995 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xfd5adcf5 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xfd6b08a3 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xfd6bb735 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xfd6f00fe securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfd8fd813 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfd9a3327 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xfdb8dc77 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xfdbcc834 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc72871 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xfdc7a8fb fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xfde81b86 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xfdfde1c9 xas_load +EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xfe0cd573 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe20b1bd dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xfe258e1e gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0xfe348ec5 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe6f263f irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff029932 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff13d8c6 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xff164f47 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xff1f2ba2 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xff3ebcea fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xff4b6775 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xff5751ab dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff83af4f unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xff8cbf4b rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xff98794d gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb9dc38 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xfff5216a fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfffab4ab iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xffff435e crypto_unregister_templates +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3cda595e nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x49f311a1 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4f945ef5 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6893e887 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb80383d7 nvme_execute_passthru_rq drivers/nvme/host/nvme-core diff --git a/debian.master/abi/s390x/generic.compiler b/debian.master/abi/s390x/generic.compiler new file mode 100644 index 00000000000000..54182514c18016 --- /dev/null +++ b/debian.master/abi/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.2.0-12ubuntu1) 11.2.0 diff --git a/debian.master/abi/s390x/generic.modules b/debian.master/abi/s390x/generic.modules new file mode 100644 index 00000000000000..8f26ffa6999cca --- /dev/null +++ b/debian.master/abi/s390x/generic.modules @@ -0,0 +1,983 @@ +8021q +842 +842_compress +842_decompress +9p +9pnet +9pnet_rdma +9pnet_virtio +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +adiantum +adin +aegis128 +aes_s390 +aes_ti +af_alg +af_iucv +af_key +af_packet_diag +ah4 +ah6 +algif_aead +algif_hash +algif_rng +algif_skcipher +altera-cvp +altera-pr-ip-core +amd +amlogic-gxl-crypto +ansi_cprng +appldata_mem +appldata_net_sum +appldata_os +aquantia +arp_tables +arpt_mangle +arptable_filter +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +auth_rpcgss +authenc +authencesn +ba431-rng +bcache +bcm-phy-lib +bcm54140 +bcm7xxx +bcm87xx +bfq +binfmt_misc +blake2b_generic +blake2s_generic +blocklayoutdriver +blowfish_common +blowfish_generic +bochs +bonding +bpfilter +br_netfilter +brd +bridge +broadcom +btrfs +cachefiles +camellia_generic +cast5_generic +cast6_generic +cast_common +ccm +ccwgroup +ceph +cfb +cfbcopyarea +cfbfillrect +cfbimgblt +ch +chacha20poly1305 +chacha_generic +chsc_sch +cicada +cifs +cifs_arc4 +cifs_md4 +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cmac +coda +cordic +cortina +crc-itu-t +crc32-vx_s390 +crc32_generic +crc4 +crc64 +crc7 +crc8 +cryptd +crypto_engine +crypto_user +ctcm +curve25519-generic +cuse +dasd_diag_mod +dasd_eckd_mod +dasd_fba_mod +dasd_mod +davicom +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcssblk +deflate +des_generic +des_s390 +device_dax +diag +diag288_wdt +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +drbd +drm +drm_kms_helper +drm_panel_orientation_quirks +drm_ttm_helper +drm_vram_helper +dummy +dummy_stm +dwc-xlgmac +eadm_sch +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ecc +ecdh_generic +ecdsa_generic +echainiv +ecrdsa_generic +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +eql +erofs +esp4 +esp4_offload +esp6 +esp6_offload +essiv +et1011c +failover +faulty +fb_sys_fops +fcoe +fcrypt +fixed_phy +fou +fou6 +fpga-mgr +fs3270 +fscache +fsm +garp +geneve +genwqe_card +gfs2 +ghash_s390 +gpio-aggregator +gpio-bt8xx +gpio-generic +gpio-pci-idio-16 +gpio-pcie-idio-24 +grace +gre +gtp +hangcheck-timer +hmcdrv +i2c-algo-bit +i2c-core +i2c-dev +i2c-mux +i2c-stub +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_srpt +ib_umad +ib_uverbs +icp +icplus +ifb +ife +ila +inet_diag +intel-xway +intel_th +intel_th_gth +intel_th_msu +intel_th_msu_sink +intel_th_pci +intel_th_pti +intel_th_sth +ip6_gre +ip6_tables +ip6_tunnel +ip6_udp_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_tunnel +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ip_vti +ipcomp +ipcomp6 +ipip +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +irqbypass +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +ism +isofs +iw_cm +kafs +kcm +keywrap +kheaders +kmem +ksmbd +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +lcs +libblake2s +libblake2s-generic +libceph +libchacha +libchacha20poly1305 +libcrc32c +libcurve25519 +libcurve25519-generic +libdes +libfc +libfcoe +libiscsi +libiscsi_tcp +libphy +libpoly1305 +libsas +libsm4 +linear +llc +lockd +lru_cache +lrw +lxt +lz4 +lz4_compress +lz4hc +lz4hc_compress +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +macsec +macvlan +macvtap +marvell +marvell10g +md-cluster +md4 +mdev +mdio-i2c +mdio_devres +memory-notifier-error-inject +mena21_wdt +michael_mic +micrel +microchip +microchip_t1 +mip6 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlxfw +mlxsw_core +mlxsw_pci +mlxsw_spectrum +monreader +monwriter +mpls_gso +mpls_iptunnel +mpls_router +mpt3sas +mptcp_diag +mrp +mscc +msdos +national +nbd +net_failover +netconsole +netdevsim +netfs +netiucv +netlink_diag +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhpoly1305 +nilfs2 +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +notifier-error-inject +nsh +ntfs +ntfs3 +null_blk +nvme +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ofb +openvswitch +orangefs +overlay +p8022 +paes_s390 +parman +pcbc +pci-pf-stub +pci-stub +pcrypt +phylink +pkcs7_test_key +pkcs8_key_parser +pkey +pktgen +pnet +poly1305_generic +pps_core +pretimeout_panic +prng +psample +psnap +ptp +ptp_clockmatrix +ptp_ines +qdio +qeth +qeth_l2 +qeth_l3 +qsemi +quota_tree +quota_v1 +quota_v2 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +raw_diag +rbd +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +rmd160 +rnbd-client +rnbd-server +rockchip +rpcrdma +rpcsec_gss_krb5 +rtrs-client +rtrs-core +rtrs-server +rxrpc +s390-trng +sample-trace-array +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scm_block +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +selftests +serial_core +serpent_generic +sfp +sha1_s390 +sha256_s390 +sha3_256_s390 +sha3_512_s390 +sha3_generic +sha512_s390 +sha_common +siox-bus-gpio +siox-core +sit +siw +slicoss +slim-qcom-ctrl +slimbus +sm2_generic +sm3_generic +sm4_generic +smc +smc_diag +smsc +smsgiucv_app +softdog +spl +st +st_drv +ste10Xp +stm_console +stm_core +stm_ftrace +stm_heartbeat +stm_p_basic +stm_p_sys-t +stp +streebog_generic +sunrpc +switchtec +syscopyarea +sysfillrect +sysimgblt +tap +tape +tape_34xx +tape_3590 +tape_class +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tcm_fc +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +team +team_mode_activebackup +team_mode_broadcast +team_mode_loadbalance +team_mode_random +team_mode_roundrobin +teranetics +test_blackhole_dev +test_bpf +tipc +tls +tpm_key_parser +tpm_vtpm_proxy +trace-printk +ts_bm +ts_fsm +ts_kmp +ttm +tunnel4 +tunnel6 +twofish_common +twofish_generic +uPD60620 +uartlite +ubuntu-host +udf +udp_diag +udp_tunnel +uio +unix_diag +veth +vfio +vfio-pci +vfio-pci-core +vfio_ap +vfio_ccw +vfio_iommu_type1 +vfio_virqfd +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vsock +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_scsi +virtiofs +vitesse +vmac +vmlogrdr +vmur +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vport-geneve +vport-gre +vport-vxlan +vrf +vsock +vsock_diag +vsock_loopback +vsockmon +vxlan +wireguard +wp512 +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xilinx_emac +xilinx_gmii2rgmii +xor +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +z3fold +zavl +zcommon +zcrypt +zcrypt_cex2a +zcrypt_cex2c +zcrypt_cex4 +zfcp +zfs +zlua +znvpair +zonefs +zram +zstd +zstd_compress +zunicode +zzstd diff --git a/debian.master/abi/s390x/generic.retpoline b/debian.master/abi/s390x/generic.retpoline new file mode 100644 index 00000000000000..7f959eb917cddc --- /dev/null +++ b/debian.master/abi/s390x/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.master/abi/version b/debian.master/abi/version new file mode 100644 index 00000000000000..7d1ab5ccfbd8be --- /dev/null +++ b/debian.master/abi/version @@ -0,0 +1 @@ +5.15.0-12.12 diff --git a/debian.master/changelog b/debian.master/changelog new file mode 100644 index 00000000000000..6b55bacfb67e31 --- /dev/null +++ b/debian.master/changelog @@ -0,0 +1,13440 @@ +linux (5.15.0-13.13) jammy; urgency=medium + + * jammy/linux: 5.15.0-13.13 -proposed tracker (LP: #1952583) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Jammy update: v5.15.5 upstream stable release (LP: #1952579) + - arm64: zynqmp: Do not duplicate flash partition label property + - arm64: zynqmp: Fix serial compatible string + - clk: sunxi-ng: Unregister clocks/resets when unbinding + - ARM: dts: sunxi: Fix OPPs node name + - arm64: dts: allwinner: h5: Fix GPU thermal zone node name + - arm64: dts: allwinner: a100: Fix thermal zone node name + - staging: wfx: ensure IRQ is ready before enabling it + - ARM: dts: BCM5301X: Fix nodes names + - ARM: dts: BCM5301X: Fix MDIO mux binding + - ARM: dts: NSP: Fix mpcore, mmc node names + - arm64: dts: broadcom: bcm4908: Move reboot syscon out of bus + - scsi: pm80xx: Fix memory leak during rmmod + - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() + - ASoC: mediatek: mt8195: Add missing of_node_put() + - arm64: dts: rockchip: Disable CDN DP on Pinebook Pro + - arm64: dts: hisilicon: fix arm,sp805 compatible string + - RDMA/bnxt_re: Check if the vlan is valid before reporting + - bus: ti-sysc: Add quirk handling for reinit on context lost + - bus: ti-sysc: Use context lost quirk for otg + - usb: musb: tusb6010: check return value after calling + platform_get_resource() + - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read + - ARM: dts: ux500: Skomer regulator fixes + - staging: rtl8723bs: remove possible deadlock when disconnect (v2) + - staging: rtl8723bs: remove a second possible deadlock + - staging: rtl8723bs: remove a third possible deadlock + - ARM: BCM53016: Specify switch ports for Meraki MR32 + - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency + - arm64: dts: qcom: ipq6018: Fix qcom,controlled-remotely property + - arm64: dts: qcom: ipq8074: Fix qcom,controlled-remotely property + - arm64: dts: qcom: sdm845: Fix qcom,controlled-remotely property + - arm64: dts: freescale: fix arm,sp805 compatible string + - arm64: dts: ls1012a: Add serial alias for ls1012a-rdb + - RDMA/rxe: Separate HW and SW l/rkeys + - ASoC: SOF: Intel: hda-dai: fix potential locking issue + - scsi: core: Fix scsi_mode_sense() buffer length handling + - ALSA: usb-audio: disable implicit feedback sync for Behringer UFX1204 and + UFX1604 + - clk: imx: imx6ul: Move csi_sel mux to correct base register + - ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ + - ASoC: rt5651: Use IRQF_NO_AUTOEN when requesting the IRQ + - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect + - scsi: advansys: Fix kernel pointer leak + - scsi: smartpqi: Add controller handshake during kdump + - arm64: dts: imx8mm-kontron: Fix reset delays for ethernet PHY + - ALSA: intel-dsp-config: add quirk for APL/GLK/TGL devices based on ES8336 + codec + - ASoC: Intel: soc-acpi: add missing quirk for TGL SDCA single amp + - ASoC: Intel: sof_sdw: add missing quirk for Dell SKU 0A45 + - firmware_loader: fix pre-allocated buf built-in firmware use + - HID: multitouch: disable sticky fingers for UPERFECT Y + - ALSA: usb-audio: Add support for the Pioneer DJM 750MK2 Mixer/Soundcard + - ARM: dts: omap: fix gpmc,mux-add-data type + - usb: host: ohci-tmio: check return value after calling + platform_get_resource() + - ASoC: rt5682: fix a little pop while playback + - ARM: dts: ls1021a: move thermal-zones node out of soc/ + - ARM: dts: ls1021a-tsn: use generic "jedec,spi-nor" compatible for flash + - ALSA: ISA: not for M68K + - iommu/vt-d: Do not falsely log intel_iommu is unsupported kernel option + - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc + - MIPS: sni: Fix the build + - scsi: scsi_debug: Fix out-of-bound read in resp_readcap16() + - scsi: scsi_debug: Fix out-of-bound read in resp_report_tgtpgs() + - scsi: target: Fix ordered tag handling + - scsi: target: Fix alua_tg_pt_gps_count tracking + - iio: imu: st_lsm6dsx: Avoid potential array overflow in st_lsm6dsx_set_odr() + - RDMA/core: Use kvzalloc when allocating the struct ib_port + - scsi: lpfc: Fix use-after-free in lpfc_unreg_rpi() routine + - scsi: lpfc: Fix link down processing to address NULL pointer dereference + - scsi: lpfc: Allow fabric node recovery if recovery is in progress before + devloss + - memory: tegra20-emc: Add runtime dependency on devfreq governor module + - powerpc/5200: dts: fix memory node unit name + - ARM: dts: qcom: fix memory and mdio nodes naming for RB3011 + - arm64: dts: qcom: Fix node name of rpm-msg-ram device nodes + - ALSA: gus: fix null pointer dereference on pointer block + - ALSA: usb-audio: fix null pointer dereference on pointer cs_desc + - clk: at91: sama7g5: remove prescaler part of master clock + - iommu/dart: Initialize DART_STREAMS_ENABLE + - powerpc/dcr: Use cmplwi instead of 3-argument cmpli + - powerpc/8xx: Fix Oops with STRICT_KERNEL_RWX without DEBUG_RODATA_TEST + - sh: check return code of request_irq + - maple: fix wrong return value of maple_bus_init(). + - f2fs: fix up f2fs_lookup tracepoints + - f2fs: fix to use WHINT_MODE + - f2fs: fix wrong condition to trigger background checkpoint correctly + - sh: fix kconfig unmet dependency warning for FRAME_POINTER + - sh: math-emu: drop unused functions + - sh: define __BIG_ENDIAN for math-emu + - f2fs: compress: disallow disabling compress on non-empty compressed file + - f2fs: fix incorrect return value in f2fs_sanity_check_ckpt() + - clk: ingenic: Fix bugs with divided dividers + - clk/ast2600: Fix soc revision for AHB + - clk: qcom: gcc-msm8996: Drop (again) gcc_aggre1_pnoc_ahb_clk + - KVM: arm64: Fix host stage-2 finalization + - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set + - MIPS: boot/compressed/: add __bswapdi2() to target for ZSTD decompression + - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() + - sched/fair: Prevent dead task groups from regaining cfs_rq's + - perf/x86/vlbr: Add c->flags to vlbr event constraints + - blkcg: Remove extra blkcg_bio_issue_init + - tracing/histogram: Do not copy the fixed-size char array field over the + field size + - perf bpf: Avoid memory leak from perf_env__insert_btf() + - perf bench futex: Fix memory leak of perf_cpu_map__new() + - perf tests: Remove bash construct from record+zstd_comp_decomp.sh + - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame + - bpf: Fix inner map state pruning regression. + - samples/bpf: Fix summary per-sec stats in xdp_sample_user + - samples/bpf: Fix incorrect use of strlen in xdp_redirect_cpu + - selftests: net: switch to socat in the GSO GRE test + - net/ipa: ipa_resource: Fix wrong for loop range + - tcp: Fix uninitialized access in skb frags array for Rx 0cp. + - tracing: Add length protection to histogram string copies + - nl80211: fix radio statistics in survey dump + - mac80211: fix monitor_sdata RCU/locking assertions + - net: ipa: HOLB register sometimes must be written twice + - net: ipa: disable HOLB drop when updating timer + - selftests: gpio: fix gpio compiling error + - net: bnx2x: fix variable dereferenced before check + - bnxt_en: reject indirect blk offload when hw-tc-offload is off + - tipc: only accept encrypted MSG_CRYPTO msgs + - sock: fix /proc/net/sockstat underflow in sk_clone_lock() + - net/smc: Make sure the link_id is unique + - NFSD: Fix exposure in nfsd4_decode_bitmap() + - iavf: Fix return of set the new channel count + - iavf: check for null in iavf_fix_features + - iavf: free q_vectors before queues in iavf_disable_vf + - iavf: don't clear a lock we don't hold + - iavf: Fix failure to exit out from last all-multicast mode + - iavf: prevent accidental free of filter structure + - iavf: validate pointers + - iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset + - iavf: Fix for setting queues to 0 + - iavf: Restore VLAN filters after link down + - bpf: Fix toctou on read-only map's constant scalar tracking + - MIPS: generic/yamon-dt: fix uninitialized variable error + - mips: bcm63xx: add support for clk_get_parent() + - mips: lantiq: add support for clk_get_parent() + - gpio: rockchip: needs GENERIC_IRQ_CHIP to fix build errors + - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' + - platform/x86: think-lmi: Abort probe on analyze failure + - udp: Validate checksum in udp_read_sock() + - btrfs: make 1-bit bit-fields of scrub_page unsigned int + - RDMA/core: Set send and receive CQ before forwarding to the driver + - net/mlx5e: kTLS, Fix crash in RX resync flow + - net/mlx5e: Wait for concurrent flow deletion during neigh/fib events + - net/mlx5: E-Switch, Fix resetting of encap mode when entering switchdev + - net/mlx5e: nullify cq->dbg pointer in mlx5_debug_cq_remove() + - net/mlx5: Update error handler for UCTX and UMEM + - net/mlx5: E-Switch, rebuild lag only when needed + - net/mlx5e: CT, Fix multiple allocations and memleak of mod acts + - net/mlx5: Lag, update tracker when state change event received + - net/mlx5: E-Switch, return error if encap isn't supported + - scsi: ufs: core: Improve SCSI abort handling + - scsi: core: sysfs: Fix hang when device state is set via sysfs + - scsi: ufs: core: Fix task management completion timeout race + - scsi: ufs: core: Fix another task management completion race + - net: mvmdio: fix compilation warning + - net: sched: act_mirred: drop dst for the direction from egress to ingress + - net: dpaa2-eth: fix use-after-free in dpaa2_eth_remove + - net: virtio_net_hdr_to_skb: count transport header in UFO + - i40e: Fix correct max_pkt_size on VF RX queue + - i40e: Fix NULL ptr dereference on VSI filter sync + - i40e: Fix changing previously set num_queue_pairs for PFs + - i40e: Fix ping is lost after configuring ADq on VF + - RDMA/mlx4: Do not fail the registration on port stats + - i40e: Fix warning message and call stack during rmmod i40e driver + - i40e: Fix creation of first queue by omitting it if is not power of two + - i40e: Fix display error code in dmesg + - NFC: reorganize the functions in nci_request + - NFC: reorder the logic in nfc_{un,}register_device + - NFC: add NCI_UNREG flag to eliminate the race + - e100: fix device suspend/resume + - ptp: ocp: Fix a couple NULL vs IS_ERR() checks + - tools build: Fix removal of feature-sync-compare-and-swap feature detection + - riscv: fix building external modules + - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() + - powerpc: clean vdso32 and vdso64 directories + - powerpc/pseries: rename numa_dist_table to form2_distances + - powerpc/pseries: Fix numa FORM2 parsing fallback code + - pinctrl: qcom: sdm845: Enable dual edge errata + - pinctrl: qcom: sm8350: Correct UFS and SDC offsets + - perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server + - perf/x86/intel/uncore: Fix IIO event constraints for Skylake Server + - perf/x86/intel/uncore: Fix IIO event constraints for Snowridge + - s390/kexec: fix return code handling + - blk-cgroup: fix missing put device in error path from blkg_conf_pref() + - dmaengine: remove debugfs #ifdef + - tun: fix bonding active backup with arp monitoring + - Revert "mark pstore-blk as broken" + - pstore/blk: Use "%lu" to format unsigned long + - hexagon: export raw I/O routines for modules + - hexagon: clean up timer-regs.h + - tipc: check for null after calling kmemdup + - ipc: WARN if trying to remove ipc object which is absent + - shm: extend forced shm destroy to support objects from several IPC nses + - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag + - hugetlb, userfaultfd: fix reservation restore on userfaultfd error + - kmap_local: don't assume kmap PTEs are linear arrays in memory + - mm/damon/dbgfs: use '__GFP_NOWARN' for user-specified size buffer allocation + - mm/damon/dbgfs: fix missed use of damon_dbgfs_lock + - x86/boot: Pull up cmdline preparation and early param parsing + - x86/sgx: Fix free page accounting + - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails + - KVM: x86: Assume a 64-bit hypercall for guests with protected state + - KVM: x86: Fix uninitialized eoi_exit_bitmap usage in vcpu_load_eoi_exitmap() + - KVM: x86/mmu: include EFER.LMA in extended mmu role + - KVM: x86/xen: Fix get_attr of KVM_XEN_ATTR_TYPE_SHARED_INFO + - powerpc/signal32: Fix sigset_t copy + - powerpc/xive: Change IRQ domain to a tree domain + - powerpc/8xx: Fix pinned TLBs with CONFIG_STRICT_KERNEL_RWX + - Revert "drm/i915/tgl/dsi: Gate the ddi clocks after pll mapping" + - Revert "parisc: Reduce sigreturn trampoline to 3 instructions" + - ata: libata: improve ata_read_log_page() error message + - ata: libata: add missing ata_identify_page_supported() calls + - scsi: qla2xxx: Fix mailbox direction flags in qla2xxx_get_adapter_id() + - pinctrl: ralink: include 'ralink_regs.h' in 'pinctrl-mt7620.c' + - s390/setup: avoid reserving memory above identity mapping + - s390/boot: simplify and fix kernel memory layout setup + - s390/vdso: filter out -mstack-guard and -mstack-size + - s390/kexec: fix memory leak of ipl report buffer + - s390/dump: fix copying to user-space of swapped kdump oldmem + - block: Check ADMIN before NICE for IOPRIO_CLASS_RT + - fbdev: Prevent probing generic drivers if a FB is already registered + - KVM: SEV: Disallow COPY_ENC_CONTEXT_FROM if target has created vCPUs + - KVM: nVMX: don't use vcpu->arch.efer when checking host state on nested + state load + - drm/cma-helper: Release non-coherent memory with dma_free_noncoherent() + - printk: restore flushing of NMI buffers on remote CPUs after NMI backtraces + - udf: Fix crash after seekdir + - spi: fix use-after-free of the add_lock mutex + - net: stmmac: socfpga: add runtime suspend/resume callback for stratix10 + platform + - Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size + - btrfs: fix memory ordering between normal and ordered work functions + - fs: handle circular mappings correctly + - net: stmmac: Fix signed/unsigned wreckage + - parisc/sticon: fix reverse colors + - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type + - mac80211: fix radiotap header generation + - mac80211: drop check for DONT_REORDER in __ieee80211_select_queue + - drm/amd/display: Update swizzle mode enums + - drm/amd/display: Limit max DSC target bpp for specific monitors + - drm/i915/guc: Fix outstanding G2H accounting + - drm/i915/guc: Don't enable scheduling on a banned context, guc_id invalid, + not registered + - drm/i915/guc: Workaround reset G2H is received after schedule done G2H + - drm/i915/guc: Don't drop ce->guc_active.lock when unwinding context + - drm/i915/guc: Unwind context requests in reverse order + - drm/udl: fix control-message timeout + - drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap + - drm/nouveau: Add a dedicated mutex for the clients list + - drm/nouveau: use drm_dev_unplug() during device removal + - drm/nouveau: clean up all clients on device removal + - drm/i915/dp: Ensure sink rate values are always valid + - drm/i915/dp: Ensure max link params are always valid + - drm/i915: Fix type1 DVI DP dual mode adapter heuristic for modern platforms + - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga + and dvi connectors + - drm/amd/pm: avoid duplicate powergate/ungate setting + - signal: Implement force_fatal_sig + - exit/syscall_user_dispatch: Send ordinary signals on failure + - signal/powerpc: On swapcontext failure force SIGSEGV + - signal/s390: Use force_sigsegv in default_trap_handler + - signal/sparc32: Exit with a fatal signal when try_to_clear_window_buffer + fails + - signal/sparc32: In setup_rt_frame and setup_fram use force_fatal_sig + - signal/vm86_32: Properly send SIGSEGV when the vm86 state cannot be saved. + - signal/x86: In emulate_vsyscall force a signal instead of calling do_exit + - signal: Replace force_sigsegv(SIGSEGV) with force_fatal_sig(SIGSEGV) + - signal: Don't always set SA_IMMUTABLE for forced signals + - signal: Replace force_fatal_sig with force_exit_sig when in doubt + - hugetlbfs: flush TLBs correctly after huge_pmd_unshare + - RDMA/netlink: Add __maybe_unused to static inline in C file + - bpf: Forbid bpf_ktime_get_coarse_ns and bpf_timer_* in tracing progs + - selinux: fix NULL-pointer dereference when hashtab allocation fails + - ASoC: DAPM: Cover regression by kctl change notification fix + - ASoC: rsnd: fixup DMAEngine API + - usb: max-3421: Use driver data instead of maintaining a list of bound + devices + - ice: Fix VF true promiscuous mode + - ice: Delete always true check of PF pointer + - fs: export an inode_update_time helper + - btrfs: update device path inode time instead of bd_inode + - net: add and use skb_unclone_keeptruesize() helper + - x86/Kconfig: Fix an unused variable error in dell-smm-hwmon + - ALSA: hda: hdac_ext_stream: fix potential locking issues + - ALSA: hda: hdac_stream: fix potential locking issue in + snd_hdac_stream_assign() + - Linux 5.15.5 + + * Fix non-working e1000e device after resume (LP: #1951861) + - SAUCE: Revert "e1000e: Additional PHY power saving in S0ix" + - SAUCE: Revert "e1000e: Add polling mechanism to indicate CSME DPG exit" + - SAUCE: Revert "e1000e: Add handshake with the CSME to support S0ix" + + * [SRU][I/OEM-5.13/OEM-5.14] Add MAC passthrough support for more Lenovo docks + (LP: #1951767) + - net: usb: r8152: Add MAC passthrough support for more Lenovo Docks + + * [amdgpu] USB4 support for DP tunneling (LP: #1951868) + - drm/amd/display: Support for DMUB HPD interrupt handling + - drm/amd/display: Update link encoder object creation. + - drm/amd/display: USB4 DPIA enumeration and AUX Tunneling + - drm/amd/display: Support for DMUB HPD and HPD RX interrupt handling + - drm/amd/display: Set DPIA link endpoint type + - drm/amd/display: Stub out DPIA link training call + - drm/amd/display: Add stub to get DPIA tunneling device data + - drm/amd/display: Skip DPCD read for DPTX-to-DPIA hop + - drm/amd/display: Train DPIA links with fallback + - drm/amd/display: Implement DPIA training loop + - drm/amd/display: Implement DPIA link configuration + - drm/amd/display: Implement DPIA clock recovery phase + - drm/amd/display: Implement DPIA equalisation phase + - drm/amd/display: Implement end of training for hop in DPIA display path + - drm/amd/display: Support for SET_CONFIG processing with DMUB + - drm/amd/display: isolate link training setting override to its own function + - drm/amd/display: Read USB4 DP tunneling data from DPCD. + - drm/amd/display: Add dpia debug options + - drm/amd/display: Support for SET_CONFIG processing with DMUB + - drm/amd/display: Add DPCD writes at key points + - drm/amd/display: Fix DIG_HPD_SELECT for USB4 display endpoints. + - drm/amd/display: Add helper for blanking all dp displays + - drm/amd/display: Fix link training fallback logic + - drm/amd/display: Add debug flags for USB4 DP link training. + - drm/amd/display: Fix dynamic link encoder access. + - drm/amd/display: Fix concurrent dynamic encoder assignment + - drm/amd/display: Fix dynamic encoder reassignment + - drm/amd/display: Fix for access for ddc pin and aux engine. + - drm/amd/display: Deadlock/HPD Status/Crash Bug Fix + - drm/amd/display: Fix USB4 Aux via DMUB terminate unexpectedly + + * Miscellaneous Ubuntu changes + - [Packaging] Rewrite debian/scripts/module-check in Python + - [Config] update config and annotations after applying v5.15.5 + + -- Andrea Righi Mon, 29 Nov 2021 09:25:37 +0100 + +linux (5.15.0-12.12) jammy; urgency=medium + + * jammy/linux: 5.15.0-12.12 -proposed tracker (LP: #1951810) + + * Jammy update: v5.15.4 upstream stable release (LP: #1951820) + - string: uninline memcpy_and_pad + - Revert "drm: fb_helper: improve CONFIG_FB dependency" + - Revert "drm: fb_helper: fix CONFIG_FB dependency" + - KVM: Fix steal time asm constraints + - btrfs: introduce btrfs_is_data_reloc_root + - btrfs: zoned: add a dedicated data relocation block group + - btrfs: zoned: only allow one process to add pages to a relocation inode + - btrfs: zoned: use regular writes for relocation + - btrfs: check for relocation inodes on zoned btrfs in should_nocow + - btrfs: zoned: allow preallocation for relocation inodes + - fortify: Explicitly disable Clang support + - block: Add a helper to validate the block size + - loop: Use blk_validate_block_size() to validate block size + - Bluetooth: btusb: Add support for TP-Link UB500 Adapter + - parisc/entry: fix trace test in syscall exit path + - PCI/MSI: Deal with devices lying about their MSI mask capability + - PCI: Add MSI masking quirk for Nvidia ION AHCI + - perf/core: Avoid put_page() when GUP fails + - thermal: Fix NULL pointer dereferences in of_thermal_ functions + - Revert "ACPI: scan: Release PM resources blocked by unused objects" + - Linux 5.15.4 + + * Jammy update: v5.15.3 upstream stable release (LP: #1951822) + - xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good + delay + - usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform + - Input: iforce - fix control-message timeout + - Input: elantench - fix misreporting trackpoint coordinates + - Input: i8042 - Add quirk for Fujitsu Lifebook T725 + - libata: fix read log timeout value + - ocfs2: fix data corruption on truncate + - scsi: scsi_ioctl: Validate command size + - scsi: core: Avoid leaving shost->last_reset with stale value if EH does not + run + - scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() + - scsi: lpfc: Don't release final kref on Fport node while ABTS outstanding + - scsi: lpfc: Fix FCP I/O flush functionality for TMF routines + - scsi: qla2xxx: Fix crash in NVMe abort path + - scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file + - scsi: qla2xxx: Fix use after free in eh_abort path + - ce/gf100: fix incorrect CE0 address calculation on some GPUs + - char: xillybus: fix msg_ep UAF in xillyusb_probe() + - mmc: mtk-sd: Add wait dma stop done flow + - mmc: dw_mmc: Dont wait for DRTO on Write RSP error + - exfat: fix incorrect loading of i_blocks for large files + - io-wq: remove worker to owner tw dependency + - parisc: Fix set_fixmap() on PA1.x CPUs + - parisc: Fix ptrace check on syscall return + - tpm: Check for integer overflow in tpm2_map_response_body() + - firmware/psci: fix application of sizeof to pointer + - crypto: s5p-sss - Add error handling in s5p_aes_probe() + - media: rkvdec: Do not override sizeimage for output format + - media: ite-cir: IR receiver stop working after receive overflow + - media: rkvdec: Support dynamic resolution changes + - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers + - media: v4l2-ioctl: Fix check_ext_ctrls + - ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED + - ALSA: hda/realtek: Add quirk for Clevo PC70HS + - ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ + - ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N + - ALSA: hda/realtek: Add quirk for ASUS UX550VE + - ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED + - ALSA: ua101: fix division by zero at probe + - ALSA: 6fire: fix control and bulk message timeouts + - ALSA: line6: fix control and interrupt message timeouts + - ALSA: mixer: oss: Fix racy access to slots + - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume + - ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk + - ALSA: usb-audio: Add registration quirk for JBL Quantum 400 + - ALSA: hda: Free card instance properly at probe errors + - ALSA: synth: missing check for possible NULL after the call to kstrdup + - ALSA: pci: rme: Fix unaligned buffer addresses + - ALSA: PCM: Fix NULL dereference at mmap checks + - ALSA: timer: Fix use-after-free problem + - ALSA: timer: Unconditionally unlink slave instances, too + - Revert "ext4: enforce buffer head state assertion in ext4_da_map_blocks" + - ext4: fix lazy initialization next schedule time computation in more + granular unit + - ext4: ensure enough credits in ext4_ext_shift_path_extents + - ext4: refresh the ext4_ext_path struct after dropping i_data_sem. + - fuse: fix page stealing + - x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c + - x86/cpu: Fix migration safety with X86_BUG_NULL_SEL + - x86/irq: Ensure PI wakeup handler is unregistered before module unload + - x86/iopl: Fake iopl(3) CLI/STI usage + - btrfs: clear MISSING device status bit in btrfs_close_one_device + - btrfs: fix lost error handling when replaying directory deletes + - btrfs: call btrfs_check_rw_degradable only if there is a missing device + - KVM: x86/mmu: Drop a redundant, broken remote TLB flush + - KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup + - KVM: PPC: Tick accounting should defer vtime accounting 'til after IRQ + handling + - ia64: kprobes: Fix to pass correct trampoline address to the handler + - selinux: fix race condition when computing ocontext SIDs + - ipmi:watchdog: Set panic count to proper value on a panic + - md/raid1: only allocate write behind bio for WriteMostly device + - hwmon: (pmbus/lm25066) Add offset coefficients + - regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is + disabled + - regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default- + dvs-idx property + - EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell + - mwifiex: fix division by zero in fw download path + - ath6kl: fix division by zero in send path + - ath6kl: fix control-message timeout + - ath10k: fix control-message timeout + - ath10k: fix division by zero in send path + - PCI: Mark Atheros QCA6174 to avoid bus reset + - rtl8187: fix control-message timeouts + - evm: mark evm_fixmode as __ro_after_init + - ifb: Depend on netfilter alternatively to tc + - platform/surface: aggregator_registry: Add support for Surface Laptop Studio + - mt76: mt7615: fix skb use-after-free on mac reset + - HID: surface-hid: Use correct event registry for managing HID events + - HID: surface-hid: Allow driver matching for target ID 1 devices + - wcn36xx: Fix HT40 capability for 2Ghz band + - wcn36xx: Fix tx_status mechanism + - wcn36xx: Fix (QoS) null data frame bitrate/modulation + - PM: sleep: Do not let "syscore" devices runtime-suspend during system + transitions + - mwifiex: Read a PCI register after writing the TX ring write pointer + - mwifiex: Try waking the firmware until we get an interrupt + - libata: fix checking of DMA state + - dma-buf: fix and rework dma_buf_poll v7 + - wcn36xx: handle connection loss indication + - rsi: fix occasional initialisation failure with BT coex + - rsi: fix key enabled check causing unwanted encryption for vap_id > 0 + - rsi: fix rate mask set leading to P2P failure + - rsi: Fix module dev_oper_mode parameter description + - perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server + - perf/x86/intel/uncore: Fix invalid unit check + - perf/x86/intel/uncore: Fix Intel ICX IIO event constraints + - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP + - ASoC: tegra: Set default card name for Trimslice + - ASoC: tegra: Restore AC97 support + - signal: Remove the bogus sigkill_pending in ptrace_stop + - memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode + - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT + - soc: samsung: exynos-pmu: Fix compilation when nothing selects + CONFIG_MFD_CORE + - soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id + - soc: fsl: dpio: use the combined functions to protect critical zone + - mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines + - mctp: handle the struct sockaddr_mctp padding fields + - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold + - power: supply: max17042_battery: use VFSOC for capacity when no rsns + - iio: core: fix double free in iio_device_unregister_sysfs() + - iio: core: check return value when calling dev_set_name() + - KVM: arm64: Extract ESR_ELx.EC only + - KVM: x86: Fix recording of guest steal time / preempted status + - KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows + - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use + - KVM: nVMX: Handle dynamic MSR intercept toggling + - can: peak_usb: always ask for BERR reporting for PCAN-USB devices + - can: mcp251xfd: mcp251xfd_irq(): add missing + can_rx_offload_threaded_irq_finish() in case of bus off + - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport + - can: j1939: j1939_can_recv(): ignore messages with invalid source address + - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM + - iio: adc: tsc2046: fix scan interval warning + - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found + - io_uring: honour zeroes as io-wq worker limits + - ring-buffer: Protect ring_buffer_reset() from reentrancy + - serial: core: Fix initializing and restoring termios speed + - ifb: fix building without CONFIG_NET_CLS_ACT + - xen/balloon: add late_initcall_sync() for initial ballooning done + - ovl: fix use after free in struct ovl_aio_req + - ovl: fix filattr copy-up failure + - PCI: pci-bridge-emul: Fix emulation of W1C bits + - PCI: cadence: Add cdns_plat_pcie_probe() missing return + - cxl/pci: Fix NULL vs ERR_PTR confusion + - PCI: aardvark: Do not clear status bits of masked interrupts + - PCI: aardvark: Fix checking for link up via LTSSM state + - PCI: aardvark: Do not unmask unused interrupts + - PCI: aardvark: Fix reporting Data Link Layer Link Active + - PCI: aardvark: Fix configuring Reference clock + - PCI: aardvark: Fix return value of MSI domain .alloc() method + - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG + - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated + bridge + - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge + - PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge + - quota: check block number when reading the block in quota file + - quota: correct error number in free_dqentry() + - cifs: To match file servers, make sure the server hostname matches + - cifs: set a minimum of 120s for next dns resolution + - mfd: simple-mfd-i2c: Select MFD_CORE to fix build error + - pinctrl: core: fix possible memory leak in pinctrl_enable() + - coresight: cti: Correct the parameter for pm_runtime_put + - coresight: trbe: Fix incorrect access of the sink specific data + - coresight: trbe: Defer the probe on offline CPUs + - iio: buffer: check return value of kstrdup_const() + - iio: buffer: Fix memory leak in iio_buffers_alloc_sysfs_and_mask() + - iio: buffer: Fix memory leak in __iio_buffer_alloc_sysfs_and_mask() + - iio: buffer: Fix memory leak in iio_buffer_register_legacy_sysfs_groups() + - drivers: iio: dac: ad5766: Fix dt property name + - iio: dac: ad5446: Fix ad5622_write() return value + - iio: ad5770r: make devicetree property reading consistent + - Documentation:devicetree:bindings:iio:dac: Fix val + - USB: serial: keyspan: fix memleak on probe errors + - serial: 8250: fix racy uartclk update + - ksmbd: set unique value to volume serial field in FS_VOLUME_INFORMATION + - io-wq: serialize hash clear with wakeup + - serial: 8250: Fix reporting real baudrate value in c_ospeed field + - Revert "serial: 8250: Fix reporting real baudrate value in c_ospeed field" + - most: fix control-message timeouts + - USB: iowarrior: fix control-message timeouts + - USB: chipidea: fix interrupt deadlock + - power: supply: max17042_battery: Clear status bits in interrupt handler + - component: do not leave master devres group open after bind + - dma-buf: WARN on dmabuf release with pending attachments + - drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) + - drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 + - drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 + - Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() + - Bluetooth: fix use-after-free error in lock_sock_nested() + - Bluetooth: call sock_hold earlier in sco_conn_del + - drm/panel-orientation-quirks: add Valve Steam Deck + - rcutorture: Avoid problematic critical section nesting on PREEMPT_RT + - platform/x86: wmi: do not fail if disabling fails + - drm/amdgpu: move iommu_resume before ip init/resume + - MIPS: lantiq: dma: add small delay after reset + - MIPS: lantiq: dma: reset correct number of channel + - locking/lockdep: Avoid RCU-induced noinstr fail + - net: sched: update default qdisc visibility after Tx queue cnt changes + - rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop + - smackfs: Fix use-after-free in netlbl_catmap_walk() + - ath11k: Align bss_chan_info structure with firmware + - crypto: aesni - check walk.nbytes instead of err + - x86/mm/64: Improve stack overflow warnings + - x86: Increase exception stack sizes + - mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type + - mwifiex: Properly initialize private structure on interface type changes + - spi: Check we have a spi_device_id for each DT compatible + - fscrypt: allow 256-bit master keys with AES-256-XTS + - drm/amdgpu: Fix MMIO access page fault + - drm/amd/display: Fix null pointer dereference for encoders + - selftests: net: fib_nexthops: Wait before checking reported idle time + - ath11k: Avoid reg rules update during firmware recovery + - ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED + - ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets + - ath10k: high latency fixes for beacon buffer + - octeontx2-pf: Enable promisc/allmulti match MCAM entries. + - media: mt9p031: Fix corrupted frame after restarting stream + - media: netup_unidvb: handle interrupt properly according to the firmware + - media: atomisp: Fix error handling in probe + - media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() + - media: uvcvideo: Set capability in s_param + - media: uvcvideo: Return -EIO for control errors + - media: uvcvideo: Set unique vdev name based in type + - media: vidtv: Fix memory leak in remove + - media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() + - media: s5p-mfc: Add checking to s5p_mfc_probe(). + - media: videobuf2: rework vb2_mem_ops API + - media: imx: set a media_device bus_info string + - media: rcar-vin: Use user provided buffers when starting + - media: mceusb: return without resubmitting URB in case of -EPROTO error. + - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK + - rtw88: fix RX clock gate setting while fifo dump + - brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet + - media: rcar-csi2: Add checking to rcsi2_start_receiver() + - ipmi: Disable some operations during a panic + - fs/proc/uptime.c: Fix idle time reporting in /proc/uptime + - kselftests/sched: cleanup the child processes + - ACPICA: Avoid evaluating methods too early during system resume + - cpufreq: Make policy min/max hard requirements + - ice: Move devlink port to PF/VF struct + - media: imx-jpeg: Fix possible null pointer dereference + - media: ipu3-imgu: imgu_fmt: Handle properly try + - media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info + - media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() + - net-sysfs: try not to restart the syscall if it will fail eventually + - drm/amdkfd: rm BO resv on validation to avoid deadlock + - tracefs: Have tracefs directories not set OTH permission bits by default + - tracing: Disable "other" permission bits in the tracefs files + - ath: dfs_pattern_detector: Fix possible null-pointer dereference in + channel_detector_create() + - KVM: arm64: Propagate errors from __pkvm_prot_finalize hypercall + - mmc: moxart: Fix reference count leaks in moxart_probe + - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value + - ACPI: battery: Accept charges over the design capacity as full + - ACPI: scan: Release PM resources blocked by unused objects + - drm/amd/display: fix null pointer deref when plugging in display + - drm/amdkfd: fix resume error when iommu disabled in Picasso + - net: phy: micrel: make *-skew-ps check more lenient + - leaking_addresses: Always print a trailing newline + - thermal/core: Fix null pointer dereference in thermal_release() + - drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() + - thermal/drivers/tsens: Add timeout to get_temp_tsens_valid + - block: bump max plugged deferred size from 16 to 32 + - floppy: fix calling platform_device_unregister() on invalid drives + - md: update superblock after changing rdev flags in state_store + - memstick: r592: Fix a UAF bug when removing the driver + - locking/rwsem: Disable preemption for spinning region + - lib/xz: Avoid overlapping memcpy() with invalid input with in-place + decompression + - lib/xz: Validate the value before assigning it to an enum variable + - workqueue: make sysfs of unbound kworker cpumask more clever + - tracing/cfi: Fix cmp_entries_* functions signature mismatch + - mt76: mt7915: fix an off-by-one bound check + - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() + - iwlwifi: change all JnP to NO-160 configuration + - block: remove inaccurate requeue check + - media: allegro: ignore interrupt if mailbox is not initialized + - drm/amdgpu/pm: properly handle sclk for profiling modes on vangogh + - nvmet: fix use-after-free when a port is removed + - nvmet-rdma: fix use-after-free when a port is removed + - nvmet-tcp: fix use-after-free when a port is removed + - nvme: drop scan_lock and always kick requeue list when removing namespaces + - samples/bpf: Fix application of sizeof to pointer + - arm64: vdso32: suppress error message for 'make mrproper' + - PM: hibernate: Get block device exclusively in swsusp_check() + - selftests: kvm: fix mismatched fclose() after popen() + - selftests/bpf: Fix perf_buffer test on system with offline cpus + - iwlwifi: mvm: disable RX-diversity in powersave + - smackfs: use __GFP_NOFAIL for smk_cipso_doi() + - ARM: clang: Do not rely on lr register for stacktrace + - gre/sit: Don't generate link-local addr if addr_gen_mode is + IN6_ADDR_GEN_MODE_NONE + - can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to + unsigned int + - gfs2: Cancel remote delete work asynchronously + - gfs2: Fix glock_hash_walk bugs + - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 + - tools/latency-collector: Use correct size when writing queue_full_warning + - vrf: run conntrack only in context of lower/physdev for locally generated + packets + - net: annotate data-race in neigh_output() + - ACPI: AC: Quirk GK45 to skip reading _PSR + - ACPI: resources: Add one more Medion model in IRQ override quirk + - btrfs: reflink: initialize return value to 0 in btrfs_extent_same() + - btrfs: do not take the uuid_mutex in btrfs_rm_device + - spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in + bcm_qspi_probe() + - wcn36xx: Correct band/freq reporting on RX + - wcn36xx: Fix packet drop on resume + - Revert "wcn36xx: Enable firmware link monitoring" + - ftrace: do CPU checking after preemption disabled + - inet: remove races in inet{6}_getname() + - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted + - drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled + - perf/x86/intel: Fix ICL/SPR INST_RETIRED.PREC_DIST encodings + - parisc: fix warning in flush_tlb_all + - task_stack: Fix end_of_stack() for architectures with upwards-growing stack + - erofs: don't trigger WARN() when decompression fails + - parisc/unwind: fix unwinder when CONFIG_64BIT is enabled + - parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling + - netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream + state + - selftests/bpf: Fix strobemeta selftest regression + - fbdev/efifb: Release PCI device's runtime PM ref during FB destroy + - drm/bridge: anx7625: Propagate errors from sp_tx_rst_aux() + - perf/x86/intel/uncore: Fix Intel SPR CHA event constraints + - perf/x86/intel/uncore: Fix Intel SPR IIO event constraints + - perf/x86/intel/uncore: Fix Intel SPR M2PCIE event constraints + - perf/x86/intel/uncore: Fix Intel SPR M3UPI event constraints + - drm/bridge: it66121: Initialize {device,vendor}_ids + - drm/bridge: it66121: Wait for next bridge to be probed + - Bluetooth: fix init and cleanup of sco_conn.timeout_work + - libbpf: Don't crash on object files with no symbol tables + - Bluetooth: hci_uart: fix GPF in h5_recv + - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() + - MIPS: lantiq: dma: fix burst length for DEU + - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function + - objtool: Handle __sanitize_cov*() tail calls + - net/mlx5: Publish and unpublish all devlink parameters at once + - drm/v3d: fix wait for TMU write combiner flush + - crypto: sm4 - Do not change section of ck and sbox + - virtio-gpu: fix possible memory allocation failure + - lockdep: Let lock_is_held_type() detect recursive read as read + - net: net_namespace: Fix undefined member in key_remove_domain() + - net: phylink: don't call netif_carrier_off() with NULL netdev + - drm: bridge: it66121: Fix return value it66121_probe + - spi: Fixed division by zero warning + - cgroup: Make rebind_subsystems() disable v2 controllers all at once + - wcn36xx: Fix Antenna Diversity Switching + - wilc1000: fix possible memory leak in cfg_scan_result() + - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync + - drm/amdgpu: Fix crash on device remove/driver unload + - drm/amd/display: Pass display_pipe_params_st as const in DML + - drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage + - crypto: caam - disable pkc for non-E SoCs + - crypto: qat - power up 4xxx device + - Bluetooth: hci_h5: Fix (runtime)suspend issues on RTL8723BS HCIs + - bnxt_en: Check devlink allocation and registration status + - qed: Don't ignore devlink allocation failures + - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() + - mptcp: do not shrink snd_nxt when recovering + - fortify: Fix dropped strcpy() compile-time write overflow check + - mac80211: twt: don't use potentially unaligned pointer + - cfg80211: always free wiphy specific regdomain + - net/mlx5: Accept devlink user input after driver initialization complete + - net: dsa: rtl8366rb: Fix off-by-one bug + - net: dsa: rtl8366: Fix a bug in deleting VLANs + - bpf/tests: Fix error in tail call limit tests + - ath11k: fix some sleeping in atomic bugs + - ath11k: Avoid race during regd updates + - ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status + - ath11k: Fix memory leak in ath11k_qmi_driver_event_work + - gve: DQO: avoid unused variable warnings + - ath10k: Fix missing frame timestamp for beacon/probe-resp + - ath10k: sdio: Add missing BH locking around napi_schdule() + - drm/ttm: stop calling tt_swapin in vm_access + - arm64: mm: update max_pfn after memory hotplug + - drm/amdgpu: fix warning for overflow check + - libbpf: Fix skel_internal.h to set errno on loader retval < 0 + - media: em28xx: add missing em28xx_close_extension + - media: meson-ge2d: Fix rotation parameter changes detection in + 'ge2d_s_ctrl()' + - media: cxd2880-spi: Fix a null pointer dereference on error handling path + - media: ttusb-dec: avoid release of non-acquired mutex + - media: dvb-usb: fix ununit-value in az6027_rc_query + - media: imx258: Fix getting clock frequency + - media: v4l2-ioctl: S_CTRL output the right value + - media: mtk-vcodec: venc: fix return value when start_streaming fails + - media: TDA1997x: handle short reads of hdmi info frame. + - media: mtk-vpu: Fix a resource leak in the error handling path of + 'mtk_vpu_probe()' + - media: imx-jpeg: Fix the error handling path of 'mxc_jpeg_probe()' + - media: i2c: ths8200 needs V4L2_ASYNC + - media: sun6i-csi: Allow the video device to be open multiple times + - media: radio-wl1273: Avoid card name truncation + - media: si470x: Avoid card name truncation + - media: tm6000: Avoid card name truncation + - media: cx23885: Fix snd_card_free call on null card pointer + - media: atmel: fix the ispck initialization + - scs: Release kasan vmalloc poison in scs_free process + - kprobes: Do not use local variable when creating debugfs file + - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency + - drm: fb_helper: fix CONFIG_FB dependency + - cpuidle: Fix kobject memory leaks in error paths + - media: em28xx: Don't use ops->suspend if it is NULL + - ath10k: Don't always treat modem stop events as crashes + - ath9k: Fix potential interrupt storm on queue reset + - PM: EM: Fix inefficient states detection + - x86/insn: Use get_unaligned() instead of memcpy() + - EDAC/amd64: Handle three rank interleaving mode + - rcu: Always inline rcu_dynticks_task*_{enter,exit}() + - rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr + - netfilter: nft_dynset: relax superfluous check on set updates + - media: venus: fix vpp frequency calculation for decoder + - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() + - crypto: ccree - avoid out-of-range warnings from clang + - crypto: qat - detect PFVF collision after ACK + - crypto: qat - disregard spurious PFVF interrupts + - hwrng: mtk - Force runtime pm ops for sleep ops + - ima: fix deadlock when traversing "ima_default_rules". + - b43legacy: fix a lower bounds test + - b43: fix a lower bounds test + - gve: Recover from queue stall due to missed IRQ + - gve: Track RX buffer allocation failures + - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured + - mmc: sdhci-omap: Fix context restore + - memstick: avoid out-of-range warning + - memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() + - net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE + - hwmon: Fix possible memleak in __hwmon_device_register() + - hwmon: (pmbus/lm25066) Let compiler determine outer dimension of + lm25066_coeff + - ath10k: fix max antenna gain unit + - kernel/sched: Fix sched_fork() access an invalid sched_task_group + - net: fealnx: fix build for UML + - net: intel: igc_ptp: fix build for UML + - net: tulip: winbond-840: fix build for UML + - tcp: switch orphan_count to bare per-cpu counters + - crypto: octeontx2 - set assoclen in aead_do_fallback() + - thermal/core: fix a UAF bug in __thermal_cooling_device_register() + - drm/msm/dsi: do not enable irq handler before powering up the host + - drm/msm: Fix potential Oops in a6xx_gmu_rpmh_init() + - drm/msm: potential error pointer dereference in init() + - drm/msm: unlock on error in get_sched_entity() + - drm/msm: fix potential NULL dereference in cleanup + - drm/msm: uninitialized variable in msm_gem_import() + - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() + - thermal/drivers/qcom/lmh: make QCOM_LMH depends on QCOM_SCM + - mailbox: Remove WARN_ON for async_cb.cb in cmdq_exec_done + - media: ivtv: fix build for UML + - media: ir_toy: assignment to be16 should be of correct type + - mmc: mxs-mmc: disable regulator on error and in the remove function + - io-wq: Remove duplicate code in io_workqueue_create() + - block: ataflop: fix breakage introduced at blk-mq refactoring + - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning + - mailbox: mtk-cmdq: Validate alias_id on probe + - mailbox: mtk-cmdq: Fix local clock ID usage + - ACPI: PM: Turn off unused wakeup power resources + - ACPI: PM: Fix sharing of wakeup power resources + - drm/amdkfd: Fix an inappropriate error handling in allloc memory of gpu + - mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event + - mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb + - mt76: mt7921: fix endianness warning in mt7921_update_txs + - mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi + - mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() + - mt76: connac: fix mt76_connac_gtk_rekey_tlv usage + - mt76: fix build error implicit enumeration conversion + - mt76: mt7921: fix survey-dump reporting + - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c + - mt76: mt7921: Fix out of order process by invalid event pkt + - mt76: mt7915: fix potential overflow of eeprom page index + - mt76: mt7915: fix bit fields for HT rate idx + - mt76: mt7921: fix dma hang in rmmod + - mt76: connac: fix GTK rekey offload failure on WPA mixed mode + - mt76: overwrite default reg_ops if necessary + - mt76: mt7921: report HE MU radiotap + - mt76: mt7921: fix firmware usage of RA info using legacy rates + - mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate + - mt76: mt7921: always wake device if necessary in debugfs + - mt76: mt7915: fix hwmon temp sensor mem use-after-free + - mt76: mt7615: fix hwmon temp sensor mem use-after-free + - mt76: mt7915: fix possible infinite loop release semaphore + - mt76: mt7921: fix retrying release semaphore without end + - mt76: mt7615: fix monitor mode tear down crash + - mt76: connac: fix possible NULL pointer dereference in + mt76_connac_get_phy_mode_v2 + - mt76: mt7915: fix sta_rec_wtbl tag len + - mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() + - rsi: stop thread firstly in rsi_91x_init() error handling + - mwifiex: Send DELBA requests according to spec + - iwlwifi: mvm: reset PM state on unsuccessful resume + - iwlwifi: pnvm: don't kmemdup() more than we have + - iwlwifi: pnvm: read EFI data only if long enough + - net: enetc: unmap DMA in enetc_send_cmd() + - phy: micrel: ksz8041nl: do not use power down mode + - nbd: Fix use-after-free in pid_show + - nvme-rdma: fix error code in nvme_rdma_setup_ctrl + - PM: hibernate: fix sparse warnings + - clocksource/drivers/timer-ti-dm: Select TIMER_OF + - x86/sev: Fix stack type check in vc_switch_off_ist() + - drm/msm: Fix potential NULL dereference in DPU SSPP + - drm/msm/dsi: fix wrong type in msm_dsi_host + - crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks + - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi + - KVM: selftests: Fix nested SVM tests when built with clang + - libbpf: Fix memory leak in btf__dedup() + - bpftool: Avoid leaking the JSON writer prepared for program metadata + - libbpf: Fix overflow in BTF sanity checks + - libbpf: Fix BTF header parsing checks + - mt76: mt7615: mt7622: fix ibss and meshpoint + - s390/gmap: validate VMA in __gmap_zap() + - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() + - s390/mm: validate VMA in PGSTE manipulation functions + - s390/mm: fix VMA and page table handling code in storage key handling + functions + - s390/uv: fully validate the VMA before calling follow_page() + - KVM: s390: pv: avoid double free of sida page + - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm + - irq: mips: avoid nested irq_enter() + - net: dsa: avoid refcount warnings when ->port_{fdb,mdb}_del returns error + - ARM: 9142/1: kasan: work around LPAE build warning + - ath10k: fix module load regression with iram-recovery feature + - block: ataflop: more blk-mq refactoring fixes + - blk-cgroup: synchronize blkg creation against policy deactivation + - libbpf: Fix off-by-one bug in bpf_core_apply_relo() + - tpm: fix Atmel TPM crash caused by too frequent queries + - tpm_tis_spi: Add missing SPI ID + - libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() + - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() + - tracing: Fix missing trace_boot_init_histograms kstrdup NULL checks + - cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization + - spi: spi-rpc-if: Check return value of rpcif_sw_init() + - samples/kretprobes: Fix return value if register_kretprobe() failed + - KVM: s390: Fix handle_sske page fault handling + - libertas_tf: Fix possible memory leak in probe and disconnect + - libertas: Fix possible memory leak in probe and disconnect + - wcn36xx: add proper DMA memory barriers in rx path + - wcn36xx: Fix discarded frames due to wrong sequence number + - bpf: Avoid races in __bpf_prog_run() for 32bit arches + - bpf: Fixes possible race in update_prog_stats() for 32bit arches + - wcn36xx: Channel list update before hardware scan + - drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw() + - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits + - selftests/bpf: Fix fd cleanup in sk_lookup test + - selftests/bpf: Fix memory leak in test_ima + - sctp: allow IP fragmentation when PLPMTUD enters Error state + - sctp: reset probe_timer in sctp_transport_pl_update + - sctp: subtract sctphdr len in sctp_transport_pl_hlen + - sctp: return true only for pathmtu update in sctp_transport_pl_toobig + - net: amd-xgbe: Toggle PLL settings during rate change + - ipmi: kcs_bmc: Fix a memory leak in the error handling path of + 'kcs_bmc_serio_add_device()' + - nfp: fix NULL pointer access when scheduling dim work + - nfp: fix potential deadlock when canceling dim work + - net: phylink: avoid mvneta warning when setting pause parameters + - net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled + - selftests: net: bridge: update IGMP/MLD membership interval value + - crypto: pcrypt - Delay write to padata->info + - selftests/bpf: Fix fclose/pclose mismatch in test_progs + - udp6: allow SO_MARK ctrl msg to affect routing + - ibmvnic: don't stop queue in xmit + - ibmvnic: Process crqs after enabling interrupts + - ibmvnic: delay complete() + - selftests: mptcp: fix proto type in link_failure tests + - skmsg: Lose offset info in sk_psock_skb_ingress + - cgroup: Fix rootcg cpu.stat guest double counting + - bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off. + - bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit. + - of: unittest: fix EXPECT text for gpio hog errors + - cpufreq: Fix parameter in parse_perf_domain() + - staging: r8188eu: fix memory leak in rtw_set_key + - arm64: dts: meson: sm1: add Ethernet PHY reset line for ODROID-C4/HC4 + - iio: st_sensors: disable regulators after device unregistration + - RDMA/rxe: Fix wrong port_cap_flags + - ARM: dts: BCM5301X: Fix memory nodes names + - arm64: dts: broadcom: bcm4908: Fix UART clock name + - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths + - scsi: pm80xx: Fix lockup in outbound queue management + - scsi: qla2xxx: edif: Use link event to wake up app + - scsi: lpfc: Fix NVMe I/O failover to non-optimized path + - ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() + - arm64: dts: rockchip: Fix GPU register width for RK3328 + - ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY + - RDMA/bnxt_re: Fix query SRQ failure + - arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes + - arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe + - arm64: dts: ti: j7200-main: Fix "vendor-id"/"device-id" properties of pcie + node + - arm64: dts: ti: j7200-main: Fix "bus-range" upto 256 bus number for PCIe + - arm64: dts: meson-g12a: Fix the pwm regulator supply properties + - arm64: dts: meson-g12b: Fix the pwm regulator supply properties + - arm64: dts: meson-sm1: Fix the pwm regulator supply properties + - bus: ti-sysc: Fix timekeeping_suspended warning on resume + - ARM: dts: at91: tse850: the emac<->phy interface is rmii + - arm64: dts: qcom: sc7180: Base dynamic CPU power coefficients in reality + - soc: qcom: llcc: Disable MMUHWT retention + - arm64: dts: qcom: sc7280: fix display port phy reg property + - scsi: dc395: Fix error case unwinding + - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT + - JFS: fix memleak in jfs_mount + - pinctrl: renesas: rzg2l: Fix missing port register 21h + - ASoC: wcd9335: Use correct version to initialize Class H + - arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock + - arm64: dts: renesas: beacon: Fix Ethernet PHY mode + - iommu/mediatek: Fix out-of-range warning with clang + - arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 + - iommu/dma: Fix sync_sg with swiotlb + - iommu/dma: Fix arch_sync_dma for map + - ALSA: hda: Reduce udelay() at SKL+ position reporting + - ALSA: hda: Use position buffer for SKL+ again + - ALSA: usb-audio: Fix possible race at sync of urb completions + - soundwire: debugfs: use controller id and link_id for debugfs + - power: reset: at91-reset: check properly the return value of devm_of_iomap + - scsi: ufs: core: Fix ufshcd_probe_hba() prototype to match the definition + - scsi: ufs: core: Stop clearing UNIT ATTENTIONS + - scsi: megaraid_sas: Fix concurrent access to ISR between IRQ polling and + real interrupt + - scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() + - driver core: Fix possible memory leak in device_link_add() + - arm: dts: omap3-gta04a4: accelerometer irq fix + - ASoC: SOF: topology: do not power down primary core during topology removal + - iio: st_pressure_spi: Add missing entries SPI to device ID table + - soc/tegra: Fix an error handling path in tegra_powergate_power_up() + - memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe + - clk: at91: check pmc node status before registering syscore ops + - powerpc/mem: Fix arch/powerpc/mm/mem.c:53:12: error: no previous prototype + for 'create_section_mapping' + - video: fbdev: chipsfb: use memset_io() instead of memset() + - powerpc: fix unbalanced node refcount in check_kvm_guest() + - powerpc/paravirt: correct preempt debug splat in vcpu_is_preempted() + - serial: 8250_dw: Drop wrong use of ACPI_PTR() + - usb: gadget: hid: fix error code in do_config() + - power: supply: rt5033_battery: Change voltage values to µV + - power: supply: max17040: fix null-ptr-deref in max17040_probe() + - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() + - RDMA/mlx4: Return missed an error if device doesn't support steering + - usb: musb: select GENERIC_PHY instead of depending on it + - staging: most: dim2: do not double-register the same device + - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC + - RDMA/core: Set sgtable nents when using ib_dma_virt_map_sg() + - dyndbg: make dyndbg a known cli param + - powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 + - pinctrl: renesas: checker: Fix off-by-one bug in drive register check + - ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz + - ARM: dts: stm32: fix STUSB1600 Type-C irq level on stm32mp15xx-dkx + - ARM: dts: stm32: fix SAI sub nodes register range + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - ASoC: cs42l42: Always configure both ASP TX channels + - ASoC: cs42l42: Correct some register default values + - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER + - soc: qcom: rpmhpd: Make power_on actually enable the domain + - soc: qcom: socinfo: add two missing PMIC IDs + - iio: buffer: Fix double-free in iio_buffers_alloc_sysfs_and_mask() + - usb: typec: STUSB160X should select REGMAP_I2C + - iio: adis: do not disabe IRQs in 'adis_init()' + - soundwire: bus: stop dereferencing invalid slave pointer + - scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer + - scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset + - serial: imx: fix detach/attach of serial console + - usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init + - usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled + - usb: dwc2: drd: reset current session before setting the new one + - powerpc/booke: Disable STRICT_KERNEL_RWX, DEBUG_PAGEALLOC and KFENCE + - usb: dwc3: gadget: Skip resizing EP's TX FIFO if already resized + - firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() + - soc: qcom: rpmhpd: fix sm8350_mxc's peer domain + - soc: qcom: apr: Add of_node_put() before return + - arm64: dts: qcom: pmi8994: Fix "eternal"->"external" typo in WLED node + - arm64: dts: qcom: sdm845: Use RPMH_CE_CLK macro directly + - arm64: dts: qcom: sdm845: Fix Qualcomm crypto engine bus clock + - pinctrl: equilibrium: Fix function addition in multiple groups + - ASoC: topology: Fix stub for snd_soc_tplg_component_remove() + - phy: qcom-qusb2: Fix a memory leak on probe + - phy: ti: gmii-sel: check of_get_address() for failure + - phy: qcom-qmp: another fix for the sc8180x PCIe definition + - phy: qcom-snps: Correct the FSEL_MASK + - phy: Sparx5 Eth SerDes: Fix return value check in sparx5_serdes_probe() + - serial: xilinx_uartps: Fix race condition causing stuck TX + - clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL + - clk: at91: clk-master: check if div or pres is zero + - clk: at91: clk-master: fix prescaler logic + - HID: u2fzero: clarify error check and length calculations + - HID: u2fzero: properly handle timeouts in usb_submit_urb + - powerpc/nohash: Fix __ptep_set_access_flags() and ptep_set_wrprotect() + - powerpc/book3e: Fix set_memory_x() and set_memory_nx() + - powerpc/44x/fsp2: add missing of_node_put + - powerpc/xmon: fix task state output + - ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or + later + - iommu/dma: Fix incorrect error return on iommu deferred attach + - powerpc: Don't provide __kernel_map_pages() without + ARCH_SUPPORTS_DEBUG_PAGEALLOC + - ASoC: cs42l42: Correct configuring of switch inversion from ts-inv + - RDMA/hns: Fix initial arm_st of CQ + - RDMA/hns: Modify the value of MAX_LP_MSG_LEN to meet hardware compatibility + - ASoC: rsnd: Fix an error handling path in 'rsnd_node_count()' + - serial: cpm_uart: Protect udbg definitions by CONFIG_SERIAL_CPM_CONSOLE + - virtio_ring: check desc == NULL when using indirect with packed + - vdpa/mlx5: Fix clearing of VIRTIO_NET_F_MAC feature bit + - mips: cm: Convert to bitfield API to fix out-of-bounds access + - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error + - RDMA/core: Require the driver to set the IOVA correctly during rereg_mr + - apparmor: fix error check + - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined + - mtd: rawnand: intel: Fix potential buffer overflow in probe + - nfsd: don't alloc under spinlock in rpc_parse_scope_id + - rtc: ds1302: Add SPI ID table + - rtc: ds1390: Add SPI ID table + - rtc: pcf2123: Add SPI ID table + - remoteproc: imx_rproc: Fix TCM io memory type + - i2c: i801: Use PCI bus rescan mutex to protect P2SB access + - dmaengine: idxd: move out percpu_ref_exit() to ensure it's outside + submission + - rtc: mcp795: Add SPI ID table + - Input: ariel-pwrbutton - add SPI device ID table + - i2c: mediatek: fixing the incorrect register offset + - NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED + - NFS: Don't set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA + - NFS: Ignore the directory size when marking for revalidation + - NFS: Fix dentry verifier races + - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds + - drm/bridge/lontium-lt9611uxc: fix provided connector suport + - drm/plane-helper: fix uninitialized variable reference + - PCI: aardvark: Don't spam about PIO Response Status + - PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge + - opp: Fix return in _opp_add_static_v2() + - NFS: Fix deadlocks in nfs_scan_commit_list() + - sparc: Add missing "FORCE" target when using if_changed + - fs: orangefs: fix error return code of orangefs_revalidate_lookup() + - Input: st1232 - increase "wait ready" timeout + - drm/bridge: nwl-dsi: Add atomic_get_input_bus_fmts + - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() + - PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation + - mtd: rawnand: arasan: Prevent an unsupported configuration + - mtd: core: don't remove debugfs directory if device is in use + - remoteproc: Fix a memory leak in an error handling path in + 'rproc_handle_vdev()' + - rtc: rv3032: fix error handling in rv3032_clkout_set_rate() + - dmaengine: at_xdmac: call at_xdmac_axi_config() on resume path + - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro + - dmaengine: stm32-dma: fix stm32_dma_get_max_width + - NFS: Fix up commit deadlocks + - NFS: Fix an Oops in pnfs_mark_request_commit() + - Fix user namespace leak + - auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string + - auxdisplay: ht16k33: Connect backlight to fbdev + - auxdisplay: ht16k33: Fix frame buffer device blanking + - soc: fsl: dpaa2-console: free buffer before returning from + dpaa2_console_read + - netfilter: nfnetlink_queue: fix OOB when mac header was cleared + - dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` + - dmaengine: tegra210-adma: fix pm runtime unbalance + - dmanegine: idxd: fix resource free ordering on driver removal + - dmaengine: idxd: reconfig device after device reset command + - signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) + - m68k: set a default value for MEMORY_RESERVE + - watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT + - ar7: fix kernel builds for compiler test + - scsi: target: core: Remove from tmr_list during LUN unlink + - scsi: qla2xxx: Relogin during fabric disturbance + - scsi: qla2xxx: Fix gnl list corruption + - scsi: qla2xxx: Turn off target reset during issue_lip + - scsi: qla2xxx: edif: Fix app start fail + - scsi: qla2xxx: edif: Fix app start delay + - scsi: qla2xxx: edif: Flush stale events and msgs on session down + - scsi: qla2xxx: edif: Increase ELS payload + - scsi: qla2xxx: edif: Fix EDIF bsg + - NFSv4: Fix a regression in nfs_set_open_stateid_locked() + - dmaengine: idxd: fix resource leak on dmaengine driver disable + - i2c: xlr: Fix a resource leak in the error handling path of + 'xlr_i2c_probe()' + - gpio: realtek-otto: fix GPIO line IRQ offset + - xen-pciback: Fix return in pm_ctrl_init() + - nbd: fix max value for 'first_minor' + - nbd: fix possible overflow for 'first_minor' in nbd_dev_add() + - io-wq: fix max-workers not correctly set on multi-node system + - net: davinci_emac: Fix interrupt pacing disable + - kselftests/net: add missed icmp.sh test to Makefile + - kselftests/net: add missed setup_loopback.sh/setup_veth.sh to Makefile + - kselftests/net: add missed SRv6 tests + - kselftests/net: add missed vrf_strict_mode_test.sh test to Makefile + - kselftests/net: add missed toeplitz.sh/toeplitz_client.sh to Makefile + - ethtool: fix ethtool msg len calculation for pause stats + - openrisc: fix SMP tlb flush NULL pointer dereference + - net: vlan: fix a UAF in vlan_dev_real_dev() + - net: dsa: felix: fix broken VLAN-tagged PTP under VLAN-aware bridge + - ice: Fix replacing VF hardware MAC to existing MAC filter + - ice: Fix not stopping Tx queues for VFs + - kdb: Adopt scheduler's task classification + - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses + - PCI: j721e: Fix j721e_pcie_probe() error path + - nvdimm/btt: do not call del_gendisk() if not needed + - scsi: bsg: Fix errno when scsi_bsg_register_queue() fails + - scsi: ufs: ufshpb: Use proper power management API + - scsi: ufs: core: Fix NULL pointer dereference + - scsi: ufs: ufshpb: Properly handle max-single-cmd + - drm/nouveau/svm: Fix refcount leak bug and missing check against null bug + - nvdimm/pmem: cleanup the disk if pmem_release_disk() is yet assigned + - block/ataflop: use the blk_cleanup_disk() helper + - block/ataflop: add registration bool before calling del_gendisk() + - block/ataflop: provide a helper for cleanup up an atari disk + - ataflop: remove ataflop_probe_lock mutex + - PCI: Do not enable AtomicOps on VFs + - cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline + - net: phy: fix duplex out of sync problem while changing settings + - block: fix device_add_disk() kobject_create_and_add() error handling + - drm/ttm: remove ttm_bo_vm_insert_huge() + - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed + - octeontx2-pf: select CONFIG_NET_DEVLINK + - ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer + - mfd: core: Add missing of_node_put for loop iteration + - mfd: cpcap: Add SPI device ID table + - mfd: sprd: Add SPI device ID table + - mfd: altera-sysmgr: Fix a mistake caused by resource_size conversion + - ACPI: PM: Fix device wakeup power reference counting error + - libbpf: Fix lookup_and_delete_elem_flags error reporting + - selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder + - selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number + - selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly + - selftests/bpf/xdp_redirect_multi: Limit the tests in netns + - drm: fb_helper: improve CONFIG_FB dependency + - Revert "drm/imx: Annotate dma-fence critical section in commit path" + - drm/amdgpu/powerplay: fix sysfs_emit/sysfs_emit_at handling + - can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path + - can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for + mcp251xfd_chip_rx_int_enable() + - mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and + zs_unregister_migration() + - zram: off by one in read_block_state() + - perf bpf: Add missing free to bpf_event__print_bpf_prog_info() + - llc: fix out-of-bound array index in llc_sk_dev_hash() + - nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails + - litex_liteeth: Fix a double free in the remove function + - arm64: arm64_ftr_reg->name may not be a human-readable string + - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions + - bpf, sockmap: Remove unhash handler for BPF sockmap usage + - bpf, sockmap: Fix race in ingress receive verdict with redirect to self + - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding + - bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg + - dmaengine: stm32-dma: fix burst in case of unaligned memory address + - dmaengine: stm32-dma: avoid 64-bit division in stm32_dma_get_max_width + - gve: Fix off by one in gve_tx_timeout() + - drm/i915/fb: Fix rounding error in subsampled plane size calculation + - init: make unknown command line param message clearer + - seq_file: fix passing wrong private data + - drm/amdgpu: fix uvd crash on Polaris12 during driver unloading + - net: dsa: mv88e6xxx: Don't support >1G speeds on 6191X on ports other than + 10 + - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any + - net: hns3: fix ROCE base interrupt vector initialization bug + - net: hns3: fix pfc packet number incorrect after querying pfc parameters + - net: hns3: fix kernel crash when unload VF while it is being reset + - net: hns3: allow configure ETS bandwidth of all TCs + - net: stmmac: allow a tc-taprio base-time of zero + - net: ethernet: ti: cpsw_ale: Fix access to un-initialized memory + - net: marvell: mvpp2: Fix wrong SerDes reconfiguration order + - vsock: prevent unnecessary refcnt inc for nonblocking connect + - net/smc: fix sk_refcnt underflow on linkdown and fallback + - cxgb4: fix eeprom len when diagnostics not implemented + - selftests/net: udpgso_bench_rx: fix port argument + - thermal: int340x: fix build on 32-bit targets + - smb3: do not error on fsync when readonly + - ARM: 9155/1: fix early early_iounmap() + - ARM: 9156/1: drop cc-option fallbacks for architecture selection + - parisc: Fix backtrace to always include init funtion names + - parisc: Flush kernel data mapping in set_pte_at() when installing pte for + user page + - MIPS: fix duplicated slashes for Platform file path + - MIPS: fix *-pkg builds for loongson2ef platform + - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL + - x86/mce: Add errata workaround for Skylake SKX37 + - PCI/MSI: Move non-mask check back into low level accessors + - PCI/MSI: Destroy sysfs before freeing entries + - KVM: x86: move guest_pv_has out of user_access section + - posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() + - irqchip/sifive-plic: Fixup EOI failed when masked + - f2fs: should use GFP_NOFS for directory inodes + - f2fs: include non-compressed blocks in compr_written_block + - f2fs: fix UAF in f2fs_available_free_memory + - ceph: fix mdsmap decode when there are MDS's beyond max_mds + - erofs: fix unsafe pagevec reuse of hooked pclusters + - drm/i915/guc: Fix blocked context accounting + - block: Hold invalidate_lock in BLKDISCARD ioctl + - block: Hold invalidate_lock in BLKZEROOUT ioctl + - block: Hold invalidate_lock in BLKRESETZONE ioctl + - ksmbd: Fix buffer length check in fsctl_validate_negotiate_info() + - ksmbd: don't need 8byte alignment for request length in ksmbd_check_message + - dmaengine: ti: k3-udma: Set bchan to NULL if a channel request fail + - dmaengine: ti: k3-udma: Set r/tchan or rflow to NULL if request fail + - dmaengine: bestcomm: fix system boot lockups + - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE + - 9p/net: fix missing error check in p9_check_errors + - mm/filemap.c: remove bogus VM_BUG_ON + - memcg: prohibit unconditional exceeding the limit of dying tasks + - mm, oom: pagefault_out_of_memory: don't force global OOM for dying tasks + - mm, oom: do not trigger out_of_memory from the #PF + - mm, thp: lock filemap when truncating page cache + - mm, thp: fix incorrect unmap behavior for private pages + - mfd: dln2: Add cell for initializing DLN2 ADC + - video: backlight: Drop maximum brightness override for brightness zero + - bcache: fix use-after-free problem in bcache_device_free() + - bcache: Revert "bcache: use bvec_virt" + - PM: sleep: Avoid calling put_device() under dpm_list_mtx + - s390/cpumf: cpum_cf PMU displays invalid value after hotplug remove + - s390/cio: check the subchannel validity for dev_busid + - s390/tape: fix timer initialization in tape_std_assign() + - s390/ap: Fix hanging ioctl caused by orphaned replies + - s390/cio: make ccw_device_dma_* more robust + - remoteproc: elf_loader: Fix loading segment when is_iomem true + - remoteproc: Fix the wrong default value of is_iomem + - remoteproc: imx_rproc: Fix ignoring mapping vdev regions + - remoteproc: imx_rproc: Fix rsc-table name + - mtd: rawnand: fsmc: Fix use of SM ORDER + - mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: xway: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: mpc5121: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: gpio: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: pasemi: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: orion: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: plat_nand: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: au1550nd: Keep the driver compatible with on-die ECC engines + - powerpc/vas: Fix potential NULL pointer dereference + - powerpc/bpf: Fix write protecting JIT code + - powerpc/32e: Ignore ESR in instruction storage interrupt handler + - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload + - powerpc/security: Use a mutex for interrupt exit code patching + - powerpc/64s/interrupt: Fix check_return_regs_valid() false positive + - powerpc/pseries/mobility: ignore ibm, platform-facilities updates + - powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n + - drm/sun4i: Fix macros in sun8i_csc.h + - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros + - PCI: aardvark: Fix PCIe Max Payload Size setting + - SUNRPC: Partial revert of commit 6f9f17287e78 + - drm/amd/display: Look at firmware version to determine using dmub on dcn21 + - media: vidtv: move kfree(dvb) to vidtv_bridge_dev_release() + - cifs: fix memory leak of smb3_fs_context_dup::server_hostname + - ath10k: fix invalid dma_addr_t token assignment + - mmc: moxart: Fix null pointer dereference on pointer host + - selftests/x86/iopl: Adjust to the faked iopl CLI/STI usage + - selftests/bpf: Fix also no-alu32 strobemeta selftest + - arch/cc: Introduce a function to check for confidential computing features + - x86/sev: Add an x86 version of cc_platform_has() + - x86/sev: Make the #VC exception stacks part of the default stacks storage + - media: videobuf2: always set buffer vb2 pointer + - media: videobuf2-dma-sg: Fix buf->vb NULL pointer dereference + - Linux 5.15.3 + + * kernel panic: NULL pointer dereference in wb_timer_f() (LP: #1947557) // + Jammy update: v5.15.3 upstream stable release (LP: #1951822) + - blk-wbt: prevent NULL pointer dereference in wb_timer_fn + + * Medion Notebook Keyboard not working (LP: #1909814) // Jammy update: v5.15.3 + upstream stable release (LP: #1951822) + - ACPI: resources: Add DMI-based legacy IRQ override quirk + + * Enable CONFIG_INTEL_IOMMU_DEFAULT_ON and + CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON on jammy 5.15 (LP: #1951440) + - [Config] enable Intel DMA remapping options by default + + * Thinkpad E14 Gen2: Kernel panic with trackpad and trackpoint enabled + (LP: #1945590) + - SAUCE: Input: elantech - Fix stack out of bound access in + elantech_change_report_id() + + * Miscellaneous Ubuntu changes + - SAUCE: LSM: Specify which LSM to display (using struct cred as input) + - SAUCE: selftests/seccomp: fix check of fds being assigned + - [Config] enable SUNRPC_DISABLE_INSECURE_ENCTYPES + - [Config] updateconfigs following v5.15.3, v5.15.4 import + + * Miscellaneous upstream changes + - binder: use cred instead of task for selinux checks + - binder: use cred instead of task for getsecid + - Revert "UBUNTU: SAUCE: storvsc: use small sg_tablesize on x86" + + -- Paolo Pisati Mon, 22 Nov 2021 13:14:15 +0100 + +linux (5.15.0-11.11) jammy; urgency=medium + + * jammy/linux: 5.15.0-11.11 -proposed tracker (LP: #1950948) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * OOPs on boot: invalid opcode: 0000 [#1] SMP NOPTI (LP: #1942215) + - SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT + - [Config] disable UBSAN + - SAUCE: ACPICA: avoid accessing operands out-of-bounds + + * Jammy update: v5.15.2 upstream stable release (LP: #1950949) + - KVM: x86: avoid warning with -Wbitwise-instead-of-logical + - Revert "x86/kvm: fix vcpu-id indexed array sizes" + - usb: ehci: handshake CMD_RUN instead of STS_HALT + - usb: gadget: Mark USB_FSL_QE broken on 64-bit + - usb: musb: Balance list entry in musb_gadget_queue + - usb-storage: Add compatibility quirk flags for iODD 2531/2541 + - Revert "proc/wchan: use printk format instead of lookup_symbol_name()" + - binder: use euid from cred instead of using task + - binder: don't detect sender/target during buffer cleanup + - kfence: always use static branches to guard kfence_alloc() + - kfence: default to dynamic branch instead of static keys mode + - btrfs: fix lzo_decompress_bio() kmap leakage + - staging: rtl8712: fix use-after-free in rtl8712_dl_fw + - isofs: Fix out of bound access for corrupted isofs image + - comedi: dt9812: fix DMA buffers on stack + - comedi: ni_usb6501: fix NULL-deref in command paths + - comedi: vmk80xx: fix transfer-buffer overflows + - comedi: vmk80xx: fix bulk-buffer overflow + - comedi: vmk80xx: fix bulk and interrupt message timeouts + - staging: r8712u: fix control-message timeout + - staging: rtl8192u: fix control-message timeouts + - staging: r8188eu: fix memleak in rtw_wx_set_enc_ext + - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init + - rsi: fix control-message timeout + - Linux 5.15.2 + + * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le + (LP: #1867570) + - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes + + * Miscellaneous Ubuntu changes + - packaging: switch getabis to the linux package name + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (no-up) rename the adv7511 drm driver to adv7511_drm" + - Revert "UBUNTU: SAUCE: drm/i915/dp: Use max params for older panels" + - Revert "UBUNTU: SAUCE: i915: Fix build error due to missing struct + definition" + - selftests/core: fix conflicting types compile error for close_range() + - selftests: net: test_vxlan_under_vrf: fix HV connectivity test + - Revert "UBUNTU: SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT" + + -- Paolo Pisati Mon, 15 Nov 2021 10:12:47 +0100 + +linux (5.15.0-10.10) jammy; urgency=medium + + * jammy/linux: 5.15.0-10.10 -proposed tracker (LP: #1950133) + + * Jammy update: v5.15.1 upstream stable release (LP: #1950131) + - sfc: Fix reading non-legacy supported link modes + - media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() + - Revert "xhci: Set HCD flag to defer primary roothub registration" + - Revert "usb: core: hcd: Add support for deferring roothub registration" + - drm/amdkfd: fix boot failure when iommu is disabled in Picasso. + - Revert "soc: imx: gpcv2: move reset assert after requesting domain power up" + - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" + - Revert "wcn36xx: Disable bmps when encryption is disabled" + - drm/amdgpu: revert "Add autodump debugfs node for gpu reset v8" + - drm/amd/display: Revert "Directly retrain link from debugfs" + - Revert "drm/i915/gt: Propagate change in error status to children on unhold" + - ALSA: usb-audio: Add quirk for Audient iD14 + - Linux 5.15.1 + + * Miscellaneous Ubuntu changes + - packaging: fixup previous ABI/spin to -9.9 + - [Packaging] Drop unused d-i build-deps and packaging + - [Packaging] Drop now unsupported d-i/ input files + + * Miscellaneous upstream changes + - selftests: net: properly support IPv6 in GSO GRE test + - signal: Add SA_IMMUTABLE to ensure forced siganls do not get changed + + -- Paolo Pisati Mon, 08 Nov 2021 14:43:24 +0100 + +linux (5.15.0-9.9) jammy; urgency=medium + + * jammy/linux: 5.15.0-1.1 -proposed tracker (LP: #1949876) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + + * Add F81966 watchdog support (LP: #1949063) + - SAUCE: ODM: watchdog: f71808e_wdt: Add F81966 support + + * Miscellaneous Ubuntu changes + - [Packaging] Rewrite debian/scripts/misc/insert-changes.pl in Python + - [Packaging] change source package name to linux + + -- Andrea Righi Thu, 04 Nov 2021 18:47:19 +0100 + +linux (5.15.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Thu, 04 Nov 2021 16:47:16 +0100 + +linux-unstable (5.15.0-8.8) jammy; urgency=medium + + * jammy/linux-unstable: 5.15.0-8.8 -proposed tracker (LP: #1949436) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Drop "UBUNTU: SAUCE: cachefiles: Page leaking in + cachefiles_read_backing_file while vmscan is active" (LP: #1947709) + - Revert "UBUNTU: SAUCE: cachefiles: Page leaking in + cachefiles_read_backing_file while vmscan is active" + + * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) + - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" + + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add fips-checks as part of finalchecks + + * Add final-checks to check certificates (LP: #1947174) + - [Packaging] Add system trusted and revocation keys final check + + * Can only reach PC3 when ethernet is plugged r8169 (LP: #1946433) + - r8169: Enable chip-specific ASPM regardless of PCIe ASPM status + - PCI/ASPM: Introduce a new helper to report ASPM capability + - r8169: Implement dynamic ASPM mechanism + + * rtw89 kernel module for Realtek 8852 wifi is missing (LP: #1945967) + - rtw89: add Realtek 802.11ax driver + - rtw89: Remove redundant check of ret after call to rtw89_mac_enable_bb_rf + - rtw89: fix return value check in rtw89_cam_send_sec_key_cmd() + - rtw89: remove unneeded semicolon + - [Config] RTW89=m + + * Fix A yellow screen pops up in an instant (< 1 second) and then disappears + before loading the system (LP: #1945932) + - drm/i915: Stop force enabling pipe bottom color gammma/csc + + * disable CONFIG_KFENCE_STATIC_KEYS in linux 5.15 (LP: #1948038) + - [Config] disable CONFIG_KFENCE_STATIC_KEYS + + * Miscellaneous Ubuntu changes + - [Debian] Remove old and unused firmware helper scripts + - [Packaging] Replace Perl oneliner with Bash statements + - rebase to v5.15 + + [ Upstream Kernel Changes ] + + * Rebase to v5.15 + + -- Paolo Pisati Tue, 02 Nov 2021 08:29:45 +0100 + +linux-unstable (5.15.0-7.7) jammy; urgency=medium + + * jammy/linux-unstable: 5.15.0-7.7 -proposed tracker (LP: #1948770) + + * Miscellaneous Ubuntu changes + - [Config] Temporarily disable signing for ppc64el and s390x + - packaging: switch release to Jammy + - rebase to v5.15-rc7 + - [Config] GCC version update + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc7 + + -- Paolo Pisati Tue, 26 Oct 2021 11:38:14 +0200 + +linux-unstable (5.15.0-6.6) jammy; urgency=medium + + * impish/linux-unstable: 5.15.0-6.6 -proposed tracker (LP: #1947565) + + * [impish] Remove the downstream xr-usb-uart driver (LP: #1945938) + - SAUCE: xr-usb-serial: remove driver + - [Config] update modules list + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc6 + - [Config] update config & annotations following v5.15-rc6 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: xr-usb-serial: switch to tty_alloc_driver() and + tty_driver_kref_put()" + - Revert "UBUNTU: SAUCE: xr-usb-serial: update return code for + xr_usb_serial_tty_write_room() and xr_usb_serial_tty_chars_in_buffer()" + - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc6 + + -- Paolo Pisati Mon, 18 Oct 2021 12:24:45 +0200 + +linux-unstable (5.15.0-5.5) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-5.5 -proposed tracker (LP: #1946338) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc5 + - [Config] FB_SIMPLE=m + - [Config] update annotations + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc5 + + -- Paolo Pisati Mon, 11 Oct 2021 12:14:02 +0200 + +linux-unstable (5.15.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-4.4 -proposed tracker (LP: #1945953) + + * Fix missing HDMI audio on Intel RKL (LP: #1945556) + - drm/i915/audio: Use BIOS provided value for RKL HDA link + + * Miscellaneous Ubuntu changes + - SAUCE: media: atomisp: add missing return type (fix -Werror=return-type) + - SAUCE: xr-usb-serial: switch to tty_alloc_driver() and tty_driver_kref_put() + - rebase to v5.15-rc4 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] FTBFS: disable INTEL_ATOMISP" + - Revert "UBUNTU: [Config] FTBFS: disable xr-usb-serial" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc4 + + -- Paolo Pisati Mon, 04 Oct 2021 10:52:41 +0200 + +linux-unstable (5.15.0-3.3) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-3.3 -proposed tracker (LP: #1944944) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc3 + - [Config] updateconfigs following v5.15-rc3 rebase + - [Packaging] correctly evaluate release in update-dkms-versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc3 + + -- Paolo Pisati Mon, 27 Sep 2021 16:48:03 +0200 + +linux-unstable (5.15.0-2.2) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-2.2 -proposed tracker (LP: #1944423) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc2 + - [Config] updateconfigs following v5.15-rc2 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc2 + + -- Paolo Pisati Tue, 21 Sep 2021 11:46:59 +0200 + +linux-unstable (5.15.0-1.1) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + + * Miscellaneous Ubuntu changes + - [Packaging] remove remaining references to ports + - [Packaging] drop x32 architecture configs + - [Config] mark CONFIG_BPF_UNPRIV_DEFAULT_OFF enforced + - [Packaging] bump kernel version to 5.15 + - rebase to v5.15-rc1 + - [Config] updateconfigs following v5.15-rc1 rebase + - [Config] FTBFS: disable INTEL_ATOMISP + - [Config] FTBFS: disable xr-usb-serial + - [Packaging] FTBFS: disable zfs + + * Miscellaneous upstream changes + - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables + ASPM" + - Revert "UBUNTU: SAUCE: RDMA/core: Introduce peer memory interface" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc1 + + -- Paolo Pisati Fri, 17 Sep 2021 11:42:25 +0200 + +linux-unstable (5.15.0-0.0) impish; urgency=medium + + * Empty entry + + -- Paolo Pisati Wed, 15 Sep 2021 11:54:10 +0200 + +linux-unstable (5.14.0-9.9) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-9.9 -proposed tracker (LP: #1943022) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] NVIDIA -- Add the NVIDIA 470 driver + - [Packaging] NVIDIA: transition -460 and -465 to -470, transition -460-server + to -470-server + + * Miscellaneous upstream changes + - vt_kdsetmode: extend console locking + - Bluetooth: btusb: check conditions before enabling USB ALT 3 for WBS + - net: dsa: mt7530: fix VLAN traffic leaks again + - btrfs: fix NULL pointer dereference when deleting device by invalid id + - Revert "floppy: reintroduce O_NDELAY fix" + - fscrypt: add fscrypt_symlink_getattr() for computing st_size + - ext4: report correct st_size for encrypted symlinks + - f2fs: report correct st_size for encrypted symlinks + - ubifs: report correct st_size for encrypted symlinks + - net: don't unconditionally copy_from_user a struct ifreq for socket ioctls + - audit: move put_tree() to avoid trim_trees refcount underflow and UAF + - Linux 5.14.1 + + -- Paolo Pisati Wed, 08 Sep 2021 12:20:18 +0200 + +linux-unstable (5.14.0-8.8) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-8.8 -proposed tracker (LP: #1941887) + + * Fix Intel AC9560 BT function cannot turn on if BT turn off before S3 entry + (LP: #1941696) + - SAUCE: Bluetooth: btusb: add a reject table to disable msft + + * Add USB4 support for AMD SoC (LP: #1941036) + - thunderbolt: Add vendor specific NHI quirk for auto-clearing interrupt + status + - thunderbolt: Handle ring interrupt by reading interrupt status register + - thunderbolt: Do not read control adapter config space + - thunderbolt: Fix port linking by checking all adapters + + * Support builtin revoked certificates (LP: #1932029) + - [Config] Enforce SYSTEM_TRUSTED_KEYS and SYSTEM_REVOCATION_KEYS + + * GPIO error logs in start and dmesg after update of kernel (LP: #1937897) + - ODM: mfd: Check AAEON BFPI version before adding device + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - [Config] enforce ZSTD compression + + * Miscellaneous Ubuntu changes + - rebase to v5.14 + - [Config] RESET_MCHP_SPARX5 depends on ARCH_SPARX5 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14 + + -- Paolo Pisati Mon, 30 Aug 2021 12:57:19 +0200 + +linux-unstable (5.14.0-7.7) impish; urgency=medium + + * Please enable CONFIG_UBSAN_BOUNDS (LP: #1914685) + - [Config] Enable CONFIG_UBSAN_BOUNDS + + * CONFIG_HARDENED_USERCOPY_FALLBACK should be disabled (LP: #1855340) + - [Config] Disable CONFIG_HARDENED_USERCOPY_FALLBACK + + * fs: removing mandatory locks (LP: #1940392) + - [Config] Disable CONFIG_MANDATORY_FILE_LOCKING + + * Fix kernel panic caused by legacy devices on AMD platforms (LP: #1936682) + - SAUCE: iommu/amd: Keep swiotlb enabled to ensure devices with 32bit DMA + still work + + * ALSA: hda/cs8409: Add support for dolphin (LP: #1939541) + - ALSA: hda/cirrus: Move CS8409 HDA bridge to separate module + - ALSA: hda/cs8409: Move arrays of configuration to a new file + - ALSA: hda/cs8409: Use enums for register names and coefficients + - ALSA: hda/cs8409: Mask all CS42L42 interrupts on initialization + - ALSA: hda/cs8409: Reduce HS pops/clicks for Cyborg + - ALSA: hda/cs8409: Disable unnecessary Ring Sense for Cyborg/Warlock/Bullseye + - ALSA: hda/cs8409: Disable unsolicited responses during suspend + - ALSA: hda/cs8409: Disable unsolicited response for the first boot + - ALSA: hda/cs8409: Mask CS42L42 wake events + - ALSA: hda/cs8409: Simplify CS42L42 jack detect. + - ALSA: hda/cs8409: Prevent I2C access during suspend time + - ALSA: hda/cs8409: Generalize volume controls + - ALSA: hda/cs8409: Dont disable I2C clock between consecutive accesses + - ALSA: hda/cs8409: Avoid setting the same I2C address for every access + - ALSA: hda/cs8409: Avoid re-setting the same page as the last access + - ALSA: hda/cs8409: Support i2c bulk read/write functions + - ALSA: hda/cs8409: Separate CS8409, CS42L42 and project functions + - ALSA: hda/cs8409: Move codec properties to its own struct + - ALSA: hda/cs8409: Support multiple sub_codecs for Suspend/Resume/Unsol + events + - ALSA: hda/cs8409: Add Support to disable jack type detection for CS42L42 + - ALSA: hda/cs8409: Add support for dolphin + - ALSA: hda/cs8409: Enable Full Scale Volume for Line Out Codec on Dolphin + - ALSA: hda/cs8409: Set fixed sample rate of 48kHz for CS42L42 + - ALSA: hda/cs8409: Use timeout rather than retries for I2C transaction waits + - ALSA: hda/cs8409: Remove unnecessary delays + - ALSA: hda/cs8409: Follow correct CS42L42 power down sequence for suspend + - ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops + - ALSA: hda/cs8409: Prevent pops and clicks during suspend + - SAUCE: ALSA: hda/cs8409: Prevent pops and clicks during reboot + - [Config] Enable Cirrus Logic HDA bridge support + + * e1000e: add handshake with the Intel CSME to support S0ix (LP: #1937252) + - SAUCE: e1000e: Add handshake with the CSME to support S0ix + - SAUCE: e1000e: Add polling mechanism to indicate CSME DPG exit + - SAUCE: e1000e: Additional PHY power saving in S0ix + + * AMDGPU: Fix System hang after resume from suspend (LP: #1940204) + - SAUCE: drm/amdgpu: disable BACO support for 699F:C7 polaris12 SKU + temporarily + + * [Regression] Audio card [8086:9d71] not detected after upgrade from linux + 5.4 to 5.8 (LP: #1915117) + - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + + * Miscellaneous Ubuntu changes + - rebase to v5.14-rc7 + - [Config] updateconfigs following 5.14-rc7 rebase + - [Config] Enable CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT + - [Config] annotations: set CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT to y + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] annotations: set + CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y" + - Revert "UBUNTU: [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to + y" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc7 + + -- Paolo Pisati Tue, 24 Aug 2021 10:32:31 +0200 + +linux-unstable (5.14.0-6.6) impish; urgency=medium + + * Miscellaneous Ubuntu changes + - no changes upload (to avoid picking up libc6 from -proposed) + + * No changes upload (to avoid picking up libc6 from -proposed) + + -- Paolo Pisati Wed, 18 Aug 2021 13:41:16 +0200 + +linux-unstable (5.14.0-5.5) impish; urgency=medium + + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - [Config] Disable CONFIG_HISI_DMA + + * Dell XPS 17 (9710) PCI/internal sound card not detected (LP: #1935850) + - ASoC: Intel: sof_sdw: include rt711.h for RT711 JD mode + - ASoC: Intel: sof_sdw: add quirk for Dell XPS 9710 + + * [regression] USB device is not detected during boot (LP: #1939638) + - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" + + * armhf build failure (LP: #1939308) + - SAUCE: arm: Fix instruction set selection for GCC 11 + + * REGRESSION: shiftfs lets sendfile fail with EINVAL (LP: #1939301) + - SAUCE: shiftfs: fix sendfile() invocations + + * Wobbly graphics on built-in display since linux-image-5.11.0-22-generic + (LP: #1936708) + - SAUCE: drm/i915/dp: Use max params for older panels + + * [SRU][H/OEM-5.10/OEM-5.13/U] Fix system hang after unplug tbt dock + (LP: #1938689) + - SAUCE: igc: fix page fault when thunderbolt is unplugged + + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - SAUCE: e1000e: Do not take care about recovery NVM checksum + + * [Regression] Audio card [8086:9d71] not detected after upgrade from linux + 5.4 to 5.8 (LP: #1915117) + - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + - [Config] annotations: set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following 5.14-rc6 rebase + - rebase to v5.14-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc6 + + -- Paolo Pisati Tue, 17 Aug 2021 17:49:15 +0200 + +linux-unstable (5.14.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-4.4 -proposed tracker (LP: #1938566) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous upstream changes + - Revert "riscv: Get CPU manufacturer information" + + -- Paolo Pisati Tue, 03 Aug 2021 14:50:27 +0200 + +linux-unstable (5.14.0-3.3) impish; urgency=medium + + * Add additional Mediatek MT7921 WiFi/BT device IDs (LP: #1937004) + - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for Foxconn + - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for IMC Network + - SAUCE: Bluetooth: btusb: Add support for Foxconn Mediatek Chip + + * Fix display output on HP hybrid GFX laptops (LP: #1936296) + - drm/i915: Invoke another _DSM to enable MUX on HP Workstation laptops + + * Miscellaneous Ubuntu changes + - rebase to v5.14-rc3 + - [Config] updateconfigs following 5.14-rc3 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc3 + + -- Paolo Pisati Mon, 26 Jul 2021 12:52:38 +0200 + +linux-unstable (5.14.0-2.2) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - SAUCE: xr-usb-serial: update return code for xr_usb_serial_tty_write_room() + and xr_usb_serial_tty_chars_in_buffer() + - SAUCE: platform/x86: dell-uart-backlight: update return code for + uart_chars_in_buffer(() + - [Config] updateconfigs following 5.14-rc2 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] FTBFS: disable ubuntu/xr-usb-serial" + - Revert "UBUNTU: [Config] FTBFS: disable DELL_UART_BACKLIGHT" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc2 + + -- Paolo Pisati Thu, 22 Jul 2021 11:03:28 +0200 + +linux-unstable (5.14.0-1.1) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] bump kernel version to 5.14 + - [Config] updateconfigs following 5.14-rc1 rebase + - [Config] update annotations + - [Packaging] FTBFS: disable zfs + - [Config] FTBFS: disable DELL_UART_BACKLIGHT + - [Config] FTBFS: disable ubuntu/xr-usb-serial + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] update variants" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc1 + + -- Paolo Pisati Fri, 16 Jul 2021 15:20:04 +0200 + +linux-unstable (5.14.0-0.0) impish; urgency=medium + + * Empty entry + + -- Paolo Pisati Tue, 13 Jul 2021 12:15:35 +0200 + +linux (5.13.0-11.11) impish; urgency=medium + + * impish/linux: 5.13.0-11.11 -proposed tracker (LP: #1933854) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Support builtin revoked certificates (LP: #1932029) + - [Packaging] build canonical-revoked-certs.pem from branch/arch certs + - [Packaging] Revoke 2012 UEFI signing certificate as built-in + - [Config] Configure CONFIG_SYSTEM_REVOCATION_KEYS with revoked keys + + * Miscellaneous Ubuntu changes + - [Packaging] Change source package name to linux + + * Miscellaneous upstream changes + - mm/page_alloc: Correct return value of populated elements if bulk array is + populated + + -- Andrea Righi Tue, 29 Jun 2021 07:50:25 +0200 + +linux (5.13.0-10.10) impish; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 + +linux-unstable (5.13.0-10.10) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-10.10 -proposed tracker (LP: #1933795) + + * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) + - media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - s390/decompressor: correct BOOT_HEAP_SIZE condition + - s390/boot: add zstd support + - [Packaging] use ZSTD to compress s390 kernels + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: tls: fix chacha+bidir tests + - SAUCE: selftests: icmp_redirect: support expected failures + - [Config] update configs and annotations after rebase to 5.13 + + * Miscellaneous upstream changes + - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE + + [ Upstream Kernel Changes ] + + * Rebase to v5.13 + + -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 + +linux-unstable (5.13.0-9.9) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-9.9 -proposed tracker (LP: #1933070) + + * Add support for selective build of special drivers (LP: #1912789) + - [Packaging] Add support for ODM drivers + - [Packaging] Turn on ODM support for amd64 + - [Packaging] Fix ODM support in actual build + - [Packaging] Fix ODM DRIVERS Kconfig + + * Add support for IO functions of AAEON devices (LP: #1929504) + - ODM: [Config] update config for AAEON devices + - ODM: hwmon: add driver for AAEON devices + - ODM: leds: add driver for AAEON devices + - ODM: watchdog: add driver for AAEON devices + - ODM: gpio: add driver for AAEON devices + - ODM: mfd: Add support for IO functions of AAEON devices + + * Disable hv-kvp-daemon.service on certain instance types (LP: #1932081) + - [Packaging]: Add kernel command line condition to hv-kvp-daemon service + + * Fix non-working GPU on Some HP desktops (LP: #1931147) + - PCI: Coalesce host bridge contiguous apertures + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: seccomp: bump up timeout to 5min + - SAUCE: Revert "net/tls(TLS_SW): Add selftest for 'chunked' sendfile test" + - [Config] update annotations after rebase to 5.13-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc7 + + -- Andrea Righi Mon, 21 Jun 2021 10:55:36 +0200 + +linux-unstable (5.13.0-8.8) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-8.8 -proposed tracker (LP: #1932018) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - [Config] use ZSTD to compress amd64 kernels + + * Miscellaneous Ubuntu changes + - [Config] enable signing for ppc64el + - SAUCE: powerpc: Fix initrd corruption with relative jump labels + + -- Andrea Righi Tue, 15 Jun 2021 15:07:34 +0200 + +linux-unstable (5.13.0-7.7) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-7.7 -proposed tracker (LP: #1931840) + + * Packaging resync (LP: #1786013) + - update dkms package versions + - [Packaging] resync getabis + - [Packaging] update helper scripts + - update dkms package versions + + * Intel ADL-S graphics feature enabling (LP: #1931240) + - SAUCE: drm/i915/adl_s: ADL-S platform Update PCI ids for Mobile BGA + + * Kernel package builds running out of space on builders (LP: #1930713) + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n + + * Miscellaneous Ubuntu changes + - [Debian] remove nvidia dkms build support + - [Config] remove now unsued do_dkms_nvidia* build variables + - [Config] enable signing for s390x + - [Config] update annotations after configs review + - [Config] update toolchain versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc6 + + -- Andrea Righi Mon, 14 Jun 2021 11:53:08 +0200 + +linux-unstable (5.13.0-6.6) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-6.6 -proposed tracker (LP: #1931071) + + * Kernel package builds running out of space on builders (LP: #1930713) + - [Debian] use stamps for flavour install targets + - [Debian] run install-$(flavour) targets during build phase + - [Debian] remove dh_testroot from install targets + - [Debian] dkms-build -- use fakeroot if not running as root + - [Debian] exclude $(DEBIAN)/__abi.current from linux-source + + * [UBUNTU 21.04] tools/kvm_stat: Add restart delay (LP: #1921870) + - [Debian] install kvm_stat systemd service + + * Debugging symbols (dbgsym) packages are missing GDB kernel scripts + (LP: #1928715) + - [Packaging] Build and include GDB Python scripts into debug packages + + * Can't detect intel wifi 6235 (LP: #1920180) + - SAUCE: iwlwifi: add new pci id for 6235 + + * Select correct boot VGA when BIOS doesn't do it properly (LP: #1929217) + - vgaarb: Use ACPI HID name to find integrated GPU + + * Fix kernel panic on Intel Bluetooth (LP: #1928838) + - Bluetooth: Shutdown controller after workqueues are flushed or cancelled + + * build module CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m for 5.11, 5.13-rc2 + and later (LP: #1921632) + - [Config] enable soundwire audio mach driver + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SND_SOC_RT1308 can only be enabled on amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc5 + + -- Andrea Righi Mon, 07 Jun 2021 10:45:13 +0200 + +linux-unstable (5.13.0-5.5) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-5.5 -proposed tracker (LP: #1930205) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y + + -- Andrea Righi Mon, 31 May 2021 12:32:38 +0200 + +linux-unstable (5.13.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-4.4 -proposed tracker (LP: #1929404) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) + - SAUCE: integrity: add informational messages when revoking certs + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) // CVE-2020-26541 when certificates are revoked via + MokListXRT. + - SAUCE: integrity: Load mokx certs from the EFI MOK config table + + * Miscellaneous Ubuntu changes + - [Config] Temporarily disable signing for ppc64el and s390x + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Be more careful about copying up + sxid files" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Propogate nosuid from lower and + upper mounts" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Enable user namespace mounts" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: ensure mounter privileges when + reading directories" + - SAUCE: Revert "UBUNTU: SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags" + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc3 + + -- Andrea Righi Mon, 24 May 2021 13:06:17 +0200 + +linux-unstable (5.13.0-3.3) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-3.3 -proposed tracker (LP: #1928655) + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc2 + + -- Andrea Righi Mon, 17 May 2021 11:55:02 +0200 + +linux-unstable (5.13.0-2.2) impish; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] enable CONFIG_DEBUG_INFO_COMPRESSED + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] temporarily disable BPF JIT" + + -- Andrea Righi Fri, 14 May 2021 09:19:02 +0200 + +linux-unstable (5.13.0-1.1) impish; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc1 + + -- Andrea Righi Wed, 12 May 2021 11:35:23 +0200 + +linux-unstable (5.13.0-0.0) impish; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 11 May 2021 08:40:09 +0200 + +linux-unstable (5.12.0-11.11) impish; urgency=medium + + * Impish update: v5.12.1 upstream stable release (LP: #1927094) + - net: hso: fix NULL-deref on disconnect regression + - USB: CDC-ACM: fix poison/unpoison imbalance + - iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd() + - cfg80211: fix locking in netlink owner interface destruction + - mei: me: add Alder Lake P device id. + - Linux 5.12.1 + + * Packaging resync (LP: #1786013) // Impish update: v5.12.1 upstream stable + release (LP: #1927094) + - update dkms package versions + + * Gigabyte R120-T33 (ARM ThunderX SoC) fails to boot in ACPI mode + (LP: #1925075) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - ACPI: GTDT: Don't corrupt interrupt mappings on watchdow probe failure + + * Fix kernel panic at boot on dual GFX systems (LP: #1926792) // Impish + update: v5.12.1 upstream stable release (LP: #1927094) + - drm/amdgpu: Register VGA clients after init can no longer fail + + * On TGL platforms screen shows garbage when browsing website by scrolling + mouse (LP: #1926579) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - SAUCE: drm/i915/display: Disable PSR2 if TGL Display stepping is B1 from A0 + + * CirrusLogic: Cracking noises appears in built-in speaker when output volume + is set >80% (LP: #1924997) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - SAUCE: ALSA: hda/cirrus: Use CS8409 Equalizer to fix abnormal sounds on + Bullseye + + * Enable mute/micmute LEDs and limit mic boost on EliteBook 845 G8 + (LP: #1925415) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook + 845 G8 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: PCI: Disable broken RTIT_BAR of Intel TH" + - Revert "UBUNTU: [Config] temporarily disable ZFS" + + -- Paolo Pisati Tue, 04 May 2021 18:35:54 +0200 + +linux-unstable (5.12.0-10.10) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] Drop versioned ABI directory names + - [Packaging] getabis: Download ABIs into an unversioned directory + - [Packaging] final-checks: Handle unversioned ABI directories + - bump to impish + - [Config] GCC version update + + -- Paolo Pisati Thu, 29 Apr 2021 12:27:20 +0200 + +linux-unstable (5.12.0-9.9) impish; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc8 + + -- Seth Forshee Mon, 26 Apr 2021 11:14:16 -0500 + +linux-unstable (5.12.0-8.8) hirsute; urgency=medium + + * CVE-2021-3492 + - SAUCE: shiftfs: free allocated memory in shiftfs_btrfs_ioctl_fd_replace() + error paths + - SAUCE: shiftfs: handle copy_to_user() return values correctly + + * Fix no picture from HDMI when it's plugged after boot (LP: #1924238) + - drm/i915/display: Handle lane polarity for DDI port + + * hirsute beta desktop AMD64 ISO kernel panic on boot when booting using UEFI + (LP: #1922403) + - SAUCE: efifb: Check efifb_pci_dev before using it + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc8 + - [Config] updateconfigs following 5.12-rc8 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc8 + + -- Paolo Pisati Mon, 19 Apr 2021 11:37:27 +0200 + +linux-unstable (5.12.0-7.7) hirsute; urgency=medium + + * drm/i915: Drop force_probe requirement for Rocket Lake (LP: #1905466) + - drm/i915/rkl: Remove require_force_probe protection + + * HP m400 cartridges fail to find NIC when deploying hirsute (LP: #1918793) + - PCI: xgene: Fix cfg resource mapping + + * Update - Fix no screen show on display after S3 on CML-R (LP: #1922768) + - drm/i915/gen9bc: Handle TGP PCH during suspend/resume + + * Miscellaneous Ubuntu changes + - SAUCE: RDMA/core: Introduce peer memory interface + - Rebase to v5.12-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc7 + + -- Paolo Pisati Mon, 12 Apr 2021 11:48:07 +0200 + +linux-unstable (5.12.0-6.6) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * i915 doesn't support some high pixel clock 4k * 60Hz monitors (LP: #1922372) + - drm/i915/vbt: update DP max link rate table + + * Tegra "mmc0: Timeout waiting for hardware interrupt" (LP: #1921140) + - SAUCE: mmc: host: Add required callbacks to set/clear CQE_EN bit + + * Enable ath11k debugfs/tracing (LP: #1922033) + - [Config] enable ath11k debugfs/tracing + + * Fix mic on P620 after S3 resume (LP: #1921757) + - ALSA: usb-audio: Carve out connector value checking into a helper + - ALSA: usb-audio: Check connector value on resume + + * Miscellaneous Ubuntu changes + - [Config] amd64,arm64: build KFENCE support but disable it by default + (KFENCE_SAMPLE_INTERVAL=0) + - Rebase to v5.12-rc6 + + * Miscellaneous upstream changes + - drm/dp: add MSO related DPCD registers + - drm/i915/edp: reject modes with dimensions other than fixed mode + - drm/i915/edp: always add fixed mode to probed modes in ->get_modes() + - drm/i915/edp: read sink MSO configuration for eDP 1.4+ + - drm/i915/reg: add stream splitter configuration definitions + - drm/i915/mso: add splitter state readout for platforms that support it + - drm/i915/mso: add splitter state check + - drm/i915/edp: modify fixed and downclock modes for MSO + - drm/i915/edp: enable eDP MSO during link training + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc6 + + -- Paolo Pisati Wed, 07 Apr 2021 11:42:55 +0200 + +linux-unstable (5.12.0-5.5) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * alsa/realtek: extend the delay time in the determine_headset_type for a + Dell AIO (LP: #1920747) + - SAUCE: ALSA: hda/realtek: fix a determine_headset_type issue for a Dell AIO + + * power off stress test will hang on the TGL machines (LP: #1919930) + - SAUCE: ASoC: SOF: Intel: TGL: set shutdown callback to hda_dsp_shutdown + - [Config] set SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 to n + + * lockdown on power (LP: #1855668) + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + + * Miscellaneous Ubuntu changes + - [Config] arm64 -- unify build_image and kernel_file values + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: xr-usb-serial: clean up indentation + - SAUCE: xr-usb-serial: clean up build warnings + - SAUCE: apparmor: Fix build error, make sk parameter const + - Rebase to v5.12-rc5 + - [Config] updateconfigs following v5.12-rc5 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (lockdown) s390: Lock down the kernel when the IPL + secure flag is set" + - Revert "UBUNTU: SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to + indicate secure boot mode" + - Revert "UBUNTU: SAUCE: (lockdown) powerpc: lock down kernel in secure boot + mode" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic" + - Revert "UBUNTU: SAUCE: (lockdown) arm64: Allow locking down the kernel under + EFI secure boot" + - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for + module signature verify" + - Revert "UBUNTU: SAUCE: (lockdown) efi: Lock down the kernel if booted in + secure boot mode" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock + the kernel down" + - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() use + efi_status_to_str() to print error messages." + - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc5 + + -- Paolo Pisati Mon, 29 Mar 2021 12:59:38 +0200 + +linux-unstable (5.12.0-4.4) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix broken efifb on graphics device without driver (LP: #1914411) + - SAUCE: efifb: Ensure graphics device for efifb stays at PCI D0 + + * Fix system sleep on TGL systems with Intel ME (LP: #1919321) + - SAUCE: PCI: Serialize TGL e1000e PM ops + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc4 + - [Config] updateconfigs following v5.12-rc4 rebase + + * Miscellaneous upstream changes + - riscv: dts: fu740: fix cache-controller interrupts + - riscv: sifive: fu740: cpu{1, 2, 3, 4} set compatible to sifive, u74-mc + - riscv: sifive: unmatched: update for 16GB rev3 + - riscv: Add 3 SBI wrapper functions to get cpu manufacturer information + - riscv: Get CPU manufacturer information + - riscv: Introduce alternative mechanism to apply errata solution + - riscv: sifive: apply errata "cip-453" patch + - clk: sifive: Add pcie_aux clock in prci driver for PCIe driver + - clk: sifive: Use reset-simple in prci driver for PCIe driver + - MAINTAINERS: Add maintainers for SiFive FU740 PCIe driver + - dt-bindings: PCI: Add SiFive FU740 PCIe host controller + - PCI: designware: Add SiFive FU740 PCIe host controller driver + - riscv: dts: Add PCIe support for the SiFive FU740-C000 SoC + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc4 + + -- Paolo Pisati Mon, 22 Mar 2021 12:43:14 +0100 + +linux-unstable (5.12.0-3.3) hirsute; urgency=medium + + * riscv: revert SiFive Unleashed CPUFreq (LP: #1917433) + - SAUCE: Revert "SiFive Unleashed CPUFreq" + + * Dell Precision 5550 takes up to 10 seconds to respond when coming out of + sleep (LP: #1919123) + - SAUCE: Input: i8042 - add dmi quirk + + * LRMv4: switch to signing nvidia modules via the Ubuntu Modules signing key + (LP: #1918134) + - [Packaging] sync dkms-build et al from LRMv4 + + * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) + - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Enable Tegra support in arm64 for NVIDIA Jetson (LP: #1918471) + - [Config] enable ARCH_TEGRA and all Tegra SOC's + - [Packaging] include modern Tegra modules + + * Cirrus Audio Codec CS8409/CS42L42: Input Device does not switch to headset + Mic when a headset is inserted (LP: #1918378) + - SAUCE: ALSA: hda/cirrus: Fix Headset Mic volume control name + + * Cirrus Audio Codec CS8409/CS42L42 support (LP: #1916554) + - ALSA: hda/cirrus: Increase AUTO_CFG_MAX_INS from 8 to 18 + - ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion + codec. + - ALSA: hda/cirrus: Add jack detect interrupt support from CS42L42 companion + codec. + - ALSA: hda/cirrus: Add Headphone and Headset MIC Volume Control + + * drm/i915: Drop force_probe requirement for JSL (LP: #1917843) + - SAUCE: drm/i915: Drop require_force_probe from JSL + + * Miscellaneous Ubuntu changes + - [Packaging] Skip d-i code if udebs are disabled + - [Packaging] Disable udebs if $DEBIAN/d-i doesn't exist + - [Packaging] remove dh-systemd build dependency + - [Config] fix several annotaions with enforcement typos + - [Config] refresh annotations + - [Config] updateconfigs following v5.12-rc3 rebase + - annotations: fixup after v5.12-rc3 rebase + - Rebase to v5.12-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc3 + + -- Paolo Pisati Tue, 16 Mar 2021 18:43:03 +0100 + +linux-unstable (5.12.0-2.2) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc2 + - [Config] updateconfigs following v5.12-rc2 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc2 + + -- Paolo Pisati Mon, 08 Mar 2021 11:22:04 +0100 + +linux-unstable (5.12.0-1.1) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Support no udeb profile (LP: #1916095) + - [Packaging] replace custom filter script with dctrl-tools + - [Packaging] correctly implement noudeb build profiles. + + * Miscellaneous Ubuntu changes + - [Packaging] dkms-versions -- remove nvidia-graphics-drivers-440-server + - [Debian] run ubuntu-regression-suite for linux-unstable + - [Packaging] remove Provides: aufs-dkms + - [Config] update config and annotations following v5.12-rc1 rebase + - [Config] disable nvidia and nvidia_server builds + - [Config] temporarily disable ZFS + - temporarily disable modules check + - annotations: s390: temporarily remove CONFIG_KMSG_IDS + - [Config] amd64: FTBFS: disable HIO + - [Config] FTBFS: disable SHIFT_FS + - [Config] s390: temporarily remove CONFIG_KMSG_IDS + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] disable nvidia and nvidia_server builds" + - Revert "UBUNTU: SAUCE: s390: kernel message catalog" + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc1 + + -- Paolo Pisati Thu, 04 Mar 2021 18:26:12 +0100 + +linux-unstable (5.12.0-0.0) hirsute; urgency=medium + + * Empty entry + + -- Paolo Pisati Thu, 04 Mar 2021 18:17:32 +0100 + +linux-unstable (5.11.0-10.11) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Support CML-S CPU + TGP PCH (LP: #1909457) + - drm/i915/rkl: new rkl ddc map for different PCH + - SAUCE: drm/i915/gen9_bc : Add TGP PCH support + + * Use DCPD to control HP DreamColor panel (LP: #1911001) + - SAUCE: drm/dp: Another HP DreamColor panel brigntness fix + + * Update nvidia dkms build for module linker script changes + - [Packaging] build-dkms--nvidia-N -- Update for preprocessed module linker + script + + * Please trust Canonical Livepatch Service kmod signing key (LP: #1898716) + - [Config] enable CONFIG_MODVERSIONS=y + - [Packaging] build canonical-certs.pem from branch/arch certs + - [Config] add Canonical Livepatch Service key to SYSTEM_TRUSTED_KEYS + - [Config] add ubuntu-drivers key to SYSTEM_TRUSTED_KEYS + + * Miscellaneous Ubuntu changes + - [Config] re-enable nvidia dkms + - SAUCE: selftests: memory-hotplug: bump timeout to 10min + - [Debian] update-aufs.sh -- Don't apply tmpfs-idr.patch + - [Config] Update configs + - [Config] disable nvidia and nvidia_server builds + - SAUCE: Import aufs driver + - [Config] CONFIG_AUFS_FS=n + - [Config] refresh annotations file + - [Config] set CONFIG_MIPI_I3C_HCI=m consistently + - [Config] set CONFIG_PINCTRL_MSM8953=m on armhf generic-lpae + - [Packaging] Change source package name to linux-unstable + - [Config] update LD_VERSION in config due to toolchain update + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit + ino_t" + + -- Andrea Righi Mon, 22 Feb 2021 07:18:07 +0100 + +linux-unstable (5.11.0-9.10) hirsute; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 22 Feb 2021 07:02:45 +0100 + +linux (5.11.0-9.10) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] update configs/annotations after rebase to 5.11 + - zfs-modules.ignore: add zzstd + + [ Upstream Kernel Changes ] + + * Rebase to v5.11 + + -- Andrea Righi Mon, 15 Feb 2021 16:29:36 +0100 + +linux (5.11.0-8.9) hirsute; urgency=medium + + * Missing device id for Intel TGL-H ISH [8086:43fc] in intel-ish-hid driver + (LP: #1914543) + - SAUCE: HID: intel-ish-hid: ipc: Add Tiger Lake H PCI device ID + + * Add support for new Realtek ethernet NIC (LP: #1914604) + - r8169: Add support for another RTL8168FP + + * Miscellaneous Ubuntu changes + - SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit ino_t + - [Config] Set CONFIG_TMPFS_INODE64=n for s390x + - [Config] re-enable ZFS + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc7 + + -- Andrea Righi Mon, 08 Feb 2021 11:56:23 +0100 + +linux (5.11.0-7.8) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + * Remove scary stack trace from Realtek WiFi driver (LP: #1913263) + - rtw88: reduce the log level for failure of tx report + + * Fix unexpected AER/DPC on PCH400 and PCH500 (LP: #1913691) + - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on all CML root ports" + - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on CML root port" + - SAUCE: PCI/AER: Disable AER interrupt during suspend + - SAUCE: PCI/DPC: Disable DPC interrupt during suspend + + * switch to an autogenerated nvidia series based core via dkms-versions + (LP: #1912803) + - [Packaging] nvidia -- use dkms-versions to define versions built + - [Packaging] update-version-dkms -- maintain flags fields + + * Introduce the new NVIDIA 460-server series and update the 460 series + (LP: #1913200) + - [Config] dkms-versions -- add the 460-server nvidia driver + + * Fix the video can't output through WD19TB connected with TGL platform during + cold-boot (LP: #1910211) + - SAUCE: drm/i915/dp: Prevent setting LTTPR mode if no LTTPR is detected + + * Stop using get_scalar_status command in Dell AIO uart backlight driver + (LP: #1865402) + - SAUCE: platform/x86: dell-uart-backlight: add get_display_mode command + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/seccomp: Accept any valid fd in user_notification_addfd + - [Packaging] Don't disable CONFIG_DEBUG_INFO in headers packages + - [Config] update configs/annotations after rebase to 5.11-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc6 + + -- Andrea Righi Mon, 01 Feb 2021 10:27:52 +0100 + +linux (5.11.0-6.7) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Prevent thermal shutdown during boot process (LP: #1906168) + - thermal/drivers/acpi: Use hot and critical ops + - thermal/core: Remove notify ops + - thermal: int340x: Fix unexpected shutdown at critical temperature + - thermal: intel: pch: Fix unexpected shutdown at critical temperature + + * riscv: backport support for SiFive Unmatched (LP: #1910965) + - RISC-V: Update l2 cache DT documentation to add support for SiFive FU740 + - RISC-V: sifive_l2_cache: Update L2 cache driver to support SiFive FU740 + - dt-bindings: riscv: Update DT binding docs to support SiFive FU740 SoC + - riscv: dts: add initial support for the SiFive FU740-C000 SoC + - dt-bindings: riscv: Update YAML doc to support SiFive HiFive Unmatched board + - riscv: dts: add initial board data for the SiFive HiFive Unmatched + - PCI: microsemi: Add host driver for Microsemi PCIe controller + - Microsemi PCIe expansion board DT entry. + - SiFive Unleashed CPUFreq + - SiFive HiFive Unleashed: Add PWM LEDs (D1, D2, D3, D4) + + * initramfs unpacking failed (LP: #1835660) + - lib/decompress_unlz4.c: correctly handle zero-padding around initrds. + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.11-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc5 + + -- Andrea Righi Mon, 25 Jan 2021 09:31:31 +0100 + +linux (5.11.0-5.6) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] update config and annotations after rebase to 5.11-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc4 + + -- Andrea Righi Mon, 18 Jan 2021 10:46:10 +0100 + +linux (5.11.0-4.5) hirsute; urgency=medium + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + -- Andrea Righi Thu, 14 Jan 2021 12:53:26 +0100 + +linux (5.11.0-3.4) hirsute; urgency=medium + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - bpf: Allow empty module BTFs + - libbpf: Allow loading empty BTFs + + -- Andrea Righi Thu, 14 Jan 2021 07:43:45 +0100 + +linux (5.11.0-2.3) hirsute; urgency=medium + + * DMI entry syntax fix for Pegatron / ByteSpeed C15B (LP: #1910639) + - Input: i8042 - unbreak Pegatron C15B + + * SYNA30B4:00 06CB:CE09 Mouse on HP EliteBook 850 G7 not working at all + (LP: #1908992) + - HID: multitouch: Enable multi-input for Synaptics pointstick/touchpad device + + * debian/scripts/file-downloader does not handle positive failures correctly + (LP: #1878897) + - [Packaging] file-downloader not handling positive failures correctly + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * CVE-2021-1052 // CVE-2021-1053 + - [Packaging] NVIDIA -- Add the NVIDIA 460 driver + + * Miscellaneous Ubuntu changes + - [Packaging] Remove nvidia-455 dkms build + - SAUCE: ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP + machines + - [Config] update configs and annotations after rebase to 5.11-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc3 + + -- Andrea Righi Mon, 11 Jan 2021 09:52:27 +0100 + +linux (5.11.0-1.2) hirsute; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc2 + + -- Andrea Righi Thu, 07 Jan 2021 16:57:01 +0100 + +linux (5.11.0-0.1) hirsute; urgency=medium + + * dep-8 ubuntu-regression-suite tests are not run for all linux-hwe-* kernels + (LP: #1908529) + - [dep-8] Allow all hwe kernels + + * Fix reading speed and duplex sysfs on igc device (LP: #1906851) + - igc: Report speed and duplex as unknown when device is runtime suspended + + * rtwpci driver blocks the system to enter PC10, stuck at PC3 (LP: #1907200) + - SAUCE: rtw88: 8723de: let cpu enter c10 + + * [21.04 FEAT] Deactivate CONFIG_QETH_OSN kernel config option (LP: #1906370) + - [Config] Deactivate CONFIG_QETH_OSN kernel config option + + * Add dpcd backlight control for 0x4c83 0x4f41 (LP: #1905663) + - SAUCE: drm/dp: Add dpcd backlight control for 0x4c83 0x4f41 + + * disable building bpf selftests (LP: #1908144) + - SAUCE: selftests/bpf: Clarify build error if no vmlinux + - SAUCE: selftests: Skip BPF selftests by default + - disable building bpf selftests (no VMLINUX_BTF) + + * Miscellaneous Ubuntu changes + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - [Config] update configs and annotations after rebase to v5.11-rc1 + - hio: fix build error with kernel 5.11 + - SAUCE: shiftfs: fix build error with 5.11 + - [Config] temporarily disable ZFS + - check-aliases: do not error if modules.alias does not exist + - ppc64el: don't build stripped vdso + + * Miscellaneous upstream changes + - irq: export irq_check_status_bit + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc1 + + -- Andrea Righi Mon, 04 Jan 2021 09:17:48 +0100 + +linux (5.11.0-0.0) hirsute; urgency=medium + + * Empty entry + + -- Andrea Righi Wed, 30 Dec 2020 09:04:41 +0100 + +linux (5.10.0-9.10) hirsute; urgency=medium + + * Use INTx for Pericom USB controllers (LP: #1906839) + - PCI: Disable MSI for Pericom PCIe-USB adapter + + * disable building bpf selftests (LP: #1908144) + - SAUCE: selftests/bpf: clarify build error if no vmlinux + - SAUCE: selftests: Skip BPF seftests by default + - disable building bpf selftests (no VMLINUX_BTF) + + * Miscellaneous Ubuntu changes + - [Config] Enable CONFIG_BPF_LSM + + * Miscellaneous upstream changes + - Revert "md: change mddev 'chunk_sectors' from int to unsigned" + - Revert "dm raid: fix discard limits for raid1 and raid10" + + -- Andrea Righi Tue, 15 Dec 2020 10:16:14 +0100 + +linux (5.10.0-8.9) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Fix bpf selftest compilation with clang 11 + - bpf: Fix selftest compilation on clang 11 + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to v5.10 + + [ Upstream Kernel Changes ] + + * Rebase to v5.10 + + -- Andrea Righi Mon, 14 Dec 2020 08:57:57 +0100 + +linux (5.10.0-7.8) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix linux-libc-dev build for hirsute forward port kernels (LP: #1904067) + - [Debian] Build linux-libc-dev for debian.master* branches + + * Update kernel packaging to support forward porting kernels (LP: #1902957) + - [Debian] Update for leader included in BACKPORT_SUFFIX + + * Introduce the new NVIDIA 455 series (LP: #1897751) + - [Packaging] NVIDIA -- Add signed modules for the 455 driver + + * 5.10 kernel fails to boot with secure boot disabled (LP: #1904906) + - [Config] CONFIG_RCU_SCALE_TEST=n + + * Miscellaneous Ubuntu changes + - [Config] s390x: disable GPIO_CDEV + - [Config] ARM_CMN=m + - [Config] disable GPIO_CDEV_V1 + - [Config] Reorder annotations after 5.10-rc6 rebase + - [Packaging] Remove nvidia-435 dkms build + - [Packaging] Change source package name to linux + - [Config] Update configs and annotations after rebase to v5.10-rc7 + - SAUCE: Revert "mm/filemap: add static for function + __add_to_page_cache_locked" + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc7 + + -- Seth Forshee Mon, 07 Dec 2020 00:15:20 -0600 + +linux (5.10.0-6.7) hirsute; urgency=medium + + * Empty entry. + + -- Seth Forshee Sun, 06 Dec 2020 22:13:46 -0600 + +linux-5.10 (5.10.0-6.7) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Avoid double newline when running insertchanges (LP: #1903293) + - [Packaging] insertchanges: avoid double newline + + * Miscellaneous Ubuntu changes + - [Packaging]: linux-modules should depend on linux-image + - [Packaging]: linux-image should suggest linux-modules-extra + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc6 + + -- Andrea Righi Mon, 30 Nov 2020 07:47:34 +0100 + +linux-5.10 (5.10.0-5.6) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] add CONFIG_INFINIBAND_VIRT_DMA + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc5 + + -- Andrea Righi Mon, 23 Nov 2020 13:17:44 +0100 + +linux-5.10 (5.10.0-4.5) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] reduce the size required to build packages + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc4 + + -- Andrea Righi Mon, 16 Nov 2020 08:33:54 +0100 + +linux-5.10 (5.10.0-3.4) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * e1000e: fix issues with S0ix (LP: #1902687) + - SAUCE: e1000e: fix S0ix flow to allow S0i3.2 subset entry + - SAUCE: e1000e: allow turning s0ix flows on for systems with ME + - SAUCE: e1000e: Add Dell's Comet Lake systems into s0ix heuristics + - SAUCE: e1000e: Add more Dell CML systems into s0ix heuristics + - [Config] Update CONFIG_E1000E for ppc64el in annotations + + * perf: Add support for Rocket Lake (LP: #1902004) + - SAUCE: perf/x86/intel: Add Rocket Lake CPU support + - SAUCE: perf/x86/cstate: Add Rocket Lake CPU support + - SAUCE: perf/x86/msr: Add Rocket Lake CPU support + - SAUCE: perf/x86/intel/uncore: Add Rocket Lake support + + * Miscellaneous Ubuntu changes + - [Config] Disable CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE + - [Config] update CONFIG_MST_IRQ after rebase to 5.10-rc3 + - [Config] drop obsolete SND_SST_IPC options + - [Config] re-enable ZFS + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc3 + + -- Andrea Righi Mon, 09 Nov 2020 09:37:08 +0100 + +linux-5.10 (5.10.0-2.3) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Switch arm64 default cpufreq governor to ondemand + - [Debian] Include scripts/module.lds from builddir in headers package + + -- Seth Forshee Tue, 03 Nov 2020 21:01:52 -0600 + +linux-5.10 (5.10.0-1.2) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix non-working Intel NVMe after S3 (LP: #1900847) + - SAUCE: PCI: Enable ACS quirk on all CML root ports + + * Miscellaneous Ubuntu changes + - [Packaging] move to hirsute + - [Config] Update configs and annotations after rebase to 5.10-rc2 + - [Config] Update numerous configs to conform with policy + - [Config] Switch default CPUFreq governer for arm64/armhf to schedultil + - [Config] Temporarily disable DEBUG_INFO_BTF for armhf + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc2 + + -- Seth Forshee Mon, 02 Nov 2020 13:18:27 -0600 + +linux-5.10 (5.10.0-0.1) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] Update configs and annotations for v5.10-rc1 + - SAUCE: platform/x86: dell-uart-backlight: rename kzfree() to + kfree_sensitive() + - SAUCE: apparmor: rename kzfree() to kfree_sensitive() + - SAUCE: LSM: change ima_read_file() to use lsmblob + - SAUCE: LSM: Use lsmblob in smk_netlbl_mls() + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] Change source package name to linux-5.10" + - s390: correct __bootdata / __bootdata_preserved macros + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc1 + + -- Paolo Pisati Tue, 27 Oct 2020 16:57:07 +0100 + +linux-5.10 (5.10.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Paolo Pisati Mon, 26 Oct 2020 14:55:48 +0100 + +linux-5.9 (5.9.0-2.3) groovy; urgency=medium + + * Fix system reboot when disconnecting WiFi (LP: #1899726) + - iwlwifi: msix: limit max RX queues for 9000 family + + * booting linux-generic-lpae armhf kernel under qemu results in relocation out + of range, and thus no modules can be loaded (LP: #1899519) + - [Config] armhf: ARM_MODULE_PLTS=y + + * Fix broken MSI interrupt after HDA controller was suspended (LP: #1899586) + - ALSA: hda: fix jack detection with Realtek codecs when in D3 + + * CVE-2020-16119 + - SAUCE: dccp: avoid double free of ccid on child socket + + * python3-venv is gone (LP: #1896801) + - SAUCE: doc: remove python3-venv dependency + + * *-tools-common packages descriptions have typo "PGKVER" (LP: #1898903) + - [Packaging] Fix typo in -tools template s/PGKVER/PKGVER/ + + * Enable brightness control on HP DreamColor panel (LP: #1898865) + - SAUCE: drm/i915/dpcd_bl: Skip testing control capability with force DPCD + quirk + - SAUCE: drm/dp: HP DreamColor panel brigntness fix + + * HP Zbook Studio G7 boots into corrupted screen with PSR featured panel + (LP: #1897501) + - SAUCE: drm/i915/psr: allow overriding PSR disable param by quirk + - SAUCE: drm/dp: add DP_QUIRK_FORCE_PSR_CHIP_DEFAULT quirk to CMN prod-ID + 19-15 + + * Fix broken e1000e device after S3 (LP: #1897755) + - SAUCE: e1000e: Increase polling timeout on MDIC ready bit + + * Wakeup the system by touching the touchpad (LP: #1888331) + - HID: i2c-hid: Enable wakeup capability from Suspend-to-Idle + + * Enable LTR for endpoints behind VMD (LP: #1896598) + - SAUCE: PCI/ASPM: Enable LTR for endpoints behind VMD + + * [SRU] [Focal/OEM-5.6/Groovy]Fix AMD usb host controller lost after stress S3 + (LP: #1893914) + - SAUCE: xhci: workaround for S3 issue on AMD SNPS 3.0 xHC + + * debian/rules editconfigs does not work on s390x to change s390x only configs + (LP: #1863116) + - [Packaging] kernelconfig -- only update/edit configurations on architectures + we have compiler support + + * Fix non-working NVMe after S3 (LP: #1895718) + - SAUCE: PCI: Enable ACS quirk on CML root port + + * Miscellaneous Ubuntu changes + - SAUCE: bpf: Check CONFIG_BPF option for resolve_btfids + - SAUCE: tools resolve_btfids: Always force HOSTARCH + - packaging: arm64: add a 64KB mem pages flavour called 'generic-64k' + - packaging: arm64: generic-64k: skip ABI, modules and retpoline checks + - SAUCE: drm/i915/display: Fix null deref in intel_psr_atomic_check() + - [Config] Update toolchain versions + - [Config] Refresh annotations + - Add ubuntu-host module + - CONFIG_UBUNTU_HOST=m + - SAUCE: apparmor: drop prefixing abs root labels with '=' + - SAUCE: apparmor: disable showing the mode as part of a secid to secctx + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: LSM: Create and manage the lsmblob data structure. + - SAUCE: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: net: Prepare UDS for security module stacking + - SAUCE: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: LSM: Use lsmblob in security_task_getsecid + - SAUCE: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: IMA: Change internal interfaces to use lsmblobs + - SAUCE: LSM: Specify which LSM to display + - SAUCE: LSM: Ensure the correct LSM context releaser + - SAUCE: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: NET: Store LSM netlabel data in a lsmblob + - SAUCE: LSM: Verify LSM display sanity in binder + - SAUCE: Audit: Add new record for multiple process LSM attributes + - SAUCE: Audit: Add a new record for multiple object LSM + - SAUCE: LSM: Add /proc attr entry for full LSM context + - SAUCE: AppArmor: Remove the exclusive flag + - SAUCE: Audit: Fix for missing NULL check + + * Miscellaneous upstream changes + - tty: hvcs: Don't NULL tty->driver_data until hvcs_cleanup() + + [ Upstream Kernel Changes ] + + * Rebase to v5.9 + + -- Seth Forshee Wed, 14 Oct 2020 13:31:18 -0500 + +linux-5.9 (5.9.0-1.2) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Update configs after rebase to 5.9-rc6 + - SAUCE: dax: Fix compilation for CONFIG_DAX && !CONFIG_FS_DAX + - SAUCE: bpf: Use --no-fail option if CONFIG_BPF is not enabled + - SAUCE: tools resolve_btfids: Always force HOSTARCH + + [ Upstream Kernel Changes ] + + * Rebase to v5.9-rc6 + + -- Seth Forshee Mon, 21 Sep 2020 14:39:34 -0500 + +linux-5.9 (5.9.0-0.1) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Update configs and annotations for v5.9-rc1 + - SAUCE: i915: Fix build error due to missing struct definition + - hio -- Update blk_queue_split() calls for changes in 5.9-rc1 + - hio -- Updates for move of make_request_fn to struct block_device_operations + - [Config] Disable zfs dkms build + - [Config] Disable nvidia dkms build + - [Config] Disable nvidia server dkms builds + - SAUCE: remoteproc: qcom: Use div_u64() for 64-bit division + - SAUCE: PCI/ASPM: Enable ASPM for links under VMD domain + - [Packaging] Bind hv_vss_daemon startup to hv_vss device + - [Packaging] bind hv_fcopy_daemon startup to hv_fcopy device + - [Config] Re-enable UEFI signing for arm64 + - SAUCE: Revert "UBUNTU: SAUCE: export __get_vm_area_caller() and map_kernel_range()" + - [Config] Set the default CPU governor to ONDEMAND + - [Packaging] update variants + - [Packaging] update helper scripts + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.9-rc5 + + -- Seth Forshee Thu, 17 Sep 2020 15:01:21 -0500 + +linux-5.9 (5.9.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Tue, 18 Aug 2020 16:48:03 -0500 + +linux (5.8.0-16.17) groovy; urgency=medium + + * groovy/linux: 5.8.0-16.17 -proposed tracker (LP: #1891233) + + * Miscellaneous Ubuntu changes + - hio -- Update to use bio_{start,end}_io_acct with 5.8+ + - Enable hio driver + - [Packaging] Temporarily disable building doc package contents + + -- Seth Forshee Tue, 11 Aug 2020 15:32:58 -0500 + +linux (5.8.0-15.16) groovy; urgency=medium + + * groovy/linux: 5.8.0-15.16 -proposed tracker (LP: #1891177) + + * Miscellaneous Ubuntu changes + - SAUCE: Documentation: import error c_funcptr_sig_re, c_sig_re (sphinx- + doc/sphinx@0f49e30c) + + -- Seth Forshee Tue, 11 Aug 2020 09:29:58 -0500 + +linux (5.8.0-14.15) groovy; urgency=medium + + * groovy/linux: 5.8.0-14.15 -proposed tracker (LP: #1891085) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * msg_zerocopy.sh in net from ubuntu_kernel_selftests failed (LP: #1812620) + - selftests/net: relax cpu affinity requirement in msg_zerocopy test + + * Fix missing HDMI/DP Audio on an HP Desktop (LP: #1890441) + - ALSA: hda/hdmi: Add quirk to force connectivity + + * Add initial audio support for Lenovo ThinkStation P620 (LP: #1890317) + - ALSA: usb-audio: Add support for Lenovo ThinkStation P620 + + * Fix IOMMU error on AMD Radeon Pro W5700 (LP: #1890306) + - PCI: Mark AMD Navi10 GPU rev 0x00 ATS as broken + + * Enlarge hisi_sec2 capability (LP: #1890222) + - crypto: hisilicon - update SEC driver module parameter + + * Miscellaneous Ubuntu changes + - [Config] Re-enable signing for ppc64el + + -- Seth Forshee Mon, 10 Aug 2020 15:26:46 -0500 + +linux (5.8.0-13.14) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Remove i386 configs + - SAUCE: apply a workaround to re-enable CONFIG_CRYPTO_AEGIS128_SIMD + - SAUCE: export __get_vm_area_caller() and map_kernel_range() + - [Config] drop CONFIG_BINFMT_AOUT enforcement + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD" + + [ Upstream Kernel Changes ] + + * Rebase to v5.8 + + -- Andrea Righi Tue, 04 Aug 2020 09:51:50 +0200 + +linux (5.8.0-12.13) groovy; urgency=medium + + * groovy/linux: 5.8.0-12.13 -proposed tracker (LP: #1889481) + + * Fix right speaker of HP laptop (LP: #1889375) + - SAUCE: hda/realtek: Fix right speaker of HP laptop + + * blk_update_request error when mount nvme partition (LP: #1872383) + - SAUCE: nvme-pci: prevent SK hynix PC400 from using Write Zeroes command + + * Add support for Atlantic NIC firmware v4 (LP: #1886908) + - Revert "UBUNTU: SAUCE: net: atlantic: Add support for firmware v4" + - net: atlantic: align return value of ver_match function with function name + - net: atlantic: add support for FW 4.x + + * Miscellaneous Ubuntu changes + - [Debian] Fix debian/tests for linux-5.8 -> linux rename + - SAUCE: selftests/powerpc: return skip code for spectre_v2 + + -- Seth Forshee Wed, 29 Jul 2020 16:58:47 -0500 + +linux (5.8.0-11.12) groovy; urgency=medium + + * groovy/linux: 5.8.0-11.12 -proposed tracker (LP: #1889336) + + * Miscellaneous Ubuntu changes + - [Packaging] dwarves is not required for linux-libc-dev or stage1 + + -- Seth Forshee Tue, 28 Jul 2020 22:33:24 -0500 + +linux (5.8.0-10.11) groovy; urgency=medium + + * groovy/linux: 5.8.0-10.11 -proposed tracker (LP: #1889316) + + * Miscellaneous Ubuntu changes + - [Packaging] Add more packages to Build-Depends-Indep for docs + - [Debian] Specify python executable in kmake + - [Debian] Don't treat warnings as errors during perf builds + - [Config] Disable signing for ppc64el + + -- Seth Forshee Tue, 28 Jul 2020 17:09:52 -0500 + +linux (5.8.0-9.10) groovy; urgency=medium + + * groovy/linux: 5.8.0-9.10 -proposed tracker (LP: #1889140) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - SAUCE: Fix s390x compile error on F32 utils/stat-display.c + - [Packaging] Add python3-venv to Build-Depends-Indep + + -- Seth Forshee Mon, 27 Jul 2020 21:01:46 -0500 + +linux (5.8.0-8.9) groovy; urgency=medium + + * groovy/linux: 5.8.0-8.9 -proposed tracker (LP: #1889104) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + - [Packaging] update variants + + * Introduce the new NVIDIA 450-server and the 450 UDA series (LP: #1887674) + - [Packaging] NVIDIA -- Add signed modules for 450 450-server + + * Introduce the new NVIDIA 418-server and 440-server series, and update the + current NVIDIA drivers (LP: #1881137) + - [packaging] add signed modules for the 418-server and the 440-server + flavours + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "radix-tree: Use local_lock for protection" + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n + - [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD + - [Config] Enable nvidia dkms build + + * Miscellaneous upstream changes + - usbip: tools: fix build error for multiple definition + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc7 + + -- Seth Forshee Mon, 27 Jul 2020 11:18:12 -0500 + +linux (5.8.0-7.8) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Mon, 27 Jul 2020 09:22:19 +0200 + +linux-5.8 (5.8.0-7.8) groovy; urgency=medium + + * soc/amd/renoir: detect dmic from acpi table (LP: #1887734) + - ASoC: amd: add logic to check dmic hardware runtime + - ASoC: amd: add ACPI dependency check + - ASoC: amd: fixed kernel warnings + + * linux 4.15.0-109-generic network DoS regression vs -108 (LP: #1886668) + - SAUCE: Revert "netprio_cgroup: Fix unlimited memory leak of v2 cgroups" + + * Add support for Atlantic NIC firmware v4 (LP: #1886908) + - SAUCE: net: atlantic: Add support for firmware v4 + + * MGA G200e doesn't work under GDM Wayland (LP: #1886140) + - drm/mgag200: Remove HW cursor + - drm/mgag200: Clean up mga_set_start_address() + - drm/mgag200: Clean up mga_crtc_do_set_base() + - drm/mgag200: Move mode-setting code into separate helper function + - drm/mgag200: Split MISC register update into PLL selection, SYNC and I/O + - drm/mgag200: Update mode registers after plane registers + - drm/mgag200: Set pitch in a separate helper function + - drm/mgag200: Set primary plane's format in separate helper function + - drm/mgag200: Move TAGFIFO reset into separate function + - drm/mgag200: Move hiprilvl setting into separate functions + - drm/mgag200: Move register initialization into separate function + - drm/mgag200: Remove out-commented suspend/resume helpers + - drm/mgag200: Use simple-display data structures + - drm/mgag200: Convert to simple KMS helper + - drm/mgag200: Replace VRAM helpers with SHMEM helpers + + * Miscellaneous Ubuntu changes + - SAUCE: s390/bpf: fix sign extension in branch_ku + - SAUCE: selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support + - SAUCE: selftests: fib_nexthop_multiprefix: fix cleanup() netns deletion + - [packaging] debhelper-compat (= 10) (and retire debian/compat) + - [Config] Update configs after rebase to 5.8-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc6 + + -- Andrea Righi Mon, 20 Jul 2020 09:55:47 +0200 + +linux-5.8 (5.8.0-6.7) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * perf build broken after updating to bintuils 2.34.90.20200706-1ubuntu1 + (LP: #1887397) + - SAUCE: libtraceevent: Strip symbol version from nm output + + -- Seth Forshee Mon, 13 Jul 2020 14:07:53 -0500 + +linux-5.8 (5.8.0-5.6) groovy; urgency=medium + + * linux-libc-dev broken for crossbuilding, Multi-Arch:same violation + (LP: #1886188) + - [Packaging] Produce linux-libc-deb package for riscv64 + - [Debian] Disallow building linux-libc-dev from linux-riscv + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "UBUNTU: SAUCE: test_bpf: remove expected fail for Ctx heavy + transformations test on s390" + - SAUCE: Revert "test_bpf: flag tests that cannot be jited on s390" + - [Config] Update configs (gcc update) + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc5 + + -- Andrea Righi Mon, 13 Jul 2020 08:42:14 +0200 + +linux-5.8 (5.8.0-4.5) groovy; urgency=medium + + * Add generic LED class support for audio LED (LP: #1885896) + - ALSA: hda: generic: Always call led-trigger for mic mute LED + - ALSA: hda: generic: Add a helper for mic-mute LED with LED classdev + - ALSA: hda/realtek: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda/conexant: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda/sigmatel: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda: generic: Drop unused snd_hda_gen_fixup_micmute_led() + - ALSA: hda: generic: Drop the old mic-mute LED hook + - ALSA: hda: generic: Add vmaster mute LED helper + - ALSA: hda/realtek: Use the new vmaster mute LED helper + - ALSA: hda/conexant: Use the new vmaster mute LED helper + - ALSA: hda/sigmatel: Use the new vmaster mute LED helper + - ALSA: hda/realtek: Unify LED helper code + - ALSA: hda: Let LED cdev handling suspend/resume + + * seccomp_bpf fails on powerpc (LP: #1885757) + - SAUCE: selftests/seccomp: fix ptrace tests on powerpc + + * CVE-2020-11935 + - SAUCE: aufs: do not call i_readcount_inc() + + * Miscellaneous Ubuntu changes + - SAUCE: Update aufs to 5.x-rcN 20200622 + - [Config] Update configs to set CONFIG_SND_HDA_GENERIC_LEDS value + - [Config] CONFIG_SECURITY_DMESG_RESTRICT=y + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc4 + + -- Seth Forshee Mon, 06 Jul 2020 08:14:28 -0500 + +linux-5.8 (5.8.0-3.4) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + + * lxc 1:4.0.2-0ubuntu1 ADT test failure with linux-5.8 5.8.0-1.2 + (LP: #1884635) + - SAUCE: overlayfs: fix faulty rebase + + * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) + - SAUCE: shiftfs: prevent ESTALE for LOOKUP_JUMP lookups + + * shiftfs: fix btrfs regression (LP: #1884767) + - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: fix dentry revalidation" + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=y + - SAUCE: regulator: rename da903x to da903x-regulator + - [Config] Add da903x to modules.ignore + - [Config] Update configs for rebase to 5.8-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc3 + + -- Seth Forshee Mon, 29 Jun 2020 08:48:25 -0500 + +linux-5.8 (5.8.0-2.3) groovy; urgency=medium + + * Support Audio Mute LED for two new HP laptops (LP: #1884251) + - ALSA: hda/realtek: Add mute LED and micmute LED support for HP systems + + * CVE-2019-16089 + - SAUCE: nbd_genl_status: null check for nla_nest_start + + * tpm: fix TIS locality timeout problems (LP: #1881710) + - SAUCE: tpm: fix TIS locality timeout problems + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - SAUCE: security,perf: Allow further restriction of perf_event_open + - [Config] CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y + - [Config] Update configs and annotations for 5.8-rc2 + - [Config] Enable zfs + - [Config] Enable CONFIG_DEBUG_INFO_BTF + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc2 + + -- Seth Forshee Mon, 22 Jun 2020 15:05:54 -0500 + +linux-5.8 (5.8.0-1.2) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Debian] Support linux-x.y in udeb package names + - [Packaging] Use SRCPKGNAME for udeb packages + + -- Seth Forshee Wed, 17 Jun 2020 19:34:32 -0500 + +linux-5.8 (5.8.0-0.1) groovy; urgency=medium + + * Docker registry doesn't stay up and keeps restarting (LP: #1879690) + - Revert "UBUNTU: SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay" + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] Update source package name to linux-5.8 + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + - SAUCE: Import aufs driver + - [Config] Update configs for v5.8-rc1 + - [Config] Update annotations for v5.8-rc1 config changes + - SAUCE: shiftfs -- Fix build errors from missing fiemap definitions + - Disable hio driver + + * Miscellaneous upstream changes + - acpi: disallow loading configfs acpi tables when locked down + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc1 + + -- Seth Forshee Wed, 17 Jun 2020 11:54:24 -0500 + +linux-5.8 (5.8.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Sun, 14 Jun 2020 22:40:35 -0500 + +linux-5.7 (5.7.0-8.9) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Enforce all config annotations (LP: #1879327) + - [Config]: do not enforce CONFIG_VERSION_SIGNATURE + - [Config]: prepare to enforce all + - [Config]: enforce all config options + + * Miscellaneous Ubuntu changes + - [Config]: annotations review after 5.7 rebase + - [Config] annotations: IXP4XX* depends on ARCH_IXP4XX + - [Config] THERMAL_GOV_POWER_ALLOCATOR=y + - [Config] annotations: SOC_CAMERA is marked as BROKEN + - [Config] annotations: NFSD_V4_2_INTER_SSC depends on NFS_FS=y + - [Config] annotations: CRYPTO_DEV_CHELSIO_TLS depends on legacy (and largely + unmantained) TLS_TOE + - [Config] annotations: SERIO_OLPC_APSP depends on ARCH_MMP + - [Config] RTW88_DEBUG=y + - [Config] annotations: ISDN_CAPI is a bool, and BT_CMTP depends on it + - [Config] annotations SND_SOC_SOF_DEVELOPER_SUPPORT depends on + SND_SOC_SOF_DEVELOPER_SUPPORT + - [Config] annotations: SND_SOC_SOF_BAYTRAIL_SUPPORT is mutually exclusive + with SND_SST_ATOM_HIFI2_PLATFORM_ACPI + - [Config] annotations: DEBUG_IMX_UART_PORT is defined only any + DEBUG_IMX*_UART is enabled + - [Config] annotations: HW_RANDOM_IMX_RNGC depends on SOC_IMX25 + - [Config] annotations: armhf: VIRTUALIZATION support was removed for arm32 + - [Config] annotations: arm64: remove DEBUG_ALIGN_RODATA + - [Config] annotations: ppc64: DATA_SHIFT defaults to PPC_PAGE_SHIFT + - [Config] arm64: enforce ARM64_USE_LSE_ATOMICS + - [Config] s390x: MOST is not set + - [Config] s390x: BCM84881_PHY is not set + - [Config] s390x: XILINX_LL_TEMAC is not set + - [Config] s390x: PHY_INTEL_EMMC requires GENERIC_PHY (off by default on + s390x) + - [Config] s390x: CHECK_STACK conflicts with VMAP_STACK + - [Config] annotations: s390x: NODES_SHIFT=1 + - [Config] annotations: import new symbols + - [Config] annotations: remove unmatched menu and options + + -- Paolo Pisati Fri, 12 Jun 2020 12:03:01 +0200 + +linux-5.7 (5.7.0-7.8) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + - [Packaging] update helper scripts + + * [UBUNTU 20.04] s390x/pci: fix linking between PF and VF for multifunction + devices (LP: #1879704) + - PCI/IOV: Introduce pci_iov_sysfs_link() function + - s390/pci: create links between PFs and VFs + + * Miscellaneous Ubuntu changes + - [Config] Disable UEFI signing for arm64 + - Rebase to v5.7.1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.7.1 + + -- Paolo Pisati Mon, 08 Jun 2020 11:16:58 +0200 + +linux-5.7 (5.7.0-6.7) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + + * shiftfs: fix btrfs snapshot deletion (LP: #1879688) + - SAUCE: shiftfs: let userns root destroy subvolumes from other users + + * seccomp_benchmark times out on eoan (LP: #1881576) + - SAUCE: selftests/seccomp: use 90s as timeout + + * Realtek 8723DE [10ec:d723] subsystem [10ec:d738] disconnects unsolicitedly + when Bluetooth is paired: Reason: 23=IEEE8021X_FAILED (LP: #1878147) + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: Move driver IQK to set channel before + association for 11N chip" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: fix rate for a while after being + connected" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: No retry and report for auth and assoc" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: 8723d: Add coex support" + - rtw88: 8723d: Add coex support + - SAUCE: rtw88: coex: 8723d: set antanna control owner + - SAUCE: rtw88: coex: 8723d: handle BT inquiry cases + - SAUCE: rtw88: fix EAPOL 4-way failure by finish IQK earlier + + * ASoC/amd: add audio driver for amd renoir (LP: #1881046) + - ASoC: amd: add Renoir ACP3x IP register header + - ASoC: amd: add Renoir ACP PCI driver + - ASoC: amd: add acp init/de-init functions + - ASoC: amd: create acp3x pdm platform device + - ASoC: amd: add ACP3x PDM platform driver + - ASoC: amd: irq handler changes for ACP3x PDM dma driver + - ASoC: amd: add acp3x pdm driver dma ops + - ASoC: amd: add ACP PDM DMA driver dai ops + - ASoC: amd: add Renoir ACP PCI driver PM ops + - ASoC: amd: add ACP PDM DMA driver pm ops + - ASoC: amd: enable Renoir acp3x drivers build + - ASoC: amd: create platform devices for Renoir + - ASoC: amd: RN machine driver using dmic + - ASoC: amd: enable build for RN machine driver + - ASoC: amd: fix kernel warning + - ASoC: amd: refactoring dai_hw_params() callback + - ASoC: amd: return error when acp de-init fails + - [Config]: enable amd renoir ASoC audio + + * Slow send speed with Intel I219-V on Ubuntu 18.04.1 (LP: #1802691) + - e1000e: Disable TSO for buffer overrun workaround + + * Fix incorrect speed/duplex when I210 device is runtime suspended + (LP: #1880656) + - igb: Report speed and duplex as unknown when device is runtime suspended + + * Fix Pericom USB controller OHCI/EHCI PME# defect (LP: #1879321) + - serial: 8250_pci: Move Pericom IDs to pci_ids.h + - PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect + + * [UBUNTU 20.04] s390x/pci: enumerate pci functions per physical adapter + (LP: #1874056) + - s390/pci: Expose new port attribute for PCIe functions + - s390/pci: adaptation of iommu to multifunction + - s390/pci: define kernel parameters for PCI multifunction + - s390/pci: define RID and RID available + - s390/pci: create zPCI bus + - s390/pci: adapt events for zbus + - s390/pci: Handling multifunctions + - s390/pci: Do not disable PF when VFs exist + - s390/pci: Documentation for zPCI + - s390/pci: removes wrong PCI multifunction assignment + + * add 16-bit width registers support for EEPROM at24 device (LP: #1876699) + - regmap-i2c: add 16-bit width registers support + + * Miscellaneous Ubuntu changes + - [Config] Enable virtualbox guest and shared-folder modules + + [ Upstream Kernel Changes ] + + * Rebase to v5.7 + + -- Seth Forshee Mon, 01 Jun 2020 16:11:24 -0500 + +linux-5.7 (5.7.0-5.6) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * [UBUNTU 20.04] PSI generates overhead on s390x (LP: #1876044) + - Ubuntu: [Config] CONFIG_PSI is enabled by default, but creates additional + overhead on s390x, hence should be disabled by default on s390x only. + + * Miscellaneous Ubuntu changes + - Rebase to v5.7-rc7 + - [Config] ppc64el: disable STRICT_KERNEL_RWX + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc7 + + -- Paolo Pisati Mon, 25 May 2020 11:44:09 +0200 + +linux-5.7 (5.7.0-4.5) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * update-initramfs complains of missing amdgpu firmware files (LP: #1873325) + - SAUCE: drm/amdgpu: Remove unreleased arcturus and navi12 firmware from + modinfo + + * Support DMIC micmute LED on HP platforms (LP: #1876859) + - ALSA: hda/realtek - Introduce polarity for micmute LED GPIO + - ALSA: hda/realtek - Enable micmute LED on and HP system + - ALSA: hda/realtek - Add LED class support for micmute LED + - ALSA: hda/realtek - Fix unused variable warning w/o + CONFIG_LEDS_TRIGGER_AUDIO + - ASoC: SOF: Update correct LED status at the first time usage of + update_mute_led() + + * Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW), + REV=0x354 [8086:a0f0] subsystem id [1a56:1651] wireless adapter not found + due to firmware crash (LP: #1874685) + - SAUCE: iwlwifi: pcie: handle QuZ configs with killer NICs as well + + * rtkit-daemon[*]: Failed to make ourselves RT: Operation not permitted after + upgrade to 20.04 (LP: #1875665) + - [Config] Turn off CONFIG_RT_GROUP_SCHED everywhere + + * Unable to handle kernel pointer dereference in virtual kernel address space + on Eoan (LP: #1876645) + - SAUCE: overlayfs: fix shitfs special-casing + + * Miscellaneous Ubuntu changes + - SAUCE: skip building selftest 'runqslower' if kernel not built + - Rebase to v5.7-rc6 + - [Config] updateconfigs after 5.7-rc6 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc6 + + -- Paolo Pisati Mon, 18 May 2020 11:27:25 +0200 + +linux-5.7 (5.7.0-3.4) groovy; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc5 + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * getitimer returns it_value=0 erroneously (LP: #1349028) + - [Config] CONTEXT_TRACKING_FORCE policy should be unset + + * lockdown on power (LP: #1855668) // Ubuntu Kernel Support for OpenPOWER NV + Secure & Trusted Boot (LP: #1866909) + - [Config] Enable configs for OpenPOWER NV Secure & Trusted Boot + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Config] annotations: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC + - [Config] Remove CONFIG_SND_HDA_INTEL_DETECT_DMIC from annotations + - [Debian] final-checks -- Do not remove ~* from abi + - [Config] Enable 5-level page table support for x86 + - [Config] updateconfigs after 5.7-rc5 rebase + + -- Paolo Pisati Mon, 11 May 2020 10:25:42 +0200 + +linux-5.7 (5.7.0-2.3) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + - [Packaging] update helper scripts + + * ASUS T100HAN boots to a blank screen with a cursor [i965: Failed to submit + batchbuffer: Input/output error] (LP: #1860754) + - [Config] CONFIG_PMIC_OPREGION=y and CONFIG_GPIO_CRYSTAL_COVE=y for amd64 + + * ubuntu/focal64 fails to mount Vagrant shared folders (LP: #1873506) + - [Packaging] Move virtualbox modules to linux-modules + - [Packaging] Remove vbox and zfs modules from generic.inclusion-list + + * built-using constraints preventing uploads (LP: #1875601) + - temporarily drop Built-Using data + + * dkms artifacts may expire from the pool (LP: #1850958) + - [Packaging] autoreconstruct -- manage executable debian files + - [packaging] handle downloads from the librarian better + + * Add signed modules for the 435 NVIDIA driver (LP: #1875888) + - [Packaging] NVIDIA -- add signed modules for the 435 NVIDIA driver + + * [Selftests] Apply various fixes and improvements (LP: #1870543) + - SAUCE: selftests/seccomp -- Disable timeout for seccomp tests + + * [17.04 FEAT] Integrate kernel message catalogue for s390x into Ubuntu + distribution (LP: #1628889) + - SAUCE: s390: kernel message catalog + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) + - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th + + * [ICL] TC port in legacy/static mode can't be detected due TCCOLD + (LP: #1868936) + - drm/i915/display: Move out code to return the digital_port of the aux ch + - drm/i915/display: Add intel_legacy_aux_to_power_domain() + - drm/i915/display: Split hsw_power_well_enable() into two + - drm/i915/tc/icl: Implement TC cold sequences + - drm/i915/tc: Skip ref held check for TC legacy aux power wells + - drm/i915/tc/tgl: Implement TC cold sequences + - drm/i915/tc: Catch TC users accessing FIA registers without enable aux + - drm/i915/tc: Do not warn when aux power well of static TC ports timeout + + * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) + - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 + 2-in-1" + + * 'Elan touchpad' not detected on 'Lenovo ThinkBook 15 IIL' (LP: #1861610) + - SAUCE: Input: elan_i2c - add more hardware ID for Lenovo laptop + + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) + - SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay + + * alsa/sof: kernel oops on the machine without Intel hdmi audio codec (a + regression in the asoc machine driver) (LP: #1874359) + - ASoC: intel/skl/hda - fix oops on systems without i915 audio codec + + * Add debian/rules targets to compile/run kernel selftests (LP: #1874286) + - [Packaging] add support to compile/run selftests + + * 5.4.0-24.28 does not seem to apply rtprio, whereas -21 does. (LP: #1873315) + - [Config] lowlatency: turn off RT_GROUP_SCHED + + * alsa/sof: external mic can't be deteced on Lenovo and HP laptops + (LP: #1872569) + - SAUCE: ASoC: intel/skl/hda - set autosuspend timeout for hda codecs + + * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) + - SAUCE: shiftfs: fix dentry revalidation + + * shiftfs: broken shiftfs nesting (LP: #1872094) + - SAUCE: shiftfs: record correct creator credentials + + * lockdown on power (LP: #1855668) + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + + * Add support for Realtek 8723DE wireless adapter (LP: #1780590) + - SAUCE: rtw88: add adaptivity support for EU/JP regulatory + - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets + - SAUCE: rtw88: sar: dump sar information via debugfs + - SAUCE: rtw88: 8723d: add IQ calibration + - SAUCE: rtw88: 8723d: Add power tracking + - SAUCE: rtw88: 8723d: implement flush queue + - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info + - SAUCE: rtw88: 8723d: Add coex support + - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend + + * Fix authentication fail on Realtek WiFi 8723de (LP: #1871300) + - SAUCE: rtw88: No retry and report for auth and assoc + - SAUCE: rtw88: fix rate for a while after being connected + - SAUCE: rtw88: Move driver IQK to set channel before association for 11N chip + + * Miscellaneous Ubuntu changes + - SAUCE: rtw88: fix 'const' mismatch in power suequence hooks + - SAUCE: rtw88: fix 'const' mismatch in + __priority_queue_cfg_legacy()/__priority_queue_cfg() + - [Config] RTW88=m + - SAUCE: (lockdown) Revert carried-forward lockdown patches + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - [Config] Add back CONFIG_LOCK_DOWN_IN_SECURE_BOOT annotation for ppc64el + - [Config] CONFIG_RT_GROUP_SCHED=y + - [Packaging] Include modules.builtin.modinfo in linux-modules + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: Fix-up af_unix mediation for sock infrastructure management + - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" + - SAUCE: Revert "apparmor: Parse secmark policy" + - SAUCE: Revert "apparmor: Add a wildcard secid" + - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" + - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" + - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" + - Update dropped.txt for restored apparmor patches + - Remove lockdown patches from dropped.txt + - SAUCE: powerpc/ima: require IMA module signatures only if MODULE_SIG is not + enabled + - SAUCE: selftests/ftrace: Use printf instead of echo in kprobe syntax error + tests + - SAUCE: selftests/net -- disable l2tp.sh test + - SAUCE: selftests/net -- disable timeout + - SAUCE: tools: hv: Update shebang to use python3 instead of python + - Remove dropped.txt + - [Packaging] move linux-doc and linux-libc-dev stubs to debian.master + - [Debian] Support generating configs for riscv64 + - [Config] CONFIG_KMSG_IDS=y for s390x + - [Packaging] add libcap-dev dependency + - [Config] CONFIG_AD5770R=m + - [Config] CONFIG_AL3010=m + - [Config] CONFIG_APPLE_MFI_FASTCHARGE=m + - [Config] CONFIG_BAREUDP=m + - [Config] CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m + - [Config] CONFIG_CRYPTO_DEV_ZYNQMP_AES=m + - [Config] CONFIG_DRM_DISPLAY_CONNECTOR=m + - [Config] CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m + - [Config] CONFIG_DRM_PANEL_ELIDA_KD35T133=m + - [Config] CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m + - [Config] CONFIG_DRM_PANEL_NOVATEK_NT35510=m + - [Config] CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m + - [Config] CONFIG_DRM_PARADE_PS8640=m + - [Config] CONFIG_DRM_SIMPLE_BRIDGE=m + - [Config] CONFIG_DRM_TIDSS=m + - [Config] CONFIG_DRM_TI_TPD12S015=m + - [Config] CONFIG_DRM_TOSHIBA_TC358768=m + - [Config] CONFIG_EDAC_DMC520=m + - [Config] CONFIG_EXFAT_FS=m + - [Config] CONFIG_GP2AP002=m + - [Config] CONFIG_GPIO_MLXBF2=m + - [Config] CONFIG_HID_GLORIOUS=m + - [Config] CONFIG_HID_MCP2221=m + - [Config] CONFIG_HMC425=m + - [Config] CONFIG_ICP10100=m + - [Config] CONFIG_IMX8MM_THERMAL=m + - [Config] CONFIG_IMX_SC_THERMAL=m + - [Config] CONFIG_INTERCONNECT_QCOM_OSM_L3=m + - [Config] CONFIG_INTERCONNECT_QCOM_SC7180=m + - [Config] CONFIG_K3_RTI_WATCHDOG=m + - [Config] CONFIG_MDIO_IPQ8064=m + - [Config] CONFIG_MDIO_MVUSB=m + - [Config] CONFIG_MHI_BUS=m + - [Config] CONFIG_OCTEONTX2_VF=m + - [Config] CONFIG_PHY_CADENCE_TORRENT=m + - [Config] CONFIG_PHY_QCOM_USB_HS_28NM=m + - [Config] CONFIG_PHY_QCOM_USB_SS=m + - [Config] CONFIG_PINCTRL_DA9062=m + - [Config] CONFIG_PINCTRL_IPQ6018=m + - [Config] CONFIG_PTP_1588_CLOCK_IDT82P33=m + - [Config] CONFIG_PTP_1588_CLOCK_VMW=m + - [Config] CONFIG_QCOM_IPA=m + - [Config] CONFIG_REGULATOR_MP5416=m + - [Config] CONFIG_REGULATOR_MP886X=m + - [Config] CONFIG_RN5T618_ADC=m + - [Config] CONFIG_RTC_DRV_MT2712=m + - [Config] CONFIG_RTC_DRV_RC5T619=m + - [Config] CONFIG_SC_MSS_7180=m + - [Config] CONFIG_SENSORS_AXI_FAN_CONTROL=m + - [Config] CONFIG_SM_GCC_8250=m + - [Config] CONFIG_SND_BCM63XX_I2S_WHISTLER=m + - [Config] CONFIG_SND_MESON_AIU=m + - [Config] CONFIG_SND_MESON_G12A_TOACODEC=m + - [Config] CONFIG_SND_MESON_GX_SOUND_CARD=m + - [Config] CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m + - [Config] CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m + - [Config] CONFIG_SND_SOC_MESON_T9015=m + - [Config] CONFIG_SND_SOC_RT5682_SDW=m + - [Config] CONFIG_SND_SOC_TLV320ADCX140=m + - [Config] CONFIG_SPI_FSI=m + - [Config] CONFIG_SPI_MTK_NOR=m + - [Config] CONFIG_SPI_MUX=m + - [Config] CONFIG_SPRD_THERMAL=m + - [Config] CONFIG_SURFACE_3_POWER_OPREGION=m + - [Config] CONFIG_TINYDRM_ILI9486=m + - [Config] CONFIG_TI_K3_AM65_CPSW_NUSS=m + - [Config] CONFIG_TYPEC_MUX_INTEL_PMC=m + - [Config] CONFIG_UACCE=m + - [Config] CONFIG_UNIPHIER_XDMAC=m + - [Config] CONFIG_USB_MAX3420_UDC=m + - [Config] CONFIG_USB_RAW_GADGET=m + - [Config] CONFIG_VHOST_VDPA=m + - [Config] CONFIG_VIDEO_IMX219=m + - [Config] CONFIG_VIDEO_SUN8I_ROTATE=m + - [Config] CONFIG_VIRTIO_VDPA=m + - [Config] CONFIG_MOST_COMPONENTS=m + - [Config] CONFIG_MFD_IQS62X=m + - packaging: getabis: switch to ckt-ppa:bootstrap/linux-5.7 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask" + - Revert "UBUNTU: SAUCE: drm/i915/fbc: disable framebuffer compression on + IceLake" + - Revert "UBUNTU: SAUCE: platform/x86: dell-uart-backlight: move retry block" + + -- Paolo Pisati Mon, 04 May 2020 10:48:48 +0200 + +linux-5.7 (5.7.0-1.2) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - SAUCE: hio: pass make_request ptr directly to blk_alloc_queue() + - SAUCE: hio: locally define disk_map_sector_rcu() + - SAUCE: hio: Revert "block: unexport disk_map_sector_rcu" + - SAUCE: hio: include + - [Config] amd64: i386: HIO=m + - [Config] updateconfigs after 5.7-rc3 rebase + + -- Paolo Pisati Mon, 27 Apr 2020 11:31:38 +0200 + +linux-5.7 (5.7.0-0.1) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.7-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc1 + * Rebase to v5.7-rc2 + + -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 + +linux-5.7 (5.7.0-0.0) focal; urgency=medium + + * Dummy entry + + -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 + +linux-5.6 (5.6.0-7.7) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Kernel Oops - general protection fault: 0000 [#1] SMP PTI after + disconnecting thunderbolt docking station (LP: #1864754) + - SAUCE: ptp: free ptp clock properly + + * swap storms kills interactive use (LP: #1861359) + - SAUCE: mm/page_alloc.c: disable memory reclaim watermark boosting by default + + * sysfs: incorrect network device permissions on network namespace change + (LP: #1865359) + - sysfs: add sysfs_file_change_owner() + - sysfs: add sysfs_link_change_owner() + - sysfs: add sysfs_group{s}_change_owner() + - sysfs: add sysfs_change_owner() + - device: add device_change_owner() + - drivers/base/power: add dpm_sysfs_change_owner() + - net-sysfs: add netdev_change_owner() + - net-sysfs: add queue_change_owner() + - net: fix sysfs permssions when device changes network namespace + - sysfs: fix static inline declaration of sysfs_groups_change_owner() + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6 + + -- Andrea Righi Tue, 31 Mar 2020 10:45:09 +0200 + +linux-5.6 (5.6.0-6.6) focal; urgency=medium + + * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) + - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th + + * Make Dell WD19 dock more reliable after suspend (LP: #1868217) + - xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3 + - xhci: Wait until link state trainsits to U0 after setting USB_SS_PORT_LS_U0 + - xhci: Finetune host initiated USB3 rootport link suspend and resume + + * update-version-dkms doesn't add a BugLink (LP: #1867790) + - [Packaging] Add BugLink to update-version-dkms commit + + * Add support for Realtek 8723DE wireless adapter (LP: #1780590) + - SAUCE: rtw88: add regulatory process strategy for different chipset + - SAUCE: rtw88: support dynamic user regulatory setting + - SAUCE: rtw88: Use secondary channel offset enumeration + - SAUCE: rtw88: 8822c: modify rf protection setting + - SAUCE: rtw88: disable TX-AMSDU on 2.4G band + - SAUCE: Revert "rtw88: disable TX-AMSDU on 2.4G band" + - SAUCE: rtw88: disable TX-AMSDU on 2.4G band + - SAUCE: rtw88: remove unused parameter vif in rtw_lps_pg_info_get() + - SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask + - SAUCE: rtw88: pci: 8822c should set clock delay to zero + - SAUCE: rtw88: move rtw_enter_ips() to the last when config + - SAUCE: rtw88: avoid holding mutex for cancel_delayed_work_sync() + - SAUCE: rtw88: add ciphers to suppress error message + - SAUCE: rtw88: 8822c: update power sequence to v16 + - SAUCE: rtw88: Fix incorrect beamformee role setting + - SAUCE: rtw88: don't hold all IRQs disabled for PS operations + - SAUCE: rtw88: extract alloc rsvd_page and h2c skb routines + - SAUCE: rtw88: associate reserved pages with each vif + - SAUCE: rtw88: add adaptivity support for EU/JP regulatory + - SAUCE: rtw88: 8723d: Add basic chip capabilities + - SAUCE: rtw88: 8723d: add beamform wrapper functions + - SAUCE: rtw88: 8723d: Add power sequence + - SAUCE: rtw88: 8723d: Add RF read/write ops + - SAUCE: rtw88: 8723d: Add mac/bb/rf/agc/power_limit tables + - SAUCE: rtw88: 8723d: Add cfg_ldo25 to control LDO25 + - SAUCE: rtw88: 8723d: Add new chip op efuse_grant() to control efuse access + - SAUCE: rtw88: 8723d: Add read_efuse to recognize efuse info from map + - SAUCE: rtw88: add legacy firmware download for 8723D devices + - SAUCE: rtw88: no need to send additional information to legacy firmware + - SAUCE: rtw88: 8723d: Add mac power-on/-off function + - SAUCE: rtw88: decompose while(1) loop of power sequence polling command + - SAUCE: rtw88: 8723d: 11N chips don't support H2C queue + - SAUCE: rtw88: 8723d: implement set_tx_power_index ops + - SAUCE: rtw88: 8723d: Organize chip TX/RX FIFO + - SAUCE: rtw88: 8723d: initialize mac/bb/rf basic functions + - SAUCE: rtw88: 8723d: Add DIG parameter + - SAUCE: rtw88: 8723d: Add query_rx_desc + - SAUCE: rtw88: 8723d: Add set_channel + - SAUCE: rtw88: handle C2H_CCX_TX_RPT to know if packet TX'ed successfully + - SAUCE: rtw88: 8723d: 11N chips don't support LDPC + - SAUCE: rtw88: set default port to firmware + - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets + - SAUCE: rtw88: sar: add SAR of TX power limit + - SAUCE: rtw88: sar: Load static SAR table from ACPI WRDS method + - SAUCE: rtw88: sar: Load dynamic SAR table from ACPI methods + - SAUCE: rtw88: sar: apply dynamic SAR table to tx power limit + - SAUCE: rtw88: sar: add sar_work to poll if dynamic SAR table is changed + - SAUCE: rtw88: sar: dump sar information via debugfs + - SAUCE: rtw88: 8723d: Add chip_ops::false_alarm_statistics + - SAUCE: rtw88: 8723d: Set IG register for CCK rate + - SAUCE: rtw88: 8723d: add interface configurations table + - SAUCE: rtw88: 8723d: Add LC calibration + - SAUCE: rtw88: 8723d: add IQ calibration + - SAUCE: rtw88: 8723d: Add power tracking + - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend + - SAUCE: rtw88: 8723d: implement flush queue + - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info + - SAUCE: rtw88: 8723d: Add coex support + - SAUCE: rtw88: fill zeros to words 0x06 and 0x07 of security cam entry + - SAUCE: rtw88: 8723d: Add 8723DE to Kconfig and Makefile + - [Config] CONFIG_RTW88_8723DE=y + + * [Ubuntu 20.04] Unset HIBERNATION and PM kernel config options for focal + (LP: #1867753) + - [Config] CONFIG_HIBERNATION=n and CONFIG_PM=n for s390x + + * [20.04 FEAT] Base KVM setup for secure guests - kernel part (LP: #1835531) + - s390/protvirt: introduce host side setup + - s390/protvirt: add ultravisor initialization + - s390/mm: provide memory management functions for protected KVM guests + - s390/mm: add (non)secure page access exceptions handlers + - s390/protvirt: Add sysfs firmware interface for Ultravisor information + - KVM: s390/interrupt: do not pin adapter interrupt pages + - KVM: s390: protvirt: Add UV debug trace + - KVM: s390: add new variants of UV CALL + - KVM: s390: protvirt: Add initial vm and cpu lifecycle handling + - KVM: s390: protvirt: Secure memory is not mergeable + - KVM: s390/mm: Make pages accessible before destroying the guest + - KVM: s390: protvirt: Handle SE notification interceptions + - KVM: s390: protvirt: Instruction emulation + - KVM: s390: protvirt: Implement interrupt injection + - KVM: s390: protvirt: Add SCLP interrupt handling + - KVM: s390: protvirt: Handle spec exception loops + - KVM: s390: protvirt: Add new gprs location handling + - KVM: S390: protvirt: Introduce instruction data area bounce buffer + - KVM: s390: protvirt: handle secure guest prefix pages + - KVM: s390/mm: handle guest unpin events + - KVM: s390: protvirt: Write sthyi data to instruction data area + - KVM: s390: protvirt: STSI handling + - KVM: s390: protvirt: disallow one_reg + - KVM: s390: protvirt: Do only reset registers that are accessible + - KVM: s390: protvirt: Only sync fmt4 registers + - KVM: s390: protvirt: Add program exception injection + - KVM: s390: protvirt: UV calls in support of diag308 0, 1 + - KVM: s390: protvirt: Report CPU state to Ultravisor + - KVM: s390: protvirt: Support cmd 5 operation state + - KVM: s390: protvirt: Mask PSW interrupt bits for interception 104 and 112 + - KVM: s390: protvirt: do not inject interrupts after start + - KVM: s390: protvirt: Add UV cpu reset calls + - DOCUMENTATION: Protected virtual machine introduction and IPL + - KVM: s390: protvirt: introduce and enable KVM_CAP_S390_PROTECTED + - KVM: s390: protvirt: Add KVM api documentation + - mm/gup/writeback: add callbacks for inaccessible pages + + * All PS/2 ports on PS/2 Serial add-in bracket are not working after S3 + (LP: #1866734) + - SAUCE: Input: i8042 - fix the selftest retry logic + + * Sys oopsed with sysfs test in ubuntu_stress_smoke_test on X-hwe ARM64 + (LP: #1866772) + - ACPI: sysfs: copy ACPI data using io memory copying + + * Miscellaneous Ubuntu changes + - hio -- remove duplicated MODULE_DEVICE_TABLE declaration + - SAUCE: r8169: disable ASPM L1.1 + - [Config] update annotations from configs + - [Config] update configs after annotation file review + - SAUCE: Revert "tools/power turbostat: Fix 32-bit capabilities warning" + + * Miscellaneous upstream changes + - drm/i915: Fix eDP DPCD aux max backlight calculations + - drm/dp: Introduce EDID-based quirks + - drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED panel + - drm/i915: Force DPCD backlight mode for some Dell CML 2020 panels + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc7 + + -- Andrea Righi Wed, 25 Mar 2020 18:09:13 +0100 + +linux-5.6 (5.6.0-5.5) focal; urgency=medium + + * please help enable CONFIG_EROFS_FS_ZIP (LP: #1867099) + - [Config] CONFIG_EROFS_FS_ZIP=y + - [Config] CONFIG_EROFS_FS_CLUSTER_PAGE_LIMIT=1 + + * Miscellaneous Ubuntu changes + - Config: Fix SND_HDA_PREALLOC_SIZE annotations + - Config: Fix DATA_SHIFT annotations + - Config: remove ANDROID_VSOC from annotations + - Config: remove arm arch from annotations + - Config: Update SOC_R8A7796X annotations + - Config: Update CLK_R8A7796X annotations + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc6 + + -- Andrea Righi Wed, 18 Mar 2020 17:25:30 +0100 + +linux-5.6 (5.6.0-4.4) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update helper scripts + + * Add sysfs attribute to show remapped NVMe (LP: #1863621) + - SAUCE: ata: ahci: Add sysfs attribute to show remapped NVMe device count + + * [20.04 FEAT] Compression improvements in Linux kernel (LP: #1830208) + - [Config] Introducing s390x specific kernel config option CONFIG_ZLIB_DFLTCC + + * [UBUNTU 20.04] s390x/pci: increase CONFIG_PCI_NR_FUNCTIONS to 512 in kernel + config (LP: #1866056) + - [Config] Increase CONFIG_PCI_NR_FUNCTIONS from 64 to 512 starting with focal + on s390x + + * CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set (LP: #1865332) + - [Config] CONFIG_IP_MROUTE_MULTIPLE_TABLES=y + + * [UBUNTU 20.04] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x + starting with focal (LP: #1865452) + - [Config] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x starting + with focal + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "UBUNTU: SAUCE: blk/core: Gracefully handle unset + make_request_fn" + - [Packaging] prevent duplicated entries in modules.ignore + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc5 + + -- Andrea Righi Mon, 09 Mar 2020 09:42:06 +0100 + +linux-5.6 (5.6.0-3.3) focal; urgency=medium + + * nsleep-lat / set-timer-lat / inconsistency-check / raw_skew from timer in + ubuntu_kernel_selftests timeout on 5.3 / 5.4 (LP: #1864626) + - selftests/timers: Turn off timeout setting + + * Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU for focal + (LP: #1864198) + - Ubuntu: [Config] Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU + + * alsa/hda/realtek: fix a mute led regression on Lenovo X1 Carbon + (LP: #1864576) + - SAUCE: ALSA: hda/realtek - Fix a regression for mute led on Lenovo Carbon X1 + + * r8152 init may take up to 40 seconds at initialization with Dell WD19/WD19DC + during hotplug (LP: #1864284) + - UBUNTU SAUCE: r8151: check disconnect status after long sleep + + * Another Dell AIO backlight issue (LP: #1863880) + - SAUCE: platform/x86: dell-uart-backlight: move retry block + + * Backport GetFB2 ioctl (LP: #1863874) + - SAUCE: drm: Add getfb2 ioctl + + * Focal Fossa (20.04) feature request - Enable CONFIG_X86_UV (LP: #1863810) + - [Config] CONFIG_X86_UV=y + + * Miscellaneous Ubuntu changes + - debian: remove snapdragon config, rules and flavour + - remove snapdragon abi files + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc4 + + * Miscellaneous upstream changes + - updateconfigs following snapdragon removal + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc4 + + -- Andrea Righi Wed, 04 Mar 2020 08:21:10 +0100 + +linux-5.6 (5.6.0-2.2) focal; urgency=medium + + * Sometimes can't adjust brightness on Dell AIO (LP: #1862885) + - SAUCE: platform/x86: dell-uart-backlight: increase retry times + + * Dell XPS 13 (7390) Display Flickering - 19.10 (LP: #1849947) + - SAUCE: drm/i915: Disable PSR by default on all platforms + + * Miscellaneous Ubuntu changes + - [debian] ignore missing wireguard module + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - [Config] CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc3 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (lockdown) s390/ipl: lockdown kernel when booted + secure" + - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for + module signature verify" + - Revert "UBUNTU: SAUCE: (lockdown) Add a SysRq option to lift kernel + lockdown" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock + the kernel down" + - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + + -- Andrea Righi Mon, 24 Feb 2020 18:57:22 +0100 + +linux-5.6 (5.6.0-1.1) focal; urgency=medium + + * Integrate Intel SGX driver into linux-azure (LP: #1844245) + - [Packaging] Add systemd service to load intel_sgx + + * QAT drivers for C3XXX and C62X not included as modules (LP: #1845959) + - [Config] CRYPTO_DEV_QAT_C3XXX=m, CRYPTO_DEV_QAT_C62X=m and + CRYPTO_DEV_QAT_DH895xCC=m + + * 5.4.0-11 crash on cryptsetup open (LP: #1860231) + - SAUCE: blk/core: Gracefully handle unset make_request_fn + + * multi-zone raid0 corruption (LP: #1850540) + - SAUCE: md/raid0: Use kernel specific layout + + * Miscellaneous Ubuntu changes + - update dkms package versions + - update dropped.txt after rebase to v5.6-rc1 + - [Config] updateconfigs after rebase to 5.6-rc1 + - hio -- proc_create() requires a "struct proc_ops" in 5.6 + - SAUCE: arm: fix build error in kvm tracepoint + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] Disable the uselib system call" + - Revert "UBUNTU: [Config] Disable legacy PTY naming" + - Revert "UBUNTU: [Config] Enforce filtered access to iomem" + - Revert "UBUNTU: [Config] Enable notifier call chain validations" + - Revert "UBUNTU: [Config] Enable scatterlist validation" + - Revert "UBUNTU: [Config] Enable cred sanity checks" + - Revert "UBUNTU: [Config] Enable linked list manipulation checks" + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc1 + + -- Andrea Righi Thu, 13 Feb 2020 17:20:27 +0100 + +linux-5.6 (5.6.0-0.0) focal; urgency=medium + + * Dummy entry + + -- Andrea Righi Mon, 10 Feb 2020 11:06:18 +0100 + +linux-5.5 (5.5.0-7.8) focal; urgency=medium + + * CONFIG_USELIB should be disabled (LP: #1855341) + - [Config] Disable the uselib system call + + * CONFIG_LEGACY_PTYS should be disabled (LP: #1855339) + - [Config] Disable legacy PTY naming + + * CONFIG_IO_STRICT_DEVMEM should be enabled (LP: #1855338) + - [Config] Enforce filtered access to iomem + + * CONFIG_DEBUG_NOTIFIERS should be enabled (LP: #1855337) + - [Config] Enable notifier call chain validations + + * CONFIG_DEBUG_SG should be enabled (LP: #1855336) + - [Config] Enable scatterlist validation + + * CONFIG_DEBUG_CREDENTIALS should be enabled (LP: #1855335) + - [Config] Enable cred sanity checks + + * CONFIG_DEBUG_LIST should be enabled (LP: #1855334) + - [Config] Enable linked list manipulation checks + + * shiftfs: prevent lower dentries from going negative during unlink + (LP: #1860041) + - SAUCE: shiftfs: prevent lower dentries from going negative during unlink + + * [SRU][B/OEM-B/OEM-OSP1/D/E/Unstable] UBUNTU: SAUCE: Use native backlight on + Lenovo E41-25/45 (LP: #1859561) + - SAUCE: ACPI: video: Use native backlight on Lenovo E41-25/45 + + * USB key cannot be detected by hotplug on Sunix USB Type-A 3.1 Gen 2 card + [1b21:2142] (LP: #1858988) + - SAUCE: PCI: Avoid ASMedia XHCI USB PME# from D0 defect + + * Dell AIO can't adjust brightness (LP: #1858761) + - SAUCE: platform/x86: dell-uart-backlight: add retry for get scalar status + + * Miscellaneous Ubuntu changes + - [Config] Fix typo in annotations file + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5 + + -- Andrea Righi Mon, 27 Jan 2020 11:39:38 +0100 + +linux-5.5 (5.5.0-6.7) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] Update ubuntu-regression-suite dependency to python2 + - [Packaging] Fix ubuntu-regression-suite python dependency for hwe kernel + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc7 + + -- Andrea Righi Mon, 20 Jan 2020 10:16:01 +0100 + +linux-5.5 (5.5.0-5.6) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc6 + + -- Andrea Righi Mon, 13 Jan 2020 15:50:12 +0100 + +linux-5.5 (5.5.0-4.5) focal; urgency=medium + + * linux build and autopkg tests need to use python2 instead of python + (LP: #1858487) + - [Packaging] Remove python-dev build dependency + + -- Andrea Righi Wed, 08 Jan 2020 16:00:26 +0100 + +linux-5.5 (5.5.0-3.4) focal; urgency=medium + + * [SRU][B/OEM-B/OEM-OSP1/D/E/F] Add LG I2C touchscreen multitouch support + (LP: #1857541) + - SAUCE: HID: multitouch: Add LG MELF0410 I2C touchscreen support + + * Make vfio-pci built-in or xhci_hcd optional (LP: #1770845) + - [Config]: built-in VFIO_PCI for amd64 + + * multi-zone raid0 corruption (LP: #1850540) + - SAUCE: md/raid0: Link to wiki with guidance on multi-zone RAID0 layout + migration + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] Change source package to linux-5.5 + - [Packaging] Don't use SRCPKGNAME for linux-libc-dev + - [Packaging] Remove linux-source-3 Provides: from linux-source + - [Packaging] Fix linux-doc in linux-image Suggests: + - [Debian] Read variants list into a variable + - [Packaging] Generate linux-libc-dev package only for primary variant + - [Packaging] Generate linux-doc for only the primary variant + - [Debian] Update linux source package name in debian/tests/* + - update dkms package versions + - [Config] updateconfigs after rebase to 5.5-rc3 + - [Config] disable PCI_MESON + - [Config] Add pinctrl-equilibrium to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc5 + + -- Andrea Righi Wed, 08 Jan 2020 11:28:43 +0100 + +linux-5.5 (5.5.0-2.3) focal; urgency=medium + + * Empty entry. + + -- Seth Forshee Tue, 17 Dec 2019 22:33:59 -0600 + +linux (5.5.0-2.3) focal; urgency=medium + + * Support DPCD aux brightness control (LP: #1856134) + - SAUCE: drm/i915: Fix eDP DPCD aux max backlight calculations + - SAUCE: drm/i915: Assume 100% brightness when not in DPCD control mode + - SAUCE: drm/i915: Fix DPCD register order in intel_dp_aux_enable_backlight() + - SAUCE: drm/i915: Auto detect DPCD backlight support by default + - SAUCE: drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED + panel + - USUNTU: SAUCE: drm/i915: Force DPCD backlight mode on Dell Precision 4K sku + + * change kconfig of the soundwire bus driver from y to m (LP: #1855685) + - [Config]: SOUNDWIRE=m + + * Fix unusable USB hub on Dell TB16 after S3 (LP: #1855312) + - SAUCE: USB: core: Make port power cycle a seperate helper function + - SAUCE: USB: core: Attempt power cycle port when it's in eSS.Disabled state + + * Miscellaneous Ubuntu changes + - [Debian] add python depends to ubuntu-regression-suite + - SAUCE: selftests: net: tls: remove recv_rcvbuf test + - update dkms package versions + + * Miscellaneous upstream changes + - [Config] updateconfigs after rebase to 5.5-rc2 + + -- Andrea Righi Tue, 17 Dec 2019 16:02:43 +0100 + +linux (5.5.0-1.2) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] disable nvidia dkms build + - [Config] disable virtualbox dkms build + - [Config] disable zfs dkms build + - update dropped.txt after rebase to v5.5-rc1 + - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that + aren't present. + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - [Config] Enable lockdown under secure boot + - update dkms package versions + + -- Andrea Righi Thu, 12 Dec 2019 16:54:41 +0100 + +linux (5.5.0-0.1) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.5-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc1 + + -- Andrea Righi Mon, 09 Dec 2019 19:03:35 +0100 + +linux (5.5.0-0.0) focal; urgency=medium + + * Dummy entry. + + -- Andrea Righi Mon, 09 Dec 2019 15:14:37 +0100 + +linux (5.4.0-8.11) focal; urgency=medium + + * focal/linux: 5.4.0-8.9 -proposed tracker (LP: #1855448) + + * update ENA driver for DIMLIB dynamic interrupt moderation (LP: #1853180) + - SAUCE: net: ena: fix issues in setting interrupt moderation params in + ethtool + - SAUCE: net: ena: fix too long default tx interrupt moderation interval + + * Kernel build log filled with "/bin/bash: line 5: warning: command + substitution: ignored null byte in input" (LP: #1853843) + - [Debian] Fix warnings when checking for modules signatures + + * hwe-edge kernel 5.3.0-23.25 kernel does not boot on Precision 5720 AIO + (LP: #1852581) + - [Packaging] Fix module signing with older modinfo + + * Fix MST support on Ice Lake (LP: #1854432) + - drm/i915: fix port checks for MST support on gen >= 11 + + * headphone has noise as not mute on dell machines with alc236/256 + (LP: #1854401) + - SAUCE: ALSA: hda/realtek - Dell headphone has noise on unmute for ALC236 + + * [CML-S62] Need enable intel_pmc_core driver patch for Comet lake- S 6+2 + (LP: #1847450) + - SAUCE: platform/x86: intel_pmc_core: Add Comet Lake (CML) platform support + to intel_pmc_core driver + + * CVE-2019-14901 + - SAUCE: mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() + + * CVE-2019-14896 // CVE-2019-14897 + - SAUCE: libertas: Fix two buffer overflows at parsing bss descriptor + + * CVE-2019-14895 + - SAUCE: mwifiex: fix possible heap overflow in mwifiex_process_country_ie() + + * [CML-S62] Need enable intel_rapl patch support for Comet lake- S 6+2 + (LP: #1847454) + - powercap/intel_rapl: add support for CometLake Mobile + - powercap/intel_rapl: add support for Cometlake desktop + + * External microphone can't work on some dell machines with the codec alc256 + or alc236 (LP: #1853791) + - SAUCE: ALSA: hda/realtek - Move some alc256 pintbls to fallback table + - SAUCE: ALSA: hda/realtek - Move some alc236 pintbls to fallback table + + * remount of multilower moved pivoted-root overlayfs root, results in I/O + errors on some modified files (LP: #1824407) + - SAUCE: ovl: fix lookup failure on multi lower squashfs + + * [CML-S62] Need enable turbostat patch support for Comet lake- S 6+2 + (LP: #1847451) + - SAUCE: tools/power turbostat: Add Cometlake support + + * CONFIG_ARCH_ROCKCHIP is not set in ubuntu 18.04 aarch64,arm64 (LP: #1825222) + - [Config] Enable ROCKCHIP support for arm64 + + * [broadwell-rt286, playback] Since Linux 5.2rc2 audio playback no longer + works on Dell Venue 11 Pro 7140 (LP: #1846539) + - SAUCE: ASoC: SOF: Intel: Broadwell: clarify mutual exclusion with legacy + driver + + * i40e: general protection fault in i40e_config_vf_promiscuous_mode + (LP: #1852663) + - SAUCE: i40e Fix GPF when deleting VMs + + * libbpf check_abi fails on ppc64el (LP: #1854974) + - libbpf: Fix readelf output parsing on powerpc with recent binutils + + * CVE-2019-19050 + - crypto: user - fix memory leak in crypto_reportstat + + * Make hotplugging docking station to Thunderbolt port more reliable + (LP: #1853991) + - PCI/PM: Add pcie_wait_for_link_delay() + - PCI/PM: Add missing link delays required by the PCIe spec + + * i915: Display flickers (monitor loses signal briefly) during "flickerfree" + boot, while showing the BIOS logo on a black background (LP: #1836858) + - [Config] FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y + + * [CML] New device id's for CMP-H (LP: #1846335) + - i2c: i801: Add support for Intel Comet Lake PCH-H + - mtd: spi-nor: intel-spi: Add support for Intel Comet Lake-H SPI serial flash + - mfd: intel-lpss: Add Intel Comet Lake PCH-H PCI IDs + + * Focal update: v5.4.2 upstream stable release (LP: #1855326) + - io_uring: async workers should inherit the user creds + - net: separate out the msghdr copy from ___sys_{send,recv}msg() + - net: disallow ancillary data for __sys_{send,recv}msg_file() + - crypto: inside-secure - Fix stability issue with Macchiatobin + - driver core: platform: use the correct callback type for bus_find_device + - usb: dwc2: use a longer core rest timeout in dwc2_core_reset() + - staging: wilc1000: fix illegal memory access in wilc_parse_join_bss_param() + - staging: rtl8192e: fix potential use after free + - staging: rtl8723bs: Drop ACPI device ids + - staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids + - USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P + - mei: bus: prefix device names on bus with the bus name + - mei: me: add comet point V device id + - thunderbolt: Power cycle the router if NVM authentication fails + - x86/fpu: Don't cache access to fpu_fpregs_owner_ctx + - gve: Fix the queue page list allocated pages count + - macvlan: schedule bc_work even if error + - mdio_bus: don't use managed reset-controller + - net: dsa: sja1105: fix sja1105_parse_rgmii_delays() + - net: macb: add missed tasklet_kill + - net: psample: fix skb_over_panic + - net: sched: fix `tc -s class show` no bstats on class with nolock subqueues + - openvswitch: fix flow command message size + - sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook + - slip: Fix use-after-free Read in slip_open + - sctp: cache netns in sctp_ep_common + - openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() + - openvswitch: remove another BUG_ON() + - net/tls: take into account that bpf_exec_tx_verdict() may free the record + - net/tls: free the record on encryption error + - net: skmsg: fix TLS 1.3 crash with full sk_msg + - selftests/tls: add a test for fragmented messages + - net/tls: remove the dead inplace_crypto code + - net/tls: use sg_next() to walk sg entries + - selftests: bpf: test_sockmap: handle file creation failures gracefully + - selftests: bpf: correct perror strings + - tipc: fix link name length check + - selftests: pmtu: use -oneline for ip route list cache + - r8169: fix jumbo configuration for RTL8168evl + - r8169: fix resume on cable plug-in + - ext4: add more paranoia checking in ext4_expand_extra_isize handling + - Revert "jffs2: Fix possible null-pointer dereferences in + jffs2_add_frag_to_fragtree()" + - crypto: talitos - Fix build error by selecting LIB_DES + - HID: core: check whether Usage Page item is after Usage ID items + - platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer + - platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size + - Linux 5.4.2 + + * no HDMI video output since GDM greeter after linux-oem-osp1 version + 5.0.0-1026 (LP: #1852386) + - drm/i915: Add new CNL PCH ID seen on a CML platform + - SAUCE: drm/i915: Fix detection for a CMP-V PCH + + * Please add patch fixing RK818 ID detection (LP: #1853192) + - SAUCE: mfd: rk808: Fix RK818 ID template + + * Raydium Touchscreen on ThinkPad L390 does not work (LP: #1849721) + - HID: i2c-hid: fix no irq after reset on raydium 3118 + + * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) + - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 + 2-in-1" + - lib: devres: add a helper function for ioremap_uc + - mfd: intel-lpss: Use devm_ioremap_uc for MMIO + + * Lenovo dock MAC Address pass through doesn't work in Ubuntu (LP: #1827961) + - r8152: Add macpassthru support for ThinkPad Thunderbolt 3 Dock Gen 2 + + * Disable unreliable HPET on CFL-H system (LP: #1852216) + - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake H platforms + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] Enable virtualbox dkms build + - [Config] update annotations to match current configs + - SAUCE: Add exfat module to signature inclusion list + + * Miscellaneous upstream changes + - Bluetooth: Fix invalid-free in bcsp_close() + - ath9k_hw: fix uninitialized variable data + - ath10k: Fix a NULL-ptr-deref bug in ath10k_usb_alloc_urb_from_pipe + - ath10k: Fix HOST capability QMI incompatibility + - ath10k: restore QCA9880-AR1A (v1) detection + - Revert "Bluetooth: hci_ll: set operational frequency earlier" + - Revert "dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues" + - md/raid10: prevent access of uninitialized resync_pages offset + - x86/insn: Fix awk regexp warnings + - x86/speculation: Fix incorrect MDS/TAA mitigation status + - x86/speculation: Fix redundant MDS mitigation message + - nbd: prevent memory leak + - x86/stackframe/32: Repair 32-bit Xen PV + - x86/xen/32: Make xen_iret_crit_fixup() independent of frame layout + - x86/xen/32: Simplify ring check in xen_iret_crit_fixup() + - x86/doublefault/32: Fix stack canaries in the double fault handler + - x86/pti/32: Size initial_page_table correctly + - x86/cpu_entry_area: Add guard page for entry stack on 32bit + - x86/entry/32: Fix IRET exception + - x86/entry/32: Use %ss segment where required + - x86/entry/32: Move FIXUP_FRAME after pushing %fs in SAVE_ALL + - x86/entry/32: Unwind the ESPFIX stack earlier on exception entry + - x86/entry/32: Fix NMI vs ESPFIX + - selftests/x86/mov_ss_trap: Fix the SYSENTER test + - selftests/x86/sigreturn/32: Invalidate DS and ES when abusing the kernel + - x86/pti/32: Calculate the various PTI cpu_entry_area sizes correctly, make + the CPU_ENTRY_AREA_PAGES assert precise + - x86/entry/32: Fix FIXUP_ESPFIX_STACK with user CR3 + - futex: Prevent robust futex exit race + - ALSA: usb-audio: Fix NULL dereference at parsing BADD + - ALSA: usb-audio: Fix Scarlett 6i6 Gen 2 port data + - media: vivid: Set vid_cap_streaming and vid_out_streaming to true + - media: vivid: Fix wrong locking that causes race conditions on streaming + stop + - media: usbvision: Fix invalid accesses after device disconnect + - media: usbvision: Fix races among open, close, and disconnect + - cpufreq: Add NULL checks to show() and store() methods of cpufreq + - futex: Move futex exit handling into futex code + - futex: Replace PF_EXITPIDONE with a state + - exit/exec: Seperate mm_release() + - futex: Split futex_mm_release() for exit/exec + - futex: Set task::futex_state to DEAD right after handling futex exit + - futex: Mark the begin of futex exit explicitly + - futex: Sanitize exit state handling + - futex: Provide state handling for exec() as well + - futex: Add mutex around futex exit + - futex: Provide distinct return value when owner is exiting + - futex: Prevent exit livelock + - media: uvcvideo: Fix error path in control parsing failure + - media: b2c2-flexcop-usb: add sanity checking + - media: cxusb: detect cxusb_ctrl_msg error in query + - media: imon: invalid dereference in imon_touch_event + - media: mceusb: fix out of bounds read in MCE receiver buffer + - ALSA: hda - Disable audio component for legacy Nvidia HDMI codecs + - USBIP: add config dependency for SGL_ALLOC + - usbip: tools: fix fd leakage in the function of read_attr_usbip_status + - usbip: Fix uninitialized symbol 'nents' in stub_recv_cmd_submit() + - usb-serial: cp201x: support Mark-10 digital force gauge + - USB: chaoskey: fix error case of a timeout + - appledisplay: fix error handling in the scheduled work + - USB: serial: mos7840: add USB ID to support Moxa UPort 2210 + - USB: serial: mos7720: fix remote wakeup + - USB: serial: mos7840: fix remote wakeup + - USB: serial: option: add support for DW5821e with eSIM support + - USB: serial: option: add support for Foxconn T77W968 LTE modules + - staging: comedi: usbduxfast: usbduxfast_ai_cmdtest rounding error + - powerpc/book3s64: Fix link stack flush on context switch + - KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel + - Linux 5.4.1 + + -- Seth Forshee Fri, 06 Dec 2019 15:53:53 -0600 + +linux (5.4.0-7.8) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: Comment out BPF_CORE_READ's which cause clang to + segfault + - Update nvidia-430 to nvidia-440 + - [Config] Enable nvidia dkms build + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4 + + -- Andrea Righi Mon, 25 Nov 2019 15:02:30 +0100 + +linux (5.4.0-6.7) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc7 + + -- Andrea Righi Mon, 18 Nov 2019 12:08:01 +0100 + +linux (5.4.0-5.6) focal; urgency=medium + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15793 + - SAUCE: shiftfs: Correct id translation for lower fs operations + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15792 + - SAUCE: shiftfs: prevent type confusion + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15791 + - SAUCE: shiftfs: Fix refcount underflow in btrfs ioctl handling + + * Some EFI systems fail to boot in efi_init() when booted via maas + (LP: #1851810) + - SAUCE: efi: efi_get_memory_map -- increase map headroom + + * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) + - SAUCE: seccomp: rework define for SECCOMP_USER_NOTIF_FLAG_CONTINUE + - SAUCE: seccomp: avoid overflow in implicit constant conversion + + * dkms artifacts may expire from the pool (LP: #1850958) + - [Packaging] dkms -- try launchpad librarian for pool downloads + - [Packaging] dkms -- dkms-build quieten wget verbiage + + * tsc marked unstable after entered PC10 on Intel CoffeeLake (LP: #1840239) + - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake platforms + - SAUCE: x86/intel: Disable HPET on Intel Ice Lake platforms + + * shiftfs: prevent exceeding project quotas (LP: #1849483) + - SAUCE: shiftfs: drop CAP_SYS_RESOURCE from effective capabilities + + * shiftfs: fix fallocate() (LP: #1849482) + - SAUCE: shiftfs: setup correct s_maxbytes limit + + * The alsa hda driver is not loaded due to the missing of PCIID for Comet + Lake-S [8086:a3f0] (LP: #1852070) + - SAUCE: ALSA: hda: Add Cometlake-S PCI ID + + * Can't adjust brightness on DELL UHD dGPU AIO (LP: #1813877) + - SAUCE: platform/x86: dell-uart-backlight: add missing status command + - SAUCE: platform/x86: dell-uart-backlight: load driver by scalar status + - SAUCE: platform/x86: dell-uart-backlight: add force parameter + - SAUCE: platform/x86: dell-uart-backlight: add quirk for old platforms + + * s_iflags overlap prevents unprivileged overlayfs mounts (LP: #1851677) + - SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags + + * ubuntu-aufs-modified mmap_region() breaks refcounting in overlayfs/shiftfs + error path (LP: #1850994) // CVE-2019-15794 + - SAUCE: shiftfs: Restore vm_file value when lower fs mmap fails + - SAUCE: ovl: Restore vm_file value when lower fs mmap fails + + * Miscellaneous Ubuntu changes + - [Debian] Convert update-aufs.sh to use aufs5 + - SAUCE: import aufs driver + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc7 + + -- Seth Forshee Wed, 13 Nov 2019 11:56:35 -0800 + +linux (5.4.0-4.5) focal; urgency=medium + + * High power consumption using 5.0.0-25-generic (LP: #1840835) + - PCI: Add a helper to check Power Resource Requirements _PR3 existence + - ALSA: hda: Allow HDA to be runtime suspended when dGPU is not bound to a + driver + - PCI: Fix missing inline for pci_pr3_present() + + * Fix signing of staging modules in eoan (LP: #1850234) + - [Packaging] Leave unsigned modules unsigned after adding .gnu_debuglink + + * [20.04 FEAT] Set Architecture Level (ALS) to z13 (LP: #1837525) + - [Config] s390x bump march to z13, with tune to z15 + + * Miscellaneous Ubuntu changes + - [Debian]: do not skip tests for linux-hwe-edge + - update dkms package versions + - [Config] re-enable zfs + - [Config] rename module virtio_fs to virtiofs + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc6 + + -- Andrea Righi Mon, 04 Nov 2019 15:12:02 +0100 + +linux (5.4.0-3.4) focal; urgency=medium + + * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) + - SAUCE: seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test + + * cloudimg: no iavf/i40evf module so no network available with SR-IOV enabled + cloud (LP: #1848481) + - [Packaging] include iavf/i40evf in generic + + * CVE-2019-17666 + - SAUCE: rtlwifi: Fix potential overflow on P2P code + + * Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x from yes + to no (LP: #1848492) + - [Config] Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x + from yes to no + + * Add Intel Comet Lake ethernet support (LP: #1848555) + - SAUCE: e1000e: Add support for Comet Lake + + * seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE (LP: #1847744) + - SAUCE: seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE + - SAUCE: seccomp: test SECCOMP_USER_NOTIF_FLAG_CONTINUE + + * drm/i915: Fix the issue of "azx_get_response timeout" for hdmi audio on ICL + platforms (LP: #1847192) + - SAUCE: drm/i915: Fix audio power up sequence for gen10+ display + - SAUCE: drm/i915: extend audio CDCLK>=2*BCLK constraint to more platforms + + * PM / hibernate: fix potential memory corruption (LP: #1847118) + - SAUCE: PM / hibernate: memory_bm_find_bit -- tighten node optimisation + + * [regression] NoNewPrivileges incompatible with Apparmor (LP: #1844186) + - SAUCE: apparmor: fix nnp subset test for unconfined + + * overlayfs: allow with shiftfs as underlay (LP: #1846272) + - SAUCE: overlayfs: allow with shiftfs as underlay + + * eoan: alsa/sof: Enable SOF_HDA link and codec (LP: #1848490) + - [Config] Fix SOF Kconfig options + + * linux won't build when new virtualbox version is present on the archive + (LP: #1848788) + - [Packaging]: download virtualbox from sources + + * Miscellaneous Ubuntu changes + - [Config] update annotations from configs + - [Config] updateconfigs after rebase to 5.4-rc5 + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc5 + + -- Seth Forshee Tue, 29 Oct 2019 12:01:27 -0500 + +linux (5.4.0-2.3) eoan; urgency=medium + + * Add installer support for iwlmvm adapters (LP: #1848236) + - d-i: Add iwlmvm to nic-modules + + * shiftfs: rework how shiftfs opens files (LP: #1846265) + - SAUCE: shiftfs: rework how shiftfs opens files + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc4 + + -- Andrea Righi Mon, 21 Oct 2019 17:31:26 +0200 + +linux (5.4.0-1.2) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc3 + - [Config] add flexfb, fbtft_device and rio500 to modules.ignore + - [Config] amd64: ignore fbtft and all dependent modules + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc3 + + -- Andrea Righi Mon, 14 Oct 2019 19:48:52 +0200 + +linux (5.4.0-0.1) eoan; urgency=medium + + * Enable the Dragonboards out of Eoan/master arm64 kernel (LP: #1846704) + - [Packaging] arm64: snapdragon: introduce a snapdragon flavour + - [Packaging] arm64: snapdragon: switch kernel format to Image + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8916=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8994=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8996=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8998=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_RPMH=y + - [Config] arm64: snapdragon: CONFIG_QCOM_BAM_DMA=y + - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA_MGMT=y + - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA=y + - [Config] arm64: snapdragon: CONFIG_COMMON_CLK_QCOM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_RPMH=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8916=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8994=y + - [Config] arm64: snapdragon: CONFIG_MSM_MMCC_8996=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8998=y + - [Config] arm64: snapdragon: CONFIG_HWSPINLOCK_QCOM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_APCS_IPC=y + - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_GLINK_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_GENI_SE=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMEM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMP2P=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMSM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_QFPROM=y + - [Config] arm64: snapdragon: CONFIG_SERIAL_QCOM_GENI=y + - [Config] arm64: snapdragon: CONFIG_QCOM_TSENS=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_SMD=y + - [Config] arm64: snapdragon: CONFIG_MFD_QCOM_RPM=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFS_HISI=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_PLTFM=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_MSM=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SPMI=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_QCOM_SPMI_PMIC=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HS=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_QMP=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_UFS=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HSIC=y + - [Config] arm64: snapdragon: CONFIG_USB_CHIPIDEA_OF=y + - [Config] arm64: snapdragon: CONFIG_USB_EHCI_HCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_EXTCON_USB_GPIO=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_FIXED_VOLTAGE=y + - [Config] arm64: snapdragon: CONFIG_LEDS_GPIO=y + - [Config] arm64: snapdragon: CONFIG_USB_HSIC_USB3503=y + - [Config] arm64: snapdragon: CONFIG_USB_NET_DRIVERS=y + - [Config] arm64: snapdragon: CONFIG_USB_OTG=y + - [Config] arm64: snapdragon: CONFIG_USB_XHCI_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_USB_OHCI_HCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_USB_MUSB_HDRC=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_PCI=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_OF_SIMPLE=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_QCOM=y + - [Config] arm64: snapdragon: CONFIG_LEDS_PWM=y + - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_HEARTBEAT=y + - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_DEFAULT_ON=y + - [Config] arm64: snapdragon: CONFIG_QCOM_A53PLL=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_APCS_MSM8916=y + - [Config] arm64: snapdragon: CONFIG_NLS_ISO8859_1=y + - [Config] arm64: snapdragon: CONFIG_USB_USBNET=y + - [Config] arm64: snapdragon: CONFIG_CRYPTO_DEV_QCOM_RNG=y + - [Config] arm64: snapdragon: CONFIG_POWER_RESET_QCOM_PON=y + - [Config] arm64: snapdragon: CONFIG_INPUT_PM8941_PWRKEY=y + - [Config] arm64: snapdragon: CONFIG_KEYBOARD_GPIO=y + - [Config] arm64: snapdragon: CONFIG_RTC_DRV_PM8XXX=y + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.4-rc2 + - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that + aren't present. + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - [Config] Enable lockdown under secure boot + - SAUCE: import aufs driver + - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 + - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers + - [Config] enable aufs + - update dkms package versions + - [Config] disable zfs + - [Config] disable nvidia dkms build + - [Config] disable virtualbox dkms build + - [Debian] Generate stub reconstruct for -rc kernels + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Forbid unprivileged mounting + when device is opened for writing" + - Revert "UBUNTU: SAUCE: (namespace) ext4: Add module parameter to enable user + namespace mounts" + - Revert "UBUNTU: SAUCE: (namespace) ext4: Add support for unprivileged mounts + from user namespaces" + - Revert "UBUNTU: SAUCE: (namespace) mtd: Check permissions towards mtd block + device inode when mounting" + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Check permissions towards + block device inode when mounting" + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Support checking inode + permissions in lookup_bdev()" + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc2 + + -- Seth Forshee Fri, 11 Oct 2019 16:42:41 -0500 + +linux (5.4.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 08 Oct 2019 09:59:00 -0500 + +linux (5.3.0-17.18) eoan; urgency=medium + + * eoan/linux: 5.3.0-17.18 -proposed tracker (LP: #1846641) + + * CVE-2019-17056 + - nfc: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17055 + - mISDN: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17054 + - appletalk: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17053 + - ieee802154: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17052 + - ax25: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-15098 + - ath6kl: fix a NULL-ptr-deref bug in ath6kl_usb_alloc_urb_from_pipe() + + * xHCI on AMD Stoney Ridge cannot detect USB 2.0 or 1.1 devices. + (LP: #1846470) + - x86/PCI: Avoid AMD FCH XHCI USB PME# from D0 defect + + * Re-enable linux-libc-dev build on i386 (LP: #1846508) + - [Packaging] Build only linux-libc-dev for i386 + - [Debian] final-checks -- ignore archtictures with no binaries + + * arm64: loop on boot after installing linux-generic-hwe-18.04-edge/bionic- + proposed (LP: #1845820) + - [Config] Disable CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT + + * Revert ESE DASD discard support (LP: #1846219) + - SAUCE: Revert "s390/dasd: Add discard support for ESE volumes" + + * Miscellaneous Ubuntu changes + - update dkms package versions + + -- Seth Forshee Thu, 03 Oct 2019 16:57:05 -0500 + +linux (5.3.0-16.17) eoan; urgency=medium + + * eoan/linux: 5.3.0-16.17 -proposed tracker (LP: #1846204) + + * zfs fails to build on s390x with debug symbols enabled (LP: #1846143) + - SAUCE: s390: Mark atomic const ops always inline + + -- Seth Forshee Tue, 01 Oct 2019 07:46:43 -0500 + +linux (5.3.0-15.16) eoan; urgency=medium + + * eoan/linux: 5.3.0-15.16 -proposed tracker (LP: #1845987) + + * Drop i386 build for 19.10 (LP: #1845714) + - [Packaging] Remove x32 arch references from control files + - [Debian] final-checks -- Get arch list from debian/control + + * ZFS kernel modules lack debug symbols (LP: #1840704) + - [Debian] Fix conditional for setting zfs debug package path + + * Use pyhon3-sphinx instead of python-sphinx for building html docs + (LP: #1845808) + - [Packaging] Update sphinx build dependencies to python3 packages + + * Kernel panic with 19.10 beta image (LP: #1845454) + - efi/tpm: Don't access event->count when it isn't mapped. + - efi/tpm: don't traverse an event log with no events + - efi/tpm: only set efi_tpm_final_log_size after successful event log parsing + + -- Seth Forshee Mon, 30 Sep 2019 11:57:20 -0500 + +linux (5.3.0-14.15) eoan; urgency=medium + + * eoan/linux: 5.3.0-14.15 -proposed tracker (LP: #1845728) + + * Drop i386 build for 19.10 (LP: #1845714) + - [Debian] Remove support for producing i386 kernels + - [Debian] Don't use CROSS_COMPILE for i386 configs + + * udevadm trigger will fail when trying to add /sys/devices/vio/ + (LP: #1845572) + - SAUCE: powerpc/vio: drop bus_type from parent device + + * Trying to online dasd drive results in invalid input/output from the kernel + on z/VM (LP: #1845323) + - SAUCE: s390/dasd: Fix error handling during online processing + + * intel-lpss driver conflicts with write-combining MTRR region (LP: #1845584) + - SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 2-in-1 + + * Support Hi1620 zip hw accelerator (LP: #1845355) + - [Config] Enable HiSilicon QM/ZIP as modules + - crypto: hisilicon - add queue management driver for HiSilicon QM module + - crypto: hisilicon - add hardware SGL support + - crypto: hisilicon - add HiSilicon ZIP accelerator support + - crypto: hisilicon - add SRIOV support for ZIP + - Documentation: Add debugfs doc for hisi_zip + - crypto: hisilicon - add debugfs for ZIP and QM + - MAINTAINERS: add maintainer for HiSilicon QM and ZIP controller driver + - crypto: hisilicon - fix kbuild warnings + - crypto: hisilicon - add dependency for CRYPTO_DEV_HISI_ZIP + - crypto: hisilicon - init curr_sgl_dma to fix compile warning + - crypto: hisilicon - add missing single_release + - crypto: hisilicon - fix error handle in hisi_zip_create_req_q + - crypto: hisilicon - Fix warning on printing %p with dma_addr_t + - crypto: hisilicon - Fix return value check in hisi_zip_acompress() + - crypto: hisilicon - avoid unused function warning + + * SafeSetID LSM should be built but disabled by default (LP: #1845391) + - LSM: SafeSetID: Stop releasing uninitialized ruleset + - [Config] Build SafeSetID LSM but don't enable it by default + + * CONFIG_LSM should not specify loadpin since it is not built (LP: #1845383) + - [Config] loadpin shouldn't be in CONFIG_LSM + + * Add new pci-id's for CML-S, ICL (LP: #1845317) + - drm/i915/icl: Add missing device ID + - drm/i915/cml: Add Missing PCI IDs + + * Thunderbolt support for ICL (LP: #1844680) + - thunderbolt: Correct path indices for PCIe tunnel + - thunderbolt: Move NVM upgrade support flag to struct icm + - thunderbolt: Use 32-bit writes when writing ring producer/consumer + - thunderbolt: Do not fail adding switch if some port is not implemented + - thunderbolt: Hide switch attributes that are not set + - thunderbolt: Expose active parts of NVM even if upgrade is not supported + - thunderbolt: Add support for Intel Ice Lake + - ACPI / property: Add two new Thunderbolt property GUIDs to the list + + * Ubuntu 19.10 - Additional PCI patch and fix (LP: #1844668) + - s390/pci: fix MSI message data + + * Enhanced Hardware Support - Finalize Naming (LP: #1842774) + - s390: add support for IBM z15 machines + - [Config] CONFIG_MARCH_Z15=n, CONFIG_TUNE_Z15=n + + * Eoan update: v5.3.1 upstream stable release (LP: #1845642) + - USB: usbcore: Fix slab-out-of-bounds bug during device reset + - media: tm6000: double free if usb disconnect while streaming + - phy: renesas: rcar-gen3-usb2: Disable clearing VBUS in over-current + - ip6_gre: fix a dst leak in ip6erspan_tunnel_xmit + - net/sched: fix race between deactivation and dequeue for NOLOCK qdisc + - net_sched: let qdisc_put() accept NULL pointer + - udp: correct reuseport selection with connected sockets + - xen-netfront: do not assume sk_buff_head list is empty in error handling + - net: dsa: Fix load order between DSA drivers and taggers + - net: stmmac: Hold rtnl lock in suspend/resume callbacks + - KVM: coalesced_mmio: add bounds checking + - Documentation: sphinx: Add missing comma to list of strings + - firmware: google: check if size is valid when decoding VPD data + - serial: sprd: correct the wrong sequence of arguments + - tty/serial: atmel: reschedule TX after RX was started + - nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds + - Revert "arm64: Remove unnecessary ISBs from set_{pte,pmd,pud}" + - ovl: fix regression caused by overlapping layers detection + - phy: qcom-qmp: Correct ready status, again + - floppy: fix usercopy direction + - media: technisat-usb2: break out of loop at end of buffer + - Linux 5.3.1 + + * ZFS kernel modules lack debug symbols (LP: #1840704) + - [Debian]: Remove hardcoded $(pkgdir) in debug symbols handling + - [Debian]: Handle debug symbols for modules in extras too + - [Debian]: Check/link modules with debug symbols after DKMS modules + - [Debian]: Warn about modules without debug symbols + - [Debian]: dkms-build: new parameter for debug package directory + - [Debian]: dkms-build: zfs: support for debug symbols + - [Debian]: dkms-build: Avoid executing post-processor scripts twice + - [Debian]: dkms-build: Move zfs special-casing into configure script + + * /proc/self/maps paths missing on live session (was vlc won't start; eoan + 19.10 & bionic 18.04 ubuntu/lubuntu/kubuntu/xubuntu/ubuntu-mate dailies) + (LP: #1842382) + - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: enable overlayfs on shiftfs" + + -- Seth Forshee Fri, 27 Sep 2019 16:08:06 -0500 + +linux (5.3.0-13.14) eoan; urgency=medium + + * eoan/linux: 5.3.0-13.14 -proposed tracker (LP: #1845105) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - [Debian] Remove binutils-dev build dependency + + -- Seth Forshee Mon, 23 Sep 2019 19:26:43 -0500 + +linux (5.3.0-12.13) eoan; urgency=medium + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Packaging] Add lz4 build dependency for s390x + + * Miscellaneous Ubuntu changes + - SAUCE: Remove spl and zfs source + + -- Seth Forshee Tue, 17 Sep 2019 13:36:26 +0200 + +linux (5.3.0-11.12) eoan; urgency=medium + + * eoan/linux: 5.3.0-11.12 -proposed tracker (LP: #1844144) + + * Suspend to RAM(S3) does not wake up for latest megaraid and mpt3sas + adapters(SAS3.5 onwards) (LP: #1838751) + - PCI: Restore Resizable BAR size bits correctly for 1MB BARs + + * s390/setup: Actually init kernel lock down (LP: #1843961) + - SAUCE: (lockdown) s390/setup: Actually init kernel lock down + + * cherrypick has_sipl fix (LP: #1843960) + - SAUCE: s390/sclp: Fix bit checked for has_sipl + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Config]: Switch kernel compression from LZO to LZ4 on s390x + + * Installation fails on eoan/PowerVM : missing /dev/nvram (LP: #1837726) + - [Config] CONFIG_NVRAM=y for ppc64el + + * Miscellaneous Ubuntu changes + - [Config]: remove nvram from ppc64el modules ABI + - [Config] Update annotations for recent config changes + - SAUCE: sched: Add __ASSEMBLY__ guards around struct clone_args + - SAUCE: i2c: qcom-geni: Disable DMA processing on the Lenovo Yoga C630 + - SAUCE: arm64: dts: qcom: Add Lenovo Yoga C630 + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.3 + + -- Paolo Pisati Mon, 16 Sep 2019 16:18:27 +0200 + +linux (5.3.0-10.11) eoan; urgency=medium + + * eoan/linux: 5.3.0-10.11 -proposed tracker (LP: #1843232) + + * No sound inputs from the external microphone and headset on a Dell machine + (LP: #1842265) + - SAUCE: ALSA: hda - Expand pin_match function to match upcoming new tbls + - SAUCE: ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family + + * Horizontal corrupted line at top of screen caused by framebuffer compression + (LP: #1840236) + - SAUCE: drm/i915/fbc: disable framebuffer compression on IceLake + + * Add bpftool to linux-tools-common (LP: #1774815) + - [Debian] package bpftool in linux-tools-common + + * Miscellaneous Ubuntu changes + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc8 + + -- Paolo Pisati Mon, 09 Sep 2019 10:00:41 +0200 + +linux (5.3.0-9.10) eoan; urgency=medium + + * eoan/linux: 5.3.0-9.10 -proposed tracker (LP: #1842393) + + * shiftfs: mark kmem_cache as reclaimable (LP: #1842059) + - SAUCE: shiftfs: mark slab objects SLAB_RECLAIM_ACCOUNT + + * shiftfs: drop entries from cache on unlink (LP: #1841977) + - SAUCE: shiftfs: fix buggy unlink logic + + * Fix touchpad IRQ storm after S3 (LP: #1841396) + - pinctrl: intel: remap the pin number to gpio offset for irq enabled pin + + * Please include DTBs for arm64 laptops (LP: #1842050) + - arm64: dts: qcom: Add Lenovo Miix 630 + - arm64: dts: qcom: Add HP Envy x2 + - arm64: dts: qcom: Add Asus NovaGo TP370QL + + * Miscellaneous Ubuntu changes + - SAUCE: import aufs driver + - [Packaging]: ignore vbox modules when vbox is disabled + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc7 + + -- Paolo Pisati Tue, 03 Sep 2019 10:27:33 +0200 + +linux (5.3.0-8.9) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Config] change kernel compression method to improve boot speed + - [Packaging] add build dependencies for compression algorithms + + * realtek r8822be kernel module fails after update to linux kernel-headers + 5.0.0-21 (LP: #1838133) + - rtw88: Fix misuse of GENMASK macro + - rtw88: pci: Rearrange the memory usage for skb in RX ISR + - rtw88: pci: Use DMA sync instead of remapping in RX ISR + - rtw88: debug: dump tx power indexes in use + - rtw88: use txpwr_lmt_cfg_pair struct, not arrays + - rtw88: pci: remove set but not used variable 'ip_sel' + - rtw88: allow c2h operation in irq context + - rtw88: enclose c2h cmd handle with mutex + - rtw88: add BT co-existence support + - SAUCE: rtw88: pci: enable MSI interrupt + + * VIMC module not available (CONFIG_VIDEO_VIMC not set) (LP: #1831482) + - [Config] Enable VIMC module + + * Goodix touchpad may drop first input event (LP: #1840075) + - Revert "UBUNTU: SAUCE: i2c: designware: add G3 3590 into i2c quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c + quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: Add disable runtime pm quirk" + - mfd: intel-lpss: Remove D3cold delay + + * Include Sunix serial/parallel driver (LP: #1826716) + - serial: 8250_pci: Add support for Sunix serial boards + - parport: parport_serial: Add support for Sunix Multi I/O boards + + * enable lockdown on s390x when Secure IPL is performed (LP: #1839622) + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - Ubuntu: [Config] Enable CONFIG_LOCK_DOWN_KERNEL on s390x. + + * UBUNTU: SAUCE: shiftfs: pass correct point down (LP: #1837231) + - SAUCE: shiftfs: pass correct point down + + * shiftfs: add O_DIRECT support (LP: #1837223) + - SAUCE: shiftfs: add O_DIRECT support + + * Miscellaneous Ubuntu changes + - [Config] enable secureboot signing on s390x + - [Config] CONFIG_TEST_BLACKHOLE_DEV=m + - SAUCE: selftests: fib_tests: assign address to dummy1 for rp_filter tests + - [Debian] disable dkms builds for autopktest rebuilds + - update dkms package versions + - [Config] updateconfigs after v5.3-rc6 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc5 + + -- Paolo Pisati Mon, 26 Aug 2019 10:09:42 +0200 + +linux (5.3.0-7.8) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after v5.3-rc5 rebase + - remove missing module after updateconfigs + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc5 + + -- Paolo Pisati Mon, 19 Aug 2019 15:31:24 +0200 + +linux (5.3.0-6.7) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: prevent headers to be compiled as C code + + -- Seth Forshee Wed, 14 Aug 2019 13:25:01 -0500 + +linux (5.3.0-5.6) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] enable zfs build + + -- Seth Forshee Tue, 13 Aug 2019 09:16:06 -0500 + +linux (5.3.0-4.5) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update helper scripts + + * bcache: bch_allocator_thread(): hung task timeout (LP: #1784665) // Tight + timeout for bcache removal causes spurious failures (LP: #1796292) + - SAUCE: bcache: fix deadlock in bcache_allocator + + * shiftfs: allow overlayfs (LP: #1838677) + - SAUCE: shiftfs: enable overlayfs on shiftfs + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "kbuild: modpost: do not parse unnecessary rules for vmlinux + modpost" + - update dkms package versions + - enable nvidia dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc4 + + -- Seth Forshee Mon, 12 Aug 2019 10:41:27 -0500 + +linux (5.3.0-3.4) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers + - [Config] add mux-* to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc3 + + -- Paolo Pisati Mon, 05 Aug 2019 18:17:09 +0200 + +linux (5.3.0-2.3) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] add build dependincy on fontconfig + + -- Seth Forshee Mon, 29 Jul 2019 12:18:46 -0400 + +linux (5.3.0-1.2) eoan; urgency=medium + + * System does not auto detect disconnection of external monitor (LP: #1835001) + - SAUCE: drm/i915: Add support for retrying hotplug + - SAUCE: drm/i915: Enable hotplug retry + + * Please enable CONFIG_SCSI_UFS_QCOM as a module on arm64 (LP: #1837332) + - [Config] Enable CONFIG_SCSI_UFS_QCOM as a module on arm64. + + * Add arm64 CONFIG_ARCH_MESON=y and related configs Edit (LP: #1820530) + - [Config] enable ARCH_MESON + - remove missing module + - [Config] update annotations after enabling ARCH_MESON for arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: KVM: PPC: comment implicit fallthrough + - update dkms package versions + - [Config] enable vbox dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc2 + + -- Seth Forshee Sun, 28 Jul 2019 23:10:16 -0400 + +linux (5.3.0-0.1) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + * Miscellaneous Ubuntu changes + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and + KEXEC_SIG_FORCE + - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is + locked down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages + - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy + when locked down + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module + signature verify + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in + Secure Boot mode + - SAUCE: import aufs driver + - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 + - [Config] disable zfs dkms build + - [Config] disable nvidia dkms build + - [Config] disable vbox dkms build + - SAUCE: perf diff: use llabs for s64 vaules + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc1 + + -- Seth Forshee Tue, 23 Jul 2019 21:45:44 -0500 + +linux (5.3.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Mon, 22 Jul 2019 10:19:04 -0500 + +linux (5.2.0-9.10) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * input/mouse: alps trackpoint-only device doesn't work (LP: #1836752) + - SAUCE: Input: alps - don't handle ALPS cs19 trackpoint-only device + - SAUCE: Input: alps - fix a mismatch between a condition check and its + comment + + * System does not auto detect disconnection of external monitor (LP: #1835001) + - SAUCE: drm/i915: Add support for retrying hotplug + - SAUCE: drm/i915: Enable hotplug retry + + * alsa/hdmi: add icelake hdmi audio support for a Dell machine (LP: #1836916) + - SAUCE: ALSA: hda/hdmi - Remove duplicated define + - SAUCE: ALSA: hda/hdmi - Fix i915 reverse port/pin mapping + + * First click on Goodix touchpad doesn't be recognized after runtime suspended + (LP: #1836836) + - SAUCE: i2c: designware: add G3 3590 into i2c quirk + + * ixgbe{vf} - Physical Function gets IRQ when VF checks link state + (LP: #1836760) + - ixgbevf: Use cached link state instead of re-reading the value for ethtool + + * Doing multiple squashfs (and other loop?) mounts in parallel breaks + (LP: #1836914) + - SAUCE: Revert "loop: Don't change loop device under exclusive opener" + + * hibmc-drm Causes Unreadable Display for Huawei amd64 Servers (LP: #1762940) + - SAUCE: Make CONFIG_DRM_HISI_HIBMC depend on ARM64 + - [Config] Set CONFIG_DRM_HISI_HIBMC to arm64 only + - [Config] add hibmc-drm to modules.ignore + + * hda/realtek: can't detect external mic on a Dell machine (LP: #1836755) + - ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine + + * Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 + (LP: #1835054) + - [Config] Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 + + * Unhide Nvidia HDA audio controller (LP: #1836308) + - PCI: Enable NVIDIA HDA controllers + + * Intel ethernet I219 may wrongly detect connection speed as 10Mbps + (LP: #1836177) + - e1000e: Make watchdog use delayed work + + * Sometimes touchpad(goodix) can't use tap function (LP: #1836020) + - SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c quirk + - SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk + + * Intel ethernet I219 has slow RX speed (LP: #1836152) + - e1000e: add workaround for possible stalled packet + - e1000e: disable force K1-off feature + + * bcache: risk of data loss on I/O errors in backing or caching devices + (LP: #1829563) + - Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" + + * bnx2x driver causes 100% CPU load (LP: #1832082) + - bnx2x: Prevent ptp_task to be rescheduled indefinitely + + * fcf-protection=none patch with new version + - Revert "UBUNTU: SAUCE: kbuild: add -fcf-protection=none to retpoline flags" + - SAUCE: kbuild: add -fcf-protection=none when using retpoline flags + + * CVE-2019-12614 + - powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() + + * Eoan update: v5.2.1 upstream stable release (LP: #1836622) + - crypto: lrw - use correct alignmask + - crypto: talitos - rename alternative AEAD algos. + - fscrypt: don't set policy for a dead directory + - udf: Fix incorrect final NOT_ALLOCATED (hole) extent length + - media: stv0297: fix frequency range limit + - ALSA: usb-audio: Fix parse of UAC2 Extension Units + - ALSA: hda/realtek - Headphone Mic can't record after S3 + - tpm: Actually fail on TPM errors during "get random" + - tpm: Fix TPM 1.2 Shutdown sequence to prevent future TPM operations + - block: fix .bi_size overflow + - block, bfq: NULL out the bic when it's no longer valid + - perf intel-pt: Fix itrace defaults for perf script + - perf auxtrace: Fix itrace defaults for perf script + - perf intel-pt: Fix itrace defaults for perf script intel-pt documentation + - perf pmu: Fix uncore PMU alias list for ARM64 + - perf thread-stack: Fix thread stack return from kernel for kernel-only case + - perf header: Assign proper ff->ph in perf_event__synthesize_features() + - x86/ptrace: Fix possible spectre-v1 in ptrace_get_debugreg() + - x86/tls: Fix possible spectre-v1 in do_get_thread_area() + - Documentation: Add section about CPU vulnerabilities for Spectre + - Documentation/admin: Remove the vsyscall=native documentation + - mwifiex: Don't abort on small, spec-compliant vendor IEs + - USB: serial: ftdi_sio: add ID for isodebug v1 + - USB: serial: option: add support for GosunCn ME3630 RNDIS mode + - Revert "serial: 8250: Don't service RX FIFO if interrupts are disabled" + - p54usb: Fix race between disconnect and firmware loading + - usb: gadget: f_fs: data_len used before properly set + - usb: gadget: ether: Fix race between gether_disconnect and rx_submit + - usb: dwc2: use a longer AHB idle timeout in dwc2_core_reset() + - usb: renesas_usbhs: add a workaround for a race condition of workqueue + - drivers/usb/typec/tps6598x.c: fix portinfo width + - drivers/usb/typec/tps6598x.c: fix 4CC cmd write + - p54: fix crash during initialization + - staging: comedi: dt282x: fix a null pointer deref on interrupt + - staging: wilc1000: fix error path cleanup in wilc_wlan_initialize() + - staging: bcm2835-camera: Restore return behavior of ctrl_set_bitrate() + - staging: comedi: amplc_pci230: fix null pointer deref on interrupt + - staging: mt7621-pci: fix PCIE_FTS_NUM_LO macro + - HID: Add another Primax PIXART OEM mouse quirk + - lkdtm: support llvm-objcopy + - binder: fix memory leak in error path + - binder: return errors from buffer copy functions + - iio: adc: stm32-adc: add missing vdda-supply + - coresight: Potential uninitialized variable in probe() + - coresight: etb10: Do not call smp_processor_id from preemptible + - coresight: tmc-etr: Do not call smp_processor_id() from preemptible + - coresight: tmc-etr: alloc_perf_buf: Do not call smp_processor_id from + preemptible + - coresight: tmc-etf: Do not call smp_processor_id from preemptible + - carl9170: fix misuse of device driver API + - Revert "x86/build: Move _etext to actual end of .text" + - VMCI: Fix integer overflow in VMCI handle arrays + - staging: vchiq_2835_arm: revert "quit using custom down_interruptible()" + - staging: vchiq: make wait events interruptible + - staging: vchiq: revert "switch to wait_for_completion_killable" + - staging: fsl-dpaa2/ethsw: fix memory leak of switchdev_work + - staging: bcm2835-camera: Replace spinlock protecting context_map with mutex + - staging: bcm2835-camera: Ensure all buffers are returned on disable + - staging: bcm2835-camera: Remove check of the number of buffers supplied + - staging: bcm2835-camera: Handle empty EOS buffers whilst streaming + - staging: rtl8712: reduce stack usage, again + - Linux 5.2.1 + - [Config] updateconfigs after v5.2.1 stable update + + * fcf-protection=none patch with upstream version + - Revert "UBUNTU: SAUCE: add -fcf-protection=none to retpoline flags" + - SAUCE: kbuild: add -fcf-protection=none to retpoline flags + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/ftrace: avoid failure when trying to probe a notrace + function + - SAUCE: selftests/powerpc/ptrace: fix build failure + - update dkms package versions + - [Packaging] add zlua to zfs-modules.ignore + - update dkms package versions + + -- Seth Forshee Fri, 19 Jul 2019 15:04:45 -0500 + +linux (5.2.0-8.9) eoan; urgency=medium + + * linux: 5.2.0-8.9 -proposed tracker (LP: #1835700) + + * Miscellaneous Ubuntu changes + - [Packaging] replace zfs and spl build with zfs 0.8.1-1ubuntu1 + - SAUCE: test_bpf: remove expected fail for Ctx heavy transformations test on + s390 + - SAUCE: add -fcf-protection=none to retpoline flags + - SAUCE: usbip: ensure strings copied using strncpy are null-terminated + - SAUCE: usbip: add -Wno-address-of-packed-member to EXTRA_CFLAGS + - SAUCE: perf jvmti: ensure strncpy result is null-terminated + - update dkms package versions + - add removed zfs modules to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.2 + + -- Seth Forshee Mon, 08 Jul 2019 07:13:41 -0500 + +linux (5.2.0-7.8) eoan; urgency=medium + + * Kernel panic upon resetting ixgbe SR-IOV VFIO virtual function using 5.0 + kernel (LP: #1829652) + - SAUCE: ixgbe: Avoid NULL pointer dereference with VF on non-IPsec hw + + * Hi1620 driver updates from upstream 5.2 merge window (LP: #1830815) + - net: hns3: initialize CPU reverse mapping + - net: hns3: refine the flow director handle + - net: hns3: add aRFS support for PF + - net: hns3: fix for FEC configuration + - RDMA/hns: Remove unnecessary print message in aeq + - RDMA/hns: Update CQE specifications + - RDMA/hns: Move spin_lock_irqsave to the correct place + - RDMA/hns: Remove jiffies operation in disable interrupt context + - RDMA/hns: Replace magic numbers with #defines + - net: hns3: fix compile warning without CONFIG_RFS_ACCEL + - net: hns3: fix for HNS3_RXD_GRO_SIZE_M macro + - net: hns3: add support for dump firmware statistics by debugfs + - net: hns3: use HCLGE_STATE_NIC_REGISTERED to indicate PF NIC client has + registered + - net: hns3: use HCLGE_STATE_ROCE_REGISTERED to indicate PF ROCE client has + registered + - net: hns3: use HCLGEVF_STATE_NIC_REGISTERED to indicate VF NIC client has + registered + - net: hns3: modify hclge_init_client_instance() + - net: hns3: modify hclgevf_init_client_instance() + - net: hns3: add handshake with hardware while doing reset + - net: hns3: stop schedule reset service while unloading driver + - net: hns3: adjust hns3_uninit_phy()'s location in the hns3_client_uninit() + - net: hns3: fix a memory leak issue for hclge_map_unmap_ring_to_vf_vector + - RDMA/hns: Bugfix for posting multiple srq work request + - net: hns3: remove redundant core reset + - net: hns3: don't configure new VLAN ID into VF VLAN table when it's full + - net: hns3: fix VLAN filter restore issue after reset + - net: hns3: set the port shaper according to MAC speed + - net: hns3: add a check to pointer in error_detected and slot_reset + - net: hns3: set ops to null when unregister ad_dev + - net: hns3: add handling of two bits in MAC tunnel interrupts + - net: hns3: remove setting bit of reset_requests when handling mac tunnel + interrupts + - net: hns3: add opcode about query and clear RAS & MSI-X to special opcode + - net: hns3: delay and separate enabling of NIC and ROCE HW errors + - RDMA/hns: fix inverted logic of readl read and shift + - RDMA/hns: Bugfix for filling the sge of srq + - net: hns3: log detail error info of ROCEE ECC and AXI errors + - net: hns3: fix wrong size of mailbox responding data + - net: hns3: make HW GRO handling compliant with SW GRO + - net: hns3: replace numa_node_id with numa_mem_id for buffer reusing + - net: hns3: refactor hns3_get_new_int_gl function + - net: hns3: trigger VF reset if a VF has an over_8bd_nfe_err + - net: hns3: delete the redundant user NIC codes + - net: hns3: small changes for magic numbers + - net: hns3: use macros instead of magic numbers + - net: hns3: refactor PF/VF RSS hash key configuration + - net: hns3: some modifications to simplify and optimize code + - net: hns3: fix some coding style issues + - net: hns3: delay setting of reset level for hw errors until slot_reset is + called + - net: hns3: fix avoid unnecessary resetting for the H/W errors which do not + require reset + - net: hns3: process H/W errors occurred before HNS dev initialization + - net: hns3: add recovery for the H/W errors occurred before the HNS dev + initialization + - net: hns3: some changes of MSI-X bits in PPU(RCB) + - net: hns3: extract handling of mpf/pf msi-x errors into functions + - net: hns3: clear restting state when initializing HW device + - net: hns3: free irq when exit from abnormal branch + - net: hns3: fix for dereferencing before null checking + - net: hns3: fix for skb leak when doing selftest + - net: hns3: delay ring buffer clearing during reset + - net: hns3: some variable modification + - net: hns3: fix dereference of ae_dev before it is null checked + - scsi: hisi_sas: Delete PHY timers when rmmod or probe failed + - scsi: hisi_sas: Fix the issue of argument mismatch of printing ecc errors + - scsi: hisi_sas: Reduce HISI_SAS_SGE_PAGE_CNT in size + - scsi: hisi_sas: Change the type of some numbers to unsigned + - scsi: hisi_sas: Ignore the error code between phy down to phy up + - scsi: hisi_sas: Disable stash for v3 hw + - net: hns3: Add missing newline at end of file + - RDMa/hns: Don't stuck in endless timeout loop + + * Sometimes touchpad automatically trigger double click (LP: #1833484) + - SAUCE: i2c: designware: Add disable runtime pm quirk + + * Add pointstick support on HP ZBook 17 G5 (LP: #1833387) + - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" + + * depmod may prefer unsigned l-r-m nvidia modules to signed modules + (LP: #1834479) + - [Packaging] dkms-build--nvidia-N -- clean up unsigned ko files + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/powerpc: disable signal_fuzzer test + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc7 + + -- Seth Forshee Mon, 01 Jul 2019 07:22:18 -0500 + +linux (5.2.0-6.7) eoan; urgency=medium + + * hinic: fix oops due to race in set_rx_mode (LP: #1832048) + - hinic: fix a bug in set rx mode + + * Miscellaneous Ubuntu changes + - rebase to v5.2-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc6 + + -- Seth Forshee Sun, 23 Jun 2019 23:36:11 -0500 + +linux (5.2.0-5.6) eoan; urgency=medium + + * QCA9377 isn't being recognized sometimes (LP: #1757218) + - SAUCE: USB: Disable USB2 LPM at shutdown + + * shiftfs: allow changing ro/rw for subvolumes (LP: #1832316) + - SAUCE: shiftfs: allow changing ro/rw for subvolumes + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Packaging] replace nvidia-418 dkms build with nvidia-430 + - SAUCE: import aufs driver + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc5 + + -- Seth Forshee Mon, 17 Jun 2019 15:04:12 -0500 + +linux (5.2.0-4.5) eoan; urgency=medium + + * arm64: cma_alloc errors at boot (LP: #1823753) + - [Config] Bump CMA_SIZE_MBYTES to 32 on arm64 + - dma-contiguous: add dma_{alloc,free}_contiguous() helpers + - dma-contiguous: use fallback alloc_pages for single pages + - dma-contiguous: fix !CONFIG_DMA_CMA version of dma_{alloc, + free}_contiguous() + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_MFD_TQMX86=n for s390x + - [Config] CONFIG_GPIO_AMD_FCH=n for s390x + - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x + - [Config] CONFIG_LCD_CLASS_DEVICE=n for s390x + - [Config] CONFIG_DRM_ETNAVIV=m for armhf generic-lpae + - [Config] CONFIG_DRM_NOUVEAU_SVM=n + - [Config] CONFIG_HWMON=n for s390x + - [Config] CONFIG_NEW_LEDS=n for s390x + - [Config] CONFIG_MTD_NAND_OMAP2=y for armhf + - [Config] CONFIG_VOP_BUS=n for non-amd64 arches + - [Config] CONFIG_TI_CPSW_PHY_SEL=n + - [Config] CONFIG_INTERCONNECT=n for s390x + - [Config] CONFIG_SCSI_GDTH=n for s390x + - [Config] CONFIG_PACKING=n for s390x + - [Config] CONFIG_ARCH_MILBEAUT=y for armhf + - [Config] update annotations following config review + - update dkms package versions + - [Config] enable nvidia dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc4 + + -- Seth Forshee Mon, 10 Jun 2019 07:00:11 -0500 + +linux (5.2.0-3.4) eoan; urgency=medium + + * [18.04/18.10] File libperf-jvmti.so is missing in linux-tools-common deb on + Ubuntu (LP: #1761379) + - [Packaging] Support building libperf-jvmti.so + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "bpf, selftest: test global data/bss/rodata sections" + - update dkms package versions + - [Config] enable zfs + - rebase to v5.2-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc3 + + -- Seth Forshee Sun, 02 Jun 2019 21:48:50 -0500 + +linux (5.2.0-2.3) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: perf arm64: Fix mksyscalltbl when system kernel headers are ahead of + the kernel + + -- Seth Forshee Tue, 28 May 2019 07:12:39 -0500 + +linux (5.2.0-1.2) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_INTEGRITY_PLATFORM_KEYRING=y + - update dkms package versions + - [Config] enable vbox dkms build + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc2 + + -- Seth Forshee Mon, 27 May 2019 21:11:27 -0500 + +linux (5.2.0-0.1) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: import aufs driver + - [Packaging] disable ZFS + - [Packaging] disable nvidia + - [Packaging] dkms-build -- expand paths searched for make.log files + - add virtualbox-guest-dkms dkms package build + - enable vbox dkms build for amd64 and i386 + - update dkms package versions + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and + KEXEC_SIG_FORCE + - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is + locked down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages + - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy + when locked down + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module + signature verify + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in + Secure Boot mode + - update dkms package versions + - [Config] disable vbox build + - SAUCE: s390: mark __cpacf_check_opcode() and cpacf_query_func() as + __always_inline + - SAUCE: IB/mlx5: use size_t instead of u64 when dividing + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc1 + + -- Seth Forshee Tue, 21 May 2019 11:18:43 -0500 + +linux (5.2.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 21 May 2019 07:34:43 -0500 + +linux (5.1.0-2.2) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + * Eoan update: v5.1.2 upstream stable release (LP: #1829050) + - x86/msr-index: Cleanup bit defines + - x86/speculation: Consolidate CPU whitelists + - x86/speculation/mds: Add basic bug infrastructure for MDS + - x86/speculation/mds: Add BUG_MSBDS_ONLY + - x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests + - x86/speculation/mds: Add mds_clear_cpu_buffers() + - x86/speculation/mds: Clear CPU buffers on exit to user + - x86/kvm/vmx: Add MDS protection when L1D Flush is not active + - x86/speculation/mds: Conditionally clear CPU buffers on idle entry + - x86/speculation/mds: Add mitigation control for MDS + - x86/speculation/mds: Add sysfs reporting for MDS + - x86/speculation/mds: Add mitigation mode VMWERV + - Documentation: Move L1TF to separate directory + - Documentation: Add MDS vulnerability documentation + - x86/speculation/mds: Add mds=full,nosmt cmdline option + - x86/speculation: Move arch_smt_update() call to after mitigation decisions + - x86/speculation/mds: Add SMT warning message + - x86/speculation/mds: Fix comment + - x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off + - cpu/speculation: Add 'mitigations=' cmdline option + - x86/speculation: Support 'mitigations=' cmdline option + - powerpc/speculation: Support 'mitigations=' cmdline option + - s390/speculation: Support 'mitigations=' cmdline option + - x86/speculation/mds: Add 'mitigations=' support for MDS + - x86/mds: Add MDSUM variant to the MDS documentation + - Documentation: Correct the possible MDS sysfs values + - x86/speculation/mds: Fix documentation typo + - Linux 5.1.2 + + * Eoan update: v5.1.1 upstream stable release (LP: #1829046) + - Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() + - ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings + - staging: greybus: power_supply: fix prop-descriptor request size + - staging: wilc1000: Avoid GFP_KERNEL allocation from atomic context. + - staging: most: cdev: fix chrdev_region leak in mod_exit + - staging: most: sound: pass correct device when creating a sound card + - usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON + - usb: dwc3: Fix default lpm_nyet_threshold value + - USB: serial: f81232: fix interrupt worker not stop + - USB: cdc-acm: fix unthrottle races + - usb-storage: Set virt_boundary_mask to avoid SG overflows + - genirq: Prevent use-after-free and work list corruption + - intel_th: pci: Add Comet Lake support + - iio: adc: qcom-spmi-adc5: Fix of-based module autoloading + - cpufreq: armada-37xx: fix frequency calculation for opp + - ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for + hibernate + - soc: sunxi: Fix missing dependency on REGMAP_MMIO + - scsi: lpfc: change snprintf to scnprintf for possible overflow + - scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines + - scsi: qla2xxx: Set remote port devloss timeout to 0 + - scsi: qla2xxx: Fix device staying in blocked state + - Bluetooth: hidp: fix buffer overflow + - Bluetooth: Align minimum encryption key size for LE and BR/EDR connections + - Bluetooth: Fix not initializing L2CAP tx_credits + - Bluetooth: hci_bcm: Fix empty regulator supplies for Intel Macs + - UAS: fix alignment of scatter/gather segments + - ASoC: Intel: avoid Oops if DMA setup fails + - i3c: Fix a shift wrap bug in i3c_bus_set_addr_slot_status() + - locking/futex: Allow low-level atomic operations to return -EAGAIN + - arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP + - Linux 5.1.1 + + * shiftfs: lock security sensitive superblock flags (LP: #1827122) + - SAUCE: shiftfs: lock down certain superblock flags + + * Please package libbpf (which is done out of the kernel src) in Debian [for + 19.10] (LP: #1826410) + - SAUCE: tools -- fix add ability to disable libbfd + + * ratelimit cma_alloc messages (LP: #1828092) + - SAUCE: cma: ratelimit cma_alloc error messages + + * Headphone jack switch sense is inverted: plugging in headphones disables + headphone output (LP: #1824259) + - ASoC: rt5645: Headphone Jack sense inverts on the LattePanda board + + * There are 4 HDMI/Displayport audio output listed in sound setting without + attach any HDMI/DP monitor (LP: #1827967) + - ALSA: hda/hdmi - Read the pin sense from register when repolling + - ALSA: hda/hdmi - Consider eld_valid when reporting jack event + + * CONFIG_LOG_BUF_SHIFT set to 14 is too low on arm64 (LP: #1824864) + - [Config] CONFIG_LOG_BUF_SHIFT=18 on all 64bit arches + + * CTAUTO:DevOps:860.50:devops4fp1:Error occurred during LINUX Dmesg error + Checking for all LINUX clients for devops4p10 (LP: #1766201) + - SAUCE: integrity: downgrade error to warning + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] autoreconstruct -- base tag is always primary mainline version + + * [SRU] Please sync vbox modules from virtualbox 6.0.6 on next kernel update + (LP: #1825210) + - vbox-update: updates for renamed makefiles + - ubuntu: vbox -- update to 6.0.6-dfsg-1 + + * autofs kernel module missing (LP: #1824333) + - [Config] Update autofs4 path in inclusion list + + * The Realtek card reader does not enter PCIe 1.1/1.2 (LP: #1825487) + - SAUCE: misc: rtsx: Fixed rts5260 power saving parameter and sd glitch + + * CVE-2019-3874 + - sctp: implement memory accounting on tx path + - sctp: implement memory accounting on rx path + + * apparmor does not start in Disco LXD containers (LP: #1824812) + - SAUCE: shiftfs: use separate llseek method for directories + + * Miscellaneous Ubuntu changes + - [Packaging] autoreconstruct -- remove for -rc kernels + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - [Config] (efi-lockdown): update configs after efi lockdown patch refresh + - [Packaging] don't delete efi_parser.c + - vbox-update -- do not fix up KERN_DIR or KBUILD_EXTMOD + - ubuntu: vbox -- update to 6.0.6-dfsg-2 + - add nvidia-418 dkms build + - remove virtualbox guest drivers + - [Packaging] dkms-build -- expand paths searched for make.log files + - add virtualbox-guest-dkms dkms package build + - enable vbox dkms build for amd64 and i386 + - [Config] update configs for v5.1(-rc7)? rebase + - update dkms package versions + - Add the ability to lock down access to the running kernel image + - Enforce module signatures if the kernel is locked down + - Restrict /dev/{mem,kmem,port} when the kernel is locked down + - kexec_load: Disable at runtime if the kernel is locked down + - Copy secure_boot flag in boot params across kexec reboot + - kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE + - kexec_file: Restrict at runtime if the kernel is locked down + - hibernate: Disable when the kernel is locked down + - uswsusp: Disable when the kernel is locked down + - PCI: Lock down BAR access when the kernel is locked down + - x86: Lock down IO port access when the kernel is locked down + - x86/msr: Restrict MSR access when the kernel is locked down + - ACPI: Limit access to custom_method when the kernel is locked down + - acpi: Ignore acpi_rsdp kernel param when the kernel has been locked down + - acpi: Disable ACPI table override if the kernel is locked down + - acpi: Disable APEI error injection if the kernel is locked down + - Prohibit PCMCIA CIS storage when the kernel is locked down + - Lock down TIOCSSERIAL + - Lock down module params that specify hardware parameters (eg. ioport) + - x86/mmiotrace: Lock down the testmmiotrace module + - Lock down /proc/kcore + - Lock down kprobes + - bpf: Restrict kernel image access functions when the kernel is locked down + - Lock down perf + - debugfs: Restrict debugfs when the kernel is locked down + - lockdown: Print current->comm in restriction messages + - kexec: Allow kexec_file() with appropriate IMA policy when locked down + - Make get_cert_list() not complain about cert lists that aren't present. + - Add efi_status_to_str() and rework efi_status_to_err(). + - Make get_cert_list() use efi_status_to_str() to print error messages. + - efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode + - efi: Lock down the kernel if booted in secure boot mode + - KEYS: Make use of platform keyring for module signature verify + + * Miscellaneous upstream changes + - ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) + + -- Seth Forshee Tue, 14 May 2019 12:32:56 -0500 + +linux (5.1.0-1.1) eoan; urgency=medium + + * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) + - [Packaging]: really drop snapdragon + + * Miscellaneous Ubuntu changes + - SAUCE: fix vbox use of MAP_SHARED + - SAUCE: fix vbox use of vm_fault_t + - [Packaging] disable ZFS + - [Packaging] disable nvidia + - SAUCE: perf annotate: Fix build on 32 bit for BPF annotation + - [Config]: updateconfig after rebase to v5.1-rc + - [Config]: build ETNAVIV only on arm platforms + - [Config]: Disable CMA on non-arm platforms + - [Config]: MMC_CQHCI is needed by some built-in drivers + - [Config]: a.out support has been deprecated + - [Config]: R3964 was marked as BROKEN + - [Config]: Add SENSIRION_SGP30 module + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: tools: lib/bpf -- add generated headers to search + path" + - Revert "UBUNTU: SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK" + + -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 10:03:25 -0300 + +linux (5.1.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 09:49:47 -0300 + +linux (5.0.0-13.14) disco; urgency=medium + + * linux: 5.0.0-13.14 -proposed tracker (LP: #1824819) + + * Display only has 640x480 (LP: #1824677) + - Revert "UBUNTU: SAUCE: drm/nouveau: Disable nouveau driver by default" + + * shiftfs: use after free when checking mount options (LP: #1824735) + - SAUCE: shiftfs: prevent use-after-free when verifying mount options + + -- Seth Forshee Mon, 15 Apr 2019 09:11:23 -0500 + +linux (5.0.0-12.13) disco; urgency=medium + + * linux: 5.0.0-12.13 -proposed tracker (LP: #1824726) + + * Linux 5.0 black screen on boot, display flickers (i915 regression with + certain laptop panels) (LP: #1824216) + - drm/i915/dp: revert back to max link rate and lane count on eDP + + * kernel BUG at fs/attr.c:287 when using shiftfs (LP: #1824717) + - SAUCE: shiftfs: fix passing of attrs to underaly for setattr + + -- Seth Forshee Sun, 14 Apr 2019 13:38:05 -0500 + +linux (5.0.0-11.12) disco; urgency=medium + + * linux: 5.0.0-11.12 -proposed tracker (LP: #1824383) + + * hns3: PPU_PF_ABNORMAL_INT_ST over_8bd_no_fe found [error status=0x1] + (LP: #1824194) + - net: hns3: fix for not calculating tx bd num correctly + + * disco: unable to use iptables/enable ufw under -virtual kernel + (LP: #1823862) + - [Packaging] add bpfilter to linux-modules + + * Make shiftfs a module rather than built-in (LP: #1824354) + - [Config] CONFIG_SHIFT_FS=m + + * shiftfs: chown sets untranslated ids in lower fs (LP: #1824350) + - SAUCE: shiftfs: use translated ids when chaning lower fs attrs + + * [Hyper-V] KVP daemon fails to start on first boot of disco VM (LP: #1820063) + - [Packaging] bind hv_kvp_daemon startup to hv_kvp device + + -- Seth Forshee Thu, 11 Apr 2019 10:17:19 -0500 + +linux (5.0.0-10.11) disco; urgency=medium + + * linux: 5.0.0-10.11 -proposed tracker (LP: #1823936) + + * Apparmor enforcement failure in lxc selftests (LP: #1823379) + - SAUCE: apparmor: Restore Y/N in /sys for apparmor's "enabled" + + * systemd cause kernel trace "BUG: unable to handle kernel paging request at + 6db23a14" on Cosmic i386 (LP: #1813244) + - openvswitch: fix flow actions reallocation + + -- Seth Forshee Tue, 09 Apr 2019 08:30:38 -0500 + +linux (5.0.0-9.10) disco; urgency=medium + + * linux: 5.0.0-9.10 -proposed tracker (LP: #1823228) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] update helper scripts + - [Packaging] resync retpoline extraction + + * Huawei Hi1822 NIC has poor performance (LP: #1820187) + - net-next/hinic: replace disable_irq_nosync/enable_irq + + * Add uid shifting overlay filesystem (shiftfs) (LP: #1823186) + - shiftfs: uid/gid shifting bind mount + - shiftfs: rework and extend + - shiftfs: support some btrfs ioctls + - [Config] enable shiftfs + + * Cannot boot or install - have to use nomodeset (LP: #1821820) + - Revert "drm/i915/fbdev: Actually configure untiled displays" + + * Disco update: v5.0.6 upstream stable release (LP: #1823060) + - netfilter: nf_tables: fix set double-free in abort path + - dccp: do not use ipv6 header for ipv4 flow + - genetlink: Fix a memory leak on error path + - gtp: change NET_UDP_TUNNEL dependency to select + - ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL + - mac8390: Fix mmio access size probe + - mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S + - net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 + - net: datagram: fix unbounded loop in __skb_try_recv_datagram() + - net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec + - net: phy: meson-gxl: fix interrupt support + - net: rose: fix a possible stack overflow + - net: stmmac: fix memory corruption with large MTUs + - net-sysfs: call dev_hold if kobject_init_and_add success + - net: usb: aqc111: Extend HWID table by QNAP device + - packets: Always register packet sk in the same order + - rhashtable: Still do rehash when we get EEXIST + - sctp: get sctphdr by offset in sctp_compute_cksum + - sctp: use memdup_user instead of vmemdup_user + - tcp: do not use ipv6 header for ipv4 flow + - tipc: allow service ranges to be connect()'ed on RDM/DGRAM + - tipc: change to check tipc_own_id to return in tipc_net_stop + - tipc: fix cancellation of topology subscriptions + - tun: properly test for IFF_UP + - vrf: prevent adding upper devices + - vxlan: Don't call gro_cells_destroy() before device is unregistered + - thunderx: enable page recycling for non-XDP case + - thunderx: eliminate extra calls to put_page() for pages held for recycling + - net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode + - net: mii: Fix PAUSE cap advertisement from linkmode_adv_to_lcl_adv_t() + helper + - net: phy: don't clear BMCR in genphy_soft_reset + - r8169: fix cable re-plugging issue + - ila: Fix rhashtable walker list corruption + - tun: add a missing rcu_read_unlock() in error path + - powerpc/fsl: Fix the flush of branch predictor. + - Btrfs: fix incorrect file size after shrinking truncate and fsync + - btrfs: remove WARN_ON in log_dir_items + - btrfs: don't report readahead errors and don't update statistics + - btrfs: Fix bound checking in qgroup_trace_new_subtree_blocks + - btrfs: Avoid possible qgroup_rsv_size overflow in + btrfs_calculate_inode_block_rsv_size + - Btrfs: fix assertion failure on fsync with NO_HOLES enabled + - locks: wake any locks blocked on request before deadlock check + - tracing: initialize variable in create_dyn_event() + - ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time + - powerpc: bpf: Fix generation of load/store DW instructions + - vfio: ccw: only free cp on final interrupt + - NFS: Fix nfs4_lock_state refcounting in nfs4_alloc_{lock,unlock}data() + - NFS: fix mount/umount race in nlmclnt. + - NFSv4.1 don't free interrupted slot on open + - net: dsa: qca8k: remove leftover phy accessors + - ALSA: rawmidi: Fix potential Spectre v1 vulnerability + - ALSA: seq: oss: Fix Spectre v1 vulnerability + - ALSA: pcm: Fix possible OOB access in PCM oss plugins + - ALSA: pcm: Don't suspend stream in unrecoverable PCM state + - ALSA: hda/realtek - Fixed Headset Mic JD not stable + - ALSA: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook + - ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO + - ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB + - ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 + - ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 + - ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic + - ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 + - ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 + - ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 + - ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops + - kbuild: modversions: Fix relative CRC byte order interpretation + - fs/open.c: allow opening only regular files during execve() + - ocfs2: fix inode bh swapping mixup in ocfs2_reflink_inodes_lock + - scsi: sd: Fix a race between closing an sd device and sd I/O + - scsi: sd: Quiesce warning if device does not report optimal I/O size + - scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host + - scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP + devices + - drm/rockchip: vop: reset scale mode when win is disabled + - tty/serial: atmel: Add is_half_duplex helper + - tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped + - tty: mxs-auart: fix a potential NULL pointer dereference + - tty: atmel_serial: fix a potential NULL pointer dereference + - tty: serial: qcom_geni_serial: Initialize baud in qcom_geni_console_setup + - staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest + - staging: olpc_dcon_xo_1: add missing 'const' qualifier + - staging: speakup_soft: Fix alternate speech with other synths + - staging: vt6655: Remove vif check from vnt_interrupt + - staging: vt6655: Fix interrupt race condition on device start up. + - staging: erofs: fix to handle error path of erofs_vmap() + - staging: erofs: fix error handling when failed to read compresssed data + - staging: erofs: keep corrupted fs from crashing kernel in erofs_readdir() + - serial: max310x: Fix to avoid potential NULL pointer dereference + - serial: mvebu-uart: Fix to avoid a potential NULL pointer dereference + - serial: sh-sci: Fix setting SCSCR_TIE while transferring data + - USB: serial: cp210x: add new device id + - USB: serial: ftdi_sio: add additional NovaTech products + - USB: serial: mos7720: fix mos_parport refcount imbalance on error path + - USB: serial: option: set driver_info for SIM5218 and compatibles + - USB: serial: option: add support for Quectel EM12 + - USB: serial: option: add Olicard 600 + - ACPI / CPPC: Fix guaranteed performance handling + - Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc + - fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links + - drivers/block/zram/zram_drv.c: fix idle/writeback string compare + - blk-mq: fix sbitmap ws_active for shared tags + - cpufreq: intel_pstate: Also use CPPC nominal_perf for base_frequency + - cpufreq: scpi: Fix use after free + - drm/vgem: fix use-after-free when drm_gem_handle_create() fails + - drm/vkms: fix use-after-free when drm_gem_handle_create() fails + - drm/i915: Mark AML 0x87CA as ULX + - drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check + - drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro + - gpio: exar: add a check for the return value of ida_simple_get fails + - gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input + - phy: sun4i-usb: Support set_mode to USB_HOST for non-OTG PHYs + - usb: mtu3: fix EXTCON dependency + - USB: gadget: f_hid: fix deadlock in f_hidg_write() + - usb: common: Consider only available nodes for dr_mode + - mm/memory.c: fix modifying of page protection by insert_pfn() + - usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk + - xhci: Fix port resume done detection for SS ports with LPM enabled + - usb: xhci: dbc: Don't free all memory with spinlock held + - xhci: Don't let USB3 ports stuck in polling state prevent suspend + - usb: cdc-acm: fix race during wakeup blocking TX traffic + - usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps + - usb: typec: Fix unchecked return value + - mm/hotplug: fix offline undo_isolate_page_range() + - mm: add support for kmem caches in DMA32 zone + - iommu/io-pgtable-arm-v7s: request DMA32 memory, and improve debugging + - mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified + - mm/debug.c: fix __dump_page when mapping->host is not set + - mm/memory_hotplug.c: fix notification in offline error path + - mm/page_isolation.c: fix a wrong flag in set_migratetype_isolate() + - mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate + - perf pmu: Fix parser error for uncore event alias + - perf intel-pt: Fix TSC slip + - objtool: Query pkg-config for libelf location + - powerpc/pseries/energy: Use OF accessor functions to read ibm,drc-indexes + - powerpc/64: Fix memcmp reading past the end of src/dest + - powerpc/pseries/mce: Fix misleading print for TLB mutlihit + - watchdog: Respect watchdog cpumask on CPU hotplug + - cpu/hotplug: Prevent crash when CPU bringup fails on CONFIG_HOTPLUG_CPU=n + - x86/smp: Enforce CONFIG_HOTPLUG_CPU when SMP=y + - KVM: Reject device ioctls from processes other than the VM's creator + - KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts + - KVM: x86: update %rip after emulating IO + - bpf: do not restore dst_reg when cur_state is freed + - mt76x02u: use usb_bulk_msg to upload firmware + - Linux 5.0.6 + + * RDMA/hns updates for disco (LP: #1822897) + - RDMA/hns: Fix the bug with updating rq head pointer when flush cqe + - RDMA/hns: Bugfix for the scene without receiver queue + - RDMA/hns: Add constraint on the setting of local ACK timeout + - RDMA/hns: Modify the pbl ba page size for hip08 + - RDMA/hns: RDMA/hns: Assign rq head pointer when enable rq record db + - RDMA/hns: Add the process of AEQ overflow for hip08 + - RDMA/hns: Add SCC context allocation support for hip08 + - RDMA/hns: Add SCC context clr support for hip08 + - RDMA/hns: Add timer allocation support for hip08 + - RDMA/hns: Remove set but not used variable 'rst' + - RDMA/hns: Make some function static + - RDMA/hns: Fix the Oops during rmmod or insmod ko when reset occurs + - RDMA/hns: Fix the chip hanging caused by sending mailbox&CMQ during reset + - RDMA/hns: Fix the chip hanging caused by sending doorbell during reset + - RDMA/hns: Limit minimum ROCE CQ depth to 64 + - RDMA/hns: Fix the state of rereg mr + - RDMA/hns: Set allocated memory to zero for wrid + - RDMA/hns: Delete useful prints for aeq subtype event + - RDMA/hns: Configure capacity of hns device + - RDMA/hns: Modify qp&cq&pd specification according to UM + - RDMA/hns: Bugfix for set hem of SCC + - RDMA/hns: Use GFP_ATOMIC in hns_roce_v2_modify_qp + + * autopkgtests run too often, too much and don't skip enough (LP: #1823056) + - Set +x on rebuild testcase. + - Skip rebuild test, for regression-suite deps. + - Make ubuntu-regression-suite skippable on unbootable kernels. + - make rebuild use skippable error codes when skipping. + - Only run regression-suite, if requested to. + + * touchpad not working on lenovo yoga 530 (LP: #1787775) + - Revert "UBUNTU: SAUCE: i2c:amd Depends on ACPI" + - Revert "UBUNTU: SAUCE: i2c:amd move out pointer in union i2c_event_base" + - i2c: add extra check to safe DMA buffer helper + - i2c: Add drivers for the AMD PCIe MP2 I2C controller + - [Config] Update config for AMD MP2 I2C driver + + * Detect SMP PHY control command errors (LP: #1822680) + - scsi: libsas: Check SMP PHY control function result + + * disable a.out support (LP: #1818552) + - [Config] Disable a.out support + - [Config] remove binfmt_aout from abi for i386 lowlatency + + * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) + - [Packaging] remove snapdragon flavour support + - Revert "UBUNTU: SAUCE: (snapdragon) drm/msm/adv7511: wrap hacks under + CONFIG_ADV7511_SNAPDRAGON_HACKS #ifdefs" + - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: skip address change if dt + addr == default addr" + - Revert "UBUNTU: SAUCE: (snapdragon) DT: leds: Add Qualcomm Light Pulse + Generator binding" + - Revert "UBUNTU: SAUCE: (snapdragon) MAINTAINERS: Add Qualcomm Camera Control + Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) dt-bindings: media: Binding document for + Qualcomm Camera Control Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) leds: Add driver for Qualcomm LPG" + - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/adv7511: Don't rely on + interrupts for EDID parsing" + - Revert "UBUNTU: SAUCE: (snapdragon) drm/bridge/adv7511: Delay clearing of + HPD interrupt status" + - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: Fix I2C address" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix I2C address bug" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix run queue completion + timeout" + - Revert "UBUNTU: SAUCE: (snapdragon) camss: Do not register if no cameras are + present" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c: Add Qualcomm Camera Control + Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) ov5645: I2C address change" + - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Allow + REGULATOR_QCOM_SMD_RPM=m" + - Revert "UBUNTU: SAUCE: (snapdragon) cpufreq: Add apq8016 to cpufreq-dt- + platdev blacklist" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Add a helper to get an opp + regulator for device" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: HACK: Allow to set regulator + without opp_list" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Drop RCU usage in + dev_pm_opp_adjust_voltage()" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Support adjusting OPP voltages + at runtime" + - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Add floor and corner + operations" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Register with cpufreq- + dt" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: fix with new + reg_sequence structures" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Use raw mem access for + qfprom" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: Add support for CPR (Core + Power Reduction)" + - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/iommu: Remove runtime_put + calls in map/unmap" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable LEDS_QCOM_LPG" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'BBR' TCP + congestion algorithm" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'fq' and + 'fq_codel' qdiscs" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable + 'schedutil' CPUfreq governor" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: set USB_CONFIG_F_FS in + distro.config" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable + CONFIG_USB_CONFIGFS_F_FS by default" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add freq stat to sysfs" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: Enable camera drivers" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: disable ANALOG_TV and + DIGITAL_TV" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add more USB net + drivers" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable BT_QCOMSMD" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable + CFG80211_DEFAULT_PS by default" + - Revert "UBUNTU: SAUCE: (snapdragon) Force the SMD regulator driver to be + compiled-in" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: enable dm_mod and + dm_crypt" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: Enable a53/apcs and + avs" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable QCOM Venus" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable debug + friendly USB network adpater" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable WCN36xx" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs; add distro.config" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable QCOM audio + drivers for APQ8016 and DB410c" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable REMOTEPROC" + - [Config] fix abi for remove i2c-qcom-cci module + - [Config] update annotations + - [Config] update configs following snapdragon removal + + * Disco update: v5.0.5 upstream stable release (LP: #1822671) + - Revert "ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec" + - ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist + - ALSA: firewire-motu: use 'version' field of unit directory to identify model + - mmc: pxamci: fix enum type confusion + - mmc: alcor: fix DMA reads + - mmc: mxcmmc: "Revert mmc: mxcmmc: handle highmem pages" + - mmc: renesas_sdhi: limit block count to 16 bit for old revisions + - drm/amdgpu: fix invalid use of change_bit + - drm/vmwgfx: Don't double-free the mode stored in par->set_mode + - drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's + - iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE + - iommu/iova: Fix tracking of recently failed iova address + - libceph: wait for latest osdmap in ceph_monc_blacklist_add() + - udf: Fix crash on IO error during truncate + - mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction. + - MIPS: Ensure ELF appended dtb is relocated + - MIPS: Fix kernel crash for R6 in jump label branch function + - powerpc/vdso64: Fix CLOCK_MONOTONIC inconsistencies across Y2038 + - powerpc/security: Fix spectre_v2 reporting + - net/mlx5: Fix DCT creation bad flow + - scsi: core: Avoid that a kernel warning appears during system resume + - scsi: qla2xxx: Fix FC-AL connection target discovery + - scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton + - scsi: ibmvscsi: Fix empty event pool access during host removal + - futex: Ensure that futex address is aligned in handle_futex_death() + - perf probe: Fix getting the kernel map + - objtool: Move objtool_file struct off the stack + - irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp + - clocksource/drivers/riscv: Fix clocksource mask + - ALSA: ac97: Fix of-node refcount unbalance + - ext4: fix NULL pointer dereference while journal is aborted + - ext4: fix data corruption caused by unaligned direct AIO + - ext4: brelse all indirect buffer in ext4_ind_remove_space() + - media: v4l2-ctrls.c/uvc: zero v4l2_event + - Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() + - Bluetooth: Fix decrementing reference count twice in releasing socket + - Bluetooth: hci_ldisc: Initialize hci_dev before open() + - Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in + hci_uart_set_proto() + - drm/vkms: Fix flush_work() without INIT_WORK(). + - RDMA/cma: Rollback source IP address if failing to acquire device + - f2fs: fix to avoid deadlock of atomic file operations + - aio: simplify - and fix - fget/fput for io_submit() + - netfilter: ebtables: remove BUGPRINT messages + - loop: access lo_backing_file only when the loop device is Lo_bound + - x86/unwind: Handle NULL pointer calls better in frame unwinder + - x86/unwind: Add hardcoded ORC entry for NULL + - locking/lockdep: Add debug_locks check in __lock_downgrade() + - ALSA: hda - Record the current power state before suspend/resume calls + - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec + - Linux 5.0.5 + + * hisi_sas updates for disco (LP: #1822385) + - scsi: hisi_sas: send primitive NOTIFY to SSP situation only + - scsi: hisi_sas: shutdown axi bus to avoid exception CQ returned + - scsi: hisi_sas: remove the check of sas_dev status in + hisi_sas_I_T_nexus_reset() + - scsi: hisi_sas: Remove unused parameter of function hisi_sas_alloc() + - scsi: hisi_sas: Reject setting programmed minimum linkrate > 1.5G + - scsi: hisi_sas: Fix losing directly attached disk when hot-plug + - scsi: hisi_sas: Correct memory allocation size for DQ debugfs + - scsi: hisi_sas: Some misc tidy-up + - scsi: hisi_sas: Fix to only call scsi_get_prot_op() for non-NULL scsi_cmnd + - scsi: hisi_sas: Add missing seq_printf() call in hisi_sas_show_row_32() + - scsi: hisi_sas: Add support for DIX feature for v3 hw + - scsi: hisi_sas: Add manual trigger for debugfs dump + - scsi: hisi_sas: change queue depth from 512 to 4096 + - scsi: hisi_sas: Issue internal abort on all relevant queues + - scsi: hisi_sas: Use pci_irq_get_affinity() for v3 hw as experimental + - scsi: hisi_sas: Do some more tidy-up + - scsi: hisi_sas: Change return variable type in phy_up_v3_hw() + - scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO + - scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw + - scsi: hisi_sas: Set PHY linkrate when disconnected + - scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of STP + target port + - scsi: hisi_sas: Change SERDES_CFG init value to increase reliability of + HiLink + - scsi: hisi_sas: Add softreset in hisi_sas_I_T_nexus_reset() + + * [Patch][Raven 2] kernel 5.0.0 cannot boot because of psp response + (LP: #1822267) + - drm/amdgpu/psp: Fix can't detect psp INVOKE command failed + - drm/amdgpu/psp: ignore psp response status + + * 3b080b2564287be91605bfd1d5ee985696e61d3c in ubuntu_btrfs_kernel_fixes + triggers system hang on i386 (LP: #1812845) + - btrfs: raid56: properly unmap parity page in finish_parity_scrub() + + * enable CONFIG_DRM_BOCHS (LP: #1795857) + - [Config] Reenable DRM_BOCHS as module + + * [Dell Precision 7530/5530 with Nvidia Quadro P1000] Live USB freezes or + cannot complete install when nouveau driver is loaded (crashing in GP100 + code) (LP: #1822026) + - SAUCE: drm/nouveau: Disable nouveau driver by default + + * Need to add Intel CML related pci-id's (LP: #1821863) + - drm/i915/cml: Add CML PCI IDS + - drm/i915/cml: Introduce Comet Lake PCH + + * ARM: Add support for the SDEI interface (LP: #1822005) + - ACPI / APEI: Don't wait to serialise with oops messages when panic()ing + - ACPI / APEI: Remove silent flag from ghes_read_estatus() + - ACPI / APEI: Switch estatus pool to use vmalloc memory + - ACPI / APEI: Make hest.c manage the estatus memory pool + - ACPI / APEI: Make estatus pool allocation a static size + - ACPI / APEI: Don't store CPER records physical address in struct ghes + - ACPI / APEI: Remove spurious GHES_TO_CLEAR check + - ACPI / APEI: Don't update struct ghes' flags in read/clear estatus + - ACPI / APEI: Generalise the estatus queue's notify code + - ACPI / APEI: Don't allow ghes_ack_error() to mask earlier errors + - ACPI / APEI: Move NOTIFY_SEA between the estatus-queue and NOTIFY_NMI + - ACPI / APEI: Switch NOTIFY_SEA to use the estatus queue + - KVM: arm/arm64: Add kvm_ras.h to collect kvm specific RAS plumbing + - arm64: KVM/mm: Move SEA handling behind a single 'claim' interface + - ACPI / APEI: Move locking to the notification helper + - ACPI / APEI: Let the notification helper specify the fixmap slot + - ACPI / APEI: Pass ghes and estatus separately to avoid a later copy + - ACPI / APEI: Make GHES estatus header validation more user friendly + - ACPI / APEI: Split ghes_read_estatus() to allow a peek at the CPER length + - ACPI / APEI: Only use queued estatus entry during in_nmi_queue_one_entry() + - ACPI / APEI: Use separate fixmap pages for arm64 NMI-like notifications + - firmware: arm_sdei: Add ACPI GHES registration helper + - ACPI / APEI: Add support for the SDEI GHES Notification type + + * CVE-2019-9857 + - inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() + + * scsi: libsas: Support SATA PHY connection rate unmatch fixing during + discovery (LP: #1821408) + - scsi: libsas: Support SATA PHY connection rate unmatch fixing during + discovery + + * Qualcomm Atheros QCA9377 wireless does not work (LP: #1818204) + - platform/x86: ideapad-laptop: Add Ideapad 530S-14ARR to no_hw_rfkill list + + * Lenovo ideapad 330-15ICH Wifi rfkill hard blocked (LP: #1811815) + - platform/x86: ideapad: Add ideapad 330-15ICH to no_hw_rfkill + + * hid-sensor-hub spamming dmesg in 4.20 (LP: #1818547) + - HID: Increase maximum report size allowed by hid_field_extract() + + * [disco] [5.0.0-7.8] can't mount guest cifs share (LP: #1821053) + - cifs: allow guest mounts to work for smb3.11 + - SMB3: Fix SMB3.1.1 guest mounts to Samba + + * Add HiSilicon SoC quirk for cpufreq (LP: #1821620) + - ACPI / CPPC: Add a helper to get desired performance + - cpufreq / cppc: Work around for Hisilicon CPPC cpufreq + + * Disco update: v5.0.4 upstream stable release (LP: #1821607) + - 9p: use inode->i_lock to protect i_size_write() under 32-bit + - 9p/net: fix memory leak in p9_client_create + - ASoC: fsl_esai: fix register setting issue in RIGHT_J mode + - ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() + - ASoC: codecs: pcm186x: Fix energysense SLEEP bit + - iio: adc: exynos-adc: Fix NULL pointer exception on unbind + - iio: adc: exynos-adc: Use proper number of channels for Exynos4x12 + - mei: hbm: clean the feature flags on link reset + - mei: bus: move hw module get/put to probe/release + - stm class: Prevent division by zero + - stm class: Fix an endless loop in channel allocation + - crypto: caam - fix hash context DMA unmap size + - crypto: ccree - fix missing break in switch statement + - crypto: caam - fixed handling of sg list + - crypto: caam - fix DMA mapping of stack memory + - crypto: ccree - fix free of unallocated mlli buffer + - crypto: ccree - unmap buffer before copying IV + - crypto: ccree - don't copy zero size ciphertext + - crypto: cfb - add missing 'chunksize' property + - crypto: cfb - remove bogus memcpy() with src == dest + - crypto: ofb - fix handling partial blocks and make thread-safe + - crypto: ahash - fix another early termination in hash walk + - crypto: rockchip - fix scatterlist nents error + - crypto: rockchip - update new iv to device in multiple operations + - dax: Flush partial PMDs correctly + - nfit: Fix nfit_intel_shutdown_status() command submission + - nfit: acpi_nfit_ctl(): Check out_obj->type in the right place + - acpi/nfit: Fix bus command validation + - nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot + - nfit/ars: Attempt short-ARS even in the no_init_ars case + - libnvdimm/label: Clear 'updating' flag after label-set update + - libnvdimm, pfn: Fix over-trim in trim_pfn_device() + - libnvdimm/pmem: Honor force_raw for legacy pmem regions + - libnvdimm: Fix altmap reservation size calculation + - fix cgroup_do_mount() handling of failure exits + - crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: aegis - fix handling chunked inputs + - crypto: arm/crct10dif - revert to C code for short inputs + - crypto: arm64/aes-neonbs - fix returning final keystream block + - crypto: arm64/crct10dif - revert to C code for short inputs + - crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: morus - fix handling chunked inputs + - crypto: pcbc - remove bogus memcpy()s with src == dest + - crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: testmgr - skip crc32c context test for ahash algorithms + - crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP + - crypto: x86/aesni-gcm - fix crash on empty plaintext + - crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP + - crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling + - crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine + - CIFS: Fix leaking locked VFS cache pages in writeback retry + - CIFS: Do not reset lease state to NONE on lease break + - CIFS: Do not skip SMB2 message IDs on send failures + - CIFS: Fix read after write for files with read caching + - smb3: make default i/o size for smb3 mounts larger + - tracing: Use strncpy instead of memcpy for string keys in hist triggers + - tracing: Do not free iter->trace in fail path of tracing_open_pipe() + - tracing/perf: Use strndup_user() instead of buggy open-coded version + - vmw_balloon: release lock on error in vmballoon_reset() + - xen: fix dom0 boot on huge systems + - ACPI / device_sysfs: Avoid OF modalias creation for removed device + - mmc: sdhci-esdhc-imx: fix HS400 timing issue + - mmc: renesas_sdhi: Fix card initialization failure in high speed mode + - mmc:fix a bug when max_discard is 0 + - spi: ti-qspi: Fix mmap read when more than one CS in use + - spi: pxa2xx: Setup maximum supported DMA transfer length + - spi: omap2-mcspi: Fix DMA and FIFO event trigger size mismatch + - spi: spi-gpio: fix SPI_CS_HIGH capability + - regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 + - regulator: max77620: Initialize values for DT properties + - regulator: s2mpa01: Fix step values for some LDOs + - mt76: fix corrupted software generated tx CCMP PN + - clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR + - clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown + - clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer + instability + - s390: vfio_ap: link the vfio_ap devices to the vfio_ap bus subsystem + - s390/setup: fix early warning messages + - s390/virtio: handle find on invalid queue gracefully + - scsi: virtio_scsi: don't send sc payload with tmfs + - scsi: aacraid: Fix performance issue on logical drives + - scsi: sd: Optimal I/O size should be a multiple of physical block size + - scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock + - scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware + - scsi: qla2xxx: Avoid PCI IRQ affinity mapping when multiqueue is not + supported + - scsi: qla2xxx: Use complete switch scan for RSCN events + - fs/devpts: always delete dcache dentry-s in dput() + - splice: don't merge into linked buffers + - ovl: During copy up, first copy up data and then xattrs + - ovl: Do not lose security.capability xattr over metadata file copy-up + - m68k: Add -ffreestanding to CFLAGS + - Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() + - Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl + - btrfs: scrub: fix circular locking dependency warning + - btrfs: drop the lock on error in btrfs_dev_replace_cancel + - btrfs: ensure that a DUP or RAID1 block group has exactly two stripes + - btrfs: init csum_list before possible free + - Btrfs: fix corruption reading shared and compressed extents after hole + punching + - Btrfs: fix deadlock between clone/dedupe and rename + - soc: qcom: rpmh: Avoid accessing freed memory from batch API + - libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer + - irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table + - irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code + - x86/kprobes: Prohibit probing on optprobe template code + - cpufreq: kryo: Release OPP tables on module removal + - cpufreq: tegra124: add missing of_node_put() + - cpufreq: pxa2xx: remove incorrect __init annotation + - ext4: fix check of inode in swap_inode_boot_loader + - ext4: cleanup pagecache before swap i_data + - mm: hwpoison: fix thp split handing in soft_offline_in_use_page() + - mm/vmalloc: fix size check for remap_vmalloc_range_partial() + - mm/memory.c: do_fault: avoid usage of stale vm_area_struct + - kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv + - nvmem: core: don't check the return value of notifier chain call + - device property: Fix the length used in PROPERTY_ENTRY_STRING() + - intel_th: Don't reference unassigned outputs + - parport_pc: fix find_superio io compare code, should use equal test. + - i2c: tegra: fix maximum transfer size + - i2c: tegra: update maximum transfer size + - media: i2c: ov5640: Fix post-reset delay + - gpio: pca953x: Fix dereference of irq data in shutdown + - ext4: update quota information while swapping boot loader inode + - ext4: add mask of ext4 flags to swap + - ext4: fix crash during online resizing + - dma: Introduce dma_max_mapping_size() + - swiotlb: Introduce swiotlb_max_mapping_size() + - swiotlb: Add is_swiotlb_active() function + - PCI/ASPM: Use LTR if already enabled by platform + - PCI/DPC: Fix print AER status in DPC event handling + - PCI: qcom: Don't deassert reset GPIO during probe + - PCI: dwc: skip MSI init if MSIs have been explicitly disabled + - PCI: pci-bridge-emul: Create per-bridge copy of register behavior + - PCI: pci-bridge-emul: Extend pci_bridge_emul_init() with flags + - IB/hfi1: Close race condition on user context disable and close + - IB/rdmavt: Fix loopback send with invalidate ordering + - IB/rdmavt: Fix concurrency panics in QP post_send and modify to error + - cxl: Wrap iterations over afu slices inside 'afu_list_lock' + - ext2: Fix underflow in ext2_max_size() + - clk: uniphier: Fix update register for CPU-gear + - clk: clk-twl6040: Fix imprecise external abort for pdmclk + - clk: samsung: exynos5: Fix possible NULL pointer exception on + platform_device_alloc() failure + - clk: samsung: exynos5: Fix kfree() of const memory on setting + driver_override + - clk: ingenic: Fix round_rate misbehaving with non-integer dividers + - clk: ingenic: Fix doc of ingenic_cgu_div_info + - usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() + - usb: typec: tps6598x: handle block writes separately with plain-I2C adapters + - dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit + - serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO + - serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart + - serial: 8250_pci: Fix number of ports for ACCES serial cards + - serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 + chip use the pci_pericom_setup() + - jbd2: clear dirty flag when revoking a buffer from an older transaction + - jbd2: fix compile warning when using JBUFFER_TRACE + - selinux: add the missing walk_size + len check in selinux_sctp_bind_connect + - security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock + - powerpc/32: Clear on-stack exception marker upon exception return + - powerpc/wii: properly disable use of BATs when requested. + - powerpc/powernv: Make opal log only readable by root + - powerpc/83xx: Also save/restore SPRG4-7 during suspend + - powerpc/kvm: Save and restore host AMR/IAMR/UAMOR + - powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit + - powerpc/64s/hash: Fix assert_slb_presence() use of the slbfee. instruction + - powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest + - powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning + - powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR + configuration + - powerpc/smp: Fix NMI IPI timeout + - powerpc/smp: Fix NMI IPI xmon timeout + - powerpc/traps: fix recoverability of machine check handling on book3s/32 + - powerpc/traps: Fix the message printed when stack overflows + - ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify + - arm64: Fix HCR.TGE status for NMI contexts + - arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals + - arm64: debug: Ensure debug handlers check triggering exception level + - arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 + - Revert "KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range()" + - ipmi_si: Fix crash when using hard-coded device + - ipmi_si: fix use-after-free of resource->name + - dm: fix to_sector() for 32bit + - dm integrity: limit the rate of error messages + - media: cx25840: mark pad sig_types to fix cx231xx init + - mfd: sm501: Fix potential NULL pointer dereference + - cpcap-charger: generate events for userspace + - cpuidle: governor: Add new governors to cpuidle_governors again + - NFS: Fix I/O request leakages + - NFS: Fix an I/O request leakage in nfs_do_recoalesce + - NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() + - nfsd: fix performance-limiting session calculation + - nfsd: fix memory corruption caused by readdir + - nfsd: fix wrong check in write_v4_end_grace() + - NFSv4.1: Reinitialise sequence results before retransmitting a request + - svcrpc: fix UDP on servers with lots of threads + - PM / wakeup: Rework wakeup source timer cancellation + - PM / OPP: Update performance state when freq == old_freq + - bcache: treat stale && dirty keys as bad keys + - bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadata + - stable-kernel-rules.rst: add link to networking patch queue + - vt: perform safe console erase in the right order + - x86/unwind/orc: Fix ORC unwind table alignment + - perf intel-pt: Fix CYC timestamp calculation after OVF + - perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols + - perf auxtrace: Define auxtrace record alignment + - perf intel-pt: Fix overlap calculation for padding + - perf/x86/intel/uncore: Fix client IMC events return huge result + - perf intel-pt: Fix divide by zero when TSC is not available + - md: Fix failed allocation of md_register_thread + - x86/kvmclock: set offset for kvm unstable clock + - x86/ftrace: Fix warning and considate ftrace_jmp_replace() and + ftrace_call_replace() + - tpm/tpm_crb: Avoid unaligned reads in crb_recv() + - tpm: Unify the send callback behaviour + - rcu: Do RCU GP kthread self-wakeup from softirq and interrupt + - media: imx: prpencvf: Stop upstream before disabling IDMA channel + - media: lgdt330x: fix lock status reporting + - media: sun6i: Fix CSI regmap's max_register + - media: uvcvideo: Avoid NULL pointer dereference at the end of streaming + - media: vimc: Add vimc-streamer for stream control + - media: imx-csi: Input connections to CSI should be optional + - media: imx: csi: Disable CSI immediately after last EOF + - media: imx: csi: Stop upstream before disabling IDMA channel + - drm/fb-helper: generic: Fix drm_fbdev_client_restore() + - drm/radeon/evergreen_cs: fix missing break in switch statement + - drm/amd/powerplay: correct power reading on fiji + - drm/amd/display: don't call dm_pp_ function from an fpu block + - KVM: Call kvm_arch_memslots_updated() before updating memslots + - KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-run + - KVM: VMX: Zero out *all* general purpose registers after VM-Exit + - KVM: x86/mmu: Detect MMIO generation wrap in any address space + - KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux + - KVM: nVMX: Sign extend displacements of VMX instr's mem operands + - KVM: nVMX: Apply addr size mask to effective address for VMX instructions + - KVM: nVMX: Ignore limit checks on VMX instructions using flat segments + - KVM: nVMX: Check a single byte for VMCS "launched" in nested early checks + - net: dsa: lantiq_gswip: fix use-after-free on failed probe + - net: dsa: lantiq_gswip: fix OF child-node lookups + - s390/setup: fix boot crash for machine without EDAT-1 + - SUNRPC: Prevent thundering herd when the socket is not connected + - SUNRPC: Fix up RPC back channel transmission + - SUNRPC: Respect RPC call timeouts when retrying transmission + - Linux 5.0.4 + - [Config] update configs for 5.0.4 stable update + + * New Intel Wireless-AC 9260 [8086:2526] card not correctly probed in Ubuntu + system (LP: #1821271) + - iwlwifi: add new card for 9260 series + + * [CONFIG] please enable highdpi font FONT_TER16x32 (LP: #1819881) + - [Config]: enable highdpi Terminus 16x32 font support + + * [SRU][B/B-OEM/C/D] Fix AMD IOMMU NULL dereference (LP: #1820990) + - iommu/amd: Fix NULL dereference bug in match_hid_uid + + * some codecs stop working after S3 (LP: #1820930) + - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec + - ALSA: hda - Don't trigger jackpoll_work in azx_resume + + * tcm_loop.ko: move from modules-extra into main modules package + (LP: #1817786) + - [Packaging] move tcm_loop.lo to main linux-modules package + + * C++ demangling support missing from perf (LP: #1396654) + - [Packaging] fix a mistype + + * r8169 doesn't get woken up by ethernet cable plugging, no PME generated + (LP: #1817676) + - PCI: pciehp: Disable Data Link Layer State Changed event on suspend + + * Disco update: v5.0.3 upstream stable release (LP: #1821074) + - connector: fix unsafe usage of ->real_parent + - fou, fou6: avoid uninit-value in gue_err() and gue6_err() + - gro_cells: make sure device is up in gro_cells_receive() + - ipv4/route: fail early when inet dev is missing + - l2tp: fix infoleak in l2tp_ip6_recvmsg() + - lan743x: Fix RX Kernel Panic + - lan743x: Fix TX Stall Issue + - net: hsr: fix memory leak in hsr_dev_finalize() + - net/hsr: fix possible crash in add_timer() + - net: sit: fix UBSAN Undefined behaviour in check_6rd + - net/x25: fix use-after-free in x25_device_event() + - net/x25: reset state in x25_connect() + - pptp: dst_release sk_dst_cache in pptp_sock_destruct + - ravb: Decrease TxFIFO depth of Q3 and Q2 to one + - route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race + - rxrpc: Fix client call queueing, waiting for channel + - sctp: remove sched init from sctp_stream_init + - tcp: do not report TCP_CM_INQ of 0 for closed connections + - tcp: Don't access TCP_SKB_CB before initializing it + - tcp: handle inet_csk_reqsk_queue_add() failures + - vxlan: Fix GRO cells race condition between receive and link delete + - vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() + - net/mlx4_core: Fix reset flow when in command polling mode + - net/mlx4_core: Fix locking in SRIOV mode when switching between events and + polling + - net/mlx4_core: Fix qp mtt size calculation + - net: dsa: mv88e6xxx: Set correct interface mode for CPU/DSA ports + - vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock + - net: sched: flower: insert new filter to idr after setting its mask + - f2fs: wait on atomic writes to count F2FS_CP_WB_DATA + - perf/x86: Fixup typo in stub functions + - ALSA: bebob: use more identical mod_alias for Saffire Pro 10 I/O against + Liquid Saffire 56 + - ALSA: firewire-motu: fix construction of PCM frame for capture direction + - ALSA: hda: Extend i915 component bind timeout + - ALSA: hda - add more quirks for HP Z2 G4 and HP Z240 + - ALSA: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 + - ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone + - ALSA: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with + ALC255 + - perf/x86/intel: Fix memory corruption + - perf/x86/intel: Make dev_attr_allow_tsx_force_abort static + - It's wrong to add len to sector_nr in raid10 reshape twice + - drm: Block fb changes for async plane updates + - Linux 5.0.3 + + * Disco update: v5.0.2 upstream stable release (LP: #1820318) + - media: uvcvideo: Fix 'type' check leading to overflow + - Input: wacom_serial4 - add support for Wacom ArtPad II tablet + - Input: elan_i2c - add id for touchpad found in Lenovo s21e-20 + - iscsi_ibft: Fix missing break in switch statement + - scsi: aacraid: Fix missing break in switch statement + - x86/PCI: Fixup RTIT_BAR of Intel Denverton Trace Hub + - arm64: dts: zcu100-revC: Give wifi some time after power-on + - arm64: dts: hikey: Give wifi some time after power-on + - arm64: dts: hikey: Revert "Enable HS200 mode on eMMC" + - ARM: dts: exynos: Fix pinctrl definition for eMMC RTSN line on Odroid X2/U3 + - ARM: dts: exynos: Add minimal clkout parameters to Exynos3250 PMU + - ARM: dts: exynos: Fix max voltage for buck8 regulator on Odroid XU3/XU4 + - drm: disable uncached DMA optimization for ARM and arm64 + - media: Revert "media: rc: some events are dropped by userspace" + - Revert "PCI/PME: Implement runtime PM callbacks" + - bpf: Stop the psock parser before canceling its work + - gfs2: Fix missed wakeups in find_insert_glock + - staging: erofs: keep corrupted fs from crashing kernel in erofs_namei() + - staging: erofs: compressed_pages should not be accessed again after freed + - scripts/gdb: replace flags (MS_xyz -> SB_xyz) + - ath9k: Avoid OF no-EEPROM quirks without qca,no-eeprom + - perf/x86/intel: Make cpuc allocations consistent + - perf/x86/intel: Generalize dynamic constraint creation + - x86: Add TSX Force Abort CPUID/MSR + - perf/x86/intel: Implement support for TSX Force Abort + - Linux 5.0.2 + + * Linux security module stacking support + - LSM: Introduce LSM_FLAG_LEGACY_MAJOR + - LSM: Provide separate ordered initialization + - LSM: Plumb visibility into optional "enabled" state + - LSM: Lift LSM selection out of individual LSMs + - LSM: Build ordered list of LSMs to initialize + - LSM: Introduce CONFIG_LSM + - LSM: Introduce "lsm=" for boottime LSM selection + - LSM: Tie enabling logic to presence in ordered list + - LSM: Prepare for reorganizing "security=" logic + - LSM: Refactor "security=" in terms of enable/disable + - LSM: Separate idea of "major" LSM from "exclusive" LSM + - apparmor: Remove SECURITY_APPARMOR_BOOTPARAM_VALUE + - selinux: Remove SECURITY_SELINUX_BOOTPARAM_VALUE + - LSM: Add all exclusive LSMs to ordered initialization + - LSM: Split LSM preparation from initialization + - LoadPin: Initialize as ordered LSM + - Yama: Initialize as ordered LSM + - LSM: Introduce enum lsm_order + - capability: Initialize as LSM_ORDER_FIRST + - procfs: add smack subdir to attrs + - Smack: Abstract use of cred security blob + - SELinux: Abstract use of cred security blob + - SELinux: Remove cred security blob poisoning + - SELinux: Remove unused selinux_is_enabled + - AppArmor: Abstract use of cred security blob + - TOMOYO: Abstract use of cred security blob + - Infrastructure management of the cred security blob + - SELinux: Abstract use of file security blob + - Smack: Abstract use of file security blob + - LSM: Infrastructure management of the file security + - SELinux: Abstract use of inode security blob + - Smack: Abstract use of inode security blob + - LSM: Infrastructure management of the inode security + - LSM: Infrastructure management of the task security + - SELinux: Abstract use of ipc security blobs + - Smack: Abstract use of ipc security blobs + - LSM: Infrastructure management of the ipc security blob + - TOMOYO: Update LSM flags to no longer be exclusive + - LSM: generalize flag passing to security_capable + - LSM: Make lsm_early_cred() and lsm_early_task() local functions. + - LSM: Make some functions static + - apparmor: Adjust offset when accessing task blob. + - LSM: Ignore "security=" when "lsm=" is specified + - LSM: Update list of SECURITYFS users in Kconfig + - apparmor: delete the dentry in aafs_remove() to avoid a leak + - apparmor: fix double free when unpack of secmark rules fails + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: LSM: Limit calls to certain module hooks + - SAUCE: LSM: Special handling for secctx lsm hooks + - SAUCE: LSM: Specify which LSM to display with /proc/self/attr/display + - SAUCE: Fix-up af_unix mediation for sock infrastructure management + - SAUCE: Revert "apparmor: Fix warning about unused function + apparmor_ipv6_postroute" + - SAUCE: Revert "apparmor: fix checkpatch error in Parse secmark policy" + - SAUCE: Revert "apparmor: add #ifdef checks for secmark filtering" + - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" + - SAUCE: Revert "apparmor: Parse secmark policy" + - SAUCE: Revert "apparmor: Add a wildcard secid" + - SAUCE: Revert "apparmor: fix bad debug check in apparmor_secid_to_secctx()" + - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" + - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" + - SAUCE: Revert "apparmor: Fix memory leak of rule on error exit path" + - SAUCE: Revert "apparmor: modify audit rule support to support profile + stacks" + - SAUCE: Revert "apparmor: Add support for audit rule filtering" + - SAUCE: Revert "apparmor: add the ability to get a task's secid" + - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" + - SAUCE: apparmor: add proc subdir to attrs + - SAUCE: apparmor: add an apparmorfs entry to access current attrs + - SAUCE: apparmor: update flags to no longer be exclusive + - SAUCE: update configs and annotations for LSM stacking + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_EARLY_PRINTK_USB_XDBC=y + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - [Config] CONFIG_RANDOM_TRUST_CPU=y + - [Config] refresh annotations for recent config changes + - ubuntu: vbox -- update to 6.0.4-dfsg-7 + - Revert "UBUNTU: SAUCE: i2c:amd I2C Driver based on PCI Interface for + upcoming platform" + + -- Seth Forshee Thu, 04 Apr 2019 14:49:59 -0500 + +linux (5.0.0-8.9) disco; urgency=medium + + * linux: 5.0.0-8.9 -proposed tracker (LP: #1819759) + + * hisi_sas: add debugfs support (LP: #1819500) + - scsi: hisi_sas: Create root and device debugfs directories + - scsi: hisi_sas: Alloc debugfs snapshot buffer memory for all registers + - scsi: hisi_sas: Take debugfs snapshot for all regs + - scsi: hisi_sas: Debugfs global register create file and add file operations + - scsi: hisi_sas: Add debugfs for port registers + - scsi: hisi_sas: Add debugfs CQ file and add file operations + - scsi: hisi_sas: Add debugfs DQ file and add file operations + - scsi: hisi_sas: Add debugfs IOST file and add file operations + - scsi: hisi_sas: No need to check return value of debugfs_create functions + - scsi: hisi_sas: Fix type casting and missing static qualifier in debugfs + code + - scsi: hisi_sas: Add debugfs ITCT file and add file operations + + * [disco] hns driver updates from 5.1 merge window (LP: #1819535) + - net: hns: Use struct_size() in devm_kzalloc() + - net: hns3: modify enet reinitialization interface + - net: hns3: remove unused member in struct hns3_enet_ring + - net: hns3: remove unnecessary hns3_adjust_tqps_num + - net: hns3: reuse reinitialization interface in the hns3_set_channels + - net: hns3: add interface hclge_tm_bp_setup + - net: hns3: modify parameter checks in the hns3_set_channels + - net: hns3: remove redundant codes in hclge_knic_setup + - net: hns3: fix user configuration loss for ethtool -L + - net: hns3: adjust the use of alloc_tqps and num_tqps + - net: hns3: fix wrong combined count returned by ethtool -l + - net: hns3: do reinitialization while ETS configuration changed + - net: hns3: add HNAE3_RESTORE_CLIENT interface in enet module + - net: hns3: add calling roce callback function when link status change + - net: hns3: add rx multicast packets statistic + - net: hns3: refactor the statistics updating for netdev + - net: hns3: fix rss configuration lost problem when setting channel + - net: hns3: fix for shaper not setting when TC num changes + - net: hns3: fix bug of ethtool_ops.get_channels for VF + - net: hns3: clear param in ring when free ring + - net: hns3: Change fw error code NOT_EXEC to NOT_SUPPORTED + - net: hns3: do not return GE PFC setting err when initializing + - net: hns3: add ETS TC weight setting in SSU module + - net: hns3: add statistics for PFC frames and MAC control frames + - net: hns3: fix PFC not setting problem for DCB module + - net: hns3: don't update packet statistics for packets dropped by hardware + - net: hns3: clear pci private data when unload hns3 driver + - net: hns3: add error handling in hclge_ieee_setets + - net: hns3: fix return value handle issue for hclge_set_loopback() + - net: hns3: fix broadcast promisc issue for revision 0x20 + - net: hns3: After setting the loopback, add the status of getting MAC + - net: hns3: do reinitialization while mqprio configuration changed + - net: hns3: remove dcb_ops->map_update in hclge_dcb + - net: hns3: call hns3_nic_set_real_num_queue with netdev down + - net: hns3: add 8 BD limit for tx flow + - net: hns3: add initialization for nic state + - net: hns3: don't allow vf to enable promisc mode + - net: hns3: reuse the definition of l3 and l4 header info union + - net: hns3: fix VF dump register issue + - net: hns3: use the correct interface to stop|open port + - net: hns3: change hnae3_register_ae_dev() to int + - net: hns3: only support tc 0 for VF + - net: hns3: Fix NULL deref when unloading driver + - net: hns3: fix netif_napi_del() not do problem when unloading + - net: hns3: fix for rss result nonuniform + - net: hns3: fix improper error handling in the hclge_init_ae_dev() + - net: hns3: fix an issue for hclgevf_ae_get_hdev + - net: hns3: stop sending keep alive msg to PF when VF is resetting + - net: hns3: keep flow director state unchanged when reset + - net: hns3: Check for allocation failure + - net: hns3: fix a code style issue for hns3_update_new_int_gl() + - net: hns3: fix an issue for hns3_update_new_int_gl + - net: hns3: Modify parameter type from int to bool in set_gro_en + - net: hns3: code optimization for hclge_rx_buffer_calc + - net: hns3: add hclge_cmd_check_retval() to parse comman's return value + - net: hns3: move some set_bit statement into hclge_prepare_mac_addr + - net: hns3: fix a wrong checking in the hclge_tx_buffer_calc() + - net: hns3: fix the problem that the supported port is empty + - net: hns3: optimize the maximum TC macro + - net: hns3: don't allow user to change vlan filter state + - net: hns3: modify the upper limit judgment condition + - net: hns3: MAC table entry count function increases operation 0 value + protection measures + - net: hns3: make function hclge_set_all_vf_rst() static + - net: hns3: add pointer checking at the beginning of the exported functions. + - net: hns3: Check variable is valid before assigning it to another + - net: hns3: convert mac advertize and supported from u32 to link mode + - net: hns3: fix port info query issue for copper port + - net: hns3: modify print message of ssu common ecc errors + - net: hns3: some bugfix of ppu(rcb) ras errors + - net: hns3: enable 8~11th bit of mac common msi-x error + - net: hns3: fix 6th bit of ppp mpf abnormal errors + - net: hns3: Record VF unicast and multicast tables + - net: hns3: Record VF vlan tables + - net: hns3: uninitialize command queue while unloading PF driver + - net: hns3: clear command queue's registers when unloading VF driver + - net: hns3: add xps setting support for hns3 driver + - net: hns3: avoid mult + div op in critical data path + - net: hns3: limit some variable scope in critical data path + - net: hns3: remove some ops in struct hns3_nic_ops + - net: hns3: add unlikely for error handling in data path + - net: hns3: replace hnae3_set_bit and hnae3_set_field in data path + - net: hns3: remove hnae3_get_bit in data path + - net: hns3: add support to config depth for tx|rx ring separately + - net: hns3: enable VF VLAN filter for each VF when initializing + - net: hns3: fix get VF RSS issue + - net: hns3: fix setting of the hns reset_type for rdma hw errors + - net: hns3: fix improper error handling for hns3_client_start + - net: hns: use struct_size() in devm_kzalloc() + - net: hns3: Fix a logical vs bitwise typo + - net: hns3: add dma_rmb() for rx description + - net: hns3: fix to stop multiple HNS reset due to the AER changes + + * Build Nvidia drivers in conjunction with kernel (LP: #1764792) + - [Packaging] dkms-build -- support building against packages in PPAs + - [Packaging] dkms-build: do not redownload files on subsequent passes + - [Packaging] dkms-build -- elide partial Built-Using information + - [Packaging] dkms-build -- remove retpoline data from final binary packages + - [Packaging] dkms-build--nvidia* -- check gcc version against primary build + - [Packaging] dkms-build -- add support for unversioned overrides + - [Packaging] dkms-build--nvidia-* -- convert to generic -N form + - [Packaging] fix-filenames -- handle exact string removal + - [Packaging] dkms-build--nvidia-N -- remove GCC versions + + * Disco update: v5.0.1 upstream stable release (LP: #1819515) + - cpufreq: Use struct kobj_attribute instead of struct global_attr + - staging: erofs: fix mis-acted TAIL merging behavior + - binder: create node flag to request sender's security context + - USB: serial: option: add Telit ME910 ECM composition + - USB: serial: cp210x: add ID for Ingenico 3070 + - USB: serial: ftdi_sio: add ID for Hjelmslund Electronics USB485 + - driver core: Postpone DMA tear-down until after devres release + - staging: erofs: fix fast symlink w/o xattr when fs xattr is on + - staging: erofs: fix memleak of inode's shared xattr array + - staging: erofs: fix race of initializing xattrs of a inode at the same time + - staging: erofs: fix illegal address access under memory pressure + - staging: comedi: ni_660x: fix missing break in switch statement + - staging: wilc1000: fix to set correct value for 'vif_num' + - staging: android: ion: fix sys heap pool's gfp_flags + - staging: android: ashmem: Don't call fallocate() with ashmem_mutex held. + - staging: android: ashmem: Avoid range_alloc() allocation with ashmem_mutex + held. + - ip6mr: Do not call __IP6_INC_STATS() from preemptible context + - net: dsa: mv88e6xxx: add call to mv88e6xxx_ports_cmode_init to probe for new + DSA framework + - net: dsa: mv88e6xxx: handle unknown duplex modes gracefully in + mv88e6xxx_port_set_duplex + - net: dsa: mv8e6xxx: fix number of internal PHYs for 88E6x90 family + - net: mscc: Enable all ports in QSGMII + - net: sched: put back q.qlen into a single location + - net-sysfs: Fix mem leak in netdev_register_kobject + - qmi_wwan: Add support for Quectel EG12/EM12 + - sctp: call iov_iter_revert() after sending ABORT + - team: Free BPF filter when unregistering netdev + - tipc: fix RDM/DGRAM connect() regression + - x86/CPU/AMD: Set the CPB bit unconditionally on F17h + - x86/boot/compressed/64: Do not read legacy ROM on EFI system + - tracing: Fix event filters and triggers to handle negative numbers + - xhci: tegra: Prevent error pointer dereference + - usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on + INTEL_SUNRISEPOINT_LP_XHCI + - applicom: Fix potential Spectre v1 vulnerabilities + - alpha: wire up io_pgetevents system call + - MIPS: irq: Allocate accurate order pages for irq stack + - aio: Fix locking in aio_poll() + - xtensa: fix get_wchan + - gnss: sirf: fix premature wakeup interrupt enable + - USB: serial: cp210x: fix GPIO in autosuspend + - Revert "selftests: firmware: add CONFIG_FW_LOADER_USER_HELPER_FALLBACK to + config" + - Revert "selftests: firmware: remove use of non-standard diff -Z option" + - selftests: firmware: fix verify_reqs() return value + - Bluetooth: btrtl: Restore old logic to assume firmware is already loaded + - Bluetooth: Fix locking in bt_accept_enqueue() for BH context + - Linux 5.0.1 + + * sky2 ethernet card doesn't work after returning from suspend + (LP: #1807259) // sky2 ethernet card link not up after suspend + (LP: #1809843) // Disco update: v5.0.1 upstream stable release + (LP: #1819515) + - sky2: Disable MSI on Dell Inspiron 1545 and Gateway P-79 + + * tls selftest failures/hangs on i386 (LP: #1813607) + - [Config] CONFIG_TLS=n for i386 + + * CVE-2019-8980 + - exec: Fix mem leak in kernel_read_file + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: Use 'ipproto ipv6-icmp' to match ICMPv6 headers + - [Config] enable nvidia build + - [Config] update gcc version to 8.3 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: selftests: pmtu: disable accept_dad for tests" + + -- Thadeu Lima de Souza Cascardo Tue, 12 Mar 2019 16:15:44 -0300 + +linux (5.0.0-7.8) disco; urgency=medium + + * linux: 5.0.0-7.8 -proposed tracker (LP: #1818519) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * unnecessary request_queue freeze (LP: #1815733) + - block: avoid setting nr_requests to current value + - block: avoid setting none scheduler if it's already none + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on xfail + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.0 + + -- Seth Forshee Mon, 04 Mar 2019 08:46:10 -0600 + +linux (5.0.0-6.7) disco; urgency=medium + + * linux: 5.0.0-6.7 -proposed tracker (LP: #1817585) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - [Packaging] resync getabis + + * installer does not support iSCSI iBFT (LP: #1817321) + - d-i: add iscsi_ibft to scsi-modules + + * Silent "Unknown key" message when pressing keyboard backlight hotkey + (LP: #1817063) + - platform/x86: dell-wmi: Ignore new keyboard backlight change event + + * Fix I219 doesn't get woken up after plugging ethernet cable (LP: #1817058) + - e1000e: Disable runtime PM on CNP+ + + * efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted (LP: #1814982) + - efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted + + * CVE-2019-3460 + - Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt + + * CVE-2019-3459 + - Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer + + * kernel net tls selftest fails on 5.0 (LP: #1816716) + - SAUCE: Revert "selftests/tls: Add test for recv(PEEK) spanning across + multiple records" + + * Please enable CONFIG_DMA_CMA=y on arm64 (LP: #1803206) + - [Config] annotations -- enforce CONFIG_DMA_CMA and update notes + + * [19.04 FEAT] [LS1801] PCI Virtual function enablement (LP: #1814684) + - s390/pci: map IOV resources + - s390/pci: improve bar check + + * glibc 2.28-0ubuntu1 ADT test failure with linux 5.0.0-1.2 (LP: #1813060) + - SAUCE: prevent a glibc test failure when looking for obsolete types on + headers + + * Miscellaneous Ubuntu changes + - [Config] Enforce CONFIG_ZCRYPT_MULTIDEVNODES in annotations + - SAUCE: selftests: pmtu: disable accept_dad for tests + - SAUCE: arm64: add kernel config option to lock down when in Secure Boot mode + - SAUCE: selftests: net: Make test for VXLAN underlay in non-default VRF an + expected failure + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc8 + + -- Seth Forshee Mon, 25 Feb 2019 09:37:36 -0600 + +linux (5.0.0-5.6) disco; urgency=medium + + * [ALSA] [PATCH] System76 darp5 and oryp5 fixups (LP: #1815831) + - ALSA: hda/realtek - Headset microphone and internal speaker support for + System76 oryp5 + + * Miscellaneous Ubuntu changes + - [Config] Fix aufs menus in annotations file + - [Config] CONFIG_SAMPLE_TRACE_PRINTK=m + - [Config] Update annotations based on configs + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc7 + + -- Seth Forshee Mon, 18 Feb 2019 10:04:11 +0100 + +linux (5.0.0-4.5) disco; urgency=medium + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] autoreconstruct -- base tag is always primary mainline version + + * [Packaging] Allow overlay of config annotations (LP: #1752072) + - [Packaging] config-check: Add an include directive + + * Miscellaneous Ubuntu changes + - hio -- stub out BIOVEC_PHYS_MERGEABLE for 4.20+ + - hio -- replace use of do_gettimeofday() + - hio -- part_round_stats() removed in 5.0 + - hio -- device_add_disk() grew a 'groups' argument in 4.20 + - enable hio build + - Revert "UBUNTU: [Packaging] autoreconstruct -- base tag is always primary + mainline version" + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc6 + + -- Seth Forshee Tue, 12 Feb 2019 08:15:32 -0600 + +linux (5.0.0-3.4) disco; urgency=medium + + * CONFIG_TEST_BPF is disabled (LP: #1813955) + - [Config]: Reenable TEST_BPF + + * Ignore "incomplete report" from Elan touchpanels (LP: #1813733) + - HID: i2c-hid: Ignore input report if there's no data present on Elan + touchpanels + + * SecureBoot support for arm64 (LP: #1804481) + - Build signed kernels for arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: fix "from" match test in fib_rule_tests.sh + - [Config] CONFIG_PCMCIA=n for arm64 and s390x + - [Config] CONFIG_SERIAL_SC16IS7XX=n for s390x + - [Config] disable I2C TPM drivers for s390x + - [Config] CONFIG_RAPIDIO=n for s390x + - [Config] CONFIG_DMADEVICES=n for s390x + - [Config] disable gpio drivers for s390x + - [Config] CONFIG_SENSORS_OCC_P8_I2C=m for ppc64el + - [Config] disable I2C hardware drivers for s390x + - [Config] CONFIG_I3C=n for s390x + - [Config] CONFIG_SERIO=n for s390x + - [Config] disable misc drivers for s390x + - [Config] disable EEPROM drivers for s390x + - [Config] disable MFD drivers for s390x + - [Config] CONFIG_NVMEM=n for s390x + - [Config] CONFIG_MLXSW_I2C=n for s390x + - [Config] CONFIG_NET_VENDOR_MICROCHIP=n for s390x + - [Config] CONFIG_PPP=n for s390x + - [Config] CONFIG_PCCARD=n for s390x + - [Config] CONFIG_PCI_MESON=y + - [Config] CONFIG_SCSI_MYRB=n for s390x + - [Config] CONFIG_REGULATOR=n for s390x + - [Config] CONFIG_ZIIRAVE_WATCHDOG=n for s390x + - [Config] CONFIG_NCSI_OEM_CMD_GET_MAC=y + - [Config] update annotations following config review + - [Packaging] remove handoff check for uefi signing + - [Packaging] decompress gzipped efi images in signing tarball + - vbox-update: allow leading whitespace when fixing up KERN_DIR + - ubuntu: vbox -- update to 6.0.4-dfsg-3 + - vbox: remove remount check in sf_read_super_aux() + - enable vbox build + - [Config] CONFIG_ANDROID_BINDER_DEVICES="" + - SAUCE: import aufs driver + - [Config]: Enable aufs + - [Config] relocate aufs annotations to menu + - [Config] remove unmatched configs from annotations + - [Config] fix up abi for removed modules + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules + - SAUCE: (efi-lockdown) Move EFI signature blob parser to shared location + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - [Config] (efi-lockdown) enable importing of efi certificates for module sig + verification + + * Miscellaneous upstream changes + - binder: fix CONFIG_ANDROID_BINDER_DEVICES + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc5 + + -- Seth Forshee Tue, 05 Feb 2019 14:26:12 -0600 + +linux (5.0.0-2.3) disco; urgency=medium + + * kernel oops in bcache module (LP: #1793901) + - SAUCE: bcache: never writeback a discard operation + + * Enable sound card power saving by default (LP: #1804265) + - [Config] CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: selftests: disable some failing networking tests" + - SAUCE: ashmem: turn into module + - SAUCE: binder: turn into module + - SAUCE: binder: give binder_alloc its own debug mask file + - [Config] enable binder and ashmem as modules + - SAUCE: selftests: net: replace AF_MAX with INT_MAX in socket.c + - SAUCE: selftests/ftrace: Fix tab expansion in trace_marker snapshot trigger + test + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc4 + + -- Seth Forshee Tue, 29 Jan 2019 06:57:32 -0600 + +linux (5.0.0-1.2) disco; urgency=medium + + * Fix non-working QCA Rome Bluetooth after S3 (LP: #1812812) + - USB: Add new USB LPM helpers + - USB: Consolidate LPM checks to avoid enabling LPM twice + + * bluetooth controller not detected with 4.15 kernel (LP: #1810797) + - SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK + - [Config] arm64: snapdragon: BT_QCOMSMD_HACK=y + + * [19.04 FEAT| Enable virtio-gpu for s390x (LP: #1799467) + - [Config] enable virtio-gpu for s390x + + * Crash on "ip link add foo type ipip" (LP: #1811803) + - SAUCE: fan: Fix NULL pointer dereference + + * Fix not working Goodix touchpad (LP: #1811929) + - HID: i2c-hid: Disable runtime PM on Goodix touchpad + + * Miscellaneous Ubuntu changes + - update dkms package versions + - enable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc3 + + -- Seth Forshee Tue, 22 Jan 2019 13:56:17 -0600 + +linux (5.0.0-0.1) disco; urgency=medium + + * Build Nvidia drivers in conjunction with kernel (LP: #1764792) + - [Packaging] dkms -- add per package post-process step + - [Packaging] dkms -- switch to a consistent build prefix length and strip + - [Packaging] nvidia -- build and sign nvidia packages and ship signatures + - [Packaging] nvidia -- make nvidia package version explicit + + * Add support for ALC3277 codec on new Dell edge gateways (LP: #1807334) + - [Config] CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m + + * RTL8822BE WiFi Disabled in Kernel 4.18.0-12 (LP: #1806472) + - [Config] CONFIG_RTLWIFI_DEBUG_ST=n + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - ubuntu -- disable hio build + - Disable zfs build + - SAUCE: import aufs driver + - update dkms package versions + - [Config] disable aufs config options + - [Config] disable nvidia build + - update dropped.txt + - [Packaging] disable nvidia dkms builds for mainline + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - [Config] set config options for efi lockdown + - Revert "UBUNTU: SAUCE: import aufs driver" + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc2 + + -- Seth Forshee Thu, 17 Jan 2019 12:31:29 -0600 + +linux (5.0.0-0.0) disco; urgency=medium + + * Dummy entry. + + -- Seth Forshee Wed, 16 Jan 2019 14:48:05 -0600 + +linux (4.20.0-2.3) disco; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.20 + + -- Seth Forshee Thu, 03 Jan 2019 12:11:43 -0600 + +linux (4.20.0-1.2) disco; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Power leakage at S5 with Qualcomm Atheros QCA9377 802.11ac Wireless Network + Adapter (LP: #1805607) + - SAUCE: ath10k: provide reset function for QCA9377 chip + + * zfs/spl build in conjunction with the kernel from DKMS source (LP: #1807378) + - [Packaging] dkms -- dkms package build packaging support + - [Packaging] dkms -- save build objects artifacts for validation + - [Packaging] dkms -- add general Built-Using: support + - [Packaging] simplify Provides comma handling + - [Packaging] zfs/spl -- remove packaging support for incorporated source + - [Packaging] zfs/spl -- remove incorporated source + - [Packaging] zfs/spl -- build via dkms + - [Packaging] zfs/spl -- make zfs package version explicit + - [Packaging] update-version-dkms -- sync archive versions to package + + * Miscellaneous Ubuntu changes + - [Packaging] update-version-dkms -- fix getting distrbution from changelog + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v4.20-rc6 + + -- Seth Forshee Tue, 11 Dec 2018 11:33:08 -0600 + +linux (4.20.0-0.1) disco; urgency=medium + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - Revert "ovl: relax permission checking on underlying layers" + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * Miscellaneous Ubuntu changes + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: Import aufs driver + - ubuntu: vbox -- update to 5.2.22-dfsg-2 + - ubuntu -- disable vbox build + - ubuntu -- disable hio build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.20-rc5 + + -- Seth Forshee Fri, 07 Dec 2018 07:13:42 -0600 + +linux (4.20.0-0.0) disco; urgency=medium + + * Dummy entry. + + -- Seth Forshee Thu, 06 Dec 2018 10:20:19 -0600 + +linux (4.19.0-8.9) disco; urgency=medium + + * linux: 4.19.0-8.9 -proposed tracker (LP: #1806952) + + * Workaround CSS timeout on AMD SNPS 3.0 xHC (LP: #1806838) + - xhci: workaround CSS timeout on AMD SNPS 3.0 xHC + + * Fix Intel I210 doesn't work when ethernet cable gets plugged (LP: #1806818) + - igb: Fix an issue that PME is not enabled during runtime suspend + + * The line-out on the Dell Dock station can't work (LP: #1806532) + - ALSA: usb-audio: Add vendor and product name for Dell WD19 Dock + + * CVE-2018-19407 + - KVM: X86: Fix scan ioapic use-before-initialization + + * PC SN720 NVMe WDC 256GB consumes more power in S2Idle than during long idle + (LP: #1805775) + - SAUCE: pci/nvme: prevent WDC PC SN720 NVMe from entering D3 and being + disabled + + * Disco update: 4.19.6 upstream stable release (LP: #1806909) + - HID: steam: remove input device when a hid client is running. + - efi/libstub: arm: support building with clang + - usb: core: Fix hub port connection events lost + - usb: dwc3: gadget: fix ISOC TRB type on unaligned transfers + - usb: dwc3: gadget: Properly check last unaligned/zero chain TRB + - usb: dwc3: core: Clean up ULPI device + - usb: dwc3: Fix NULL pointer exception in dwc3_pci_remove() + - xhci: Fix leaking USB3 shared_hcd at xhci removal + - xhci: handle port status events for removed USB3 hcd + - xhci: Add check for invalid byte size error when UAS devices are connected. + - usb: xhci: fix uninitialized completion when USB3 port got wrong status + - usb: xhci: fix timeout for transition from RExit to U0 + - xhci: Add quirk to workaround the errata seen on Cavium Thunder-X2 Soc + - usb: xhci: Prevent bus suspend if a port connect change or polling state is + detected + - ALSA: oss: Use kvzalloc() for local buffer allocations + - MAINTAINERS: Add Sasha as a stable branch maintainer + - Documentation/security-bugs: Clarify treatment of embargoed information + - Documentation/security-bugs: Postpone fix publication in exceptional cases + - mmc: sdhci-pci: Try "cd" for card-detect lookup before using NULL + - mmc: sdhci-pci: Workaround GLK firmware failing to restore the tuning value + - gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path + - iwlwifi: fix wrong WGDS_WIFI_DATA_SIZE + - iwlwifi: mvm: support sta_statistics() even on older firmware + - iwlwifi: mvm: fix regulatory domain update when the firmware starts + - iwlwifi: mvm: don't use SAR Geo if basic SAR is not used + - brcmfmac: fix reporting support for 160 MHz channels + - opp: ti-opp-supply: Dynamically update u_volt_min + - opp: ti-opp-supply: Correct the supply in _get_optimal_vdd_voltage call + - tools/power/cpupower: fix compilation with STATIC=true + - v9fs_dir_readdir: fix double-free on p9stat_read error + - selinux: Add __GFP_NOWARN to allocation at str_read() + - Input: synaptics - avoid using uninitialized variable when probing + - bfs: add sanity check at bfs_fill_super() + - sctp: clear the transport of some out_chunk_list chunks in + sctp_assoc_rm_peer + - gfs2: Don't leave s_fs_info pointing to freed memory in init_sbd + - llc: do not use sk_eat_skb() + - mm: don't warn about large allocations for slab + - mm/memory.c: recheck page table entry with page table lock held + - tcp: do not release socket ownership in tcp_close() + - drm/fb-helper: Blacklist writeback when adding connectors to fbdev + - drm/amdgpu: Add missing firmware entry for HAINAN + - drm/vc4: Set ->legacy_cursor_update to false when doing non-async updates + - drm/amdgpu: Fix oops when pp_funcs->switch_power_profile is unset + - drm/i915: Disable LP3 watermarks on all SNB machines + - drm/ast: change resolution may cause screen blurred + - drm/ast: fixed cursor may disappear sometimes + - drm/ast: Remove existing framebuffers before loading driver + - can: flexcan: Unlock the MB unconditionally + - can: dev: can_get_echo_skb(): factor out non sending code to + __can_get_echo_skb() + - can: dev: __can_get_echo_skb(): replace struct can_frame by canfd_frame to + access frame length + - can: dev: __can_get_echo_skb(): Don't crash the kernel if can_priv::echo_skb + is accessed out of bounds + - can: dev: __can_get_echo_skb(): print error message, if trying to echo non + existing skb + - can: rx-offload: introduce can_rx_offload_get_echo_skb() and + can_rx_offload_queue_sorted() functions + - can: rx-offload: rename can_rx_offload_irq_queue_err_skb() to + can_rx_offload_queue_tail() + - can: flexcan: use can_rx_offload_queue_sorted() for flexcan_irq_bus_*() + - can: flexcan: handle tx-complete CAN frames via rx-offload infrastructure + - can: raw: check for CAN FD capable netdev in raw_sendmsg() + - can: hi311x: Use level-triggered interrupt + - can: flexcan: Always use last mailbox for TX + - can: flexcan: remove not needed struct flexcan_priv::tx_mb and struct + flexcan_priv::tx_mb_idx + - ACPICA: AML interpreter: add region addresses in global list during + initialization + - IB/hfi1: Eliminate races in the SDMA send error path + - fsnotify: generalize handling of extra event flags + - fanotify: fix handling of events on child sub-directory + - pinctrl: meson: fix pinconf bias disable + - pinctrl: meson: fix gxbb ao pull register bits + - pinctrl: meson: fix gxl ao pull register bits + - pinctrl: meson: fix meson8 ao pull register bits + - pinctrl: meson: fix meson8b ao pull register bits + - tools/testing/nvdimm: Fix the array size for dimm devices. + - scsi: lpfc: fix remoteport access + - scsi: hisi_sas: Remove set but not used variable 'dq_list' + - KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE + - cpufreq: imx6q: add return value check for voltage scale + - rtc: cmos: Do not export alarm rtc_ops when we do not support alarms + - rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_write + - crypto: simd - correctly take reqsize of wrapped skcipher into account + - floppy: fix race condition in __floppy_read_block_0() + - powerpc/io: Fix the IO workarounds code to work with Radix + - sched/fair: Fix cpu_util_wake() for 'execl' type workloads + - perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs + - block: copy ioprio in __bio_clone_fast() and bounce + - SUNRPC: Fix a bogus get/put in generic_key_to_expire() + - riscv: add missing vdso_install target + - RISC-V: Silence some module warnings on 32-bit + - drm/amdgpu: fix bug with IH ring setup + - kdb: Use strscpy with destination buffer size + - NFSv4: Fix an Oops during delegation callbacks + - powerpc/numa: Suppress "VPHN is not supported" messages + - efi/arm: Revert deferred unmap of early memmap mapping + - z3fold: fix possible reclaim races + - mm, memory_hotplug: check zone_movable in has_unmovable_pages + - tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset + - mm, page_alloc: check for max order in hot path + - dax: Avoid losing wakeup in dax_lock_mapping_entry + - include/linux/pfn_t.h: force '~' to be parsed as an unary operator + - tty: wipe buffer. + - tty: wipe buffer if not echoing data + - gfs2: Fix iomap buffer head reference counting bug + - rcu: Make need_resched() respond to urgent RCU-QS needs + - media: ov5640: Re-work MIPI startup sequence + - media: ov5640: Fix timings setup code + - media: ov5640: fix exposure regression + - media: ov5640: fix auto gain & exposure when changing mode + - media: ov5640: fix wrong binning value in exposure calculation + - media: ov5640: fix auto controls values when switching to manual mode + - Linux 4.19.6 + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] limit preparation to linux-libc-dev in headers + - [Packaging] commonise debhelper invocation + - [Packaging] ABI -- accumulate abi information at the end of the build + - [Packaging] buildinfo -- add basic build information + - [Packaging] buildinfo -- add firmware information to the flavour ABI + - [Packaging] buildinfo -- add compiler information to the flavour ABI + - [Packaging] buildinfo -- add buildinfo support to getabis + - [Packaging] getabis -- handle all known package combinations + - [Packaging] getabis -- support parsing a simple version + + * linux packages should own /usr/lib/linux/triggers (LP: #1770256) + - [Packaging] own /usr/lib/linux/triggers + + * Miscellaneous upstream changes + - blk-mq: fix corruption with direct issue + + -- Seth Forshee Wed, 05 Dec 2018 09:18:30 -0600 + +linux (4.19.0-7.8) disco; urgency=medium + + * linux: 4.19.0-7.8 -proposed tracker (LP: #1805465) + + * Fix and issue that LG I2C touchscreen stops working after reboot + (LP: #1805085) + - HID: i2c-hid: Disable runtime PM for LG touchscreen + + * click/pop noise in the headphone on several lenovo laptops (LP: #1805079) // + click/pop noise in the headphone on several lenovo laptops (LP: #1805079) + - ALSA: hda/realtek - fix the pop noise on headphone for lenovo laptops + + * Regression: hinic performance degrades over time (LP: #1805248) + - Revert "net-next/hinic: add checksum offload and TSO support" + + * Disco update: 4.19.5 upstream stable release (LP: #1805461) + - drm/i915: Replace some PAGE_SIZE with I915_GTT_PAGE_SIZE + - cifs: don't dereference smb_file_target before null check + - cifs: fix return value for cifs_listxattr + - arm64: kprobe: make page to RO mode when allocate it + - block: brd: associate with queue until adding disk + - net: hns3: bugfix for rtnl_lock's range in the hclgevf_reset() + - net: hns3: bugfix for rtnl_lock's range in the hclge_reset() + - net: hns3: bugfix for handling mailbox while the command queue reinitialized + - net: hns3: bugfix for the initialization of command queue's spin lock + - ixgbe: fix MAC anti-spoofing filter after VFLR + - reiserfs: propagate errors from fill_with_dentries() properly + - hfs: prevent btree data loss on root split + - hfsplus: prevent btree data loss on root split + - perf unwind: Take pgoff into account when reporting elf to libdwfl + - um: Give start_idle_thread() a return code + - drm/edid: Add 6 bpc quirk for BOE panel. + - afs: Handle EIO from delivery function + - platform/x86: intel_telemetry: report debugfs failure + - clk: fixed-rate: fix of_node_get-put imbalance + - perf symbols: Set PLT entry/header sizes properly on Sparc + - fs/exofs: fix potential memory leak in mount option parsing + - clk: samsung: exynos5420: Enable PERIS clocks for suspend + - apparmor: Fix uninitialized value in aa_split_fqname + - x86/earlyprintk: Add a force option for pciserial device + - platform/x86: acerhdf: Add BIOS entry for Gateway LT31 v1.3307 + - clk: meson-axg: pcie: drop the mpll3 clock parent + - arm64: percpu: Initialize ret in the default case + - clk: meson: clk-pll: drop CLK_GET_RATE_NOCACHE where unnecessary + - clk: renesas: r9a06g032: Fix UART34567 clock rate + - clk: ti: fix OF child-node lookup + - serial: sh-sci: Fix receive on SCIFA/SCIFB variants with DMA + - netfilter: ipv6: fix oops when defragmenting locally generated fragments + - netfilter: bridge: define INT_MIN & INT_MAX in userspace + - s390/decompressor: add missing FORCE to build targets + - s390/vdso: add missing FORCE to build targets + - HID: i2c-hid: Add a small delay after sleep command for Raydium touchpanel + - Revert "HID: add NOGET quirk for Eaton Ellipse MAX UPS" + - HID: alps: allow incoming reports when only the trackstick is opened + - Revert "netfilter: nft_numgen: add map lookups for numgen random operations" + - netfilter: ipset: list:set: Decrease refcount synchronously on deletion and + replace + - netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net + - netfilter: ipset: fix ip_set_list allocation failure + - s390/mm: fix mis-accounting of pgtable_bytes + - s390/mm: Fix ERROR: "__node_distance" undefined! + - bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv + - netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment() + - netfilter: xt_IDLETIMER: add sysfs filename checking routine + - netfilter: ipset: Fix calling ip_set() macro at dumping + - netfilter: nft_compat: ebtables 'nat' table is normal chain type + - s390/qeth: fix HiperSockets sniffer + - s390/qeth: unregister netdevice only when registered + - net: hns3: Fix for out-of-bounds access when setting pfc back pressure + - hwmon: (ibmpowernv) Remove bogus __init annotations + - ARM: dts: imx6sll: fix typo for fsl,imx6sll-i2c node + - ARM: dts: fsl: Fix improperly quoted stdout-path values + - Revert "drm/exynos/decon5433: implement frame counter" + - arm64: dts: renesas: r8a7795: add missing dma-names on hscif2 + - arm64: dts: renesas: condor: switch from EtherAVB to GEther + - xen/grant-table: Fix incorrect gnttab_dma_free_pages() pr_debug message + - clk: fixed-factor: fix of_node_get-put imbalance + - mtd: nand: Fix nanddev_pos_next_page() kernel-doc header + - lib/raid6: Fix arm64 test build + - drm/amd/display: Stop leaking planes + - block: Clear kernel memory before copying to user + - drm/amd/display: Drop reusing drm connector for MST + - drm/amd/amdgpu/dm: Fix dm_dp_create_fake_mst_encoder() + - s390/perf: Change CPUM_CF return code in event init function + - ceph: quota: fix null pointer dereference in quota check + - of/device: Really only set bus DMA mask when appropriate + - nvme: make sure ns head inherits underlying device limits + - i2c: omap: Enable for ARCH_K3 + - i2c: qcom-geni: Fix runtime PM mismatch with child devices + - sched/core: Take the hotplug lock in sched_init_smp() + - perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so + - perf tools: Do not zero sample_id_all for group members + - ice: Fix dead device link issue with flow control + - ice: Fix the bytecount sent to netdev_tx_sent_queue + - ice: Change req_speeds to be u16 + - i40e: restore NETIF_F_GSO_IPXIP[46] to netdev features + - qed: Fix memory/entry leak in qed_init_sp_request() + - qed: Fix blocking/unlimited SPQ entries leak + - qed: Fix SPQ entries not returned to pool in error flows + - qed: Fix potential memory corruption + - net: stmmac: Fix RX packet size > 8191 + - net: aquantia: fix potential IOMMU fault after driver unbind + - net: aquantia: fixed enable unicast on 32 macvlan + - net: aquantia: invalid checksumm offload implementation + - kbuild: deb-pkg: fix too low build version number + - Revert "scripts/setlocalversion: git: Make -dirty check more robust" + - SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() + - x86/mm: Move LDT remap out of KASLR region on 5-level paging + - x86/ldt: Unmap PTEs for the slot before freeing LDT pages + - x86/ldt: Remove unused variable in map_ldt_struct() + - media: v4l: event: Add subscription to list before calling "add" operation + - MIPS: OCTEON: cavium_octeon_defconfig: re-enable OCTEON USB driver + - RISC-V: Fix raw_copy_{to,from}_user() + - uio: Fix an Oops on load + - ALSA: hda/realtek - Add quirk entry for HP Pavilion 15 + - ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap() + - can: kvaser_usb: Fix accessing freed memory in kvaser_usb_start_xmit() + - can: kvaser_usb: Fix potential uninitialized variable use + - usb: cdc-acm: add entry for Hiro (Conexant) modem + - USB: Wait for extra delay time after USB_PORT_FEAT_RESET for quirky hub + - usb: quirks: Add delay-init quirk for Corsair K70 LUX RGB + - misc: atmel-ssc: Fix section annotation on atmel_ssc_get_driver_data + - USB: misc: appledisplay: add 20" Apple Cinema Display + - gnss: serial: fix synchronous write timeout + - gnss: sirf: fix synchronous write timeout + - mtd: rawnand: atmel: fix OF child-node lookup + - drivers/misc/sgi-gru: fix Spectre v1 vulnerability + - ACPI / platform: Add SMB0001 HID to forbidden_id_list + - HID: uhid: forbid UHID_CREATE under KERNEL_DS or elevated privileges + - HID: Add quirk for Primax PIXART OEM mice + - HID: Add quirk for Microsoft PIXART OEM mouse + - libceph: fall back to sendmsg for slab pages + - mt76x0: run vco calibration for each channel configuration + - Linux 4.19.5 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: Build signed kernels for arm64" + + -- Seth Forshee Tue, 27 Nov 2018 10:38:34 -0600 + +linux (4.19.0-6.7) disco; urgency=medium + + * linux: 4.19.0-6.7 -proposed tracker (LP: #1805195) + + * SecureBoot support for arm64 (LP: #1804481) + - Build signed kernels for arm64 + + * Add pointstick support for Cirque Touchpad (LP: #1805081) + - HID: multitouch: Add pointstick support for Cirque Touchpad + + * Power consumption during s2idle is higher than long idle (Intel SSDPEKKF) + (LP: #1804588) + - SAUCE: pci: prevent Intel NVMe SSDPEKKF from entering D3 + - SAUCE: nvme: add quirk to not call disable function when suspending + + * Disco update: 4.19.4 upstream stable release (LP: #1805159) + - flow_dissector: do not dissect l4 ports for fragments + - ibmvnic: fix accelerated VLAN handling + - ip_tunnel: don't force DF when MTU is locked + - ipv6: fix a dst leak when removing its exception + - ipv6: Fix PMTU updates for UDP/raw sockets in presence of VRF + - net: bcmgenet: protect stop from timeout + - net-gro: reset skb->pkt_type in napi_reuse_skb() + - sctp: not allow to set asoc prsctp_enable by sockopt + - tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP + coalescing + - tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths + - tipc: don't assume linear buffer when reading ancillary data + - tipc: fix lockdep warning when reinitilaizing sockets + - tuntap: fix multiqueue rx + - net: systemport: Protect stop from timeout + - net/sched: act_pedit: fix memory leak when IDR allocation fails + - net: sched: cls_flower: validate nested enc_opts_policy to avoid warning + - tipc: fix link re-establish failure + - net/mlx5e: Don't match on vlan non-existence if ethertype is wildcarded + - net/mlx5e: Claim TC hw offloads support only under a proper build config + - net/mlx5e: Adjust to max number of channles when re-attaching + - net/mlx5e: RX, verify received packet size in Linear Striding RQ + - Revert "sctp: remove sctp_transport_pmtu_check" + - net/mlx5e: Always use the match level enum when parsing TC rule match + - net/mlx5e: Fix selftest for small MTUs + - net/mlx5e: Removed unnecessary warnings in FEC caps query + - inet: frags: better deal with smp races + - l2tp: fix a sock refcnt leak in l2tp_tunnel_register + - net/mlx5: IPSec, Fix the SA context hash key + - net/mlx5e: IPoIB, Reset QP after channels are closed + - net: dsa: mv88e6xxx: Fix clearing of stats counters + - net: phy: realtek: fix RTL8201F sysfs name + - sctp: define SCTP_SS_DEFAULT for Stream schedulers + - net: qualcomm: rmnet: Fix incorrect assignment of real_dev + - net: dsa: microchip: initialize mutex before use + - sctp: fix strchange_flags name for Stream Change Event + - net: phy: mdio-gpio: Fix working over slow can_sleep GPIOs + - sctp: not increase stream's incnt before sending addstrm_in request + - mlxsw: spectrum: Fix IP2ME CPU policer configuration + - net: smsc95xx: Fix MTU range + - rxrpc: Fix lockup due to no error backoff after ack transmit error + - usbnet: smsc95xx: disable carrier check while suspending + - Revert "x86/speculation: Enable cross-hyperthread spectre v2 STIBP + mitigation" + - Linux 4.19.4 + + * Disco update: 4.19.3 upstream stable release (LP: #1805158) + - powerpc/traps: restore recoverability of machine_check interrupts + - powerpc/64/module: REL32 relocation range check + - powerpc/mm: Fix page table dump to work on Radix + - powerpc/mm: fix always true/false warning in slice.c + - drm/amd/display: fix bug of accessing invalid memory + - Input: wm97xx-ts - fix exit path + - powerpc/Makefile: Fix PPC_BOOK3S_64 ASFLAGS + - powerpc/eeh: Fix possible null deref in eeh_dump_dev_log() + - tty: check name length in tty_find_polling_driver() + - tracing/kprobes: Check the probe on unloaded module correctly + - drm/nouveau/secboot/acr: fix memory leak + - drm/amdgpu/powerplay: fix missing break in switch statements + - ARM: imx_v6_v7_defconfig: Select CONFIG_TMPFS_POSIX_ACL + - powerpc/nohash: fix undefined behaviour when testing page size support + - drm/msm/gpu: fix parameters in function msm_gpu_crashstate_capture + - drm/msm/disp/dpu: Use proper define for drm_encoder_init() 'encoder_type' + - drm/msm: dpu: Allow planes to extend past active display + - powerpc/mm: Don't report hugepage tables as memory leaks when using kmemleak + - drm/omap: fix memory barrier bug in DMM driver + - drm/amd/display: Raise dispclk value for dce120 by 15% + - drm/amd/display: fix gamma not being applied + - drm/hisilicon: hibmc: Do not carry error code in HiBMC framebuffer pointer + - media: pci: cx23885: handle adding to list failure + - media: coda: don't overwrite h.264 profile_idc on decoder instance + - MIPS: kexec: Mark CPU offline before disabling local IRQ + - powerpc/boot: Ensure _zimage_start is a weak symbol + - powerpc/memtrace: Remove memory in chunks + - MIPS/PCI: Call pcie_bus_configure_settings() to set MPS/MRRS + - staging: erofs: fix a missing endian conversion + - serial: 8250_of: Fix for lack of interrupt support + - sc16is7xx: Fix for multi-channel stall + - media: tvp5150: fix width alignment during set_selection() + - powerpc/selftests: Wait all threads to join + - staging:iio:ad7606: fix voltage scales + - drm: rcar-du: Update Gen3 output limitations + - drm/amdgpu: Fix SDMA TO after GPU reset v3 + - staging: most: video: fix registration of an empty comp core_component + - 9p locks: fix glock.client_id leak in do_lock + - udf: Prevent write-unsupported filesystem to be remounted read-write + - ARM: dts: imx6ull: keep IMX6UL_ prefix for signals on both i.MX6UL and + i.MX6ULL + - media: ov5640: fix mode change regression + - 9p: clear dangling pointers in p9stat_free + - drm/amdgpu: fix integer overflow test in amdgpu_bo_list_create() + - media: ov5640: fix restore of last mode set + - cdrom: fix improper type cast, which can leat to information leak. + - ovl: fix error handling in ovl_verify_set_fh() + - ovl: fix recursive oi->lock in ovl_link() + - ovl: check whiteout in ovl_create_over_whiteout() + - ovl: automatically enable redirect_dir on metacopy=on + - serial: sh-sci: Fix could not remove dev_attr_rx_fifo_timeout + - scsi: qla2xxx: Fix incorrect port speed being set for FC adapters + - scsi: qla2xxx: Fix process response queue for ISP26XX and above + - scsi: qla2xxx: Remove stale debug trace message from tcm_qla2xxx + - scsi: qla2xxx: Fix early srb free on abort + - scsi: qla2xxx: shutdown chip if reset fail + - scsi: qla2xxx: Reject bsg request if chip is down. + - scsi: qla2xxx: Fix re-using LoopID when handle is in use + - scsi: qla2xxx: Fix for double free of SRB structure + - scsi: qla2xxx: Fix NVMe session hang on unload + - scsi: qla2xxx: Fix NVMe Target discovery + - scsi: qla2xxx: Fix duplicate switch database entries + - scsi: qla2xxx: Fix driver hang when FC-NVMe LUNs are configured + - vfs: fix FIGETBSZ ioctl on an overlayfs file + - fuse: Fix use-after-free in fuse_dev_do_read() + - fuse: Fix use-after-free in fuse_dev_do_write() + - fuse: fix blocked_waitq wakeup + - fuse: set FR_SENT while locked + - drm/msm: fix OF child-node lookup + - arm64: dts: stratix10: Support Ethernet Jumbo frame + - arm64: dts: stratix10: fix multicast filtering + - clk: meson-gxbb: set fclk_div3 as CLK_IS_CRITICAL + - clk: meson: axg: mark fdiv2 and fdiv3 as critical + - zram: close udev startup race condition as default groups + - MIPS: Loongson-3: Fix CPU UART irq delivery problem + - MIPS: Loongson-3: Fix BRIDGE irq delivery problem + - xtensa: add NOTES section to the linker script + - xtensa: make sure bFLT stack is 16 byte aligned + - xtensa: fix boot parameters address translation + - um: Drop own definition of PTRACE_SYSEMU/_SINGLESTEP + - clk: s2mps11: Fix matching when built as module and DT node contains + compatible + - clk: at91: Fix division by zero in PLL recalc_rate() + - clk: sunxi-ng: h6: fix bus clocks' divider position + - clk: rockchip: fix wrong mmc sample phase shift for rk3328 + - clk: rockchip: Fix static checker warning in rockchip_ddrclk_get_parent call + - libceph: bump CEPH_MSG_MAX_DATA_LEN + - Revert "ceph: fix dentry leak in splice_dentry()" + - thermal: core: Fix use-after-free in thermal_cooling_device_destroy_sysfs + - mach64: fix display corruption on big endian machines + - mach64: fix image corruption due to reading accelerator registers + - acpi/nfit, x86/mce: Handle only uncorrectable machine checks + - acpi/nfit, x86/mce: Validate a MCE's address before using it + - acpi, nfit: Fix ARS overflow continuation + - reset: hisilicon: fix potential NULL pointer dereference + - crypto: hisilicon - Fix NULL dereference for same dst and src + - crypto: hisilicon - Fix reference after free of memories on error path + - vhost/scsi: truncate T10 PI iov_iter to prot_bytes + - scsi: qla2xxx: Initialize port speed to avoid setting lower speed + - SCSI: fix queue cleanup race before queue initialization is done + - Revert "powerpc/8xx: Use L1 entry APG to handle _PAGE_ACCESSED for + CONFIG_SWAP" + - soc: ti: QMSS: Fix usage of irq_set_affinity_hint + - ocfs2: fix a misuse a of brelse after failing ocfs2_check_dir_entry + - ocfs2: free up write context when direct IO failed + - mm: thp: relax __GFP_THISNODE for MADV_HUGEPAGE mappings + - memory_hotplug: cond_resched in __remove_pages + - netfilter: conntrack: fix calculation of next bucket number in early_drop + - ARM: 8809/1: proc-v7: fix Thumb annotation of cpu_v7_hvc_switch_mm + - bonding/802.3ad: fix link_failure_count tracking + - mtd: spi-nor: cadence-quadspi: Return error code in + cqspi_direct_read_execute() + - mtd: nand: Fix nanddev_neraseblocks() + - mtd: docg3: don't set conflicting BCH_CONST_PARAMS option + - hwmon: (core) Fix double-free in __hwmon_device_register() + - perf cs-etm: Correct CPU mode for samples + - perf stat: Handle different PMU names with common prefix + - perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc} + - perf intel-pt/bts: Calculate cpumode for synthesized samples + - perf intel-pt: Insert callchain context into synthesized callchains + - of, numa: Validate some distance map rules + - x86/cpu/vmware: Do not trace vmware_sched_clock() + - x86/hyper-v: Enable PIT shutdown quirk + - termios, tty/tty_baudrate.c: fix buffer overrun + - arch/alpha, termios: implement BOTHER, IBSHIFT and termios2 + - watchdog/core: Add missing prototypes for weak functions + - btrfs: fix pinned underflow after transaction aborted + - Btrfs: fix missing data checksums after a ranged fsync (msync) + - Btrfs: fix cur_offset in the error case for nocow + - Btrfs: fix infinite loop on inode eviction after deduplication of eof block + - Btrfs: fix data corruption due to cloning of eof block + - btrfs: tree-checker: Fix misleading group system information + - clockevents/drivers/i8253: Add support for PIT shutdown quirk + - ext4: add missing brelse() update_backups()'s error path + - ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path + - ext4: add missing brelse() add_new_gdb_meta_bg()'s error path + - ext4: avoid potential extra brelse in setup_new_flex_group_blocks() + - ext4: missing !bh check in ext4_xattr_inode_write() + - ext4: fix possible inode leak in the retry loop of ext4_resize_fs() + - ext4: avoid buffer leak on shutdown in ext4_mark_iloc_dirty() + - ext4: avoid buffer leak in ext4_orphan_add() after prior errors + - ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing + - ext4: avoid possible double brelse() in add_new_gdb() on error path + - ext4: fix possible leak of sbi->s_group_desc_leak in error path + - ext4: fix possible leak of s_journal_flag_rwsem in error path + - ext4: fix buffer leak in ext4_xattr_get_block() on error path + - ext4: release bs.bh before re-using in ext4_xattr_block_find() + - ext4: fix buffer leak in ext4_xattr_move_to_block() on error path + - ext4: fix buffer leak in ext4_expand_extra_isize_ea() on error path + - ext4: fix buffer leak in __ext4_read_dirblock() on error path + - mount: Prevent MNT_DETACH from disconnecting locked mounts + - mnt: fix __detach_mounts infinite loop + - uapi: fix linux/kfd_ioctl.h userspace compilation errors + - ARM: cpuidle: Don't register the driver when back-end init returns -ENXIO + - kdb: use correct pointer when 'btc' calls 'btt' + - kdb: print real address of pointers instead of hashed addresses + - sunrpc: correct the computation for page_ptr when truncating + - NFSv4: Don't exit the state manager without clearing + NFS4CLNT_MANAGER_RUNNING + - nfsd: COPY and CLONE operations require the saved filehandle to be set + - rtc: hctosys: Add missing range error reporting + - fuse: fix use-after-free in fuse_direct_IO() + - fuse: fix leaked notify reply + - fuse: fix possibly missed wake-up after abort + - selinux: check length properly in SCTP bind hook + - gfs2: Put bitmap buffers in put_super + - gfs2: Fix metadata read-ahead during truncate (2) + - libata: blacklist SAMSUNG MZ7TD256HAFV-000L9 SSD + - crypto: user - fix leaking uninitialized memory to userspace + - lib/ubsan.c: don't mark __ubsan_handle_builtin_unreachable as noreturn + - hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! + - mm/swapfile.c: use kvzalloc for swap_info_struct allocation + - efi/arm/libstub: Pack FDT after populating it + - mm: don't reclaim inodes with many attached pages + - scripts/spdxcheck.py: make python3 compliant + - drm/rockchip: Allow driver to be shutdown on reboot/kexec + - drm/amdgpu: Fix typo in amdgpu_vmid_mgr_init + - drm/amdgpu: add missing CHIP_HAINAN in amdgpu_ucode_get_load_type + - drm/amdgpu: Suppress keypresses from ACPI_VIDEO events + - drm/nouveau: Check backlight IDs are >= 0, not > 0 + - drm/nouveau: Fix nv50_mstc->best_encoder() + - drm/amd/powerplay: Enable/Disable NBPSTATE on On/OFF of UVD + - drm/etnaviv: fix bogus fence complete check in timeout handler + - drm/dp_mst: Check if primary mstb is null + - drm: panel-orientation-quirks: Add quirk for Acer One 10 (S1003) + - drm/i915/dp: Link train Fallback on eDP only if fallback link BW can fit + panel's native mode + - drm/i915: Use the correct crtc when sanitizing plane mapping + - drm/i915: Restore vblank interrupts earlier + - drm/i915: Don't unset intel_connector->mst_port + - drm/i915: Skip vcpi allocation for MSTB ports that are gone + - drm/i915: Large page offsets for pread/pwrite + - drm/i915/dp: Fix link retraining comment in intel_dp_long_pulse() + - drm/i915/dp: Restrict link retrain workaround to external monitors + - drm/i915/icl: Fix the macros for DFLEXDPMLE register bits + - drm/i915/hdmi: Add HDMI 2.0 audio clock recovery N values + - drm/i915: Mark up GTT sizes as u64 + - drm/i915: Fix error handling for the NV12 fb dimensions check + - drm/i915: Fix ilk+ watermarks when disabling pipes + - drm/i915: Compare user's 64b GTT offset even on 32b + - drm/i915: Don't oops during modeset shutdown after lpe audio deinit + - drm/i915: Mark pin flags as u64 + - drm/i915/ringbuffer: Delay after EMIT_INVALIDATE for gen4/gen5 + - drm/i915/execlists: Force write serialisation into context image vs + execution + - drm/i915: Fix possible race in intel_dp_add_mst_connector() + - drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST + - drm/i915: Fix hpd handling for pins with two encoders + - CONFIG_XEN_PV breaks xen_create_contiguous_region on ARM + - Revert "ACPICA: AML interpreter: add region addresses in global list during + initialization" + - Linux 4.19.3 + + * glibc 2.28-0ubuntu1 ADT test failure with linux 4.19.0-5.6 (LP: #1805154) + - SAUCE: Revert "x86: vdso: Use $LD instead of $CC to link" + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.12-1ubuntu1, zfs to 0.7.12-1ubuntu1 + + -- Seth Forshee Mon, 26 Nov 2018 11:44:00 -0600 + +linux (4.19.0-5.6) disco; urgency=medium + + * crash in ENA driver on removing an interface (LP: #1802341) + - SAUCE: net: ena: fix crash during ena_remove() + + * Ubuntu 18.04.1 - [s390x] Kernel panic while stressing network bonding + (LP: #1797367) + - s390/qeth: sanitize strings in debug messages + + * Disco update: 4.19.2 upstream stable release (LP: #1803410) + - bpf: fix partial copy of map_ptr when dst is scalar + - MIPS: VDSO: Reduce VDSO_RANDOMIZE_SIZE to 64MB for 64bit + - gpio: mxs: Get rid of external API call + - mtd: rawnand: marvell: fix the IRQ handler complete() condition + - mtd: maps: gpio-addr-flash: Fix ioremapped size + - mtd: spi-nor: fsl-quadspi: fix read error for flash size larger than 16MB + - mtd: spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash + - mtd: spi-nor: fsl-quadspi: Don't let -EINVAL on the bus + - spi: spi-mem: Adjust op len based on message/transfer size limitations + - spi: bcm-qspi: switch back to reading flash using smaller chunks + - spi: bcm-qspi: fix calculation of address length + - bcache: trace missed reading by cache_missed + - bcache: fix ioctl in flash device + - bcache: correct dirty data statistics + - bcache: fix miss key refill->end in writeback + - hwmon: (pmbus) Fix page count auto-detection. + - jffs2: free jffs2_sb_info through jffs2_kill_sb() + - block: setup bounce bio_sets properly + - block: make sure discard bio is aligned with logical block size + - block: make sure writesame bio is aligned with logical block size + - cpufreq: conservative: Take limits changes into account properly + - dma-mapping: fix panic caused by passing empty cma command line argument + - pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges + - ACPI / OSL: Use 'jiffies' as the time bassis for acpi_os_get_timer() + - ACPICA: AML interpreter: add region addresses in global list during + initialization + - ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended + opcodes + - acpi, nfit: Fix Address Range Scrub completion tracking + - kprobes/x86: Use preempt_enable() in optimized_callback() + - mailbox: PCC: handle parse error + - parisc: Fix address in HPMC IVA + - parisc: Fix map_pages() to not overwrite existing pte entries + - parisc: Fix exported address of os_hpmc handler + - ALSA: hda - Add quirk for ASUS G751 laptop + - ALSA: hda - Fix headphone pin config for ASUS G751 + - ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) + - ALSA: hda: Add 2 more models to the power_save blacklist + - ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops + - ALSA: hda - Fix incorrect clearance of thinkpad_acpi hooks + - x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation + - x86/xen: Fix boot loader version reported for PVH guests + - x86/corruption-check: Fix panic in memory_corruption_check() when boot + option without value is provided + - x86/kvm/nVMX: allow bare VMXON state migration + - x86/mm/pat: Disable preemption around __flush_tlb_all() + - x86/numa_emulation: Fix uniform-split numa emulation + - ARM: dts: exynos: Disable pull control for MAX8997 interrupts on Origen + - net: socionext: Reset tx queue in ndo_stop + - net: loopback: clear skb->tstamp before netif_rx() + - locking/lockdep: Fix debug_locks off performance problem + - netfilter: xt_nat: fix DNAT target for shifted portmap ranges + - ataflop: fix error handling during setup + - swim: fix cleanup on setup error + - arm64: cpufeature: ctr: Fix cpu capability check for late CPUs + - hv_netvsc: fix vf serial matching with pci slot info + - nfp: devlink port split support for 1x100G CXP NIC + - tun: Consistently configure generic netdev params via rtnetlink + - s390/sthyi: Fix machine name validity indication + - hwmon: (pwm-fan) Set fan speed to 0 on suspend + - lightnvm: pblk: fix race on sysfs line state + - lightnvm: pblk: fix two sleep-in-atomic-context bugs + - lightnvm: pblk: fix race condition on metadata I/O + - spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare} + - perf tools: Free temporary 'sys' string in read_event_files() + - perf tools: Cleanup trace-event-info 'tdata' leak + - perf tools: Free 'printk' string in parse_ftrace_printk() + - perf strbuf: Match va_{add,copy} with va_end + - cpupower: Fix coredump on VMWare + - bcache: Populate writeback_rate_minimum attribute + - mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 + - sdhci: acpi: add free_slot callback + - mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset + - iwlwifi: pcie: avoid empty free RB queue + - iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface + - iwlwifi: mvm: check for n_profiles validity in EWRD ACPI + - x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC + - wlcore: Fix BUG with clear completion on timeout + - ACPI/PPTT: Handle architecturally unknown cache types + - ACPI / PM: LPIT: Register sysfs attributes based on FADT + - ACPI / processor: Fix the return value of acpi_processor_ids_walk() + - cpufreq: dt: Try freeing static OPPs only if we have added them + - x86/intel_rdt: Show missing resctrl mount options + - mtd: rawnand: atmel: Fix potential NULL pointer dereference + - nvme: call nvme_complete_rq when nvmf_check_ready fails for mpath I/O + - ath10k: fix tx status flag setting for management frames + - signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack + - ice: fix changing of ring descriptor size (ethtool -G) + - ice: update fw version check logic + - net: hns3: Fix for packet buffer setting bug + - Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth + - Bluetooth: hci_qca: Remove hdev dereference in qca_close(). + - x86: boot: Fix EFI stub alignment + - net: hns3: Add nic state check before calling netif_tx_wake_queue + - net: hns3: Fix ets validate issue + - pinctrl: sunxi: fix 'pctrl->functions' allocation in + sunxi_pinctrl_build_state + - pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux + - brcmfmac: fix for proper support of 160MHz bandwidth + - net: hns3: Check hdev state when getting link status + - net: hns3: Set STATE_DOWN bit of hdev state when stopping net + - net: phy: phylink: ensure the carrier is off when starting phylink + - block, bfq: correctly charge and reset entity service in all cases + - arm64: entry: Allow handling of undefined instructions from EL1 + - kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() + - spi: gpio: No MISO does not imply no RX + - ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers + - pinctrl: qcom: spmi-mpp: Fix drive strength setting + - bpf/verifier: fix verifier instability + - failover: Add missing check to validate 'slave_dev' in + net_failover_slave_unregister + - perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo + - pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant + - pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() to be compliant + - net: hns3: Preserve vlan 0 in hardware table + - net: hns3: Fix ping exited problem when doing lp selftest + - net: hns3: Fix for vf vlan delete failed problem + - net: dsa: mv88e6xxx: Fix writing to a PHY page. + - mt76x2u: run device cleanup routine if resume fails + - rsi: fix memory alignment issue in ARM32 platforms + - libertas_tf: prevent underflow in process_cmdrequest() + - iwlwifi: mvm: fix BAR seq ctrl reporting + - gpio: brcmstb: allow 0 width GPIO banks + - ixgbe: disallow IPsec Tx offload when in SR-IOV mode + - ixgbevf: VF2VF TCP RSS + - wil6210: fix RX buffers release and unmap + - ath10k: schedule hardware restart if WMI command times out + - libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 + - thermal: rcar_thermal: Prevent doing work after unbind + - thermal: da9062/61: Prevent hardware access during system suspend + - cifs: fix a credits leak for compund commands + - cgroup, netclassid: add a preemption point to write_classid + - net: stmmac: dwmac-sun8i: fix OF child-node lookup + - f2fs: fix to account IO correctly for cgroup writeback + - MD: Memory leak when flush bio size is zero + - md: fix memleak for mempool + - of: Add missing exports of node name compare functions + - scsi: esp_scsi: Track residual for PIO transfers + - scsi: ufs: Schedule clk gating work on correct queue + - UAPI: ndctl: Fix g++-unsupported initialisation in headers + - KVM: nVMX: Clear reserved bits of #DB exit qualification + - scsi: megaraid_sas: fix a missing-check bug + - RDMA/core: Do not expose unsupported counters + - RDMA/cm: Respect returned status of cm_init_av_by_path + - IB/ipoib: Clear IPCB before icmp_send + - RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case + - RDMA/bnxt_re: Fix recursive lock warning in debug kernel + - usb: host: ohci-at91: fix request of irq for optional gpio + - PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic + - PCI: cadence: Use AXI region 0 to signal interrupts from EP + - usb: typec: tcpm: Report back negotiated PPS voltage and current + - tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated + - f2fs: clear PageError on the read path + - Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask + - VMCI: Resource wildcard match fixed + - PCI / ACPI: Enable wake automatically for power managed bridges + - xprtrdma: Reset credit grant properly after a disconnect + - irqchip/pdc: Setup all edge interrupts as rising edge at GIC + - usb: dwc2: fix call to vbus supply exit routine, call it unlocked + - usb: dwc2: fix a race with external vbus supply + - usb: gadget: udc: atmel: handle at91sam9rl PMC + - ext4: fix argument checking in EXT4_IOC_MOVE_EXT + - MD: fix invalid stored role for a disk + - PCI: cadence: Correct probe behaviour when failing to get PHY + - nvmem: check the return value of nvmem_add_cells() + - xhci: Avoid USB autosuspend when resuming USB2 ports. + - scsi: qla2xxx: Fix recursive mailbox timeout + - f2fs: fix to recover inode's crtime during POR + - f2fs: fix to recover inode's i_flags during POR + - PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice + - coresight: etb10: Fix handling of perf mode + - PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode + - crypto: caam - fix implicit casts in endianness helpers + - usb: chipidea: Prevent unbalanced IRQ disable + - Smack: ptrace capability use fixes + - driver/dma/ioat: Call del_timer_sync() without holding prep_lock + - ASoC: AMD: Fix capture unstable in beginning for some runs + - firmware: coreboot: Unmap ioregion after device population + - IB/ipoib: Use dev_port to expose network interface port numbers + - IB/mlx5: Allow transition of DCI QP to reset + - uio: ensure class is registered before devices + - scsi: lpfc: Correct soft lockup when running mds diagnostics + - scsi: lpfc: Correct race with abort on completion path + - f2fs: avoid sleeping under spin_lock + - f2fs: report error if quota off error during umount + - signal: Always deliver the kernel's SIGKILL and SIGSTOP to a pid namespace + init + - f2fs: fix to flush all dirty inodes recovered in readonly fs + - mfd: menelaus: Fix possible race condition and leak + - dmaengine: dma-jz4780: Return error if not probed from DT + - IB/rxe: fix for duplicate request processing and ack psns + - ALSA: hda: Check the non-cached stream buffers more explicitly + - cpupower: Fix AMD Family 0x17 msr_pstate size + - Revert "f2fs: fix to clear PG_checked flag in set_page_dirty()" + - f2fs: fix missing up_read + - f2fs: fix to recover cold bit of inode block during POR + - f2fs: fix to account IO correctly + - OPP: Free OPP table properly on performance state irregularities + - ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings + - ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 + - xen-swiotlb: use actually allocated size on check physical continuous + - tpm: Restore functionality to xen vtpm driver. + - xen/blkfront: avoid NULL blkfront_info dereference on device removal + - xen/balloon: Support xend-based toolstack + - xen: fix race in xen_qlock_wait() + - xen: make xen_qlock_wait() nestable + - xen/pvh: increase early stack size + - xen/pvh: don't try to unplug emulated devices + - libertas: don't set URB_ZERO_PACKET on IN USB transfer + - usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten + - usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage + - usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" + - mt76: mt76x2: fix multi-interface beacon configuration + - iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() + - net/ipv4: defensive cipso option parsing + - dmaengine: ppc4xx: fix off-by-one build failure + - scsi: sched/wait: Add wait_event_lock_irq_timeout for TASK_UNINTERRUPTIBLE + usage + - scsi: target: Fix target_wait_for_sess_cmds breakage with active signals + - libnvdimm: Hold reference on parent while scheduling async init + - libnvdimm, region: Fail badblocks listing for inactive regions + - libnvdimm, pmem: Fix badblocks population for 'raw' namespaces + - ASoC: intel: skylake: Add missing break in skl_tplg_get_token() + - ASoC: sta32x: set ->component pointer in private struct + - IB/mlx5: Fix MR cache initialization + - IB/rxe: Revise the ib_wr_opcode enum + - jbd2: fix use after free in jbd2_log_do_checkpoint() + - gfs2_meta: ->mount() can get NULL dev_name + - ext4: fix EXT4_IOC_SWAP_BOOT + - ext4: initialize retries variable in ext4_da_write_inline_data_begin() + - ext4: fix setattr project check in fssetxattr ioctl + - ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR + - ext4: fix use-after-free race in ext4_remount()'s error path + - selinux: fix mounting of cgroup2 under older policies + - HID: wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 + - HID: hiddev: fix potential Spectre v1 + - EDAC, amd64: Add Family 17h, models 10h-2fh support + - EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting + - EDAC, skx_edac: Fix logical channel intermediate decoding + - ARM: dts: dra7: Fix up unaligned access setting for PCIe EP + - PCI/ASPM: Fix link_state teardown on device removal + - PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk + - signal/GenWQE: Fix sending of SIGKILL + - signal: Guard against negative signal numbers in copy_siginfo_from_user32 + - crypto: lrw - Fix out-of bounds access on counter overflow + - crypto: tcrypt - fix ghash-generic speed test + - crypto: aesni - don't use GFP_ATOMIC allocation if the request doesn't cross + a page in gcm + - crypto: morus/generic - fix for big endian systems + - crypto: aegis/generic - fix for big endian systems + - crypto: speck - remove Speck + - mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() + - userfaultfd: disable irqs when taking the waitqueue lock + - ima: fix showing large 'violations' or 'runtime_measurements_count' + - ima: open a new file instance if no read permissions + - hugetlbfs: dirty pages as they are added to pagecache + - mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly + - mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback + - KVM: arm/arm64: Ensure only THP is candidate for adjustment + - KVM: arm64: Fix caching of host MDCR_EL2 value + - kbuild: fix kernel/bounds.c 'W=1' warning + - iio: ad5064: Fix regulator handling + - iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() + - iio: adc: at91: fix acking DRDY irq on simple conversions + - iio: adc: at91: fix wrong channel number in triggered buffer mode + - w1: omap-hdq: fix missing bus unregister at removal + - smb3: allow stats which track session and share reconnects to be reset + - smb3: do not attempt cifs operation in smb3 query info error path + - smb3: on kerberos mount if server doesn't specify auth type use krb5 + - printk: Fix panic caused by passing log_buf_len to command line + - genirq: Fix race on spurious interrupt detection + - tpm: fix response size validation in tpm_get_random() + - NFC: nfcmrvl_uart: fix OF child-node lookup + - NFSv4.1: Fix the r/wsize checking + - nfs: Fix a missed page unlock after pg_doio() + - nfsd: correctly decrement odstate refcount in error path + - nfsd: Fix an Oops in free_session() + - lockd: fix access beyond unterminated strings in prints + - dm ioctl: harden copy_params()'s copy_from_user() from malicious users + - dm zoned: fix metadata block ref counting + - dm zoned: fix various dmz_get_mblock() issues + - media: ov7670: make "xclk" clock optional + - fsnotify: Fix busy inodes during unmount + - powerpc64/module elfv1: Set opd addresses after module relocation + - powerpc/msi: Fix compile error on mpc83xx + - powerpc/tm: Fix HFSCR bit for no suspend case + - powerpc/64s/hash: Do not use PPC_INVALIDATE_ERAT on CPUs before POWER9 + - MIPS: OCTEON: fix out of bounds array access on CN68XX + - rtc: ds1307: fix ds1339 wakealarm support + - rtc: cmos: Fix non-ACPI undefined reference to `hpet_rtc_interrupt' + - rtc: cmos: Remove the `use_acpi_alarm' module parameter for !ACPI + - power: supply: twl4030-charger: fix OF sibling-node lookup + - ocxl: Fix access to the AFU Descriptor Data + - iommu/arm-smmu: Ensure that page-table updates are visible before TLBI + - TC: Set DMA masks for devices + - net: bcmgenet: fix OF child-node lookup + - media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD + - Revert "media: dvbsky: use just one mutex for serializing device R/W ops" + - kgdboc: Passing ekgdboc to command line causes panic + - remoteproc: qcom: q6v5: Propagate EPROBE_DEFER + - media: cec: make cec_get_edid_spa_location() an inline function + - media: cec: integrate cec_validate_phys_addr() in cec-api.c + - xen: fix xen_qlock_wait() + - xen: remove size limit of privcmd-buf mapping interface + - xen-blkfront: fix kernel panic with negotiate_mq error path + - media: cec: add new tx/rx status bits to detect aborts/timeouts + - media: cec: fix the Signal Free Time calculation + - media: cec: forgot to cancel delayed work + - media: em28xx: use a default format if TRY_FMT fails + - media: tvp5150: avoid going past array on v4l2_querymenu() + - media: em28xx: fix input name for Terratec AV 350 + - media: em28xx: make v4l2-compliance happier by starting sequence on zero + - media: em28xx: fix handler for vidioc_s_input() + - media: adv7604: when the EDID is cleared, unconfigure CEC as well + - media: adv7842: when the EDID is cleared, unconfigure CEC as well + - drm/mediatek: fix OF sibling-node lookup + - media: media colorspaces*.rst: rename AdobeRGB to opRGB + - media: replace ADOBERGB by OPRGB + - media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC + - arm64: lse: remove -fcall-used-x0 flag + - rpmsg: smd: fix memory leak on channel create + - Cramfs: fix abad comparison when wrap-arounds occur + - ARM: dts: socfpga: Fix SDRAM node address for Arria10 + - arm64: dts: stratix10: Correct System Manager register size + - soc: qcom: rmtfs-mem: Validate that scm is available + - soc/tegra: pmc: Fix child-node lookup + - selftests/ftrace: Fix synthetic event test to delete event correctly + - selftests/powerpc: Fix ptrace tm failure + - tracing: Return -ENOENT if there is no target synthetic event + - btrfs: qgroup: Avoid calling qgroup functions if qgroup is not enabled + - btrfs: Handle owner mismatch gracefully when walking up tree + - btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock + - btrfs: fix error handling in free_log_tree + - btrfs: fix error handling in btrfs_dev_replace_start + - btrfs: Enhance btrfs_trim_fs function to handle error better + - btrfs: Ensure btrfs_trim_fs can trim the whole filesystem + - btrfs: iterate all devices during trim, instead of fs_devices::alloc_list + - btrfs: don't attempt to trim devices that don't support it + - btrfs: keep trim from interfering with transaction commits + - btrfs: wait on caching when putting the bg cache + - Btrfs: don't clean dirty pages during buffered writes + - btrfs: release metadata before running delayed refs + - btrfs: protect space cache inode alloc with GFP_NOFS + - btrfs: reset max_extent_size on clear in a bitmap + - btrfs: make sure we create all new block groups + - Btrfs: fix warning when replaying log after fsync of a tmpfile + - Btrfs: fix wrong dentries after fsync of file that got its parent replaced + - btrfs: qgroup: Dirty all qgroups before rescan + - Btrfs: fix null pointer dereference on compressed write path error + - Btrfs: fix assertion on fsync of regular file when using no-holes feature + - Btrfs: fix deadlock when writing out free space caches + - btrfs: reset max_extent_size properly + - btrfs: set max_extent_size properly + - btrfs: don't use ctl->free_space for max_extent_size + - btrfs: only free reserved extent if we didn't insert it + - btrfs: fix insert_reserved error handling + - btrfs: don't run delayed_iputs in commit + - btrfs: move the dio_sem higher up the callchain + - Btrfs: fix use-after-free during inode eviction + - Btrfs: fix use-after-free when dumping free space + - net: sched: Remove TCA_OPTIONS from policy + - vt: fix broken display when running aptitude + - bpf: wait for running BPF programs when updating map-in-map + - vga_switcheroo: Fix missing gpu_bound call at audio client registration + - MD: fix invalid stored role for a disk - try2 + - Linux 4.19.2 + + * [FEAT] Guest-dedicated Crypto Adapters (LP: #1787405) + - KVM: s390: vsie: simulate VCPU SIE entry/exit + - KVM: s390: introduce and use KVM_REQ_VSIE_RESTART + - KVM: s390: refactor crypto initialization + - s390: vfio-ap: base implementation of VFIO AP device driver + - s390: vfio-ap: register matrix device with VFIO mdev framework + - s390: vfio-ap: sysfs interfaces to configure adapters + - s390: vfio-ap: sysfs interfaces to configure domains + - s390: vfio-ap: sysfs interfaces to configure control domains + - s390: vfio-ap: sysfs interface to view matrix mdev matrix + - KVM: s390: interface to clear CRYCB masks + - s390: vfio-ap: implement mediated device open callback + - s390: vfio-ap: implement VFIO_DEVICE_GET_INFO ioctl + - s390: vfio-ap: zeroize the AP queues + - s390: vfio-ap: implement VFIO_DEVICE_RESET ioctl + - KVM: s390: Clear Crypto Control Block when using vSIE + - KVM: s390: vsie: Do the CRYCB validation first + - KVM: s390: vsie: Make use of CRYCB FORMAT2 clear + - KVM: s390: vsie: Allow CRYCB FORMAT-2 + - KVM: s390: vsie: allow CRYCB FORMAT-1 + - KVM: s390: vsie: allow CRYCB FORMAT-0 + - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-1 + - KVM: s390: vsie: allow guest FORMAT-1 CRYCB on host FORMAT-2 + - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-2 + - KVM: s390: device attrs to enable/disable AP interpretation + - KVM: s390: CPU model support for AP virtualization + - s390: doc: detailed specifications for AP virtualization + - KVM: s390: fix locking for crypto setting error path + - KVM: s390: Tracing APCB changes + - s390: vfio-ap: setup APCB mask using KVM dedicated function + - [Config:] Enable CONFIG_S390_AP_IOMMU and set CONFIG_VFIO_AP to module. + + * Bypass of mount visibility through userns + mount propagation (LP: #1789161) + - mount: Retest MNT_LOCKED in do_umount + - mount: Don't allow copying MNT_UNBINDABLE|MNT_LOCKED mounts + + * CVE-2018-18955: nested user namespaces with more than five extents + incorrectly grant privileges over inode (LP: #1801924) // CVE-2018-18955 + - userns: also map extents in the reverse map to kernel IDs + + * kdump fail due to an IRQ storm (LP: #1797990) + - SAUCE: x86/PCI: Export find_cap() to be used in early PCI code + - SAUCE: x86/quirks: Add parameter to clear MSIs early on boot + - SAUCE: x86/quirks: Scan all busses for early PCI quirks + + * Disable LPM for Raydium Touchscreens (LP: #1802248) + - USB: quirks: Add no-lpm quirk for Raydium touchscreens + + * Power consumption during s2idle is higher than long idle(sk hynix) + (LP: #1801875) + - SAUCE: pci: prevent sk hynix nvme from entering D3 + - SAUCE: nvme: add quirk to not call disable function when suspending + + * Disco update: v4.19.1 upstream stable release (LP: #1801739) + - bridge: do not add port to router list when receives query with source + 0.0.0.0 + - ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are + called + - net/mlx5e: fix csum adjustments caused by RXFCS + - net: sched: gred: pass the right attribute to gred_change_table_def() + - net: stmmac: Fix stmmac_mdio_reset() when building stmmac as modules + - net: udp: fix handling of CHECKSUM_COMPLETE packets + - Revert "net: simplify sock_poll_wait" + - rtnetlink: Disallow FDB configuration for non-Ethernet device + - vhost: Fix Spectre V1 vulnerability + - bonding: fix length of actor system + - openvswitch: Fix push/pop ethernet validation + - net/ipv6: Allow onlink routes to have a device mismatch if it is the default + route + - net/smc: fix smc_buf_unuse to use the lgr pointer + - mlxsw: spectrum_switchdev: Don't ignore deletions of learned MACs + - mlxsw: core: Fix devlink unregister flow + - net: drop skb on failure in ip_check_defrag() + - net: Properly unlink GRO packets on overflow. + - r8169: fix broken Wake-on-LAN from S5 (poweroff) + - Revert "be2net: remove desc field from be_eq_obj" + - sctp: check policy more carefully when getting pr status + - sparc64: Export __node_distance. + - sparc64: Make corrupted user stacks more debuggable. + - sparc64: Wire up compat getpeername and getsockname. + - net: bridge: remove ipv6 zero address check in mcast queries + - Linux 4.19.1 + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.11-1ubuntu1, zfs to 0.7.11-3ubuntu1 + - [Config] updateconfigs after 4.19.2 stable update + - [Config] Disable unneded options for s390 + - [Config] Update annotations for 4.19 + + -- Seth Forshee Thu, 15 Nov 2018 09:55:37 -0800 + +linux (4.19.0-4.5) disco; urgency=medium + + * Add checksum offload and TSO support for HiNIC adapters (LP: #1800664) + - net-next/hinic: add checksum offload and TSO support + + * [Bionic][Cosmic] Fix to ipmi to support vendor specific messages greater + than 255 bytes (LP: #1799794) + - ipmi:ssif: Add support for multi-part transmit messages > 2 parts + + * Packaging resync (LP: #1786013) + - [Package] add support for specifying the primary makefile + + * Update ENA driver to version 2.0.1K (LP: #1798182) + - net: ena: minor performance improvement + - net: ena: complete host info to match latest ENA spec + - net: ena: introduce Low Latency Queues data structures according to ENA spec + - net: ena: add functions for handling Low Latency Queues in ena_com + - net: ena: add functions for handling Low Latency Queues in ena_netdev + - net: ena: use CSUM_CHECKED device indication to report skb's checksum status + - net: ena: explicit casting and initialization, and clearer error handling + - net: ena: limit refill Rx threshold to 256 to avoid latency issues + - net: ena: change rx copybreak default to reduce kernel memory pressure + - net: ena: remove redundant parameter in ena_com_admin_init() + - net: ena: update driver version to 2.0.1 + - net: ena: fix indentations in ena_defs for better readability + - net: ena: Fix Kconfig dependency on X86 + - net: ena: enable Low Latency Queues + - net: ena: fix compilation error in xtensa architecture + + * [Bionic][Cosmic] ipmi: Fix timer race with module unload (LP: #1799281) + - ipmi: Fix timer race with module unload + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * not able to unwind the stack from within __kernel_clock_gettime in the Linux + vDSO (LP: #1797963) + - powerpc/vdso: Correct call frame information + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Don't print secure boot state + from the efi stub" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() use + efi_status_to_str() to print error messages." + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() not complain + about cert lists that aren't present." + - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable + to be suppressed" + - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI + Secure Boot" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add EFI signature data types" + - Revert "UBUNTU: SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time + addition of keys to secondary keyring" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in + secure boot mode" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to + indicate secure boot mode" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Copy secure_boot flag in boot params + across kexec reboot" + - Revert "UBUNTU: SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down perf" + - Revert "UBUNTU: SAUCE: (efi-lockdown) bpf: Restrict kernel image access + functions when the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down kprobes" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down /proc/kcore" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the + testmmiotrace module" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down module params that specify + hardware parameters (eg. ioport)" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down TIOCSSERIAL" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable APEI error injection if + the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable ACPI table override if + the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param + when the kernel has been locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) ACPI: Limit access to custom_method + when the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86: Lock down IO port access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) PCI: Lock down BAR access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is + locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) hibernate: Disable when the kernel is + locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Enforce module signatures if the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add a SysRq option to lift kernel + lockdown" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add the ability to lock down access to + the running kernel image" + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi/x86: Call efi_parse_options() from efi_main() + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules + - [Packaging] generate Vcs-Git url from changelog + - [Config] CONFIG_SCSI_MQ_DEFAULT=y + + -- Seth Forshee Fri, 02 Nov 2018 14:22:55 -0500 + +linux (4.19.0-3.4) cosmic; urgency=medium + + * Support Edge Gateway's Bluetooth LED (LP: #1798332) + - SAUCE: Bluetooth: Support for LED on Edge Gateways + + * Support Edge Gateway's WIFI LED (LP: #1798330) + - SAUCE: mwifiex: Switch WiFi LED state according to the device status + + [ Upstream Kernel Changes ] + + * Rebase to v4.19 + + -- Seth Forshee Mon, 22 Oct 2018 09:13:39 -0500 + +linux (4.19.0-2.3) cosmic; urgency=medium + + * fscache: bad refcounting in fscache_op_complete leads to OOPS (LP: #1797314) + - SAUCE: fscache: Fix race in decrementing refcount of op->npages + + * Provide mode where all vCPUs on a core must be the same VM (LP: #1792957) + - KVM: PPC: Book3S HV: Provide mode where all vCPUs on a core must be the same + VM + + * The front MIC can't work on the Lenovo M715 (LP: #1797292) + - ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 + + * arm64: snapdragon: WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic.c:1016 + gic_irq_domain_translate (LP: #1797143) + - SAUCE: arm64: dts: msm8916: camms: fix gic_irq_domain_translate warnings + + * Dell new AIO requires a new uart backlight driver (LP: #1727235) + - SAUCE: platform/x86: dell-uart-backlight: new backlight driver for DELL AIO + - updateconfigs for Dell UART backlight driver + + * Please make CONFIG_PWM_LPSS_PCI and CONFIG_PWM_LPSS_PLATFORM built in to + make brightness adjustment working on various BayTrail/CherryTrail-based + devices (LP: #1783964) + - [Config]: Make PWM_LPSS_* built-in + + * check and fix zkey required kernel modules locations in debs, udebs, and + initramfs (LP: #1794346) + - [Config] add s390 crypto modules to crypt-modules udeb + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_VBOXGUEST=n + - ubuntu: vbox -- update to 5.2.18-dfsg-2 + - ubuntu: enable vbox build + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc8 + + -- Seth Forshee Mon, 15 Oct 2018 10:52:04 -0500 + +linux (4.19.0-1.2) cosmic; urgency=medium + + * Page leaking in cachefiles_read_backing_file while vmscan is active + (LP: #1793430) + - SAUCE: cachefiles: Page leaking in cachefiles_read_backing_file while vmscan + is active + + * SRU: Enable middle button of touchpad on ThinkPad P72 (LP: #1793463) + - Input: elantech - enable middle button of touchpad on ThinkPad P72 + + * Improvements to the kernel source package preparation (LP: #1793461) + - [Packaging] startnewrelease: add support for backport kernels + + * Fix unusable NVIDIA GPU after S3 (LP: #1793338) + - SAUCE: PCI: Reprogram bridge prefetch registers on resume + + * Error reported when creating ZFS pool with "-t" option, despite successful + pool creation (LP: #1769937) + - SAUCE: (noup) Update zfs to 0.7.9-3ubuntu6 + + * device hotplug of vfio devices can lead to deadlock in vfio_pci_release + (LP: #1792099) + - SAUCE: vfio -- release device lock before userspace requests + + * Miscellaneous Ubuntu changes + - [Packaging] retpoline -- fix temporary filenaming + - CONFIG_BCH_CONST_PARAMS=n + - Packaging: final-checks: remove trailing backport suffix + - SAUCE: import aufs driver + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc5 + + -- Seth Forshee Tue, 25 Sep 2018 16:32:24 -0500 + +linux (4.19.0-0.1) cosmic; urgency=medium + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - Disable zfs build + - SAUCE: Import aufs driver + - Update dropped.txt + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc3 + + -- Seth Forshee Thu, 13 Sep 2018 07:54:47 -0500 + +linux (4.19.0-0.0) cosmic; urgency=medium + + * Dummy entry. + + -- Seth Forshee Thu, 13 Sep 2018 06:44:09 -0500 + +linux (4.18.0-8.9) cosmic; urgency=medium + + * linux: 4.18.0-8.9 -proposed tracker (LP: #1791663) + + * Cosmic update to v4.18.7 stable release (LP: #1791660) + - rcu: Make expedited GPs handle CPU 0 being offline + - net: 6lowpan: fix reserved space for single frames + - net: mac802154: tx: expand tailroom if necessary + - 9p/net: Fix zero-copy path in the 9p virtio transport + - spi: davinci: fix a NULL pointer dereference + - spi: pxa2xx: Add support for Intel Ice Lake + - spi: spi-fsl-dspi: Fix imprecise abort on VF500 during probe + - spi: cadence: Change usleep_range() to udelay(), for atomic context + - mmc: block: Fix unsupported parallel dispatch of requests + - mmc: renesas_sdhi_internal_dmac: mask DMAC interrupts + - mmc: renesas_sdhi_internal_dmac: fix #define RST_RESERVED_BITS + - readahead: stricter check for bdi io_pages + - block: fix infinite loop if the device loses discard capability + - block: blk_init_allocated_queue() set q->fq as NULL in the fail case + - block: really disable runtime-pm for blk-mq + - blkcg: Introduce blkg_root_lookup() + - block: Introduce blk_exit_queue() + - block: Ensure that a request queue is dissociated from the cgroup controller + - apparmor: fix bad debug check in apparmor_secid_to_secctx() + - dma-buf: Move BUG_ON from _add_shared_fence to _add_shared_inplace + - libertas: fix suspend and resume for SDIO connected cards + - media: Revert "[media] tvp5150: fix pad format frame height" + - mailbox: xgene-slimpro: Fix potential NULL pointer dereference + - Replace magic for trusting the secondary keyring with #define + - Fix kexec forbidding kernels signed with keys in the secondary keyring to + boot + - powerpc/fadump: handle crash memory ranges array index overflow + - powerpc/64s: Fix page table fragment refcount race vs speculative references + - powerpc/pseries: Fix endianness while restoring of r3 in MCE handler. + - powerpc/pkeys: Give all threads control of their key permissions + - powerpc/pkeys: Deny read/write/execute by default + - powerpc/pkeys: key allocation/deallocation must not change pkey registers + - powerpc/pkeys: Save the pkey registers before fork + - powerpc/pkeys: Fix calculation of total pkeys. + - powerpc/pkeys: Preallocate execute-only key + - powerpc/nohash: fix pte_access_permitted() + - powerpc64/ftrace: Include ftrace.h needed for enable/disable calls + - powerpc/powernv/pci: Work around races in PCI bridge enabling + - cxl: Fix wrong comparison in cxl_adapter_context_get() + - IB/mlx5: Honor cnt_set_id_valid flag instead of set_id + - IB/mlx5: Fix leaking stack memory to userspace + - IB/srpt: Fix srpt_cm_req_recv() error path (1/2) + - IB/srpt: Fix srpt_cm_req_recv() error path (2/2) + - IB/srpt: Support HCAs with more than two ports + - overflow.h: Add arithmetic shift helper + - RDMA/mlx5: Fix shift overflow in mlx5_ib_create_wq + - ib_srpt: Fix a use-after-free in srpt_close_ch() + - ib_srpt: Fix a use-after-free in __srpt_close_all_ch() + - RDMA/rxe: Set wqe->status correctly if an unexpected response is received + - 9p: fix multiple NULL-pointer-dereferences + - fs/9p/xattr.c: catch the error of p9_client_clunk when setting xattr failed + - 9p/virtio: fix off-by-one error in sg list bounds check + - net/9p/client.c: version pointer uninitialized + - net/9p/trans_fd.c: fix race-condition by flushing workqueue before the + kfree() + - dm integrity: change 'suspending' variable from bool to int + - dm thin: stop no_space_timeout worker when switching to write-mode + - dm cache metadata: save in-core policy_hint_size to on-disk superblock + - dm cache metadata: set dirty on all cache blocks after a crash + - dm crypt: don't decrease device limits + - dm writecache: fix a crash due to reading past end of dirty_bitmap + - uart: fix race between uart_put_char() and uart_shutdown() + - Drivers: hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() + - Drivers: hv: vmbus: Reset the channel callback in vmbus_onoffer_rescind() + - iio: sca3000: Fix missing return in switch + - iio: ad9523: Fix displayed phase + - iio: ad9523: Fix return value for ad952x_store() + - extcon: Release locking when sending the notification of connector state + - eventpoll.h: wrap casts in () properly + - vmw_balloon: fix inflation of 64-bit GFNs + - vmw_balloon: do not use 2MB without batching + - vmw_balloon: VMCI_DOORBELL_SET does not check status + - vmw_balloon: fix VMCI use when balloon built into kernel + - rtc: omap: fix resource leak in registration error path + - rtc: omap: fix potential crash on power off + - tracing: Do not call start/stop() functions when tracing_on does not change + - tracing/blktrace: Fix to allow setting same value + - printk/tracing: Do not trace printk_nmi_enter() + - livepatch: Validate module/old func name length + - uprobes: Use synchronize_rcu() not synchronize_sched() + - mfd: hi655x: Fix regmap area declared size for hi655x + - ovl: fix wrong use of impure dir cache in ovl_iterate() + - ACPICA: AML Parser: skip opcodes that open a scope upon parse failure + - ACPICA: Clear status of all events when entering sleep states + - drivers/block/zram/zram_drv.c: fix bug storing backing_dev + - sched: idle: Avoid retaining the tick when it has been stopped + - cpuidle: menu: Handle stopped tick more aggressively + - cpufreq: governor: Avoid accessing invalid governor_data + - PM / sleep: wakeup: Fix build error caused by missing SRCU support + - ALSA: ac97: fix device initialization in the compat layer + - ALSA: ac97: fix check of pm_runtime_get_sync failure + - ALSA: ac97: fix unbalanced pm_runtime_enable + - i2c: designware: Re-init controllers with pm_disabled set on resume + - KVM: VMX: fixes for vmentry_l1d_flush module parameter + - KVM: PPC: Book3S: Fix guest DMA when guest partially backed by THP pages + - xtensa: limit offsets in __loop_cache_{all,page} + - xtensa: increase ranges in ___invalidate_{i,d}cache_all + - block, bfq: return nbytes and not zero from struct cftype .write() method + - pnfs/blocklayout: off by one in bl_map_stripe() + - nfsd: fix leaked file lock with nfs exported overlayfs + - NFSv4 client live hangs after live data migration recovery + - NFSv4: Fix locking in pnfs_generic_recover_commit_reqs + - NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() + - ARM: tegra: Fix Tegra30 Cardhu PCA954x reset + - ARM: dts: am57xx-idk: Enable dual role for USB2 port + - pwm: omap-dmtimer: Return -EPROBE_DEFER if no dmtimer platform data + - mm/tlb: Remove tlb_remove_table() non-concurrent condition + - iommu/ipmmu-vmsa: Don't register as BUS IOMMU if machine doesn't have IPMMU- + VMSA + - iommu/vt-d: Add definitions for PFSID + - iommu/vt-d: Fix dev iotlb pfsid use + - sys: don't hold uts_sem while accessing userspace memory + - userns: move user access out of the mutex + - ubifs: Fix memory leak in lprobs self-check + - Revert "UBIFS: Fix potential integer overflow in allocation" + - ubifs: Check data node size before truncate + - ubifs: xattr: Don't operate on deleted inodes + - ubifs: Fix directory size calculation for symlinks + - ubifs: Fix synced_i_size calculation for xattr inodes + - pwm: tiehrpwm: Don't use emulation mode bits to control PWM output + - pwm: tiehrpwm: Fix disabling of output of PWMs + - fb: fix lost console when the user unplugs a USB adapter + - udlfb: fix semaphore value leak + - udlfb: fix display corruption of the last line + - udlfb: don't switch if we are switching to the same videomode + - udlfb: set optimal write delay + - udlfb: make a local copy of fb_ops + - udlfb: handle allocation failure + - udlfb: set line_length in dlfb_ops_set_par + - getxattr: use correct xattr length + - libnvdimm: Use max contiguous area for namespace size + - libnvdimm: fix ars_status output length calculation + - bcache: release dc->writeback_lock properly in bch_writeback_thread() + - kconfig: fix "Can't open ..." in parallel build + - perf auxtrace: Fix queue resize + - crypto: vmx - Fix sleep-in-atomic bugs + - crypto: aesni - Use unaligned loads from gcm_context_data + - crypto: arm64/sm4-ce - check for the right CPU feature bit + - crypto: caam - fix DMA mapping direction for RSA forms 2 & 3 + - crypto: caam/jr - fix descriptor DMA unmapping + - crypto: caam/qi - fix error path in xts setkey + - fs/quota: Fix spectre gadget in do_quotactl + - udf: Fix mounting of Win7 created UDF filesystems + - cpuidle: menu: Retain tick when shallow state is selected + - arm64: mm: always enable CONFIG_HOLES_IN_ZONE + - Linux 4.18.7 + + * CVE-2017-5715 + - s390: detect etoken facility + - KVM: s390: add etoken support for guests + + * Missing Intel GPU pci-id's (LP: #1789924) + - drm/i915/whl: Introducing Whiskey Lake platform + - drm/i915/aml: Introducing Amber Lake platform + - drm/i915/cfl: Add a new CFL PCI ID. + + * [18.10 FEAT] Add kernel config options for SMC-R/D (LP: #1789934) + - s390/ism: add device driver for internal shared memory + - CONFIG_ISM=y for s390 + + * Cosmic update to v4.18.6 stable release (LP: #1791105) + - PATCH scripts/kernel-doc + - scripts/kernel-doc: Escape all literal braces in regexes + - scsi: libsas: dynamically allocate and free ata host + - xprtrdma: Fix disconnect regression + - mei: don't update offset in write + - cifs: add missing support for ACLs in SMB 3.11 + - CIFS: fix uninitialized ptr deref in smb2 signing + - cifs: add missing debug entries for kconfig options + - cifs: use a refcount to protect open/closing the cached file handle + - cifs: check kmalloc before use + - smb3: enumerating snapshots was leaving part of the data off end + - smb3: Do not send SMB3 SET_INFO if nothing changed + - smb3: don't request leases in symlink creation and query + - smb3: fill in statfs fsid and correct namelen + - btrfs: use correct compare function of dirty_metadata_bytes + - btrfs: don't leak ret from do_chunk_alloc + - Btrfs: fix mount failure after fsync due to hard link recreation + - Btrfs: fix btrfs_write_inode vs delayed iput deadlock + - Btrfs: fix send failure when root has deleted files still open + - Btrfs: send, fix incorrect file layout after hole punching beyond eof + - hwmon: (k10temp) 27C Offset needed for Threadripper2 + - bpf, arm32: fix stack var offset in jit + - regulator: arizona-ldo1: Use correct device to get enable GPIO + - iommu/arm-smmu: Error out only if not enough context interrupts + - printk: Split the code for storing a message into the log buffer + - printk: Create helper function to queue deferred console handling + - printk/nmi: Prevent deadlock when accessing the main log buffer in NMI + - kprobes/arm64: Fix %p uses in error messages + - arm64: Fix mismatched cache line size detection + - arm64: Handle mismatched cache type + - arm64: mm: check for upper PAGE_SHIFT bits in pfn_valid() + - arm64: dts: rockchip: corrected uart1 clock-names for rk3328 + - KVM: arm/arm64: Fix potential loss of ptimer interrupts + - KVM: arm/arm64: Fix lost IRQs from emulated physcial timer when blocked + - KVM: arm/arm64: Skip updating PMD entry if no change + - KVM: arm/arm64: Skip updating PTE entry if no change + - s390/kvm: fix deadlock when killed by oom + - perf kvm: Fix subcommands on s390 + - stop_machine: Reflow cpu_stop_queue_two_works() + - stop_machine: Atomically queue and wake stopper threads + - ext4: check for NUL characters in extended attribute's name + - ext4: use ext4_warning() for sb_getblk failure + - ext4: sysfs: print ext4_super_block fields as little-endian + - ext4: reset error code in ext4_find_entry in fallback + - ext4: fix race when setting the bitmap corrupted flag + - x86/gpu: reserve ICL's graphics stolen memory + - platform/x86: wmi: Do not mix pages and kmalloc + - platform/x86: ideapad-laptop: Apply no_hw_rfkill to Y20-15IKBM, too + - mm: move tlb_table_flush to tlb_flush_mmu_free + - mm/tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE + - x86/speculation/l1tf: Fix overflow in l1tf_pfn_limit() on 32bit + - x86/speculation/l1tf: Fix off-by-one error when warning that system has too + much RAM + - x86/speculation/l1tf: Suggest what to do on systems with too much RAM + - x86/vdso: Fix vDSO build if a retpoline is emitted + - x86/process: Re-export start_thread() + - KVM: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd + - KVM: x86: SVM: Call x86_spec_ctrl_set_guest/host() with interrupts disabled + - fuse: Don't access pipe->buffers without pipe_lock() + - fuse: fix initial parallel dirops + - fuse: fix double request_end() + - fuse: fix unlocked access to processing queue + - fuse: umount should wait for all requests + - fuse: Fix oops at process_init_reply() + - fuse: Add missed unlock_page() to fuse_readpages_fill() + - lib/vsprintf: Do not handle %pO[^F] as %px + - udl-kms: change down_interruptible to down + - udl-kms: handle allocation failure + - udl-kms: fix crash due to uninitialized memory + - udl-kms: avoid division + - b43legacy/leds: Ensure NUL-termination of LED name string + - b43/leds: Ensure NUL-termination of LED name string + - ASoC: dpcm: don't merge format from invalid codec dai + - ASoC: zte: Fix incorrect PCM format bit usages + - ASoC: sirf: Fix potential NULL pointer dereference + - ASoC: wm_adsp: Correct DSP pointer for preloader control + - soc: qcom: rmtfs-mem: fix memleak in probe error paths + - pinctrl: freescale: off by one in imx1_pinconf_group_dbg_show() + - scsi: qla2xxx: Fix stalled relogin + - x86/vdso: Fix lsl operand order + - x86/nmi: Fix NMI uaccess race against CR3 switching + - x86/irqflags: Mark native_restore_fl extern inline + - x86/spectre: Add missing family 6 check to microcode check + - x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ + - hwmon: (nct6775) Fix potential Spectre v1 + - x86/entry/64: Wipe KASAN stack shadow before rewind_stack_do_exit() + - x86: Allow generating user-space headers without a compiler + - s390/mm: fix addressing exception after suspend/resume + - s390/lib: use expoline for all bcr instructions + - s390: fix br_r1_trampoline for machines without exrl + - s390/qdio: reset old sbal_state flags + - s390/numa: move initial setup of node_to_cpumask_map + - s390/purgatory: Fix crash with expoline enabled + - s390/purgatory: Add missing FORCE to Makefile targets + - kprobes: Show blacklist addresses as same as kallsyms does + - kprobes: Replace %p with other pointer types + - kprobes/arm: Fix %p uses in error messages + - kprobes: Make list and blacklist root user read only + - MIPS: Correct the 64-bit DSP accumulator register size + - MIPS: memset.S: Fix byte_fixup for MIPSr6 + - MIPS: Always use -march=, not - shortcuts + - MIPS: Change definition of cpu_relax() for Loongson-3 + - MIPS: lib: Provide MIPS64r6 __multi3() for GCC < 7 + - tpm: Return the actual size when receiving an unsupported command + - tpm: separate cmd_ready/go_idle from runtime_pm + - scsi: mpt3sas: Fix calltrace observed while running IO & reset + - scsi: mpt3sas: Fix _transport_smp_handler() error path + - scsi: sysfs: Introduce sysfs_{un,}break_active_protection() + - scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock + - iscsi target: fix session creation failure handling + - mtd: rawnand: hynix: Use ->exec_op() in hynix_nand_reg_write_op() + - mtd: rawnand: fsmc: Stop using chip->read_buf() + - mtd: rawnand: marvell: add suspend and resume hooks + - mtd: rawnand: qcom: wait for desc completion in all BAM channels + - clk: rockchip: fix clk_i2sout parent selection bits on rk3399 + - clk: npcm7xx: fix memory allocation + - PM / clk: signedness bug in of_pm_clk_add_clks() + - power: generic-adc-battery: fix out-of-bounds write when copying channel + properties + - power: generic-adc-battery: check for duplicate properties copied from iio + channels + - watchdog: Mark watchdog touch functions as notrace + - cdrom: Fix info leak/OOB read in cdrom_ioctl_drive_status + - x86/dumpstack: Don't dump kernel memory based on usermode RIP + - Linux 4.18.6 + - updateconfigs after v4.18.6 stable update + + * random oopses on s390 systems using NVMe devices (LP: #1790480) + - s390/pci: fix out of bounds access during irq setup + + * [18.10 FEAT] zcrypt DD: introduce APQN tags to support deterministic driver + binding (LP: #1784331) + - s390/zcrypt: code beautify + - s390/zcrypt: AP bus support for alternate driver(s) + - s390/zcrypt: hex string mask improvements for apmask and aqmask. + + * performance drop with ATS enabled (LP: #1788097) + - powerpc/powernv: Fix concurrency issue with npu->mmio_atsd_usage + + * Fix MCE handling for user access of poisoned device-dax mapping + (LP: #1774366) + - device-dax: Convert to vmf_insert_mixed and vm_fault_t + - device-dax: Enable page_mapping() + - device-dax: Set page->index + - filesystem-dax: Set page->index + - mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages + - mm, dev_pagemap: Do not clear ->mapping on final put + - mm, madvise_inject_error: Let memory_failure() optionally take a page + reference + - mm, memory_failure: Collect mapping size in collect_procs() + - filesystem-dax: Introduce dax_lock_mapping_entry() + - mm, memory_failure: Teach memory_failure() about dev_pagemap pages + - x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses + - x86/memory_failure: Introduce {set, clear}_mce_nospec() + - libnvdimm, pmem: Restore page attributes when clearing errors + + * Reconcile hns3 SAUCE patches with upstream (LP: #1787477) + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix comments for + hclge_get_ring_chain_from_mbx" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for using wrong mask and + shift in hclge_get_ring_chain_from_mbx" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for reset_level default + assignment probelm" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unnecessary ring + configuration operation while resetting" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix return value error in + hns3_reset_notify_down_enet" + - Revert "UBUNTU: SAUCE: net: hns3: Fix for phy link issue when using marvell + phy driver" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: separate roce from nic when + resetting" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: correct reset event status + register" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent to request reset + frequently" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: reset net device with rtnl_lock" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify the order of initializeing + command queue register" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent sending command during + global or core reset" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Use roce handle when calling roce + callback function" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the warning when clear + reset cause" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix get_vector ops in + hclgevf_main module" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix warning bug when doing lp + selftest" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add configure for mac minimal + frame size" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mailbox message truncated + problem" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for l4 checksum offload bug" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for waterline not setting + correctly" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mac pause not disable in + pfc mode" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix tc setup when netdev is first + up" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add calling roce callback + function when link status change" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: optimize the process of notifying + roce client" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused struct member and + definition" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix mislead parameter name" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify inconsistent bit mask + macros" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use decimal for bit offset + macros" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix unreasonable code comments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove extra space and brackets" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: standardize the handle of return + value" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant + assignments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify hnae_ to hnae3_" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead + of kzalloc/dma_map_single" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: give default option while + dependency HNS3 set" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some unused members of + some structures" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove a redundant + hclge_cmd_csq_done" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: using modulo for cyclic counters + in hclge_cmd_send" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant + assignments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove useless code in + hclge_cmd_send" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused + hclge_ring_to_dma_dir" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use lower_32_bits and + upper_32_bits" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove back in struct hclge_hw" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add unlikely for error check" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the Redundant put_vector + in hns3_client_uninit" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: print the ret value in error + information" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: extraction an interface for state + state init|uninit" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused head file in + hnae3.c" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add l4_type check for both ipv4 + and ipv6" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add vector status check before + free vector" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: rename the interface for + init_client_instance and uninit_client_instance" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove hclge_get_vector_index + from hclge_bind_ring_with_vector" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: RX BD information valid only in + last BD except VLD bit and buffer size" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add support for serdes loopback + selftest" + - net: hns3: Updates RX packet info fetch in case of multi BD + - net: hns3: remove hclge_get_vector_index from hclge_bind_ring_with_vector + - net: hns3: rename the interface for init_client_instance and + uninit_client_instance + - net: hns3: add vector status check before free vector + - net: hns3: add l4_type check for both ipv4 and ipv6 + - net: hns3: add unlikely for error check + - net: hns3: remove unused head file in hnae3.c + - net: hns3: extraction an interface for state init|uninit + - net: hns3: print the ret value in error information + - net: hns3: remove the Redundant put_vector in hns3_client_uninit + - net: hns3: remove back in struct hclge_hw + - net: hns3: use lower_32_bits and upper_32_bits + - net: hns3: remove unused hclge_ring_to_dma_dir + - net: hns3: remove useless code in hclge_cmd_send + - net: hns3: remove some redundant assignments + - net: hns3: simplify hclge_cmd_csq_clean + - net: hns3: remove a redundant hclge_cmd_csq_done + - net: hns3: remove some unused members of some structures + - net: hns3: give default option while dependency HNS3 set + - net: hns3: use dma_zalloc_coherent instead of kzalloc/dma_map_single + - net: hns3: modify hnae_ to hnae3_ + - net: hns3: Fix tc setup when netdev is first up + - net: hns3: Fix for mac pause not disable in pfc mode + - net: hns3: Fix for waterline not setting correctly + - net: hns3: Fix for l4 checksum offload bug + - net: hns3: Fix for mailbox message truncated problem + - net: hns3: Add configure for mac minimal frame size + - net: hns3: Fix warning bug when doing lp selftest + - net: hns3: Fix get_vector ops in hclgevf_main module + - net: hns3: Remove the warning when clear reset cause + - net: hns3: Prevent sending command during global or core reset + - net: hns3: Modify the order of initializing command queue register + - net: hns3: Reset net device with rtnl_lock + - net: hns3: Prevent to request reset frequently + - net: hns3: Correct reset event status register + - net: hns3: Fix return value error in hns3_reset_notify_down_enet + - net: hns3: remove unnecessary ring configuration operation while resetting + - net: hns3: Fix for reset_level default assignment probelm + - net: hns3: Fix for using wrong mask and shift in + hclge_get_ring_chain_from_mbx + - net: hns3: Fix comments for hclge_get_ring_chain_from_mbx + - net: hns3: Remove some redundant assignments + - net: hns3: Standardize the handle of return value + - net: hns3: Remove extra space and brackets + - net: hns3: Correct unreasonable code comments + - net: hns3: Use decimal for bit offset macros + - net: hns3: Modify inconsistent bit mask macros + - net: hns3: Fix misleading parameter name + - net: hns3: Remove unused struct member and definition + - net: hns3: Add SPDX tags to HNS3 PF driver + - net: hns3: Add support for serdes loopback selftest + - net: hns3: Fix for phy link issue when using marvell phy driver + + * [Regression] kernel crashdump fails on arm64 (LP: #1786878) + - arm64: export memblock_reserve()d regions via /proc/iomem + - drivers: acpi: add dependency of EFI for arm64 + - efi/arm: preserve early mapping of UEFI memory map longer for BGRT + - efi/arm: map UEFI memory map even w/o runtime services enabled + - arm64: acpi: fix alignment fault in accessing ACPI + - [Config] CONFIG_ARCH_SUPPORTS_ACPI=y + - arm64: fix ACPI dependencies + - ACPI: fix menuconfig presentation of ACPI submenu + + * TB 16 issue on Dell Lattitude 7490 with large amount of data (LP: #1785780) + - r8152: disable RX aggregation on new Dell TB16 dock + + * Support Power Management for Thunderbolt Controller (LP: #1789358) + - thunderbolt: Use 64-bit DMA mask if supported by the platform + - thunderbolt: Do not unnecessarily call ICM get route + - thunderbolt: No need to take tb->lock in domain suspend/complete + - thunderbolt: Use correct ICM commands in system suspend + - thunderbolt: Add support for runtime PM + + * Enable AMD PCIe MP2 for AMDI0011 (LP: #1773940) + - SAUCE: i2c:amd I2C Driver based on PCI Interface for upcoming platform + - SAUCE: i2c:amd move out pointer in union i2c_event_base + - SAUCE: i2c:amd Depends on ACPI + - [Config] i2c: CONFIG_I2C_AMD_MP2=y on x86 + + * Microphone cannot be detected with front panel audio combo jack on HP Z8-G4 + machine (LP: #1789145) + - ALSA: hda/realtek - Fix HP Headset Mic can't record + + * Please enable CONFIG_PAGE_POISONING (LP: #1783651) + - [Config] Enable CONFIG_PAGE_POISONING configs + + * Tango platform uses __initcall without further checks (LP: #1787945) + - [Config] disable ARCH_TANGO + + * [18.10 FEAT] SMC-Direct (LP: #1786902) + - net/smc: determine port attributes independent from pnet table + - net/smc: add pnetid support + - net/smc: add base infrastructure for SMC-D and ISM + - net/smc: add pnetid support for SMC-D and ISM + - net/smc: add SMC-D support in CLC messages + - net/smc: add SMC-D support in data transfer + - net/smc: add SMC-D support in af_smc + - net/smc: add SMC-D diag support + - net/smc: provide smc mode in smc_diag.c + - net/smc: eliminate cursor read and write calls + - net/smc: add function to get link group from link + - net/smc: use DECLARE_BITMAP for rtokens_used_mask + - net/smc: remove local variable page in smc_rx_splice() + - net/smc: Remove a WARN_ON() statement + - net/smc: Simplify ib_post_(send|recv|srq_recv)() calls + - net/smc: fewer parameters for smc_llc_send_confirm_link() + - net/smc: use correct vlan gid of RoCE device + - net/smc: provide fallback reason code + - net/smc: improve delete link processing + - net: simplify sock_poll_wait + - net/smc: send response to test link signal + + * Miscellaneous Ubuntu changes + - [Config] update annotations for CONFIG_CRYPTO_SPECK_NEON + - [Config] fix up annotatios for CONFIG_CRYPTO_SPECK + + -- Seth Forshee Mon, 10 Sep 2018 07:08:38 -0500 + +linux (4.18.0-7.8) cosmic; urgency=medium + + * linux: 4.18.0-7.8 -proposed tracker (LP: #1789459) + + * pmtu.sh fails on 4.18 kernel (LP: #1789436) + - SAUCE: Revert "vti6: fix PMTU caching and reporting on xmit" + + -- Seth Forshee Tue, 28 Aug 2018 11:08:51 -0500 + +linux (4.18.0-6.7) cosmic; urgency=medium + + * linux: 4.18.0-6.7 -proposed tracker (LP: #1788881) + + * systemd 237-3ubuntu10 ADT test failure with linux 4.18.0-5.6 (LP: #1787440) + - Config: Disable BPF_JIT_ALWAYS_ON on i386 + + * execveat03 in ubuntu_ltp_syscalls failed on X/B (LP: #1786729) + - cap_inode_getsecurity: use d_find_any_alias() instead of d_find_alias() + + * Cosmic update to v4.18.5 stable release (LP: #1788874) + - EDAC: Add missing MEM_LRDDR4 entry in edac_mem_types[] + - pty: fix O_CLOEXEC for TIOCGPTPEER + - mm: Allow non-direct-map arguments to free_reserved_area() + - x86/mm/init: Pass unconverted symbol addresses to free_init_pages() + - x86/mm/init: Add helper for freeing kernel image pages + - x86/mm/init: Remove freed kernel image areas from alias mapping + - powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 + - ext4: fix spectre gadget in ext4_mb_regular_allocator() + - drm/i915/kvmgt: Fix potential Spectre v1 + - drm/amdgpu/pm: Fix potential Spectre v1 + - parisc: Remove unnecessary barriers from spinlock.h + - parisc: Remove ordered stores from syscall.S + - PCI: Restore resized BAR state on resume + - PCI / ACPI / PM: Resume all bridges on suspend-to-RAM + - PCI: hotplug: Don't leak pci_slot on registration failure + - PCI: aardvark: Size bridges before resources allocation + - PCI: Skip MPS logic for Virtual Functions (VFs) + - PCI: pciehp: Fix use-after-free on unplug + - PCI: pciehp: Fix unprotected list iteration in IRQ handler + - i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes + - i2c: imx: Fix race condition in dma read + - reiserfs: fix broken xattr handling (heap corruption, bad retval) + - Linux 4.18.5 + + * [18.10 FEAT] Add kernel config option "CONFIG_SCLP_OFB" (LP: #1787898) + - [Config] CONFIG_SCLP_OFB=y for s390x + + * errors when scanning partition table of corrupted AIX disk (LP: #1787281) + - partitions/aix: fix usage of uninitialized lv_info and lvname structures + - partitions/aix: append null character to print data from disk + + * Apply NVMe bugfix from Google that bjf asked for (LP: #1787635) + - nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event + + * ThinkPad systems have no HDMI sound when using the nvidia GPU (LP: #1787058) + - ACPI / OSI: Add OEM _OSI string to enable NVidia HDMI audio + + * Cosmic update to v4.18.4 stable release (LP: #1788454) + - l2tp: use sk_dst_check() to avoid race on sk->sk_dst_cache + - net_sched: fix NULL pointer dereference when delete tcindex filter + - net_sched: Fix missing res info when create new tc_index filter + - r8169: don't use MSI-X on RTL8168g + - ALSA: hda - Sleep for 10ms after entering D3 on Conexant codecs + - ALSA: hda - Turn CX8200 into D3 as well upon reboot + - ALSA: vx222: Fix invalid endian conversions + - ALSA: virmidi: Fix too long output trigger loop + - ALSA: cs5535audio: Fix invalid endian conversion + - ALSA: dice: fix wrong copy to rx parameters for Alesis iO26 + - ALSA: hda: Correct Asrock B85M-ITX power_save blacklist entry + - ALSA: memalloc: Don't exceed over the requested size + - ALSA: vxpocket: Fix invalid endian conversions + - ALSA: seq: Fix poll() error return + - media: gl861: fix probe of dvb_usb_gl861 + - USB: serial: sierra: fix potential deadlock at close + - USB: serial: pl2303: add a new device id for ATEN + - USB: option: add support for DW5821e + - ACPI / PM: save NVS memory for ASUS 1025C laptop + - tty: serial: 8250: Revert NXP SC16C2552 workaround + - serial: 8250_exar: Read INT0 from slave device, too + - serial: 8250_dw: always set baud rate in dw8250_set_termios + - serial: 8250_dw: Add ACPI support for uart on Broadcom SoC + - uio: fix wrong return value from uio_mmap() + - misc: sram: fix resource leaks in probe error path + - Revert "uio: use request_threaded_irq instead" + - Bluetooth: avoid killing an already killed socket + - isdn: Disable IIOCDBGVAR + - net: sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() + - hv/netvsc: Fix NULL dereference at single queue mode fallback + - r8169: don't use MSI-X on RTL8106e + - ip_vti: fix a null pointer deferrence when create vti fallback tunnel + - net: ethernet: mvneta: Fix napi structure mixup on armada 3700 + - net: mvneta: fix mvneta_config_rss on armada 3700 + - cls_matchall: fix tcf_unbind_filter missing + - Linux 4.18.4 + + * Cosmic update to v4.18.3 stable release (LP: #1788453) + - x86/speculation/l1tf: Exempt zeroed PTEs from inversion + - Linux 4.18.3 + + * Cosmic update to v4.18.2 stable release (LP: #1788452) + - x86/l1tf: Fix build error seen if CONFIG_KVM_INTEL is disabled + - x86: i8259: Add missing include file + - x86/hyper-v: Check for VP_INVAL in hyperv_flush_tlb_others() + - x86/platform/UV: Mark memblock related init code and data correctly + - x86/mm/pti: Clear Global bit more aggressively + - xen/pv: Call get_cpu_address_sizes to set x86_virt/phys_bits + - x86/mm: Disable ioremap free page handling on x86-PAE + - kbuild: verify that $DEPMOD is installed + - crypto: ccree - fix finup + - crypto: ccree - fix iv handling + - crypto: ccp - Check for NULL PSP pointer at module unload + - crypto: ccp - Fix command completion detection race + - crypto: x86/sha256-mb - fix digest copy in sha256_mb_mgr_get_comp_job_avx2() + - crypto: vmac - require a block cipher with 128-bit block size + - crypto: vmac - separate tfm and request context + - crypto: blkcipher - fix crash flushing dcache in error path + - crypto: ablkcipher - fix crash flushing dcache in error path + - crypto: skcipher - fix aligning block size in skcipher_copy_iv() + - crypto: skcipher - fix crash flushing dcache in error path + - ioremap: Update pgtable free interfaces with addr + - x86/mm: Add TLB purge to free pmd/pte page interfaces + - Linux 4.18.2 + + * Cosmic update to v4.18.2 stable release (LP: #1788452) // CVE-2018-9363 + - Bluetooth: hidp: buffer overflow in hidp_process_report + + * linux-cloud-tools-common: Ensure hv-kvp-daemon.service starts before + walinuxagent.service (LP: #1739107) + - [Debian] hyper-v -- Ensure that hv-kvp-daemon.service starts before + walinuxagent.service + + * Miscellaneous Ubuntu changes + - SAUCE: ipvs: remove nbsp characters from Kconfig + - [Config] CONFIG_MPROFILE_KERNEL=y for ppc64el + - [Config] CONFIG_DRM_RCAR_LVDS=m for snapdragon + - [Config] CONFIG_MDIO_MSCC_MIIM=n for s390x + - [Config] CONFIG_NET_VENDOR_MICROSEMI=n, CONFIG_NET_VENDOR_NI=n for s390x + - [Config] update annotations following config review + - [Debian] set CROSS_COMPILE when generating kernel configs + - [Config] Disable the Speck cipher + + -- Seth Forshee Fri, 24 Aug 2018 14:18:15 -0500 + +linux (4.18.0-5.6) cosmic; urgency=medium + + * Cosmic update to v4.18.1 stable release (LP: #1787264) + - x86/paravirt: Fix spectre-v2 mitigations for paravirt guests + - x86/speculation: Protect against userspace-userspace spectreRSB + - kprobes/x86: Fix %p uses in error messages + - x86/irqflags: Provide a declaration for native_save_fl + - x86/speculation/l1tf: Increase 32bit PAE __PHYSICAL_PAGE_SHIFT + - x86/speculation/l1tf: Change order of offset/type in swap entry + - x86/speculation/l1tf: Protect swap entries against L1TF + - x86/speculation/l1tf: Protect PROT_NONE PTEs against speculation + - x86/speculation/l1tf: Make sure the first page is always reserved + - x86/speculation/l1tf: Add sysfs reporting for l1tf + - x86/speculation/l1tf: Disallow non privileged high MMIO PROT_NONE mappings + - x86/speculation/l1tf: Limit swap file size to MAX_PA/2 + - x86/bugs: Move the l1tf function and define pr_fmt properly + - sched/smt: Update sched_smt_present at runtime + - x86/smp: Provide topology_is_primary_thread() + - x86/topology: Provide topology_smt_supported() + - cpu/hotplug: Make bringup/teardown of smp threads symmetric + - cpu/hotplug: Split do_cpu_down() + - cpu/hotplug: Provide knobs to control SMT + - x86/cpu: Remove the pointless CPU printout + - x86/cpu/AMD: Remove the pointless detect_ht() call + - x86/cpu/common: Provide detect_ht_early() + - x86/cpu/topology: Provide detect_extended_topology_early() + - x86/cpu/intel: Evaluate smp_num_siblings early + - x86/CPU/AMD: Do not check CPUID max ext level before parsing SMP info + - x86/cpu/AMD: Evaluate smp_num_siblings early + - x86/apic: Ignore secondary threads if nosmt=force + - x86/speculation/l1tf: Extend 64bit swap file size limit + - x86/cpufeatures: Add detection of L1D cache flush support. + - x86/CPU/AMD: Move TOPOEXT reenablement before reading smp_num_siblings + - x86/speculation/l1tf: Protect PAE swap entries against L1TF + - x86/speculation/l1tf: Fix up pte->pfn conversion for PAE + - Revert "x86/apic: Ignore secondary threads if nosmt=force" + - cpu/hotplug: Boot HT siblings at least once + - x86/KVM: Warn user if KVM is loaded SMT and L1TF CPU bug being present + - x86/KVM/VMX: Add module argument for L1TF mitigation + - x86/KVM/VMX: Add L1D flush algorithm + - x86/KVM/VMX: Add L1D MSR based flush + - x86/KVM/VMX: Add L1D flush logic + - x86/KVM/VMX: Split the VMX MSR LOAD structures to have an host/guest numbers + - x86/KVM/VMX: Add find_msr() helper function + - x86/KVM/VMX: Separate the VMX AUTOLOAD guest/host number accounting + - x86/KVM/VMX: Extend add_atomic_switch_msr() to allow VMENTER only MSRs + - x86/KVM/VMX: Use MSR save list for IA32_FLUSH_CMD if required + - cpu/hotplug: Online siblings when SMT control is turned on + - x86/litf: Introduce vmx status variable + - x86/kvm: Drop L1TF MSR list approach + - x86/l1tf: Handle EPT disabled state proper + - x86/kvm: Move l1tf setup function + - x86/kvm: Add static key for flush always + - x86/kvm: Serialize L1D flush parameter setter + - x86/kvm: Allow runtime control of L1D flush + - cpu/hotplug: Expose SMT control init function + - cpu/hotplug: Set CPU_SMT_NOT_SUPPORTED early + - x86/bugs, kvm: Introduce boot-time control of L1TF mitigations + - Documentation: Add section about CPU vulnerabilities + - x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures + - x86/KVM/VMX: Initialize the vmx_l1d_flush_pages' content + - Documentation/l1tf: Fix typos + - cpu/hotplug: detect SMT disabled by BIOS + - x86/KVM/VMX: Don't set l1tf_flush_l1d to true from vmx_l1d_flush() + - x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond' + - x86/KVM/VMX: Move the l1tf_flush_l1d test to vmx_l1d_flush() + - x86/irq: Demote irq_cpustat_t::__softirq_pending to u16 + - x86/KVM/VMX: Introduce per-host-cpu analogue of l1tf_flush_l1d + - x86: Don't include linux/irq.h from asm/hardirq.h + - x86/irq: Let interrupt handlers set kvm_cpu_l1tf_flush_l1d + - x86/KVM/VMX: Don't set l1tf_flush_l1d from vmx_handle_external_intr() + - Documentation/l1tf: Remove Yonah processors from not vulnerable list + - x86/speculation: Simplify sysfs report of VMX L1TF vulnerability + - x86/speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry + - KVM: VMX: Tell the nested hypervisor to skip L1D flush on vmentry + - cpu/hotplug: Fix SMT supported evaluation + - x86/speculation/l1tf: Invert all not present mappings + - x86/speculation/l1tf: Make pmd/pud_mknotpresent() invert + - x86/mm/pat: Make set_memory_np() L1TF safe + - x86/mm/kmmio: Make the tracer robust against L1TF + - tools headers: Synchronise x86 cpufeatures.h for L1TF additions + - x86/microcode: Allow late microcode loading with SMT disabled + - x86/smp: fix non-SMP broken build due to redefinition of + apic_id_is_primary_thread + - cpu/hotplug: Non-SMP machines do not make use of booted_once + - x86/init: fix build with CONFIG_SWAP=n + - Linux 4.18.1 + - [Config] updateconfigs after v4.18.1 stable update + + * Consider enabling CONFIG_NETWORK_PHY_TIMESTAMPING (LP: #1785816) + - [Config] Enable timestamping in network PHY devices + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SYSCTL_SYSCALL=n + + [ Upstream Kernel Changes ] + + * Rebase to v4.18 + + -- Seth Forshee Wed, 15 Aug 2018 14:20:59 -0500 + +linux (4.18.0-4.5) cosmic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc8 + + -- Seth Forshee Mon, 06 Aug 2018 13:54:02 -0500 + +linux (4.18.0-3.4) cosmic; urgency=medium + + * Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and + Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47) (LP: #1774950) + - ACPI / LPSS: Avoid PM quirks on suspend and resume from hibernation + + * hinic interfaces aren't getting predictable names (LP: #1783138) + - hinic: Link the logical network device to the pci device in sysfs + + * libvirtd is unable to configure bridge devices inside of LXD containers + (LP: #1784501) + - kernfs: allow creating kernfs objects with arbitrary uid/gid + - sysfs, kobject: allow creating kobject belonging to arbitrary users + - kobject: kset_create_and_add() - fetch ownership info from parent + - driver core: set up ownership of class devices in sysfs + - net-sysfs: require net admin in the init ns for setting tx_maxrate + - net-sysfs: make sure objects belong to container's owner + - net: create reusable function for getting ownership info of sysfs inodes + - bridge: make sure objects belong to container's owner + - sysfs: Fix regression when adding a file to an existing group + + * locking sockets broken due to missing AppArmor socket mediation patches + (LP: #1780227) + - UBUNTU SAUCE: apparmor: fix apparmor mediating locking non-fs, unix sockets + + * Update2 for ocxl driver (LP: #1781436) + - ocxl: Fix page fault handler in case of fault on dying process + + * HDMI/DP audio can't work on the laptop of Dell Latitude 5495 (LP: #1782689) + - ALSA: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA + - vga_switcheroo: set audio client id according to bound GPU id + + * Allow Raven Ridge's audio controller to be runtime suspended (LP: #1782540) + - ALSA: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge + + * Invoking obsolete 'firmware_install' target breaks snap build (LP: #1782166) + - snapcraft.yaml: stop invoking the obsolete (and non-existing) + 'firmware_install' target + + * snapcraft.yaml: missing ubuntu-retpoline-extract-one script breaks the build + (LP: #1782116) + - snapcraft.yaml: copy retpoline-extract-one to scripts before build + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc7 + + -- Seth Forshee Wed, 01 Aug 2018 08:49:40 -0500 + +linux (4.18.0-2.3) cosmic; urgency=medium + + * Kernel error "task zfs:pid blocked for more than 120 seconds" (LP: #1781364) + - SAUCE: (noup) zfs to 0.7.9-3ubuntu4 + + * [Regression] EXT4-fs error (device sda1): ext4_validate_inode_bitmap:99: + comm stress-ng: Corrupt inode bitmap (LP: #1780137) + - SAUCE: ext4: fix ext4_validate_inode_bitmap: comm stress-ng: Corrupt inode + bitmap + + * Cloud-init causes potentially huge boot delays with 4.15 kernels + (LP: #1780062) + - random: Make getrandom() ready earlier + + * hisi_sas_v3_hw: internal task abort: timeout and not done. (LP: #1777736) + - scsi: hisi_sas: Update a couple of register settings for v3 hw + + * hisi_sas: Add missing PHY spinlock init (LP: #1777734) + - scsi: hisi_sas: Add missing PHY spinlock init + + * hisi_sas: improve read performance by pre-allocating slot DMA buffers + (LP: #1777727) + - scsi: hisi_sas: Use dmam_alloc_coherent() + - scsi: hisi_sas: Pre-allocate slot DMA buffers + + * hisi_sas: Failures during host reset (LP: #1777696) + - scsi: hisi_sas: Only process broadcast change in phy_bcast_v3_hw() + - scsi: hisi_sas: Fix the conflict between dev gone and host reset + - scsi: hisi_sas: Adjust task reject period during host reset + - scsi: hisi_sas: Add a flag to filter PHY events during reset + - scsi: hisi_sas: Release all remaining resources in clear nexus ha + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.9-3ubuntu2, zfs to 0.7.9-3ubuntu3 + - SAUCE: mm: Fix exports that inadvertently make put_page() EXPORT_SYMBOL_GPL + - Enable zfs build + - SAUCE: Import aufs driver + - Revert "UBUNTU: [Config]: set CONFIG_EDAC_DEBUG=y for ARM64" + - [Config] retpoline -- review and accept retpoline changes + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc5 + * Rebase to v4.18-rc6 + + -- Seth Forshee Tue, 24 Jul 2018 08:41:22 -0500 + +linux (4.18.0-1.2) cosmic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc4 + + -- Seth Forshee Mon, 09 Jul 2018 07:36:31 -0500 + +linux (4.18.0-0.1) cosmic; urgency=medium + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - Disable zfs build + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) ima: require secure_boot rules in lockdown mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) lockdown: fix coordination of kernel module signature + verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub + - SAUCE: (namespace) block_dev: Support checking inode permissions in + lookup_bdev() + - SAUCE: (namespace) block_dev: Check permissions towards block device inode + when mounting + - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode + when mounting + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user + namespaces + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace + mounts + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + - SAUCE: Import aufs driver + - Update dropped.txt + - [Config] updateconfigs after 4.18-rc3 rebase + - SAUCE: (no-up): ASoC: Intel: bytcr-rt5660: Remove snd_soc_codec use for 4.18 + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc3 + + -- Seth Forshee Fri, 06 Jul 2018 10:46:37 -0500 + +linux (4.18.0-0.0) cosmic; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 03 Jul 2018 11:10:33 -0500 + +linux (4.17.0-4.5) cosmic; urgency=medium + + * linux: 4.17.0-4.5 -proposed tracker (LP: #1779399) + + * Update to ocxl driver for 18.04.1 (LP: #1775786) + - powerpc: Add TIDR CPU feature for POWER9 + - powerpc: Use TIDR CPU feature to control TIDR allocation + - powerpc: use task_pid_nr() for TID allocation + - ocxl: Rename pnv_ocxl_spa_remove_pe to clarify it's action + - ocxl: Expose the thread_id needed for wait on POWER9 + - ocxl: Add an IOCTL so userspace knows what OCXL features are available + - ocxl: Document new OCXL IOCTLs + - ocxl: Fix missing unlock on error in afu_ioctl_enable_p9_wait() + + * Please include ax88179_178a and r8152 modules in d-i udeb (LP: #1771823) + - [Config:] d-i: Add ax88179_178a and r8152 to nic-modules + + * glibc pkeys test fail on powerpc (LP: #1776967) + - [Config] Temporarily disable CONFIG_PPC_MEM_KEYS + + * After update to 4.13-43 Intel Graphics are Laggy (LP: #1773520) + - Revert "drm/i915/edp: Allow alternate fixed mode for eDP if available." + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.9-3ubuntu1, zfs to 0.7.9-3ubuntu1 + + -- Seth Forshee Fri, 29 Jun 2018 13:37:52 -0500 + +linux (4.17.0-3.4) cosmic; urgency=medium + + * linux: 4.17.0-3.4 -proposed tracker (LP: #1779124) + + * Cosmic update to v4.17.3 stable release (LP: #1778997) + - net: aquantia: fix unsigned numvecs comparison with less than zero + - bonding: re-evaluate force_primary when the primary slave name changes + - cdc_ncm: avoid padding beyond end of skb + - ipv6: allow PMTU exceptions to local routes + - net: dsa: add error handling for pskb_trim_rcsum + - net: phy: dp83822: use BMCR_ANENABLE instead of BMSR_ANEGCAPABLE for DP83620 + - net/sched: act_simple: fix parsing of TCA_DEF_DATA + - tcp: verify the checksum of the first data segment in a new connection + - tls: fix use-after-free in tls_push_record + - tls: fix waitall behavior in tls_sw_recvmsg + - socket: close race condition between sock_close() and sockfs_setattr() + - udp: fix rx queue len reported by diag and proc interface + - net: in virtio_net_hdr only add VLAN_HLEN to csum_start if payload holds + vlan + - hv_netvsc: Fix a network regression after ifdown/ifup + - ACPICA: AML parser: attempt to continue loading table after error + - ext4: fix hole length detection in ext4_ind_map_blocks() + - ext4: update mtime in ext4_punch_hole even if no blocks are released + - ext4: do not allow external inodes for inline data + - ext4: bubble errors from ext4_find_inline_data_nolock() up to ext4_iget() + - ext4: correctly handle a zero-length xattr with a non-zero e_value_offs + - ext4: fix fencepost error in check for inode count overflow during resize + - driver core: Don't ignore class_dir_create_and_add() failure. + - Btrfs: allow empty subvol= again + - Btrfs: fix clone vs chattr NODATASUM race + - Btrfs: fix memory and mount leak in btrfs_ioctl_rm_dev_v2() + - btrfs: return error value if create_io_em failed in cow_file_range + - btrfs: scrub: Don't use inode pages for device replace + - ALSA: usb-audio: Disable the quirk for Nura headset + - ALSA: hda/conexant - Add fixup for HP Z2 G4 workstation + - ALSA: hda - Handle kzalloc() failure in snd_hda_attach_pcm_stream() + - ALSA: hda: add dock and led support for HP EliteBook 830 G5 + - ALSA: hda: add dock and led support for HP ProBook 640 G4 + - x86/MCE: Fix stack out-of-bounds write in mce-inject.c: Flags_read() + - smb3: fix various xid leaks + - smb3: on reconnect set PreviousSessionId field + - CIFS: 511c54a2f69195b28afb9dd119f03787b1625bb4 adds a check for session + expiry + - cifs: For SMB2 security informaion query, check for minimum sized security + descriptor instead of sizeof FileAllInformation class + - nbd: fix nbd device deletion + - nbd: update size when connected + - nbd: use bd_set_size when updating disk size + - blk-mq: reinit q->tag_set_list entry only after grace period + - bdi: Move cgroup bdi_writeback to a dedicated low concurrency workqueue + - cpufreq: Fix new policy initialization during limits updates via sysfs + - cpufreq: ti-cpufreq: Fix an incorrect error return value + - cpufreq: governors: Fix long idle detection logic in load calculation + - libata: zpodd: small read overflow in eject_tray() + - libata: Drop SanDisk SD7UB3Q*G1001 NOLPM quirk + - nvme/pci: Sync controller reset for AER slot_reset + - w1: mxc_w1: Enable clock before calling clk_get_rate() on it + - x86/vector: Fix the args of vector_alloc tracepoint + - x86/apic/vector: Prevent hlist corruption and leaks + - x86/apic: Provide apic_ack_irq() + - x86/ioapic: Use apic_ack_irq() + - x86/platform/uv: Use apic_ack_irq() + - irq_remapping: Use apic_ack_irq() + - genirq/generic_pending: Do not lose pending affinity update + - genirq/affinity: Defer affinity setting if irq chip is busy + - genirq/migration: Avoid out of line call if pending is not set + - x86/intel_rdt: Enable CMT and MBM on new Skylake stepping + - media: uvcvideo: Prevent setting unavailable flags + - media: rc: ensure input/lirc device can be opened after register + - iwlwifi: fw: harden page loading code + - orangefs: set i_size on new symlink + - orangefs: report attributes_mask and attributes for statx + - HID: intel_ish-hid: ipc: register more pm callbacks to support hibernation + - HID: wacom: Correct logical maximum Y for 2nd-gen Intuos Pro large + - vhost: fix info leak due to uninitialized memory + - mm, page_alloc: do not break __GFP_THISNODE by zonelist reset + - Linux 4.17.3 + + * Use-after-free in sk_peer_label (LP: #1778646) + - SAUCE: apparmor: fix use after free in sk_peer_label + + * kernel: Fix memory leak on CCA and EP11 CPRB processing. (LP: #1775390) + - s390/zcrypt: Fix CCA and EP11 CPRB processing failure memory leak. + + * Various fixes for CXL kernel module (LP: #1774471) + - cxl: Configure PSL to not use APC virtual machines + - cxl: Disable prefault_mode in Radix mode + + * Bluetooth not working (LP: #1764645) + - Bluetooth: btusb: Apply QCA Rome patches for some ATH3012 models + + * Fake SAS addresses for SATA disks on HiSilicon D05 are non-unique + (LP: #1776750) + - scsi: hisi_sas: make SAS address of SATA disks unique + + * linux-snapdragon: wcn36xx: mac address generation on boot (LP: #1776491) + - [Config] arm64: snapdragon: WCN36XX_SNAPDRAGON_HACKS=y + - SAUCE: wcn36xx: read MAC from file or randomly generate one + + * Lenovo V330 needs patch in ideapad_laptop module for rfkill (LP: #1774636) + - SAUCE: Add Lenovo V330 to the ideapad_laptop rfkill blacklist + + * register on binfmt_misc may overflow and crash the system (LP: #1775856) + - fs/binfmt_misc.c: do not allow offset overflow + + * Network installs fail on SocioNext board (LP: #1775884) + - net: socionext: reset hardware in ndo_stop + - net: netsec: enable tx-irq during open callback + + * Fix several bugs in RDMA/hns driver (LP: #1770974) + - RDMA/hns: Drop local zgid in favor of core defined variable + - RDMA/hns: Add 64KB page size support for hip08 + - RDMA/hns: Rename the idx field of db + - RDMA/hns: Modify uar allocation algorithm to avoid bitmap exhaust + - RDMA/hns: Increase checking CMQ status timeout value + - RDMA/hns: Add reset process for RoCE in hip08 + - RDMA/hns: Fix the illegal memory operation when cross page + - RDMA/hns: Implement the disassociate_ucontext API + + * powerpc/livepatch: Implement reliable stack tracing for the consistency + model (LP: #1771844) + - powerpc/livepatch: Implement reliable stack tracing for the consistency + model + + * Adding back alx WoL feature (LP: #1772610) + - SAUCE: Revert "alx: remove WoL support" + - SAUCE: alx: add enable_wol paramenter + + * Lancer A0 Asic HBA's won't boot with 18.04 (LP: #1768103) + - scsi: lpfc: Fix WQ/CQ creation for older asic's. + - scsi: lpfc: Fix 16gb hbas failing cq create. + + * [LTCTest][OPAL][OP920] cpupower idle-info is not listing stop4 and stop5 + idle states when all CORES are guarded (LP: #1771780) + - powerpc/powernv/cpuidle: Init all present cpus for deep states + + * Huawei 25G/100G Network Adapters Unsupported (LP: #1770970) + - net-next/hinic: add pci device ids for 25ge and 100ge card + + * Expose arm64 CPU topology to userspace (LP: #1770231) + - drivers: base: cacheinfo: move cache_setup_of_node() + - drivers: base: cacheinfo: setup DT cache properties early + - cacheinfo: rename of_node to fw_token + - arm64/acpi: Create arch specific cpu to acpi id helper + - ACPI/PPTT: Add Processor Properties Topology Table parsing + - [Config] CONFIG_ACPI_PPTT=y + - ACPI: Enable PPTT support on ARM64 + - drivers: base cacheinfo: Add support for ACPI based firmware tables + - arm64: Add support for ACPI based firmware tables + - arm64: topology: rename cluster_id + - arm64: topology: enable ACPI/PPTT based CPU topology + - ACPI: Add PPTT to injectable table list + - arm64: topology: divorce MC scheduling domain from core_siblings + + * Vcs-Git header on bionic linux source package points to zesty git tree + (LP: #1766055) + - [Packaging]: Update Vcs-Git + + * Request to revert SAUCE patches in the 18.04 SRU and update with upstream + version (LP: #1768431) + - scsi: cxlflash: Handle spurious interrupts + - scsi: cxlflash: Remove commmands from pending list on timeout + - scsi: cxlflash: Synchronize reset and remove ops + - SAUCE: (no-up) cxlflash: OCXL diff between v2 and v3 + + * hisi_sas robustness fixes (LP: #1774466) + - scsi: hisi_sas: delete timer when removing hisi_sas driver + - scsi: hisi_sas: print device id for errors + - scsi: hisi_sas: Add some checks to avoid free'ing a sas_task twice + - scsi: hisi_sas: check host frozen before calling "done" function + - scsi: hisi_sas: check sas_dev gone earlier in hisi_sas_abort_task() + - scsi: hisi_sas: stop controller timer for reset + - scsi: hisi_sas: update PHY linkrate after a controller reset + - scsi: hisi_sas: change slot index allocation mode + - scsi: hisi_sas: Change common allocation mode of device id + - scsi: hisi_sas: Reset disks when discovered + - scsi: hisi_sas: Create a scsi_host_template per HW module + - scsi: hisi_sas: Init disks after controller reset + - scsi: hisi_sas: Try wait commands before before controller reset + - scsi: hisi_sas: Include TMF elements in struct hisi_sas_slot + - scsi: hisi_sas: Add v2 hw force PHY function for internal ATA command + - scsi: hisi_sas: Terminate STP reject quickly for v2 hw + - scsi: hisi_sas: Fix return value when get_free_slot() failed + - scsi: hisi_sas: Mark PHY as in reset for nexus reset + + * hisi_sas: Support newer v3 hardware (LP: #1774467) + - scsi: hisi_sas: update RAS feature for later revision of v3 HW + - scsi: hisi_sas: check IPTT is valid before using it for v3 hw + - scsi: hisi_sas: fix PI memory size + - scsi: hisi_sas: config ATA de-reset as an constrained command for v3 hw + - scsi: hisi_sas: remove redundant handling to event95 for v3 + - scsi: hisi_sas: add readl poll timeout helper wrappers + - scsi: hisi_sas: workaround a v3 hw hilink bug + - scsi: hisi_sas: Add LED feature for v3 hw + + * hisi_sas: improve performance by optimizing DQ locking (LP: #1774472) + - scsi: hisi_sas: optimise the usage of DQ locking + - scsi: hisi_sas: relocate smp sg map + - scsi: hisi_sas: make return type of prep functions void + - scsi: hisi_sas: allocate slot buffer earlier + - scsi: hisi_sas: Don't lock DQ for complete task sending + - scsi: hisi_sas: Use device lock to protect slot alloc/free + - scsi: hisi_sas: add check of device in hisi_sas_task_exec() + - scsi: hisi_sas: fix a typo in hisi_sas_task_prep() + + * FS-Cache: Assertion failed: FS-Cache: 6 == 5 is false (LP: #1774336) + - SAUCE: CacheFiles: fix a read_waiter/read_copier race + + * enable mic-mute hotkey and led on Lenovo M820z and M920z (LP: #1774306) + - ALSA: hda/realtek - Enable mic-mute hotkey for several Lenovo AIOs + + * hns3 driver updates (LP: #1768670) + - net: hns3: Remove error log when getting pfc stats fails + - net: hns3: fix to correctly fetch l4 protocol outer header + - net: hns3: Fixes the out of bounds access in hclge_map_tqp + - net: hns3: Fixes the error legs in hclge_init_ae_dev function + - net: hns3: fix for phy_addr error in hclge_mac_mdio_config + - net: hns3: Fix to support autoneg only for port attached with phy + - net: hns3: fix a dead loop in hclge_cmd_csq_clean + - net: hns3: Fix for packet loss due wrong filter config in VLAN tbls + - net: hns3: Remove packet statistics in the range of 8192~12287 + - net: hns3: Add support of hardware rx-vlan-offload to HNS3 VF driver + - net: hns3: Fix for setting mac address when resetting + - net: hns3: remove add/del_tunnel_udp in hns3_enet module + - net: hns3: fix for cleaning ring problem + - net: hns3: refactor the loopback related function + - net: hns3: Fix for deadlock problem occurring when unregistering ae_algo + - net: hns3: Fix for the null pointer problem occurring when initializing + ae_dev failed + - net: hns3: Add a check for client instance init state + - net: hns3: Change return type of hnae3_register_ae_dev + - net: hns3: Change return type of hnae3_register_ae_algo + - net: hns3: Change return value in hnae3_register_client + - net: hns3: Fixes the back pressure setting when sriov is enabled + - net: hns3: Fix for fiber link up problem + - net: hns3: Add support of .sriov_configure in HNS3 driver + - net: hns3: Fixes the missing PCI iounmap for various legs + - net: hns3: Fixes error reported by Kbuild and internal review + - net: hns3: Fixes API to fetch ethernet header length with kernel default + - net: hns3: cleanup of return values in hclge_init_client_instance() + - net: hns3: Fix the missing client list node initialization + - net: hns3: Fix for hns3 module is loaded multiple times problem + - net: hns3: Use enums instead of magic number in hclge_is_special_opcode + - net: hns3: Fix for netdev not running problem after calling net_stop and + net_open + - net: hns3: Fixes kernel panic issue during rmmod hns3 driver + - net: hns3: Fix for CMDQ and Misc. interrupt init order problem + - net: hns3: Updates RX packet info fetch in case of multi BD + - net: hns3: Add support for tx_accept_tag2 and tx_accept_untag2 config + - net: hns3: Add STRP_TAGP field support for hardware revision 0x21 + - net: hns3: Add support to enable TX/RX promisc mode for H/W rev(0x21) + - net: hns3: Fix for PF mailbox receving unknown message + - net: hns3: Fixes the state to indicate client-type initialization + - net: hns3: Fixes the init of the VALID BD info in the descriptor + - net: hns3: Removes unnecessary check when clearing TX/RX rings + - net: hns3: Clear TX/RX rings when stopping port & un-initializing client + - net: hns3: Remove unused led control code + - net: hns3: Adds support for led locate command for copper port + - net: hns3: Fixes initalization of RoCE handle and makes it conditional + - net: hns3: Disable vf vlan filter when vf vlan table is full + - net: hns3: Add support for IFF_ALLMULTI flag + - net: hns3: Add repeat address checking for setting mac address + - net: hns3: Fix setting mac address error + - net: hns3: Fix for service_task not running problem after resetting + - net: hns3: Fix for hclge_reset running repeatly problem + - net: hns3: Fix for phy not link up problem after resetting + - net: hns3: Add missing break in misc_irq_handle + - net: hns3: Fix for vxlan tx checksum bug + - net: hns3: Optimize the PF's process of updating multicast MAC + - net: hns3: Optimize the VF's process of updating multicast MAC + - SAUCE: {topost} net: hns3: add support for serdes loopback selftest + - SAUCE: {topost} net: hns3: RX BD information valid only in last BD except + VLD bit and buffer size + - SAUCE: {topost} net: hns3: remove hclge_get_vector_index from + hclge_bind_ring_with_vector + - SAUCE: {topost} net: hns3: rename the interface for init_client_instance and + uninit_client_instance + - SAUCE: {topost} net: hns3: add vector status check before free vector + - SAUCE: {topost} net: hns3: add l4_type check for both ipv4 and ipv6 + - SAUCE: {topost} net: hns3: remove unused head file in hnae3.c + - SAUCE: {topost} net: hns3: extraction an interface for state state + init|uninit + - SAUCE: {topost} net: hns3: print the ret value in error information + - SAUCE: {topost} net: hns3: remove the Redundant put_vector in + hns3_client_uninit + - SAUCE: {topost} net: hns3: add unlikely for error check + - SAUCE: {topost} net: hns3: remove back in struct hclge_hw + - SAUCE: {topost} net: hns3: use lower_32_bits and upper_32_bits + - SAUCE: {topost} net: hns3: remove unused hclge_ring_to_dma_dir + - SAUCE: {topost} net: hns3: remove useless code in hclge_cmd_send + - SAUCE: {topost} net: hns3: remove some redundant assignments + - SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean + - SAUCE: {topost} net: hns3: using modulo for cyclic counters in + hclge_cmd_send + - SAUCE: {topost} net: hns3: remove a redundant hclge_cmd_csq_done + - SAUCE: {topost} net: hns3: remove some unused members of some structures + - SAUCE: {topost} net: hns3: give default option while dependency HNS3 set + - SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead of + kzalloc/dma_map_single + - SAUCE: {topost} net: hns3: modify hnae_ to hnae3_ + - SAUCE: {topost} net: hns3: fix unused function warning in VF driver + - SAUCE: {topost} net: hns3: remove some redundant assignments + - SAUCE: {topost} net: hns3: standardize the handle of return value + - SAUCE: {topost} net: hns3: remove extra space and brackets + - SAUCE: {topost} net: hns3: fix unreasonable code comments + - SAUCE: {topost} net: hns3: use decimal for bit offset macros + - SAUCE: {topost} net: hns3: modify inconsistent bit mask macros + - SAUCE: {topost} net: hns3: fix mislead parameter name + - SAUCE: {topost} net: hns3: remove unused struct member and definition + - SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver + - SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE + - SAUCE: {topost} net: hns3: optimize the process of notifying roce client + - SAUCE: {topost} net: hns3: Add calling roce callback function when link + status change + - SAUCE: {topost} net: hns3: fix tc setup when netdev is first up + - SAUCE: {topost} net: hns3: fix for mac pause not disable in pfc mode + - SAUCE: {topost} net: hns3: fix for waterline not setting correctly + - SAUCE: {topost} net: hns3: fix for l4 checksum offload bug + - SAUCE: {topost} net: hns3: fix for mailbox message truncated problem + - SAUCE: {topost} net: hns3: Add configure for mac minimal frame size + - SAUCE: {topost} net: hns3: fix warning bug when doing lp selftest + - SAUCE: {topost} net: hns3: fix get_vector ops in hclgevf_main module + - SAUCE: {topost} net: hns3: remove the warning when clear reset cause + - SAUCE: {topost} net: hns3: Use roce handle when calling roce callback + function + - SAUCE: {topost} net: hns3: prevent sending command during global or core + reset + - SAUCE: {topost} net: hns3: modify the order of initializeing command queue + register + - SAUCE: {topost} net: hns3: reset net device with rtnl_lock + - SAUCE: {topost} net: hns3: prevent to request reset frequently + - SAUCE: {topost} net: hns3: correct reset event status register + - SAUCE: {topost} net: hns3: separate roce from nic when resetting + - SAUCE: net: hns3: Fix for phy link issue when using marvell phy driver + - SAUCE: {topost} net: hns3: fix return value error in + hns3_reset_notify_down_enet + - SAUCE: {topost} net: hns3: remove unnecessary ring configuration operation + while resetting + - SAUCE: {topost} net: hns3: fix for reset_level default assignment probelm + - SAUCE: {topost} net: hns3: fix for using wrong mask and shift in + hclge_get_ring_chain_from_mbx + - SAUCE: {topost} net: hns3: fix comments for hclge_get_ring_chain_from_mbx + - SAUCE: net: hns3: Fix for VF mailbox cannot receiving PF response + - SAUCE: net: hns3: Fix for VF mailbox receiving unknown message + - SAUCE: net: hns3: Optimize PF CMDQ interrupt switching process + + * CVE-2018-7755 + - SAUCE: floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl + + * Incorrect blacklist of bcm2835_wdt (LP: #1766052) + - [Packaging] Fix missing watchdog for Raspberry Pi + + * kernel: Fix arch random implementation (LP: #1775391) + - s390/archrandom: Rework arch random implementation. + + * [Ubuntu 1804][boston][ixgbe] EEH causes kernel BUG at /build/linux- + jWa1Fv/linux-4.15.0/drivers/pci/msi.c:352 (i2S) (LP: #1776389) + - ixgbe/ixgbevf: Free IRQ when PCI error recovery removes the device + + * Cosmic update to v4.17.2 stable release (LP: #1779117) + - crypto: chelsio - request to HW should wrap + - blkdev_report_zones_ioctl(): Use vmalloc() to allocate large buffers + - KVM: X86: Fix reserved bits check for MOV to CR3 + - KVM: x86: introduce linear_{read,write}_system + - kvm: fix typo in flag name + - kvm: nVMX: Enforce cpl=0 for VMX instructions + - KVM: x86: pass kvm_vcpu to kvm_read_guest_virt and + kvm_write_guest_virt_system + - kvm: x86: use correct privilege level for sgdt/sidt/fxsave/fxrstor access + - staging: android: ion: Switch to pr_warn_once in ion_buffer_destroy + - NFC: pn533: don't send USB data off of the stack + - usbip: vhci_sysfs: fix potential Spectre v1 + - usb-storage: Add support for FL_ALWAYS_SYNC flag in the UAS driver + - usb-storage: Add compatibility quirk flags for G-Technologies G-Drive + - Input: xpad - add GPD Win 2 Controller USB IDs + - phy: qcom-qusb2: Fix crash if nvmem cell not specified + - usb: core: message: remove extra endianness conversion in + usb_set_isoch_delay + - usb: typec: wcove: Remove dependency on HW FSM + - usb: gadget: function: printer: avoid wrong list handling in printer_write() + - usb: gadget: udc: renesas_usb3: fix double phy_put() + - usb: gadget: udc: renesas_usb3: should remove debugfs + - usb: gadget: udc: renesas_usb3: should call pm_runtime_enable() before add + udc + - usb: gadget: udc: renesas_usb3: should call devm_phy_get() before add udc + - usb: gadget: udc: renesas_usb3: should fail if devm_phy_get() returns error + - usb: gadget: udc: renesas_usb3: disable the controller's irqs for + reconnecting + - serial: sh-sci: Stop using printk format %pCr + - tty/serial: atmel: use port->name as name in request_irq() + - serial: samsung: fix maxburst parameter for DMA transactions + - serial: 8250: omap: Fix idling of clocks for unused uarts + - vmw_balloon: fixing double free when batching mode is off + - doc: fix sysfs ABI documentation + - arm64: defconfig: Enable CONFIG_PINCTRL_MT7622 by default + - tty: pl011: Avoid spuriously stuck-off interrupts + - crypto: ccree - correct host regs offset + - Input: goodix - add new ACPI id for GPD Win 2 touch screen + - Input: elan_i2c - add ELAN0612 (Lenovo v330 14IKB) ACPI ID + - crypto: caam - strip input zeros from RSA input buffer + - crypto: caam - fix DMA mapping dir for generated IV + - crypto: caam - fix IV DMA mapping and updating + - crypto: caam/qi - fix IV DMA mapping and updating + - crypto: caam - fix size of RSA prime factor q + - crypto: cavium - Fix fallout from CONFIG_VMAP_STACK + - crypto: cavium - Limit result reading attempts + - crypto: vmx - Remove overly verbose printk from AES init routines + - crypto: vmx - Remove overly verbose printk from AES XTS init + - crypto: omap-sham - fix memleak + - Linux 4.17.2 + + * Cosmic update to v4.17.1 stable release (LP: #1779116) + - netfilter: nf_flow_table: attach dst to skbs + - bnx2x: use the right constant + - ip6mr: only set ip6mr_table from setsockopt when ip6mr_new_table succeeds + - ipv6: omit traffic class when calculating flow hash + - l2tp: fix refcount leakage on PPPoL2TP sockets + - netdev-FAQ: clarify DaveM's position for stable backports + - net: metrics: add proper netlink validation + - net/packet: refine check for priv area size + - rtnetlink: validate attributes in do_setlink() + - sctp: not allow transport timeout value less than HZ/5 for hb_timer + - team: use netdev_features_t instead of u32 + - vrf: check the original netdevice for generating redirect + - net: dsa: b53: Fix for brcm tag issue in Cygnus SoC + - ipmr: fix error path when ipmr_new_table fails + - PCI: hv: Do not wait forever on a device that has disappeared + - Linux 4.17.1 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: crypto: thunderx_zip: Fix fallout from + CONFIG_VMAP_STACK" + - Revert "UBUNTU: SAUCE: cred: Add clone_cred() interface" + - SAUCE: apparmor: userspace queries + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: af_unix mediation + + -- Seth Forshee Thu, 28 Jun 2018 08:03:32 -0500 + +linux (4.17.0-2.3) cosmic; urgency=medium + + * linux: 4.17.0-2.3 -proposed tracker (LP: #1776276) + + * Miscellaneous Ubuntu changes + - Config: remove IrDA from annotations + - Config: remove scsi drivers from annotations + - Config: remove BT_HCIBTUART from annotations + - Config: pstore zlib support was renamed + - Config: disable NVRAM for armhf on annotations + - Config: Disable VT on s390x + - Config: Update SSB and B43/B44 options + - Config: some options not supported on some arches anymore + - Config: renamed and removed options + - Config: TCG_CRB is required for IMA on ACPI systems + - Config: EXTCON_AXP288 depends on X86 + - Config: CONFIG_FSI depends on OF + - Config: DRM_RCAR_LVDS now depends on DRM + - CONFIG: Allow CONFIG_LEDS_MLXCPLD for i386 + - Config: Enable HINIC on arm64 + - Config: Set PPS and PTP_1588_CLOCK as y + - Config: Some NF_TABLES options are built-in now + - Config: GENERIC_CPU for ppc64el + - Config: KEXEC_FILE=n for s390x + - Config: CRYPTO_DEFLATE is needed by PSTORE_DEFLATE_COMPRESS + - Config: Disable STM32 support + - Config: Enable FORTIFY_SOURCE for armhf + - Config: use STRONG instead of AUTO for CC_STACKPROTECTOR + + [ Upstream Kernel Changes ] + + * Rebase to v4.17 + + -- Thadeu Lima de Souza Cascardo Mon, 11 Jun 2018 15:22:10 -0300 + +linux (4.17.0-1.2) cosmic; urgency=medium + + [ Seth Forshee ] + * [Config] enable EDAC_DEBUG on ARM64 (LP: #1772516) + - [Config]: set CONFIG_EDAC_DEBUG=y for ARM64 + + * Ubuntu 18.04 kernel crashed while in degraded mode (LP: #1770849) + - SAUCE: powerpc/perf: Fix memory allocation for core-imc based on + num_possible_cpus() + + * Integrated Webcam Realtek Integrated_Webcam_HD (0bda:58f4) not working in + DELL XPS 13 9370 with firmware 1.50 (LP: #1763748) + - SAUCE: media: uvcvideo: Support realtek's UVC 1.5 device + + * Switch Build-Depends: transfig to fig2dev (LP: #1770770) + - [Config] update Build-Depends: transfig to fig2dev + + * update-initramfs not adding i915 GuC firmware for Kaby Lake, firmware fails + to load (LP: #1728238) + - Revert "UBUNTU: SAUCE: (no-up) i915: Remove MODULE_FIRMWARE statements for + unreleased firmware" + + * No driver for Huawei network adapters on arm64 (LP: #1769899) + - net-next/hinic: add arm64 support + + * linux-snapdragon: reduce EPROBEDEFER noise during boot (LP: #1768761) + - [Config] snapdragon: DRM_I2C_ADV7511=y + + * Add d-i support for Huawei NICs (LP: #1767490) + - d-i: add hinic to nic-modules udeb + + * Acer Swift sf314-52 power button not managed (LP: #1766054) + - SAUCE: platform/x86: acer-wmi: add another KEY_POWER keycode + + * Include nfp driver in linux-modules (LP: #1768526) + - [Config] Add nfp.ko to generic inclusion list + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub + - [Config] CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT=y + - SAUCE: (efi-lockdown) really lock down kernel under EFI secure boot + - SAUCE: (noup) Update spl to 0.7.5-1ubuntu3, zfs to 0.7.5-1ubuntu17 + - enable zfs build + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) ima: require secure_boot rules in + lockdown mode" + - Rebased to v4.17-rc6 + + -- Thadeu Lima de Souza Cascardo Tue, 22 May 2018 14:48:13 -0300 + +linux (4.17.0-0.1) bionic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.17-rc4 + + -- Thadeu Lima de Souza Cascardo Tue, 08 May 2018 16:38:51 -0300 + +linux (4.17.0-0.0) bionic; urgency=medium + + * Dummy entry. + + -- Thadeu Lima de Souza Cascardo Fri, 27 Apr 2018 11:01:13 -0300 + +linux (4.16.0-4.5) bionic; urgency=medium + + * [18.04 FEAT] Add kvm_stat from kernel tree (LP: #1734130) + - tools/kvm_stat: Fix python3 syntax + - tools/kvm_stat: Don't use deprecated file() + - tools/kvm_stat: Remove unused function + - [Packaging] Add linux-tools-host package for VM host tools + - [Config] do_tools_host=true for amd64 + + * [Featire] CNL: Enable RAPL support (LP: #1685712) + - powercap: RAPL: Add support for Cannon Lake + + * Bionic update to v4.16.2 stable release (LP: #1763388) + - sparc64: Oracle DAX driver depends on SPARC64 + - arp: fix arp_filter on l3slave devices + - net: dsa: Discard frames from unused ports + - net/ipv6: Increment OUTxxx counters after netfilter hook + - net/sched: fix NULL dereference in the error path of tcf_bpf_init() + - pptp: remove a buggy dst release in pptp_connect() + - sctp: do not leak kernel memory to user space + - sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 + - vlan: also check phy_driver ts_info for vlan's real device + - net: fool proof dev_valid_name() + - ip_tunnel: better validate user provided tunnel names + - ipv6: sit: better validate user provided tunnel names + - ip6_gre: better validate user provided tunnel names + - ip6_tunnel: better validate user provided tunnel names + - vti6: better validate user provided tunnel names + - net_sched: fix a missing idr_remove() in u32_delete_key() + - nfp: use full 40 bits of the NSP buffer address + - Linux 4.16.2 + + * sky2 gigabit ethernet driver sometimes stops working after lid-open resume + from sleep (88E8055) (LP: #1758507) // Bionic update to v4.16.2 stable + release (LP: #1763388) + - sky2: Increase D3 delay to sky2 stops working after suspend + + * Merge the linux-snapdragon kernel into bionic master/snapdragon + (LP: #1763040) + - arm64: defconfig: enable REMOTEPROC + - arm64: defconfig: enable QCOM audio drivers for APQ8016 and DB410c + - kernel: configs; add distro.config + - arm64: configs: enable WCN36xx + - kernel: distro.config: enable debug friendly USB network adpater + - arm64: configs: enable QCOM Venus + - arm64: defconfig: Enable a53/apcs and avs + - arm64: defconfig: enable ondemand governor as default + - arm64: defconfig: enable QCOM_TSENS + - kernel: configs: enable dm_mod and dm_crypt + - Force the SMD regulator driver to be compiled-in + - arm64: defconfig: enable CFG80211_DEFAULT_PS by default + - arm64: configs: enable BT_QCOMSMD + - kernel: configs: add more USB net drivers + - arm64: defconfig: disable ANALOG_TV and DIGITAL_TV + - arm64: configs: Enable camera drivers + - kernel: configs: add freq stat to sysfs + - arm64: defconfig: enable CONFIG_USB_CONFIGFS_F_FS by default + - arm64: defconfig: Enable QRTR features + - kernel: configs: set USB_CONFIG_F_FS in distro.config + - kernel: distro.config: enable 'schedutil' CPUfreq governor + - kernel: distro.config: enable 'fq' and 'fq_codel' qdiscs + - kernel: distro.config: enable 'BBR' TCP congestion algorithm + - arm64: defconfig: enable LEDS_QCOM_LPG + - HACK: drm/msm/iommu: Remove runtime_put calls in map/unmap + - power: avs: Add support for CPR (Core Power Reduction) + - power: avs: cpr: Use raw mem access for qfprom + - power: avs: cpr: fix with new reg_sequence structures + - power: avs: cpr: Register with cpufreq-dt + - regulator: smd: Add floor and corner operations + - PM / OPP: Support adjusting OPP voltages at runtime + - PM / OPP: Drop RCU usage in dev_pm_opp_adjust_voltage() + - PM / OPP: HACK: Allow to set regulator without opp_list + - PM / OPP: Add a helper to get an opp regulator for device + - cpufreq: Add apq8016 to cpufreq-dt-platdev blacklist + - regulator: smd: Allow REGULATOR_QCOM_SMD_RPM=m + - ov5645: I2C address change + - i2c: Add Qualcomm Camera Control Interface driver + - camss: vfe: Skip first four frames from sensor + - camss: Do not register if no cameras are present + - i2c-qcom-cci: Fix run queue completion timeout + - i2c-qcom-cci: Fix I2C address bug + - media: ov5645: Fix I2C address + - drm/bridge/adv7511: Delay clearing of HPD interrupt status + - HACK: drm/msm/adv7511: Don't rely on interrupts for EDID parsing + - leds: Add driver for Qualcomm LPG + - wcn36xx: Fix warning due to duplicate scan_completed notification + - arm64: dts: Add CPR DT node for msm8916 + - arm64: dts: add spmi-regulator nodes + - arm64: dts: msm8916: Add cpufreq support + - arm64: dts: msm8916: Add a shared CPU opp table + - arm64: dts: msm8916: Add cpu cooling maps + - arm64: dts: pm8916: Mark the s2 regulator as always-on + - arm64: dts: qcom: msm8916: Add msm8916 A53 PLL DT node + - arm64: dts: qcom: msm8916: Use the new APCS mailbox driver + - arm64: dts: qcom: msm8916: Add clock properties to the APCS node + - dt-bindings: media: Binding document for Qualcomm Camera Control Interface + driver + - MAINTAINERS: Add Qualcomm Camera Control Interface driver + - DT: leds: Add Qualcomm Light Pulse Generator binding + - arm64: dts: qcom: msm8996: Add mpp and lpg blocks + - arm64: dts: qcom: Add pwm node for pm8916 + - arm64: dts: qcom: Add user LEDs on db820c + - arm64: dts: qcom: Add WiFI/BT LEDs on db820c + - ARM: dts: qcom: Add LPG node to pm8941 + - ARM: dts: qcom: honami: Add LPG node and RGB LED + - arm64: dts: qcom: Add Camera Control Interface support + - arm64: dts: qcom: Add apps_iommu vfe child node + - arm64: dts: qcom: Add camss device node + - arm64: dts: qcom: Add ov5645 device nodes + - arm64: dts: msm8916: Fix camera sensors I2C addresses + - arm: dts: qcom: db410c: Enable PWM signal on MPP4 + - packaging: arm64: add a uboot flavour - part1 + - packaging: arm64: add a uboot flavour - part2 + - packaging: arm64: add a uboot flavour - part3 + - packaging: arm64: add a uboot flavour - part4 + - packaging: arm64: add a uboot flavour - part5 + - packaging: arm64: rename uboot flavour to snapdragon + - [Config] updateconfigs after qcomlt import + - [Config] arm64: snapdragon: COMMON_CLK_QCOM=y + - [Config] arm64: snapdragon: MSM_GCC_8916=y + - [Config] arm64: snapdragon: REGULATOR_FIXED_VOLTAGE=y + - [Config] arm64: snapdragon: PINCTRL_MSM8916=y + - [Config] arm64: snapdragon: HWSPINLOCK_QCOM=y + - [Config] arm64: snapdragon: SPMI=y, SPMI_MSM_PMIC_ARB=y + - [Config] arm64: snapdragon: REGMAP_SPMI=y, PINCTRL_QCOM_SPMI_PMIC=y + - [Config] arm64: snapdragon: REGULATOR_QCOM_SPMI=y + - [Config] arm64: snapdragon: MFD_SPMI_PMIC=y + - [Config] arm64: snapdragon: QCOM_SMEM=y + - [Config] arm64: snapdragon: RPMSG=y, RPMSG_QCOM_SMD=y + - [Config] arm64: snapdragon: QCOM_SMD_RPM=y, REGULATOR_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: QCOM_CLK_SMD_RPM=y + - [Config] arm64: snapdragon: QCOM_BAM_DMA=y + - [Config] arm64: snapdragon: QCOM_HIDMA=y, QCOM_HIDMA_MGMT=y + - [Config] arm64: snapdragon: QCOM_CPR=y + - [Config] arm64: snapdragon: QCOM_QFPROM=y, QCOM_TSENS=y + - [Config] arm64: snapdragon: MMC_SDHCI=y, MMC_SDHCI_PLTFM=y, MMC_SDHCI_MSM=y + - [Config] turn off DRM_MSM_REGISTER_LOGGING + - [Config] arm64: snapdragon: I2C_QUP=y + - [Config] arm64: snapdragon: SPI_QUP=y + - [Config] arm64: snapdragon: USB_ULPI_BUS=y, PHY_QCOM_USB_HS=y + - [Config] arm64: snapdragon: QCOM_APCS_IPC=y + - [Config] arm64: snapdragon: QCOM_WCNSS_CTRL=y + - [Config] arm64: snapdragon: QCOM_SMSM=y + - [Config] arm64: snapdragon: QCOM_SMP2P=y + - [Config] arm64: snapdragon: DRM_MSM=y + - [Config] arm64: snapdragon: SND_SOC=y + - [Config] arm64: snapdragon: QCOM_WCNSS_PIL=m + - [Config] arm64: snapdragon: INPUT_PM8941_PWRKEY=y + - [Config] arm64: snapdragon: MEDIA_SUBDRV_AUTOSELECT=y, VIDEO_OV5645=m + - [Config] arm64: snapdragon: SND_SOC_APQ8016_SBC=y, SND_SOC_LPASS_APQ8016=y + - [Config] arm64: snapdragon: SND_SOC_MSM8916_WCD_ANALOG=y, + SND_SOC_MSM8916_WCD_DIGITAL=y + - SAUCE: media: ov5645: skip address change if dt addr == default addr + - SAUCE: drm/msm/adv7511: wrap hacks under CONFIG_ADV7511_SNAPDRAGON_HACKS + #ifdefs + - [Config] arm64: snapdragon: ADV7511_SNAPDRAGON_HACKS=y + - [Packaging] fix up snapdragon abi paths + + * LSM stacking patches for bionic (LP: #1763062) + - SAUCE: LSM stacking: procfs: add smack subdir to attrs + - SAUCE: LSM stacking: LSM: Manage credential security blobs + - SAUCE: LSM stacking: LSM: Manage file security blobs + - SAUCE: LSM stacking: LSM: Manage task security blobs + - SAUCE: LSM stacking: LSM: Manage remaining security blobs + - SAUCE: LSM stacking: LSM: General stacking + - SAUCE: LSM stacking: fixup initialize task->security + - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code + - SAUCE: LSM stacking: add support for stacking getpeersec_stream + - SAUCE: LSM stacking: add stacking support to apparmor network hooks + - SAUCE: LSM stacking: fixup apparmor stacking enablement + - SAUCE: LSM stacking: fixup stacking kconfig + - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params + - SAUCE: LSM stacking: provide prctl interface for setting context + - SAUCE: LSM stacking: inherit current display LSM + - SAUCE: LSM stacking: keep an index for each registered LSM + - SAUCE: LSM stacking: verify display LSM + - SAUCE: LSM stacking: provide a way to specify the default display lsm + - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries + - SAUCE: LSM stacking: add /proc//attr/display_lsm + - SAUCE: LSM stacking: add Kconfig to set default display LSM + - SAUCE: LSM stacking: add configs for LSM stacking + - SAUCE: LSM stacking: add apparmor and selinux proc dirs + - SAUCE: LSM stacking: remove procfs context interface + + * linux 4.13.0-13.14 ADT test failure with linux 4.13.0-13.14 + (LP: #1720779) // LSM stacking patches for bionic (LP: #1763062) + - SAUCE: LSM stacking: check for invalid zero sized writes + + * Support cq/rq record doorbell for RDMA on HSilicon hip08 systems + (LP: #1762755) + - RDMA/hns: Support rq record doorbell for the user space + - RDMA/hns: Support cq record doorbell for the user space + - RDMA/hns: Support rq record doorbell for kernel space + - RDMA/hns: Support cq record doorbell for kernel space + - RDMA/hns: Fix cqn type and init resp + - RDMA/hns: Fix init resp when alloc ucontext + - RDMA/hns: Fix cq record doorbell enable in kernel + + * Replace LPC patchset with upstream version (LP: #1762758) + - Revert "UBUNTU: SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver" + - Revert "UBUNTU: SAUCE: HISI LPC: Add ACPI support" + - Revert "UBUNTU: SAUCE: ACPI / scan: do not enumerate Indirect IO host + children" + - Revert "UBUNTU: SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT + bindings" + - Revert "UBUNTU: SAUCE: OF: Add missing I/O range exception for indirect-IO + devices" + - Revert "UBUNTU: SAUCE: PCI: Apply the new generic I/O management on PCI IO + hosts" + - Revert "UBUNTU: SAUCE: PCI: Add fwnode handler as input param of + pci_register_io_range()" + - Revert "UBUNTU: SAUCE: PCI: Remove unused __weak attribute in + pci_register_io_range()" + - Revert "UBUNTU: SAUCE: LIB: Introduce a generic PIO mapping method" + - lib: Add generic PIO mapping method + - PCI: Remove __weak tag from pci_register_io_range() + - PCI: Add fwnode handler as input param of pci_register_io_range() + - PCI: Apply the new generic I/O management on PCI IO hosts + - of: Add missing I/O range exception for indirect-IO devices + - HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings + - ACPI / scan: Rename acpi_is_serial_bus_slave() for more general use + - ACPI / scan: Do not enumerate Indirect IO host children + - HISI LPC: Add ACPI support + - MAINTAINERS: Add John Garry as maintainer for HiSilicon LPC driver + + * Enable Tunneled Operations on POWER9 (LP: #1762448) + - powerpc/powernv: Enable tunneled operations + - cxl: read PHB indications from the device tree + + * PSL traces reset after PERST for debug AFU image (LP: #1762462) + - cxl: Enable NORST bit in PSL_DEBUG register for PSL9 + + * NFS + sec=krb5 is broken (LP: #1759791) + - sunrpc: remove incorrect HMAC request initialization + + * Raspberry Pi 3 microSD support missing from the installer (LP: #1729128) + - d-i: add bcm2835 to block-modules + + * Backport USB core quirks (LP: #1762695) + - usb: core: Add "quirks" parameter for usbcore + - usb: core: Copy parameter string correctly and remove superfluous null check + - usb: core: Add USB_QUIRK_DELAY_CTRL_MSG to usbcore quirks + + * [Ubuntu 18.04] cryptsetup: 'device-mapper: reload ioctl on failed' when + setting up a second end-to-end encrypted disk (LP: #1762353) + - SAUCE: s390/crypto: Adjust s390 aes and paes cipher + + * System Z {kernel} UBUNTU18.04 wrong kernel config (LP: #1762719) + - s390: move nobp parameter functions to nospec-branch.c + - s390: add automatic detection of the spectre defense + - s390: report spectre mitigation via syslog + - s390: add sysfs attributes for spectre + - [Config] CONFIG_EXPOLINE_AUTO=y, CONFIG_KERNEL_NOBP=n for s390 + - s390: correct nospec auto detection init order + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 + - powerpc/64s: Wire up cpu_show_spectre_v2() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5753 + - powerpc/64s: Wire up cpu_show_spectre_v1() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5754 + - powerpc/rfi-flush: Move the logic to avoid a redo into the debugfs code + - powerpc/rfi-flush: Make it possible to call setup_rfi_flush() again + - powerpc/rfi-flush: Always enable fallback flush on pseries + - powerpc/rfi-flush: Differentiate enabled and patched flush types + - powerpc/rfi-flush: Call setup_rfi_flush() after LPM migration + - powerpc/64s: Move cpu_show_meltdown() + - powerpc/64s: Enhance the information in cpu_show_meltdown() + - powerpc/powernv: Use the security flags in pnv_setup_rfi_flush() + - powerpc/pseries: Use the security flags in pseries_setup_rfi_flush() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 // + CVE-2017-5753 // CVE-2017-5754 + - powerpc/pseries: Add new H_GET_CPU_CHARACTERISTICS flags + - powerpc: Add security feature flags for Spectre/Meltdown + - powerpc/pseries: Set or clear security feature flags + - powerpc/powernv: Set or clear security feature flags + + * Hisilicon network subsystem 3 support (LP: #1761610) + - net: hns3: export pci table of hclge and hclgevf to userspace + - d-i: Add hns3 drivers to nic-modules + + * "ip a" command on a guest VM shows UNKNOWN status (LP: #1761534) + - virtio-net: Fix operstate for virtio when no VIRTIO_NET_F_STATUS + + * perf vendor events arm64: Enable JSON events for ThunderX2 B0 (LP: #1760712) + - perf vendor events: Drop incomplete multiple mapfile support + - perf vendor events: Fix error code in json_events() + - perf vendor events: Drop support for unused topic directories + - perf vendor events: Add support for pmu events vendor subdirectory + - perf vendor events arm64: Relocate ThunderX2 JSON to cavium subdirectory + - perf vendor events arm64: Relocate Cortex A53 JSONs to arm subdirectory + - perf vendor events: Add support for arch standard events + - perf vendor events arm64: Add armv8-recommended.json + - perf vendor events arm64: Fixup ThunderX2 to use recommended events + - perf vendor events arm64: fixup A53 to use recommended events + - perf vendor events arm64: add HiSilicon hip08 JSON file + - perf vendor events arm64: Enable JSON events for ThunderX2 B0 + + * Warning "cache flush timed out!" seen when unloading the cxl driver + (LP: #1762367) + - cxl: Check if PSL data-cache is available before issue flush request + + * Bionic update to v4.16.1 stable release (LP: #1763170) + - bitmap: fix memset optimization on big-endian systems + - USB: serial: ftdi_sio: add RT Systems VX-8 cable + - USB: serial: ftdi_sio: add support for Harman FirmwareHubEmulator + - USB: serial: cp210x: add ELDAT Easywave RX09 id + - serial: 8250: Add Nuvoton NPCM UART + - mei: remove dev_err message on an unsupported ioctl + - /dev/mem: Avoid overwriting "err" in read_mem() + - media: usbtv: prevent double free in error case + - parport_pc: Add support for WCH CH382L PCI-E single parallel port card. + - crypto: lrw - Free rctx->ext with kzfree + - crypto: ccp - Fill the result buffer only on digest, finup, and final ops + - crypto: talitos - don't persistently map req_ctx->hw_context and + req_ctx->buf + - crypto: inside-secure - fix clock management + - crypto: testmgr - Fix incorrect values in PKCS#1 test vector + - crypto: talitos - fix IPsec cipher in length + - crypto: ahash - Fix early termination in hash walk + - crypto: caam - Fix null dereference at error path + - crypto: ccp - return an actual key size from RSA max_size callback + - crypto: arm,arm64 - Fix random regeneration of S_shipped + - crypto: x86/cast5-avx - fix ECB encryption when long sg follows short one + - Bluetooth: hci_bcm: Add 6 new ACPI HIDs + - Btrfs: fix unexpected cow in run_delalloc_nocow + - siox: fix possible buffer overflow in device_add_store + - staging: comedi: ni_mio_common: ack ai fifo error interrupts. + - Revert "base: arch_topology: fix section mismatch build warnings" + - Input: ALPS - fix TrackStick detection on Thinkpad L570 and Latitude 7370 + - Input: i8042 - add Lenovo ThinkPad L460 to i8042 reset list + - Input: i8042 - enable MUX on Sony VAIO VGN-CS series to fix touchpad + - vt: change SGR 21 to follow the standards + - Fix slab name "biovec-(1<<(21-12))" + - signal: Correct the offset of si_pkey and si_lower in struct siginfo on m68k + - Linux 4.16.1 + + * [18.04][config] regression: nvme and nvme_core couldn't be built as modules + starting 4.15-rc2 (LP: #1759893) + - SAUCE: Revert "lightnvm: include NVM Express driver if OCSSD is selected for + build" + - [Config] CONFIG_BLK_DEV_NMVE=m + + * FFe: Enable configuring resume offset via sysfs (LP: #1760106) + - PM / hibernate: Make passing hibernate offsets more friendly + + * Ubuntu18.04:POWER9:DD2.2 - Unable to start a KVM guest with default machine + type(pseries-bionic) complaining "KVM implementation does not support + Transactional Memory, try cap-htm=off" (kvm) (LP: #1752026) + - powerpc: Use feature bit for RTC presence rather than timebase presence + - powerpc: Book E: Remove unused CPU_FTR_L2CSR bit + - powerpc: Free up CPU feature bits on 64-bit machines + - powerpc: Add CPU feature bits for TM bug workarounds on POWER9 v2.2 + - powerpc/powernv: Provide a way to force a core into SMT4 mode + - KVM: PPC: Book3S HV: Work around transactional memory bugs in POWER9 + - KVM: PPC: Book3S HV: Work around XER[SO] bug in fake suspend mode + - KVM: PPC: Book3S HV: Work around TEXASR bug in fake suspend state + + * [Feature][CFL][ICL] [CNL]Thunderbolt support (Titan Ridge) (LP: #1730775) + - thunderbolt: Resume control channel after hibernation image is created + - thunderbolt: Serialize PCIe tunnel creation with PCI rescan + - thunderbolt: Handle connecting device in place of host properly + - thunderbolt: Do not overwrite error code when domain adding fails + - thunderbolt: Wait a bit longer for root switch config space + - thunderbolt: Wait a bit longer for ICM to authenticate the active NVM + - thunderbolt: Handle rejected Thunderbolt devices + - thunderbolt: Factor common ICM add and update operations out + - thunderbolt: Correct function name in kernel-doc comment + - thunderbolt: Add tb_switch_get() + - thunderbolt: Add tb_switch_find_by_route() + - thunderbolt: Add tb_xdomain_find_by_route() + - thunderbolt: Add constant for approval timeout + - thunderbolt: Move driver ready handling to struct icm + - thunderbolt: Add 'boot' attribute for devices + - thunderbolt: Add support for preboot ACL + - thunderbolt: Introduce USB only (SL4) security level + - thunderbolt: Add support for Intel Titan Ridge + + * QCA9377 requires more IRAM banks for its new firmware (LP: #1748345) + - ath10k: update the IRAM bank number for QCA9377 + + * Fix an issue that when system in S3, USB keyboard can't wake up the system. + (LP: #1759511) + - ACPI / PM: Allow deeper wakeup power states with no _SxD nor _SxW + + * cxl: Fix timebase synchronization status on POWER9 missing (CAPI) + (LP: #1757228) + - cxl: Fix timebase synchronization status on P9 + + * [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug + fixes (LP: #1752182) + - scsi: lpfc: Fix frequency of Release WQE CQEs + - scsi: lpfc: Increase CQ and WQ sizes for SCSI + - scsi: lpfc: move placement of target destroy on driver detach + - scsi: lpfc: correct debug counters for abort + - scsi: lpfc: Add WQ Full Logic for NVME Target + - scsi: lpfc: Fix PRLI handling when topology type changes + - scsi: lpfc: Fix IO failure during hba reset testing with nvme io. + - scsi: lpfc: Fix RQ empty firmware trap + - scsi: lpfc: Allow set of maximum outstanding SCSI cmd limit for a target + - scsi: lpfc: Fix soft lockup in lpfc worker thread during LIP testing + - scsi: lpfc: Fix issue_lip if link is disabled + - scsi: lpfc: Indicate CONF support in NVMe PRLI + - scsi: lpfc: Fix SCSI io host reset causing kernel crash + - scsi: lpfc: Validate adapter support for SRIU option + - scsi: lpfc: Fix header inclusion in lpfc_nvmet + - scsi: lpfc: Treat SCSI Write operation Underruns as an error + - scsi: lpfc: Fix nonrecovery of NVME controller after cable swap. + - scsi: lpfc: update driver version to 11.4.0.7 + - scsi: lpfc: Update 11.4.0.7 modified files for 2018 Copyright + - scsi: lpfc: Rework lpfc to allow different sli4 cq and eq handlers + - scsi: lpfc: Rework sli4 doorbell infrastructure + - scsi: lpfc: Add SLI-4 if_type=6 support to the code base + - scsi: lpfc: Add push-to-adapter support to sli4 + - scsi: lpfc: Add PCI Ids for if_type=6 hardware + - scsi: lpfc: Add 64G link speed support + - scsi: lpfc: Add if_type=6 support for cycling valid bits + - scsi: lpfc: Enable fw download on if_type=6 devices + - scsi: lpfc: Add embedded data pointers for enhanced performance + - scsi: lpfc: Fix nvme embedded io length on new hardware + - scsi: lpfc: Work around NVME cmd iu SGL type + - scsi: lpfc: update driver version to 12.0.0.0 + - scsi: lpfc: Change Copyright of 12.0.0.0 modified files to 2018 + - scsi: lpfc: use __raw_writeX on DPP copies + - scsi: lpfc: Add missing unlock in WQ full logic + + * /dev/bcache/by-uuid links not created after reboot (LP: #1729145) + - SAUCE: (no-up) bcache: decouple emitting a cached_dev CHANGE uevent + + * DKMS driver builds fail with: Cannot use CONFIG_STACK_VALIDATION=y, please + install libelf-dev, libelf-devel or elfutils-libelf-devel (LP: #1760876) + - [Packaging] include the retpoline extractor in the headers + + * Use med_with_dipm SATA LPM to save more power for mobile platforms + (LP: #1759547) + - [Config] CONFIG_SATA_MOBILE_LPM_POLICY=3 + + * Miscellaneous Ubuntu changes + - [Packaging] Only install cloud init files when do_tools_common=true + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + + -- Seth Forshee Thu, 12 Apr 2018 09:30:56 -0500 + +linux (4.16.0-3.4) bionic; urgency=medium + + * Allow multiple mounts of zfs datasets (LP: #1759848) + - SAUCE: Allow mounting datasets more than once (LP: #1759848) + + * zfs system process hung on container stop/delete (LP: #1754584) + - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) + - Revert "UBUNTU: SAUCE: Fix non-prefaulted page deadlock (LP: #1754584)" + - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) + + * ubuntu_zram_smoke test will cause soft lockup on Artful ThunderX ARM64 + (LP: #1755073) + - SAUCE: crypto: thunderx_zip: Fix fallout from CONFIG_VMAP_STACK + + * CAPI Flash (cxlflash) update (LP: #1752672) + - SAUCE: cxlflash: Preserve number of interrupts for master contexts + - SAUCE: cxlflash: Avoid clobbering context control register value + - SAUCE: cxlflash: Add argument identifier names + - SAUCE: cxlflash: Introduce OCXL backend + - SAUCE: cxlflash: Hardware AFU for OCXL + - SAUCE: cxlflash: Read host function configuration + - SAUCE: cxlflash: Setup function acTag range + - SAUCE: cxlflash: Read host AFU configuration + - SAUCE: cxlflash: Setup AFU acTag range + - SAUCE: cxlflash: Setup AFU PASID + - SAUCE: cxlflash: Adapter context support for OCXL + - SAUCE: cxlflash: Use IDR to manage adapter contexts + - SAUCE: cxlflash: Support adapter file descriptors for OCXL + - SAUCE: cxlflash: Support adapter context discovery + - SAUCE: cxlflash: Support image reload policy modification + - SAUCE: cxlflash: MMIO map the AFU + - SAUCE: cxlflash: Support starting an adapter context + - SAUCE: cxlflash: Support process specific mappings + - SAUCE: cxlflash: Support AFU state toggling + - SAUCE: cxlflash: Support reading adapter VPD data + - SAUCE: cxlflash: Setup function OCXL link + - SAUCE: cxlflash: Setup OCXL transaction layer + - SAUCE: cxlflash: Support process element lifecycle + - SAUCE: cxlflash: Support AFU interrupt management + - SAUCE: cxlflash: Support AFU interrupt mapping and registration + - SAUCE: cxlflash: Support starting user contexts + - SAUCE: cxlflash: Support adapter context polling + - SAUCE: cxlflash: Support adapter context reading + - SAUCE: cxlflash: Support adapter context mmap and release + - SAUCE: cxlflash: Support file descriptor mapping + - SAUCE: cxlflash: Introduce object handle fop + - SAUCE: cxlflash: Setup LISNs for user contexts + - SAUCE: cxlflash: Setup LISNs for master contexts + - SAUCE: cxlflash: Update synchronous interrupt status bits + - SAUCE: cxlflash: Introduce OCXL context state machine + - SAUCE: cxlflash: Register for translation errors + - SAUCE: cxlflash: Support AFU reset + - SAUCE: cxlflash: Enable OCXL operations + + * [Artful][Wyse 3040] System hang when trying to enable an offlined CPU core + (LP: #1736393) + - SAUCE: drm/i915:Don't set chip specific data + - SAUCE: drm/i915: make previous commit affects Wyse 3040 only + + * zed process consuming 100% cpu (LP: #1751796) + - SAUCE: Fix ioctl loop-spin in zed (LP: #1751796) + + * Ubuntu18.04:PowerPC - Set Transparent Huge Pages (THP) by default to + "always" (LP: #1753708) + - Config: Set TRANSPARENT_HUGEPAGE_ALWAYS=y on ppc64el + + * retpoline hints: primary infrastructure and initial hints (LP: #1758856) + - [Packaging] retpoline -- add safe usage hint support + - [Packaging] retpoline-check -- only report additions + - [Packaging] retpoline -- widen indirect call/jmp detection + - [Packaging] retpoline -- elide %rip relative indirections + - [Packaging] retpoline -- clear hint information from packages + - SAUCE: apm -- annotate indirect calls within + firmware_restrict_branch_speculation_{start,end} + - SAUCE: EFI -- annotate indirect calls within + firmware_restrict_branch_speculation_{start,end} + - SAUCE: early/late -- annotate indirect calls in early/late initialisation + code + - SAUCE: vga_set_mode -- avoid jump tables + - [Config] retpoine -- switch to new format + + * Miscellaneous Ubuntu changes + - [Packaging] final-checks -- remove check for empty retpoline files + - [Packaging] skip cloud tools packaging when not building package + + [ Upstream Kernel Changes ] + + * Rebase to v4.16 + + -- Seth Forshee Mon, 02 Apr 2018 16:15:36 -0500 + +linux (4.16.0-2.3) bionic; urgency=medium + + * devpts: handle bind-mounts (LP: #1755857) + - SAUCE: devpts: hoist out check for DEVPTS_SUPER_MAGIC + - SAUCE: devpts: resolve devpts bind-mounts + - SAUCE: devpts: comment devpts_mntget() + - SAUCE: selftests: add devpts selftests + + * [bionic][arm64] d-i: add hisi_sas_v3_hw to scsi-modules (LP: #1756103) + - d-i: add hisi_sas_v3_hw to scsi-modules + + * [Bionic][ARM64] PCI and SAS driver patches for hip08 SoCs (LP: #1756094) + - SAUCE: scsi: hisi_sas: config for hip08 ES + - SAUCE: scsi: hisi_sas: export device table of v3 hw to userspace + + * s390/crypto: Fix kernel crash on aes_s390 module remove (LP: #1753424) + - SAUCE: s390/crypto: Fix kernel crash on aes_s390 module remove. + + * Fix ARC hit rate (LP: #1755158) + - SAUCE: Fix ARC hit rate (LP: #1755158) + + * ZFS setgid broken on 0.7 (LP: #1753288) + - SAUCE: Fix ZFS setgid + + * CONFIG_EFI=y on armhf (LP: #1726362) + - [Config] CONFIG_EFI=y on armhf, reconcile secureboot EFI settings + + * [Feature] Add xHCI debug device support in the driver (LP: #1730832) + - [Config] CONFIG_USB_XHCI_DBGCAP=y + + * retpoline: ignore %cs:0xNNN constant indirections (LP: #1752655) + - [Packaging] retpoline -- elide %cs:0xNNNN constants on i386 + - [Config] retpoline -- clean up i386 retpoline files + + * Miscellaneous Ubuntu changes + - [Packaging] retpoline-extract: flag *0xNNN(%reg) branches + - [Config] fix up retpoline abi files + - [Config] fix up retpoline abi files + - d-i: Add netsec to nic-modules + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc6 + + -- Seth Forshee Mon, 19 Mar 2018 14:09:49 -0500 + +linux (4.16.0-1.2) bionic; urgency=medium + + * Driver not found in Ubuntu kernel does not detect interface (LP: #1745927) + - d-i: add cxgb4 to nic-modules + + * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) + - [Config] CONFIG_INDIRECT_PIO=y + - SAUCE: LIB: Introduce a generic PIO mapping method + - SAUCE: PCI: Remove unused __weak attribute in pci_register_io_range() + - SAUCE: PCI: Add fwnode handler as input param of pci_register_io_range() + - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts + - SAUCE: OF: Add missing I/O range exception for indirect-IO devices + - [Config] CONFIG_HISILICON_LPC=y + - SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings + - SAUCE: ACPI / scan: do not enumerate Indirect IO host children + - SAUCE: HISI LPC: Add ACPI support + - SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver + + * Miscellaneous Ubuntu changes + - SAUCE: tools: use CC for linking acpi tools + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc3 + + -- Seth Forshee Wed, 28 Feb 2018 10:17:23 -0600 + +linux (4.16.0-0.1) bionic; urgency=medium + + * retpoline abi files are empty on i386 (LP: #1751021) + - [Packaging] retpoline-extract -- instantiate retpoline files for i386 + - [Packaging] final-checks -- sanity checking ABI contents + - [Packaging] final-checks -- check for empty retpoline files + + * Miscellaneous upstream changes + - disable vbox build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc2 + + -- Seth Forshee Thu, 22 Feb 2018 08:58:57 -0600 + +linux (4.16.0-0.0) bionic; urgency=medium + + * Dummy entry + + -- Seth Forshee Wed, 21 Feb 2018 14:33:13 -0600 + +linux (4.15.0-10.11) bionic; urgency=medium + + * linux: 4.15.0-10.11 -proposed tracker (LP: #1749250) + + * "swiotlb: coherent allocation failed" dmesg spam with linux 4.15.0-9.10 + (LP: #1749202) + - swiotlb: suppress warning when __GFP_NOWARN is set + - drm/ttm: specify DMA_ATTR_NO_WARN for huge page pools + + * linux-tools: perf incorrectly linking libbfd (LP: #1748922) + - SAUCE: tools -- add ability to disable libbfd + - [Packaging] correct disablement of libbfd + + * [Artful] Realtek ALC225: 2 secs noise when a headset plugged in + (LP: #1744058) + - ALSA: hda/realtek - update ALC225 depop optimize + + * [Artful] Support headset mode for DELL WYSE (LP: #1723913) + - SAUCE: ALSA: hda/realtek - Add support headset mode for DELL WYSE + + * headset mic can't be detected on two Dell machines (LP: #1748807) + - ALSA: hda/realtek - Support headset mode for ALC215/ALC285/ALC289 + - ALSA: hda - Fix headset mic detection problem for two Dell machines + + * Bionic update to v4.15.3 stable release (LP: #1749191) + - ip6mr: fix stale iterator + - net: igmp: add a missing rcu locking section + - qlcnic: fix deadlock bug + - qmi_wwan: Add support for Quectel EP06 + - r8169: fix RTL8168EP take too long to complete driver initialization. + - tcp: release sk_frag.page in tcp_disconnect + - vhost_net: stop device during reset owner + - ipv6: addrconf: break critical section in addrconf_verify_rtnl() + - ipv6: change route cache aging logic + - Revert "defer call to mem_cgroup_sk_alloc()" + - net: ipv6: send unsolicited NA after DAD + - rocker: fix possible null pointer dereference in + rocker_router_fib_event_work + - tcp_bbr: fix pacing_gain to always be unity when using lt_bw + - cls_u32: add missing RCU annotation. + - ipv6: Fix SO_REUSEPORT UDP socket with implicit sk_ipv6only + - soreuseport: fix mem leak in reuseport_add_sock() + - net_sched: get rid of rcu_barrier() in tcf_block_put_ext() + - net: sched: fix use-after-free in tcf_block_put_ext + - media: mtk-vcodec: add missing MODULE_LICENSE/DESCRIPTION + - media: soc_camera: soc_scale_crop: add missing + MODULE_DESCRIPTION/AUTHOR/LICENSE + - media: tegra-cec: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: uniphier: fix mismatch between license text and MODULE_LICENSE + - crypto: tcrypt - fix S/G table for test_aead_speed() + - Linux 4.15.3 + + * bnx2x_attn_int_deasserted3:4323 MC assert! (LP: #1715519) // + CVE-2018-1000026 + - net: create skb_gso_validate_mac_len() + - bnx2x: disable GSO where gso_size is too big for hardware + + * ethtool -p fails to light NIC LED on HiSilicon D05 systems (LP: #1748567) + - net: hns: add ACPI mode support for ethtool -p + + * CVE-2017-5715 (Spectre v2 Intel) + - [Packaging] retpoline files must be sorted + - [Packaging] pull in retpoline files + + * [Feature] PXE boot with Intel Omni-Path (LP: #1712031) + - d-i: Add hfi1 to nic-modules + + * CVE-2017-5715 (Spectre v2 retpoline) + - [Packaging] retpoline -- add call site validation + - [Config] disable retpoline checks for first upload + + * Do not duplicate changelog entries assigned to more than one bug or CVE + (LP: #1743383) + - [Packaging] git-ubuntu-log -- handle multiple bugs/cves better + + -- Seth Forshee Tue, 13 Feb 2018 11:33:58 -0600 + +linux (4.15.0-9.10) bionic; urgency=medium + + * linux: 4.15.0-9.10 -proposed tracker (LP: #1748244) + + * Miscellaneous Ubuntu changes + - [Debian] tests -- remove gcc-multilib dependency for arm64 + + -- Seth Forshee Thu, 08 Feb 2018 11:25:04 -0600 + +linux (4.15.0-8.9) bionic; urgency=medium + + * linux: 4.15.0-8.9 -proposed tracker (LP: #1748075) + + * Bionic update to v4.15.2 stable release (LP: #1748072) + - KVM: x86: Make indirect calls in emulator speculation safe + - KVM: VMX: Make indirect call speculation safe + - module/retpoline: Warn about missing retpoline in module + - x86/cpufeatures: Add CPUID_7_EDX CPUID leaf + - x86/cpufeatures: Add Intel feature bits for Speculation Control + - x86/cpufeatures: Add AMD feature bits for Speculation Control + - x86/msr: Add definitions for new speculation control MSRs + - x86/pti: Do not enable PTI on CPUs which are not vulnerable to Meltdown + - x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre v2 microcodes + - x86/speculation: Add basic IBPB (Indirect Branch Prediction Barrier) support + - x86/alternative: Print unadorned pointers + - x86/nospec: Fix header guards names + - x86/bugs: Drop one "mitigation" from dmesg + - x86/cpu/bugs: Make retpoline module warning conditional + - x86/cpufeatures: Clean up Spectre v2 related CPUID flags + - x86/retpoline: Simplify vmexit_fill_RSB() + - x86/speculation: Simplify indirect_branch_prediction_barrier() + - auxdisplay: img-ascii-lcd: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - iio: adc/accel: Fix up module licenses + - pinctrl: pxa: pxa2xx: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - ASoC: pcm512x: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - KVM: nVMX: Eliminate vmcs02 pool + - KVM: VMX: introduce alloc_loaded_vmcs + - objtool: Improve retpoline alternative handling + - objtool: Add support for alternatives at the end of a section + - objtool: Warn on stripped section symbol + - x86/mm: Fix overlap of i386 CPU_ENTRY_AREA with FIX_BTMAP + - x86/spectre: Check CONFIG_RETPOLINE in command line parser + - x86/entry/64: Remove the SYSCALL64 fast path + - x86/entry/64: Push extra regs right away + - x86/asm: Move 'status' from thread_struct to thread_info + - Documentation: Document array_index_nospec + - array_index_nospec: Sanitize speculative array de-references + - x86: Implement array_index_mask_nospec + - x86: Introduce barrier_nospec + - x86: Introduce __uaccess_begin_nospec() and uaccess_try_nospec + - x86/usercopy: Replace open coded stac/clac with __uaccess_{begin, end} + - x86/uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec + - x86/get_user: Use pointer masking to limit speculation + - x86/syscall: Sanitize syscall table de-references under speculation + - vfs, fdtable: Prevent bounds-check bypass via speculative execution + - nl80211: Sanitize array index in parse_txq_params + - x86/spectre: Report get_user mitigation for spectre_v1 + - x86/spectre: Fix spelling mistake: "vunerable"-> "vulnerable" + - x86/cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on Intel + - x86/speculation: Use Indirect Branch Prediction Barrier in context switch + - x86/paravirt: Remove 'noreplace-paravirt' cmdline option + - KVM: VMX: make MSR bitmaps per-VCPU + - x86/kvm: Update spectre-v1 mitigation + - x86/retpoline: Avoid retpolines for built-in __init functions + - x86/spectre: Simplify spectre_v2 command line parsing + - x86/pti: Mark constant arrays as __initconst + - x86/speculation: Fix typo IBRS_ATT, which should be IBRS_ALL + - KVM/x86: Update the reverse_cpuid list to include CPUID_7_EDX + - KVM/x86: Add IBPB support + - KVM/VMX: Emulate MSR_IA32_ARCH_CAPABILITIES + - KVM/VMX: Allow direct access to MSR_IA32_SPEC_CTRL + - KVM/SVM: Allow direct access to MSR_IA32_SPEC_CTRL + - serial: core: mark port as initialized after successful IRQ change + - fpga: region: release of_parse_phandle nodes after use + - Linux 4.15.2 + + * Add support for the NIC on SynQuacer E-Series boards (LP: #1747792) + - net: phy: core: remove now uneeded disabling of interrupts + - [Config] CONFIG_NET_VENDOR_SOCIONEXT=y & CONFIG_SNI_NETSEC=m + - net: socionext: Add Synquacer NetSec driver + - net: socionext: include linux/io.h to fix build + - net: socionext: Fix error return code in netsec_netdev_open() + + * [Artful/Bionic] [Config] enable EDAC_GHES for ARM64 (LP: #1747746) + - [Config] CONFIG_EDAC_GHES=y + + * support thunderx2 vendor pmu events (LP: #1747523) + - perf pmu: Pass pmu as a parameter to get_cpuid_str() + - perf tools arm64: Add support for get_cpuid_str function. + - perf pmu: Add helper function is_pmu_core to detect PMU CORE devices + - perf vendor events arm64: Add ThunderX2 implementation defined pmu core + events + - perf pmu: Add check for valid cpuid in perf_pmu__find_map() + + * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) + - SAUCE: mm: disable vma based swap readahead by default + - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM + + * Miscellaneous Ubuntu changes + - [Config] Fix CONFIG_PROFILE_ALL_BRANCHES annotations + + -- Seth Forshee Wed, 07 Feb 2018 21:13:27 -0600 + +linux (4.15.0-7.8) bionic; urgency=medium + + * Bionic update to v4.15.1 stable release (LP: #1747169) + - Bluetooth: hci_serdev: Init hci_uart proto_lock to avoid oops + - tools/gpio: Fix build error with musl libc + - gpio: stmpe: i2c transfer are forbiden in atomic context + - gpio: Fix kernel stack leak to userspace + - ALSA: hda - Reduce the suspend time consumption for ALC256 + - crypto: ecdh - fix typo in KPP dependency of CRYPTO_ECDH + - crypto: aesni - handle zero length dst buffer + - crypto: aesni - fix typo in generic_gcmaes_decrypt + - crypto: aesni - add wrapper for generic gcm(aes) + - crypto: aesni - Fix out-of-bounds access of the data buffer in generic-gcm- + aesni + - crypto: aesni - Fix out-of-bounds access of the AAD buffer in generic-gcm- + aesni + - crypto: inside-secure - fix hash when length is a multiple of a block + - crypto: inside-secure - avoid unmapping DMA memory that was not mapped + - crypto: sha3-generic - fixes for alignment and big endian operation + - crypto: af_alg - whitelist mask and type + - HID: wacom: EKR: ensure devres groups at higher indexes are released + - HID: wacom: Fix reporting of touch toggle (WACOM_HID_WD_MUTE_DEVICE) events + - power: reset: zx-reboot: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: iop: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: ath79: add missing MODULE_DESCRIPTION/LICENSE + - mtd: nand: denali_pci: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - igb: Free IRQs when device is hotplugged + - ima/policy: fix parsing of fsuuid + - scsi: aacraid: Fix udev inquiry race condition + - scsi: aacraid: Fix hang in kdump + - scsi: storvsc: missing error code in storvsc_probe() + - staging: lustre: separate a connection destroy from free struct kib_conn + - staging: ccree: NULLify backup_info when unused + - staging: ccree: fix fips event irq handling build + - tty: fix data race between tty_init_dev and flush of buf + - usb: option: Add support for FS040U modem + - USB: serial: pl2303: new device id for Chilitag + - USB: cdc-acm: Do not log urb submission errors on disconnect + - CDC-ACM: apply quirk for card reader + - USB: serial: io_edgeport: fix possible sleep-in-atomic + - usbip: prevent bind loops on devices attached to vhci_hcd + - usbip: list: don't list devices attached to vhci_hcd + - USB: serial: simple: add Motorola Tetra driver + - usb: f_fs: Prevent gadget unbind if it is already unbound + - usb: uas: unconditionally bring back host after reset + - usb/gadget: Fix "high bandwidth" check in usb_gadget_ep_match_desc() + - ANDROID: binder: remove waitqueue when thread exits. + - android: binder: use VM_ALLOC to get vm area + - mei: me: allow runtime pm for platform with D0i3 + - serial: 8250_of: fix return code when probe function fails to get reset + - serial: 8250_uniphier: fix error return code in uniphier_uart_probe() + - serial: 8250_dw: Revert "Improve clock rate setting" + - serial: imx: Only wakeup via RTSDEN bit if the system has RTS/CTS + - spi: imx: do not access registers while clocks disabled + - iio: adc: stm32: fix scan of multiple channels with DMA + - iio: chemical: ccs811: Fix output of IIO_CONCENTRATION channels + - test_firmware: fix missing unlock on error in config_num_requests_store() + - Input: synaptics-rmi4 - unmask F03 interrupts when port is opened + - Input: synaptics-rmi4 - do not delete interrupt memory too early + - x86/efi: Clarify that reset attack mitigation needs appropriate userspace + - Linux 4.15.1 + + * Dell XPS 13 9360 bluetooth (Atheros) won't connect after resume + (LP: #1744712) + - Revert "Bluetooth: btusb: fix QCA Rome suspend/resume" + - Bluetooth: btusb: Restore QCA Rome suspend/resume fix with a "rewritten" + version + + * apparmor profile load in stacked policy container fails (LP: #1746463) + - SAUCE: apparmor: fix display of .ns_name for containers + + -- Seth Forshee Sun, 04 Feb 2018 11:56:32 +0100 + +linux (4.15.0-6.7) bionic; urgency=low + + * upload urgency should be medium by default (LP: #1745338) + - [Packaging] update urgency to medium by default + + * Shutdown hang on 16.04 with iscsi targets (LP: #1569925) + - scsi: libiscsi: Allow sd_shutdown on bad transport + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.5-1ubuntu1, zfs to 0.7.5-1ubuntu1 + - Revert "UBUNTU: SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM" + - Revert "UBUNTU: SAUCE: mm: disable vma based swap readahead by default" + + [ Upstream Kernel Changes ] + + * Rebase to v4.15 + + -- Seth Forshee Mon, 29 Jan 2018 08:47:07 -0600 + +linux (4.15.0-5.6) bionic; urgency=low + + * $(LOCAL_ENV_CC) and $(LOCAL_ENV_DISTCC_HOSTS) should be properly quoted + (LP: #1744077) + - [Debian] pass LOCAL_ENV_CC and LOCAL_ENV_DISTCC_HOSTS properly + + * Missing install-time driver for QLogic QED 25/40/100Gb Ethernet NIC + (LP: #1743638) + - [d-i] Add qede to nic-modules udeb + + * boot failure on AMD Raven + WesternXT (LP: #1742759) + - SAUCE: drm/amdgpu: add atpx quirk handling (v2) + + * Unable to handle kernel NULL pointer dereference at isci_task_abort_task + (LP: #1726519) + - SAUCE: Revert "scsi: libsas: allow async aborts" + + * Update Ubuntu-4.15.0 config to support Intel Atom devices (LP: #1739939) + - [Config] CONFIG_SERIAL_DEV_BUS=y, CONFIG_SERIAL_DEV_CTRL_TTYPORT=y + + * Miscellaneous Ubuntu changes + - Rebase to v4.15-rc7 + - [Config] CONFIG_CPU_ISOLATION=y + - [Config] Update annotations following config review + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + - ubuntu: vbox -- update to 5.2.6-dfsg-1 + - ubuntu: vbox: build fixes for 4.15 + - ubuntu: vbox -- update to 5.2.6-dfsg-2 + - hio: updates for timer api changes in 4.15 + - enable hio build + - Rebase to v4.15-rc9 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc9 + + -- Seth Forshee Mon, 22 Jan 2018 10:16:05 -0600 + +linux (4.15.0-4.5) bionic; urgency=low + + * [0cf3:e010] QCA6174A XR failed to pair with bt 4.0 device (LP: #1741166) + - SAUCE: Bluetooth: btusb: Add support for 0cf3:e010 + + * External HDMI monitor failed to show screen on Lenovo X1 series + (LP: #1738523) + - SAUCE: drm/i915: Disable writing of TMDS_OE on Lenovo ThinkPad X1 series + + * Miscellaneous Ubuntu changes + - [Debian] autoreconstruct - add resoration of execute permissions + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc4 + + -- Seth Forshee Wed, 10 Jan 2018 10:24:22 -0600 + +linux (4.15.0-3.4) bionic; urgency=low + + * ubuntu/xr-usb-serial didn't get built in zesty and artful (LP: #1733281) + - SAUCE: make sure ubuntu/xr-usb-serial builds for x86 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc6 + + -- Seth Forshee Wed, 03 Jan 2018 20:20:43 -0600 + +linux (4.15.0-2.3) bionic; urgency=low + + * nvidia-graphics-drivers-384 384.90-0ubuntu6 ADT test failure with linux + 4.15.0-1.2 (LP: #1737752) + - x86/mm: Unbreak modules that use the DMA API + + * Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models (LP: #1734147) + - [Config] CONFIG_SPI_INTEL_SPI_*=n + + * power: commonise configs IBMVETH/IBMVSCSI and ensure both are in linux-image + and udebs (LP: #1521712) + - [Config] Include ibmvnic in nic-modules + + * Enable arm64 emulation of removed ARMv7 instructions (LP: #1545542) + - [Config] Enable support for emulation of deprecated ARMv8 instructions + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl with 4.15 compat fix (LP:#1737761) + - Enable zfs build + - [Debian] add icp to zfs-modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc4 + + -- Seth Forshee Mon, 18 Dec 2017 09:27:13 -0600 + +linux (4.15.0-1.2) bionic; urgency=low + + * Disabling zfs does not always disable module checks for the zfs modules + (LP: #1737176) + - [Packaging] disable zfs module checks when zfs is disabled + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_UNWINDER_FRAME_POINTER=y for amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc3 + + -- Seth Forshee Sun, 10 Dec 2017 22:07:19 -0600 + +linux (4.15.0-0.1) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.2.2-dfsg-2 + - ubuntu: vbox: build fixes for 4.15 + - disable hio build + - [Config] Update kernel lockdown options to fix build errors + - Disable zfs build + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc2 + + -- Seth Forshee Fri, 08 Dec 2017 13:55:42 -0600 + +linux (4.14.0-11.13) bionic; urgency=low + + * linux: 4.14.0-11.13 -proposed tracker (LP: #1736168) + + * CVE-2017-1000405 + - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() + + * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) + - SAUCE: mm: disable vma based swap readahead by default + - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM + + * Bionic update to v4.14.3 stable release (LP: #1735843) + - s390: fix transactional execution control register handling + - s390/noexec: execute kexec datamover without DAT + - s390/runtime instrumention: fix possible memory corruption + - s390/guarded storage: fix possible memory corruption + - s390/disassembler: add missing end marker for e7 table + - s390/disassembler: increase show_code buffer size + - ACPI / PM: Fix acpi_pm_notifier_lock vs flush_workqueue() deadlock + - ACPI / EC: Fix regression related to triggering source of EC event handling + - cpufreq: schedutil: Reset cached_raw_freq when not in sync with next_freq + - serdev: fix registration of second slave + - sched: Make resched_cpu() unconditional + - lib/mpi: call cond_resched() from mpi_powm() loop + - x86/boot: Fix boot failure when SMP MP-table is based at 0 + - x86/decoder: Add new TEST instruction pattern + - x86/entry/64: Fix entry_SYSCALL_64_after_hwframe() IRQ tracing + - x86/entry/64: Add missing irqflags tracing to native_load_gs_index() + - perf/x86/intel: Hide TSX events when RTM is not supported + - arm64: Implement arch-specific pte_access_permitted() + - ARM: 8722/1: mm: make STRICT_KERNEL_RWX effective for LPAE + - ARM: 8721/1: mm: dump: check hardware RO bit for LPAE + - uapi: fix linux/tls.h userspace compilation error + - uapi: fix linux/rxrpc.h userspace compilation errors + - MIPS: cmpxchg64() and HAVE_VIRT_CPU_ACCOUNTING_GEN don't work for 32-bit SMP + - MIPS: ralink: Fix MT7628 pinmux + - MIPS: ralink: Fix typo in mt7628 pinmux function + - net: mvneta: fix handling of the Tx descriptor counter + - nbd: wait uninterruptible for the dead timeout + - nbd: don't start req until after the dead connection logic + - PM / OPP: Add missing of_node_put(np) + - PCI/ASPM: Account for downstream device's Port Common_Mode_Restore_Time + - PCI/ASPM: Use correct capability pointer to program LTR_L1.2_THRESHOLD + - PCI: hv: Use effective affinity mask + - PCI: Set Cavium ACS capability quirk flags to assert RR/CR/SV/UF + - PCI: Apply Cavium ThunderX ACS quirk to more Root Ports + - ALSA: hda: Add Raven PCI ID + - dm integrity: allow unaligned bv_offset + - dm cache: fix race condition in the writeback mode overwrite_bio + optimisation + - dm crypt: allow unaligned bv_offset + - dm zoned: ignore last smaller runt zone + - dm mpath: remove annoying message of 'blk_get_request() returned -11' + - dm bufio: fix integer overflow when limiting maximum cache size + - ovl: Put upperdentry if ovl_check_origin() fails + - dm: allocate struct mapped_device with kvzalloc + - sched/rt: Simplify the IPI based RT balancing logic + - MIPS: pci: Remove KERN_WARN instance inside the mt7620 driver + - dm: fix race between dm_get_from_kobject() and __dm_destroy() + - dm: discard support requires all targets in a table support discards + - MIPS: Fix odd fp register warnings with MIPS64r2 + - MIPS: Fix MIPS64 FP save/restore on 32-bit kernels + - MIPS: dts: remove bogus bcm96358nb4ser.dtb from dtb-y entry + - MIPS: Fix an n32 core file generation regset support regression + - MIPS: BCM47XX: Fix LED inversion for WRT54GSv1 + - MIPS: math-emu: Fix final emulation phase for certain instructions + - rt2x00usb: mark device removed when get ENOENT usb error + - mm/z3fold.c: use kref to prevent page free/compact race + - autofs: don't fail mount for transient error + - nilfs2: fix race condition that causes file system corruption + - fscrypt: lock mutex before checking for bounce page pool + - eCryptfs: use after free in ecryptfs_release_messaging() + - libceph: don't WARN() if user tries to add invalid key + - bcache: check ca->alloc_thread initialized before wake up it + - fs: guard_bio_eod() needs to consider partitions + - fanotify: fix fsnotify_prepare_user_wait() failure + - isofs: fix timestamps beyond 2027 + - btrfs: change how we decide to commit transactions during flushing + - f2fs: expose some sectors to user in inline data or dentry case + - NFS: Fix typo in nomigration mount option + - NFS: Revert "NFS: Move the flock open mode check into nfs_flock()" + - nfs: Fix ugly referral attributes + - NFS: Avoid RCU usage in tracepoints + - NFS: revalidate "." etc correctly on "open". + - nfsd: deal with revoked delegations appropriately + - rtlwifi: rtl8192ee: Fix memory leak when loading firmware + - rtlwifi: fix uninitialized rtlhal->last_suspend_sec time + - iwlwifi: fix firmware names for 9000 and A000 series hw + - md: fix deadlock error in recent patch. + - md: don't check MD_SB_CHANGE_CLEAN in md_allow_write + - Bluetooth: btqcomsmd: Add support for BD address setup + - md/bitmap: revert a patch + - fsnotify: clean up fsnotify_prepare/finish_user_wait() + - fsnotify: pin both inode and vfsmount mark + - fsnotify: fix pinning group in fsnotify_prepare_user_wait() + - ata: fixes kernel crash while tracing ata_eh_link_autopsy event + - ext4: fix interaction between i_size, fallocate, and delalloc after a crash + - ext4: prevent data corruption with inline data + DAX + - ext4: prevent data corruption with journaling + DAX + - ALSA: pcm: update tstamp only if audio_tstamp changed + - ALSA: usb-audio: Add sanity checks to FE parser + - ALSA: usb-audio: Fix potential out-of-bound access at parsing SU + - ALSA: usb-audio: Add sanity checks in v2 clock parsers + - ALSA: timer: Remove kernel warning at compat ioctl error paths + - ALSA: hda/realtek - Fix ALC275 no sound issue + - ALSA: hda: Fix too short HDMI/DP chmap reporting + - ALSA: hda - Fix yet remaining issue with vmaster 0dB initialization + - ALSA: hda/realtek - Fix ALC700 family no sound issue + - ASoC: sun8i-codec: Invert Master / Slave condition + - ASoC: sun8i-codec: Fix left and right channels inversion + - ASoC: sun8i-codec: Set the BCLK divider + - mfd: lpc_ich: Avoton/Rangeley uses SPI_BYT method + - fix a page leak in vhost_scsi_iov_to_sgl() error recovery + - 9p: Fix missing commas in mount options + - fs/9p: Compare qid.path in v9fs_test_inode + - net/9p: Switch to wait_event_killable() + - scsi: qla2xxx: Suppress a kernel complaint in qla_init_base_qpair() + - scsi: sd_zbc: Fix sd_zbc_read_zoned_characteristics() + - scsi: lpfc: fix pci hot plug crash in timer management routines + - scsi: lpfc: fix pci hot plug crash in list_add call + - scsi: lpfc: Fix crash receiving ELS while detaching driver + - scsi: lpfc: Fix FCP hba_wqidx assignment + - scsi: lpfc: Fix oops if nvmet_fc_register_targetport fails + - iscsi-target: Make TASK_REASSIGN use proper se_cmd->cmd_kref + - iscsi-target: Fix non-immediate TMR reference leak + - target: fix null pointer regression in core_tmr_drain_tmr_list + - target: fix buffer offset in core_scsi3_pri_read_full_status + - target: Fix QUEUE_FULL + SCSI task attribute handling + - target: Fix caw_sem leak in transport_generic_request_failure + - target: Fix quiese during transport_write_pending_qf endless loop + - target: Avoid early CMD_T_PRE_EXECUTE failures during ABORT_TASK + - mtd: Avoid probe failures when mtd->dbg.dfs_dir is invalid + - mtd: nand: Export nand_reset() symbol + - mtd: nand: atmel: Actually use the PM ops + - mtd: nand: omap2: Fix subpage write + - mtd: nand: Fix writing mtdoops to nand flash. + - mtd: nand: mtk: fix infinite ECC decode IRQ issue + - mailbox: bcm-flexrm-mailbox: Fix FlexRM ring flush sequence + - p54: don't unregister leds when they are not initialized + - block: Fix a race between blk_cleanup_queue() and timeout handling + - raid1: prevent freeze_array/wait_all_barriers deadlock + - genirq: Track whether the trigger type has been set + - irqchip/gic-v3: Fix ppi-partitions lookup + - lockd: double unregister of inetaddr notifiers + - KVM: PPC: Book3S HV: Don't call real-mode XICS hypercall handlers if not + enabled + - KVM: nVMX: set IDTR and GDTR limits when loading L1 host state + - KVM: SVM: obey guest PAT + - kvm: vmx: Reinstate support for CPUs without virtual NMI + - dax: fix PMD faults on zero-length files + - dax: fix general protection fault in dax_alloc_inode + - SUNRPC: Fix tracepoint storage issues with svc_recv and svc_rqst_status + - clk: ti: dra7-atl-clock: fix child-node lookups + - libnvdimm, dimm: clear 'locked' status on successful DIMM enable + - libnvdimm, pfn: make 'resource' attribute only readable by root + - libnvdimm, namespace: fix label initialization to use valid seq numbers + - libnvdimm, region : make 'resource' attribute only readable by root + - libnvdimm, namespace: make 'resource' attribute only readable by root + - svcrdma: Preserve CB send buffer across retransmits + - IB/srpt: Do not accept invalid initiator port names + - IB/cm: Fix memory corruption in handling CM request + - IB/hfi1: Fix incorrect available receive user context count + - IB/srp: Avoid that a cable pull can trigger a kernel crash + - IB/core: Avoid crash on pkey enforcement failed in received MADs + - IB/core: Only maintain real QPs in the security lists + - NFC: fix device-allocation error return + - spi-nor: intel-spi: Fix broken software sequencing codes + - i40e: Use smp_rmb rather than read_barrier_depends + - igb: Use smp_rmb rather than read_barrier_depends + - igbvf: Use smp_rmb rather than read_barrier_depends + - ixgbevf: Use smp_rmb rather than read_barrier_depends + - i40evf: Use smp_rmb rather than read_barrier_depends + - fm10k: Use smp_rmb rather than read_barrier_depends + - ixgbe: Fix skb list corruption on Power systems + - parisc: Fix validity check of pointer size argument in new CAS + implementation + - powerpc: Fix boot on BOOK3S_32 with CONFIG_STRICT_KERNEL_RWX + - powerpc/mm/radix: Fix crashes on Power9 DD1 with radix MMU and STRICT_RWX + - powerpc/perf/imc: Use cpu_to_node() not topology_physical_package_id() + - powerpc/signal: Properly handle return value from uprobe_deny_signal() + - powerpc/64s: Fix masking of SRR1 bits on instruction fault + - powerpc/64s/radix: Fix 128TB-512TB virtual address boundary case allocation + - powerpc/64s/hash: Fix 512T hint detection to use >= 128T + - powerpc/64s/hash: Fix 128TB-512TB virtual address boundary case allocation + - powerpc/64s/hash: Fix fork() with 512TB process address space + - powerpc/64s/hash: Allow MAP_FIXED allocations to cross 128TB boundary + - media: Don't do DMA on stack for firmware upload in the AS102 driver + - media: rc: check for integer overflow + - media: rc: nec decoder should not send both repeat and keycode + - cx231xx-cards: fix NULL-deref on missing association descriptor + - media: v4l2-ctrl: Fix flags field on Control events + - media: venus: fix wrong size on dma_free + - media: venus: venc: fix bytesused v4l2_plane field + - media: venus: reimplement decoder stop command + - ARM64: dts: meson-gxl: Add alternate ARM Trusted Firmware reserved memory + zone + - iwlwifi: fix wrong struct for a000 device + - iwlwifi: add a new a000 device + - iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons + - iwlwifi: add new cards for a000 series + - iwlwifi: add new cards for 8265 series + - iwlwifi: add new cards for 8260 series + - iwlwifi: fix PCI IDs and configuration mapping for 9000 series + - iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command + - e1000e: Fix error path in link detection + - e1000e: Fix return value test + - e1000e: Separate signaling for link check/link up + - e1000e: Avoid receiver overrun interrupt bursts + - e1000e: fix buffer overrun while the I219 is processing DMA transactions + - Linux 4.14.3 + + * Miscellaneous Ubuntu changes + - SAUCE: s390/topology: don't inline cpu_to_node + - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 + + -- Seth Forshee Mon, 04 Dec 2017 09:08:07 -0600 + +linux (4.14.0-10.12) bionic; urgency=low + + * linux: 4.14.0-10.12 -proposed tracker (LP: #1734901) + + * Miscellaneous Ubuntu changes + - SAUCE: Enable the ACPI kernel debugger and acpidbg tool + - [Packaging] Include arch/arm64/kernel/ftrace-mod.o in headers package + + -- Seth Forshee Tue, 28 Nov 2017 08:46:49 -0600 + +linux (4.14.0-9.11) bionic; urgency=low + + * linux: 4.14.0-9.11 -proposed tracker (LP: #1734728) + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to + 0.7.3-1ubuntu1" + + -- Seth Forshee Mon, 27 Nov 2017 12:44:48 -0600 + +linux (4.14.0-8.10) bionic; urgency=low + + * linux: 4.14.0-8.10 -proposed tracker (LP: #1734695) + + * Bionic update to v4.14.2 stable release (LP: #1734694) + - bio: ensure __bio_clone_fast copies bi_partno + - af_netlink: ensure that NLMSG_DONE never fails in dumps + - vxlan: fix the issue that neigh proxy blocks all icmpv6 packets + - net: cdc_ncm: GetNtbFormat endian fix + - fealnx: Fix building error on MIPS + - net/sctp: Always set scope_id in sctp_inet6_skb_msgname + - ima: do not update security.ima if appraisal status is not INTEGRITY_PASS + - serial: omap: Fix EFR write on RTS deassertion + - serial: 8250_fintek: Fix finding base_port with activated SuperIO + - tpm-dev-common: Reject too short writes + - rcu: Fix up pending cbs check in rcu_prepare_for_idle + - mm/pagewalk.c: report holes in hugetlb ranges + - ocfs2: fix cluster hang after a node dies + - ocfs2: should wait dio before inode lock in ocfs2_setattr() + - ipmi: fix unsigned long underflow + - mm/page_alloc.c: broken deferred calculation + - mm/page_ext.c: check if page_ext is not prepared + - coda: fix 'kernel memory exposure attempt' in fsync + - ipmi: Prefer ACPI system interfaces over SMBIOS ones + - Linux 4.14.2 + + * Bionic update to v4.14.1 stable release (LP: #1734693) + - EDAC, sb_edac: Don't create a second memory controller if HA1 is not present + - dmaengine: dmatest: warn user when dma test times out + - media: imon: Fix null-ptr-deref in imon_probe + - media: dib0700: fix invalid dvb_detach argument + - crypto: dh - Fix double free of ctx->p + - crypto: dh - Don't permit 'p' to be 0 + - crypto: dh - Don't permit 'key' or 'g' size longer than 'p' + - crypto: brcm - Explicity ACK mailbox message + - USB: early: Use new USB product ID and strings for DbC device + - USB: usbfs: compute urb->actual_length for isochronous + - USB: Add delay-init quirk for Corsair K70 LUX keyboards + - usb: gadget: f_fs: Fix use-after-free in ffs_free_inst + - USB: serial: metro-usb: stop I/O after failed open + - USB: serial: Change DbC debug device binding ID + - USB: serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update + - USB: serial: garmin_gps: fix I/O after failed probe and remove + - USB: serial: garmin_gps: fix memory leak on probe errors + - selftests/x86/protection_keys: Fix syscall NR redefinition warnings + - x86/MCE/AMD: Always give panic severity for UC errors in kernel context + - platform/x86: peaq-wmi: Add DMI check before binding to the WMI interface + - platform/x86: peaq_wmi: Fix missing terminating entry for peaq_dmi_table + - HID: cp2112: add HIDRAW dependency + - HID: wacom: generic: Recognize WACOM_HID_WD_PEN as a type of pen collection + - rpmsg: glink: Add missing MODULE_LICENSE + - staging: wilc1000: Fix bssid buffer offset in Txq + - staging: sm750fb: Fix parameter mistake in poke32 + - staging: ccree: fix 64 bit scatter/gather DMA ops + - staging: greybus: spilib: fix use-after-free after deregistration + - staging: rtl8188eu: Revert 4 commits breaking ARP + - spi: fix use-after-free at controller deregistration + - sparc32: Add cmpxchg64(). + - sparc64: mmu_context: Add missing include files + - sparc64: Fix page table walk for PUD hugepages + - Linux 4.14.1 + + * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) + - [Config]: Set PANIC_TIMEOUT=10 on ppc64el + + * enable CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH easily confuse users + (LP: #1732627) + - [Config] CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=n + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 + + -- Seth Forshee Mon, 27 Nov 2017 07:43:44 -0600 + +linux (4.14.0-7.9) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - SAUCE: apparmor: add base infastructure for socket mediation + - SAUCE: apparmor: af_unix mediation + - SAUCE: LSM stacking: procfs: add smack subdir to attrs + - SAUCE: LSM stacking: LSM: manage credential security blobs + - SAUCE: LSM stacking: LSM: Manage file security blobs + - SAUCE: LSM stacking: LSM: manage task security blobs + - SAUCE: LSM stacking: LSM: Infrastructure management of the remaining blobs + - SAUCE: LSM stacking: LSM: general but not extreme module stacking + - SAUCE: LSM stacking: LSM: Complete task_alloc hook + - SAUCE: LSM stacking: fixup procsfs: add smack subdir to attrs + - SAUCE: LSM stacking: fixup initialize task->security + - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code + - SAUCE: LSM stacking: add support for stacking getpeersec_stream + - SAUCE: LSM stacking: add stacking support to apparmor network hooks + - SAUCE: LSM stacking: fixup apparmor stacking enablement + - SAUCE: LSM stacking: fixup stacking kconfig + - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params + - SAUCE: LSM stacking: provide prctl interface for setting context + - SAUCE: LSM stacking: inherit current display LSM + - SAUCE: LSM stacking: keep an index for each registered LSM + - SAUCE: LSM stacking: verify display LSM + - SAUCE: LSM stacking: provide a way to specify the default display lsm + - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries + - SAUCE: LSM stacking: add /proc//attr/display_lsm + - SAUCE: LSM stacking: add Kconfig to set default display LSM + - SAUCE: LSM stacking: add configs for LSM stacking + - SAUCE: LSM stacking: check for invalid zero sized writes + - [Config] Run updateconfigs after merging LSM stacking + - [Config] CONFIG_AMD_MEM_ENCRYPT=y + + [ Upstream Kernel Changes ] + + * Rebase to v4.14 + + -- Seth Forshee Mon, 13 Nov 2017 08:12:08 -0600 + +linux (4.14.0-6.8) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - SAUCE: add workarounds to enable ZFS for 4.14 + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc8 + + -- Seth Forshee Mon, 06 Nov 2017 11:39:00 -0600 + +linux (4.14.0-5.7) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Fix invocation of dh_prep for dbgsym packages + + -- Seth Forshee Tue, 31 Oct 2017 07:07:23 -0500 + +linux (4.14.0-4.5) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - [Packaging] virtualbox -- reduce in kernel module versions + - vbox-update: Fix up KERN_DIR definitions + - ubuntu: vbox -- update to 5.2.0-dfsg-2 + - [Config] CONFIG_AMD_MEM_ENCRYPT=n + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc7 + + -- Seth Forshee Mon, 30 Oct 2017 13:29:20 -0500 + +linux (4.14.0-3.4) artful; urgency=low + + * Touchpad and TrackPoint Dose Not Work on Lenovo X1C6 and X280 (LP: #1723986) + - SAUCE: Input: synaptics-rmi4 - RMI4 can also use SMBUS version 3 + - SAUCE: Input: synaptics - Lenovo X1 Carbon 5 should use SMBUS/RMI + - SAUCE: Input: synaptics - add Intertouch support on X1 Carbon 6th and X280 + + * powerpc/64s: Add workaround for P9 vector CI load issuenext (LP: #1721070) + - powerpc/64s: Add workaround for P9 vector CI load issue + + * Miscellaneous Ubuntu changes + - SAUCE: staging: vboxvideo: Fix reporting invalid suggested-offset-properties + - [Config] CONFIG_DRM_VBOXVIDEO=m + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Config] Reorder annotations file after enabling aufs + - vbox-update: Disable imported vboxvideo module + - ubuntu: vbox -- update to 5.1.30-dfsg-1 + - Enable vbox + - hio: Use correct sizes when initializing ssd_index_bits* arrays + - hio: Update io stat accounting for 4.14 + - Enable hio + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc5 + * Rebase to v4.14-rc6 + + -- Seth Forshee Mon, 23 Oct 2017 13:53:52 -0500 + +linux (4.14.0-2.3) artful; urgency=low + + * [Bug] USB controller failed to respond on Denverton after loading + intel_th_pci module (LP: #1715833) + - SAUCE: PCI: Disable broken RTIT_BAR of Intel TH + + * CONFIG_DEBUG_FS is not enabled by "make zfcpdump_defconfig" with Ubuntu + 17.10 (kernel 4.13) (LP: #1719290) + - SAUCE: s390: update zfcpdump_defconfig + + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + + * Miscellaneous Ubuntu changes + - [Config] Update annotations for 4.14-rc2 + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc3 + * Rebase to v4.14-rc4 + + -- Seth Forshee Wed, 11 Oct 2017 16:04:27 -0500 + +linux (4.14.0-1.2) artful; urgency=low + + * [Bug] USB 3.1 Gen2 works as 5Gbps (LP: #1720045) + - xhci: set missing SuperSpeedPlus Link Protocol bit in roothub descriptor + + * Please make linux-libc-dev Provide: aufs-dev (LP: #1716091) + - [Packaging] Add aufs-dev to the Provides: for linux-libc-dev + + * Upgrade to 4.13.0-11.12 in artful amd64 VM breaks display on wayland + (LP: #1718679) + - [Config] CONFIG_DRM_VBOXVIDEO=n + + * ipmmu-vmsa driver breaks arm64 boots (LP: #1718734) + - [Config] Disable CONFIG_IPMMU_VMSA on arm64 + + * autopkgtest profile fails to build on armhf (LP: #1717920) + - [Packaging] autopkgtest -- disable d-i when dropping flavours + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_I2C_XLP9XX=m + - [Packaging] Use SRCPKGNAME rather than hard-coding the source package name + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc2 + + -- Seth Forshee Fri, 29 Sep 2017 09:09:11 -0400 + +linux (4.14.0-0.1) artful; urgency=low + + * Miscellaneous Ubuntu changes + - Disable vbox build + - Disable hio build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc1 + + -- Seth Forshee Tue, 19 Sep 2017 20:22:29 -0500 + +linux (4.13.0-11.12) artful; urgency=low + + * linux: 4.13.0-11.12 -proposed tracker (LP: #1716699) + + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: fix local TLB flushing vs. detach of an mm address space + - s390/mm: fix race on mm->context.flush_mm + + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Seth Forshee Tue, 12 Sep 2017 10:18:38 -0500 + +linux (4.13.0-10.11) artful; urgency=low + + * linux: 4.13.0-10.11 -proposed tracker (LP: #1716287) + + * please add aufs-dkms to the Provides: for the kernel packages (LP: #1716093) + - [Packaging] Add aufs-dkms to the Provides: for kernel packages + + * Artful update to v4.13.1 stable release (LP: #1716284) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: musb: fix external abort on suspend + - ANDROID: binder: add padding to binder_fd_array_object. + - ANDROID: binder: add hwbinder,vndbinder to BINDER_DEVICES. + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - staging: ccree: save ciphertext for CTS IV + - staging: fsl-dpaa2/eth: fix off-by-one FD ctrl bitmaks + - iio: adc: ti-ads1015: fix incorrect data rate setting update + - iio: adc: ti-ads1015: fix scale information for ADS1115 + - iio: adc: ti-ads1015: enable conversion when CONFIG_PM is not set + - iio: adc: ti-ads1015: avoid getting stale result after runtime resume + - iio: adc: ti-ads1015: don't return invalid value from buffer setup callbacks + - iio: adc: ti-ads1015: add adequate wait time to get correct conversion + - driver core: bus: Fix a potential double free + - HID: wacom: Do not completely map WACOM_HID_WD_TOUCHRINGSTATUS usage + - binder: free memory on error + - crypto: caam/qi - fix compilation with CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y + - crypto: caam/qi - fix compilation with DEBUG enabled + - thunderbolt: Fix reset response_type + - fpga: altera-hps2fpga: fix multiple init of l3_remap_lock + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - drm/vgem: Pin our pages for dmabuf exports + - drm/ttm: Fix accounting error when fail to get pages for pool + - drm/dp/mst: Handle errors from drm_atomic_get_private_obj_state() correctly + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - iwlwifi: pci: add new PCI ID for 7265D + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - MCB: add support for SC31 to mcb-lpc + - s390/mm: avoid empty zero pages for KVM guests to avoid postcopy hangs + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - drm/nouveau: Fix error handling in nv50_disp_atomic_commit + - workqueue: Fix flag collision + - ahci: don't use MSI for devices with the silly Intel NVMe remapping scheme + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - of/device: Prevent buffer overflow in of_device_modalias() + - rtlwifi: Fix memory leak when firmware request fails + - rtlwifi: Fix fallback firmware loading + - Linux 4.13.1 + + * Kernel has trouble recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + * SRIOV: warning if unload VFs (LP: #1715073) + - PCI: Disable VF decoding before pcibios_sriov_disable() updates resources + + * [Patch] network-i40e:NVM bug fixes (cherrypick from 4.14) (LP: #1715578) + - i40e: avoid NVM acquire deadlock during NVM update + - i40e: point wb_desc at the nvm_wb_desc during i40e_read_nvm_aq + + * [P9,POwer NV] Perf PMU event : pm_br_2path and pm_ld_miss_l1 is counted + twice when perf stat is done (perf:) (LP: #1714571) + - perf vendor events powerpc: Remove duplicate events + + * Unable to install Ubuntu on the NVMe disk under VMD PCI domain + (LP: #1703339) + - [Config] Include vmd in storage-core-modules udeb + + * 17.10 fails to boot on POWER9 DD2.0 with Deep stop states (LP: #1715064) + - powerpc/powernv: Save/Restore additional SPRs for stop4 cpuidle + - powerpc/powernv: Clear PECE1 in LPCR via stop-api only on Hotplug + - SAUCE: powerpc/powernv: Clear LPCR[PECE1] via stop-api only for deep state + offline + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/seccomp: Support glibc 2.26 siginfo_t.h + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + + -- Seth Forshee Sun, 10 Sep 2017 17:48:59 -0500 + +linux (4.13.0-9.10) artful; urgency=low + + * linux: 4.13.0-9.10 -proposed tracker (LP: #1715145) + + * EDAC sbridge: Failed to register device with error -22. (LP: #1714112) + - [Config] CONFIG_EDAC_GHES=n + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.26-dfsg-2 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13 + + -- Seth Forshee Tue, 05 Sep 2017 07:51:19 -0500 + +linux (4.13.0-8.9) artful; urgency=low + + * snapd 2.27.3+17.10 ADT test failure with linux 4.13.0-6.7 (LP: #1713103) + - SAUCE: apparmor: fix apparmorfs DAC access, permissions + + * enable ARCH_SUNXI (and friends) in arm64 kernel .config (LP: #1701137) + - [Config] Enable CONFIG_ARCH_SUNXI and related options for arm64 + + * [Bug] Harrisonville: pnd2_edac always fail to load on B1 stepping + Harrisonville SDP (LP: #1709257) + - EDAC, pnd2: Build in a minimal sideband driver for Apollo Lake + - EDAC, pnd2: Mask off the lower four bits of a BAR + - EDAC, pnd2: Conditionally unhide/hide the P2SB PCI device to read BAR + - EDAC, pnd2: Properly toggle hidden state for P2SB PCI device + - SAUCE: i2c: i801: Restore the presence state of P2SB PCI device after + reading BAR + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + - SAUCE: selftests/powerpc: Disable some ptrace selftests + - [Config] CONFIG_CRYPTO_DEV_NITROX_CNN55XX=n for s390x + - [Config] CONFIG_I2C_SLAVE=n for amd64, i386, ppc64el + - [Config] Disable CONFIG_MDIO_* options for s390x + - [Config] CONFIG_SCSI_MQ_DEFAULT=n for s390x + - [Config] Update annotations for 4.13 + + -- Seth Forshee Thu, 31 Aug 2017 14:27:09 -0500 + +linux (4.13.0-7.8) artful; urgency=low + + * linux 4.12.0-11.12 ADT test failure with linux 4.12.0-11.12 (LP: #1710904) + - SAUCE: selftests/powerpc: Use snprintf to construct DSCR sysfs interface + paths + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: seccomp: log actions even when audit is disabled" + + * Miscellaneous upstream changes + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + - seccomp: Action to log before allowing + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc7 + + -- Seth Forshee Mon, 28 Aug 2017 08:12:24 -0500 + +linux (4.13.0-6.7) artful; urgency=low + + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + + * RPT related fixes missing in Ubuntu 16.04.3 (LP: #1709220) + - powerpc/mm/radix: Improve _tlbiel_pid to be usable for PWC flushes + - powerpc/mm/radix: Improve TLB/PWC flushes + - powerpc/mm/radix: Avoid flushing the PWC on every flush_tlb_range + + * Linux 4.12 refuses to load self-signed modules under Secure Boot with + properly enrolled keys (LP: #1712168) + - SAUCE: (efi-lockdown) MODSIGN: Fix module signature verification + + * [17.10 FEAT] Enable NVMe driver - kernel (LP: #1708432) + - [Config] CONFIG_BLK_DEV_NVME=m for s390 + + * Artful: 4.12.0-11.12: Boot panic in vlv2_plat_configure_clock+0x3b/0xa0 + (LP: #1711298) + - [Config] CONFIG_INTEL_ATOMISP=n + + * Miscellaneous Ubuntu changes + - SAUCE: apparmor: af_unix mediation + + * Miscellaneous upstream changes + - apparmor: Fix shadowed local variable in unpack_trans_table() + - apparmor: Fix logical error in verify_header() + - apparmor: Fix an error code in aafs_create() + - apparmor: Redundant condition: prev_ns. in [label.c:1498] + - apparmor: add the ability to mediate signals + - apparmor: add mount mediation + - apparmor: cleanup conditional check for label in label_print + - apparmor: add support for absolute root view based labels + - apparmor: make policy_unpack able to audit different info messages + - apparmor: add more debug asserts to apparmorfs + - apparmor: add base infastructure for socket mediation + - apparmor: move new_null_profile to after profile lookup fns() + - apparmor: fix race condition in null profile creation + - apparmor: ensure unconfined profiles have dfas initialized + - apparmor: fix incorrect type assignment when freeing proxies + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc6 + + -- Seth Forshee Wed, 23 Aug 2017 08:10:38 -0500 + +linux (4.13.0-5.6) artful; urgency=low + + * Ubuntu17.10 - perf: Update Power9 PMU event JSON files (LP: #1708630) + - perf pmu-events: Support additional POWER8+ PVR in mapfile + - perf vendor events: Add POWER9 PMU events + - perf vendor events: Add POWER9 PVRs to mapfile + - SAUCE: perf vendor events powerpc: remove suffix in mapfile + - SAUCE: perf vendor events powerpc: Update POWER9 events + + * Disable CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE (LP: #1709171) + - [Config] CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=n for ppc64el + + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - SAUCE: aufs -- Add missing argument to loop_switch() call + - [Config] Enable aufs + - SAUCE: (noup) Update spl to 0.6.5.11-ubuntu1, zfs to 0.6.5.11-1ubuntu3 + - Enable zfs build + - SAUCE: powerpc: Always initialize input array when calling epapr_hypercall() + - [Packaging] switch up to debhelper 9 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc5 + + -- Seth Forshee Tue, 15 Aug 2017 09:24:16 -0500 + +linux (4.13.0-4.5) artful; urgency=low + + * Lenovo Yoga 910 Sensors (LP: #1708120) + - SAUCE: (no-up) HID: Add quirk for Lenovo Yoga 910 with ITE Chips + + * Unable to install Ubuntu on the NVMe disk under VMD PCI domain + (LP: #1703339) + - [Config] Add vmd driver to generic inclusion list + + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.26-dfsg-1 + - SAUCE: hio: Build fixes for 4.13 + - Enable hio build + - SAUCE: (noup) Update spl to 0.6.5.11-1, zfs to 0.6.5.11-1ubuntu1 + - [debian] use all rather than amd64 dkms debs for sync + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc4 + + -- Seth Forshee Tue, 08 Aug 2017 11:31:48 -0500 + +linux (4.13.0-3.4) artful; urgency=low + + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + - [Packaging] tests -- reduce rebuild test to one flavour -- use filter + + * snapd 2.26.8+17.10 ADT test failure with linux 4.12.0-6.7 (LP: #1704158) + - SAUCE: virtio_net: Revert mergeable buffer handling rework + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc3 + + -- Seth Forshee Mon, 31 Jul 2017 10:08:16 -0500 + +linux (4.13.0-2.3) artful; urgency=low + + * Change CONFIG_IBMVETH to module (LP: #1704479) + - [Config] CONFIG_IBMVETH=m + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc2 + + -- Seth Forshee Mon, 24 Jul 2017 13:58:08 -0500 + +linux (4.13.0-1.2) artful; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Support sphinx-based kernel documentation + + -- Seth Forshee Thu, 20 Jul 2017 09:18:33 -0500 + +linux (4.13.0-0.1) artful; urgency=low + + * Miscellaneous Ubuntu changes + - Disable hio + - Disable zfs build + - ubuntu: vbox -- update to 5.1.24-dfsg-1 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc1 + + -- Seth Forshee Wed, 19 Jul 2017 15:09:31 -0500 + +linux (4.12.0-7.8) artful; urgency=low + + * ThunderX: soft lockup on 4.8+ kernels when running qemu-efi with vhost=on + (LP: #1673564) + - arm64: Add a facility to turn an ESR syndrome into a sysreg encoding + - KVM: arm/arm64: vgic-v3: Add accessors for the ICH_APxRn_EL2 registers + - KVM: arm64: Make kvm_condition_valid32() accessible from EL2 + - KVM: arm64: vgic-v3: Add hook to handle guest GICv3 sysreg accesses at EL2 + - KVM: arm64: vgic-v3: Add ICV_BPR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IGRPEN1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IAR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_EOIR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_AP1Rn_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_HPPIR1_EL1 handler + - KVM: arm64: vgic-v3: Enable trapping of Group-1 system registers + - KVM: arm64: Enable GICv3 Group-1 sysreg trapping via command-line + - KVM: arm64: vgic-v3: Add ICV_BPR0_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IGNREN0_EL1 handler + - KVM: arm64: vgic-v3: Add misc Group-0 handlers + - KVM: arm64: vgic-v3: Enable trapping of Group-0 system registers + - KVM: arm64: Enable GICv3 Group-0 sysreg trapping via command-line + - arm64: Add MIDR values for Cavium cn83XX SoCs + - arm64: Add workaround for Cavium Thunder erratum 30115 + - KVM: arm64: vgic-v3: Add ICV_DIR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_RPR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_CTLR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_PMR_EL1 handler + - KVM: arm64: Enable GICv3 common sysreg trapping via command-line + - KVM: arm64: vgic-v3: Log which GICv3 system registers are trapped + - KVM: arm64: Log an error if trapping a read-from-write-only GICv3 access + - KVM: arm64: Log an error if trapping a write-to-read-only GICv3 access + + * hns: under heavy load, NIC may fail and require reboot (LP: #1704146) + - net: hns: Bugfix for Tx timeout handling in hns driver + + * New ACPI identifiers for ThunderX SMMU (LP: #1703437) + - iommu/arm-smmu: Plumb in new ACPI identifiers + + * Transparent hugepages should default to enabled=madvise (LP: #1703742) + - SAUCE: use CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y as default + + * Artful update to v4.12.1 stable release (LP: #1703858) + - driver core: platform: fix race condition with driver_override + - RDMA/uverbs: Check port number supplied by user verbs cmds + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: usbip: set buffer pointers to NULL after free + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: Fix typo in the definition of Endpoint[out]Request + - USB: core: fix device node leak + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - xhci: Limit USB2 port wake support for AMD Promontory hosts + - gfs2: Fix glock rhashtable rcu bug + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - tpm: fix a kernel memory leak in tpm-sysfs.c + - powerpc/powernv: Fix CPU_HOTPLUG=n idle.c compile error + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - sched/fair, cpumask: Export for_each_cpu_wrap() + - sched/core: Implement new approach to scale select_idle_cpu() + - sched/numa: Use down_read_trylock() for the mmap_sem + - sched/numa: Override part of migrate_degrades_locality() when idle balancing + - sched/fair: Simplify wake_affine() for the single socket case + - sched/numa: Implement NUMA node level wake_affine() + - sched/fair: Remove effective_load() + - sched/numa: Hide numa_wake_affine() from UP build + - xen: avoid deadlock in xenbus driver + - crypto: drbg - Fixes panic in wait_for_completion call + - Linux 4.12.1 + + * cxlflash update request in the Xenial SRU stream (LP: #1702521) + - scsi: cxlflash: Combine the send queue locks + - scsi: cxlflash: Update cxlflash_afu_sync() to return errno + - scsi: cxlflash: Reset hardware queue context via specified register + - scsi: cxlflash: Schedule asynchronous reset of the host + - scsi: cxlflash: Handle AFU sync failures + - scsi: cxlflash: Track pending scsi commands in each hardware queue + - scsi: cxlflash: Flush pending commands in cleanup path + - scsi: cxlflash: Add scsi command abort handler + - scsi: cxlflash: Create character device to provide host management interface + - scsi: cxlflash: Separate AFU internal command handling from AFU sync + specifics + - scsi: cxlflash: Introduce host ioctl support + - scsi: cxlflash: Refactor AFU capability checking + - scsi: cxlflash: Support LUN provisioning + - scsi: cxlflash: Support AFU debug + - scsi: cxlflash: Support WS16 unmap + - scsi: cxlflash: Remove zeroing of private command data + - scsi: cxlflash: Update TMF command processing + - scsi: cxlflash: Avoid double free of character device + - scsi: cxlflash: Update send_tmf() parameters + - scsi: cxlflash: Update debug prints in reset handlers + + * make snap-pkg support (LP: #1700747) + - make snap-pkg support + + * Quirk for non-compliant PCI bridge on HiSilicon D05 board (LP: #1698706) + - SAUCE: PCI: Support hibmc VGA cards behind a misbehaving HiSilicon bridge + + * arm64: fix crash reading /proc/kcore (LP: #1702749) + - fs/proc: kcore: use kcore_list type to check for vmalloc/module address + - arm64: mm: select CONFIG_ARCH_PROC_KCORE_TEXT + + * Opal and POWER9 DD2 (LP: #1702159) + - SAUCE: powerpc/powernv: Tell OPAL about our MMU mode on POWER9 + + * Data corruption with hio driver (LP: #1701316) + - SAUCE: hio: Fix incorrect use of enum req_opf values + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.6.5.10-1, zfs to 0.6.5.10-1ubuntu2 + - snapcraft.yaml: Sync with xenial + - [Config] CONFIG_CAVIUM_ERRATUM_30115=y + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and + MokSBState" + + -- Seth Forshee Fri, 14 Jul 2017 15:25:41 -0500 + +linux (4.12.0-6.7) artful; urgency=low + + * update ENA driver to 1.2.0k from net-next (LP: #1701575) + - net: ena: change return value for unsupported features unsupported return + value + - net: ena: add hardware hints capability to the driver + - net: ena: change sizeof() argument to be the type pointer + - net: ena: add reset reason for each device FLR + - net: ena: add support for out of order rx buffers refill + - net: ena: allow the driver to work with small number of msix vectors + - net: ena: use napi_schedule_irqoff when possible + - net: ena: separate skb allocation to dedicated function + - net: ena: use lower_32_bits()/upper_32_bits() to split dma address + - net: ena: update driver's rx drop statistics + - net: ena: update ena driver to version 1.2.0 + + * APST gets enabled against explicit kernel option (LP: #1699004) + - nvme: explicitly disable APST on quirked devices + + * Miscellaneous Ubuntu changes + - SAUCE: hio: Update to Huawei ES3000_V2 (2.1.0.40) + - SAUCE: hio updates for 4.12 + - SAUCE: Enable hio build + + -- Seth Forshee Wed, 05 Jul 2017 14:23:20 -0500 + +linux (4.12.0-5.6) artful; urgency=low + + * ERAT invalidate on context switch removal (LP: #1700819) + - powerpc: Only do ERAT invalidate on radix context switch on P9 DD1 + + * powerpc: Invalidate ERAT on powersave wakeup for POWER9 (LP: #1700521) + - SAUCE: powerpc: Invalidate ERAT on powersave wakeup for POWER9 + + * Miscellaneous Ubuntu changes + - d-i: Move qcom-emac from arm64 to shared nic-modules + + [ Upstream Kernel Changes ] + + * Rebase to v4.12 + + -- Seth Forshee Mon, 03 Jul 2017 07:52:02 -0500 + +linux (4.12.0-4.5) artful; urgency=low + + * aacraid driver may return uninitialized stack data to userspace + (LP: #1700077) + - SAUCE: scsi: aacraid: Don't copy uninitialized stack memory to userspace + + * KILLER1435-S[0489:e0a2] BT cannot search BT 4.0 device (LP: #1699651) + - Bluetooth: btusb: Add support for 0489:e0a2 QCA_ROME device + + * AACRAID for power9 platform (LP: #1689980) + - scsi: aacraid: Remove __GFP_DMA for raw srb memory + - scsi: aacraid: Fix DMAR issues with iommu=pt + - scsi: aacraid: Added 32 and 64 queue depth for arc natives + - scsi: aacraid: Set correct Queue Depth for HBA1000 RAW disks + - scsi: aacraid: Remove reset support from check_health + - scsi: aacraid: Change wait time for fib completion + - scsi: aacraid: Log count info of scsi cmds before reset + - scsi: aacraid: Print ctrl status before eh reset + - scsi: aacraid: Using single reset mask for IOP reset + - scsi: aacraid: Rework IOP reset + - scsi: aacraid: Add periodic checks to see IOP reset status + - scsi: aacraid: Rework SOFT reset code + - scsi: aacraid: Rework aac_src_restart + - scsi: aacraid: Use correct function to get ctrl health + - scsi: aacraid: Make sure ioctl returns on controller reset + - scsi: aacraid: Enable ctrl reset for both hba and arc + - scsi: aacraid: Add reset debugging statements + - scsi: aacraid: Remove reference to Series-9 + - scsi: aacraid: Update driver version to 50834 + + * hibmc driver does not include "pci:" prefix in bus ID (LP: #1698700) + - SAUCE: drm: hibmc: Use set_busid function from drm core + + * HiSilicon D05: installer doesn't appear on VGA (LP: #1698954) + - d-i: Add hibmc-drm to kernel-image udeb + + * Fix /proc/cpuinfo revision for POWER9 DD2 (LP: #1698844) + - SAUCE: powerpc: Fix /proc/cpuinfo revision for POWER9 DD2 + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SATA_MV=n and CONFIG_GENERIC_PHY=n for s390x + - [Config] CONFIG_ATA=n for s390x + - [Config] Update annotations for 4.12 + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc7 + + -- Seth Forshee Mon, 26 Jun 2017 11:27:29 -0500 + +linux (4.12.0-3.4) artful; urgency=low + + * Miscellaneous upstream changes + - ufs: fix the logics for tail relocation + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc6 + + -- Seth Forshee Mon, 19 Jun 2017 14:50:39 -0500 + +linux (4.12.0-2.3) artful; urgency=low + + * CVE-2014-9900 + - SAUCE: (no-up) net: Zeroing the structure ethtool_wolinfo in + ethtool_get_wol() + + * System doesn't boot properly on Gigabyte AM4 motherboards (AMD Ryzen) + (LP: #1671360) + - pinctrl/amd: Use regular interrupt instead of chained + + * extend-diff-ignore should use exact matches (LP: #1693504) + - [Packaging] exact extend-diff-ignore matches + + * Miscellaneous Ubuntu changes + - SAUCE: efi: Don't print secure boot state from the efi stub + - ubuntu: vbox -- Update to 5.1.22-dfsg-1 + - SAUCE: vbox fixes for 4.12 + - Re-enable virtualbox build + - [Config] CONFIG_ORANGEFS_FS=m + - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu2, zfs to 0.6.5.9-5ubuntu7 + - Enable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc4 + * Rebase to v4.12-rc5 + + -- Seth Forshee Sun, 11 Jun 2017 22:25:13 -0500 + +linux (4.12.0-1.2) artful; urgency=low + + * Enable Matrox driver for Ubuntu 16.04.3 (LP: #1693337) + - [Config] Enable CONFIG_DRM_MGAG200 as module + + * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) + - [Config] CONFIG_LIBIO=y on arm64 only + - SAUCE: LIBIO: Introduce a generic PIO mapping method + - SAUCE: OF: Add missing I/O range exception for indirect-IO devices + - [Config] CONFIG_HISILICON_LPC=y + - SAUCE: LPC: Support the device-tree LPC host on Hip06/Hip07 + - SAUCE: LIBIO: Support the dynamically logical PIO registration of ACPI host + I/O + - SAUCE: LPC: Add the ACPI LPC support + - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts + - SAUCE: PCI: Restore codepath for !CONFIG_LIBIO + + * POWER9: Additional patches for TTY and CPU_IDLE (LP: #1674325) + - SAUCE: tty: Fix ldisc crash on reopened tty + + * Miscellaneous Ubuntu changes + - [Debian] Add build-dep on libnuma-dev to enable 'perf bench numa' + - Rebase to v4.12-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc3 + + -- Seth Forshee Mon, 29 May 2017 20:56:29 -0500 + +linux (4.12.0-0.1) artful; urgency=low + + * please enable CONFIG_ARM64_LSE_ATOMICS (LP: #1691614) + - [Config] CONFIG_ARM64_LSE_ATOMICS=y + + * [Regression] NUMA_BALANCING disabled on arm64 (LP: #1690914) + - [Config] CONFIG_NUMA_BALANCING{,_DEFAULT_ENABLED}=y on arm64 + + * exec'ing a setuid binary from a threaded program sometimes fails to setuid + (LP: #1672819) + - SAUCE: exec: ensure file system accounting in check_unsafe_exec is correct + + * Miscellaneous Ubuntu changes + - Update find-missing-sauce.sh to compare to artful + - Update dropped.txt + - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is + locked down + - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode + - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been + set + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel + is locked down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Enable cold boot attack mitigation + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) scsi: Lock down the eata driver + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for + MokSBState + - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState + - [Config] Set values for UEFI secure boot lockdown options + - Disable virtualbox build + - Disable hio build + - SAUCE: securityfs: Replace CURRENT_TIME with current_time() + - Disable zfs build + - [Debian] Work out upstream tag for use with gen-auto-reconstruct + - SAUCE: Import aufs driver + - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h + - [Config] Enable aufs + - SAUCE: perf callchain: Include errno.h on x86 unconditinally + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc2 + + -- Seth Forshee Sun, 21 May 2017 23:44:44 -0500 + +linux (4.11.0-3.8) artful; urgency=low + + [ Seth Forshee ] + + * Release Tracking Bug + - LP: #1690999 + + * apparmor_parser hangs indefinitely when called by multiple threads + (LP: #1645037) + - SAUCE: apparmor: fix lock ordering for mkdir + + * apparmor leaking securityfs pin count (LP: #1660846) + - SAUCE: apparmor: fix leak on securityfs pin count + + * apparmor reference count leak when securityfs_setup_d_inode\ () fails + (LP: #1660845) + - SAUCE: apparmor: fix reference count leak when securityfs_setup_d_inode() + fails + + * apparmor not checking error if security_pin_fs() fails (LP: #1660842) + - SAUCE: apparmor: fix not handling error case when securityfs_pin_fs() fails + + * libvirt profile is blocking global setrlimit despite having no rlimit rule + (LP: #1679704) + - SAUCE: apparmor: fix complain mode failure for rlimit mediation + - apparmor: update auditing of rlimit check to provide capability information + + * apparmor: does not provide a way to detect policy updataes (LP: #1678032) + - SAUCE: apparmor: add policy revision file interface + + * apparmor does not make support of query data visible (LP: #1678023) + - SAUCE: apparmor: add label data availability to the feature set + + * apparmor query interface does not make supported query info available + (LP: #1678030) + - SAUCE: apparmor: add information about the query inteface to the feature set + + * change_profile incorrect when using namespaces with a compound stack + (LP: #1677959) + - SAUCE: apparmor: fix label parse for stacked labels + + * Regression in 4.4.0-65-generic causes very frequent system crashes + (LP: #1669611) + - apparmor: sync of apparmor 3.6+ (17.04) + + * Artful update to 4.11.1 stable release (LP: #1690814) + - dm ioctl: prevent stack leak in dm ioctl call + - drm/sti: fix GDP size to support up to UHD resolution + - power: supply: lp8788: prevent out of bounds array access + - brcmfmac: Ensure pointer correctly set if skb data location changes + - brcmfmac: Make skb header writable before use + - sparc64: fix fault handling in NGbzero.S and GENbzero.S + - refcount: change EXPORT_SYMBOL markings + - net: macb: fix phy interrupt parsing + - tcp: fix access to sk->sk_state in tcp_poll() + - geneve: fix incorrect setting of UDP checksum flag + - bpf: enhance verifier to understand stack pointer arithmetic + - bpf, arm64: fix jit branch offset related to ldimm64 + - tcp: fix wraparound issue in tcp_lp + - net: ipv6: Do not duplicate DAD on link up + - net: usb: qmi_wwan: add Telit ME910 support + - tcp: do not inherit fastopen_req from parent + - ipv4, ipv6: ensure raw socket message is big enough to hold an IP header + - rtnetlink: NUL-terminate IFLA_PHYS_PORT_NAME string + - ipv6: initialize route null entry in addrconf_init() + - ipv6: reorder ip6_route_dev_notifier after ipv6_dev_notf + - tcp: randomize timestamps on syncookies + - bnxt_en: allocate enough space for ->ntp_fltr_bmap + - bpf: don't let ldimm64 leak map addresses on unprivileged + - net: mdio-mux: bcm-iproc: call mdiobus_free() in error path + - f2fs: sanity check segment count + - xen/arm,arm64: fix xen_dma_ops after 815dd18 "Consolidate get_dma_ops..." + - xen: Revert commits da72ff5bfcb0 and 72a9b186292d + - block: get rid of blk_integrity_revalidate() + - Linux 4.11.1 + + * Module signing exclusion for staging drivers does not work properly + (LP: #1690908) + - SAUCE: Fix module signing exclusion in package builds + + * perf: qcom: Add L3 cache PMU driver (LP: #1689856) + - [Config] CONFIG_QCOM_L3_PMU=y + - perf: qcom: Add L3 cache PMU driver + + * No PMU support for ACPI-based arm64 systems (LP: #1689661) + - drivers/perf: arm_pmu: rework per-cpu allocation + - drivers/perf: arm_pmu: manage interrupts per-cpu + - drivers/perf: arm_pmu: split irq request from enable + - drivers/perf: arm_pmu: remove pointless PMU disabling + - drivers/perf: arm_pmu: define armpmu_init_fn + - drivers/perf: arm_pmu: fold init into alloc + - drivers/perf: arm_pmu: factor out pmu registration + - drivers/perf: arm_pmu: simplify cpu_pmu_request_irqs() + - drivers/perf: arm_pmu: handle no platform_device + - drivers/perf: arm_pmu: rename irq request/free functions + - drivers/perf: arm_pmu: split cpu-local irq request/free + - drivers/perf: arm_pmu: move irq request/free into probe + - drivers/perf: arm_pmu: split out platform device probe logic + - arm64: add function to get a cpu's MADT GICC table + - [Config] CONFIG_ARM_PMU_ACPI=y + - drivers/perf: arm_pmu: add ACPI framework + - arm64: pmuv3: handle !PMUv3 when probing + - arm64: pmuv3: use arm_pmu ACPI framework + + * Fix NVLINK2 TCE route (LP: #1690155) + - powerpc/powernv: Fix TCE kill on NVLink2 + + * CVE-2017-0605 + - tracing: Use strlcpy() instead of strcpy() in __trace_find_cmdline() + + * Miscellaneous Ubuntu changes + - [Config] Restore powerpc arch to annotations file + - [Config] Disable runtime testing modules + - [Config] Disable drivers not needed on s390x + - [Config] Update annotations for 4.11 + - [Config] updateconfigs after apparmor updates + + * Miscellaneous upstream changes + - apparmor: use SHASH_DESC_ON_STACK + - apparmor: fix invalid reference to index variable of iterator line 836 + - apparmor: fix parameters so that the permission test is bypassed at boot + - apparmor: Make path_max parameter readonly + - apparmorfs: Combine two function calls into one in aa_fs_seq_raw_abi_show() + - apparmorfs: Use seq_putc() in two functions + - apparmor: provide information about path buffer size at boot + - apparmor: add/use fns to print hash string hex value + + -- Seth Forshee Tue, 16 May 2017 00:39:13 -0500 + +linux (4.11.0-2.7) artful; urgency=low + + * kernel-wedge fails in artful due to leftover squashfs-modules d-i files + (LP: #1688259) + - Remove squashfs-modules files from d-i + - [Config] as squashfs-modules is builtin kernel-image must Provides: it + + * [Zesty] d-i: replace msm_emac with qcom_emac (LP: #1677297) + - Revert "UBUNTU: d-i: initrd needs msm_emac on amberwing platform." + - d-i: initrd needs qcom_emac on amberwing platform. + + * update for V3 kernel bits and improved multiple fan slice support + (LP: #1470091) + - SAUCE: fan: tunnel multiple mapping mode (v3) + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu1, zfs to 0.6.5.9-5ubuntu5 + - Enable zfs + - SAUCE: fan: add VXLAN implementation + - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is + locked down + - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode + - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been + set + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel + is locked down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Enable cold boot attack mitigation + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) scsi: Lock down the eata driver + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Add EFI signature data types + - SAUCE: (efi-lockdown) Add an EFI signature blob parser and key loader. + - SAUCE: (efi-lockdown) KEYS: Add a system blacklist keyring + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Support not importing certs from db + - SAUCE: (efi-lockdown) MODSIGN: Don't try secure boot if EFI runtime is + disabled + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for + MokSBState + - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState + - [Config] Set values for UEFI secure boot lockdown options + - Update dropped.txt + + [ Upstream Kernel Changes ] + + * rebase to v4.11 + + -- Seth Forshee Fri, 05 May 2017 07:43:14 -0500 + +linux (4.11.0-1.6) artful; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Use default compression for all packages + - SAUCE: (namespace) block_dev: Support checking inode permissions in + lookup_bdev() + - SAUCE: (namespace) block_dev: Check permissions towards block device inode + when mounting + - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode + when mounting + - SAUCE: (namespace) fs: Allow superblock owner to change ownership of inodes + - SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID for userns root + - SAUCE: (namespace) fs: Allow superblock owner to access do_remount_sb() + - SAUCE: (namespace) capabilities: Allow privileged user in s_user_ns to set + security.* xattrs + - SAUCE: (namespace) fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw + filesystems + - SAUCE: (namespace) fuse: Add support for pid namespaces + - SAUCE: (namespace) fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: (namespace) fuse: Restrict allow_other to the superblock's namespace + or a descendant + - SAUCE: (namespace) fuse: Allow user namespace mounts + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user + namespaces + - SAUCE: (namespace) evm: Don't update hmacs in user ns mounts + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace + mounts + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + + -- Seth Forshee Wed, 26 Apr 2017 10:08:29 -0500 + +linux (4.11.0-0.5) artful; urgency=low + + * [Hyper-V][SAUCE] pci-hyperv: Use only 16 bit integer for PCI domain + (LP: #1684971) + - SAUCE: pci-hyperv: Use only 16 bit integer for PCI domain + + * [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups + (LP: #1470250) + - SAUCE: Tools: hv: vss: Thaw the filesystem and continue after freeze fails + + * Enable virtual scsi server driver for Power (LP: #1615665) + - SAUCE: Return TCMU-generated sense data to fabric module + + * include/linux/security.h header syntax error with !CONFIG_SECURITYFS + (LP: #1630990) + - SAUCE: (no-up) include/linux/security.h -- fix syntax error with + CONFIG_SECURITYFS=n + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Debian] Add script to update virtualbox + - ubuntu: vbox -- Update to 5.1.20-dfsg-2 + - Enable vbox + - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc8 + + -- Seth Forshee Tue, 25 Apr 2017 13:42:54 -0500 + +linux (4.11.0-0.4) zesty; urgency=low + + * POWER9: Improve performance on memory management (LP: #1681429) + - SAUCE: powerpc/mm/radix: Don't do page walk cache flush when doing full mm + flush + - SAUCE: powerpc/mm/radix: Remove unnecessary ptesync + + * Miscellaneous Ubuntu changes + - find-missing-sauce.sh + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc7 + + -- Seth Forshee Tue, 18 Apr 2017 08:19:43 -0500 + +linux (4.11.0-0.3) zesty; urgency=low + + * Disable CONFIG_HVC_UDBG on ppc64el (LP: #1680888) + - [Config] Disable CONFIG_HVC_UDBG on ppc64el + + * smartpqi driver needed in initram disk and installer (LP: #1680156) + - [Config] Add smartpqi to d-i + + * Disable CONFIG_SECURITY_SELINUX_DISABLE (LP: #1680315) + - [Config] CONFIG_SECURITY_SELINUX_DISABLE=n + + * Miscellaneous Ubuntu changes + - [Config] flash-kernel should be a Breaks + - [Config] drop the info directory + - [Config] drop NOTES as obsolete + - [Config] drop changelog.historical as obsolete + - rebase to v4.11-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc6 + + -- Tim Gardner Tue, 11 Apr 2017 07:16:52 -0600 + +linux (4.11.0-0.2) zesty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc5 + + -- Tim Gardner Mon, 03 Apr 2017 08:26:07 +0100 + +linux (4.11.0-0.1) zesty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc4 + - LP: #1591053 + + -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 + +linux (4.11.0-0.0) zesty; urgency=low + + * dummy entry + + -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 diff --git a/debian.master/config/amd64/config.common.amd64 b/debian.master/config/amd64/config.common.amd64 new file mode 100644 index 00000000000000..b39dc03a035c43 --- /dev/null +++ b/debian.master/config/amd64/config.common.amd64 @@ -0,0 +1,686 @@ +# +# Config options for config.common.amd64 automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +CONFIG_ACPI_DEBUG=y +CONFIG_ACPI_DEBUGGER=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCNET=m +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=y +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=y +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0" +CONFIG_CDROM_PKTCDVD=m +# CONFIG_CMA is not set +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMMON_CLK=y +CONFIG_COUNTER=m +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CRAMFS=m +CONFIG_CRC8=m +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DP_CEC=y +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIXED_PHY=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HIBERNATION=y +CONFIG_HID=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_SHPC=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +# CONFIG_HZ_100 is not set +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_AMD_MP2=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_IMA_ARCH_POLICY is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_IOMMU_IOVA=y +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +# CONFIG_KERNEL_GZIP is not set +CONFIG_KEXEC_FILE=y +CONFIG_KVM=m +CONFIG_LAPB=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMSTICK=m +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_INTEL_PMT=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MII=m +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_CQHCI=m +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +CONFIG_NET_SELFTESTS=y +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=10 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=8192 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NVRAM=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +# CONFIG_OF is not set +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=y +CONFIG_PC104=y +CONFIG_PCCARD=m +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCMCIA=m +CONFIG_PCS_XPCS=m +CONFIG_PGTABLE_LEVELS=5 +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYLIB=y +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PINCTRL=y +CONFIG_PMIC_OPREGION=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_PCF8523=m +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HDA_PREALLOC_SIZE=0 +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +# CONFIG_STANDALONE is not set +CONFIG_SUN_PARTITION=y +CONFIG_SURFACE_3_BUTTON=m +CONFIG_SURFACE_3_POWER_OPREGION=m +CONFIG_SURFACE_PRO3_BUTTON=m +# CONFIG_SYSFB_SIMPLEFB is not set +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TOUCHSCREEN_ELAN=y +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_DWC2_PCI=m +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_GADGET=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_CORE=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VIRTIO_MMIO=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +CONFIG_XEN=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.master/config/amd64/config.flavour.generic b/debian.master/config/amd64/config.flavour.generic new file mode 100644 index 00000000000000..2004bc9317f9ee --- /dev/null +++ b/debian.master/config/amd64/config.flavour.generic @@ -0,0 +1,12 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_LATENCYTOP is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_TEST_DIV64 is not set diff --git a/debian.master/config/amd64/config.flavour.lowlatency b/debian.master/config/amd64/config.flavour.lowlatency new file mode 100644 index 00000000000000..437e8ea6c9a184 --- /dev/null +++ b/debian.master/config/amd64/config.flavour.lowlatency @@ -0,0 +1,12 @@ +# +# Config options for config.flavour.lowlatency automatically generated by splitconfig.pl +# +# CONFIG_COMEDI_TESTS_EXAMPLE is not set +# CONFIG_COMEDI_TESTS_NI_ROUTES is not set +CONFIG_HZ=1000 +CONFIG_HZ_1000=y +# CONFIG_HZ_250 is not set +CONFIG_LATENCYTOP=y +CONFIG_PREEMPT=y +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_TEST_DIV64=m diff --git a/debian.master/config/annotations b/debian.master/config/annotations new file mode 100644 index 00000000000000..fc954fd4c24ee3 --- /dev/null +++ b/debian.master/config/annotations @@ -0,0 +1,14501 @@ +# Menu: HEADER +# FORMAT: 2 +# ARCH: x86 arm arm64 s390 powerpc + +# Mark debugging symbols. +# exceptions +CONFIG_DEBUG_FS note +CONFIG_DEBUG_KERNEL note + +# Menu: ROOT +CONFIG_LIVEPATCH policy<{'amd64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ACPI_PRMT policy<{'amd64': 'y'}> + +# Menu: ACPI (Advanced Configuration and Power Interface) Support +CONFIG_ACPI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DEBUGGER policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_ACPI_DEBUGGER_USER policy<{'amd64': 'y'}> +CONFIG_ACPI_SPCR_TABLE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_FPDT policy<{'amd64': 'y'}> +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE policy<{'amd64': 'y'}> +CONFIG_ACPI_EC_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_AC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_BATTERY policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_BUTTON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_VIDEO policy<{'amd64': 'm'}> +CONFIG_ACPI_FAN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_TAD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_DOCK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_PROCESSOR policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_IPMI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_PROCESSOR_AGGREGATOR policy<{'amd64': 'm'}> +CONFIG_ACPI_THERMAL policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_CUSTOM_DSDT_FILE policy<{'amd64': '""'}> +CONFIG_ACPI_TABLE_UPGRADE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DEBUG policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_ACPI_PCI_SLOT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_CONTAINER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_HOTPLUG_MEMORY policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_SBS policy<{'amd64': 'm'}> +CONFIG_ACPI_HED policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_CUSTOM_METHOD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_BGRT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_REDUCED_HARDWARE_ONLY policy<{'amd64': 'n', 'arm64': 'y'}> +CONFIG_ACPI_NFIT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NFIT_SECURITY_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_NUMA policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_HMAT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_EXTLOG policy<{'amd64': 'm'}> +CONFIG_ACPI_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TPS68470_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_X86_PM_TIMER policy<{'amd64': 'y'}> +# +CONFIG_ACPI_CUSTOM_METHOD mark note +CONFIG_ACPI_CUSTOM_DSDT_FILE note + +# Menu: ACPI (Advanced Configuration and Power Interface) Support >> ACPI Platform Error Interface (APEI) +CONFIG_ACPI_APEI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_GHES policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_PCIEAER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_MEMORY_FAILURE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_EINJ policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_APEI_ERST_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: ACPI (Advanced Configuration and Power Interface) Support >> Intel DPTF (Dynamic Platform and Thermal Framework) Support +CONFIG_ACPI_DPTF policy<{'amd64': 'y'}> +CONFIG_DPTF_POWER policy<{'amd64': 'm'}> +CONFIG_DPTF_PCH_FIVR policy<{'amd64': 'm'}> + +# Menu: ACPI (Advanced Configuration and Power Interface) Support >> PMIC (Power Management Integrated Circuit) operation region support +CONFIG_PMIC_OPREGION policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_BYTCRC_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_CHTCRC_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_XPOWER_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_BXT_WC_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_CHT_WC_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_CHT_DC_TI_PMIC_OPREGION policy<{'amd64': 'y'}> + +# Menu: ARM Accelerated Cryptographic Algorithms +CONFIG_CRYPTO_CHACHA20_NEON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_NHPOLY1305_NEON policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: ARM Accelerated Cryptographic Algorithms >> Architecture: arm +CONFIG_ARM_CRYPTO policy<{'armhf': 'y'}> +CONFIG_CRYPTO_SHA1_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA1_ARM_NEON policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA1_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA2_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA256_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA512_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_BLAKE2S_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_BLAKE2B_NEON policy<{'armhf': 'm'}> +CONFIG_CRYPTO_AES_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_AES_ARM_BS policy<{'armhf': 'm'}> +CONFIG_CRYPTO_AES_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_GHASH_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_CRCT10DIF_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_CRC32_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_POLY1305_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_CURVE25519_NEON policy<{'armhf': 'm'}> + +# Menu: ARM64 Accelerated Cryptographic Algorithms + +# Menu: ARM64 Accelerated Cryptographic Algorithms >> Architecture: arm64 +CONFIG_ARM64_CRYPTO policy<{'arm64': 'y'}> +CONFIG_CRYPTO_SHA256_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA512_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA1_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA2_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA512_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA3_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SM3_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SM4_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_GHASH_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_CE_CCM policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_CE_BLK policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_NEON_BLK policy<{'arm64': 'm'}> +CONFIG_CRYPTO_POLY1305_NEON policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_BS policy<{'arm64': 'm'}> + +# Menu: Advanced setup >> Architecture: powerpc + +# Menu: Advanced setup >> Prompt for advanced kernel configuration options +CONFIG_PHYSICAL_START policy<{'amd64': '0x1000000', 'ppc64el': '0x00000000'}> + +# Menu: Advanced setup >> Prompt for advanced kernel configuration options >> Architecture: powerpc +CONFIG_PAGE_OFFSET policy<{'armhf': '0xC0000000', 'ppc64el': '0xc000000000000000'}> +CONFIG_KERNEL_START policy<{'ppc64el': '0xc000000000000000'}> + +# Menu: Architecture: arm +CONFIG_ARM_DMA_IOMMU_ALIGNMENT policy<{'armhf': '8'}> +CONFIG_ARM_PATCH_PHYS_VIRT policy<{'armhf': 'y'}> + +# Menu: Architecture: powerpc +CONFIG_PPC64 policy<{'ppc64el': 'y'}> +CONFIG_NR_IRQS policy<{'ppc64el': '512'}> + +# Menu: Architecture: x86 +CONFIG_64BIT policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Binary Emulations >> Architecture: x86 +CONFIG_IA32_EMULATION policy<{'amd64': 'y'}> +CONFIG_IA32_AOUT policy<{'amd64': '-'}> +CONFIG_X86_X32 policy<{'amd64': 'y'}> +# +CONFIG_IA32_AOUT mark note + +# Menu: Boot options +CONFIG_CMDLINE policy<{'arm64': '"console=ttyAMA0"', 'armhf': '""', 'ppc64el': '""'}> +CONFIG_EFI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_DMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_KEXEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRASH_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_CRASH_DUMP mark note +CONFIG_EFI flag + +# Menu: Boot options >> Architecture: arm +CONFIG_USE_OF policy<{'armhf': 'y'}> +CONFIG_ATAGS policy<{'armhf': 'y'}> +CONFIG_DEPRECATED_PARAM_STRUCT policy<{'armhf': 'n'}> +CONFIG_ZBOOT_ROM_TEXT policy<{'armhf': '0x0'}> +CONFIG_ZBOOT_ROM_BSS policy<{'armhf': '0x0'}> +CONFIG_ARM_APPENDED_DTB policy<{'armhf': 'y'}> +CONFIG_ARM_ATAG_DTB_COMPAT policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ATAGS_PROC policy<{'armhf': 'y'}> +CONFIG_AUTO_ZRELADDR policy<{'armhf': 'y'}> +# +CONFIG_ARM_ATAG_DTB_COMPAT flag + +# Menu: Boot options >> Architecture: arm64 +CONFIG_ARM64_ACPI_PARKING_PROTOCOL policy<{'arm64': 'y'}> + +# Menu: Boot options >> Kernel command line type +CONFIG_CMDLINE_FROM_BOOTLOADER policy<{'arm64': 'y'}> +CONFIG_CMDLINE_FORCE policy<{'arm64': 'n'}> + +# Menu: Boot options >> Kernel command line type >> Architecture: arm +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER policy<{'armhf-generic': 'n'}> +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND policy<{'armhf-generic': 'y'}> + +# Menu: Boot options >> Kernel command line type >> Architecture: arm64 + +# Menu: Bus options + +# Menu: Bus options (PCI etc.) + +# Menu: Bus options (PCI etc.) >> Architecture: x86 +CONFIG_ISA_BUS policy<{'amd64': 'y'}> +CONFIG_ISA_DMA_API policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_PCI_MMCONFIG policy<{'amd64': 'y'}> +CONFIG_PCI_CNB20LE_QUIRK policy<{'amd64': 'n'}> + +# Menu: Bus options (PCI etc.) >> PCI access mode >> Architecture: x86 + +# Menu: Bus options >> Architecture: powerpc +CONFIG_FSL_LBC policy<{'ppc64el': 'y'}> + +# Menu: Bus support >> Architecture: arm +CONFIG_ARM_ERRATA_814220 policy<{'armhf': 'y'}> + +# Menu: Cryptographic API +CONFIG_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_MANAGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_NULL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_PCRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRYPTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AUTHENC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_ECDH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ECDSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ECRDSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SM2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CURVE25519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CURVE25519_X86 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_GCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CHACHA20POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AEGIS128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AEGIS128_SIMD policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SEQIV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_ECHAINIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CBC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_ECB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_LRW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_OFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_PCBC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_XTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_KEYWRAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_NHPOLY1305_SSE2 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_NHPOLY1305_AVX2 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_ADIANTUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ESSIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_HMAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_XCBC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_VMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRC32C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CRC32C_INTEL policy<{'amd64': 'y'}> +CONFIG_CRYPTO_CRC32C_VPMSUM policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_CRC32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRC32_PCLMUL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_XXHASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLAKE2B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLAKE2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLAKE2S_X86 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CRCT10DIF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CRCT10DIF_PCLMUL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CRCT10DIF_VPMSUM policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_VPMSUM_TESTER policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_GHASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_POLY1305_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_MD4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MD5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_MD5_PPC policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_MICHAEL_MIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RMD160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA1_SSSE3 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA256_SSSE3 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA512_SSSE3 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA1_PPC policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_SHA256 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA512 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SM3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_STREEBOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_WP512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_AES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_AES_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AES_NI_INTEL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_BLOWFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLOWFISH_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAMELLIA_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAST5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAST5_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAST6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAST6_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DES3_EDE_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_FCRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CHACHA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CHACHA20_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SERPENT_SSE2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SM4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TWOFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TWOFISH_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TWOFISH_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEFLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_CRYPTO_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZ4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZ4HC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ZSTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ANSI_CPRNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_JITTERENTROPY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_USER_API_HASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_SKCIPHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_RNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_RNG_CAVP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_USER_API_AEAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_LIB_BLAKE2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_CHACHA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_CURVE25519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_CHACHA20POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS flag +CONFIG_CRYPTO_TEST flag +CONFIG_CRYPTO_SHA512 note +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE mark note + +# Menu: Cryptographic API >> Asymmetric (public-key cryptographic) key type +CONFIG_ASYMMETRIC_KEY_TYPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_X509_CERTIFICATE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PKCS8_PRIVATE_KEY_PARSER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TPM_KEY_PARSER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PKCS7_MESSAGE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PKCS7_TEST_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SIGNED_PE_FILE_VERIFICATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_ASYMMETRIC_KEY_TYPE note +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE note +CONFIG_X509_CERTIFICATE_PARSER note + +# Menu: Cryptographic API >> Certificates for signature checking +CONFIG_MODULE_SIG_KEY policy<{'amd64': '"certs/signing_key.pem"', 'arm64': '"certs/signing_key.pem"', 'armhf': '"certs/signing_key.pem"', 'ppc64el': '"certs/signing_key.pem"', 's390x': '"certs/signing_key.pem"'}> +CONFIG_SYSTEM_BLACKLIST_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_BLACKLIST_HASH_LIST policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_SYSTEM_REVOCATION_LIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_REVOCATION_KEYS policy<{'amd64': '"debian/canonical-revoked-certs.pem"', 'arm64': '"debian/canonical-revoked-certs.pem"', 'armhf': '"debian/canonical-revoked-certs.pem"', 'ppc64el': '"debian/canonical-revoked-certs.pem"', 'riscv64': '"debian/canonical-revoked-certs.pem"', 's390x': '"debian/canonical-revoked-certs.pem"'}> +# +CONFIG_SYSTEM_BLACKLIST_KEYRING mark +CONFIG_SYSTEM_REVOCATION_KEYS mark + +# Menu: Cryptographic API >> Certificates for signature checking >> Provide system-wide ring of trusted keys +CONFIG_SYSTEM_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_TRUSTED_KEYS policy<{'amd64': '"debian/canonical-certs.pem"', 'arm64': '"debian/canonical-certs.pem"', 'armhf': '"debian/canonical-certs.pem"', 'ppc64el': '"debian/canonical-certs.pem"', 'riscv64': '"debian/canonical-certs.pem"', 's390x': '"debian/canonical-certs.pem"'}> +CONFIG_SYSTEM_EXTRA_CERTIFICATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'ppc64el': '4096', 's390x': '4096'}> +CONFIG_SECONDARY_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SYSTEM_TRUSTED_KEYS mark + +# Menu: Cryptographic API >> Certificates for signature checking >> Type of module signing key to be generated +CONFIG_MODULE_SIG_KEY_TYPE_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_SIG_KEY_TYPE_ECDSA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Cryptographic API >> Hardware crypto devices +CONFIG_CRYPTO_HW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DEV_PADLOCK policy<{'amd64': 'y'}> +CONFIG_CRYPTO_DEV_PADLOCK_AES policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_PADLOCK_SHA policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA1_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA256_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA512_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA3_256_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA3_512_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_DES_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_AES_S390 policy<{'s390x': 'm'}> +CONFIG_S390_PRNG policy<{'s390x': 'm'}> +CONFIG_CRYPTO_GHASH_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_CRC32_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_DEV_HIFN_795X policy<{'armhf-generic': 'm'}> +CONFIG_CRYPTO_DEV_HIFN_795X_RNG policy<{'armhf-generic': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG policy<{'arm64': 'n', 'armhf-generic': 'n'}> +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SAHARA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_CRYPTO_DEV_EXYNOS_RNG policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_S5P policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_NX policy<{'ppc64el': 'y'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_ATMEL_ECC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_ATMEL_SHA204A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_CCP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CRYPTO_DEV_CCP_DD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SP_CCP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CRYPTO_DEV_CCP_CRYPTO policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SP_PSP policy<{'amd64': 'y'}> +CONFIG_CRYPTO_DEV_CCP_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CRYPTO_DEV_MXS_DCP policy<{'arm64': 'n', 'armhf-generic': 'n'}> +CONFIG_CRYPTO_DEV_QAT_DH895xCC policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C3XXX policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C62X policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_4XXX policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C3XXXVF policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C62XVF policy<{'amd64': 'm'}> +CONFIG_CAVIUM_CPT policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_NITROX_CNN55XX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_MARVELL_CESA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OCTEONTX_CPT policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_OCTEONTX2_CPT policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_CAVIUM_ZIP policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_QCE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN policy<{'arm64': '512', 'armhf': '512'}> +CONFIG_CRYPTO_DEV_QCOM_RNG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_VMX policy<{'ppc64el': 'y'}> +CONFIG_CRYPTO_DEV_VMX_ENCRYPT policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_ZYNQMP_AES policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_CHELSIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DEV_BCM_SPU policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SAFEXCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_ARTPEC6 policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_CCREE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_HISI_SEC policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_SEC2 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_ZIP policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_HPRE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_TRNG policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_AMLOGIC_GXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_SA2UL policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_ECB policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_CTS policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU_HMAC_SHA224 policy<{'arm64': 'y'}> +# +CONFIG_CRYPTO_DEV_HISI_ZIP mark + +# Menu: Cryptographic API >> Hardware crypto devices >> Algorithms enabled for QCE acceleration +CONFIG_CRYPTO_DEV_QCE_ENABLE_ALL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_DEV_QCE_ENABLE_SKCIPHER policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CRYPTO_DEV_QCE_ENABLE_SHA policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CRYPTO_DEV_QCE_ENABLE_AEAD policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Freescale CAAM Job Ring driver backend +CONFIG_CRYPTO_DEV_FSL_CAAM_JR policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE policy<{'arm64': '9', 'armhf-generic': '9'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD policy<{'arm64': '255', 'armhf-generic': '255'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD policy<{'arm64': '2048', 'armhf-generic': '2048'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API policy<{'arm64': 'y', 'armhf-generic': 'y'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for Allwinner cryptographic offloader +CONFIG_CRYPTO_DEV_ALLWINNER policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_SUN4I_SS policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG policy<{'arm64': 'n'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for Allwinner cryptographic offloader >> Support for Allwinner Crypto Engine cryptographic offloader +CONFIG_CRYPTO_DEV_SUN8I_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG policy<{'arm64': 'y'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for Allwinner cryptographic offloader >> Support for Allwinner Security System cryptographic offloader +CONFIG_CRYPTO_DEV_SUN8I_SS policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG policy<{'arm64': 'n'}> +CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_SUN8I_SS_HASH policy<{'arm64': 'y'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for OMAP crypto HW accelerators +CONFIG_CRYPTO_DEV_OMAP policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_SHAM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_AES policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_DES policy<{'armhf': 'm'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for s390 cryptographic adapters +CONFIG_ZCRYPT policy<{'s390x': 'm'}> +CONFIG_ZCRYPT_DEBUG policy<{'s390x': 'n'}> +CONFIG_ZCRYPT_MULTIDEVNODES policy<{'s390x': 'y'}> +CONFIG_PKEY policy<{'s390x': 'm'}> +CONFIG_CRYPTO_PAES_S390 policy<{'s390x': 'm'}> +# +CONFIG_ZCRYPT_MULTIDEVNODES mark note + +# Menu: Cryptographic API >> NIST SP800-90A DRBG +CONFIG_CRYPTO_DRBG_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DRBG_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DRBG_CTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers +CONFIG_MEDIA_CEC_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CEC_PIN_ERROR_INJ policy<{'amd64-lowlatency': 'n', 'arm64': 'n'}> +CONFIG_PANEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_UNISYS_VISORBUS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Accessibility support +CONFIG_ACCESSIBILITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_ACCESSIBILITY flag + +# Menu: Device Drivers >> Accessibility support >> Speakup console speech + +# Menu: Device Drivers >> Accessibility support >> Speakup console speech >> Speakup core + +# Menu: Device Drivers >> Android +CONFIG_ANDROID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> Android >> Android Binder IPC Driver +CONFIG_ANDROID_BINDER_IPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ANDROID_BINDERFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ANDROID_BINDER_DEVICES policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""'}> +CONFIG_ANDROID_BINDER_IPC_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Auxiliary Display support +CONFIG_CHARLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AUXDISPLAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HD44780_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HD44780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IMG_ASCII_LCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HT16K33 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARM_CHARLCD policy<{'armhf': 'y'}> +CONFIG_PANEL_CHANGE_MESSAGE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Auxiliary Display support >> Backlight initial state +CONFIG_CHARLCD_BL_OFF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CHARLCD_BL_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CHARLCD_BL_FLASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Auxiliary Display support >> KS0108 LCD Controller +CONFIG_KS0108 policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KS0108_PORT policy<{'amd64': '0x378', 'armhf': '0x378', 'ppc64el': '0x378'}> +CONFIG_KS0108_DELAY policy<{'amd64': '2', 'armhf': '2', 'ppc64el': '2'}> +CONFIG_CFAG12864B policy<{'amd64': 'm'}> +CONFIG_CFAG12864B_RATE policy<{'amd64': '20'}> + +# Menu: Device Drivers >> Auxiliary Display support >> Parallel port LCD/Keypad Panel support +CONFIG_PARPORT_PANEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PANEL_PARPORT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_PANEL_PROFILE policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'ppc64el': '5'}> + +# Menu: Device Drivers >> Auxiliary Display support >> Parallel port LCD/Keypad Panel support >> LCD type (0=none, 1=custom, 2=old //, 3=ks0074, 4=hantronix, 5=Nexcom) + +# Menu: Device Drivers >> Auxiliary Display support >> Parallel port LCD/Keypad Panel support >> LCD type (0=none, 1=custom, 2=old //, 3=ks0074, 4=hantronix, 5=Nexcom) >> LCD communication mode (0=parallel 8 bits, 1=serial) + +# Menu: Device Drivers >> Block devices +CONFIG_BLK_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_NULL_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_FD policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_BLK_DEV_PCIESSD_MTIP32XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_LOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_LOOP_MIN_COUNT policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 's390x': '8'}> +CONFIG_BLK_DEV_CRYPTOLOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_DRBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DRBD_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BLK_DEV_NBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_SX8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RAM_COUNT policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16', 's390x': '16'}> +CONFIG_BLK_DEV_RAM_SIZE policy<{'amd64': '65536', 'arm64': '65536', 'armhf': '65536', 'ppc64el': '65536', 's390x': '65536'}> +CONFIG_CDROM_PKTCDVD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CDROM_PKTCDVD_BUFFERS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8'}> +CONFIG_CDROM_PKTCDVD_WCACHE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATA_OVER_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DCSSBLK policy<{'s390x': 'm'}> +CONFIG_SCM_BLOCK policy<{'s390x': 'm'}> +CONFIG_XEN_BLKDEV_FRONTEND policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_BLKDEV_BACKEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIRTIO_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RSXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_RNBD_CLIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RNBD_SERVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_CDROM_PKTCDVD_WCACHE mark +CONFIG_XEN_BLKDEV_FRONTEND note +CONFIG_VIRTIO_BLK note +CONFIG_BLK_DEV_RAM note +CONFIG_BLK_DEV_RAM_SIZE mark note flag + +# Menu: Device Drivers >> Block devices >> Compressed RAM block device support +CONFIG_ZRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ZRAM_WRITEBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZRAM_MEMORY_TRACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Block devices >> Compressed RAM block device support >> Default zram compressor +CONFIG_ZRAM_DEF_COMP_LZORLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZRAM_DEF_COMP_ZSTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_LZ4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_LZO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_LZ4HC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_842 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Block devices >> Parallel port IDE device support +CONFIG_PARIDE policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PD policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PCD policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PF policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PT policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_PG policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_ATEN policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_BPCK policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_BPCK6 policy<{'armhf': 'm'}> +CONFIG_PARIDE_COMM policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_DSTR policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FIT2 policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FIT3 policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_EPAT policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_EPATC8 policy<{'amd64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PARIDE_EPIA policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FRIQ policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_FRPW policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_KBIC policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_KTTI policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_ON20 policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARIDE_ON26 policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Block devices >> Support for DASD devices +CONFIG_DASD policy<{'s390x': 'm'}> +CONFIG_DASD_PROFILE policy<{'s390x': 'y'}> +CONFIG_DASD_ECKD policy<{'s390x': 'm'}> +CONFIG_DASD_FBA policy<{'s390x': 'm'}> +CONFIG_DASD_DIAG policy<{'s390x': 'm'}> +CONFIG_DASD_EER policy<{'s390x': 'y'}> + +# Menu: Device Drivers >> Board level reset or power off +CONFIG_POWER_RESET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_POWER_RESET_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_ATC260X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_POWER_RESET_AXXIA policy<{'armhf-generic-lpae': 'y'}> +CONFIG_POWER_RESET_BRCMKONA policy<{'armhf': 'y'}> +CONFIG_POWER_RESET_BRCMSTB policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_POWER_RESET_GPIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_GPIO_RESTART policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_LINKSTATION policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_POWER_RESET_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_QCOM_PON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_POWER_RESET_OCELOT_RESET policy<{'arm64': 'y'}> +CONFIG_POWER_RESET_LTC2952 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_MT6323 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_QNAP policy<{'armhf': 'n'}> +CONFIG_POWER_RESET_REGULATOR policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_RESTART policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_POWER_RESET_TPS65086 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_VERSATILE policy<{'armhf': 'y'}> +CONFIG_POWER_RESET_VEXPRESS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_XGENE policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_SYSCON policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_SYSCON_POWEROFF policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_POWER_RESET_RMOBILE policy<{'armhf': 'm'}> +CONFIG_SYSCON_REBOOT_MODE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_POWER_RESET_SC27XX policy<{'arm64': 'm'}> +CONFIG_NVMEM_REBOOT_MODE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Broadcom specific AMBA +CONFIG_BCMA_HOST_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BCMA_HOST_SOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DRIVER_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_SFLASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DRIVER_GMAC_CMN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DRIVER_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BCMA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Bus devices +CONFIG_BRCMSTB_GISB_ARB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MOXTET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HISILICON_LPC policy<{'arm64': 'y'}> +CONFIG_IMX_WEIM policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_OMAP_INTERCONNECT policy<{'armhf': 'y'}> +CONFIG_OMAP_OCP2SCP policy<{'armhf': 'm'}> +CONFIG_QCOM_EBI2 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SUN50I_DE2_BUS policy<{'arm64': 'y'}> +CONFIG_SUNXI_RSB policy<{'arm64': 'm'}> +CONFIG_TEGRA_ACONNECT policy<{'arm64': 'm'}> +CONFIG_TEGRA_GMI policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_TI_SYSC policy<{'armhf': 'y'}> +CONFIG_UNIPHIER_SYSTEM_BUS policy<{'armhf': 'y'}> +CONFIG_VEXPRESS_CONFIG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FSL_MC_BUS policy<{'arm64': 'y', 'armhf-generic': 'n'}> +CONFIG_FSL_MC_UAPI_SUPPORT policy<{'arm64': 'y'}> +CONFIG_MHI_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MHI_BUS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MHI_BUS_PCI_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> CXL (Compute Express Link) Devices Support +CONFIG_CXL_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CXL_MEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CXL_MEM_RAW_COMMANDS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CXL_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CXL_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Character devices +CONFIG_RANDOM_TRUST_CPU policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RANDOM_TRUST_BOOTLOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TTY_PRINTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TTY_PRINTK_LEVEL policy<{'amd64': '6', 'arm64': '6', 'armhf': '6', 'ppc64el': '6'}> +CONFIG_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LP_CONSOLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PPDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIRTIO_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IBM_BSR policy<{'ppc64el': 'm'}> +CONFIG_POWERNV_OP_PANEL policy<{'ppc64el': 'm'}> +CONFIG_ASPEED_KCS_IPMI_BMC policy<{'armhf': 'm'}> +CONFIG_NPCM7XX_KCS_IPMI_BMC policy<{'armhf': 'm'}> +CONFIG_IPMI_KCS_BMC_CDEV_IPMI policy<{'armhf': 'm'}> +CONFIG_IPMI_KCS_BMC_SERIO policy<{'armhf': 'm'}> +CONFIG_ASPEED_BT_IPMI_BMC policy<{'armhf': 'm'}> +CONFIG_IPMB_DEVICE_INTERFACE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APPLICOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MWAVE policy<{'amd64': 'm'}> +CONFIG_DEVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NVRAM policy<{'amd64': 'm', 'ppc64el': 'y'}> +CONFIG_DEVPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HPET policy<{'amd64': 'y'}> +CONFIG_HPET_MMAP policy<{'amd64': 'y'}> +CONFIG_HPET_MMAP_DEFAULT policy<{'amd64': 'y'}> +CONFIG_HANGCHECK_TIMER policy<{'amd64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_UV_MMTIMER policy<{'amd64': 'm'}> +CONFIG_TELCLOCK policy<{'amd64': 'm'}> +CONFIG_TN3270 policy<{'s390x': 'y'}> +CONFIG_TN3270_TTY policy<{'s390x': 'y'}> +CONFIG_TN3270_FS policy<{'s390x': 'm'}> +CONFIG_TN3270_CONSOLE policy<{'s390x': 'y'}> +CONFIG_TN3215 policy<{'s390x': 'y'}> +CONFIG_TN3215_CONSOLE policy<{'s390x': 'y'}> +CONFIG_SCLP_TTY policy<{'s390x': 'y'}> +CONFIG_SCLP_CONSOLE policy<{'s390x': 'y'}> +CONFIG_SCLP_VT220_TTY policy<{'s390x': 'y'}> +CONFIG_SCLP_VT220_CONSOLE policy<{'s390x': 'y'}> +CONFIG_HMC_DRV policy<{'s390x': 'm'}> +CONFIG_SCLP_OFB policy<{'s390x': 'y'}> +CONFIG_S390_TAPE policy<{'s390x': 'm'}> +CONFIG_S390_TAPE_34XX policy<{'s390x': 'm'}> +CONFIG_S390_TAPE_3590 policy<{'s390x': 'm'}> +CONFIG_VMLOGRDR policy<{'s390x': 'm'}> +CONFIG_VMCP policy<{'s390x': 'y'}> +CONFIG_VMCP_CMA_SIZE policy<{'s390x': '4'}> +CONFIG_MONREADER policy<{'s390x': 'm'}> +CONFIG_MONWRITER policy<{'s390x': 'm'}> +CONFIG_S390_VMUR policy<{'s390x': 'm'}> +CONFIG_XILLYBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_XILLYBUS_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XILLYBUS_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XILLYUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_NVRAM mark note +CONFIG_SCLP_OFB mark note + +# Menu: Device Drivers >> Character devices >> Enable TTY +CONFIG_NULL_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HVC_CONSOLE policy<{'ppc64el': 'y'}> +CONFIG_HVC_OLD_HVSI policy<{'ppc64el': 'y'}> +CONFIG_HVC_OPAL policy<{'ppc64el': 'y'}> +CONFIG_HVC_RTAS policy<{'ppc64el': 'y'}> +CONFIG_HVC_IUCV policy<{'s390x': 'y'}> +CONFIG_HVC_XEN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HVC_XEN_FRONTEND policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HVC_UDBG policy<{'ppc64el': 'n'}> +CONFIG_HVC_DCC policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_HVCS policy<{'ppc64el': 'm'}> +CONFIG_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CONSOLE_TRANSLATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VT_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VT_HW_CONSOLE_BINDING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UNIX98_PTYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LEGACY_PTYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LEGACY_PTY_COUNT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_NOZOMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_N_GSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PPC_EPAPR_HV_BYTECHAN policy<{'ppc64el': 'n'}> +CONFIG_LDISC_AUTOLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_HVC_UDBG mark note +CONFIG_N_GSM note + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Non-standard serial port support +CONFIG_SERIAL_NONSTANDARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MOXA_INTELLIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOXA_SMARTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SYNCLINK_GT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_N_HDLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers +CONFIG_SERIAL_AMBA_PL010 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_AMBA_PL011 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_AMBA_PL011_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_KGDB_NMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MESON_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_SAMSUNG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SERIAL_TEGRA_TCU policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_SERIAL_TEGRA_TCU_CONSOLE policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_SERIAL_MAX3100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_MAX310X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_IMX policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_SERIAL_IMX_CONSOLE policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_SERIAL_IMX_EARLYCON policy<{'arm64': 'n', 'armhf-generic': 'n'}> +CONFIG_SERIAL_UARTLITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SERIAL_UARTLITE_NR_UARTS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 's390x': '1'}> +CONFIG_SERIAL_ICOM policy<{'ppc64el': 'm'}> +CONFIG_SERIAL_JSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MSM_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_QCOM_GENI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_QCOM_GENI_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OMAP policy<{'armhf': '-'}> +CONFIG_SERIAL_OMAP_CONSOLE policy<{'armhf': '-'}> +CONFIG_SERIAL_SIFIVE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_LANTIQ policy<{'amd64': 'm'}> +CONFIG_SERIAL_QE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_SCCNXP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SERIAL_SCCNXP_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_SC16IS7XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_SC16IS7XX_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_SC16IS7XX_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_BCM63XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_ALTERA_JTAGUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_XILINX_PS_UART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_ARC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_ARC_NR_PORTS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1'}> +CONFIG_SERIAL_RP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_RP2_NR_UARTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32'}> +CONFIG_SERIAL_FSL_LPUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_FSL_LINFLEXUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_CONEXANT_DIGICOLOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_ST_ASC policy<{'armhf': 'm'}> +CONFIG_SERIAL_MEN_Z135 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_SPRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_MVEBU_UART policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MVEBU_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OWL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OWL_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_RDA policy<{'armhf': 'y'}> +CONFIG_SERIAL_RDA_CONSOLE policy<{'armhf': 'y'}> +CONFIG_SERIAL_MILBEAUT_USIO policy<{'armhf': 'm'}> +CONFIG_SERIAL_MILBEAUT_USIO_PORTS policy<{'armhf': '4'}> +CONFIG_SERIAL_LITEUART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_LITEUART_MAX_PORTS policy<{'arm64': '1', 'armhf': '1', 'ppc64el': '1'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> 8250/16550 and compatible serial support +CONFIG_SERIAL_8250 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SERIAL_8250_PNP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SERIAL_8250_16550A_VARIANTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_FINTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SERIAL_8250_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_EXAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_8250_CS policy<{'amd64': 'm'}> +CONFIG_SERIAL_8250_MEN_MCB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_8250_NR_UARTS policy<{'amd64': '48', 'arm64': '48', 'armhf': '48', 'ppc64el': '48'}> +CONFIG_SERIAL_8250_RUNTIME_UARTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32'}> +CONFIG_SERIAL_8250_ASPEED_VUART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_8250_DW policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_8250_EM policy<{'armhf': 'n'}> +CONFIG_SERIAL_8250_RT288X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_OMAP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_MT6577 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_SERIAL_8250_LPSS policy<{'amd64': 'm'}> +CONFIG_SERIAL_8250_MID policy<{'amd64': 'm'}> +CONFIG_SERIAL_8250_TEGRA policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_SERIAL_8250_BCM7271 policy<{'arm64': 'm'}> +CONFIG_SERIAL_OF_PLATFORM policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> 8250/16550 and compatible serial support >> Extended 8250/16550 serial driver options +CONFIG_SERIAL_8250_EXTENDED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_SHARE_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_DETECT_IRQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SERIAL_8250_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIAL_8250_BCM2835AUX policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> 8250/16550 and compatible serial support >> Extended 8250/16550 serial driver options >> Support more than 4 legacy serial ports +CONFIG_SERIAL_8250_MANY_PORTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> AT91 on-chip serial port support + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> Altera UART support +CONFIG_SERIAL_ALTERA_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SERIAL_ALTERA_UART_MAXPORTS policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'ppc64el': '4'}> +CONFIG_SERIAL_ALTERA_UART_BAUDRATE policy<{'amd64': '115200', 'arm64': '115200', 'armhf': '115200', 'ppc64el': '115200'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> SuperH SCI(F) serial port support +CONFIG_SERIAL_SH_SCI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_SH_SCI_NR_UARTS policy<{'arm64': '2', 'armhf': '2'}> +CONFIG_SERIAL_SH_SCI_DMA policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> TMPTX39XX/49XX SIO support + +# Menu: Device Drivers >> Character devices >> Hardware Random Number Generator Core support +CONFIG_HW_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HW_RANDOM_TIMERIOMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HW_RANDOM_INTEL policy<{'amd64': 'm'}> +CONFIG_HW_RANDOM_AMD policy<{'amd64': 'm'}> +CONFIG_HW_RANDOM_BA431 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HW_RANDOM_BCM2835 policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_IPROC_RNG200 policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_VIA policy<{'amd64': 'm'}> +CONFIG_HW_RANDOM_OMAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_OMAP3_ROM policy<{'armhf-generic': 'm'}> +CONFIG_HW_RANDOM_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HW_RANDOM_IMX_RNGC policy<{'armhf-generic': 'm'}> +CONFIG_HW_RANDOM_PSERIES policy<{'ppc64el': 'm'}> +CONFIG_HW_RANDOM_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_HW_RANDOM_HISI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_XGENE policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_CAVIUM policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_S390 policy<{'s390x': 'm'}> +CONFIG_HW_RANDOM_EXYNOS policy<{'armhf': 'm'}> +CONFIG_HW_RANDOM_OPTEE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_NPCM policy<{'armhf': 'm'}> +CONFIG_HW_RANDOM_CCTRNG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_HW_RANDOM_XIPHERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Character devices >> IPMI top-level message handler +CONFIG_IPMI_HANDLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IPMI_PANIC_EVENT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_IPMI_DEVICE_INTERFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_SI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_SSIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_IPMI_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IPMI_POWEROFF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Character devices >> PCMCIA character devices +CONFIG_SYNCLINK_CS policy<{'amd64': 'm'}> +CONFIG_CARDMAN_4000 policy<{'amd64': 'm'}> +CONFIG_CARDMAN_4040 policy<{'amd64': 'm'}> +CONFIG_SCR24X policy<{'amd64': 'm'}> +CONFIG_IPWIRELESS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Character devices >> Serial device bus +CONFIG_SERIAL_DEV_BUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SERIAL_DEV_CTRL_TTYPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SERIAL_DEV_BUS note +CONFIG_SERIAL_DEV_CTRL_TTYPORT note + +# Menu: Device Drivers >> Character devices >> TPM Hardware Support +CONFIG_TCG_TPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HW_RANDOM_TPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TCG_TIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TCG_TIS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_TIS_SPI_CR50 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TCG_TIS_SYNQUACER policy<{'arm64': 'm'}> +CONFIG_TCG_TIS_I2C_CR50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TCG_TIS_I2C_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TCG_TIS_I2C_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TCG_TIS_I2C_NUVOTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TCG_NSC policy<{'amd64': 'm'}> +CONFIG_TCG_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_TCG_INFINEON policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TCG_IBMVTPM policy<{'ppc64el': 'y'}> +CONFIG_TCG_XEN policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TCG_CRB policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_TCG_VTPM_PROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCG_FTPM_TEE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TCG_TIS_ST33ZP24_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TCG_TIS_ST33ZP24_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_TCG_TPM note +CONFIG_TCG_TIS_I2C_ATMEL note +CONFIG_TCG_TIS_I2C_INFINEON note +CONFIG_TCG_TIS_I2C_NUVOTON note + +# Menu: Device Drivers >> Clock Source drivers +CONFIG_DW_APB_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARMADA_370_XP_TIMER policy<{'armhf': 'y'}> +CONFIG_MESON6_TIMER policy<{'armhf': 'y'}> +CONFIG_ORION_TIMER policy<{'armhf': 'y'}> +CONFIG_OWL_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RDA_TIMER policy<{'armhf': 'y'}> +CONFIG_SUN4I_TIMER policy<{'arm64': 'y'}> +CONFIG_TEGRA_TIMER policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_NPCM7XX_TIMER policy<{'armhf': 'y'}> +CONFIG_CLKSRC_TI_32K policy<{'armhf': 'y'}> +CONFIG_ARM_ARCH_TIMER_EVTSTREAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FSL_ERRATUM_A008585 policy<{'arm64': 'y'}> +CONFIG_HISILICON_ERRATUM_161010101 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_858921 policy<{'arm64': 'y'}> +CONFIG_SUN50I_ERRATUM_UNKNOWN1 policy<{'arm64': 'y'}> +CONFIG_ARM_GLOBAL_TIMER policy<{'armhf': 'y'}> +CONFIG_ARM_GT_INITIAL_PRESCALER_VAL policy<{'armhf': '1'}> +CONFIG_ARM_TIMER_SP804 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLKSRC_EXYNOS_MCT policy<{'armhf': 'y'}> +CONFIG_MTK_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SPRD_TIMER policy<{'arm64': 'y'}> +CONFIG_SH_TIMER_CMT policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SH_TIMER_MTU2 policy<{'armhf': 'y'}> +CONFIG_RENESAS_OSTM policy<{'armhf': 'y'}> +CONFIG_SH_TIMER_TMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EM_TIMER_STI policy<{'armhf': 'y'}> +CONFIG_CLKSRC_QCOM policy<{'armhf': 'y'}> +CONFIG_CLKSRC_VERSATILE policy<{'armhf': 'y'}> +CONFIG_CLKSRC_IMX_GPT policy<{'armhf-generic': 'y'}> +CONFIG_CLKSRC_IMX_TPM policy<{'armhf-generic': 'y'}> +CONFIG_TIMER_IMX_SYS_CTR policy<{'arm64': 'y'}> +CONFIG_MILBEAUT_TIMER policy<{'armhf': 'y'}> +CONFIG_MICROCHIP_PIT64B policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_ARM64_ERRATUM_858921 mark note + +# Menu: Device Drivers >> Common Clock Framework +CONFIG_COMMON_CLK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_COMMON_CLK_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LMK04832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_MAX9485 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_HI655X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_SCPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_SI5341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_SI5351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_SI514 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_SI544 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_SI570 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_BM1880 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_CDCE706 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_CDCE925 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_CS2000_CP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_FSL_FLEXSPI policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_FSL_SAI policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_ASPEED policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_S2MPS11 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CLK_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_AXI_CLKGEN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CLK_QORIQ policy<{'arm64': 'y'}> +CONFIG_CLK_LS1028A_PLLDIG policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_XGENE policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_VC5 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_BD718XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_FIXED_MMIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CLK_BCM2711_DVP policy<{'arm64': 'm'}> +CONFIG_CLK_BCM2835 policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_NS2 policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_SR policy<{'arm64': 'y'}> +CONFIG_CLK_RASPBERRYPI policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_HI3516CV300 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_HI3519 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_HI3559A policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_HI3660 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_HI3670 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_HI3798CV200 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_HI6220 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_STUB_CLK_HI6220 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_STUB_CLK_HI3660 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MXC_CLK policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CLK_IMX8MM policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CLK_IMX8MN policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CLK_IMX8MP policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CLK_IMX8MQ policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_CLK_IMX8QXP policy<{'arm64': 'y'}> +CONFIG_TI_SCI_CLK policy<{'arm64': 'm'}> +CONFIG_TI_SCI_CLK_PROBE_FROM_FW policy<{'arm64': 'n'}> +CONFIG_TI_SYSCON_CLK policy<{'arm64': 'y'}> +CONFIG_MSTAR_MSC313_MPLL policy<{'armhf': 'y'}> +CONFIG_CLK_INTEL_SOCFPGA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_INTEL_SOCFPGA32 policy<{'armhf': 'y'}> +CONFIG_CLK_INTEL_SOCFPGA64 policy<{'arm64': 'y'}> +CONFIG_SPRD_COMMON_CLK policy<{'arm64': 'm'}> +CONFIG_SPRD_SC9860_CLK policy<{'arm64': 'm'}> +CONFIG_SPRD_SC9863A_CLK policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_TI_ADPLL policy<{'armhf': 'y'}> +CONFIG_CLK_UNIPHIER policy<{'armhf': 'y'}> +CONFIG_XILINX_VCU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_ZYNQMP policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for ARM Reference designs +CONFIG_ICST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CLK_SP810 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CLK_VEXPRESS_OSC policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for Actions Semi SoCs +CONFIG_CLK_ACTIONS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_OWL_S500 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_OWL_S700 policy<{'arm64': 'y'}> +CONFIG_CLK_OWL_S900 policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC +CONFIG_COMMON_CLK_MT7629 policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7629_ETHSYS policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7629_HIFSYS policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8135 policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8173 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8173_MMSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8516 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8516_AUDSYS policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT2701 +CONFIG_COMMON_CLK_MT2701 policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT2712 +CONFIG_COMMON_CLK_MT2712 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_BDPSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_JPGDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT6765 +CONFIG_COMMON_CLK_MT6765 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_AUDIOSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_GCESYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_VCODECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MFGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI0ASYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI0BSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI1ASYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI1BSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI2ASYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI2BSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT6779 +CONFIG_COMMON_CLK_MT6779 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_IPESYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_VENCSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_AUDSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT6797 +CONFIG_COMMON_CLK_MT6797 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT7622 +CONFIG_COMMON_CLK_MT7622 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7622_ETHSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7622_HIFSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7622_AUDSYS policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT8167 +CONFIG_COMMON_CLK_MT8167 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_AUDSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_VDECSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT8183 +CONFIG_COMMON_CLK_MT8183 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_AUDIOSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_CORE0 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_CORE1 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_ADL policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_CONN policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT8192 +CONFIG_COMMON_CLK_MT8192 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_AUDSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_IMP_IIC_WRAP policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_IPESYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MDPSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MSDC policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_SCP_ADSP policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock support for Allwinner SoCs +CONFIG_SUNXI_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_A64_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_A100_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_A100_R_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_H6_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_H616_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_H6_R_CCU policy<{'arm64': 'y'}> +CONFIG_SUN8I_A83T_CCU policy<{'arm64': 'y'}> +CONFIG_SUN8I_H3_CCU policy<{'arm64': 'y'}> +CONFIG_SUN8I_DE2_CCU policy<{'arm64': 'y'}> +CONFIG_SUN8I_R_CCU policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock support for Amlogic platforms +CONFIG_COMMON_CLK_MESON8B policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_GXBB policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_AXG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_AXG_AUDIO policy<{'arm64': 'm', 'armhf': 'n'}> +CONFIG_COMMON_CLK_G12A policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Ingenic SoCs drivers + +# Menu: Device Drivers >> Common Clock Framework >> Legacy clock support for Allwinner SoCs +CONFIG_CLK_SUNXI policy<{'arm64': 'y'}> +CONFIG_CLK_SUNXI_CLOCKS policy<{'arm64': 'y'}> +CONFIG_CLK_SUNXI_PRCM_SUN6I policy<{'arm64': 'y'}> +CONFIG_CLK_SUNXI_PRCM_SUN8I policy<{'arm64': 'y'}> +CONFIG_CLK_SUNXI_PRCM_SUN9I policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Renesas SoC clock support +CONFIG_CLK_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_EMEV2 policy<{'armhf': 'y'}> +CONFIG_CLK_RZA1 policy<{'armhf': 'y'}> +CONFIG_CLK_R7S9210 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7740 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7742 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7743 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7745 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A77470 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A774B1 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A7778 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7779 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7790 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7791 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7792 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7794 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7795 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77960 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77961 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77965 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77970 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77980 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77990 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77995 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_CLK_R9A06G032 policy<{'armhf': 'y'}> +CONFIG_CLK_R9A07G044 policy<{'arm64': 'y'}> +CONFIG_CLK_SH73A0 policy<{'armhf': 'y'}> +CONFIG_CLK_RCAR_CPG_LIB policy<{'arm64': 'y'}> +CONFIG_CLK_RCAR_GEN2_CPG policy<{'armhf': 'y'}> +CONFIG_CLK_RCAR_GEN3_CPG policy<{'arm64': 'y'}> +CONFIG_CLK_RCAR_USB2_CLOCK_SEL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_RZG2L policy<{'arm64': 'y'}> +CONFIG_CLK_RENESAS_CPG_MSSR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_RENESAS_CPG_MSTP policy<{'armhf': 'y'}> +CONFIG_CLK_RENESAS_DIV6 policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Rockchip clock controller common support +CONFIG_COMMON_CLK_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_PX30 policy<{'arm64': 'y'}> +CONFIG_CLK_RV110X policy<{'armhf': 'y'}> +CONFIG_CLK_RK3036 policy<{'armhf': 'y'}> +CONFIG_CLK_RK312X policy<{'armhf': 'y'}> +CONFIG_CLK_RK3188 policy<{'armhf': 'y'}> +CONFIG_CLK_RK322X policy<{'armhf': 'y'}> +CONFIG_CLK_RK3288 policy<{'armhf': 'y'}> +CONFIG_CLK_RK3308 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3328 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3368 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3399 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3568 policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Common Clock Framework >> Samsung Exynos clock controller support +CONFIG_COMMON_CLK_SAMSUNG policy<{'armhf': 'y'}> +CONFIG_EXYNOS_5250_COMMON_CLK policy<{'armhf': 'y'}> +CONFIG_EXYNOS_5260_COMMON_CLK policy<{'armhf': 'y'}> +CONFIG_EXYNOS_5410_COMMON_CLK policy<{'armhf': 'y'}> +CONFIG_EXYNOS_5420_COMMON_CLK policy<{'armhf': 'y'}> +CONFIG_EXYNOS_AUDSS_CLK_CON policy<{'armhf': 'm'}> +CONFIG_EXYNOS_CLKOUT policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Common Clock Framework >> SiFive SoC driver support + +# Menu: Device Drivers >> Common Clock Framework >> Support for Qualcomm's clock controllers +CONFIG_COMMON_CLK_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_A53PLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_A7PLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_APCS_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_APCC_MSM8996 policy<{'arm64': 'm'}> +CONFIG_QCOM_CLK_APCS_SDX55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_RPMH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APQ_GCC_8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APQ_MMCC_8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_APSS_PLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_APSS_6018 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_4019 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_6018 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_806X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_LCC_806X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_8074 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8939 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_LCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDM_GCC_9607 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDM_GCC_9615 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDM_LCC_9615 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8953 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8994 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8994 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GPUCC_8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCS_GCC_404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_CAMCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_DISPCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_DISPCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GCC_8180X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_LPASS_CORECC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GPUCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GPUCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_MSS_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_VIDEOCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_VIDEOCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_CAMCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GCC_660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_MMCC_660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GPUCC_660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCS_TURING_404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCS_Q6SSTOP_404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GPUCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_VIDEOCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_DISPCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_LPASSCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDX_GCC_55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_CAMCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_DISPCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_6115 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_6125 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_6350 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_8350 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GPUCC_8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GPUCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_VIDEOCC_8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_VIDEOCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPMI_PMIC_CLKDIV policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_HFPLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KPSS_XCC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KRAITCC policy<{'armhf': 'm'}> +CONFIG_CLK_GFM_LPASS_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Connector - unified userspace <-> kernelspace linker +CONFIG_CONNECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Counter support +CONFIG_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_104_QUAD_8 policy<{'amd64': 'm'}> +CONFIG_INTERRUPT_CNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_EQEP policy<{'armhf-generic': 'm'}> +CONFIG_FTM_QUADDEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MICROCHIP_TCB_CAPTURE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INTEL_QEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> DAX: direct access to differentiated memory +CONFIG_DAX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEV_DAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DEV_DAX_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_DEV_DAX_HMEM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_DEV_DAX_KMEM policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DEV_DAX_PMEM_COMPAT policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> DMA Engine support +CONFIG_DMADEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DMADEVICES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ALTERA_MSGDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AMBA_PL08X policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_AXI_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BCM_SBA_RAID policy<{'arm64': 'm'}> +CONFIG_DMA_BCM2835 policy<{'arm64': 'y'}> +CONFIG_DMA_SUN6I policy<{'arm64': 'm'}> +CONFIG_DW_AXI_DMAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_EDMA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_QDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HISI_DMA policy<{'arm64': 'n'}> +CONFIG_IMX_DMA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_IMX_SDMA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_INTEL_IDMA64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INTEL_IDXD policy<{'amd64': 'm'}> +CONFIG_INTEL_IDXD_COMPAT policy<{'amd64': 'n'}> +CONFIG_INTEL_IDXD_SVM policy<{'amd64': 'y'}> +CONFIG_INTEL_IDXD_PERFMON policy<{'amd64': 'y'}> +CONFIG_INTEL_IOATDMA policy<{'amd64': 'm'}> +CONFIG_K3_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MILBEAUT_HDMAC policy<{'armhf': 'm'}> +CONFIG_MILBEAUT_XDMAC policy<{'armhf': 'm'}> +CONFIG_MV_XOR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MV_XOR_V2 policy<{'arm64': 'y'}> +CONFIG_MXS_DMA policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_MX3_IPU policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_MX3_IPU_IRQS policy<{'arm64': '4', 'armhf-generic': '4'}> +CONFIG_NBPFAXI_DMA policy<{'armhf': 'm'}> +CONFIG_OWL_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PL330_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PLX_DMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPRD_DMA policy<{'arm64': 'm'}> +CONFIG_TEGRA20_APB_DMA policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_TEGRA210_ADMA policy<{'arm64': 'm'}> +CONFIG_UNIPHIER_MDMAC policy<{'armhf': 'm'}> +CONFIG_UNIPHIER_XDMAC policy<{'armhf': 'm'}> +CONFIG_XGENE_DMA policy<{'arm64': 'm'}> +CONFIG_XILINX_DMA policy<{'arm64': 'm'}> +CONFIG_XILINX_ZYNQMP_DMA policy<{'arm64': 'm'}> +CONFIG_XILINX_ZYNQMP_DPDMA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTK_HSDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_CQDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_UART_APDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AMD_PTDMA policy<{'amd64': 'm'}> +CONFIG_QCOM_ADM policy<{'armhf-generic': 'm'}> +CONFIG_QCOM_BAM_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_GPI_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_HIDMA_MGMT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_HIDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DW_DMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DW_DMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DW_EDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DW_EDMA_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SF_PDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RCAR_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RENESAS_USB_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RZ_DMAC policy<{'arm64': 'm'}> +CONFIG_TI_CPPI41 policy<{'armhf': 'm'}> +CONFIG_TI_EDMA policy<{'armhf': 'y'}> +CONFIG_DMA_OMAP policy<{'armhf': 'y'}> +CONFIG_TI_K3_UDMA policy<{'arm64': 'y'}> +CONFIG_TI_K3_UDMA_GLUE_LAYER policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA2_QDMA policy<{'arm64': 'm'}> +CONFIG_INTEL_LDMA policy<{'amd64': 'y'}> +CONFIG_ASYNC_TX_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DMATEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_DMATEST flag + +# Menu: Device Drivers >> DMABUF options +CONFIG_SYNC_FILE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SW_SYNC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UDMABUF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DMABUF_MOVE_NOTIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DMABUF_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DMABUF_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DMABUF_SYSFS_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> DMABUF options >> DMA-BUF Userland Memory Heaps +CONFIG_DMABUF_HEAPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DMABUF_HEAPS_SYSTEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DMABUF_HEAPS_CMA policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Dallas's 1-wire support +CONFIG_W1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_W1_CON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Dallas's 1-wire support >> 1-wire Bus Masters +CONFIG_W1_MASTER_MATROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_DS2490 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_DS2482 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_MXC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_W1_MASTER_DS1WM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_MASTER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDQ_MASTER_OMAP policy<{'armhf': 'm'}> +CONFIG_W1_MASTER_SGI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Dallas's 1-wire support >> 1-wire Slaves +CONFIG_W1_SLAVE_THERM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_SMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2405 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2408 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2408_READBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_W1_SLAVE_DS2413 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2406 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2423 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2430 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2431 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2433 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2433_CRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_W1_SLAVE_DS2438 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS250X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS2781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS28E04 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_W1_SLAVE_DS28E17 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) +CONFIG_COMEDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_COMEDI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'ppc64el': '2048'}> +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB policy<{'amd64': '20480', 'arm64': '20480', 'armhf': '20480', 'ppc64el': '20480'}> +CONFIG_COMEDI_8255_SA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_KCOMEDILIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_TESTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_TESTS_EXAMPLE policy<{'amd64-generic': 'm', 'amd64-lowlatency': 'n', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_TESTS_NI_ROUTES policy<{'amd64-generic': 'm', 'amd64-lowlatency': 'n', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi ISA and PC/104 drivers +CONFIG_COMEDI_ISA_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_COMEDI_PCL711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL726 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCL818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCM3724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_RTI800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_RTI802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAC02 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS16M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS08_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS1800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS6402 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2811 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2814 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2815 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT2817 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT282X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DMM32AT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_FL512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AIO_AIO12_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AIO_IIRO_16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_II_PCI20KC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_C6XDIGIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_MPC624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADQ12B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_AT_A2150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_AT_AO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_ATMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_ATMIO16D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_LABPC_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMDA12 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PCMUIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_MULTIQ3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_S526 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi PCI drivers +CONFIG_COMEDI_PCI_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_8255_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1516 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1564 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_16XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_2032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_2200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3120 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI6208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI7X3X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI8164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI9111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADL_PCI9118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1723 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI1760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ADV_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PCI224 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_AMPLC_PCI230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CONTEC_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAS08_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DYNA_PCI10XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_GSC_HPDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_MF6X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ICP_MULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DAQBOARD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_JR3_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_KE_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIDAS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIMDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_CB_PCIMDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ME4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ME_DAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_6527 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_65XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_660X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_670X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_LABPC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_PCIDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_PCIMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_RTD520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_S626 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi PCMCIA drivers +CONFIG_COMEDI_PCMCIA_DRIVERS policy<{'amd64': 'm'}> +CONFIG_COMEDI_CB_DAS16_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_DAS08_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_DAQ_700_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_DAQ_DIO24_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_LABPC_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_MIO_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_QUATECH_DAQP_CS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi USB drivers +CONFIG_COMEDI_USB_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_DT9812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_USB6501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_USBDUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_USBDUXFAST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_USBDUXSIGMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_VMK80XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi misc drivers +CONFIG_COMEDI_MISC_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_COMEDI_BOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Device Tree and Open Firmware support +CONFIG_OF policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_OF_UNITTEST policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_OF_DYNAMIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_OF_OVERLAY policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_OF_UNITTEST flag + +# Menu: Device Drivers >> EDAC (Error Detection And Correction) reporting +CONFIG_EDAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_EDAC_LEGACY_SYSFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_EDAC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_EDAC_DECODE_MCE policy<{'amd64': 'm'}> +CONFIG_EDAC_GHES policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_EDAC_AMD64 policy<{'amd64': 'm'}> +CONFIG_EDAC_AL_MC policy<{'armhf': 'm'}> +CONFIG_EDAC_E752X policy<{'amd64': 'm'}> +CONFIG_EDAC_I82975X policy<{'amd64': 'm'}> +CONFIG_EDAC_I3000 policy<{'amd64': 'm'}> +CONFIG_EDAC_I3200 policy<{'amd64': 'm'}> +CONFIG_EDAC_IE31200 policy<{'amd64': 'm'}> +CONFIG_EDAC_X38 policy<{'amd64': 'm'}> +CONFIG_EDAC_I5400 policy<{'amd64': 'm'}> +CONFIG_EDAC_I7CORE policy<{'amd64': 'm'}> +CONFIG_EDAC_I5000 policy<{'amd64': 'm'}> +CONFIG_EDAC_I5100 policy<{'amd64': 'm'}> +CONFIG_EDAC_I7300 policy<{'amd64': 'm'}> +CONFIG_EDAC_SBRIDGE policy<{'amd64': 'm'}> +CONFIG_EDAC_SKX policy<{'amd64': 'm'}> +CONFIG_EDAC_I10NM policy<{'amd64': 'm'}> +CONFIG_EDAC_PND2 policy<{'amd64': 'm'}> +CONFIG_EDAC_IGEN6 policy<{'amd64': 'm'}> +CONFIG_EDAC_LAYERSCAPE policy<{'arm64': 'm'}> +CONFIG_EDAC_CPC925 policy<{'ppc64el': 'm'}> +CONFIG_EDAC_HIGHBANK_MC policy<{'armhf': 'm'}> +CONFIG_EDAC_HIGHBANK_L2 policy<{'armhf': 'm'}> +CONFIG_EDAC_THUNDERX policy<{'arm64': 'm'}> +CONFIG_EDAC_ARMADA_XP policy<{'armhf': 'y'}> +CONFIG_EDAC_SYNOPSYS policy<{'arm64': 'm'}> +CONFIG_EDAC_XGENE policy<{'arm64': 'm'}> +CONFIG_EDAC_TI policy<{'armhf': 'm'}> +CONFIG_EDAC_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_EDAC_ASPEED policy<{'armhf': 'm'}> +CONFIG_EDAC_BLUEFIELD policy<{'arm64': 'm'}> +CONFIG_EDAC_DMC520 policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> EDAC (Error Detection And Correction) reporting >> Altera SOCFPGA ECC +CONFIG_EDAC_ALTERA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_SDRAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_L2C policy<{'armhf': 'y'}> +CONFIG_EDAC_ALTERA_OCRAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_ETHERNET policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_NAND policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_USB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_QSPI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_SDMMC policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> EISA support +CONFIG_EISA policy<{'amd64': 'y'}> +CONFIG_EISA_VLB_PRIMING policy<{'amd64': 'y'}> +CONFIG_EISA_PCI_EISA policy<{'amd64': 'y'}> +CONFIG_EISA_VIRTUAL_ROOT policy<{'amd64': 'y'}> +CONFIG_EISA_NAMES policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Eckelmann SIOX Support +CONFIG_SIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SIOX_BUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> External Connector Class (extcon) support +CONFIG_EXTCON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EXTCON_ADC_JACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_AXP288 policy<{'amd64': 'm'}> +CONFIG_EXTCON_FSA9480 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_INTEL_INT3496 policy<{'amd64': 'm'}> +CONFIG_EXTCON_INTEL_CHT_WC policy<{'amd64': 'm'}> +CONFIG_EXTCON_INTEL_MRFLD policy<{'amd64': 'm'}> +CONFIG_EXTCON_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX3355 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX77843 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_PTN5150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_QCOM_SPMI_MISC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_EXTCON_RT8973A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_SM5502 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_USB_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXTCON_USBC_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_EXTCON_USBC_TUSB320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework +CONFIG_FPGA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FPGA_MGR_SOCFPGA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FPGA_MGR_SOCFPGA_A10 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ALTERA_PR_IP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ALTERA_PR_IP_CORE_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_MGR_ALTERA_PS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_MGR_ALTERA_CVP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FPGA_MGR_STRATIX10_SOC policy<{'arm64': 'm'}> +CONFIG_FPGA_MGR_XILINX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_MGR_ICE40_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_MGR_MACHXO2_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_MGR_ZYNQMP_FPGA policy<{'arm64': 'm'}> +CONFIG_FPGA_MGR_VERSAL_FPGA policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework >> FPGA Bridge Framework +CONFIG_FPGA_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SOCFPGA_FPGA_BRIDGE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ALTERA_FREEZE_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XILINX_PR_DECOUPLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_REGION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_OF_FPGA_REGION policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework >> FPGA Device Feature List (DFL) support +CONFIG_FPGA_DFL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FPGA_DFL_AFU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_DFL_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework >> FPGA Device Feature List (DFL) support >> FPGA DFL FME Driver +CONFIG_FPGA_DFL_FME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_DFL_FME_MGR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_DFL_FME_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FPGA_DFL_FME_REGION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> FSI support +CONFIG_FSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSI_NEW_DEV_NODE policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FSI_MASTER_GPIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSI_MASTER_HUB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSI_MASTER_AST_CF policy<{'armhf': 'm'}> +CONFIG_FSI_MASTER_ASPEED policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSI_SCOM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSI_SBEFIFO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSI_OCC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Fusion MPT device support +CONFIG_FUSION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FUSION_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128'}> +CONFIG_FUSION_CTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_LAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FUSION_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> GNSS receiver support +CONFIG_GNSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GNSS_MTK_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GNSS_SIRF_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GNSS_UBX_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> GPIO Support +CONFIG_GPIOLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GPIOLIB_FASTPATH_LIMIT policy<{'amd64': '512', 'arm64': '512', 'armhf': '512', 'ppc64el': '512', 's390x': '512'}> +CONFIG_DEBUG_GPIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GPIO_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GPIO_CDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GPIO_CDEV_V1 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> GPIO Support >> I2C GPIO expanders +CONFIG_GPIO_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_ADNP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_GW_PLD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX7300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_MAX732X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_PCA953X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_PCA953X_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_PCA9570 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_PCF857X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_TPIC2810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_TS4900 policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> MFD GPIO expanders +CONFIG_GPIO_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ALTERA_A10SR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_ARIZONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_BD70528 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_BD71815 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_BD71828 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_BD9571MWV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_CRYSTAL_COVE policy<{'amd64': 'y'}> +CONFIG_GPIO_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HTC_EGPIO policy<{'armhf': 'y'}> +CONFIG_GPIO_JANZ_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_LP873X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MADERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX77620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_PALMAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_RC5T583 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_GPIO_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TPS65086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TPS6586X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TPS68470 policy<{'amd64': 'y'}> +CONFIG_GPIO_TQMX86 policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_GPIO_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_GPIO_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WHISKEY_COVE policy<{'amd64': 'm'}> +CONFIG_GPIO_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_GPIO_TWL4030 mark note + +# Menu: Device Drivers >> GPIO Support >> Memory mapped GPIO drivers +CONFIG_GPIO_74XX_MMIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ALTERA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_AMDPT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_GPIO_ASPEED policy<{'armhf': 'm'}> +CONFIG_GPIO_ASPEED_SGPIO policy<{'armhf': 'y'}> +CONFIG_GPIO_RASPBERRYPI_EXP policy<{'arm64': 'm'}> +CONFIG_GPIO_BCM_XGS_IPROC policy<{'arm64': 'm'}> +CONFIG_GPIO_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_GPIO_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_DAVINCI policy<{'arm64': 'y'}> +CONFIG_GPIO_DWAPB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_EIC_SPRD policy<{'arm64': 'm'}> +CONFIG_GPIO_EM policy<{'armhf': 'n'}> +CONFIG_GPIO_EXAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_FTGPIO010 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_GENERIC_PLATFORM policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GPIO_GRGPIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_HISI policy<{'arm64': 'm'}> +CONFIG_GPIO_HLWD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_ICH policy<{'amd64': 'm'}> +CONFIG_GPIO_LOGICVC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MB86S7X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_MENZ127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MPC8XXX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_MXC policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_GPIO_OMAP policy<{'armhf': 'y'}> +CONFIG_GPIO_PL061 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_PMIC_EIC_SPRD policy<{'arm64': 'm'}> +CONFIG_GPIO_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_RDA policy<{'armhf': 'y'}> +CONFIG_GPIO_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_SAMA5D2_PIOBU policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_SIFIVE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_SIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_SPRD policy<{'arm64': 'm'}> +CONFIG_GPIO_SYSCON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TEGRA policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_GPIO_TEGRA186 policy<{'arm64': 'y'}> +CONFIG_GPIO_TS4800 policy<{'armhf-generic': 'm'}> +CONFIG_GPIO_THUNDERX policy<{'arm64': 'm'}> +CONFIG_GPIO_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_GPIO_VISCONTI policy<{'arm64': 'm'}> +CONFIG_GPIO_VX855 policy<{'amd64': 'm'}> +CONFIG_GPIO_WCD934X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_XGENE policy<{'arm64': 'y'}> +CONFIG_GPIO_XGENE_SB policy<{'arm64': 'm'}> +CONFIG_GPIO_XILINX policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GPIO_XLP policy<{'arm64': 'm'}> +CONFIG_GPIO_ZEVIO policy<{'armhf': 'y'}> +CONFIG_GPIO_ZYNQ policy<{'arm64': 'm'}> +CONFIG_GPIO_AMD_FCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GPIO_MSC313 policy<{'armhf': 'y'}> +# +CONFIG_GPIO_EM note + +# Menu: Device Drivers >> GPIO Support >> PCI GPIO expanders +CONFIG_GPIO_AAEON policy<{'amd64': 'm'}> +CONFIG_GPIO_AMD8111 policy<{'amd64': 'm'}> +CONFIG_GPIO_BT8XX policy<{'s390x': 'm'}> +CONFIG_GPIO_MLXBF policy<{'arm64': 'm'}> +CONFIG_GPIO_MLXBF2 policy<{'arm64': 'm'}> +CONFIG_GPIO_ML_IOH policy<{'amd64': 'm'}> +CONFIG_GPIO_PCI_IDIO_16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GPIO_PCIE_IDIO_24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GPIO_RDC321X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> GPIO Support >> Port-mapped I/O GPIO drivers +CONFIG_GPIO_104_DIO_48E policy<{'amd64': 'm'}> +CONFIG_GPIO_104_IDIO_16 policy<{'amd64': 'm'}> +CONFIG_GPIO_104_IDI_48 policy<{'amd64': 'm'}> +CONFIG_GPIO_F7188X policy<{'amd64': 'm'}> +CONFIG_GPIO_GPIO_MM policy<{'amd64': 'm'}> +CONFIG_GPIO_IT87 policy<{'amd64': 'm'}> +CONFIG_GPIO_SCH policy<{'amd64': 'm'}> +CONFIG_GPIO_SCH311X policy<{'amd64': 'm'}> +CONFIG_GPIO_WINBOND policy<{'amd64': 'm'}> +CONFIG_GPIO_WS16C48 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> SPI GPIO expanders +CONFIG_GPIO_74X164 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX3191X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MAX7301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MC33880 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_PISOSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_XRA1403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_MOXTET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> USB GPIO expanders +CONFIG_GPIO_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> Virtual GPIO drivers +CONFIG_GPIO_AGGREGATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GPIO_MOCKUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GPIO_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Generic Driver Options +CONFIG_UEVENT_HELPER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UEVENT_HELPER_PATH policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_DEVTMPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEVTMPFS_MOUNT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STANDALONE policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PREVENT_FIRMWARE_BUILD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ALLOW_DEV_COREDUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_DRIVER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_DEVRES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_TEST_DRIVER_REMOVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_ASYNC_DRIVER_PROBE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DMA_FENCE_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_DEVTMPFS note note +CONFIG_DEVTMPFS_MOUNT note note + +# Menu: Device Drivers >> Generic Driver Options >> Firmware loader + +# Menu: Device Drivers >> Generic Driver Options >> Firmware loader >> Firmware loading facility +CONFIG_FW_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXTRA_FIRMWARE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_FW_LOADER_USER_HELPER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FW_LOADER_USER_HELPER_FALLBACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FW_LOADER_COMPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FW_CACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_FW_LOADER_USER_HELPER_FALLBACK mark note + +# Menu: Device Drivers >> Generic Dynamic Voltage and Frequency Scaling (DVFS) support +CONFIG_PM_DEVFREQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_POWERSAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_USERSPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_GOV_PASSIVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ARM_EXYNOS_BUS_DEVFREQ policy<{'armhf': 'y'}> +CONFIG_ARM_IMX_BUS_DEVFREQ policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_ARM_IMX8M_DDRC_DEVFREQ policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_ARM_TEGRA_DEVFREQ policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_ARM_RK3399_DMC_DEVFREQ policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Generic Dynamic Voltage and Frequency Scaling (DVFS) support >> DEVFREQ-Event device Support +CONFIG_PM_DEVFREQ_EVENT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP policy<{'armhf': 'y'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU policy<{'armhf': 'y'}> +CONFIG_DEVFREQ_EVENT_ROCKCHIP_DFI policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Generic Target Core Mod (TCM) and ConfigFS Infrastructure +CONFIG_TARGET_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_IBLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_FILEIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_PSCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_USER2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LOOPBACK_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCM_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ISCSI_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ISCSI_TARGET_CXGB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SBP_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Generic powercap sysfs driver +CONFIG_POWERCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_INTEL_RAPL policy<{'amd64': 'm'}> +CONFIG_IDLE_INJECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DTPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DTPM_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support +CONFIG_VGA_ARB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VGA_ARB_MAX_GPUS policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16'}> +CONFIG_VGA_SWITCHEROO policy<{'amd64': 'y'}> +CONFIG_TEGRA_HOST1X policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_TEGRA_HOST1X_FIREWALL policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_IMX_IPUV3_CORE policy<{'armhf': 'm'}> +CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> /dev/agpgart (AGP Support) +CONFIG_AGP policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_AGP_AMD64 policy<{'amd64': 'y'}> +CONFIG_AGP_INTEL policy<{'amd64': 'y'}> +CONFIG_AGP_SIS policy<{'amd64': 'm'}> +CONFIG_AGP_VIA policy<{'amd64': 'y'}> +# +CONFIG_AGP note flag + +# Menu: Device Drivers >> Graphics support >> ARM devices +CONFIG_DRM_HDLCD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_HDLCD_SHOW_UNDERRUN policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_MALI_DISPLAY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_KOMEDA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support >> Lowlevel Backlight controls +CONFIG_BACKLIGHT_CLASS_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BACKLIGHT_KTD253 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_CARILLO_RANCH policy<{'amd64': 'm'}> +CONFIG_BACKLIGHT_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_APPLE policy<{'amd64': 'm'}> +CONFIG_BACKLIGHT_QCOM_WLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_RT4831 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_SAHARA policy<{'amd64': 'm'}> +CONFIG_BACKLIGHT_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ADP8860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ADP8870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_AAT2870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LM3630A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LM3639 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LP855X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_PANDORA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_TPS65217 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BACKLIGHT_AS3711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LV5207LP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_BD6107 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_ARCXCNN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_RAVE_SP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BACKLIGHT_LED policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support >> Lowlevel LCD controls +CONFIG_LCD_CLASS_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_LCD_L4F00242T03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LMS283GF05 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LTV350QV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_ILI922X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_ILI9320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_TDO24M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_VGG2432A4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_AMS369FG06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_LMS501KF03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_HX8357 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LCD_OTM3225A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Bootup logo +CONFIG_LOGO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Console display driver support +CONFIG_VGA_CONSOLE policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_DUMMY_CONSOLE_COLUMNS policy<{'amd64': '80', 'arm64': '80', 'ppc64el': '80', 's390x': '80'}> +CONFIG_DUMMY_CONSOLE_ROWS policy<{'amd64': '25', 'arm64': '25', 'ppc64el': '25', 's390x': '25'}> + +# Menu: Device Drivers >> Graphics support >> Console display driver support >> Framebuffer Console support +CONFIG_FRAMEBUFFER_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) +CONFIG_DRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DRM_DP_AUX_CHARDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DRM_DEBUG_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DRM_FBDEV_EMULATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DRM_FBDEV_OVERALLOC policy<{'amd64': '100', 'arm64': '100', 'armhf': '100', 'ppc64el': '100', 's390x': '100'}> +CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DRM_LOAD_EDID_FIRMWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DRM_DP_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DRM_RADEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_RADEON_USERPTR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_KMB_DISPLAY policy<{'arm64': 'm'}> +CONFIG_DRM_VGEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_VKMS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_VMWGFX policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_DRM_VMWGFX_FBCON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_DRM_VMWGFX_MKSSTATS policy<{'amd64': 'n'}> +CONFIG_DRM_GMA500 policy<{'amd64': 'm'}> +CONFIG_DRM_UDL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_AST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_MGAG200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_ARMADA policy<{'armhf': 'm'}> +CONFIG_DRM_ATMEL_HLCDC policy<{'armhf': 'm'}> +CONFIG_DRM_RCAR_DU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_RCAR_CMM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_RCAR_DW_HDMI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_RCAR_LVDS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_DRM_RCAR_VSP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_TILCDC policy<{'armhf': 'm'}> +CONFIG_DRM_QXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_VIRTIO_GPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DRM_FSL_DCU policy<{'armhf': 'm'}> +CONFIG_DRM_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_DRM_TEGRA_DEBUG policy<{'arm64': 'n', 'armhf-generic': 'n'}> +CONFIG_DRM_TEGRA_STAGING policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_DRM_STM policy<{'armhf': 'm'}> +CONFIG_DRM_STM_DSI policy<{'armhf': 'm'}> +CONFIG_DRM_STI policy<{'armhf': 'n'}> +CONFIG_DRM_IMX_DCSS policy<{'arm64': 'm'}> +CONFIG_DRM_VC4 policy<{'arm64': 'm'}> +CONFIG_DRM_VC4_HDMI_CEC policy<{'arm64': 'y'}> +CONFIG_DRM_ETNAVIV policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DRM_ETNAVIV_THERMAL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_HISI_HIBMC policy<{'arm64': 'm'}> +CONFIG_DRM_HISI_KIRIN policy<{'arm64': 'm'}> +CONFIG_DRM_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MEDIATEK_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MXSFB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MESON_DW_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_ARCPGU policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_BOCHS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DRM_CIRRUS_QEMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_GM12U320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SIMPLEDRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TINYDRM_HX8357D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_ILI9225 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_ILI9341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_ILI9486 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_MI0283QT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_REPAPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_ST7586 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TINYDRM_ST7735R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PL111 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_TVE200 policy<{'armhf': 'm'}> +CONFIG_DRM_XEN_FRONTEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_DRM_VBOXVIDEO policy<{'amd64': 'm'}> +CONFIG_DRM_LIMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_PANFROST policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_ASPEED_GFX policy<{'armhf': 'm'}> +CONFIG_DRM_MCDE policy<{'armhf': 'm'}> +CONFIG_DRM_TIDSS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_ZYNQMP_DPSUB policy<{'arm64': 'm'}> +CONFIG_DRM_GUD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +# +CONFIG_DRM_MGAG200 note +CONFIG_DRM_STI note +CONFIG_DRM_VBOXVIDEO note flag +CONFIG_DRM_HISI_HIBMC mark note + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> AMD GPU +CONFIG_DRM_AMDGPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_AMDGPU_SI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_AMDGPU_CIK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_AMDGPU_USERPTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HSA_AMD policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_HSA_AMD_SVM policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +# +CONFIG_DRM_AMDGPU_CIK note +CONFIG_DRM_AMDGPU_CIK note + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> AMD GPU >> ACP (Audio CoProcessor) Configuration +CONFIG_DRM_AMD_ACP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> AMD GPU >> Display Engine Configuration +CONFIG_DRM_AMD_DC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_AMD_DC_HDCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_AMD_DC_SI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEBUG_KERNEL_DC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_AMD_SECURE_DISPLAY policy<{'amd64': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Allwinner A10 Display Engine +CONFIG_DRM_SUN4I policy<{'arm64': 'm'}> +CONFIG_DRM_SUN4I_HDMI policy<{'arm64': 'm'}> +CONFIG_DRM_SUN4I_HDMI_CEC policy<{'arm64': 'y'}> +CONFIG_DRM_SUN4I_BACKEND policy<{'arm64': 'm'}> +CONFIG_DRM_SUN6I_DSI policy<{'arm64': 'm'}> +CONFIG_DRM_SUN8I_DW_HDMI policy<{'arm64': 'm'}> +CONFIG_DRM_SUN8I_MIXER policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Freescale i.MX +CONFIG_DRM_IMX policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_PARALLEL_DISPLAY policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_TVE policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_LDB policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_HDMI policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Rockchip +CONFIG_DRM_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ROCKCHIP_ANALOGIX_DP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_CDN_DP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_DW_HDMI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_DW_MIPI_DSI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_INNO_HDMI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_LVDS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_RGB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_RK3066_HDMI policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Samsung SoC Exynos Series +CONFIG_DRM_EXYNOS policy<{'armhf': 'm'}> +CONFIG_DRM_EXYNOS_FIMD policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS5433_DECON policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS7_DECON policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_MIXER policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_VIDI policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_DSI policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_HDMI policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_MIC policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_FIMC policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_ROTATOR policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_SCALER policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Display Interface Bridges +CONFIG_DRM_CDNS_DSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_CHIPONE_ICN6211 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_CHRONTEL_CH7033 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_CROS_EC_ANX7688 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_DISPLAY_CONNECTOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_LONTIUM_LT8912B policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_LONTIUM_LT9611 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_LONTIUM_LT9611UXC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_ITE_IT66121 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_LVDS_CODEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_NWL_MIPI_DSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_NXP_PTN3460 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PARADE_PS8622 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PARADE_PS8640 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SIL_SII8620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SII902X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SII9234 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_SIMPLE_BRIDGE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_THINE_THC63LVD1024 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TOSHIBA_TC358762 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TOSHIBA_TC358764 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TOSHIBA_TC358767 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TOSHIBA_TC358768 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TOSHIBA_TC358775 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TI_TFP410 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TI_SN65DSI83 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TI_SN65DSI86 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_TI_TPD12S015 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_ANALOGIX_ANX6345 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_ANALOGIX_ANX78XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_ANALOGIX_ANX7625 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_I2C_ADV7511 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_I2C_ADV7511_AUDIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_I2C_ADV7511_CEC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_CDNS_MHDP8546 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_CDNS_MHDP8546_J721E policy<{'arm64': 'y'}> +CONFIG_DRM_DW_HDMI_AHB_AUDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_DW_HDMI_I2S_AUDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_DW_HDMI_CEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Display Panels +CONFIG_DRM_PANEL_ABT_Y030XX067A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ARM_VERSATILE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_BOE_HIMAX8279D policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_DSI_CM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_LVDS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ELIDA_KD35T133 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ILITEK_IL9322 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ILITEK_ILI9341 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ILITEK_ILI9881C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_INNOLUX_EJ030NA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_INNOLUX_P079ZCA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_JDI_LT070ME05000 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_KHADAS_TS050 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_LD9040 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_LG_LB035Q02 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_LG_LG4573 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_NEC_NL8048HL11 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_NOVATEK_NT35510 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_NOVATEK_NT36672A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_NOVATEK_NT39016 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ORISETECH_OTM8009A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_RAYDIUM_RM67191 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_RAYDIUM_RM68200 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_RONBO_RB070D30 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_DB7430 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_DSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_SOFEF00 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SEIKO_43WVF1G policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SHARP_LS037V7DW01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SHARP_LS043T1LE01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SITRONIX_ST7701 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SITRONIX_ST7703 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SITRONIX_ST7789V policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SONY_ACX424AKP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SONY_ACX565AKM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_TDO_TL070WSH30 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_TPO_TD028TTEC1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_TPO_TD043MTEA1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_TPO_TPG110 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_VISIONOX_RM69299 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_WIDECHIPS_WS2401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_XINPENG_XPP055C272 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Enable legacy drivers (DANGEROUS) +CONFIG_DRM_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_DRM_LEGACY flag note + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> I2C encoder or helper chips +CONFIG_DRM_I2C_CH7006 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_I2C_SIL164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_I2C_NXP_TDA998X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DRM_I2C_NXP_TDA9950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics +CONFIG_DRM_I915 policy<{'amd64': 'm'}> +CONFIG_DRM_I915_FORCE_PROBE policy<{'amd64': '""'}> +CONFIG_DRM_I915_CAPTURE_ERROR policy<{'amd64': 'y'}> +CONFIG_DRM_I915_COMPRESS_ERROR policy<{'amd64': 'y'}> +CONFIG_DRM_I915_USERPTR policy<{'amd64': 'y'}> +CONFIG_DRM_I915_GVT policy<{'amd64': 'y'}> +CONFIG_DRM_I915_GVT_KVMGT policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Debugging +CONFIG_DRM_I915_WERROR policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_MMIO policy<{'amd64': 'n'}> +CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS policy<{'amd64': 'n'}> +CONFIG_DRM_I915_SW_FENCE_CHECK_DAG policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_GUC policy<{'amd64': 'n'}> +CONFIG_DRM_I915_SELFTEST policy<{'amd64': 'n'}> +CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_VBLANK_EVADE policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_RUNTIME_PM policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Debugging >> Insert extra checks into the GEM internals + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Profile Guided Optimisation +CONFIG_DRM_I915_REQUEST_TIMEOUT policy<{'amd64': '20000'}> +CONFIG_DRM_I915_FENCE_TIMEOUT policy<{'amd64': '10000'}> +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND policy<{'amd64': '250'}> +CONFIG_DRM_I915_HEARTBEAT_INTERVAL policy<{'amd64': '2500'}> +CONFIG_DRM_I915_PREEMPT_TIMEOUT policy<{'amd64': '640'}> +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT policy<{'amd64': '8000'}> +CONFIG_DRM_I915_STOP_TIMEOUT policy<{'amd64': '100'}> +CONFIG_DRM_I915_TIMESLICE_DURATION policy<{'amd64': '1'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Unstable Evolution + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> MSM DRM +CONFIG_DRM_MSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MSM_REGISTER_LOGGING policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_MSM_GPU_SUDO policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_MSM_HDMI_HDCP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DP policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> MSM DRM >> Enable DSI support in MSM DRM driver +CONFIG_DRM_MSM_DSI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_28NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_20NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_28NM_8960_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_14NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_10NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_7NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Nouveau (NVIDIA) cards +CONFIG_DRM_NOUVEAU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NOUVEAU_PLATFORM_DRIVER policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_NOUVEAU_DEBUG policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'ppc64el': '5'}> +CONFIG_NOUVEAU_DEBUG_DEFAULT policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'ppc64el': '3'}> +CONFIG_NOUVEAU_DEBUG_MMU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NOUVEAU_DEBUG_PUSH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DRM_NOUVEAU_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DRM_NOUVEAU_SVM policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n'}> +# +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT flag note +CONFIG_DRM_NOUVEAU_SVM flag + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> OMAP DRM +CONFIG_DRM_OMAP policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Marvell MMP Display Subsystem support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices +CONFIG_FB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FIRMWARE_EDID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FB_MODE_HELPERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FB_TILEBLITTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FB_CIRRUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_PM2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_PM2_FIFO_DISCONNECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ARMCLCD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FB_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_FB_CYBER2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_CYBER2000_DDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ARC policy<{'amd64': 'm'}> +CONFIG_FB_OF policy<{'ppc64el': 'y'}> +CONFIG_FB_ASILIANT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FB_IMSTT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FB_VGA16 policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_FB_UVESA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_VESA policy<{'amd64': 'y'}> +CONFIG_FB_EFI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_FB_N411 policy<{'amd64': 'm'}> +CONFIG_FB_HGA policy<{'amd64': 'm'}> +CONFIG_FB_OPENCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_S1D13XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_I740 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_LE80578 policy<{'amd64': 'm'}> +CONFIG_FB_CARILLO_RANCH policy<{'amd64': 'm'}> +CONFIG_FB_INTEL policy<{'amd64': 'm'}> +CONFIG_FB_INTEL_DEBUG policy<{'amd64': 'n'}> +CONFIG_FB_INTEL_I2C policy<{'amd64': 'y'}> +CONFIG_FB_ATY128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_ATY128_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_S3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_S3_DDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SAVAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_SAVAGE_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SAVAGE_ACCEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FB_SIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_SIS_300 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_SIS_315 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_VIA policy<{'amd64': 'm'}> +CONFIG_FB_VIA_DIRECT_PROCFS policy<{'amd64': 'n'}> +CONFIG_FB_VIA_X_COMPATIBILITY policy<{'amd64': 'y'}> +CONFIG_FB_NEOMAGIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_KYRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_3DFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_3DFX_ACCEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FB_3DFX_I2C policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FB_VOODOO1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_VT8623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_TRIDENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_ARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_PM3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_CARMINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_SH_MOBILE_LCDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FB_TMIO policy<{'armhf': 'm'}> +CONFIG_FB_TMIO_ACCELL policy<{'armhf': 'y'}> +CONFIG_FB_SM501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SMSCUFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_UDL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_IBM_GXT4500 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FB_XILINX policy<{'arm64': 'm'}> +CONFIG_FB_DA8XX policy<{'armhf-generic': 'm'}> +CONFIG_FB_VIRTUAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XEN_FBDEV_FRONTEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FB_METRONOME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_MB862XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_MB862XX_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MX3 policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_FB_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FB_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_SSD1307 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_SM712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_FB_VIRTUAL flag + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> AMD Geode family framebuffer support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> ATI Mach64 display support +CONFIG_FB_ATY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_ATY_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ATY_GENERIC_LCD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FB_ATY_GX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_ATY_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> ATI Radeon display support +CONFIG_FB_RADEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_RADEON_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_RADEON_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_RADEON_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Amiga native chipset support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> DRAM timing +CONFIG_FB_CARMINE_DRAM_EVAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CARMINE_DRAM_CUSTOM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Framebuffer foreign endianness support +CONFIG_FB_FOREIGN_ENDIAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Framebuffer foreign endianness support >> Choice endianness support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> GDC variant +CONFIG_FB_MB862XX_PCI_GDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MB862XX_LIME policy<{'ppc64el': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Matrox acceleration +CONFIG_FB_MATROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_MATROX_MILLENIUM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MATROX_MYSTIQUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MATROX_G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_MATROX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_MATROX_MAVEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> OMAP frame buffer support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> OMAP2+ frame buffer support +CONFIG_FB_OMAP2 policy<{'armhf': 'm'}> +CONFIG_FB_OMAP2_DEBUG_SUPPORT policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_NUM_FBS policy<{'armhf': '3'}> +CONFIG_FB_OMAP2_DSS_DEBUG policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_DEBUGFS policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_DPI policy<{'armhf': 'y'}> +CONFIG_FB_OMAP2_DSS_VENC policy<{'armhf': 'y'}> +CONFIG_FB_OMAP4_DSS_HDMI policy<{'armhf': 'y'}> +CONFIG_FB_OMAP5_DSS_HDMI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_SDI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_DSI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_MIN_FCK_PER_PCK policy<{'armhf': '0'}> +CONFIG_FB_OMAP2_DSS_SLEEP_AFTER_VENC_RESET policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> OMAP2+ frame buffer support >> OMAPFB Panel and Encoder Drivers +CONFIG_FB_OMAP2_ENCODER_OPA362 policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_ENCODER_TFP410 policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_ENCODER_TPD12S015 policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_CONNECTOR_DVI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_CONNECTOR_HDMI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_CONNECTOR_ANALOG_TV policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_PANEL_DPI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_PANEL_LGPHILIPS_LB035Q02 policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> PXA LCD framebuffer support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> SBUS and UPA framebuffers + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> nVidia Framebuffer Support +CONFIG_FB_NVIDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_NVIDIA_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_NVIDIA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FB_NVIDIA_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> nVidia Riva support +CONFIG_FB_RIVA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FB_RIVA_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FB_RIVA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_FB_RIVA_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Greybus support +CONFIG_GREYBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GREYBUS_ES2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HDMI CEC drivers +CONFIG_MEDIA_CEC_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CEC_CH7322 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CEC_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_MESON_AO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_MESON_G12A_AO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_GPIO policy<{'amd64-lowlatency': 'm'}> +CONFIG_CEC_SAMSUNG_S5P policy<{'armhf': 'm'}> +CONFIG_CEC_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_CEC_SECO policy<{'amd64': 'm'}> +CONFIG_CEC_SECO_RC policy<{'amd64': 'y'}> +CONFIG_USB_PULSE8_CEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RAINSHADOW_CEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HID support + +# Menu: Device Drivers >> HID support >> HID bus support +CONFIG_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HID_BATTERY_STRENGTH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HIDRAW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UHID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> AMD SFH HID Support +CONFIG_AMD_SFH_HID policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers +CONFIG_HID_A4TECH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ACCUTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ACRUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ACRUX_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_APPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_APPLEIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_AUREAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_BELKIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_BETOP_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_BIGBEN_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CHERRY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CHICONY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CORSAIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_COUGAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MACALLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PRODIKEYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CMEDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CP2112 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CREATIVE_SB0540 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_CYPRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_DRAGONRISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRAGONRISE_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_EMS_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ELAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ELECOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ELO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_EZKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_FT260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GEMBIRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GFRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GLORIOUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_HOLTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HOLTEK_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_GOOGLE_HAMMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_HID_VIVALDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GT683R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_KEYTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_KYE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_UCLOGIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_WALTOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_VIEWSONIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GYRATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ICADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_JABRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_TWINHAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_KENSINGTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LCPOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LENOVO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MAGICMOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MALTRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MAYFLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_REDRAGON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MICROSOFT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MONTEREY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MULTITOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_NTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_NTRIG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ORTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PANTHERLORD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PANTHERLORD_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PENMOUNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PETALYNX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PLANTRONICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PLAYSTATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PLAYSTATION_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PRIMAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_RETRODE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ROCCAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SAITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SAMSUNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SEMITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SONY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SONY_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_SPEEDLINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_STEAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_STEELSERIES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SUNPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_RMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_GREENASIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREENASIA_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_HYPERV_MOUSE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HID_SMARTJOYPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SMARTJOYPLUS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_TIVO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_TOPSEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_THINGM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_THRUSTMASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_THRUSTMASTER_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_UDRAW_PS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_U2FZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_WACOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_WIIMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_XINMO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ZEROPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ZEROPLUS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_ZYDACRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_HUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_CUSTOM_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_ALPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_MCP2221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers >> Logitech devices +CONFIG_HID_LOGITECH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LOGITECH_DJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_LOGITECH_HIDPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LOGITECH_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LOGIRUMBLEPAD2_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LOGIG940_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LOGIWHEELS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers >> PicoLCD (graphic version) +CONFIG_HID_PICOLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PICOLCD_FB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_LCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HID_PICOLCD_CIR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> HID support >> I2C HID support +CONFIG_I2C_HID_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_HID_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_HID_OF_GOODIX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HID support >> Intel ISH HID support +CONFIG_INTEL_ISH_HID policy<{'amd64': 'm'}> +CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> HID support >> Surface System Aggregator Module HID support +CONFIG_SURFACE_HID policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_KBD policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> HID support >> USB HID support +CONFIG_USB_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_PID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_HIDDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> HID support >> USB HID support >> USB HID Boot Protocol drivers +CONFIG_USB_KBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HSI support +CONFIG_HSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_OMAP_SSI policy<{'armhf-generic': 'm'}> +CONFIG_NOKIA_MODEM policy<{'armhf-generic': 'm'}> +CONFIG_CMT_SPEECH policy<{'armhf-generic': 'm'}> +CONFIG_SSI_PROTOCOL policy<{'armhf-generic': 'm'}> +CONFIG_HSI_CHAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HW tracing support + +# Menu: Device Drivers >> HW tracing support >> Intel(R) Trace Hub controller +CONFIG_INTEL_TH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_INTEL_TH_GTH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_STH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_MSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_PTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> HW tracing support >> System Trace Module devices +CONFIG_STM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STM_PROTO_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STM_PROTO_SYS_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STM_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STM_SOURCE_CONSOLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STM_SOURCE_HEARTBEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STM_SOURCE_FTRACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Hardware Monitoring support +CONFIG_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HWMON_DEBUG_CHIP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SENSORS_AAEON policy<{'amd64': 'm'}> +CONFIG_SENSORS_ABITUGURU policy<{'amd64': 'm'}> +CONFIG_SENSORS_ABITUGURU3 policy<{'amd64': 'm'}> +CONFIG_SENSORS_AD7314 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AD7414 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AD7418 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1025 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1026 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1029 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1177 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM9240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7410 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7411 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7462 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7470 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADT7475 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AHT10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AS370 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ASC7621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AXI_FAN_CONTROL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_K8TEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_K10TEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_FAM15H_POWER policy<{'amd64': 'm'}> +CONFIG_SENSORS_APPLESMC policy<{'amd64': 'm'}> +CONFIG_SENSORS_ARM_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_ARM_SCPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_ASB100 policy<{'amd64': 'm'}> +CONFIG_SENSORS_ASPEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ATXP1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_CORSAIR_CPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_CORSAIR_PSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DRIVETEMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DS620 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DS1621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DELL_SMM policy<{'amd64': 'm'}> +CONFIG_SENSORS_DA9052_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_I5K_AMB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SPARX5 policy<{'arm64': 'm'}> +CONFIG_SENSORS_F71805F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_F71882FG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_F75375S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_GSC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MC13783_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_FSCHMD policy<{'amd64': 'm'}> +CONFIG_SENSORS_FTSTEUTATES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_GL518SM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_GL520SM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_G760A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_G762 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_GPIO_FAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_HIH6130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBMAEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBMPEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBMPOWERNV policy<{'ppc64el': 'm'}> +CONFIG_SENSORS_IIO_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_I5500 policy<{'amd64': 'm'}> +CONFIG_SENSORS_CORETEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_IT87 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_JC42 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_POWR1220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LINEAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2945 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2947_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2947_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2990 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2992 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4151 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4215 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4222 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC4261 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX1111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX16065 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX1619 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX1668 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX197 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX31722 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX31730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6639 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX6697 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX31790 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MCP3021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MLXREG_FAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_TC654 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TPS23861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MENF21BMC_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MR75203 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADCXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM63 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM70 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM73 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM75 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM77 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM78 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM83 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM85 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM87 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM90 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM92 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM95234 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM95241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM95245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PC87360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_PC87427 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_NTC_THERMISTOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_NCT6683 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_NCT6775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_NCT7802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_NCT7904 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_NPCM7XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_NZXT_KRAKEN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_OCC_P8_I2C policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SENSORS_OCC_P9_SBE policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SENSORS_PCF8591 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PWM_FAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_RASPBERRYPI_HWMON policy<{'arm64': 'm'}> +CONFIG_SENSORS_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_SENSORS_SBTSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SBRMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHT15 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHT21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHT3x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHT4x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SHTC1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SIS5595 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DME1737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_EMC1403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_EMC2103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_EMC6W201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SMSC47M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_SMSC47M192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SMSC47B397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_SCH5627 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_SCH5636 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_STTS751 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_SMM665 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADC128D818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADS7828 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADS7871 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_AMC6821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_INA209 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_INA2XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_INA3221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TC74 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_THMC50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP108 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TMP513 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_VEXPRESS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_VIA_CPUTEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_VIA686A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_VT1211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_VT8231 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83773G policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83781D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83791D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83792D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83793 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83795_FANCTRL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SENSORS_W83L785TS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83L786NG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_W83627HF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_W83627EHF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_XGENE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SENSORS_INTEL_M10_BMC_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ACPI_POWER policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SENSORS_ATK0110 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Hardware Monitoring support >> PMBus support +CONFIG_PMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ADM1275 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_BEL_PFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_BPA_RS600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_FSP_3Y policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IBM_CFFPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_DPS920AB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_INSPUR_IPSPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IR35221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IR36021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IR38064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_IRPS5401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ISL68137 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM25066 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2978 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LTC2978_REGULATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SENSORS_LTC3815 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX15301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX16064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX16601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX20730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX20751 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX31785 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX34440 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MAX8688 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MP2888 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_MP2975 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PIM4328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PM6764TR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_PXE1610 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_Q54SJ108A2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_SENSORS_STPDDC60 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TPS40422 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TPS53679 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_UCD9000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_UCD9200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_XDPE122 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ZL6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Hardware Spinlock drivers +CONFIG_HWSPINLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HWSPINLOCK_OMAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HWSPINLOCK_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HWSPINLOCK_SPRD policy<{'arm64': 'm'}> +CONFIG_HWSPINLOCK_SUN6I policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> I2C support + +# Menu: Device Drivers >> I2C support >> I2C support +CONFIG_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_ACPI_I2C_OPREGION policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_I2C_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_I2C_CHARDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_I2C_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_I2C_HELPER_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_I2C_SMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_I2C_SLAVE policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_I2C_SLAVE_EEPROM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_SLAVE_TESTUNIT policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_I2C_DEBUG_CORE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_I2C_DEBUG_ALGO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_I2C_DEBUG_BUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_I2C_CHARDEV note + +# Menu: Device Drivers >> I2C support >> I2C support >> I2C Algorithms +CONFIG_I2C_ALGOBIT policy<{'amd64': 'm', 'arm64-generic': 'm', 'arm64-generic-64k': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_I2C_ALGOPCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> I2C support >> I2C support >> I2C Hardware Bus support +CONFIG_I2C_ALI1535 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_ALI1563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_ALI15X3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_AMD756 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_AMD756_S4882 policy<{'amd64': 'm'}> +CONFIG_I2C_AMD8111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_AMD_MP2 policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_I2C_HIX5HD2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_I801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_ISCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_ISMT policy<{'amd64': 'm'}> +CONFIG_I2C_PIIX4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_CHT_WC policy<{'amd64': 'm'}> +CONFIG_I2C_NFORCE2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_NFORCE2_S4985 policy<{'amd64': 'm'}> +CONFIG_I2C_NVIDIA_GPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_SIS5595 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_SIS630 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_SIS96X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_VIAPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_SCMI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_ALTERA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_ASPEED policy<{'armhf': 'm'}> +CONFIG_I2C_AXXIA policy<{'armhf-generic-lpae': 'm'}> +CONFIG_I2C_BCM2835 policy<{'arm64': 'm'}> +CONFIG_I2C_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_I2C_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_I2C_CADENCE policy<{'arm64': 'n'}> +CONFIG_I2C_CBUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_DESIGNWARE_SLAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_I2C_DESIGNWARE_PLATFORM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_I2C_DESIGNWARE_BAYTRAIL policy<{'amd64': 'y'}> +CONFIG_I2C_DESIGNWARE_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_EMEV2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_I2C_EXYNOS5 policy<{'armhf': 'm'}> +CONFIG_I2C_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_GPIO_FAULT_INJECTOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_I2C_HISI policy<{'arm64': 'm'}> +CONFIG_I2C_IMX policy<{'arm64': 'm', 'armhf-generic': 'y'}> +CONFIG_I2C_IMX_LPI2C policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_I2C_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MLXBF policy<{'arm64': 'm'}> +CONFIG_I2C_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_MPC policy<{'ppc64el': 'm'}> +CONFIG_I2C_MT65XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_MV64XXX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_NOMADIK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_NPCM7XX policy<{'armhf': 'm'}> +CONFIG_I2C_OCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_OMAP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_I2C_OWL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_PCA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_PXA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_PXA_SLAVE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_I2C_QCOM_CCI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_QCOM_GENI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_QUP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_RIIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_RK3X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_S3C2410 policy<{'armhf': 'y'}> +CONFIG_I2C_SH_MOBILE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_SIMTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_SPRD policy<{'arm64': 'y'}> +CONFIG_I2C_SYNQUACER policy<{'arm64': 'm'}> +CONFIG_I2C_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_I2C_TEGRA_BPMP policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_I2C_UNIPHIER policy<{'armhf': 'n'}> +CONFIG_I2C_UNIPHIER_F policy<{'armhf': 'n'}> +CONFIG_I2C_VERSATILE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_THUNDERX policy<{'arm64': 'm'}> +CONFIG_I2C_XILINX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_XLP9XX policy<{'arm64': 'm'}> +CONFIG_I2C_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_DIOLAN_U2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_CP2615 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_ROBOTFUZZ_OSIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_TAOS_EVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_TINY_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MLXCPLD policy<{'amd64': 'm'}> +CONFIG_I2C_CROS_EC_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_XGENE_SLIMPRO policy<{'arm64': 'm'}> +CONFIG_I2C_OPAL policy<{'ppc64el': 'y'}> +CONFIG_I2C_FSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> I2C support >> I2C support >> Multiplexer I2C Chip support +CONFIG_I2C_ARB_GPIO_CHALLENGE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_GPMUX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_LTC4306 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_PCA9541 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_PCA954x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_PINCTRL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_REG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_I2C_DEMUX_PINCTRL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_MUX_MLXCPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> I3C support +CONFIG_I3C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CDNS_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DW_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SVC_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MIPI_I3C_HCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> IEEE 1394 (FireWire) support +CONFIG_FIREWIRE_NOSY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> IEEE 1394 (FireWire) support >> FireWire driver stack +CONFIG_FIREWIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FIREWIRE_OHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FIREWIRE_SBP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FIREWIRE_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> IOMMU Hardware Support +CONFIG_IOMMU_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IOMMU_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MSM_IOMMU policy<{'armhf': 'n'}> +CONFIG_AMD_IOMMU policy<{'amd64': 'y'}> +CONFIG_AMD_IOMMU_V2 policy<{'amd64': 'm'}> +CONFIG_IRQ_REMAP policy<{'amd64': 'y'}> +CONFIG_OMAP_IOMMU policy<{'armhf': 'y'}> +CONFIG_OMAP_IOMMU_DEBUG policy<{'armhf': 'n'}> +CONFIG_ROCKCHIP_IOMMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SUN50I_IOMMU policy<{'arm64': 'y'}> +CONFIG_TEGRA_IOMMU_GART policy<{'armhf-generic': 'y'}> +CONFIG_TEGRA_IOMMU_SMMU policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_EXYNOS_IOMMU policy<{'armhf': 'y'}> +CONFIG_EXYNOS_IOMMU_DEBUG policy<{'armhf': 'n'}> +CONFIG_IPMMU_VMSA policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_SPAPR_TCE_IOMMU policy<{'ppc64el': 'y'}> +CONFIG_APPLE_DART policy<{'arm64': 'm'}> +CONFIG_ARM_SMMU policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS policy<{'arm64': 'n'}> +CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT policy<{'arm64': 'n'}> +CONFIG_ARM_SMMU_V3 policy<{'arm64': 'y'}> +CONFIG_ARM_SMMU_V3_SVA policy<{'arm64': 'y'}> +CONFIG_S390_CCW_IOMMU policy<{'s390x': 'y'}> +CONFIG_S390_AP_IOMMU policy<{'s390x': 'y'}> +CONFIG_MTK_IOMMU policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_MTK_IOMMU_V1 policy<{'armhf': 'n'}> +CONFIG_QCOM_IOMMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HYPERV_IOMMU policy<{'amd64': 'y'}> +CONFIG_VIRTIO_IOMMU policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SPRD_IOMMU policy<{'arm64': 'm'}> +# +CONFIG_IPMMU_VMSA note +CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT mark note +CONFIG_IOMMU_DEBUGFS mark note + +# Menu: Device Drivers >> IOMMU Hardware Support >> Generic IOMMU Pagetable Support +CONFIG_IOMMU_IO_PGTABLE_LPAE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_IOMMU_IO_PGTABLE_ARMV7S policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Device Drivers >> IOMMU Hardware Support >> IOMMU default domain type +CONFIG_IOMMU_DEFAULT_DMA_STRICT policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IOMMU_DEFAULT_DMA_LAZY policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IOMMU_DEFAULT_PASSTHROUGH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> IOMMU Hardware Support >> Support for Intel IOMMU using DMA Remapping Devices +CONFIG_INTEL_IOMMU policy<{'amd64': 'y'}> +CONFIG_INTEL_IOMMU_SVM policy<{'amd64': 'y'}> +CONFIG_INTEL_IOMMU_DEFAULT_ON policy<{'amd64': 'y'}> +CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON policy<{'amd64': 'y'}> + +CONFIG_INTEL_IOMMU_DEFAULT_ON note +CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON note + +# Menu: Device Drivers >> IRQ chip support +CONFIG_AL_FIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RENESAS_INTC_IRQPIN policy<{'armhf': 'y'}> +CONFIG_RENESAS_IRQC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RENESAS_RZA1_IRQC policy<{'armhf': 'y'}> +CONFIG_TS4800_IRQ policy<{'armhf-generic': 'm'}> +CONFIG_XILINX_INTC policy<{'arm64': 'y'}> +CONFIG_QCOM_IRQ_COMBINER policy<{'arm64': 'y'}> +CONFIG_IRQ_UNIPHIER_AIDET policy<{'armhf': 'y'}> +CONFIG_MESON_IRQ_GPIO policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_PDC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IMX_IRQSTEER policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_IMX_INTMUX policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_EXYNOS_IRQ_COMBINER policy<{'armhf': 'y'}> +CONFIG_MST_IRQ policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_APPLE_AIC policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> ISDN support +CONFIG_ISDN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> ISDN support >> Modular ISDN driver +CONFIG_MISDN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_DSP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_L1OIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_HFCPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_HFCMULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_HFCUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_AVMFRITZ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_SPEEDFAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_W6692 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MISDN_NETJET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support +CONFIG_IIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IIO_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_TRIGGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IIO_CONSUMERS_PER_TRIGGER policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2'}> +CONFIG_IIO_SW_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SW_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_TRIGGERED_EVENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_CROS_EC_SENSORS_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_IIO_CROS_EC_SENSORS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Accelerometers +CONFIG_ADIS16201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16209 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADXL372_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADXL372_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMA220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMA400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMC150_ACCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMI088_ACCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DMARD06 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DMARD09 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DMARD10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FXLS8962AF_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FXLS8962AF_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_ACCEL_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_CROS_EC_ACCEL_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_IIO_ST_ACCEL_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KXSD9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KXSD9_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KXSD9_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KXCJK1013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MC3230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMA7455_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMA7455_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMA7660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMA8452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMA9551 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMA9553 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MXC4005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MXC6255 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCA3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCA3300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STK8312 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STK8BA50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Amplifiers +CONFIG_AD8366 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HMC425 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Analog Front Ends +CONFIG_IIO_RESCALE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Analog to digital converters +CONFIG_AD7091R5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7124 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7291 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7292 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7298 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7476 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7606_IFACE_PARALLEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7606_IFACE_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7766 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7768_1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7791 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7793 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7887 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7923 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7949 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD799X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD9467 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADI_AXI_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ASPEED_ADC policy<{'armhf': 'm'}> +CONFIG_AXP20X_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AXP288_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BCM_IPROC_ADC policy<{'arm64': 'm'}> +CONFIG_BERLIN2_ADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CC10001_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CPCAP_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA9150_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DLN2_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ENVELOPE_DETECTOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EXYNOS_ADC policy<{'armhf': 'm'}> +CONFIG_HI8435 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HX711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INA2XX_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INTEL_MRFLD_ADC policy<{'amd64': 'm'}> +CONFIG_IMX7D_ADC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_LP8788_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC2471 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC2485 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC2496 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC2497 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX1027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX11100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX1118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX1241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX1363 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX9611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP320X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP3422 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP3911 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIATEK_MT6360_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIATEK_MT6577_AUXADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MEN_Z188_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MESON_SARADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MP2629_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NAU7802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NPCM_ADC policy<{'armhf': 'm'}> +CONFIG_PALMAS_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_PM8XXX_XOADC policy<{'armhf': 'm'}> +CONFIG_QCOM_SPMI_IADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_SPMI_VADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_SPMI_ADC5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RCAR_GYRO_ADC policy<{'armhf': 'm'}> +CONFIG_RN5T618_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ROCKCHIP_SARADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RZG2L_ADC policy<{'arm64': 'm'}> +CONFIG_SC27XX_ADC policy<{'arm64': 'm'}> +CONFIG_SD_ADC_MODULATOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STMPE_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STX104 policy<{'amd64': 'm'}> +CONFIG_SUN4I_GPADC policy<{'arm64': 'n'}> +CONFIG_TI_ADC081C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC0832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC084S021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC12138 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC108S102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC128S052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADC161S626 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADS1015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADS7950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADS8344 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADS8688 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADS124S08 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_ADS131E08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_AM335X_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_TLC4541 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_TSC2046 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TWL6030_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VF610_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIPERBOARD_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XILINX_XADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Capacitance to digital converters +CONFIG_AD7150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Chemical Sensors +CONFIG_ATLAS_PH_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATLAS_EZO_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BME680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CCS811 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IAQCORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PMS7003 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCD30_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCD30_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCD30_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSIRION_SGP30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSIRION_SGP40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPS30_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPS30_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VZ89X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital gyroscope sensors +CONFIG_ADIS16080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16136 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADXRS290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADXRS450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMG160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FXAS21002C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_GYRO_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MPU3050_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_GYRO_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ITG3200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital potentiometers +CONFIG_AD5110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5272 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DS1803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX5432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX5481 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX5487 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4018 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4131 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4531 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP41010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TPL0102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital potentiostats +CONFIG_LMP91000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital to analog converters +CONFIG_AD5064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5380 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5446 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5449 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5592R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5593R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5504 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5624R_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5686_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5696_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5755 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5758 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5766 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5770R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD5791 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD8801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CIO_DAC policy<{'amd64': 'm'}> +CONFIG_DPOT_DAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DS4424 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC1660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC2632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_M62332 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX517 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX5821 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4725 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCP4922 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_DAC082S085 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_DAC5571 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_DAC7311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_DAC7612 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VF610_DAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Enable buffer support within IIO +CONFIG_IIO_BUFFER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IIO_BUFFER_CB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_BUFFER_DMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_BUFFER_DMAENGINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_BUFFER_HW_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_KFIFO_BUF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_TRIGGERED_BUFFER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Frequency Synthesizers DDS/PLL + +# Menu: Device Drivers >> Industrial I/O support >> Frequency Synthesizers DDS/PLL >> Clock Generator/Distribution +CONFIG_AD9523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Frequency Synthesizers DDS/PLL >> Phase-Locked Loop (PLL) frequency synthesizers +CONFIG_ADF4350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADF4371 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Health Sensors + +# Menu: Device Drivers >> Industrial I/O support >> Health Sensors >> Heart Rate Monitors +CONFIG_AFE4403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AFE4404 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX30100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX30102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Hid Sensor IIO Common +CONFIG_HID_SENSOR_IIO_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_IIO_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Humidity sensors +CONFIG_AM2315 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DHT11 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDC100X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDC2010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_HUMIDITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HTS221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HTU21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SI7005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SI7020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> IIO SCMI Sensors +CONFIG_IIO_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> IIO dummy driver +CONFIG_IIO_SIMPLE_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SIMPLE_DUMMY_EVENTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_IIO_SIMPLE_DUMMY_BUFFER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_IIO_SIMPLE_DUMMY_EVENTS note +CONFIG_IIO_SIMPLE_DUMMY_BUFFER note + +# Menu: Device Drivers >> Industrial I/O support >> Inclinometer sensors +CONFIG_HID_SENSOR_INCLINOMETER_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_DEVICE_ROTATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Inertial measurement units +CONFIG_ADIS16400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16460 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16475 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16480 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMI160_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMI160_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FXOS8700_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FXOS8700_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KMX61 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INV_ICM42600_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INV_ICM42600_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INV_MPU6050_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INV_MPU6050_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_LSM6DSX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_LSM9DS0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Light sensors +CONFIG_ACPI_ALS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ADJD_S311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADUX1020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AL3010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AL3320A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_APDS9300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_APDS9960 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AS73211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BH1750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BH1780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CM32181 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CM3232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CM3323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CM3605 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CM36651 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_CROS_EC_LIGHT_PROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_GP2AP002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GP2AP020A00F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IQS621_ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ISL29018 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_ISL29028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ISL29125 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_PROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JSA1212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RPR0521 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTR501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LV0104CS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX44000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX44009 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NOA1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_OPT3001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PA12203001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SI1133 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SI1145 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STK3310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ST_UVIS25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TCS3414 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TCS3472 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_TSL2563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TSL2583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TSL2591 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TSL2772 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TSL4531 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_US5182D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VCNL4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VCNL4035 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VEML6030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VEML6070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VL6180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ZOPT2201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Lightning sensors +CONFIG_AS3935 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Linear and angular position sensors +CONFIG_IQS624_POS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Magnetometer sensors +CONFIG_AK8974 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AK8975 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AK09911 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMC150_MAGN_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMC150_MAGN_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAG3110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_MAGNETOMETER_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC35240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_MAGN_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_HMC5843_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_HMC5843_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_RM3100_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_RM3100_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_YAMAHA_YAS530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Multiplexers +CONFIG_IIO_MUX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Pressure sensors +CONFIG_ABP060MG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BMP280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_CROS_EC_BARO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_DLHL60D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DPS310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_PRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HP03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ICP10100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MPL115_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MPL115_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MPL3115 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MS5611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MS5611_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MS5611_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MS5637 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_ST_PRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_T5403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HP206C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ZPA2326 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Proximity and distance sensors +CONFIG_CROS_EC_MKBP_PROXIMITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_ISL29501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIDAR_LITE_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MB1232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RFD77402 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SRF04 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SX9310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SX9500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SRF08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VCNL3020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VL53L0X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Resolver to digital converters +CONFIG_AD2S1200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD2S90 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> SSP Sensor Common +CONFIG_IIO_SSP_SENSORS_COMMONS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SSP_SENSORHUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Temperature sensors +CONFIG_IQS620AT_TEMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTC2983 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAXIM_THERMOCOUPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HID_SENSOR_TEMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MLX90614 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MLX90632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TMP006 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TMP007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TMP117 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TSYS01 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TSYS02D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX31856 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Triggers - standalone +CONFIG_IIO_HRTIMER_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_INTERRUPT_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_TIGHTLOOP_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IIO_SYSFS_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> IndustryPack bus support +CONFIG_IPACK_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BOARD_TPCI200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_IPOCTAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> InfiniBand support +CONFIG_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_USER_MAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ON_DEMAND_PAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_IPOIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_IPOIB_CM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_IPOIB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INFINIBAND_OPA_VNIC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> InfiniBand support >> InfiniBand userspace access (verbs and CM) +CONFIG_INFINIBAND_USER_ACCESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_MTHCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_MTHCA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INFINIBAND_QIB policy<{'amd64': 'm'}> +CONFIG_INFINIBAND_QIB_DCA policy<{'amd64': 'y'}> +CONFIG_INFINIBAND_EFA policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_INFINIBAND_IRDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MLX4_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLX5_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_OCRDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INFINIBAND_VMWARE_PVRDMA policy<{'amd64': 'm', 'arm64-generic': 'm', 'armhf': 'm'}> +CONFIG_INFINIBAND_USNIC policy<{'amd64': 'm'}> +CONFIG_INFINIBAND_HNS policy<{'arm64': 'm'}> +CONFIG_INFINIBAND_HNS_HIP06 policy<{'arm64': 'y'}> +CONFIG_INFINIBAND_HNS_HIP08 policy<{'arm64': 'y'}> +CONFIG_INFINIBAND_BNXT_RE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_INFINIBAND_HFI1 policy<{'amd64': 'm'}> +CONFIG_HFI1_DEBUG_SDMA_ORDER policy<{'amd64': 'n'}> +CONFIG_SDMA_VERBOSITY policy<{'amd64': 'n'}> +CONFIG_INFINIBAND_QEDR policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_INFINIBAND_RDMAVT policy<{'amd64': 'm'}> +CONFIG_RDMA_RXE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDMA_SIW policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> InfiniBand support >> RDMA/CM +CONFIG_INFINIBAND_ADDR_TRANS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_CXGB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INFINIBAND_SRP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_SRPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ISER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ISERT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_RTRS_CLIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_RTRS_SERVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Input device support + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) +CONFIG_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INPUT_LEDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_FF_MEMLESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INPUT_SPARSEKMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INPUT_MATRIXKMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INPUT_JOYDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INPUT_EVBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Joysticks/Gamepads +CONFIG_INPUT_JOYSTICK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_JOYSTICK_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_A3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_ADI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_COBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GF2K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GRIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GRIP_MP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GUILLEMOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_INTERACT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_SIDEWINDER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_TMDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_IFORCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_IFORCE_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_IFORCE_232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_WARRIOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_MAGELLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_SPACEORB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_SPACEBALL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_STINGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_TWIDJOY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_ZHENHUA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_DB9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_GAMECON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_TURBOGRAFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_AS5011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_JOYDUMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_XPAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_XPAD_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_XPAD_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_WALKERA0701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_PSXPAD_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_PSXPAD_SPI_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JOYSTICK_PXRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_QWIIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JOYSTICK_FSIA6B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Keyboards +CONFIG_INPUT_KEYBOARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KEYBOARD_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_ADP5589 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_APPLESPI policy<{'amd64': 'm'}> +CONFIG_KEYBOARD_ATKBD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KEYBOARD_QT1050 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_QT1070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_QT2160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_DLINK_DIR685 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_LKKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_GPIO_POLLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TCA6416 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TCA8418 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MATRIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_LM8323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_LM8333 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MAX7359 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MPR121 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_SNVS_PWRKEY policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_KEYBOARD_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_KEYBOARD_IMX_SC_KEY policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_KEYBOARD_NEWTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_KEYBOARD_OPENCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_PMIC8XXX policy<{'armhf': 'm'}> +CONFIG_KEYBOARD_SAMSUNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_STOWAWAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_SUNKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_STMPE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_SUN4I_LRADC policy<{'arm64': 'n'}> +CONFIG_KEYBOARD_IQS62X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_OMAP4 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TC3589X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TM2_TOUCHKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_XTKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_CAP11XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_BCM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEYBOARD_MTK_PMIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mice +CONFIG_INPUT_MOUSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MOUSE_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_APPLETOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_BCM5974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_CYAPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_ELAN_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_ELAN_I2C_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_ELAN_I2C_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_VSXXXAA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_SYNAPTICS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_SYNAPTICS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_MOUSE_INPORT note + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mice >> PS/2 mouse +CONFIG_MOUSE_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOUSE_PS2_ALPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_BYD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_LOGIPS2PP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_SYNAPTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_CYPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_LIFEBOOK policy<{'amd64': 'y'}> +CONFIG_MOUSE_PS2_TRACKPOINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_ELANTECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_ELANTECH_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_SENTELIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_TOUCHKIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_FOCALTECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MOUSE_PS2_VMMOUSE policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Miscellaneous devices +CONFIG_INPUT_MISC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_INPUT_88PM860X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_88PM80X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AD714X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AD714X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AD714X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ARIZONA_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ATC260X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ATMEL_CAPTOUCH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_BMA150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_E3X0_BUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCSPKR policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PM8941_PWRKEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_PM8XXX_VIBRATOR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_PMIC8XXX_PWRKEY policy<{'armhf': 'm'}> +CONFIG_INPUT_MAX77650_ONKEY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MAX77693_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MAX8925_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MAX8997_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MC13783_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_MMA8450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_APANEL policy<{'amd64': 'm'}> +CONFIG_INPUT_GPIO_BEEPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_GPIO_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_GPIO_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CPCAP_PWRBUTTON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ATLAS_BTNS policy<{'amd64': 'm'}> +CONFIG_INPUT_ATI_REMOTE2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_KEYSPAN_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_KXTJ9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_POWERMATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_YEALINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CM109 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_REGULATOR_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_RETU_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TPS65218_PWRBUTTON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_AXP20X_PEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TWL4030_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TWL4030_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_TWL6040_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_UINPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_PALMAS_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCF50633_PMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCF8574 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PWM_BEEPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PWM_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_RK805_PWRKEY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_GPIO_ROTARY_ENCODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA7280_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA9052_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA9055_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DA9063_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_WM831X_ON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_IMS_PCU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_IQS269A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_IQS626A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CMA3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_CMA3000_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_XEN_KBDDEV_FRONTEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_INPUT_IDEAPAD_SLIDEBAR policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_SOC_BUTTON_ARRAY policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_INPUT_DRV260X_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DRV2665_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_DRV2667_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_HISI_POWERKEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_RAVE_SP_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_SC27XX_VIBRA policy<{'arm64': 'm'}> +CONFIG_INPUT_STPMIC1_ONKEY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_INPUT_UINPUT mark note + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mouse interface +CONFIG_INPUT_MOUSEDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_INPUT_MOUSEDEV_PSAUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_INPUT_MOUSEDEV_SCREEN_X policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'ppc64el': '1024'}> +CONFIG_INPUT_MOUSEDEV_SCREEN_Y policy<{'amd64': '768', 'arm64': '768', 'armhf': '768', 'ppc64el': '768'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Synaptics RMI4 bus support +CONFIG_RMI4_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_RMI4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RMI4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RMI4_SMB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RMI4_F03 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F11 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F12 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F30 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F34 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F3A policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F54 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RMI4_F55 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Tablets +CONFIG_INPUT_TABLET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TABLET_USB_ACECAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_AIPTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_HANWANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_KBTAB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_USB_PEGASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TABLET_SERIAL_WACOM4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens +CONFIG_INPUT_TOUCHSCREEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TOUCHSCREEN_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ADS7846 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7877 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7879 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7879_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AD7879_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_AR1021_I2C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_AUO_PIXCIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_BU21013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_BU21029 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TOUCHSCREEN_CY8CTMA140 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CY8CTMG110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_DA9034 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_DYNAPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_HAMPSHIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EETI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EGALAX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EGALAX_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EXC3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_FUJITSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_GOODIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_HIDEEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_HYCON_HY46XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ILI210X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ILITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': 'm'}> +CONFIG_TOUCHSCREEN_S6SY761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_GUNZE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EKTF2127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ELAN policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ELO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WACOM_W8001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WACOM_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MAX11801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MCS5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MMS114 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MELFAS_MIP4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MSG2638 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_IMX6UL_TSC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_INEXIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MK712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_PENMOUNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_EDT_FT5X06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW policy<{'arm64': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHRIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHWIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_PIXCIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WDT87XX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHIT213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TS4800 policy<{'armhf-generic': 'm'}> +CONFIG_TOUCHSCREEN_TSC_SERIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC2004 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC2005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC2007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TSC2007_IIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_RM_TS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SILEAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SIS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ST1232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_STMFTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_STMPE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SUN4I policy<{'arm64': 'n'}> +CONFIG_TOUCHSCREEN_SUR40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SURFACE3_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_SX8654 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ZET6223 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ZFORCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_COLIBRI_VF50 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ROHM_BU21023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_IQS5XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_ZINITIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_TOUCHSCREEN_ELAN mark note + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens >> Support for WM97xx AC97 touchscreen controllers +CONFIG_TOUCHSCREEN_WM97XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_WM9705 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_WM9712 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_WM9713 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens >> USB Touchscreen Driver +CONFIG_TOUCHSCREEN_USB_COMPOSITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_USB_EGALAX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_PANJIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_3M policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ITM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ETURBO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_GUNZE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_DMC_TSC10 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_IRTOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_IDEALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_GOTOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_JASTEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ELO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_E2I policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ZYTRONIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_NEXIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TOUCHSCREEN_USB_EASYTOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Input device support >> Hardware I/O ports + +# Menu: Device Drivers >> Input device support >> Hardware I/O ports >> Gameport support +CONFIG_GAMEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GAMEPORT_NS558 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GAMEPORT_L4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GAMEPORT_EMU10K1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GAMEPORT_FM801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Input device support >> Hardware I/O ports >> Serial I/O support +CONFIG_SERIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SERIO_I8042 policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_SERIO_SERPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_CT82C710 policy<{'amd64': 'm'}> +CONFIG_SERIO_PARKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_AMBAKMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIO_PCIPS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_LIBPS2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SERIO_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_XILINX_XPS_PS2 policy<{'ppc64el': 'm'}> +CONFIG_SERIO_ALTERA_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_PS2MULT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_ARC_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIO_APBPS2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HYPERV_KEYBOARD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SERIO_SUN4I_PS2 policy<{'arm64': 'n'}> +CONFIG_SERIO_GPIO_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USERIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> LED Support +CONFIG_NEW_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LEDS_AAEON policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support +CONFIG_LEDS_CLASS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_BRIGHTNESS_HW_CHANGED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_AN30259A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_APU policy<{'amd64': 'm'}> +CONFIG_LEDS_AW2013 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BCM6328 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BCM6358 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_CR0014114 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_EL15203000 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3692X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MT6323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PCA9532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PCA9532_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP3944 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP3952 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP8860 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_CLEVO_MAIL policy<{'amd64': 'm'}> +CONFIG_LEDS_PCA955X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PCA955X_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_PCA963X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_WM831X_STATUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_DAC124S085 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_REGULATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_BD2802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_INTEL_SS4200 policy<{'amd64': 'm'}> +CONFIG_LEDS_LT3593 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_NS2 policy<{'armhf': 'm'}> +CONFIG_LEDS_ASIC3 policy<{'armhf': 'y'}> +CONFIG_LEDS_TCA6507 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TLC591XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM355x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MENF21BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_IS31FL319X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_IS31FL32XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_SC27XX_BLTC policy<{'arm64': 'm'}> +CONFIG_LEDS_BLINKM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_LEDS_SYSCON policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_PM8058 policy<{'armhf': 'm'}> +CONFIG_LEDS_MLXCPLD policy<{'amd64': 'm'}> +CONFIG_LEDS_MLXREG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_NIC78BX policy<{'amd64': 'm'}> +CONFIG_LEDS_SPI_BYTE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TI_LMU_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3697 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM36274 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_ACER_A500 policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Flash Class Support +CONFIG_LEDS_CLASS_FLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_AAT1290 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_AS3645A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LM3601X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_MAX77693 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_KTD2692 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_SGM3140 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_RT4505 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_RT8515 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Multicolor Class Support +CONFIG_LEDS_CLASS_MULTICOLOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TURRIS_OMNIA policy<{'armhf': 'm'}> +CONFIG_LEDS_LP50XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Multicolor Class Support >> Common Driver for TI/National LP5521/5523/55231/5562/8501 +CONFIG_LEDS_LP55XX_COMMON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP5521 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP5523 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP5562 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_LP8501 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Trigger support +CONFIG_LEDS_TRIGGERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_TIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_ONESHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_DISK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_HEARTBEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_BACKLIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_ACTIVITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_DEFAULT_ON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_TRANSIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_CAMERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_PANIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LEDS_TRIGGER_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_PATTERN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LEDS_TRIGGER_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> MCB support +CONFIG_MCB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MCB_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MCB_LPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> MIPS Platform Specific Device Drivers + +# Menu: Device Drivers >> MMC/SD/SDIO card support +CONFIG_MMC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PWRSEQ_EMMC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWRSEQ_SD8787 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWRSEQ_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_BLOCK policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MMC_BLOCK_MINORS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8'}> +CONFIG_SDIO_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MMC_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MMC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MMC_ARMMMCI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_QCOM_DML policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_STM32_SDMMC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_MESON_GX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_MESON_MX_SDHC policy<{'armhf': 'm'}> +CONFIG_MMC_MESON_MX_SDIO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_OMAP policy<{'armhf': 'm'}> +CONFIG_MMC_OMAP_HS policy<{'armhf': 'y'}> +CONFIG_MMC_WBSD policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_ALCOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_MXC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MMC_TIFM_SD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_MVSDIO policy<{'armhf': 'm'}> +CONFIG_MMC_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDRICOH_CS policy<{'amd64': 'm'}> +CONFIG_MMC_TMIO policy<{'armhf': 'm'}> +CONFIG_MMC_SDHI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHI_SYS_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHI_INTERNAL_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_MMC_CB710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_VIA_SDMMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_CAVIUM_THUNDERX policy<{'arm64': 'm'}> +CONFIG_MMC_SH_MMCIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_VUB300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_USHC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_USDHI6ROL0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_REALTEK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SUNXI policy<{'arm64': 'm'}> +CONFIG_MMC_CQHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_HSQ policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MMC_TOSHIBA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_BCM2835 policy<{'arm64': 'm'}> +CONFIG_MMC_MTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_OWL policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_MMC_BLOCK note +CONFIG_MMC_TEST flag +CONFIG_MMC_OMAP_HS note + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Samsung S3C SD/MMC transfer code + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Secure Digital Host Controller Interface support +CONFIG_MMC_SDHCI policy<{'amd64': 'm', 'arm64-generic': 'm', 'arm64-generic-64k': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_RICOH_MMC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MMC_SDHCI_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MMC_SDHCI_S3C policy<{'armhf': 'm'}> +CONFIG_MMC_SDHCI_S3C_DMA policy<{'armhf': 'y'}> +# +CONFIG_MMC_SDHCI note + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Secure Digital Host Controller Interface support >> SDHCI platform and OF driver helper +CONFIG_MMC_SDHCI_PLTFM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_ARASAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_ASPEED policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_AT91 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_ESDHC policy<{'arm64': 'm', 'armhf-generic': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_HLWD policy<{'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_DWCMSHC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_SPARX5 policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'arm64': 'm', 'armhf-generic': 'y'}> +CONFIG_MMC_SDHCI_DOVE policy<{'armhf': 'm'}> +CONFIG_MMC_SDHCI_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MMC_SDHCI_PXAV3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHCI_F_SDH30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_MILBEAUT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_IPROC policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_MSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHCI_SPRD policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_XENON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OMAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_AM654 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_MMC_SDHCI_PLTFM note + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Synopsys DesignWare Memory Card Interface +CONFIG_MMC_DW policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_PLTFM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_BLUEFIELD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_EXYNOS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_HI3798CV200 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_K3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_PCI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_DW_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> MOST support +CONFIG_MOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MOST_USB_HDM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOST_CDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOST_SND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers +CONFIG_MACINTOSH_DRIVERS policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_MAC_EMUMOUSEBTN policy<{'amd64': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers >> Apple Desktop Bus (ADB) support + +# Menu: Device Drivers >> Macintosh device drivers >> New PowerMac thermal control infrastructure +CONFIG_WINDFARM policy<{'ppc64el': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers >> Support for PMU based PowerMacs and PowerBooks + +# Menu: Device Drivers >> Mailbox Hardware Support +CONFIG_MAILBOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ARM_MHU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_MHU_V2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_MBOX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PLATFORM_MHU policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PL320_MBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARMADA_37XX_RWTM_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OMAP2PLUS_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OMAP_MBOX_KFIFO_SIZE policy<{'arm64': '256', 'armhf': '256'}> +CONFIG_ROCKCHIP_MBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ALTERA_MBOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BCM2835_MBOX policy<{'arm64': 'y'}> +CONFIG_TI_MESSAGE_MANAGER policy<{'arm64': 'y'}> +CONFIG_HI3660_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HI6220_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MAILBOX_TEST policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_APCS_IPC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TEGRA_HSP_MBOX policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_XGENE_SLIMPRO_MBOX policy<{'arm64': 'm'}> +CONFIG_BCM_PDC_MBOX policy<{'arm64': 'm'}> +CONFIG_BCM_FLEXRM_MBOX policy<{'arm64': 'm'}> +CONFIG_MTK_CMDQ_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ZYNQMP_IPI_MBOX policy<{'arm64': 'y'}> +CONFIG_SUN6I_MSGBOX policy<{'arm64': 'y'}> +CONFIG_SPRD_MBOX policy<{'arm64': 'm'}> +CONFIG_QCOM_IPCC policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Memory Controller drivers +CONFIG_MEMORY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ARM_PL172_MPMC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BRCMSTB_DPFE policy<{'arm64': 'y'}> +CONFIG_TI_EMIF policy<{'armhf': 'm'}> +CONFIG_OMAP_GPMC policy<{'armhf': 'y'}> +CONFIG_OMAP_GPMC_DEBUG policy<{'armhf': 'n'}> +CONFIG_TI_EMIF_SRAM policy<{'armhf-generic': 'm'}> +CONFIG_FPGA_DFL_EMIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MVEBU_DEVBUS policy<{'armhf': 'y'}> +CONFIG_FSL_IFC policy<{'arm64': 'y'}> +CONFIG_MTK_SMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PL353_SMC policy<{'armhf': 'm'}> +CONFIG_RENESAS_RPCIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SAMSUNG_MC policy<{'armhf': 'y'}> +CONFIG_EXYNOS5422_DMC policy<{'armhf': 'm'}> +CONFIG_EXYNOS_SROM policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Memory Controller drivers >> NVIDIA Tegra Memory Controller support +CONFIG_TEGRA_MC policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_TEGRA20_EMC policy<{'armhf-generic': 'y'}> +CONFIG_TEGRA30_EMC policy<{'armhf-generic': 'y'}> +CONFIG_TEGRA124_EMC policy<{'armhf-generic': 'y'}> +CONFIG_TEGRA210_EMC policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support +CONFIG_MTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MTD_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MTD_BLOCK_RO policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFTL_RW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_INFTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RFD_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SSFDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SM_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_OOPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PSTORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SWAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PARTITIONED_MASTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_MTD note +CONFIG_MTD_BLOCK note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Enable UBI - Unsorted block images +CONFIG_MTD_UBI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_UBI_WL_THRESHOLD policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'ppc64el': '4096'}> +CONFIG_MTD_UBI_BEB_LIMIT policy<{'amd64': '20', 'arm64': '20', 'armhf': '20', 'ppc64el': '20'}> +CONFIG_MTD_UBI_FASTMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_UBI_GLUEBI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_UBI_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> HyperBus support +CONFIG_MTD_HYPERBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HBMC_AM654 policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> LPDDR & LPDDR2 PCM memory drivers +CONFIG_MTD_LPDDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_QINFO_PROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_LPDDR2_NVM policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access +CONFIG_MTD_AMD76XROM policy<{'amd64': 'm'}> +CONFIG_MTD_ICHXROM policy<{'amd64': 'm'}> +CONFIG_MTD_ESB2ROM policy<{'amd64': 'm'}> +CONFIG_MTD_CK804XROM policy<{'amd64': 'm'}> +CONFIG_MTD_SCB2_FLASH policy<{'amd64': 'm'}> +CONFIG_MTD_NETtel policy<{'amd64': 'm'}> +CONFIG_MTD_L440GX policy<{'amd64': 'm'}> +CONFIG_MTD_IMPA7 policy<{'armhf': 'm'}> +CONFIG_MTD_INTEL_VR_NOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PLATRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Flash device in physical memory map +CONFIG_MTD_PHYSMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PHYSMAP_GPIO_ADDR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Flash device in physical memory map >> Memory device in physical memory map based on OF description +CONFIG_MTD_PHYSMAP_OF policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_PHYSMAP_VERSATILE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n'}> +CONFIG_MTD_PHYSMAP_GEMINI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n'}> +CONFIG_MTD_PHYSMAP_IXP4XX policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Flash device in physical memory map >> Physmap compat support +CONFIG_MTD_PHYSMAP_COMPAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Support non-linear mappings of flash chips +CONFIG_MTD_COMPLEX_MAPPINGS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_SBC_GXX policy<{'amd64': 'm'}> +CONFIG_MTD_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PCMCIA policy<{'amd64': 'm'}> +CONFIG_MTD_PCMCIA_ANONYMOUS policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND +CONFIG_MTD_SPI_NAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> ECC engine support +CONFIG_MTD_NAND_ECC_SW_HAMMING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_NAND_ECC_SW_BCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> OneNAND Device Support +CONFIG_MTD_ONENAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ONENAND_VERIFY_WRITE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_ONENAND_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ONENAND_OMAP2 policy<{'armhf-generic': 'm'}> +CONFIG_MTD_ONENAND_OTP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_ONENAND_2X_PROGRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_MTD_ONENAND_VERIFY_WRITE note +CONFIG_MTD_ONENAND_OTP flag + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> Raw/Parallel NAND Device Support +CONFIG_MTD_RAW_NAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DENALI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DENALI_DT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_OMAP2 policy<{'armhf': 'y'}> +CONFIG_MTD_NAND_OMAP_BCH policy<{'armhf': 'y'}> +CONFIG_MTD_NAND_CAFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_ORION policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_MARVELL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_TMIO policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_BRCMNAND policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_GPMI_NAND policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MTD_NAND_FSL_IFC policy<{'arm64': 'm'}> +CONFIG_MTD_NAND_VF610_NFC policy<{'armhf-generic': 'n'}> +CONFIG_MTD_NAND_MXC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MTD_NAND_SUNXI policy<{'arm64': 'n'}> +CONFIG_MTD_NAND_HISI504 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_MXIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MTD_NAND_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_ARASAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_INTEL_LGM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_PL35X policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_NANDSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_RICOH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DISKONCHIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_MTD_RAW_NAND note +CONFIG_MTD_NAND_OMAP2 note +CONFIG_MTD_NAND_OMAP_BCH note +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> Raw/Parallel NAND Device Support >> JZ4780 NAND controller + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Partition parsers +CONFIG_MTD_AR7_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CMDLINE_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MTD_OF_PARTS policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_MTD_OF_PARTS_BCM4908 policy<{'arm64': 'y'}> +CONFIG_MTD_OF_PARTS_LINKSYS_NS policy<{'arm64': 'y'}> +CONFIG_MTD_AFS_PARTS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_PARSER_TRX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_SHARPSL_PARTS policy<{'armhf': 'm'}> +CONFIG_MTD_QCOMSMEM_PARTS policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_MTD_CMDLINE_PARTS flag +CONFIG_MTD_OF_PARTS note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Partition parsers >> RedBoot partition table parsing +CONFIG_MTD_REDBOOT_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK policy<{'amd64': '-1', 'arm64': '-1', 'armhf': '-1', 'ppc64el': '-1'}> +CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_REDBOOT_PARTS_READONLY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers +CONFIG_MTD_CFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_JEDECPROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CFI_INTELEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CFI_AMDSTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_CFI_STAA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_ABSENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers >> Flash chip driver advanced configuration options +CONFIG_MTD_CFI_ADV_OPTIONS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers >> Flash chip driver advanced configuration options >> Flash cmd/query data swapping + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers >> Flash chip driver advanced configuration options >> Specific CFI Flash geometry selection +CONFIG_MTD_MAP_BANK_WIDTH_1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_CFI_I1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_CFI_I2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> SPI NOR device support +CONFIG_MTD_SPI_NOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_ASPEED_SMC policy<{'armhf': 'm'}> +CONFIG_SPI_HISI_SFC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_INTEL_SPI_PCI policy<{'amd64': 'n'}> +CONFIG_SPI_INTEL_SPI_PLATFORM policy<{'amd64': 'n'}> +# +CONFIG_SPI_INTEL_SPI_PCI mark note +CONFIG_SPI_INTEL_SPI_PLATFORM mark note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> SPI NOR device support >> Software write protection at boot +CONFIG_MTD_SPI_NOR_SWP_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_SPI_NOR_SWP_KEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Self-contained MTD device drivers +CONFIG_MTD_PMC551 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PMC551_BUGFIX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_PMC551_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_DATAFLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_DATAFLASH_WRITE_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MTD_DATAFLASH_OTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MTD_MCHP23K256 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_MCHP48L640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_SST25L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_BCM47XXSFLASH policy<{'armhf': 'm'}> +CONFIG_MTD_SLRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_PHRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_MTDRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTDRAM_TOTAL_SIZE policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'ppc64el': '4096'}> +CONFIG_MTDRAM_ERASE_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128'}> +CONFIG_MTD_BLOCK2MTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTD_POWERNV_FLASH policy<{'ppc64el': 'm'}> +CONFIG_MTD_DOCG3 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_MTD_DOCG3 mark note + +# Menu: Device Drivers >> Microsoft Hyper-V guest support +CONFIG_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_UTILS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_BALLOON policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> Microsoft Surface Platform-Specific Device Drivers +CONFIG_SURFACE_PLATFORMS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SURFACE3_WMI policy<{'amd64': 'm'}> +CONFIG_SURFACE_3_BUTTON policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_SURFACE_3_POWER_OPREGION policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_SURFACE_ACPI_NOTIFY policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_AGGREGATOR_CDEV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_AGGREGATOR_REGISTRY policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_DTX policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_GPE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_HOTPLUG policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_PLATFORM_PROFILE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_PRO3_BUTTON policy<{'amd64': 'm', 'arm64': 'n'}> + +# Menu: Device Drivers >> Microsoft Surface Platform-Specific Device Drivers >> Microsoft Surface System Aggregator Module Subsystem and Drivers +CONFIG_SURFACE_AGGREGATOR policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_AGGREGATOR_BUS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: Device Drivers >> Misc devices +CONFIG_AD525X_DPOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AD525X_DPOT_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD525X_DPOT_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DUMMY_IRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IBM_ASM policy<{'amd64': 'm'}> +CONFIG_IBMVMC policy<{'ppc64el': 'm'}> +CONFIG_PHANTOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TIFM_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TIFM_7XX1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ICS932S401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ENCLOSURE_SERVICES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SGI_XP policy<{'amd64': 'm'}> +CONFIG_HI6421V600_IRQ policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HP_ILO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QCOM_COINCELL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_FASTRPC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SGI_GRU policy<{'amd64': 'm'}> +CONFIG_SGI_GRU_DEBUG policy<{'amd64': 'n'}> +CONFIG_APDS9802ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ISL29003 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ISL29020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SENSORS_TSL2550 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SENSORS_BH1770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SENSORS_APDS990X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HMC6352 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DS1682 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_VMWARE_BALLOON policy<{'amd64': 'm'}> +CONFIG_LATTICE_ECP3_CONFIG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DW_XDATA_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PCI_ENDPOINT_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XILINX_SDFEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HISI_HIKEY_USB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CB710_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CB710_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SENSORS_LIS3_SPI policy<{'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SENSORS_LIS3_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ALTERA_STAPL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INTEL_MEI policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_ME policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_TXE policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_HDCP policy<{'amd64': 'm'}> +CONFIG_VMWARE_VMCI policy<{'amd64': 'm'}> +CONFIG_ECHO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CXL policy<{'ppc64el': 'm'}> +CONFIG_OCXL policy<{'ppc64el': 'm'}> +CONFIG_BCM_VK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BCM_VK_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MISC_ALCOR_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MISC_RTSX_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MISC_RTSX_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HABANA_AI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UACCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PVPANIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PVPANIC_MMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PVPANIC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_CS5535_MFGPT note + +# Menu: Device Drivers >> Misc devices >> EEPROM support +CONFIG_EEPROM_AT24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EEPROM_AT25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EEPROM_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EEPROM_MAX6875 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EEPROM_93CX6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EEPROM_93XX46 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_EEPROM_IDT_89HPESX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EEPROM_EE1004 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Misc devices >> GenWQE PCIe Accelerator +CONFIG_GENWQE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY policy<{'amd64': '0', 'arm64': '0', 'ppc64el': '0', 's390x': '0'}> + +# Menu: Device Drivers >> Misc devices >> Silicon Labs C2 port support +CONFIG_C2PORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_C2PORT_DURAMAR_2150 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Misc devices >> Texas Instruments shared transport line discipline +CONFIG_TI_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Multifunction device drivers +CONFIG_MFD_ALTERA_A10SR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MFD_ALTERA_SYSMGR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MFD_ACT8945A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_SUN4I_GPADC policy<{'arm64': 'm'}> +CONFIG_MFD_AS3711 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PMIC_ADP5520 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_AAT2870_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_ATMEL_FLEXCOM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_ATMEL_HLCDC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_BCM590XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_BD9571MWV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_AC100 policy<{'arm64': 'n'}> +CONFIG_MFD_AXP20X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_AXP20X_RSB policy<{'arm64': 'm'}> +CONFIG_MFD_CROS_EC_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_ASIC3 policy<{'armhf': 'y'}> +CONFIG_PMIC_DA903X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9052_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9052_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9055 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_DA9063 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MFD_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_EXYNOS_LPASS policy<{'armhf': 'm'}> +CONFIG_MFD_GATEWORKS_GSC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MC13XXX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MC13XXX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_MP2629 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_HI6421_PMIC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_HI6421_SPMI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_HI655X_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HTC_PASIC3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HTC_I2CPLD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_INTEL_QUARK_I2C_GPIO policy<{'amd64': 'm'}> +CONFIG_LPC_ICH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_LPC_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_INTEL_SOC_PMIC policy<{'amd64': 'y'}> +CONFIG_INTEL_SOC_PMIC_BXTWC policy<{'amd64': 'm'}> +CONFIG_INTEL_SOC_PMIC_CHTWC policy<{'amd64': 'y'}> +CONFIG_INTEL_SOC_PMIC_CHTDC_TI policy<{'amd64': 'm'}> +CONFIG_INTEL_SOC_PMIC_MRFLD policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_LPSS_ACPI policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_LPSS_PCI policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_PMC_BXT policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_PMT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_IQS62X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_JANZ_CMODIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM860X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX14577 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MFD_MAX77620 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MAX77686 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX77693 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MFD_MAX77843 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_MAX8925 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX8997 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MAX8998 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_MENF21BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EZX_PCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_NTXEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RETU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PCF50633_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCF50633_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_UCB1400_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_PM8XXX policy<{'armhf': 'm'}> +CONFIG_MFD_QCOM_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_SPMI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_RDC321X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_RT4831 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_RC5T583 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RN5T618 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_SEC_CORE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_SI476X_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_MFD_SM501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_SM501_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_SC27XX_PMIC policy<{'arm64': 'm'}> +CONFIG_MFD_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_SUN6I_PRCM policy<{'arm64': 'y'}> +CONFIG_MFD_SYSCON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MFD_TI_AM335X_TSCADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_LP8788 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TI_LMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_OMAP_USB_HOST policy<{'armhf': 'y'}> +CONFIG_MFD_PALMAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TPS65010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_TPS65086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_TPS65090 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65217 policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': 'n'}> +CONFIG_MFD_TI_LP873X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_TI_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_TPS6586X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS65912_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MFD_TPS65912_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_TPS80031 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TWL4030_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TWL4030_POWER policy<{'armhf': 'y'}> +CONFIG_MFD_TWL4030_AUDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_TWL6040_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WL1273_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_T7L66XB policy<{'armhf': 'y'}> +CONFIG_MFD_TC6387XB policy<{'armhf': 'y'}> +CONFIG_MFD_TC6393XB policy<{'armhf': 'y'}> +CONFIG_MFD_TQMX86 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_VX855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_LOCHNAGAR policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_ARIZONA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_ARIZONA_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_CS47L24 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM5102 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM5110 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8997 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8998 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8400 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM831X_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM831X_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8350_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_ROHM_BD718XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_ROHM_BD70528 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_ROHM_BD71828 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_ROHM_BD957XMUF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_STPMIC1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_STMFX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_WCD934X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_ATC260X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_KHADAS_MCU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_ACER_A500_EC policy<{'armhf-generic': 'm'}> +CONFIG_MFD_QCOM_PM8008 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_AAEON policy<{'amd64': 'm'}> +CONFIG_MFD_VEXPRESS_SYSREG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RAVE_SP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_INTEL_M10_BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RSMU_I2C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_RSMU_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_MFD_SM501 note +CONFIG_MFD_TPS65217 mark note + +# Menu: Device Drivers >> Multifunction device drivers >> Cirrus Logic Madera codecs +CONFIG_MFD_MADERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_MADERA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_MADERA_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MFD_CS47L15 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_CS47L35 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_CS47L85 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_CS47L90 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MFD_CS47L92 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multifunction device drivers >> Multimedia Capabilities Port drivers + +# Menu: Device Drivers >> Multifunction device drivers >> STMicroelectronics STMPE Interface Drivers +CONFIG_STMPE_I2C policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_STMPE_SPI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support +CONFIG_MEDIA_SUPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEDIA_SUPPORT_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_SUBDRV_AUTOSELECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Digital TV options +CONFIG_DVB_MMAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_NET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_MAX_ADAPTERS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8'}> +CONFIG_DVB_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_DEMUX_SECTION_LOSS_LOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_ULE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_DVB_ULE_DEBUG flag + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers +CONFIG_DVB_DUMMY_FE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IR_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_DVB_DUMMY_FE note + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Audio decoders, processors and mixers +CONFIG_VIDEO_TVAUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TDA7432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TDA9840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TDA1997X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TEA6415C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TEA6420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MSP3400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CS3308 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CS5345 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CS53L32A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TLV320AIC23B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_UDA1342 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_WM8775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_WM8739 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VP27SMPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SONY_BTF_MPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Audio/Video compression chips +CONFIG_VIDEO_SAA6752HS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Camera sensor devices +CONFIG_VIDEO_HI556 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX214 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX219 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX258 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX274 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX319 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX334 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX335 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX355 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IMX412 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV02A10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV2640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV2659 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV2680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV2685 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV2740 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIDEO_OV5640 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV5645 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV5647 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV5648 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV6650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV5670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV5675 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV5695 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV7251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV772X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV7640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV7670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV7740 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV8856 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV8865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV9282 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV9640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV9650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV9734 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIDEO_OV13858 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VS6624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9M001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9M032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9M111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9P031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9T001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9T112 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9V011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9V032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MT9V111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SR030PC30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_NOON010PC30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_M5MOLS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_RDACM20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_RDACM21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_RJ54N1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_S5K6AA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_S5K6A3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_S5K4ECGX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_S5K5BAF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ET8EK8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_S5C73M3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Customise DVB Frontends +CONFIG_DVB_STB0899 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STB6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV090x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV6110x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV6111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MXL5XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_M88DS3103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DRXK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA18271C2DD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SI2165 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MN88472 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MN88473 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24123 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MT312 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZL10036 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZL10039 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0288 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STB6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0299 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV6110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA8083 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA8261 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_VES1X93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_ITD1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_CX24113 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA826X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUA6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24116 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24117 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX24120 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SI21XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TS2020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DS3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MB86A16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10071 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SP887X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX22700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CX22702 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DRXD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_L64781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA1004X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NXT6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MT352 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZL10353 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB3000MB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB3000MC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB7000M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB7000P policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB9000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10048 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AF9013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_EC100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0367 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2820R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2841ER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_RTL2830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_RTL2832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_RTL2832_SDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SI2168 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ZD1301_DEMOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2880 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_VES1820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA10023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_STV0297 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NXT200X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_OR51211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_OR51132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BCM3510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGDT330X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGDT3305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGDT3306A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LG2160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1409 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AU8522_DTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AU8522_V4L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S5H1411 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MXL692 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_S921 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DIB8000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MB86A20S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TC90522 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MN88443X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_PLL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_DIB0070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TUNER_DIB0090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DRX39XYJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBH25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBH29 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBP21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LNBP22 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ISL6405 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ISL6421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ISL6423 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_A8293 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGS8GL5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_LGS8GXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ATBM8830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TDA665x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_IX2505V policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_M88RS2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AF9033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_HORUS3A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_ASCOT2E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_HELENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_CXD2099 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_SP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Customize TV tuners +CONFIG_MEDIA_TUNER_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA8290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA827X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18271 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA9887 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TEA5761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TEA5767 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MSI001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT20XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MT2131 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_QT1010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_XC2028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_XC5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_XC4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MXL5005S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MXL5007T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MC44S803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MAX2165 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18218 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC0011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC0012 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC0013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TDA18212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_E4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_FC2580 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_M88RS6000T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_TUA9001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_SI2157 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_IT913X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_R820T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_MXL301RF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_QM1D1C0042 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_TUNER_QM1D1B0004 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Flash devices +CONFIG_VIDEO_ADP1653 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_LM3560 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_LM3646 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Lens drivers +CONFIG_VIDEO_AD5820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_AK7375 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_DW9714 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_DW9768 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_DW9807_VCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Media SPI Adapters +CONFIG_CXD2880_SPI_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Miscellaneous helper chips +CONFIG_VIDEO_THS7303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_M52790 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ST_MIPID02 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> RDS decoders +CONFIG_VIDEO_SAA6588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> SDR tuner chips +CONFIG_SDR_MAX2175 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> SPI helper chips +CONFIG_VIDEO_GS1662 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Video decoders +CONFIG_VIDEO_ADV7180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7183 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV748X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7604 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7604_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_ADV7842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7842_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_BT819 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_BT856 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_BT866 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_KS0127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ML86V7667 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA711X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TC358743 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TC358743_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_TVP514X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TVP5150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TVP7002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW2804 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW9903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW9906 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW9910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VPX3220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MAX9286 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA717X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX25840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Video encoders +CONFIG_VIDEO_SAA7127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7185 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7170 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7175 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7343 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7393 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ADV7511 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ADV7511_CEC policy<{'amd64': 'y'}> +CONFIG_VIDEO_AD9389B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_AK881X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_THS8200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Video improvement chips +CONFIG_VIDEO_UPD64031A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_UPD64083 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media controller options +CONFIG_MEDIA_CONTROLLER_DVB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media core support +CONFIG_VIDEO_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_CONTROLLER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media device types +CONFIG_MEDIA_CAMERA_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_ANALOG_TV_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_DIGITAL_TV_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_RADIO_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_SDR_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_PLATFORM_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MEDIA_TEST_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers +CONFIG_SMS_SDIO_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_FIREDTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SMS_SIANO_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SMS_SIANO_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> DVB platform devices +CONFIG_DVB_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_C8SECTPFE policy<{'armhf': 'n'}> +# +CONFIG_DVB_C8SECTPFE flag + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> DVB test drivers +CONFIG_DVB_TEST_DRIVERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters +CONFIG_MEDIA_PCI_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_MEYE policy<{'amd64': 'm'}> +CONFIG_VIDEO_SOLO6X10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW5864 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW68 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TW686X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_HEXIUM_GEMINI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_HEXIUM_ORION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MXB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_DT3155 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX18 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX18_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX23885 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEDIA_ALTERA_CI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX25821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX25821_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_BT848 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BT8XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_COBALT policy<{'amd64': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_PLUTO2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DM1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_PT1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_PT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MANTIS_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_MANTIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_HOPPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NGENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DDBRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_DDBRIDGE_MSIENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_SMIPCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_NETUP_UNIDVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IPU3_CIO2 policy<{'amd64': 'm'}> +CONFIG_CIO2_BRIDGE policy<{'amd64': 'y'}> +CONFIG_VIDEO_PCI_SKELETON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_VIDEO_IVTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_IVTV_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_FB_IVTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_FB_IVTV_FORCE_PAT policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters >> Conexant 2388x (bt878 successor) support +CONFIG_VIDEO_CX88 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_BLACKBIRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX88_ENABLE_VP3054 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters >> Philips SAA7134 support +CONFIG_VIDEO_SAA7134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7134_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7134_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_SAA7134_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_SAA7134_GO7007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters >> SAA7146 DVB cards (aka Budget, Nova-PCI) +CONFIG_DVB_BUDGET_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET_CI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_BUDGET_AV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters +CONFIG_MEDIA_USB_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_VIDEO_CLASS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_PWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PWC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_PWC_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CPIA2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ZR364XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STKWEBCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_S2255 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_USBTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_PVRUSB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_PVRUSB2_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_PVRUSB2_DVB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_PVRUSB2_DEBUGIFC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_VIDEO_HDPVR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_STK1160_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007_LOADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_GO7007_USB_S2250_BOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_AU0828 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_AU0828_V4L2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_AU0828_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_TM6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TM6000_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TM6000_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TTUSB_BUDGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_TTUSB_DEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SMS_USB_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_AS102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AIRSPY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HACKRF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MSI2500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Conexant cx231xx USB video capture support +CONFIG_VIDEO_CX231XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX231XX_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CX231XX_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CX231XX_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Empia EM28xx USB devices support +CONFIG_VIDEO_EM28XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_V4L2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_EM28XX_RC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> GSPCA based webcams +CONFIG_USB_GSPCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_M5602 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STV06XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GL860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_BENQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_CONEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_CPIA1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_DTCS033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_ETOMS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_FINEPIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_JEILINJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_JL2005BCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_KINECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_KONICA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_MARS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_MR97310A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_NW80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_OV519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_OV534 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_OV534_9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_PAC207 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_PAC7302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_PAC7311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SE401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SN9C2028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SN9C20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SONIXB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SONIXJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA505 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA506 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA508 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA561 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SPCA1528 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SQ905 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SQ905C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SQ930X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_STK014 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_STK1135 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_STV0680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_SUNPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_T613 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_TOPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_TOUPTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_TV8532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_VC032X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_VICAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_XIRLINK_CIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GSPCA_ZC3XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Support for various USB DVB devices +CONFIG_DVB_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_USB_A800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIBUSB_MB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIBUSB_MB_FAULTY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DVB_USB_DIBUSB_MC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIB0700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_UMT_010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CXUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CXUSB_ANALOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_USB_M920X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DIGITV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_VP7045 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_VP702X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_GP8PSK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_NOVA_T_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_TTUSB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DTT200U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_OPERA1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9005_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_PCTV452E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DW2102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CINERGY_T2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DTV5100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AZ6027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_TECHNISAT_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Support for various USB DVB devices v2 +CONFIG_DVB_USB_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AF9035 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_ANYSEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AU6610 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_AZ6007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_CE6230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_EC168 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_GL861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_LME2510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_MXL111SF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_RTL28XXU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_DVBSKY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_USB_ZD1301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Memory-to-memory multimedia devices +CONFIG_V4L_MEM2MEM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_ALLEGRO_DVT policy<{'arm64': 'm'}> +CONFIG_VIDEO_CODA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_VIDEO_IMX_PXP policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_VIDEO_IMX8_JPEG policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_VIDEO_MEDIATEK_VPU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_MEM2MEM_DEINTERLACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MESON_GE2D policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_G2D policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_JPEG policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_MFC policy<{'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC policy<{'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_FDP1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_JPU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_FCP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_VSP1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_ROCKCHIP_RGA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_TI_VPE policy<{'armhf': 'm'}> +CONFIG_VIDEO_TI_VPE_DEBUG policy<{'armhf': 'n'}> +CONFIG_VIDEO_QCOM_VENUS policy<{'arm64': 'm'}> +CONFIG_VIDEO_SUN8I_DEINTERLACE policy<{'arm64': 'm'}> +CONFIG_VIDEO_SUN8I_ROTATE policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Radio Adapters +CONFIG_RADIO_ADAPTERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RADIO_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SI476X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MR800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DSBR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_MAXIRADIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SHARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SHARK2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_KEENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RAREMONO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MA901 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_TEA5764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_SAA7706H policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_TEF6862 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_WL1273 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RADIO_WL128X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Radio Adapters >> ISA radio devices + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Radio Adapters >> Silicon Labs Si4713 FM Radio with RDS Transmitter support +CONFIG_RADIO_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PLATFORM_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I2C_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> SDR platform devices +CONFIG_SDR_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_RCAR_DRIF policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L platform devices +CONFIG_V4L_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CAFE_CCIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VIA_CAMERA policy<{'amd64': 'm'}> +CONFIG_VIDEO_CADENCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_CADENCE_CSI2RX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_CADENCE_CSI2TX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OMAP2_VOUT policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_ASPEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_MUX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OMAP3 policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_OMAP3_DEBUG policy<{'armhf-generic': 'n'}> +CONFIG_VIDEO_QCOM_CAMSS policy<{'arm64': 'm'}> +CONFIG_VIDEO_RENESAS_CEU policy<{'armhf': 'm'}> +CONFIG_VIDEO_ROCKCHIP_ISP1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RCAR_CSI2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RCAR_VIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_SUN4I_CSI policy<{'arm64': 'm'}> +CONFIG_VIDEO_SUN6I_CSI policy<{'arm64': 'm'}> +CONFIG_VIDEO_TI_CAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_TI_CAL_MC policy<{'arm64': 'y', 'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L platform devices >> Samsung S5P/EXYNOS4 SoC series Camera Subsystem driver +CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L platform devices >> Xilinx Video IP (EXPERIMENTAL) +CONFIG_VIDEO_XILINX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_XILINX_CSI2RXSS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_XILINX_TPG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_XILINX_VTC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L test drivers +CONFIG_V4L_TEST_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_VIMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VIVID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VIVID_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_VIVID_MAX_DEVS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'ppc64el': '64'}> +CONFIG_VIDEO_VIM2M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_VICODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_VIDEO_VIMC note + +# Menu: Device Drivers >> Multimedia support >> Video4Linux options +CONFIG_VIDEO_ADV_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_VIDEO_FIXED_MINOR_RANGES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_VIDEO_V4L2_SUBDEV_API policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_V4L2_FLASH_LED_CLASS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) +CONFIG_MD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Block device as cache +CONFIG_BCACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BCACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BCACHE_CLOSURES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BCACHE_ASYNC_REGISTRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support +CONFIG_BLK_DEV_DM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_DM_UNSTRIPED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_SNAPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_THIN_PROVISIONING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE_SMQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_WRITECACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_EBS policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_ERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_CLONE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MIRROR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_LOG_USERSPACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_RAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_ZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_DELAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_DUST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DM_INIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_UEVENT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_FLAKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_VERITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRINGpolicy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DM_VERITY_FEC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DM_SWITCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_LOG_WRITES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_INTEGRITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_ZONED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_BLK_DEV_DM mark note + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support >> Multipath target +CONFIG_DM_MULTIPATH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_QL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_HST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_IOA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> RAID support +CONFIG_BLK_DEV_MD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MD_AUTODETECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MD_LINEAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_RAID456 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_MULTIPATH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'y'}> +CONFIG_MD_FAULTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MD_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Multiplexer drivers +CONFIG_MUX_ADG792A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MUX_ADGS1408 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MUX_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MUX_MMIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> NVDIMM (Non-Volatile Memory Device) Support +CONFIG_LIBNVDIMM policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BLK_DEV_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_ND_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_BTT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y'}> +CONFIG_NVDIMM_PFN policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_NVDIMM_DAX policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_OF_PMEM policy<{'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> NVME Support +CONFIG_BLK_DEV_NVME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_MULTIPATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NVME_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NVME_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_BLK_DEV_NVME mark note + +# Menu: Device Drivers >> NVME Support >> NVMe Target support +CONFIG_NVME_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_PASSTHRU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NVME_TARGET_LOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_FCLOOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NVME_TARGET_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> NVMEM Support +CONFIG_NVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NVMEM_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NVMEM_IMX_IIM policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_NVMEM_IMX_OCOTP policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_NVMEM_IMX_OCOTP_SCU policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MTK_EFUSE policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_QCOM_QFPROM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_SPMI_SDAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ROCKCHIP_EFUSE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ROCKCHIP_OTP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_BCM_OCOTP policy<{'arm64': 'm'}> +CONFIG_NVMEM_SUNXI_SID policy<{'arm64': 'm'}> +CONFIG_UNIPHIER_EFUSE policy<{'armhf': 'm'}> +CONFIG_NVMEM_VF610_OCOTP policy<{'armhf-generic': 'n'}> +CONFIG_MESON_EFUSE policy<{'arm64-generic': 'm'}> +CONFIG_MESON_MX_EFUSE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_SNVS_LPGPR policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RAVE_SP_EEPROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SC27XX_EFUSE policy<{'arm64': 'm'}> +CONFIG_NVMEM_ZYNQMP policy<{'arm64': 'y'}> +CONFIG_SPRD_EFUSE policy<{'arm64': 'm'}> +CONFIG_NVMEM_RMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_NVMEM flag note + +# Menu: Device Drivers >> Network device support +CONFIG_NETDEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HIPPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_QCOM_IPA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_SB1000 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MICREL_KS8995MA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XEN_NETDEV_FRONTEND policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_NETDEV_BACKEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VMXNET3 policy<{'amd64': 'm', 'arm64-generic': 'm', 'armhf': 'm', 's390x': 'n'}> +CONFIG_FUJITSU_ES policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB4_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HYPERV_NET policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NETDEVSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FAILOVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_HIPPI note +CONFIG_XEN_NETDEV_FRONTEND note + +# Menu: Device Drivers >> Network device support >> ARCnet support +CONFIG_ARCNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ARCNET_1201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_1051 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_CAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM90xx policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM90xxIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_RIM_I policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> ARCnet support >> ARCnet COM20020 chipset driver +CONFIG_ARCNET_COM20020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM20020_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCNET_COM20020_CS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Network device support >> ATM drivers +CONFIG_ATM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATM_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_LANAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_ENI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_ENI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_FIRESTREAM policy<{'amd64': 'm'}> +CONFIG_ATM_ZATM policy<{'amd64': 'm'}> +CONFIG_ATM_ZATM_DEBUG policy<{'amd64': 'n'}> +CONFIG_ATM_NICSTAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_NICSTAR_USE_SUNI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_NICSTAR_USE_IDT77105 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_IDT77252 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_IDT77252_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_IDT77252_RCV_ALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_AMBASSADOR policy<{'amd64': 'm'}> +CONFIG_ATM_AMBASSADOR_DEBUG policy<{'amd64': 'n'}> +CONFIG_ATM_HORIZON policy<{'amd64': 'm'}> +CONFIG_ATM_HORIZON_DEBUG policy<{'amd64': 'n'}> +CONFIG_ATM_IA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_IA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_HE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_HE_USE_SUNI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATM_SOLOS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_ATM_NICSTAR_USE_IDT77105 flag + +# Menu: Device Drivers >> Network device support >> ATM drivers >> FORE Systems 200E-series +CONFIG_ATM_FORE200E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_FORE200E_USE_TASKLET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_FORE200E_TX_RETRY policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16'}> +CONFIG_ATM_FORE200E_DEBUG policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> + +# Menu: Device Drivers >> Network device support >> ATM drivers >> Fine-tune burst settings +CONFIG_ATM_ENI_TUNE_BURST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> CAIF transport drivers +CONFIG_CAIF_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CAIF_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAIF_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers +CONFIG_NET_DSA_BCM_SF2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_LOOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_LANTIQ_GSWIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MT7530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MV88E6060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MV88E6XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MV88E6XXX_PTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NET_DSA_MSCC_FELIX policy<{'arm64': 'm', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NET_DSA_MSCC_SEVILLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_AR9331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_SJA1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_SJA1105_PTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NET_DSA_SJA1105_TAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NET_DSA_SJA1105_VL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NET_DSA_XRS700X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_XRS700X_MDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_QCA8K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_REALTEK_SMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_SMSC_LAN9303_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_SMSC_LAN9303_MDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_NET_DSA_LOOP flag + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers >> Broadcom BCM53xx managed switch support +CONFIG_B53 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B53_SPI_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B53_MDIO_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B53_MMAP_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B53_SRAB_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B53_SERDES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers >> Microchip KSZ8795 series switch support +CONFIG_NET_DSA_MICROCHIP_KSZ8795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers >> Microchip KSZ9477 series switch support +CONFIG_NET_DSA_MICROCHIP_KSZ9477 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support +CONFIG_ETHERNET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_VENDOR_ACTIONS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_OWL_EMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_VENDOR_ADAPTEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ADAPTEC_STARFIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_AGERE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ET131X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_ALACRITECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLICOSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_VENDOR_ALLWINNER policy<{'arm64': 'y'}> +CONFIG_SUN4I_EMAC policy<{'arm64': 'n'}> +CONFIG_NET_VENDOR_ALTEON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ACENIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ACENIC_OMIT_TIGON_I policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ALTERA_TSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_AMAZON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ENA_ETHERNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_XGENE policy<{'arm64': 'm'}> +CONFIG_NET_XGENE_V2 policy<{'arm64': 'm'}> +CONFIG_NET_VENDOR_AQUANTIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AQTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_ARC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EMAC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_VENDOR_BROCADE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BNA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_CADENCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MACB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MACB_USE_HWSTAMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MACB_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_CALXEDA_XGMAC policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_CISCO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ENIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_CORTINA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GEMINI_ETHERNET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CX_ECAT policy<{'amd64': 'm'}> +CONFIG_DM9000 policy<{'armhf': 'm'}> +CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL policy<{'armhf': 'n'}> +CONFIG_DNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_DEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_DLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DL2K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SUNDANCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SUNDANCE_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NET_VENDOR_EMULEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_EZCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_FARADAY policy<{'armhf': 'y'}> +CONFIG_FTMAC100 policy<{'armhf': 'm'}> +CONFIG_FTGMAC100 policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_FUJITSU policy<{'amd64': 'y'}> +CONFIG_PCMCIA_FMVJ18X policy<{'amd64': 'm'}> +CONFIG_NET_VENDOR_GOOGLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_GVE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_HUAWEI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HINIC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NET_VENDOR_MICROSOFT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MICROSOFT_MANA policy<{'amd64': 'm'}> +CONFIG_JME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_LITEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LITEX_LITEETH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_MEDIATEK policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_NET_VENDOR_MICROSEMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MSCC_OCELOT_SWITCH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_MYRI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MYRI10GE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MYRI10GE_DCA policy<{'amd64': 'y'}> +CONFIG_FEALNX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_NETERION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_S2IO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_VXGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_VXGE_DEBUG_TRACE_ALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NET_VENDOR_NETRONOME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_VENDOR_NI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NI_XGE_MANAGEMENT_ENET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_NVIDIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_FORCEDETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_OKI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ETHOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_PACKET_ENGINES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HAMACHI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_YELLOWFIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_PENSANDO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IONIC policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_RDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_R6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_RENESAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SH_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RAVB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_VENDOR_ROCKER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ROCKER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_SAMSUNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SXGBE_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_SEEQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_SOLARFLARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SFC_FALCON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SFC_FALCON_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NET_VENDOR_SILAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SC92031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_SIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SIS900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SIS190 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_SOCIONEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SNI_AVE policy<{'armhf': 'm'}> +CONFIG_SNI_NETSEC policy<{'arm64': 'm'}> +CONFIG_NET_VENDOR_STMICRO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_SYNOPSYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DWC_XLGMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DWC_XLGMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_VENDOR_TEHUTI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TEHUTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_VIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VIA_RHINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIA_RHINE_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIA_VELOCITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_WIZNET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_WIZNET_W5100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WIZNET_W5300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WIZNET_W5100_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_XIRCOM policy<{'amd64': 'y'}> +CONFIG_PCMCIA_XIRC2PS policy<{'amd64': 'm'}> +# +CONFIG_NET_VENDOR_EMULEX note + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> 3Com devices +CONFIG_NET_VENDOR_3COM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EL3 policy<{'amd64': 'm'}> +CONFIG_PCMCIA_3C574 policy<{'amd64': 'm'}> +CONFIG_PCMCIA_3C589 policy<{'amd64': 'm'}> +CONFIG_VORTEX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_TYPHOON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> AMD devices +CONFIG_NET_VENDOR_AMD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_AMD8111_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCNET32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_NMCLAN policy<{'amd64': 'm'}> +CONFIG_AMD_XGBE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_AMD_XGBE_DCB policy<{'amd64': 'y', 'arm64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Apple devices + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Atheros devices +CONFIG_NET_VENDOR_ATHEROS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATL2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATL1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATL1E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATL1C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ALX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Broadcom devices +CONFIG_NET_VENDOR_BROADCOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_B44 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BCM4908_ENET policy<{'arm64': 'm'}> +CONFIG_BCMGENET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BNX2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TIGON3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TIGON3_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BNX2X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BNX2X_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BGMAC_PLATFORM policy<{'arm64': 'y'}> +CONFIG_SYSTEMPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_TIGON3 flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Broadcom devices >> Broadcom NetXtreme-C/E support +CONFIG_BNXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BNXT_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BNXT_FLOWER_OFFLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BNXT_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BNXT_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Cavium ethernet drivers +CONFIG_NET_VENDOR_CAVIUM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_THUNDER_NIC_PF policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_THUNDER_NIC_VF policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_THUNDER_NIC_BGX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_THUNDER_NIC_RGX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_CAVIUM_PTP policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_LIQUIDIO policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_LIQUIDIO_VF policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Chelsio devices +CONFIG_NET_VENDOR_CHELSIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CHELSIO_T1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_T1_1G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_T3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_T4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_T4_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_T4_FCOE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_T4VF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Chelsio devices >> Chelsio Inline Crypto support +CONFIG_CHELSIO_INLINE_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CHELSIO_IPSEC_INLINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHELSIO_TLS_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Cirrus devices +CONFIG_NET_VENDOR_CIRRUS policy<{'amd64': 'y', 'armhf': 'y'}> +CONFIG_CS89x0_PLATFORM policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> DEC - Tulip devices +CONFIG_NET_TULIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DE2104X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DE2104X_DSL policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_DE4X5 policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_WINBOND_840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DM9102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ULI526X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_XIRCOM policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> DEC - Tulip devices >> DECchip Tulip (dc2114x) PCI support +CONFIG_TULIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TULIP_MWI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_TULIP_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_TULIP_NAPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_TULIP_NAPI flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Freescale devices +CONFIG_NET_VENDOR_FREESCALE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FEC policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_FSL_FMAN policy<{'arm64': 'y'}> +CONFIG_FSL_PQ_MDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_XGMAC_MDIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GIANFAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_DPAA_ETH policy<{'arm64': 'm'}> +CONFIG_FSL_DPAA2_ETH policy<{'arm64': 'm'}> +CONFIG_FSL_DPAA2_ETH_DCB policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA2_PTP_CLOCK policy<{'arm64': 'm'}> +CONFIG_FSL_DPAA2_SWITCH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_VF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_IERB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_MDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_PTP_CLOCK policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_QOS policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Freescale devices >> Freescale Ethernet Driver + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Hisilicon devices +CONFIG_NET_VENDOR_HISILICON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HIX5HD2_GMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HISI_FEMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HIP04_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HI13X1_GMAC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HNS_DSAF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS_ENET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3_HCLGE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3_DCB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HNS3_HCLGEVF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3_ENET policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> IBM devices +CONFIG_NET_VENDOR_IBM policy<{'ppc64el': 'y'}> +CONFIG_IBMVETH policy<{'ppc64el': 'm'}> +CONFIG_IBMVNIC policy<{'ppc64el': 'm'}> +# +CONFIG_IBMVNIC mark note + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> IBM devices >> IBM EMAC Ethernet support + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel (82586/82593/82596) devices +CONFIG_NET_VENDOR_I825XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel devices +CONFIG_NET_VENDOR_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_E100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_E1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_E1000E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_E1000E_HWTS policy<{'amd64': 'y'}> +CONFIG_IGB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IGB_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IGB_DCA policy<{'amd64': 'y'}> +CONFIG_IGBVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IXGB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IXGBEVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IXGBEVF_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_I40E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_I40E_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_I40EVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FM10K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IGC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel devices >> Intel(R) 10GbE PCI Express adapters support +CONFIG_IXGBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IXGBE_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IXGBE_DCA policy<{'amd64': 'y'}> +CONFIG_IXGBE_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IXGBE_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Marvell devices +CONFIG_NET_VENDOR_MARVELL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MV643XX_ETH policy<{'armhf': 'm'}> +CONFIG_MVMDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MVNETA_BM_ENABLE policy<{'armhf': 'n'}> +CONFIG_MVNETA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MVPP2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MVPP2_PTP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PXA168_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SKGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SKGE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SKGE_GENESIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SKY2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SKY2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_OCTEONTX2_AF policy<{'arm64': 'm'}> +CONFIG_NDC_DIS_DYNAMIC_CACHING policy<{'arm64': 'y'}> +CONFIG_OCTEONTX2_PF policy<{'arm64': 'm'}> +CONFIG_OCTEONTX2_VF policy<{'arm64': 'm'}> +CONFIG_PRESTERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PRESTERA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices +CONFIG_NET_VENDOR_MELLANOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX4_EN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLX4_EN_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX4_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX4_CORE_GEN2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLX5_FPGA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_FPGA_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLXFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLXBF_GIGE policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices >> Mellanox 5th generation network adapters (ConnectX series) Ethernet support +CONFIG_MLX5_CORE_EN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_EN_ARFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_EN_RXNFC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_MPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_ESWITCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_CLS_ACT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_TC_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_TC_SAMPLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE_EN_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE_IPOIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_EN_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_FPGA_TLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_TLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_SW_STEERING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MLX5_SF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices >> Mellanox Technologies Switch ASICs support +CONFIG_MLXSW_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLXSW_CORE_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MLXSW_CORE_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MLXSW_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MLXSW_MINIMAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MLXSW_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLXSW_SPECTRUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MLXSW_SPECTRUM_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Micrel devices +CONFIG_NET_VENDOR_MICREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KS8842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KS8851 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KS8851_MLL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KSZ884X_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Microchip devices +CONFIG_NET_VENDOR_MICROCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ENC28J60 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ENC28J60_WRITEVERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ENCX24J600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LAN743X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPARX5_SWITCH policy<{'amd64': '-', 'arm64': 'm', 'armhf': '-', 'ppc64el': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> National Semiconductor 8390 devices +CONFIG_NET_VENDOR_8390 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCMCIA_AXNET policy<{'amd64': 'm'}> +CONFIG_AX88796 policy<{'armhf': 'm'}> +CONFIG_AX88796_93CX6 policy<{'armhf': 'n'}> +CONFIG_NE2K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_PCNET policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> National Semiconductor devices +CONFIG_NET_VENDOR_NATSEMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_NATSEMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NS83820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Netronome(R) NFP4000/NFP6000 NIC driver +CONFIG_NFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NFP_APP_FLOWER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NFP_APP_ABM_NIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NFP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> QLogic devices +CONFIG_NET_VENDOR_QLOGIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_QLA3XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NETXEN_NIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QED_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_QEDE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> QLogic devices >> QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support +CONFIG_QLCNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QLCNIC_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_QLCNIC_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_QLCNIC_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Qualcomm devices +CONFIG_NET_VENDOR_QUALCOMM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_QCA7000_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCA7000_UART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QCOM_EMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RMNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Realtek devices +CONFIG_NET_VENDOR_REALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATP policy<{'amd64': 'm'}> +CONFIG_8139CP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_R8169 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Realtek devices >> RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support +CONFIG_8139TOO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_8139TOO_PIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_8139TOO_TUNE_TWISTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_8139TOO_8129 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_8139_OLD_RX_RESET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_8139TOO_TUNE_TWISTER flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> SMC (SMSC)/Western Digital devices +CONFIG_NET_VENDOR_SMSC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SMC91X policy<{'arm64': 'y', 'armhf': 'm'}> +CONFIG_PCMCIA_SMC91C92 policy<{'amd64': 'm'}> +CONFIG_EPIC100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SMC911X policy<{'armhf': 'm'}> +CONFIG_SMSC911X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SMSC9420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> STMicroelectronics Multi-Gigabit Ethernet driver +CONFIG_STMMAC_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STMMAC_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DWMAC_INTEL policy<{'amd64': 'm'}> +CONFIG_DWMAC_LOONGSON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_STMMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> STMicroelectronics Multi-Gigabit Ethernet driver >> STMMAC Platform bus support +CONFIG_STMMAC_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_DWC_QOS_ETH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_IPQ806X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_QCOM_ETHQOS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_SOCFPGA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_SUNXI policy<{'arm64': 'n'}> +CONFIG_DWMAC_SUN8I policy<{'arm64': 'm'}> +CONFIG_DWMAC_IMX8 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_DWMAC_INTEL_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DWMAC_VISCONTI policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> ServerEngines' 10Gbps NIC - BladeEngine +CONFIG_BE2NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BE2NET_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BE2NET_BE2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BE2NET_BE3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BE2NET_LANCER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BE2NET_SKYHAWK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Solarflare SFC9000/SFC9100/EF100-family support +CONFIG_SFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SFC_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SFC_MCDI_MON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SFC_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SFC_MCDI_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Sun devices +CONFIG_NET_VENDOR_SUN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HAPPYMEAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SUNGEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CASSINI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NIU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Texas Instruments (TI) devices +CONFIG_NET_VENDOR_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TI_DAVINCI_EMAC policy<{'armhf-generic': 'm'}> +CONFIG_TI_DAVINCI_MDIO policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_TI_CPSW_PHY_SEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_TI_CPSW policy<{'armhf': 'y'}> +CONFIG_TI_CPSW_SWITCHDEV policy<{'armhf': 'm'}> +CONFIG_TI_CPTS policy<{'armhf': 'y'}> +CONFIG_TI_K3_AM65_CPSW_NUSS policy<{'arm64': 'm'}> +CONFIG_TI_K3_AM65_CPSW_SWITCHDEV policy<{'arm64': 'y'}> +CONFIG_TI_K3_AM65_CPTS policy<{'arm64': 'm'}> +CONFIG_TI_AM65_CPSW_TAS policy<{'arm64': 'y'}> +CONFIG_TLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Toshiba devices + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> WIZnet interface mode +CONFIG_WIZNET_BUS_DIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_WIZNET_BUS_INDIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_WIZNET_BUS_ANY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Xilinx devices +CONFIG_NET_VENDOR_XILINX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XILINX_EMACLITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_XILINX_AXI_EMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XILINX_LL_TEMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> FDDI driver support +CONFIG_FDDI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DEFXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SKFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> IEEE 802.15.4 drivers +CONFIG_IEEE802154_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_FAKELB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_AT86RF230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_AT86RF230_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IEEE802154_MRF24J40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_CC2520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_ATUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_ADF7242 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_CA8210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_CA8210_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IEEE802154_MCR20A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> MDIO bus device drivers +CONFIG_MDIO_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MDIO_ASPEED policy<{'armhf': 'm'}> +CONFIG_MDIO_BCM_IPROC policy<{'arm64': 'n'}> +CONFIG_MDIO_BCM_UNIMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MDIO_BITBANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MDIO_BUS_MUX_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_MDIO_BUS_MUX_GPIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_BUS_MUX_MESON_G12A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDIO_BUS_MUX_MMIOREG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_BUS_MUX_MULTIPLEXER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_HISI_FEMAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_IPQ4019 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_IPQ8064 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_MSCC_MIIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MDIO_MVUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_OCTEON policy<{'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_MDIO_SUN4I policy<{'arm64': 'n'}> +CONFIG_MDIO_THUNDER policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MDIO_XGENE policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Network core driver support +CONFIG_NET_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BONDING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_WIREGUARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_WIREGUARD_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_EQUALIZER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MACVLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MACVTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPVLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPVTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VXLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GENEVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BAREUDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_GTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MACSEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETCONSOLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETCONSOLE_DYNAMIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NTB_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RIONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RIONET_TX_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128'}> +CONFIG_RIONET_RX_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128'}> +CONFIG_TUN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TUN_VNET_CROSS_LE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_VETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_VRF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VSOCKMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MHI_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_VIRTIO_NET note flag + +# Menu: Device Drivers >> Network device support >> Network core driver support >> Ethernet team driver support +CONFIG_NET_TEAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_BROADCAST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_ROUNDROBIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_RANDOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_LOADBALANCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> PCS device drivers +CONFIG_PCS_XPCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> PHY Device support and infrastructure +CONFIG_PHYLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_LED_TRIGGER_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FIXED_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_SFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AMD_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MESON_GXL_PHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ADIN_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AQUANTIA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AX88796B_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BROADCOM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BCM54140_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BCM7XXX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BCM84881_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_BCM87XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CICADA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CORTINA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DAVICOM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ICPLUS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LXT_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INTEL_XWAY_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LSI_ET1011C_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MARVELL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MARVELL_10G_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MARVELL_88X2222_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MAXLINEAR_GPHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEDIATEK_GE_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MICREL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MICROCHIP_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MICROCHIP_T1_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MICROSEMI_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MOTORCOMM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NATIONAL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NXP_C45_TJA11XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NXP_TJA11XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AT803X_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QSEMI_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_REALTEK_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RENESAS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ROCKCHIP_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SMSC_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_STE10XP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TERANETICS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DP83822_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DP83TC811_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DP83848_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DP83867_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DP83869_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VITESSE_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XILINX_GMII2RGMII policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> PPP (point-to-point protocol) support +CONFIG_PPP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PPP_BSDCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_DEFLATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PPP_MPPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_MULTILINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PPPOATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPPOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPPOL2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_ASYNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPP_SYNC_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> S/390 network device drivers +CONFIG_LCS policy<{'s390x': 'm'}> +CONFIG_CTCM policy<{'s390x': 'm'}> +CONFIG_NETIUCV policy<{'s390x': 'm'}> +CONFIG_SMSGIUCV policy<{'s390x': 'y'}> +CONFIG_SMSGIUCV_EVENT policy<{'s390x': 'm'}> +CONFIG_ISM policy<{'s390x': 'm'}> +# +CONFIG_ISM mark note + +# Menu: Device Drivers >> Network device support >> S/390 network device drivers >> Gigabit Ethernet device support +CONFIG_QETH policy<{'s390x': 'm'}> +CONFIG_QETH_L2 policy<{'s390x': 'm'}> +CONFIG_QETH_L3 policy<{'s390x': 'm'}> +CONFIG_QETH_OSX policy<{'s390x': 'y'}> + +# Menu: Device Drivers >> Network device support >> SLIP (serial line) support +CONFIG_SLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SLIP_COMPRESSED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SLIP_SMART policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SLIP_MODE_SLIP6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters +CONFIG_USB_NET_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CATC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_KAWETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PEGASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RTL8150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RTL8152 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LAN78XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IPHETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters >> Multi-purpose USB Networking Framework +CONFIG_USB_USBNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_AX8817X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_AX88179_178A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDCETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDC_EEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDC_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_HUAWEI_CDC_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CDC_MBIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_DM9601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SR9700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SR9800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SMSC75XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_SMSC95XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_GL620A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_NET1080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_PLUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_MCS7830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_RNDIS_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_ZAURUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CX82310_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_KALMIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_QMI_WWAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_INT51X1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDC_PHONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SIERRA_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_VL600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_CH9200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_AQC111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RTL8153_ECM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters >> Multi-purpose USB Networking Framework >> Simple USB Network Links (CDC Ethernet subset) +CONFIG_USB_NET_CDC_SUBSET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ALI_M5632 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_AN2720 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_BELKIN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ARMLINUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EPSON2888 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_KC2190 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wan interfaces support +CONFIG_WAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LANMEDIA policy<{'amd64': 'm'}> +CONFIG_SLIC_DS26522 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_LAPBETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wan interfaces support >> Generic HDLC layer +CONFIG_HDLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_RAW_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_CISCO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_FR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_PPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HDLC_X25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCI200SYN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WANXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PC300TOO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FARSYNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_UCC_HDLC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN +CONFIG_WLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WLAN_VENDOR_ADMTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ADM8211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WLAN_VENDOR_ATMEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCI_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_ATMEL policy<{'amd64': 'm'}> +CONFIG_AT76C50X_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WLAN_VENDOR_CISCO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_AIRO policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_AIRO_CS policy<{'amd64': 'm'}> +CONFIG_WLAN_VENDOR_MICROCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WILC1000_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WILC1000_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WILC1000_HW_OOB_INTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WLAN_VENDOR_RALINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WLAN_VENDOR_RSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WLAN_VENDOR_ST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CW1200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CW1200_WLAN_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CW1200_WLAN_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WLAN_VENDOR_ZYDAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ZD1201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ZD1211RW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ZD1211RW_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_WLAN_VENDOR_QUANTENNA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_QTNFMAC_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_RAYCS policy<{'amd64': 'm'}> +CONFIG_PCMCIA_WL3501 policy<{'amd64': 'm'}> +CONFIG_MAC80211_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET_RNDIS_WLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIRT_WIFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices +CONFIG_WLAN_VENDOR_ATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATH5K_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_BTCOEX_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_HTC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH9K_HTC_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_COMMON_SPECTRAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_AR5523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WCN36XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WCN36XX_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros 5xxx wireless cards support +CONFIG_ATH5K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH5K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATH5K_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros 802.11ac wireless cards support +CONFIG_ATH10K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH10K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH10K_AHB policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH10K_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH10K_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH10K_SNOC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ATH10K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATH10K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH10K_SPECTRAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH10K_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros 802.11n wireless cards support +CONFIG_ATH9K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH9K_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_AHB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_STATION_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_DYNACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATH9K_WOW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_RFKILL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_CHANNEL_CONTEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_PCOEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_PCI_NO_EEPROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH9K_HWRNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros mobile chipsets support +CONFIG_ATH6KL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH6KL_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH6KL_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH6KL_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATH6KL_TRACING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Linux Community AR9170 802.11n USB support +CONFIG_CARL9170 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CARL9170_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CARL9170_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CARL9170_HWRNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Qualcomm Technologies 802.11ax chipset support +CONFIG_ATH11K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH11K_AHB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH11K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH11K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATH11K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH11K_SPECTRAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH11K_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Wilocity 60g WiFi card wil6210 support +CONFIG_WIL6210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WIL6210_ISR_COR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WIL6210_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WIL6210_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices +CONFIG_WLAN_VENDOR_BROADCOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B43LEGACY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_BRCMSMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BRCM_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BRCMDBG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_BRCMDBG flag + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom 43xx wireless support (mac80211 stack) +CONFIG_B43 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_B43_SDIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_B43_PHY_G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43_PHY_N policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43_PHY_LP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43_PHY_HT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom 43xx wireless support (mac80211 stack) >> Supported bus types +CONFIG_B43_BUSES_BCMA_AND_SSB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43_BUSES_BCMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_B43_BUSES_SSB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom 43xx-legacy data transfer mode +CONFIG_B43LEGACY_DMA_AND_PIO_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_B43LEGACY_DMA_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_B43LEGACY_PIO_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom FullMAC WLAN driver +CONFIG_BRCMFMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BRCMFMAC_SDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BRCMFMAC_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BRCMFMAC_PCIE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices +CONFIG_WLAN_VENDOR_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IPW2100_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2100_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_LIBIPW_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_IWL4965 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IWL3945 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> Intel PRO/Wireless 2200BG and 2915ABG Network Connection +CONFIG_IPW2200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IPW2200_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_RADIOTAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_PROMISCUOUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_QOS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IPW2200_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) +CONFIG_IWLWIFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IWLDVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IWLMVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IWLWIFI_BCAST_FILTERING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) >> Debugging Options +CONFIG_IWLWIFI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_IWLWIFI_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IWLWIFI_DEVICE_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> iwl3945 / iwl4965 Debugging Options +CONFIG_IWLEGACY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_IWLEGACY_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices +CONFIG_WLAN_VENDOR_INTERSIL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices >> Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) +CONFIG_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HERMES_PRISM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_HERMES_CACHE_FW_ON_INIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PLX_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TMD_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NORTEL_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PCMCIA_HERMES policy<{'amd64': 'm'}> +CONFIG_PCMCIA_SPECTRUM policy<{'amd64': 'm'}> +CONFIG_ORINOCO_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices >> IEEE 802.11 for Host AP (Prism2/2.5/3 and WEP/TKIP/CCMP) +CONFIG_HOSTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HOSTAP_FIRMWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HOSTAP_FIRMWARE_NVRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HOSTAP_PLX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HOSTAP_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HOSTAP_CS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices >> Softmac Prism54 support +CONFIG_P54_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_P54_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_P54_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_P54_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_P54_SPI_DEFAULT_EEPROM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell devices +CONFIG_WLAN_VENDOR_MARVELL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LIBERTAS_THINFIRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_THINFIRM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_LIBERTAS_THINFIRM_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MWL8K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell devices >> Marvell 8xxx Libertas WLAN driver support +CONFIG_LIBERTAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_CS policy<{'amd64': 'm'}> +CONFIG_LIBERTAS_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIBERTAS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_LIBERTAS_MESH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell devices >> Marvell WiFi-Ex Driver +CONFIG_MWIFIEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MWIFIEX_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MWIFIEX_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MWIFIEX_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> MediaTek devices +CONFIG_WLAN_VENDOR_MEDIATEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MT7601U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT76x0U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT76x0E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT76x2E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT76x2U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT7603E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT7615E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT7622_WMAC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MT7663U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT7663S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT7915E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MT7921E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support +CONFIG_RT2X00 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT2400PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT2500PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT61PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT2500USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT73USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT2X00_LIB_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RT2X00_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support >> Ralink rt27xx/rt28xx/rt30xx (PCI/PCIe/PCMCIA) support +CONFIG_RT2800PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT2800PCI_RT33XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800PCI_RT35XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800PCI_RT53XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800PCI_RT3290 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support >> Ralink rt27xx/rt28xx/rt30xx (USB) support +CONFIG_RT2800USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RT2800USB_RT33XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT35XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT3573 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT53XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_RT55XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RT2800USB_UNKNOWN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices +CONFIG_WLAN_VENDOR_REALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTL8180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8187 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8XXXU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8XXXU_UNTESTED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices >> Realtek 802.11ac wireless chips support +CONFIG_RTW88 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW88_8822BE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW88_8822CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW88_8723DE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW88_8821CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW88_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTW88_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices >> Realtek 802.11ax wireless chips support +CONFIG_RTW89 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW89_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW89_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW89_8852AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTW89_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTW89_DEBUGMSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTW89_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices >> Realtek rtlwifi family of devices +CONFIG_RTL_CARDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192SE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192DE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8723AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8723BE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8188EE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192EE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8821AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192CU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTLWIFI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Redpine Signals Inc 91x WLAN driver support +CONFIG_RSI_91X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RSI_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RSI_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RSI_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RSI_COEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Texas Instrument devices +CONFIG_WLAN_VENDOR_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_WL1251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WL1251_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WL1251_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WL12XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WL18XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WLCORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WLCORE_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WLCORE_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WILINK_PLATFORM_DATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless WAN + +# Menu: Device Drivers >> Network device support >> Wireless WAN >> WWAN Driver Core +CONFIG_WWAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_WWAN_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MHI_WWAN_CTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MHI_WWAN_MBIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RPMSG_WWAN_CTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IOSM policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Non-Transparent Bridge support +CONFIG_NTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NTB_MSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NTB_AMD policy<{'amd64': 'n'}> +CONFIG_NTB_IDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_INTEL policy<{'amd64': 'm'}> +CONFIG_NTB_EPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_SWITCHTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_PINGPONG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_TOOL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_PERF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NTB_MSI_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NTB_TRANSPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> On-Chip Interconnect management support +CONFIG_INTERCONNECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_INTERCONNECT_QCOM_SC7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SC7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SC8180X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SDM845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SDX55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SM8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SM8350 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_SAMSUNG policy<{'armhf': 'y'}> +CONFIG_INTERCONNECT_EXYNOS policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> On-Chip Interconnect management support >> Qualcomm Network-on-Chip interconnect drivers +CONFIG_INTERCONNECT_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_INTERCONNECT_QCOM_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_MSM8939 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_MSM8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_OSM_L3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_QCS404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SDM660 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> On-Chip Interconnect management support >> i.MX interconnect drivers +CONFIG_INTERCONNECT_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_INTERCONNECT_IMX8MM policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_INTERCONNECT_IMX8MN policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_INTERCONNECT_IMX8MQ policy<{'arm64': 'm', 'armhf-generic': 'm'}> + +# Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support +CONFIG_PCCARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CARDBUS policy<{'amd64': 'y', 'arm64': 'y'}> + +# Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support >> 16-bit PCMCIA support +CONFIG_PCMCIA policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_PCMCIA_LOAD_CIS policy<{'amd64': 'y'}> +CONFIG_PD6729 policy<{'amd64': 'm'}> +CONFIG_I82092 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support >> CardBus yenta-compatible bridge support +CONFIG_YENTA policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_YENTA_O2 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_YENTA_RICOH policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_YENTA_TI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_YENTA_ENE_TUNE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_YENTA_TOSHIBA policy<{'amd64': 'y', 'arm64': 'y'}> + +# Menu: Device Drivers >> PCI support +CONFIG_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIEASPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIE_PTM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_MSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_QUIRKS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PCI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCI_REALLOC_ENABLE_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PCI_PF_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XEN_PCIDEV_FRONTEND policy<{'amd64': 'm'}> +CONFIG_PCI_IOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_PRI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PCI_PASID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PCI_P2PDMA policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n'}> +CONFIG_PCI_HYPERV policy<{'amd64': 'm'}> +CONFIG_PCIEPORTBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_PCIE policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +# +CONFIG_PCI_P2PDMA flag +CONFIG_PCIEPORTBUS mark note +CONFIG_HOTPLUG_PCI_PCIE mark note + +# Menu: Device Drivers >> PCI support >> Default ASPM policy +CONFIG_PCIEASPM_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIEASPM_POWERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIEASPM_POWER_SUPERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIEASPM_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_PCIEASPM_DEFAULT note + +# Menu: Device Drivers >> PCI support >> PCI Endpoint + +# Menu: Device Drivers >> PCI support >> PCI Endpoint >> PCI Endpoint Support +CONFIG_PCI_ENDPOINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_ENDPOINT_CONFIGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_EPF_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCI_EPF_NTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> PCI support >> PCI Express Advanced Error Reporting support +CONFIG_PCIEAER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> +CONFIG_PCIEAER_INJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_PCIE_ECRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_PCIE_DPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> +CONFIG_PCIE_EDR policy<{'amd64': 'n', 'arm64': 'n'}> +# +CONFIG_PCIEAER_INJECT flag + +# Menu: Device Drivers >> PCI support >> PCI Express hierarchy optimization setting +CONFIG_PCIE_BUS_TUNE_OFF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIE_BUS_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIE_BUS_SAFE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIE_BUS_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIE_BUS_PEER2PEER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers +CONFIG_PCI_MVEBU policy<{'armhf': 'y'}> +CONFIG_PCI_AARDVARK policy<{'arm64': 'y'}> +CONFIG_PCIE_XILINX_NWL policy<{'arm64': 'y'}> +CONFIG_PCI_FTPCI100 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCI_IXP4XX policy<{'armhf': '-'}> +CONFIG_PCI_TEGRA policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_PCI_RCAR_GEN2 policy<{'armhf': 'y'}> +CONFIG_PCIE_RCAR_HOST policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_RCAR_EP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_HOST_GENERIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCIE_XILINX policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCIE_XILINX_CPM policy<{'arm64': 'y'}> +CONFIG_PCI_XGENE policy<{'arm64': 'y'}> +CONFIG_PCI_XGENE_MSI policy<{'arm64': 'y'}> +CONFIG_PCI_V3_SEMI policy<{'armhf': 'y'}> +CONFIG_PCIE_IPROC_PLATFORM policy<{'arm64': 'm'}> +CONFIG_PCIE_IPROC_MSI policy<{'arm64': 'y'}> +CONFIG_PCIE_ALTERA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_ALTERA_MSI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_HOST_THUNDER_PEM policy<{'arm64': 'y'}> +CONFIG_PCI_HOST_THUNDER_ECAM policy<{'arm64': 'y'}> +CONFIG_PCIE_ROCKCHIP_HOST policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PCIE_ROCKCHIP_EP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_MEDIATEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_MEDIATEK_GEN3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VMD policy<{'amd64': 'm'}> +CONFIG_PCIE_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_PCI_HYPERV_INTERFACE policy<{'amd64': 'm'}> +CONFIG_PCIE_MICROCHIP_HOST policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCIE_HISI_ERR policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers >> Cadence PCIe controllers support +CONFIG_PCIE_CADENCE_PLAT_HOST policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCIE_CADENCE_PLAT_EP policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCI_J721E_HOST policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PCI_J721E_EP policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers >> DesignWare PCI Core Support +CONFIG_PCI_DRA7XX_HOST policy<{'armhf': 'y'}> +CONFIG_PCI_DRA7XX_EP policy<{'armhf': 'y'}> +CONFIG_PCIE_DW_PLAT_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCIE_DW_PLAT_EP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCI_EXYNOS policy<{'armhf': 'm'}> +CONFIG_PCI_IMX6 policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_PCI_KEYSTONE_HOST policy<{'arm64': 'y'}> +CONFIG_PCI_KEYSTONE_EP policy<{'arm64': 'y'}> +CONFIG_PCI_LAYERSCAPE policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_PCI_LAYERSCAPE_EP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_HISI policy<{'arm64': 'y'}> +CONFIG_PCIE_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_ARMADA_8K policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_ROCKCHIP_DW_HOST policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_KEEMBAY_HOST policy<{'arm64': 'y'}> +CONFIG_PCIE_KEEMBAY_EP policy<{'arm64': 'y'}> +CONFIG_PCIE_KIRIN policy<{'arm64': 'y'}> +CONFIG_PCIE_HISI_STB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_MESON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PCIE_TEGRA194_HOST policy<{'arm64': 'm'}> +CONFIG_PCIE_TEGRA194_EP policy<{'arm64': 'm'}> +CONFIG_PCIE_VISCONTI_HOST policy<{'arm64': 'y'}> +CONFIG_PCIE_UNIPHIER policy<{'armhf': 'y'}> +CONFIG_PCIE_UNIPHIER_EP policy<{'armhf': 'y'}> +CONFIG_PCIE_AL policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers >> Mobiveil PCIe Core Support +CONFIG_PCIE_MOBIVEIL_PLAT policy<{'arm64': 'n'}> +CONFIG_PCIE_LAYERSCAPE_GEN4 policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> PCI support >> PCI switch controller drivers +CONFIG_PCI_SW_SWITCHTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> PCI support >> Support for PCI Hotplug +CONFIG_HOTPLUG_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_ACPI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HOTPLUG_PCI_ACPI_IBM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HOTPLUG_PCI_CPCI policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_CPCI_ZT5550 policy<{'amd64': 'm'}> +CONFIG_HOTPLUG_PCI_CPCI_GENERIC policy<{'amd64': 'm'}> +CONFIG_HOTPLUG_PCI_SHPC policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HOTPLUG_PCI_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_RPA policy<{'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_RPA_DLPAR policy<{'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_S390 policy<{'s390x': 'y'}> +# +CONFIG_HOTPLUG_PCI_SHPC note + +# Menu: Device Drivers >> PHY Subsystem +CONFIG_GENERIC_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PHY_XGENE policy<{'arm64': 'y'}> +CONFIG_USB_LGM_PHY policy<{'amd64': 'm'}> +CONFIG_PHY_CAN_TRANSCEIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_SUN4I_USB policy<{'arm64': 'm'}> +CONFIG_PHY_SUN6I_MIPI_DPHY policy<{'arm64': 'm'}> +CONFIG_PHY_SUN9I_USB policy<{'arm64': 'n'}> +CONFIG_PHY_SUN50I_USB3 policy<{'arm64': 'm'}> +CONFIG_PHY_MESON8B_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_GXL_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_G12A_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_G12A_USB3_PCIE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_AXG_PCIE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PHY_MESON_AXG_MIPI_DPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_BCM_SR_USB policy<{'arm64': 'm'}> +CONFIG_BCM_KONA_USB2_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_BCM_NS_USB2 policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_NS_USB3 policy<{'arm64': 'm'}> +CONFIG_PHY_NS2_PCIE policy<{'arm64': 'y'}> +CONFIG_PHY_NS2_USB_DRD policy<{'arm64': 'm'}> +CONFIG_PHY_BRCM_SATA policy<{'arm64': 'y'}> +CONFIG_PHY_BRCM_USB policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_SR_PCIE policy<{'arm64': 'm'}> +CONFIG_PHY_CADENCE_TORRENT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_CADENCE_DPHY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_CADENCE_SIERRA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_CADENCE_SALVO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_FSL_IMX8MQ_USB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_MIXEL_MIPI_DPHY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_HI6220_USB policy<{'arm64': 'm'}> +CONFIG_PHY_HI3660_USB policy<{'arm64': 'm'}> +CONFIG_PHY_HI3670_USB policy<{'arm64': 'm'}> +CONFIG_PHY_HISTB_COMBPHY policy<{'arm64': 'm'}> +CONFIG_PHY_HISI_INNO_USB2 policy<{'arm64': 'm'}> +CONFIG_PHY_HIX5HD2_SATA policy<{'armhf': 'm'}> +CONFIG_ARMADA375_USBCLUSTER_PHY policy<{'armhf': 'y'}> +CONFIG_PHY_BERLIN_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_BERLIN_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_A3700_COMPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_A3700_UTMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_A38X_COMPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_CP110_COMPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_CP110_UTMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_PXA_28NM_HSIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_PXA_28NM_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHY_MTK_TPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_UFS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_XSPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_MIPI_DSI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_SPARX5_SERDES policy<{'amd64': '-', 'arm64': 'm', 'armhf': '-', 'ppc64el': '-'}> +CONFIG_PHY_CPCAP_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_MAPPHONE_MDM6600 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_OCELOT_SERDES policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_QCOM_APQ8064_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ4019_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ806X_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_PCIE2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_QMP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_QUSB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_USB_HS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_USB_HSIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_QCOM_USB_HS_28NM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_USB_SS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ806X_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN3_PCIE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN3_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN3_USB3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_DP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_DPHY_RX0 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_EMMC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_PCIE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_TYPEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_EXYNOS_DP_VIDEO policy<{'armhf': 'y'}> +CONFIG_PHY_EXYNOS_MIPI_VIDEO policy<{'armhf': 'y'}> +CONFIG_PHY_EXYNOS_PCIE policy<{'armhf': 'y'}> +CONFIG_PHY_SAMSUNG_UFS policy<{'armhf': 'm'}> +CONFIG_PHY_SAMSUNG_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PHY_EXYNOS5_USBDRD policy<{'armhf': 'm'}> +CONFIG_PHY_EXYNOS5250_SATA policy<{'armhf': 'y'}> +CONFIG_PHY_UNIPHIER_USB2 policy<{'armhf': 'm'}> +CONFIG_PHY_UNIPHIER_USB3 policy<{'armhf': 'm'}> +CONFIG_PHY_UNIPHIER_PCIE policy<{'armhf': 'm'}> +CONFIG_PHY_UNIPHIER_AHCI policy<{'armhf': 'm'}> +CONFIG_PHY_TEGRA_XUSB policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PHY_TEGRA194_P2U policy<{'arm64': 'm'}> +CONFIG_PHY_DM816X_USB policy<{'armhf': 'm'}> +CONFIG_PHY_AM654_SERDES policy<{'arm64': 'm'}> +CONFIG_PHY_J721E_WIZ policy<{'arm64': 'm'}> +CONFIG_OMAP_CONTROL_PHY policy<{'armhf': 'm'}> +CONFIG_OMAP_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TI_PIPE3 policy<{'armhf': 'm'}> +CONFIG_PHY_TUSB1210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TWL4030_USB policy<{'armhf': 'm'}> +CONFIG_PHY_INTEL_KEEMBAY_EMMC policy<{'arm64': 'm'}> +CONFIG_PHY_INTEL_KEEMBAY_USB policy<{'arm64': 'm'}> +CONFIG_PHY_INTEL_LGM_EMMC policy<{'amd64': 'm'}> +CONFIG_PHY_XILINX_ZYNQMP policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> PPS support +CONFIG_PPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_PPS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PPS_CLIENT_KTIMER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PPS_CLIENT_LDISC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PPS_CLIENT_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PPS_CLIENT_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_PPS_CLIENT_KTIMER flag +CONFIG_PPS flag + +# Menu: Device Drivers >> PTP clock support + +# Menu: Device Drivers >> PTP clock support >> PTP clock support +CONFIG_PTP_1588_CLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_DTE policy<{'arm64': 'm'}> +CONFIG_PTP_1588_CLOCK_QORIQ policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DP83640_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_INES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_KVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_PTP_1588_CLOCK_IDT82P33 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PTP_1588_CLOCK_IDTCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_VMW policy<{'amd64': 'm'}> +CONFIG_PTP_1588_CLOCK_OCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Parallel port support +CONFIG_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PARPORT_AX88796 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARPORT_1284 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Parallel port support >> PC-style hardware +CONFIG_PARPORT_PC policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARPORT_SERIAL policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PARPORT_PC_FIFO policy<{'amd64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PARPORT_PC_SUPERIO policy<{'amd64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PARPORT_PC_PCMCIA policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Performance monitor support +CONFIG_ARM_CCI_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCI400_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCI5xx_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CMN policy<{'arm64': 'm'}> +CONFIG_ARM_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SMMU_V3_PMU policy<{'arm64': 'm'}> +CONFIG_ARM_DSU_PMU policy<{'arm64': 'm'}> +CONFIG_FSL_IMX8_DDR_PMU policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_QCOM_L2_PMU policy<{'arm64': 'y'}> +CONFIG_QCOM_L3_PMU policy<{'arm64': 'y'}> +CONFIG_THUNDERX2_PMU policy<{'arm64': 'm'}> +CONFIG_XGENE_PMU policy<{'arm64': 'y'}> +CONFIG_ARM_SPE_PMU policy<{'arm64': 'm'}> +CONFIG_ARM_DMC620_PMU policy<{'arm64': 'm'}> +CONFIG_HISI_PMU policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Pin controllers +CONFIG_PINCTRL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PINMUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCONF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEBUG_PINCTRL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PINCTRL_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCTRL_AXP209 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_AMD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PINCTRL_BM1880 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_MCP23S08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_SINGLE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCTRL_SX150X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCTRL_STMFX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_MAX77620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_PALMAS policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCTRL_ZYNQMP policy<{'arm64': 'm'}> +CONFIG_PINCTRL_RK805 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_OCELOT policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCTRL_MICROCHIP_SGPIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PINCTRL_KEEMBAY policy<{'arm64': 'm'}> +CONFIG_PINCTRL_ASPEED_G6 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_BCM2835 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IPROC_GPIO policy<{'arm64': 'y'}> +CONFIG_PINCTRL_NS2_MUX policy<{'arm64': 'y'}> +CONFIG_PINCTRL_AS370 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_BERLIN_BG4CT policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_IMX50 policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX51 policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX6Q policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX6SL policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX6SLL policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX6SX policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX6UL policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX7D policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX7ULP policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX8MM policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX8MN policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX8MP policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX8MQ policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_PINCTRL_IMX8QM policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IMX8QXP policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IMX8DXL policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IMX8ULP policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PINCTRL_VF610 policy<{'armhf-generic': 'y'}> +CONFIG_PINCTRL_BAYTRAIL policy<{'amd64': 'y'}> +CONFIG_PINCTRL_CHERRYVIEW policy<{'amd64': 'y'}> +CONFIG_PINCTRL_LYNXPOINT policy<{'amd64': 'm'}> +CONFIG_PINCTRL_ALDERLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_BROXTON policy<{'amd64': 'm'}> +CONFIG_PINCTRL_CANNONLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_CEDARFORK policy<{'amd64': 'm'}> +CONFIG_PINCTRL_DENVERTON policy<{'amd64': 'm'}> +CONFIG_PINCTRL_ELKHARTLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_EMMITSBURG policy<{'amd64': 'm'}> +CONFIG_PINCTRL_GEMINILAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_ICELAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_JASPERLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_LAKEFIELD policy<{'amd64': 'm'}> +CONFIG_PINCTRL_LEWISBURG policy<{'amd64': 'm'}> +CONFIG_PINCTRL_SUNRISEPOINT policy<{'amd64': 'm'}> +CONFIG_PINCTRL_TIGERLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_NPCM7XX policy<{'armhf': 'y'}> +CONFIG_PINCTRL_QCOM_SPMI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QCOM_SSBI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_LPASS_LPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_EXYNOS policy<{'armhf': 'y'}> +CONFIG_PINCTRL_EXYNOS_ARM policy<{'armhf': 'y'}> +CONFIG_PINCTRL_SPRD_SC9860 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN4I_A10 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN5I policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN6I_A31 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN6I_A31_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_A23 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_A33 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_A83T policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_A83T_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_A23_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_H3 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_H3_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN8I_V3S policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN9I_A80 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN9I_A80_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_A64 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_A64_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_A100 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_A100_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_H5 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_H6 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_H6_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_H616 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN50I_H616_R policy<{'arm64': 'y'}> +CONFIG_PINCTRL_TI_IODELAY policy<{'armhf': 'y'}> +CONFIG_PINCTRL_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PINCTRL_TMPV7700 policy<{'arm64': 'y'}> +# +CONFIG_PINCTRL_CHERRYVIEW mark note + +# Menu: Device Drivers >> Pin controllers >> Actions Semi OWL pinctrl driver +CONFIG_PINCTRL_OWL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_S500 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_S700 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_S900 policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Pin controllers >> Amlogic SoC pinctrl drivers +CONFIG_PINCTRL_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_MESON8 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MESON8B policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MESON_GXBB policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_GXL policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_AXG policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_G12A policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_A1 policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Pin controllers >> MediaTek pinctrl drivers +CONFIG_EINT_MTK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_MT2701 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT7623 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT7629 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT8135 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT8127 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT2712 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6765 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6779 policy<{'arm64': 'm'}> +CONFIG_PINCTRL_MT6797 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT7622 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8167 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8173 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8183 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8192 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8195 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8365 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8516 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6397 policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_PINCTRL_MT8135 flag +CONFIG_PINCTRL_MT8127 flag + +# Menu: Device Drivers >> Pin controllers >> Qualcomm core pin controller driver +CONFIG_PINCTRL_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_APQ8064 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_APQ8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ4019 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ8064 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ8074 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ6018 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8226 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MDM9607 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MDM9615 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8X74 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8953 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8976 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8994 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QCS404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QDF2XXX policy<{'arm64': 'm'}> +CONFIG_PINCTRL_SC7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SC7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SC8180X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SDM660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SDM845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SDX55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM6115 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM6125 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM8350 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Pin controllers >> Ralink pinctrl drivers + +# Menu: Device Drivers >> Pin controllers >> Renesas pinctrl drivers +CONFIG_PINCTRL_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_PFC_EMEV2 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77995 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7794 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77990 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7779 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7790 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77950 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77951 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7778 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7793 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7791 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77965 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77960 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77961 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7792 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77980 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77970 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7740 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_RZA1 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_RZA2 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_RZG2L policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77470 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7745 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7742 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7743 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7744 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A774B1 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_RZN1 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_SH73A0 policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Pin controllers >> UniPhier SoC pinctrl drivers +CONFIG_PINCTRL_UNIPHIER policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD4 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_PRO4 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_SLD8 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_PRO5 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_PXS2 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD6B policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD11 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_LD20 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_UNIPHIER_PXS3 policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Platform support for Chrome hardware +CONFIG_CHROME_PLATFORMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_CHROMEOS_LAPTOP policy<{'amd64': 'm'}> +CONFIG_CHROMEOS_PSTORE policy<{'amd64': 'm'}> +CONFIG_CHROMEOS_TBMC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CROS_KBD_LED_BACKLIGHT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CROS_EC_CHARDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_LIGHTBAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_VBC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_SENSORHUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_TYPEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_USBPD_LOGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_USBPD_NOTIFY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Platform support for Chrome hardware >> ChromeOS Embedded Controller +CONFIG_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_RPMSG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_ISHTP policy<{'amd64': 'm'}> +CONFIG_CROS_EC_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_LPC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Platform support for Chrome hardware >> ChromeOS Embedded Controller >> ChromeOS Wilco Embedded Controller +CONFIG_WILCO_EC policy<{'amd64': 'm'}> +CONFIG_WILCO_EC_DEBUGFS policy<{'amd64': 'm'}> +CONFIG_WILCO_EC_EVENTS policy<{'amd64': 'm'}> +CONFIG_WILCO_EC_TELEMETRY policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Platform support for Goldfish virtual devices +CONFIG_GOLDFISH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Platform support for Mellanox hardware +CONFIG_MELLANOX_PLATFORM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_MLXREG_HOTPLUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_MLXREG_IO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_MLXBF_TMFIFO policy<{'arm64': 'm'}> +CONFIG_MLXBF_BOOTCTL policy<{'arm64': 'm'}> +CONFIG_MLXBF_PMC policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Platform support for OLPC XO 1.75 hardware + +# Menu: Device Drivers >> Plug and Play support +CONFIG_PNP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PNP_DEBUG_MESSAGES policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: Device Drivers >> Power supply class support +CONFIG_POWER_SUPPLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_POWER_SUPPLY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_POWER_SUPPLY_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PDA_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GENERIC_ADC_BATTERY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAX8925_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WM831X_BACKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WM831X_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WM8350_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TEST_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_ADP5061 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_ACT8945A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_CW2015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DS2782 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MANAGER_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_BQ27XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_BQ27XXX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_BQ27XXX_HDQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_BATTERY_DA9030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AXP20X_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AXP288_CHARGER policy<{'amd64': 'm'}> +CONFIG_AXP288_FUEL_GAUGE policy<{'amd64': 'm'}> +CONFIG_BATTERY_MAX17040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_MAX17042 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_MAX1721X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_RX51 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_CPCAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_ISP1704 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX8903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_LP8727 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MANAGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CHARGER_LT3651 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_LTC4162L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_DETECTOR_MAX14656 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MP2629 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_QCOM_SMBB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_BQ2415X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ24190 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ24257 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ24735 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ2515X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ25890 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ25980 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BQ256XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_SMB347 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_TPS65090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_TPS65217 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BATTERY_GAUGE_LTC2941 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_GOLDFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_RT9455 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_CROS_USBPD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_CROS_PCHG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_SC2731 policy<{'arm64': 'm'}> +CONFIG_FUEL_GAUGE_SC27XX policy<{'arm64': 'm'}> +CONFIG_CHARGER_UCS1002 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_BD99954 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CHARGER_WILCO policy<{'amd64': 'm'}> +CONFIG_RN5T618_POWER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BATTERY_ACER_A500 policy<{'armhf-generic': 'm'}> +CONFIG_BATTERY_SURFACE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CHARGER_SURFACE policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> Pulse-Width Modulation (PWM) Support +CONFIG_PWM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PWM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PWM_ATMEL_HLCDC_PWM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_ATMEL_TCB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_PWM_BCM2835 policy<{'arm64': 'm'}> +CONFIG_PWM_BERLIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_PWM_CRC policy<{'amd64': 'y'}> +CONFIG_PWM_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_DWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_FSL_FTM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_HIBVT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_IMX1 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PWM_IMX27 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PWM_IMX_TPM policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PWM_IQS620A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_KEEMBAY policy<{'arm64': 'm'}> +CONFIG_PWM_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_LPSS_PCI policy<{'amd64': 'y'}> +CONFIG_PWM_LPSS_PLATFORM policy<{'amd64': 'y'}> +CONFIG_PWM_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_MTK_DISP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_NTXEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_OMAP_DMTIMER policy<{'armhf': 'm'}> +CONFIG_PWM_PCA9685 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_RASPBERRYPI_POE policy<{'arm64': 'm'}> +CONFIG_PWM_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_RENESAS_TPU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_SAMSUNG policy<{'armhf': 'm'}> +CONFIG_PWM_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_PWM_SPRD policy<{'arm64': 'm'}> +CONFIG_PWM_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PWM_SUN4I policy<{'arm64': 'm'}> +CONFIG_PWM_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PWM_TIECAP policy<{'arm64': 'm', 'armhf-generic': 'm', 'armhf-generic-lpae': 'n'}> +CONFIG_PWM_TIEHRPWM policy<{'arm64': 'm', 'armhf-generic': 'm', 'armhf-generic-lpae': 'n'}> +CONFIG_PWM_TWL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_TWL_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PWM_VISCONTI policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> RapidIO support +CONFIG_RAPIDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_RAPIDIO_TSI721 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_RAPIDIO_DISC_TIMEOUT policy<{'amd64': '30', 'arm64': '30', 'armhf': '30', 'ppc64el': '30'}> +CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RAPIDIO_DMA_ENGINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RAPIDIO_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RAPIDIO_CHMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_MPORT_CDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> RapidIO support >> Enumeration method +CONFIG_RAPIDIO_ENUM_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> RapidIO support >> RapidIO Switch drivers +CONFIG_RAPIDIO_TSI57X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_CPS_XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_TSI568 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_CPS_GEN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RAPIDIO_RXS_GEN3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Real Time Clock +CONFIG_RTC_CLASS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_HCTOSYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_HCTOSYS_DEVICE policy<{'amd64': '"rtc0"', 'arm64': '"rtc0"', 'armhf': '"rtc0"', 'ppc64el': '"rtc0"'}> +CONFIG_RTC_SYSTOHC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_SYSTOHC_DEVICE policy<{'amd64': '"rtc0"', 'arm64': '"rtc0"', 'armhf': '"rtc0"', 'ppc64el': '"rtc0"'}> +CONFIG_RTC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_NVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_PROC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_INTF_DEV_UIE_EMUL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_88PM80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ABB5ZES3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ABEOZ9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ABX80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_AS3722 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1307 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1307_CENTURY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_DS1374 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1374_WDT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_DS1672 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_HYM8563 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX6900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RS5C372 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ISL1208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ISL12022 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_ISL12026 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_X1205 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF85063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF85363 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF8563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF8583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T80_WDT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_BD70528 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_BQ32K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TWL4030 policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TPS6586X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TPS65910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_TPS80031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RC5T583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RC5T619 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_S35390A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_FM3130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX8010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX8581 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX8025 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_EM3027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RV3028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RV3032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RV8803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_S5M policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_SD3078 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M41T94 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1343 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1347 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1390 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX6916 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_R9701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RX4581 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RS5C348 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MAX6902 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF2123 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MCP795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS3232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS3232_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_PCF2127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RV3029C2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RV3029_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_RX6110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_CMOS policy<{'amd64': 'y', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1286 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1511 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1553 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1685_FAMILY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1742 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS2404 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DA9063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_EFI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RTC_DRV_STK17TA8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M48T86 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M48T35 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_M48T59 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MSM6242 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_BQ4802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RP5C01 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_V3020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_SC27XX policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_OPAL policy<{'ppc64el': 'y'}> +CONFIG_RTC_DRV_ZYNQMP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_NTXEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_IMXDI policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RTC_DRV_FSL_FTM_ALARM policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_MESON policy<{'armhf': 'm'}> +CONFIG_RTC_DRV_MESON_VRTC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_OMAP policy<{'armhf': 'y'}> +CONFIG_RTC_DRV_S3C policy<{'armhf': 'y'}> +CONFIG_RTC_DRV_SH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_PL030 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_PL031 policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_RTC_DRV_GENERIC policy<{'ppc64el': 'y'}> +CONFIG_RTC_DRV_SUN6I policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_MV policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RTC_DRV_ARMADA38X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_FTRTC010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MC13XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PM8XXX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RTC_DRV_MXC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RTC_DRV_MXC_V2 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RTC_DRV_SNVS policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RTC_DRV_IMX_SC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RTC_DRV_MT2712 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_MT7622 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_XGENE policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_R7301 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_RTD119X policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RTC_DRV_ASPEED policy<{'armhf': 'm'}> +CONFIG_RTC_DRV_HID_SENSOR_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_GOLDFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_WILCO_EC policy<{'amd64': 'm'}> +# +CONFIG_RTC_DRV_TEST flag +CONFIG_RTC_DRV_CMOS note +CONFIG_RTC_DRV_EFI note +CONFIG_RTC_DRV_TWL4030 note + +# Menu: Device Drivers >> Real Time Clock >> Subtype +CONFIG_RTC_DRV_DS1685 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTC_DRV_DS1689 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_DS17285 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_DS17485 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_RTC_DRV_DS17885 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Reliability, Availability and Serviceability (RAS) features +CONFIG_RAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RAS_CEC policy<{'amd64': 'y'}> +CONFIG_RAS_CEC_DEBUG policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Remote Controller support +CONFIG_RC_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_RC_MAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LIRC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Remote Controller support >> Remote Controller devices +CONFIG_RC_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RC_ATI_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_ENE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_HIX5HD2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_IMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_IMON_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_MCEUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_ITE_CIR policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_FINTEK policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IR_MESON_TX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IR_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IR_NUVOTON policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_REDRAT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_STREAMZAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_WINBOND_CIR policy<{'amd64': 'm'}> +CONFIG_IR_IGORPLUGUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_IGUANA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_TTUSBIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_RX51 policy<{'armhf': 'm'}> +CONFIG_RC_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_GPIO_CIR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_GPIO_TX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_PWM_TX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SUNXI policy<{'arm64': 'm'}> +CONFIG_IR_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SERIAL_TRANSMITTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IR_SIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RC_XBOX_DVD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_TOY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Remote Controller support >> Remote Controller devices >> Hardware decoder + +# Menu: Device Drivers >> Remote Controller support >> Remote controller decoders +CONFIG_RC_DECODERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IR_NEC_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_RC5_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_RC6_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_JVC_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SONY_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SANYO_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_SHARP_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_MCE_KBD_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_XMP_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_IMON_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IR_RCMM_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Remoteproc drivers + +# Menu: Device Drivers >> Remoteproc drivers >> Support for Remote Processor subsystem +CONFIG_REMOTEPROC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_REMOTEPROC_CDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IMX_REMOTEPROC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_MTK_SCP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OMAP_REMOTEPROC policy<{'armhf': 'm'}> +CONFIG_OMAP_REMOTEPROC_WATCHDOG policy<{'armhf': 'n'}> +CONFIG_WKUP_M3_RPROC policy<{'armhf-generic': 'm'}> +CONFIG_PRU_REMOTEPROC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_ADSP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_MSS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_PAS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_WCSS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SYSMON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_WCNSS_PIL policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_TI_K3_DSP_REMOTEPROC policy<{'arm64': 'm'}> +CONFIG_TI_K3_R5_REMOTEPROC policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Reset Controller Support +CONFIG_RESET_CONTROLLER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_RESET_A10SR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_BERLIN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_RESET_BRCMSTB_RESCAL policy<{'arm64': 'y'}> +CONFIG_RESET_IMX7 policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_RESET_MCHP_SPARX5 policy<{'arm64': 'y'}> +CONFIG_RESET_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_MESON_AUDIO_ARB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_NPCM policy<{'armhf': 'y'}> +CONFIG_RESET_QCOM_AOSS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_QCOM_PDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_RASPBERRYPI policy<{'arm64': 'm'}> +CONFIG_RESET_RZG2L_USBPHY_CTRL policy<{'arm64': 'm'}> +CONFIG_RESET_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_SIMPLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_SOCFPGA policy<{'armhf': 'y'}> +CONFIG_RESET_SUNXI policy<{'arm64': 'y'}> +CONFIG_RESET_TI_SCI policy<{'arm64': 'm'}> +CONFIG_RESET_TI_SYSCON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RESET_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_RESET_UNIPHIER_GLUE policy<{'armhf': 'm'}> +CONFIG_COMMON_RESET_HI3660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_RESET_HI6220 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Rpmsg drivers +CONFIG_RPMSG_CHAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RPMSG_NS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RPMSG_MTK_SCP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RPMSG_QCOM_GLINK_RPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RPMSG_QCOM_GLINK_SMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RPMSG_QCOM_SMD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RPMSG_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> SCSI device support +CONFIG_RAID_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support +CONFIG_SCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_SD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_SR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_SG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_ENCLOSURE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_CONSTANTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_SCAN_ASYNC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_BSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SCSI flag +CONFIG_CHR_DEV_SG note +CONFIG_BLK_DEV_SD mark note +CONFIG_BLK_DEV_SR mark note + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI Device Handlers +CONFIG_SCSI_DH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_DH_RDAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_HP_SW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_EMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_ALUA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI Transports +CONFIG_SCSI_SPI_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_FC_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_ISCSI_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_LIBSAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_ATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_SAS_HOST_SMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCSI_SRP_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers +CONFIG_SCSI_LOWLEVEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ISCSI_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ISCSI_BOOT_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_CXGB3_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_CXGB4_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BNX2_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BNX2X_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BE2ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CXLFLASH policy<{'ppc64el': 'm'}> +CONFIG_BLK_DEV_3W_XXXX_RAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_HPSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_3W_9XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_3W_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_ACARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_AHA1740 policy<{'amd64': 'm'}> +CONFIG_SCSI_AACRAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_AIC94XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AIC94XX_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_HISI_SAS policy<{'arm64': 'm'}> +CONFIG_SCSI_HISI_SAS_PCI policy<{'arm64': 'm'}> +CONFIG_SCSI_HISI_SAS_DEBUGFS_DEFAULT_ENABLE policy<{'arm64': 'n'}> +CONFIG_SCSI_MVSAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MVSAS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_MVSAS_TASKLET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_MVUMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_DPT_I2O policy<{'amd64': 'm'}> +CONFIG_SCSI_ADVANSYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_ARCMSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_ESAS2R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEGARAID_NEWGEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MEGARAID_MM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEGARAID_MAILBOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEGARAID_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEGARAID_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MPT3SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_MPT2SAS_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 's390x': '128'}> +CONFIG_SCSI_MPT3SAS_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 's390x': '128'}> +CONFIG_SCSI_MPT2SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_MPI3MR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_SMARTPQI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_TI_J721E policy<{'arm64': 'm'}> +CONFIG_SCSI_HPTIOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BUSLOGIC policy<{'amd64': 'm'}> +CONFIG_SCSI_FLASHPOINT policy<{'amd64': 'y'}> +CONFIG_SCSI_MYRB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_MYRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VMWARE_PVSCSI policy<{'amd64': 'm'}> +CONFIG_XEN_SCSI_FRONTEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_STORAGE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_LIBFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_SNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_SNIC_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_DMX3191D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_FDOMAIN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_ISCI policy<{'amd64': 'm'}> +CONFIG_SCSI_IPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_IBMVSCSI policy<{'ppc64el': 'm'}> +CONFIG_SCSI_IBMVSCSIS policy<{'ppc64el': 'm'}> +CONFIG_SCSI_IBMVFC policy<{'ppc64el': 'm'}> +CONFIG_SCSI_IBMVFC_TRACE policy<{'ppc64el': 'y'}> +CONFIG_SCSI_INITIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_INIA100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_PPA policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IMM policy<{'amd64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IZIP_EPP16 policy<{'amd64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_IZIP_SLOW_CTR policy<{'amd64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_STEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_IPR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_IPR_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_IPR_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_QLOGIC_1280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_QLA_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_TCM_QLA2XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TCM_QLA2XXX_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_QLA_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QEDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_LPFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_LPFC_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_EFCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_SIM710 policy<{'amd64': 'm'}> +CONFIG_SCSI_DC395x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_AM53C974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_NSP32 policy<{'armhf': 'm'}> +CONFIG_SCSI_WD719X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_DEBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ZFCP policy<{'s390x': 'm'}> +CONFIG_SCSI_PMCRAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_PM8001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_BFA_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCSI_CHELSIO_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_SCSI_IPR_TRACE note +CONFIG_SCSI_IPR_DUMP note +CONFIG_SCSI_VIRTIO note + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Adaptec AIC79xx U320 support +CONFIG_SCSI_AIC79XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AIC79XX_CMDS_PER_DEVICE policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32'}> +CONFIG_AIC79XX_RESET_DELAY_MS policy<{'amd64': '5000', 'arm64': '5000', 'armhf': '5000', 'ppc64el': '5000'}> +CONFIG_AIC79XX_DEBUG_ENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_AIC79XX_DEBUG_MASK policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_AIC79XX_REG_PRETTY_PRINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Adaptec AIC7xxx Fast -> U160 support +CONFIG_SCSI_AIC7XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_AIC7XXX_CMDS_PER_DEVICE policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8'}> +CONFIG_AIC7XXX_RESET_DELAY_MS policy<{'amd64': '5000', 'arm64': '5000', 'armhf': '5000', 'ppc64el': '5000'}> +CONFIG_AIC7XXX_DEBUG_ENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_AIC7XXX_DEBUG_MASK policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_AIC7XXX_REG_PRETTY_PRINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> LibFCoE module +CONFIG_LIBFCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FCOE_FNIC policy<{'amd64': 'm'}> +CONFIG_QEDF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> PCMCIA SCSI adapter support +CONFIG_SCSI_LOWLEVEL_PCMCIA policy<{'amd64': 'y'}> +CONFIG_PCMCIA_AHA152X policy<{'amd64': 'm'}> +CONFIG_PCMCIA_FDOMAIN policy<{'amd64': 'm'}> +CONFIG_PCMCIA_QLOGIC policy<{'amd64': 'm'}> +CONFIG_PCMCIA_SYM53C500 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> SYM53C8XX Version 2 SCSI support +CONFIG_SCSI_SYM53C8XX_2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1'}> +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16'}> +CONFIG_SCSI_SYM53C8XX_MAX_TAGS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'ppc64el': '64'}> +CONFIG_SCSI_SYM53C8XX_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Universal Flash Storage Controller Driver Core +CONFIG_SCSI_UFSHCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SCSI_UFSHCD_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_DWC_TC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_BSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_UFS_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SCSI_UFS_HPB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Universal Flash Storage Controller Driver Core >> Platform bus based UFS Controller support +CONFIG_SCSI_UFSHCD_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_CDNS_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_DWC_TC_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_UFS_QCOM policy<{'arm64': 'm', 'armhf': 'n'}> +CONFIG_SCSI_UFS_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SCSI_UFS_HISI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SCSI_UFS_EXYNOS policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Zalon SCSI support + +# Menu: Device Drivers >> SLIMbus support +CONFIG_SLIMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SLIM_QCOM_CTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SLIM_QCOM_NGD_CTRL policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers +CONFIG_OWL_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_GRF policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_IODOMAIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ROCKCHIP_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_TEGRA_2x_SOC policy<{'armhf-generic': 'y'}> +CONFIG_ARCH_TEGRA_3x_SOC policy<{'armhf-generic': 'y'}> +CONFIG_ARCH_TEGRA_114_SOC policy<{'armhf-generic': 'y'}> +CONFIG_ARCH_TEGRA_124_SOC policy<{'armhf-generic': 'y'}> +CONFIG_ARCH_TEGRA_132_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_210_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_186_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_194_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_234_SOC policy<{'arm64': 'y'}> +CONFIG_SOC_TEGRA20_VOLTAGE_COUPLER policy<{'armhf-generic': 'y'}> +CONFIG_SOC_TEGRA30_VOLTAGE_COUPLER policy<{'armhf-generic': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> ASPEED SoC drivers +CONFIG_ASPEED_LPC_CTRL policy<{'armhf': 'm'}> +CONFIG_ASPEED_LPC_SNOOP policy<{'armhf': 'm'}> +CONFIG_ASPEED_P2A_CTRL policy<{'armhf': 'm'}> +CONFIG_ASPEED_SOCINFO policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Amlogic SoC drivers +CONFIG_MESON_CANVAS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_CLK_MEASURE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_GX_SOCINFO policy<{'arm64': 'y'}> +CONFIG_MESON_GX_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_EE_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_SECURE_PM_DOMAINS policy<{'arm64-generic': 'y'}> +CONFIG_MESON_MX_SOCINFO policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Broadcom SoC drivers +CONFIG_BCM2835_POWER policy<{'arm64': 'y'}> +CONFIG_RASPBERRYPI_POWER policy<{'arm64': 'y'}> +CONFIG_SOC_BRCMSTB policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_BCM_PMB policy<{'arm64': 'y'}> +CONFIG_BRCMSTB_PM policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Enable LiteX SoC Builder specific drivers +CONFIG_LITEX_SOC_CONTROLLER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> IXP4xx SoC drivers + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> MediaTek SoC drivers +CONFIG_MTK_CMDQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_DEVAPC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_INFRACFG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MTK_PMIC_WRAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_SCPSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MTK_SCPSYS_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MTK_MMSYS policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> NXP/Freescale QorIQ SoC drivers +CONFIG_QUICC_ENGINE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FSL_MC_DPIO policy<{'arm64': 'm'}> +CONFIG_DPAA2_CONSOLE policy<{'arm64': 'm'}> +CONFIG_FSL_RCPM policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> NXP/Freescale QorIQ SoC drivers >> QorIQ DPAA1 framework support +CONFIG_FSL_DPAA policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA_CHECKING policy<{'arm64': 'y'}> +CONFIG_FSL_BMAN_TEST policy<{'arm64': 'm'}> +CONFIG_FSL_BMAN_TEST_API policy<{'arm64': 'n'}> +CONFIG_FSL_QMAN_TEST policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Qualcomm SoC drivers +CONFIG_QCOM_CPR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_AOSS_QMP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_COMMAND_DB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_GENI_SE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_GSBI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_LLCC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_OCMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_RMTFS_MEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_RPMH policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_RPMHPD policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_RPMPD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_WCNSS_CTRL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_APR policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Qualcomm SoC drivers >> Qualcomm Shared Memory Manager (SMEM) +CONFIG_QCOM_SMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMP2P policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SOCINFO policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Renesas SoC driver support +CONFIG_SOC_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_EMEV2 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7794 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7779 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7790 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7778 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7793 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7791 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7792 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7740 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A73A4 policy<{'armhf': 'n'}> +CONFIG_ARCH_R7S72100 policy<{'armhf': 'y'}> +CONFIG_ARCH_R7S9210 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A77470 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7745 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7742 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7743 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7744 policy<{'armhf': 'y'}> +CONFIG_ARCH_R9A06G032 policy<{'armhf': 'y'}> +CONFIG_ARCH_SH73A0 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A77995 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77990 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77950 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77951 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77965 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77960 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77961 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77980 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77970 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774B1 policy<{'arm64': 'y'}> +CONFIG_ARCH_R9A07G044 policy<{'arm64': 'y'}> +CONFIG_RST_RCAR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SYSC_RCAR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SYSC_R8A77995 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7794 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77990 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7779 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7790 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7795 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7791 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77965 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A77960 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A77961 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7792 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77980 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A77970 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_SYSC_RMOBILE policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77470 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7745 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7742 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7743 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A774B1 policy<{'arm64': 'y'}> +# +CONFIG_ARCH_R8A73A4 flag + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Samsung SoC driver support +CONFIG_SOC_SAMSUNG policy<{'armhf': 'y'}> +CONFIG_EXYNOS_ASV_ARM policy<{'armhf': 'y'}> +CONFIG_EXYNOS_CHIPID policy<{'armhf': 'y'}> +CONFIG_EXYNOS_PMU policy<{'armhf': 'y'}> +CONFIG_EXYNOS_PMU_ARM_DRIVERS policy<{'armhf': 'y'}> +CONFIG_EXYNOS_PM_DOMAINS policy<{'armhf': 'y'}> +CONFIG_EXYNOS_REGULATOR_COUPLER policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> TI SOC drivers support +CONFIG_SOC_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_WKUP_M3_IPC policy<{'armhf-generic': 'n'}> +CONFIG_TI_SCI_PM_DOMAINS policy<{'arm64': 'm'}> +CONFIG_TI_K3_RINGACC policy<{'arm64': 'y'}> +CONFIG_TI_PRUSS policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_SOC_TI flag + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Xilinx SoC drivers +CONFIG_ZYNQMP_POWER policy<{'arm64': 'y'}> +CONFIG_ZYNQMP_PM_DOMAINS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> i.MX SoC drivers +CONFIG_IMX_GPCV2_PM_DOMAINS policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_SOC_IMX8M policy<{'arm64': 'y', 'armhf-generic': 'n'}> + +# Menu: Device Drivers >> SPI support +CONFIG_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SPI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SPI_MEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_ALTERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_ALTERA_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_ALTERA_DFL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_ARMADA_3700 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_AXI_SPI_ENGINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_BCM2835 policy<{'arm64': 'm'}> +CONFIG_SPI_BCM2835AUX policy<{'arm64': 'm'}> +CONFIG_SPI_BCM_QSPI policy<{'arm64': 'm'}> +CONFIG_SPI_BITBANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_BUTTERFLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_CADENCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_CADENCE_QUADSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_FSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_FSL_LPSPI policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_FSL_QUADSPI policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_HISI_KUNPENG policy<{'arm64': 'm'}> +CONFIG_SPI_HISI_SFC_V3XX policy<{'arm64': 'm'}> +CONFIG_SPI_NXP_FLEXSPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_LM70_LLP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_FSL_SPI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_FSL_DSPI policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_MESON_SPICC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MESON_SPIFC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MT65XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MTK_NOR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_NPCM_FIU policy<{'armhf': 'm'}> +CONFIG_SPI_NPCM_PSPI policy<{'armhf': 'm'}> +CONFIG_SPI_LANTIQ_SSC policy<{'amd64': 'm'}> +CONFIG_SPI_OC_TINY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_OMAP24XX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SPI_TI_QSPI policy<{'armhf': 'm'}> +CONFIG_SPI_ORION policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_PL022 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_PXA2XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_ROCKCHIP policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_SPI_ROCKCHIP_SFC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_RPCIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_RSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_QCOM_QSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_QUP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_QCOM_GENI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_S3C64XX policy<{'armhf': 'm'}> +CONFIG_SPI_SC18IS602 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SH_MSIOF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_SH_HSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_SIFIVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SLAVE_MT27XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_SPRD policy<{'arm64': 'm'}> +CONFIG_SPI_SPRD_ADI policy<{'arm64': 'm'}> +CONFIG_SPI_SUN4I policy<{'arm64': 'n'}> +CONFIG_SPI_SUN6I policy<{'arm64': 'm'}> +CONFIG_SPI_SYNQUACER policy<{'arm64': 'm'}> +CONFIG_SPI_MXIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_TEGRA210_QUAD policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_TEGRA114 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_TEGRA20_SFLASH policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_TEGRA20_SLINK policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SPI_THUNDERX policy<{'arm64': 'm'}> +CONFIG_SPI_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_SPI_XCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_XILINX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SPI_XLP policy<{'arm64': 'm'}> +CONFIG_SPI_ZYNQMP_GQSPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_AMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SPIDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_LOOPBACK_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_TLE62X0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SLAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_SLAVE_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_SLAVE_SYSTEM_CONTROL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> SPI support >> DesignWare SPI controller core support +CONFIG_SPI_DESIGNWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_DW_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SPI_DW_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPI_DW_MMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> SPMI support +CONFIG_SPMI policy<{'amd64': 'm', 'arm64-generic': 'm', 'arm64-generic-64k': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SPMI_MSM_PMIC_ARB policy<{'arm64-generic': 'm', 'arm64-generic-64k': 'm', 'armhf': 'm'}> +CONFIG_SPMI_HISI3670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) +CONFIG_ATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATA_VERBOSE_ERROR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATA_FORCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATA_ACPI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SATA_ZPODD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SATA_PMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SATA_AHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_MOBILE_LPM_POLICY policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'ppc64el': '3'}> +CONFIG_SATA_AHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_AHCI_BRCM policy<{'arm64': 'm'}> +CONFIG_AHCI_DM816 policy<{'armhf': 'm'}> +CONFIG_AHCI_IMX policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_AHCI_CEVA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AHCI_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AHCI_MVEBU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AHCI_SUNXI policy<{'arm64': 'n'}> +CONFIG_AHCI_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_AHCI_XGENE policy<{'arm64': 'm'}> +CONFIG_AHCI_QORIQ policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_AHCI_SEATTLE policy<{'arm64': 'm'}> +CONFIG_SATA_INIC162X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_ACARD_AHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SIL24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_SATA_AHCI_PLATFORM note + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) >> ATA SFF support (for legacy IDE and PATA) +CONFIG_ATA_SFF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PDC_ADMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_QSTOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SX4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_CMD640_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_MPIIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NS87410 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OPTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_PCMCIA policy<{'amd64': 'm'}> +CONFIG_PATA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OF_PLATFORM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_RZ1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) >> ATA SFF support (for legacy IDE and PATA) >> ATA BMDMA support +CONFIG_ATA_BMDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATA_PIIX policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_DWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_DWC_OLD_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SATA_DWC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SATA_HIGHBANK policy<{'armhf': 'y'}> +CONFIG_SATA_MV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_PROMISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SATA_SIL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_SVW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_ULI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SATA_VITESSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ALI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_AMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ARTOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ATIIXP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ATP867X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_CMD64X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_CYPRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_EFAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT366 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT37X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT3X2N policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT3X3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_HPT3X3_DMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PATA_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_PATA_IT8213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_IT821X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_JMICRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_MARVELL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NETCELL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NINJA32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_NS87415 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OLDPIIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_OPTIDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_PDC2027X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_PDC_OLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_RADISYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_RDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SERVERWORKS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SIL680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_SIS policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_TOSHIBA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_TRIFLEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_WINBOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PATA_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_SATA_HIGHBANK mark note +CONFIG_PATA_HPT3X3_DMA note +CONFIG_ATA_PIIX mark note + +# Menu: Device Drivers >> Sonics Silicon Backplane support +CONFIG_SSB_PCIHOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SSB_PCMCIAHOST policy<{'amd64': 'n'}> +CONFIG_SSB_SDIOHOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SSB_DRIVER_PCICORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SSB_DRIVER_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sony MemoryStick card support +CONFIG_MEMSTICK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MEMSTICK_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MEMSTICK_UNSAFE_RESUME policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MSPRO_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MS_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_TIFM_MS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_JMICRON_38X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_R592 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_REALTEK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MEMSTICK_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support +CONFIG_SOUND policy<{'amd64': 'm', 'arm64-generic': 'm', 'arm64-generic-64k': 'm', 'armhf': 'y', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SOUND_OSS_CORE_PRECLAIM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_SOUND note +CONFIG_SOUND_OSS_CORE_PRECLAIM mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture +CONFIG_SND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_SND_OSSEMUL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_MIXER_OSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_PCM_OSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SND_PCM_TIMER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HRTIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_MAX_CARDS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32'}> +CONFIG_SND_SUPPORT_OLD_API policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_VERBOSE_PROCFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_VERBOSE_PRINTK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SND_HDA_PREALLOC_SIZE policy<{'amd64': '0', 'arm64': '64', 'armhf': '64', 'ppc64el': '64'}> +CONFIG_SND_INTEL_BYT_PREFER_SOF policy<{'amd64': 'y'}> +CONFIG_SND_XEN_FRONTEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SND_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_SND note +CONFIG_SND_PCM_OSS note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support +CONFIG_SND_SOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADI_AXI_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADI_AXI_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AMD_ACP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AMD_ACP3x policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_RV_RT5682_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_RENOIR policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_RENOIR_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_ACP5x policy<{'amd64': 'm'}> +CONFIG_SND_BCM2835_SOC_I2S policy<{'arm64': 'm'}> +CONFIG_SND_BCM63XX_I2S_WHISTLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DESIGNWARE_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DESIGNWARE_PCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_I2S_HI6210_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_KIRKWOOD_SOC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_INTEL_KEEMBAY policy<{'arm64': 'm'}> +CONFIG_SND_SOC_MT2701 policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SND_SOC_MT6797 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT6797_MT6351 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8183 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MTK_BTCVSD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MT8192 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8195 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8195_MT6359_RT1019_RT5682 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SPRD policy<{'arm64': 'm'}> +CONFIG_SND_SOC_SPRD_MCDT policy<{'arm64': 'm'}> +CONFIG_SND_SOC_XILINX_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_XILINX_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_XTFPGA_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SIMPLE_CARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AUDIO_GRAPH_CARD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_SND_SOC note +CONFIG_SND_SOC_AMD_RENOIR mark note +CONFIG_SND_SOC_AMD_RENOIR_MACH mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Amlogic platforms +CONFIG_SND_MESON_AIU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_FRDDR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_TODDR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_TDMIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_TDMOUT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_SOUND_CARD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_SPDIFOUT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_SPDIFIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_PDM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_GX_SOUND_CARD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_G12A_TOACODEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_G12A_TOHDMITX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MESON_T9015 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Mediatek MT8173 chip +CONFIG_SND_SOC_MT8173 policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for QCOM platforms +CONFIG_SND_SOC_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_STORM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_APQ8016_SBC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_QDSP6 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MSM8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SDM845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SC7180 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Rockchip +CONFIG_SND_SOC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_I2S policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_PDM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_SPDIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_MAX98090 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_RT5645 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RK3288_HDMI_ANALOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RK3399_GRU_SOUND policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Samsung +CONFIG_SND_SOC_SAMSUNG policy<{'armhf': 'm'}> +CONFIG_SND_SAMSUNG_PCM policy<{'armhf': 'm'}> +CONFIG_SND_SAMSUNG_SPDIF policy<{'armhf': 'm'}> +CONFIG_SND_SAMSUNG_I2S policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SMDK_WM8994_PCM policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SNOW policy<{'armhf': 'm'}> +CONFIG_SND_SOC_ODROID policy<{'armhf': 'm'}> +CONFIG_SND_SOC_ARNDALE policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SAMSUNG_TM2_WM5110 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SAMSUNG_ARIES_WM8994 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_SAMSUNG_MIDAS_WM1811 policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for UniPhier +CONFIG_SND_SOC_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_SND_SOC_UNIPHIER_AIO policy<{'armhf': 'm'}> +CONFIG_SND_SOC_UNIPHIER_LD11 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_UNIPHIER_PXS2 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_UNIPHIER_EVEA_CODEC policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Allwinner SoC Audio support +CONFIG_SND_SUN4I_CODEC policy<{'arm64': 'n'}> +CONFIG_SND_SUN8I_CODEC policy<{'arm64': 'm'}> +CONFIG_SND_SUN8I_CODEC_ANALOG policy<{'arm64': 'm'}> +CONFIG_SND_SUN50I_CODEC_ANALOG policy<{'arm64': 'm'}> +CONFIG_SND_SUN4I_I2S policy<{'arm64': 'n'}> +CONFIG_SND_SUN4I_SPDIF policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Audio support for Imagination Technologies designs +CONFIG_SND_SOC_IMG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_SOC_IMG_I2S_IN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMG_I2S_OUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMG_PARALLEL_OUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMG_SPDIF_IN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMG_SPDIF_OUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Audio support for Texas Instruments SoCs +CONFIG_SND_SOC_DAVINCI_MCASP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_OMAP_DMIC policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP_MCBSP policy<{'armhf': 'm'}> +CONFIG_SND_SOC_OMAP_MCPDM policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_NOKIA_RX51 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP3_PANDORA policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP3_TWL4030 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP_ABE_TWL6040 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_J721E_EVM policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Audio support for Texas Instruments SoCs >> DM365 codec select + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> CODEC drivers +CONFIG_SND_SOC_AC97_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU1372_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU1372_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU1701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU1761_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU1761_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU7002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU7118_HW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ADAU7118_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4104 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4458 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4554 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4613 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK4642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK5386 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_AK5558 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ALC5623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_BD28623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_BT_SCO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CROS_EC_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_CS35L32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS35L33 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS35L34 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS35L35 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS35L36 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L42 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L51_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L52 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L56 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42L73 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4234 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4265 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4270 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4271_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4271_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS42XX8_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS43130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS4349 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CS53L30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_CX2072X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_DA7213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_DMIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ES7134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ES7241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ES8316 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ES8328_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ES8328_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_GTM601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ICS43432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_INNO_RK3036 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_LOCHNAGAR_SC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98088 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98357A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98504 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX9867 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98927 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98373_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98373_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX98390 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX9860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MSM8916_WCD_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM1681 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM1789_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM179X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM179X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM186X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM186X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM3060_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM3060_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM3168A_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM3168A_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM5102A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM512x_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_PCM512x_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RK3328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RK817 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT1308_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT1316_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT5616 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT5631 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT5640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT5659 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT5682_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT700_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT711_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT711_SDCA_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT715_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_RT715_SDCA_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SDW_MOCKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SGTL5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SIMPLE_AMPLIFIER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SIMPLE_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM2305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM2518 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM2602_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM2602_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SSM4567 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_STA32X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_STA350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_STI_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS2552 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS2562 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS2764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS2770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS5086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS571X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS5720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TAS6424 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TDA7419 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TFA9879 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TFA989X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC23_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC23_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC31XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC32X4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC32X4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC3X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320AIC3X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TLV320ADCX140 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TS3A227E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TSCS42XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TSCS454 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_UDA1334 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WCD9335 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WCD934X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WCD938X_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8524 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8580 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8728 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8731 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8741 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8753 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8776 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8782 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8804_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8804_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8904 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8960 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8962 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8978 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WM8985 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_WSA881X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_ZL38060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MAX9759 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MT6351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MT6358 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MT6359 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT6359_ACCDET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT6660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_NAU8315 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_NAU8540 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_NAU8810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_NAU8822 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_NAU8824 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_TPA6130A2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_LPASS_WSA_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_LPASS_VA_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_LPASS_RX_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_LPASS_TX_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_SND_SOC_SGTL5000 flag + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Intel ASoC SST drivers +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL policy<{'amd64': 'y'}> +CONFIG_SND_SOC_INTEL_CATPT policy<{'amd64': 'm'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI policy<{'amd64': 'm'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKYLAKE policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_SKL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_APL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_GLK policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CNL policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_CFL policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_CML_H policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_CML_LP policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC policy<{'amd64': 'y'}> +# +CONFIG_SND_SOC_INTEL_SKYLAKE mark note +CONFIG_SND_SOC_INTEL_CNL mark note +CONFIG_SND_SOC_INTEL_CFL mark note +CONFIG_SND_SOC_INTEL_CML_H mark note +CONFIG_SND_SOC_INTEL_CML_LP mark note +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Intel ASoC SST drivers >> Intel Machine drivers +CONFIG_SND_SOC_INTEL_MACH policy<{'amd64': 'y'}> +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES policy<{'amd64': 'y'}> +CONFIG_SND_SOC_INTEL_HASWELL_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BROADWELL_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH policy<{'amd64': 'm'}> +# +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES mark note +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> STMicroelectronics STM32 SOC audio support + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale CPUs +CONFIG_SND_SOC_FSL_ASRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_SAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_MQS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_AUDMIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_SSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_ESAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_MICFIL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_EASRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_XCVR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_FSL_AUD2HTX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_FSL_RPMSG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_IMX_AUDMUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +# +CONFIG_SND_SOC_FSL_SSI flag +CONFIG_SND_SOC_IMX_AUDMUX flag + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale CPUs >> SoC Audio for Freescale PowerPC CPUs + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale CPUs >> SoC Audio for Freescale i.MX CPUs +CONFIG_SND_IMX_SOC policy<{'arm64': 'm', 'armhf-generic': 'y'}> +CONFIG_SND_SOC_EUKREA_TLV320 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_ES8328 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_SGTL5000 policy<{'arm64': 'm', 'armhf-generic': 'y'}> +CONFIG_SND_SOC_IMX_SPDIF policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_FSL_ASOC_CARD policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_AUDMIX policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_HDMI policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_RPMSG policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_IMX_CARD policy<{'arm64': 'm', 'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale MXS CPUs + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Atmel System-on-Chip +CONFIG_SND_ATMEL_SOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_MIKROE_PROTO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Intel PXA2xx chip + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Tegra System-on-Chip +CONFIG_SND_SOC_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA20_AC97 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA20_DAS policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA20_I2S policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA20_SPDIF policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA30_AHUB policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA30_I2S policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA210_AHUB policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA210_DMIC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA210_I2S policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA186_DSPK policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA210_ADMAIF policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_RT5640 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_WM8753 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_WM8903 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_WM9712 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_TRIMSLICE policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_ALC5632 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_MAX98090 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_RT5677 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_SOC_TEGRA_SGTL5000 policy<{'arm64': 'm', 'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for Renesas SoCs +CONFIG_SND_SOC_SH4_FSI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RZ policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for Ux500 platform + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for the Cirrus Logic EP93xx series + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support +CONFIG_SND_SOC_SOF_TOPLEVEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_SOC_SOF_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SOF_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SND_SOC_SOF_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SOC_SOF_DEBUG_PROBES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL policy<{'arm64': 'y'}> +CONFIG_SND_SOC_SOF_IMX8_SUPPORT policy<{'arm64': 'y'}> +CONFIG_SND_SOC_SOF_IMX8M_SUPPORT policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support >> SOF developer options support +CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support >> SOF developer options support >> SOF debugging features + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support >> SOF support for Intel audio DSPs +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL policy<{'amd64': 'y'}> +CONFIG_SND_SOC_SOF_BAYTRAIL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_BROADWELL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_MERRIFIELD policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_APOLLOLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_GEMINILAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_CANNONLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_COFFEELAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_COMETLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_ICELAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_JASPERLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_TIGERLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_ELKHARTLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_ALDERLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_HDA_LINK policy<{'amd64': 'y'}> +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC policy<{'amd64': 'y'}> +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE policy<{'amd64': 'm'}> +# +CONFIG_SND_SOC_SOF_HDA_LINK mark note +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ARM sound devices +CONFIG_SND_ARM policy<{'armhf': 'y'}> +CONFIG_SND_ARMAACI policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Apple Onboard Audio driver + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Atmel devices (AT91) + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Debug +CONFIG_SND_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> FireWire sound devices +CONFIG_SND_FIREWIRE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_DICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_OXFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ISIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FIREWORKS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BEBOB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FIREWIRE_DIGI00X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FIREWIRE_TASCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FIREWIRE_MOTU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FIREFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> GSC sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Generic sound devices +CONFIG_SND_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_PCSP policy<{'amd64': 'm'}> +CONFIG_SND_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIRMIDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MTPAV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MTS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SERIAL_U16550 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MPU401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_PORTMAN2X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AC97_POWER_SAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_AC97_POWER_SAVE_DEFAULT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> HD-Audio +CONFIG_SND_HDA_INTEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SND_HDA_HWDEP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_RECONFIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_INPUT_BEEP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_INPUT_BEEP_MODE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_SND_HDA_PATCH_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_CODEC_REALTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_SIGMATEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_HDMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CIRRUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CS8409 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CONEXANT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CA0110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CA0132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_CA0132_DSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDA_CODEC_CMEDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_CODEC_SI3054 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDA_POWER_SAVE_DEFAULT policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1'}> +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_SND_HDA_RECONFIG note +CONFIG_SND_HDA_POWER_SAVE_DEFAULT note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ISA sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> MIPS sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PCI sound devices +CONFIG_SND_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_AD1889 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALS300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ALS4000 policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALI5451 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ASIHPI policy<{'amd64': 'm'}> +CONFIG_SND_ATIIXP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ATIIXP_MODEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AU8810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AU8820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AU8830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AW2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_AZT3328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_BT87X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BT87X_OVERCLOCK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SND_CA0106 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CMIPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_OXYGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CS4281 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CS46XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_CS46XX_NEW_DSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_CTXFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DARLA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_GINA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LAYLA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_DARLA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_GINA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LAYLA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ECHO3G policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGOIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGODJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGOIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INDIGODJX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_EMU10K1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_EMU10K1X policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ENS1370 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ENS1371 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ES1938 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ES1968 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ES1968_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y'}> +CONFIG_SND_ES1968_RADIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y'}> +CONFIG_SND_FM801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_FM801_TEA575X_BOOL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_HDSP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_HDSPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ICE1712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ICE1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INTEL8X0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_INTEL8X0M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_KORG1212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LOLA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_LX6464ES policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_SND_MAESTRO3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_MAESTRO3_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y'}> +CONFIG_SND_MIXART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_NM256 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_PCXHR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RIPTIDE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RME32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RME96 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_RME9652 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SONICVIBES policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_TRIDENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_VIA82XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIA82XX_MODEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VIRTUOSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_VX222 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_YMFPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PCMCIA sound devices +CONFIG_SND_PCMCIA policy<{'amd64': 'y'}> +CONFIG_SND_VXPOCKET policy<{'amd64': 'm'}> +CONFIG_SND_PDAUDIOCF policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PowerPC sound devices +CONFIG_SND_PPC policy<{'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> SPI sound devices +CONFIG_SND_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> SUPERH sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Sequencer support +CONFIG_SND_SEQUENCER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SEQ_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_SEQUENCER_OSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SND_SEQ_HRTIMER_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Sparc sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> USB sound devices +CONFIG_SND_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_USB_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_UA101 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_USX2Y policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_CAIAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_CAIAQ_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SND_USB_US122L policy<{'amd64': 'm'}> +CONFIG_SND_USB_6FIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_HIFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_BCD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_POD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_PODHD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_TONEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_VARIAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> X86 sound devices +CONFIG_SND_X86 policy<{'amd64': 'y'}> +CONFIG_HDMI_LPE_AUDIO policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> SoundWire support +CONFIG_SOUNDWIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SOUNDWIRE_INTEL policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SOUNDWIRE_QCOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_SOUNDWIRE mark note + +# Menu: Device Drivers >> Staging drivers +CONFIG_STAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PRISM2_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8723BS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_R8712U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_R8188EU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_88EU_AP_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RTS5208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VT6655 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VT6656 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_SM750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EMXX policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_STAGING_BOARD policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_LTE_GDM724X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FIREWIRE_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FWTTY_MAX_TOTAL_PORTS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'ppc64el': '64'}> +CONFIG_FWTTY_MAX_CARD_PORTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32'}> +CONFIG_GS_FPGABOOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_COMMON_CLK_XLNX_CLKWZRD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KS7010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_AUDIO_APB_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_BOOTROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_FIRMWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_LIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_VIBRATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PI433 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XIL_AXIS_FIFO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QLGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_STAGING flag + +# Menu: Device Drivers >> Staging drivers >> Android +CONFIG_ASHMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Broadcom VideoCore support +CONFIG_BCM_VIDEOCORE policy<{'arm64': 'm'}> +CONFIG_BCM2835_VCHIQ policy<{'arm64': 'm'}> +CONFIG_VCHIQ_CDEV policy<{'arm64': 'y'}> +CONFIG_SND_BCM2835 policy<{'arm64': 'm'}> +CONFIG_VIDEO_BCM2835 policy<{'arm64': 'm'}> +CONFIG_BCM2835_VCHIQ_MMAL policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Fieldbus Device Support +CONFIG_FIELDBUS_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HMS_ANYBUSS_BUS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ARCX_ANYBUS_CONTROLLER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HMS_PROFINET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Greybus Bridged PHY Class drivers +CONFIG_GREYBUS_BRIDGED_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Accelerometers +CONFIG_ADIS16203 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADIS16240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Active energy metering IC +CONFIG_ADE7854 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7854_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADE7854_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Analog digital bi-direction converters +CONFIG_ADT7316 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADT7316_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ADT7316_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Analog to digital converters +CONFIG_AD7816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD7280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Capacitance to digital converters +CONFIG_AD7746 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Direct Digital Synthesis +CONFIG_AD9832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AD9834 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Network Analyzer, Impedance Converters +CONFIG_AD5933 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Resolver to digital converters +CONFIG_AD2S1210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> MOST support +CONFIG_MOST_COMPONENTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOST_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOST_VIDEO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOST_DIM2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MOST_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers +CONFIG_STAGING_MEDIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIDEO_IMX_MEDIA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_VIDEO_MESON_VDEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_OMAP4 policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_ROCKCHIP_VDEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_SUNXI policy<{'arm64': 'y'}> +CONFIG_VIDEO_SUNXI_CEDRUS policy<{'arm64': 'm'}> +CONFIG_TEGRA_VDE policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_VIDEO_ZORAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN_DC30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_VIDEO_TEGRA_TPG policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_VIDEO_IPU3_IMGU policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> AV7110 cards +CONFIG_DVB_SP8870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AV7110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DVB_AV7110_OSD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DVB_BUDGET_PATCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Enable support to Intel Atom ISP camera drivers +CONFIG_INTEL_ATOMISP policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Enable support to Intel Atom ISP camera drivers >> Intel Atom Image Signal Processor Driver +CONFIG_VIDEO_ATOMISP policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_ISP2401 policy<{'amd64': 'n'}> +CONFIG_VIDEO_ATOMISP_OV5693 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_OV2722 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_GC2235 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_MT9M114 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_GC0310 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_OV2680 policy<{'amd64': 'm'}> +CONFIG_VIDEO_ATOMISP_LM3554 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Hantro VPU driver +CONFIG_VIDEO_HANTRO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_HANTRO_IMX8M policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_VIDEO_HANTRO_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Zoran ZR36060 +CONFIG_VIDEO_ZORAN_ZR36060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN_BUZ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN_DC10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN_LML33 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN_LML33R10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_ZORAN_AVS6EYES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> i.MX5/6/7/8 Media Sub devices +CONFIG_VIDEO_IMX_CSI policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_IMX7_CSI policy<{'arm64': 'm', 'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> NV Tegra Embedded Controller SMBus Interface +CONFIG_MFD_NVEC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_KEYBOARD_NVEC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_SERIO_NVEC_PS2 policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_NVEC_POWER policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_NVEC_PAZ00 policy<{'arm64': 'm', 'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Support for rtllib wireless devices +CONFIG_RTLLIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTLLIB_CRYPTO_CCMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTLLIB_CRYPTO_TKIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTLLIB_CRYPTO_WEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTL8192E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Support for small TFT LCD display modules +CONFIG_FB_TFT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_AGM1264K_FL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_BD663474 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8340BN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8347D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8353D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_HX8357D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9163 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9325 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9340 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9481 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ILI9486 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_PCD8544 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_RA8875 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_S6D02A1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_S6D1121 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SH1106 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1289 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1306 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SSD1351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ST7735R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_ST7789V policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_TINYLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_TLS8204 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_UC1611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_UC1701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_UPD161704 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_WATTEROTT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FB_TFT_SEPS525 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Unisys SPAR driver support +CONFIG_UNISYSSPAR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UNISYS_VISORNIC policy<{'amd64': 'm'}> +CONFIG_UNISYS_VISORINPUT policy<{'amd64': 'm'}> +CONFIG_UNISYS_VISORHBA policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> TEE drivers +CONFIG_OPTEE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OPTEE_SHM_NUM_PRIV_PAGES policy<{'arm64': '1', 'armhf': '1'}> +CONFIG_AMDTEE policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> TI VLYNQ + +# Menu: Device Drivers >> Thermal drivers +CONFIG_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_THERMAL_NETLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_THERMAL_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_WRITABLE_TRIPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_FAIR_SHARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_STEP_WISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_BANG_BANG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_USER_SPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_GOV_POWER_ALLOCATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_EMULATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_MMIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_HISI_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_THERMAL policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_IMX_SC_THERMAL policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_IMX8MM_THERMAL policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_K3_THERMAL policy<{'arm64': 'm'}> +CONFIG_MAX77620_THERMAL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SUN8I_THERMAL policy<{'arm64': 'm'}> +CONFIG_ROCKCHIP_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RCAR_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RCAR_GEN3_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DOVE_THERMAL policy<{'armhf': 'm'}> +CONFIG_ARMADA_THERMAL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DA9062_THERMAL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MTK_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AMLOGIC_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GENERIC_ADC_THERMAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SPRD_THERMAL policy<{'arm64': 'm'}> +CONFIG_KHADAS_MCU_FAN_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> APIs to parse thermal data out of device tree +CONFIG_THERMAL_OF policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_QORIQ_THERMAL policy<{'arm64': 'm'}> +CONFIG_UNIPHIER_THERMAL policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Broadcom thermal drivers +CONFIG_BCM2711_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM2835_THERMAL policy<{'arm64': 'm'}> +CONFIG_BRCMSTB_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM_NS_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM_SR_THERMAL policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Default Thermal governor +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Thermal drivers >> Intel thermal drivers +CONFIG_INTEL_POWERCLAMP policy<{'amd64': 'm'}> +CONFIG_X86_PKG_TEMP_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_SOC_DTS_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_BXT_PMIC_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_PCH_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_TCC_COOLING policy<{'amd64': 'm'}> +CONFIG_INTEL_MENLOW policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Intel thermal drivers >> ACPI INT340X thermal drivers +CONFIG_INT340X_THERMAL policy<{'amd64': 'm'}> +CONFIG_INT3406_THERMAL policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> NVIDIA Tegra thermal drivers +CONFIG_TEGRA_SOCTHERM policy<{'arm64': 'n', 'armhf-generic': 'n'}> +CONFIG_TEGRA_BPMP_THERMAL policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_TEGRA30_TSENSOR policy<{'armhf-generic': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Qualcomm thermal drivers +CONFIG_QCOM_TSENS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SPMI_ADC_TM5 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SPMI_TEMP_ALARM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_LMH policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> STMicroelectronics thermal drivers + +# Menu: Device Drivers >> Thermal drivers >> Samsung thermal drivers +CONFIG_EXYNOS_THERMAL policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Thermal drivers >> Texas Instruments thermal drivers + +# Menu: Device Drivers >> Thermal drivers >> Texas Instruments thermal drivers >> Texas Instruments SoCs temperature sensor driver +CONFIG_TI_SOC_THERMAL policy<{'arm64': 'n', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_TI_THERMAL policy<{'armhf': 'y'}> +CONFIG_OMAP3_THERMAL policy<{'armhf-generic': 'n'}> +CONFIG_OMAP4_THERMAL policy<{'armhf-generic': 'y'}> +CONFIG_DRA752_THERMAL policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> USB support +CONFIG_USB_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_USB_LED_TRIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ULPI_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CONN_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_UHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ROLE_SWITCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ROLES_INTEL_XHCI policy<{'amd64': 'm'}> +# +CONFIG_USB_UHCI_HCD mark note flag + +# Menu: Device Drivers >> USB support >> ChipIdea Highspeed Dual Role Controller +CONFIG_USB_CHIPIDEA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHIPIDEA_UDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CHIPIDEA_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CHIPIDEA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHIPIDEA_MSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHIPIDEA_IMX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHIPIDEA_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHIPIDEA_TEGRA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB +CONFIG_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ANNOUNCE_NEW_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DEFAULT_PERSIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_FEW_INIT_RETRIES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_OTG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OTG_PRODUCTLIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_LEDS_TRIGGER_USBPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AUTOSUSPEND_DELAY policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2'}> +CONFIG_USB_MON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_C67X00_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_USB_OXU210HP_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ISP116X_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FOTG210_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MAX3421_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FHCI_HCD policy<{'ppc64el': 'm'}> +CONFIG_FHCI_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_USB_U132_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SL811_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SL811_HCD_ISO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SL811_CS policy<{'amd64': 'm'}> +CONFIG_USB_R8A66597_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RENESAS_USBHS_HCD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_HCD_BCMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'm'}> +CONFIG_USB_HCD_SSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'm'}> +CONFIG_USB_HCD_TEST_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_RENESAS_USBHS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_ACM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_WDM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MDC800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MICROTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDNS_SUPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDNSP_PCI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_CDNSP_GADGET policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_USB_CDNSP_HOST policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_USB_MTU3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_MTU3_DEBUG policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_USB_ISP1760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_USS720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EMI62 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EMI26 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ADUTUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SEVSEG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LEGOTOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CYPRESS_CY7C63 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CYTHERM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IDMOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FTDI_ELAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_APPLEDISPLAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_APPLE_MFI_FASTCHARGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SISUSBVGA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TRANCEVIBRATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_IOWARRIOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EHSET_TEST_FIXTURE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ISIGHTFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_YUREX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EZUSB_FX2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HUB_USB251XB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HSIC_USB3503 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_HSIC_USB4604 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_LINK_LAYER_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CHAOSKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BRCM_USB_PINMAP policy<{'arm64': 'm'}> +# +CONFIG_USB_OTG note +CONFIG_USB_HCD_BCMA note +CONFIG_USB_HCD_SSB note + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Cadence USB3 Dual-Role Controller +CONFIG_USB_CDNS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDNS3_GADGET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CDNS3_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CDNS3_PCI_WRAP policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_CDNS3_TI policy<{'arm64': 'm'}> +CONFIG_USB_CDNS3_IMX policy<{'arm64': 'm', 'armhf-generic': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB2 DRD Core Support +CONFIG_USB_DWC2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DWC2_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_USB_DWC2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DWC2_TRACK_MISSED_SOFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB2 DRD Core Support >> DWC2 Mode Selection +CONFIG_USB_DWC2_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DWC2_PERIPHERAL policy<{'armhf': 'n'}> +CONFIG_USB_DWC2_DUAL_ROLE policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB3 DRD Core Support +CONFIG_USB_DWC3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DWC3_ULPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_DWC3_OMAP policy<{'armhf': 'm'}> +CONFIG_USB_DWC3_EXYNOS policy<{'armhf': 'm'}> +CONFIG_USB_DWC3_PCI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_DWC3_HAPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DWC3_KEYSTONE policy<{'arm64': 'm'}> +CONFIG_USB_DWC3_MESON_G12A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_DWC3_OF_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_DWC3_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_DWC3_IMX8MP policy<{'arm64': 'm'}> +CONFIG_USB_DWC3_XILINX policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB3 DRD Core Support >> DWC3 Mode Selection +CONFIG_USB_DWC3_HOST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DWC3_GADGET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_DWC3_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> EHCI HCD (USB 2.0) support +CONFIG_USB_EHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EHCI_ROOT_HUB_TT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EHCI_TT_NEWSCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_EHCI_FSL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EHCI_HCD_NPCM7XX policy<{'armhf': 'm'}> +CONFIG_USB_EHCI_HCD_OMAP policy<{'armhf': 'm'}> +CONFIG_USB_EHCI_HCD_ORION policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_USB_EHCI_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_USB_EHCI_HCD_PPC_OF policy<{'ppc64el': 'y'}> +CONFIG_USB_EHCI_EXYNOS policy<{'armhf': 'y'}> +CONFIG_USB_EHCI_HCD_PLATFORM policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'm'}> +# +CONFIG_USB_EHCI_HCD_PLATFORM mark note flag +CONFIG_USB_EHCI_HCD mark note flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> ISP1760 Mode Selection +CONFIG_USB_ISP1760_HOST_ROLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ISP1760_GADGET_ROLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ISP1760_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller +CONFIG_USB_MUSB_HDRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_USB_MUSB_SUNXI policy<{'arm64': 'm'}> +CONFIG_USB_MUSB_TUSB6010 policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_OMAP2PLUS policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_AM35X policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_DSPS policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_USB_MUSB_HDRC note flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller >> Disable DMA (always use PIO) +CONFIG_MUSB_PIO_ONLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller >> MUSB Mode Selection +CONFIG_USB_MUSB_HOST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_MUSB_GADGET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_MUSB_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> MTU3 Mode Selection +CONFIG_USB_MTU3_HOST policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_USB_MTU3_GADGET policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_USB_MTU3_DUAL_ROLE policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> OHCI HCD (USB 1.1) support +CONFIG_USB_OHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_OHCI_HCD_OMAP3 policy<{'armhf-generic': 'm'}> +CONFIG_USB_OHCI_HCD_PPC_OF_BE policy<{'ppc64el': 'n'}> +CONFIG_USB_OHCI_HCD_PPC_OF_LE policy<{'ppc64el': 'n'}> +CONFIG_USB_OHCI_HCD_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_OHCI_EXYNOS policy<{'armhf': 'y'}> +CONFIG_USB_OHCI_HCD_PLATFORM policy<{'amd64': 'y', 'arm64': 'm', 'armhf-generic': 'm', 'armhf-generic-lpae': 'n', 'ppc64el': 'm'}> +# +CONFIG_USB_OHCI_HCD marknote +CONFIG_USB_OHCI_HCD_PPC_OF_LE flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB DSL modem support +CONFIG_USB_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SPEEDTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CXACRU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_UEAGLEATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_XUSBATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB Mass Storage support +CONFIG_USB_STORAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_STORAGE_REALTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REALTEK_AUTOPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_STORAGE_DATAFAB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_FREECOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ISD200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_USBAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_SDDR09 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_SDDR55 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_JUMPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ALAUDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ONETOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_KARMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_CYPRESS_ATACB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_STORAGE_ENE_UB6250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_UAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB Serial Converter support +CONFIG_USB_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_GENERIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_AIRCABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_ARK3116 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_BELKIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CH341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_WHITEHEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_DIGI_ACCELEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CP210X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CYPRESS_M8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_EMPEG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_FTDI_SIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_VISOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IPAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_EDGEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_EDGEPORT_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_F81232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_F8153X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_GARMIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IPW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_IUU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KEYSPAN_PDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KEYSPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KLSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_KOBIL_SCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MCT_U232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_METRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MOS7720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MOS7715_PARPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_SERIAL_MOS7840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_MXUPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_NAVMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_PL2303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OTI6858 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_QCAUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_QUALCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SPCP8X5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SAFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SAFE_PADDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_SERIAL_SIERRAWIRELESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SYMBOL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_CYBERJACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OPTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OMNINET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_OPTICON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_XSENS_MT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_WISHBONE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_SSU100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_QT2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_UPD78F0730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_XR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SERIAL_DEBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_USB_SERIAL_DEBUG note + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB/IP support +CONFIG_USBIP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_VHCI_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_VHCI_HC_PORTS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8'}> +CONFIG_USBIP_VHCI_NR_HCS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1'}> +CONFIG_USBIP_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_VUDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USBIP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> xHCI HCD (USB 3.0) support +CONFIG_USB_XHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_XHCI_DBGCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_XHCI_PCI_RENESAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_XHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_XHCI_HISTB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_MVEBU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_TEGRA policy<{'arm64': 'm', 'armhf-generic': 'm'}> +# +CONFIG_USB_XHCI_HCD mark note flag +CONFIG_USB_XHCI_DBGCAP note + +# Menu: Device Drivers >> USB support >> USB Gadget Support +CONFIG_USB_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_USB_GADGET_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_GADGET_DEBUG_FILES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_GADGET_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_GADGET_VBUS_DRAW policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2'}> +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2'}> +CONFIG_U_SERIAL_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget functions configurable through configfs +CONFIG_USB_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CONFIGFS_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_ACM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_OBEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_NCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_ECM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_ECM_SUBSET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_EEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_PHONET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_MASS_STORAGE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_LB_SS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_MIDI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_HID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_UVC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_PRINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_CONFIGFS_F_TCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget precomposed configurations +CONFIG_USB_ZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GADGET_UAC1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GADGET_UAC1_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_ETH_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ETH_EEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_G_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGETFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MASS_STORAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGET_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MIDI_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_CDC_COMPOSITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_NOKIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_ACM_MS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_MULTI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_USB_G_MULTI_RNDIS policy<{'armhf': 'y'}> +CONFIG_USB_G_MULTI_CDC policy<{'armhf': 'y'}> +CONFIG_USB_G_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_DBGP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_G_WEBCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RAW_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget precomposed configurations >> EHCI Debug Device mode +CONFIG_USB_G_DBGP_PRINTK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_G_DBGP_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget precomposed configurations >> Function Filesystem +CONFIG_USB_FUNCTIONFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_FUNCTIONFS_ETH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_FUNCTIONFS_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_FUNCTIONFS_GENERIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Peripheral Controller +CONFIG_USB_FUSB300 policy<{'armhf-generic': 'm'}> +CONFIG_USB_FOTG210_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GR_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_R8A66597 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_RENESAS_USBHS_UDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_RENESAS_USB3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_PXA27X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MV_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MV_U3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_SNP_UDC_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_M66592 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_BDC_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_AMD5536UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET2272 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_NET2272_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_NET2280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GOKU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_EG20T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_GADGET_XILINX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MAX3420_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_TEGRA_XUDC policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_USB_ASPEED_VHUB policy<{'armhf': 'm'}> +CONFIG_USB_DUMMY_HCD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_USB_M66592 note +CONFIG_USB_DUMMY_HCD flag + +# Menu: Device Drivers >> USB support >> USB Physical Layer drivers +CONFIG_NOP_USB_XCEIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_AM335X_PHY_USB policy<{'armhf': 'm'}> +CONFIG_TWL6030_USB policy<{'armhf': 'm'}> +CONFIG_USB_GPIO_VBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TAHVO_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TAHVO_USB_HOST_BY_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_ISP1301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_USB_MXS_PHY policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_USB_TEGRA_PHY policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_USB_ULPI policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_NOP_USB_XCEIV note + +# Menu: Device Drivers >> USB support >> USB Type-C Support +CONFIG_TYPEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_UCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_UCSI_CCG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_UCSI_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TYPEC_HD3SS3220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_TPS6598X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_STUSB160X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_QCOM_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Alternate Mode drivers +CONFIG_TYPEC_DP_ALTMODE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_NVIDIA_ALTMODE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Multiplexer/DeMultiplexer Switch support +CONFIG_TYPEC_MUX_PI3USB30532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_MUX_INTEL_PMC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Port Controller Manager +CONFIG_TYPEC_TCPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_FUSB302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_WCOVE policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Port Controller Manager >> Type-C Port Controller Interface driver +CONFIG_TYPEC_TCPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_RT1711H policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TYPEC_TCPCI_MAXIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Unified support for USB4 and Thunderbolt +CONFIG_USB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_USB4_DEBUGFS_WRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB4_DMA_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Userspace I/O drivers +CONFIG_UIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_UIO_CIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_PDRV_GENIRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_DMEM_GENIRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_AEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_SERCOS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_PCI_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_NETX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_FSL_ELBC_GPCM policy<{'ppc64el': 'm'}> +CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 policy<{'ppc64el': 'n'}> +CONFIG_UIO_PRUSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_MF624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UIO_HV_GENERIC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_UIO_DFL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> VFIO Non-Privileged userspace driver framework +CONFIG_VFIO policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_VFIO_NOIOMMU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VFIO_MDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VFIO_FSL_MC policy<{'arm64': 'm'}> +CONFIG_VFIO_PCI policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 's390x': 'm'}> +CONFIG_VFIO_PCI_VGA policy<{'amd64': 'y'}> +CONFIG_VFIO_PCI_IGD policy<{'amd64': 'y'}> +# +CONFIG_VFIO marknote +CONFIG_VFIO_PCI marknote + +# Menu: Device Drivers >> VFIO Non-Privileged userspace driver framework >> VFIO support for platform devices +CONFIG_VFIO_PLATFORM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_AMBA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_PLATFORM_AMDXGBE_RESET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> VHOST drivers +CONFIG_VHOST_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VHOST_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VHOST_SCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VHOST_VSOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VHOST_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VHOST_CROSS_ENDIAN_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> VME bridge support +CONFIG_VME_BUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VME_CA91CX42 policy<{'amd64': 'm'}> +CONFIG_VME_TSI148 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VME_FAKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VMIVME_7805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VME_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Virtio drivers +CONFIG_VIRTIO_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_PCI_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIRTIO_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_VIRTIO_BALLOON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_MEM policy<{'amd64': 'm'}> +CONFIG_VIRTIO_INPUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_VIRTIO_PCI flag +CONFIG_VIRTIO_MMIO note + +# Menu: Device Drivers >> Virtualization drivers +CONFIG_VIRT_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VBOXGUEST policy<{'amd64': 'm'}> +CONFIG_NITRO_ENCLAVES policy<{'amd64': 'm'}> +CONFIG_ACRN_HSM policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Voltage and Current Regulator Support +CONFIG_REGULATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_REGULATOR_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_REGULATOR_FIXED_VOLTAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> +CONFIG_REGULATOR_VIRTUAL_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_USERSPACE_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_88PG86X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_88PM800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_88PM8607 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ACT8865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ACT8945A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AD5398 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ANATOP policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_REGULATOR_AAT2870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ARIZONA_LDO1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ARIZONA_MICSUPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ARM_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_AS3711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AS3722 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ATC260X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BCM590XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BD71815 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BD71828 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BD718XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BD9571MWV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_BD957XMUF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_CROS_EC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9063 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9121 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_DA9211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_FAN53555 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_FAN53880 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_HI6421 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_HI6421V530 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_HI655X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_HI6421V600 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ISL9305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_ISL6271A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LM363X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP3971 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP3972 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP872X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP873X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP8755 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LTC3589 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_LTC3676 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX1586 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8649 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8893 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8952 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8973 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77802 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MAX77826 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MC13892 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MCP16502 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MP5416 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MP8859 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MP886X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MPQ7920 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6315 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6358 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6359 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_MT6380 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PBIAS policy<{'armhf': 'm'}> +CONFIG_REGULATOR_PCA9450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PF8X00 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PFUZE100 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PV88060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PV88080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PV88090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_QCOM_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_QCOM_RPMH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_QCOM_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_QCOM_SPMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_QCOM_USB_VBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RC5T583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RN5T618 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RT4801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RT4831 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RT6160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RT6245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RTQ2134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RTMV20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_RTQ6752 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_S2MPA01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_S2MPS11 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_S5M8767 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_SC2731 policy<{'arm64': 'm'}> +CONFIG_REGULATOR_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_SLG51000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_STPMIC1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TI_ABB policy<{'armhf': 'y'}> +CONFIG_REGULATOR_SY8106A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_SY8824X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_SY8827N policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS51632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS62360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65217 policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_REGULATOR_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6524X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS6586X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TPS80031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_UNIPHIER policy<{'armhf': 'm'}> +CONFIG_REGULATOR_VCTRL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_VEXPRESS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_VQMMC_IPQ4019 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_WM8400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_REGULATOR_QCOM_LABIBB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +# +CONFIG_REGULATOR_FIXED_VOLTAGE note +CONFIG_REGULATOR_TWL4030 mark note +CONFIG_REGULATOR_TPS65217 mark note + +# Menu: Device Drivers >> Watchdog Timer Support +CONFIG_WATCHDOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_NOWAYOUT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_OPEN_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_WATCHDOG_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SOFT_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SOFT_WATCHDOG_PRETIMEOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BD957XMUF_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA9052_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA9055_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA9063_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DA9062_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MENF21BMC_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MENZ069_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WDAT_WDT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_WM831X_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_WM8350_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_XILINX_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ZIIRAVE_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_RAVE_SP_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MLX_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SL28CPLD_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_ARM_SP805_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SBSA_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_ARMADA_37XX_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CADENCE_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_FTWDT010_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_S3C2410_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_DW_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_OMAP_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_K3_RTI_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_ORION_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_RN5T618_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SUNXI_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_NPCM7XX_WATCHDOG policy<{'armhf': 'y'}> +CONFIG_TWL4030_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TS4800_WATCHDOG policy<{'armhf-generic': 'm'}> +CONFIG_MAX63XX_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MAX77620_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IMX2_WDT policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_IMX_SC_WDT policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_IMX7ULP_WDT policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_RETU_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TEGRA_WATCHDOG policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_QCOM_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_GXBB_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MEDIATEK_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SMC_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RENESAS_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RENESAS_RZAWDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ASPEED_WATCHDOG policy<{'armhf': 'y'}> +CONFIG_STPMIC1_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_UNIPHIER_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_RTD119X_WATCHDOG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SPRD_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_PM8916_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VISCONTI_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_MSC313E_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_ACQUIRE_WDT policy<{'amd64': 'm'}> +CONFIG_ADVANTECH_WDT policy<{'amd64': 'm'}> +CONFIG_ALIM1535_WDT policy<{'amd64': 'm'}> +CONFIG_ALIM7101_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EBC_C384_WDT policy<{'amd64': 'm'}> +CONFIG_F71808E_WDT policy<{'amd64': 'm'}> +CONFIG_SP5100_TCO policy<{'amd64': 'm'}> +CONFIG_SBC_FITPC2_WATCHDOG policy<{'amd64': 'm'}> +CONFIG_EUROTECH_WDT policy<{'amd64': 'm'}> +CONFIG_IB700_WDT policy<{'amd64': 'm'}> +CONFIG_IBMASR policy<{'amd64': 'm'}> +CONFIG_WAFER_WDT policy<{'amd64': 'm'}> +CONFIG_I6300ESB_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IE6XX_WDT policy<{'amd64': 'm'}> +CONFIG_ITCO_WDT policy<{'amd64': 'm'}> +CONFIG_ITCO_VENDOR_SUPPORT policy<{'amd64': 'y'}> +CONFIG_IT8712F_WDT policy<{'amd64': 'm'}> +CONFIG_IT87_WDT policy<{'amd64': 'm'}> +CONFIG_HP_WATCHDOG policy<{'amd64': 'm'}> +CONFIG_HPWDT_NMI_DECODING policy<{'amd64': 'y'}> +CONFIG_KEMPLD_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SC1200_WDT policy<{'amd64': 'm'}> +CONFIG_PC87413_WDT policy<{'amd64': 'm'}> +CONFIG_NV_TCO policy<{'amd64': 'm'}> +CONFIG_60XX_WDT policy<{'amd64': 'm'}> +CONFIG_CPU5_WDT policy<{'amd64': 'm'}> +CONFIG_SMSC_SCH311X_WDT policy<{'amd64': 'm'}> +CONFIG_SMSC37B787_WDT policy<{'amd64': 'm'}> +CONFIG_TQMX86_WDT policy<{'amd64': 'm'}> +CONFIG_VIA_WDT policy<{'amd64': 'm'}> +CONFIG_W83627HF_WDT policy<{'amd64': 'm'}> +CONFIG_W83877F_WDT policy<{'amd64': 'm'}> +CONFIG_W83977F_WDT policy<{'amd64': 'm'}> +CONFIG_MACHZ_WDT policy<{'amd64': 'm'}> +CONFIG_SBC_EPX_C3_WATCHDOG policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_WDT policy<{'amd64': 'm'}> +CONFIG_NI903X_WDT policy<{'amd64': 'm'}> +CONFIG_NIC7018_WDT policy<{'amd64': 'm'}> +CONFIG_AAEON_IWMI_WDT policy<{'amd64': 'm'}> +CONFIG_BCM2835_WDT policy<{'arm64': 'm'}> +CONFIG_BCM7038_WDT policy<{'arm64': 'm'}> +CONFIG_MEN_A21_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_WATCHDOG_RTAS policy<{'ppc64el': 'm'}> +CONFIG_DIAG288_WATCHDOG policy<{'s390x': 'm'}> +CONFIG_XEN_WDT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_PCIPCWATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_WDTPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_USBPCWATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_KEEMBAY_WATCHDOG policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Watchdog Timer Support >> Enable watchdog pretimeout governors +CONFIG_WATCHDOG_PRETIMEOUT_GOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Watchdog Timer Support >> Enable watchdog pretimeout governors >> Default Watchdog Pretimeout Governor +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers +CONFIG_X86_PLATFORM_DEVICES policy<{'amd64': 'y'}> +CONFIG_UV_SYSFS policy<{'amd64': 'm'}> +CONFIG_ACERHDF policy<{'amd64': 'm'}> +CONFIG_ACER_WIRELESS policy<{'amd64': 'm'}> +CONFIG_AMD_PMC policy<{'amd64': 'm'}> +CONFIG_ADV_SWBUTTON policy<{'amd64': 'm'}> +CONFIG_APPLE_GMUX policy<{'amd64': 'm'}> +CONFIG_ASUS_LAPTOP policy<{'amd64': 'm'}> +CONFIG_ASUS_WIRELESS policy<{'amd64': 'm'}> +CONFIG_MERAKI_MX100 policy<{'amd64': 'm'}> +CONFIG_EEEPC_LAPTOP policy<{'amd64': 'm'}> +CONFIG_AMILO_RFKILL policy<{'amd64': 'm'}> +CONFIG_DELL_UART_BACKLIGHT policy<{'amd64': 'm'}> +CONFIG_FUJITSU_LAPTOP policy<{'amd64': 'm'}> +CONFIG_FUJITSU_TABLET policy<{'amd64': 'm'}> +CONFIG_GPD_POCKET_FAN policy<{'amd64': 'm'}> +CONFIG_HP_ACCEL policy<{'amd64': 'm'}> +CONFIG_WIRELESS_HOTKEY policy<{'amd64': 'm'}> +CONFIG_IBM_RTL policy<{'amd64': 'm'}> +CONFIG_SENSORS_HDAPS policy<{'amd64': 'm'}> +CONFIG_MSI_LAPTOP policy<{'amd64': 'm'}> +CONFIG_PCENGINES_APU2 policy<{'amd64': 'm'}> +CONFIG_SAMSUNG_LAPTOP policy<{'amd64': 'm'}> +CONFIG_SAMSUNG_Q10 policy<{'amd64': 'm'}> +CONFIG_TOSHIBA_BT_RFKILL policy<{'amd64': 'm'}> +CONFIG_TOSHIBA_HAPS policy<{'amd64': 'm'}> +CONFIG_ACPI_CMPC policy<{'amd64': 'm'}> +CONFIG_COMPAL_LAPTOP policy<{'amd64': 'm'}> +CONFIG_PANASONIC_LAPTOP policy<{'amd64': 'm'}> +CONFIG_SONY_LAPTOP policy<{'amd64': 'm'}> +CONFIG_SONYPI_COMPAT policy<{'amd64': 'y'}> +CONFIG_SYSTEM76_ACPI policy<{'amd64': 'm'}> +CONFIG_TOPSTAR_LAPTOP policy<{'amd64': 'm'}> +CONFIG_I2C_MULTI_INSTANTIATE policy<{'amd64': 'm'}> +CONFIG_MLX_PLATFORM policy<{'amd64': 'm'}> +CONFIG_TOUCHSCREEN_DMI policy<{'amd64': 'y'}> +CONFIG_INTEL_IPS policy<{'amd64': 'm'}> +CONFIG_INTEL_SCU_PCI policy<{'amd64': 'y'}> +CONFIG_INTEL_SCU_PLATFORM policy<{'amd64': 'm'}> +CONFIG_INTEL_SCU_IPC_UTIL policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Dell X86 Platform Specific Device Drivers +CONFIG_X86_PLATFORM_DRIVERS_DELL policy<{'amd64': 'y'}> +CONFIG_ALIENWARE_WMI policy<{'amd64': 'm'}> +CONFIG_DCDBAS policy<{'amd64': 'm'}> +CONFIG_DELL_LAPTOP policy<{'amd64': 'm'}> +CONFIG_DELL_RBU policy<{'amd64': 'm'}> +CONFIG_DELL_RBTN policy<{'amd64': 'm'}> +CONFIG_DELL_SMO8800 policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_AIO policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_LED policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_SYSMAN policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Dell X86 Platform Specific Device Drivers >> Dell SMBIOS driver +CONFIG_DELL_SMBIOS policy<{'amd64': 'm'}> +CONFIG_DELL_SMBIOS_WMI policy<{'amd64': 'y'}> +CONFIG_DELL_SMBIOS_SMM policy<{'amd64': 'y'}> +CONFIG_DELL_WMI policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_PRIVACY policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Intel x86 Platform Specific Device Drivers +CONFIG_X86_PLATFORM_DRIVERS_INTEL policy<{'amd64': 'y'}> +CONFIG_INTEL_ATOMISP2_LED policy<{'amd64': 'm'}> +CONFIG_INTEL_SAR_INT1092 policy<{'amd64': 'm'}> +CONFIG_INTEL_CHT_INT33FE policy<{'amd64': 'm'}> +CONFIG_INTEL_SKL_INT3472 policy<{'amd64': 'm'}> +CONFIG_INTEL_PMC_CORE policy<{'amd64': 'y'}> +CONFIG_INTEL_PMT_TELEMETRY policy<{'amd64': 'm'}> +CONFIG_INTEL_PMT_CRASHLOG policy<{'amd64': 'm'}> +CONFIG_INTEL_TELEMETRY policy<{'amd64': 'm'}> +CONFIG_INTEL_WMI_SBL_FW_UPDATE policy<{'amd64': 'm'}> +CONFIG_INTEL_WMI_THUNDERBOLT policy<{'amd64': 'm'}> +CONFIG_INTEL_HID_EVENT policy<{'amd64': 'm'}> +CONFIG_INTEL_VBTN policy<{'amd64': 'm'}> +CONFIG_INTEL_INT0002_VGPIO policy<{'amd64': 'm'}> +CONFIG_INTEL_OAKTRAIL policy<{'amd64': 'm'}> +CONFIG_INTEL_BXTWC_PMIC_TMU policy<{'amd64': 'm'}> +CONFIG_INTEL_CHTDC_TI_PWRBTN policy<{'amd64': 'm'}> +CONFIG_INTEL_MRFLD_PWRBTN policy<{'amd64': 'm'}> +CONFIG_INTEL_PUNIT_IPC policy<{'amd64': 'm'}> +CONFIG_INTEL_RST policy<{'amd64': 'm'}> +CONFIG_INTEL_SMARTCONNECT policy<{'amd64': 'm'}> +CONFIG_INTEL_TURBO_MAX_3 policy<{'amd64': 'y'}> +CONFIG_INTEL_UNCORE_FREQ_CONTROL policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Intel x86 Platform Specific Device Drivers >> Intel Speed Select Technology interface support +CONFIG_INTEL_SPEED_SELECT_INTERFACE policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> ThinkPad ACPI Laptop Extras +CONFIG_THINKPAD_ACPI policy<{'amd64': 'm'}> +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT policy<{'amd64': 'y'}> +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES policy<{'amd64': 'y'}> +CONFIG_THINKPAD_ACPI_DEBUG policy<{'amd64': 'n'}> +CONFIG_THINKPAD_ACPI_UNSAFE_LEDS policy<{'amd64': 'n'}> +CONFIG_THINKPAD_ACPI_VIDEO policy<{'amd64': 'y'}> +CONFIG_THINKPAD_ACPI_HOTKEY_POLL policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> WMI +CONFIG_ACPI_WMI policy<{'amd64': 'm'}> +CONFIG_WMI_BMOF policy<{'amd64': 'm'}> +CONFIG_HUAWEI_WMI policy<{'amd64': 'm'}> +CONFIG_MXM_WMI policy<{'amd64': 'm'}> +CONFIG_PEAQ_WMI policy<{'amd64': 'm'}> +CONFIG_XIAOMI_WMI policy<{'amd64': 'm'}> +CONFIG_GIGABYTE_WMI policy<{'amd64': 'm'}> +CONFIG_ACER_WMI policy<{'amd64': 'm'}> +CONFIG_ASUS_WMI policy<{'amd64': 'm'}> +CONFIG_ASUS_NB_WMI policy<{'amd64': 'm'}> +CONFIG_EEEPC_WMI policy<{'amd64': 'm'}> +CONFIG_HP_WMI policy<{'amd64': 'm'}> +CONFIG_IDEAPAD_LAPTOP policy<{'amd64': 'm'}> +CONFIG_THINKPAD_LMI policy<{'amd64': 'm'}> +CONFIG_MSI_WMI policy<{'amd64': 'm'}> +CONFIG_ACPI_TOSHIBA policy<{'amd64': 'm'}> +CONFIG_TOSHIBA_WMI policy<{'amd64': 'n'}> +CONFIG_LG_LAPTOP policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Xen driver support +CONFIG_XEN_BALLOON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT policy<{'amd64': '512'}> +CONFIG_XEN_SCRUB_PAGES_DEFAULT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_DEV_EVTCHN policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_XENFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_XEN_COMPAT_XENFS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_SYS_HYPERVISOR policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_GNTDEV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_XEN_GNTDEV_DMABUF policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_GRANT_DEV_ALLOC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_XEN_GRANT_DMA_ALLOC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_PVCALLS_FRONTEND policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_XEN_ACPI_PROCESSOR policy<{'amd64': 'y'}> +CONFIG_XEN_MCE_LOG policy<{'amd64': 'y'}> +CONFIG_XEN_SYMS policy<{'amd64': 'y'}> +CONFIG_XEN_UNPOPULATED_ALLOC policy<{'amd64': 'y'}> +# +CONFIG_XEN_ACPI_PROCESSOR mark + +# Menu: Device Drivers >> Xen driver support >> Backend driver support +CONFIG_XEN_BACKEND policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_PCIDEV_BACKEND policy<{'amd64': 'm'}> +CONFIG_XEN_PVCALLS_BACKEND policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XEN_SCSI_BACKEND policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> vDPA drivers +CONFIG_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_VDPA_SIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VDPA_SIM_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VDPA_SIM_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VDPA_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IFCVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MLX5_VDPA_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VP_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Dump support +# + +# Menu: Dump support >> Architecture: s390 + +# Menu: Enable loadable module support +CONFIG_MODULES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_FORCE_LOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_UNLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_FORCE_UNLOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODVERSIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_SRCVERSION_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODPROBE_PATH policy<{'amd64': '"/sbin/modprobe"', 'arm64': '"/sbin/modprobe"', 'armhf': '"/sbin/modprobe"', 'ppc64el': '"/sbin/modprobe"', 's390x': '"/sbin/modprobe"'}> +CONFIG_TRIM_UNUSED_KSYMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_MODVERSIONS mark note + +# Menu: Enable loadable module support >> Module compression mode +CONFIG_MODULE_COMPRESS_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_COMPRESS_GZIP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_COMPRESS_XZ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_COMPRESS_ZSTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Enable loadable module support >> Module signature verification +CONFIG_MODULE_SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MODULE_SIG_FORCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Enable loadable module support >> Module signature verification >> Which hash algorithm should modules be signed with? +CONFIG_MODULE_SIG_SHA1 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA224 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA384 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA512 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Enable the block layer +CONFIG_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_BSGLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_INTEGRITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_ZONED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_THROTTLING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_THROTTLING_LOW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BLK_WBT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_WBT_MQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP_IOLATENCY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BLK_CGROUP_FC_APPID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP_IOCOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP_IOPRIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_DEBUG_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_SED_OPAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_INLINE_ENCRYPTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_BLK_DEV_THROTTLING note + +# Menu: Enable the block layer >> IO Schedulers +CONFIG_MQ_IOSCHED_DEADLINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MQ_IOSCHED_KYBER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IOSCHED_BFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BFQ_GROUP_IOSCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BFQ_CGROUP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Enable the block layer >> Partition Types + +# Menu: Enable the block layer >> Partition Types >> Advanced partition selection +CONFIG_PARTITION_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AIX_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_OSF_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_AMIGA_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ATARI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IBM_PARTITION policy<{'s390x': 'y'}> +CONFIG_MAC_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LDM_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_LDM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SGI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_ULTRIX_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SUN_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KARMA_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EFI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSV68_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CMDLINE_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +# +CONFIG_PARTITION_ADVANCED flag + +# Menu: Enable the block layer >> Partition Types >> Advanced partition selection >> Acorn partition support +CONFIG_ACORN_PARTITION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Enable the block layer >> Partition Types >> Advanced partition selection >> PC BIOS (MSDOS partition tables) support +CONFIG_MSDOS_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BSD_DISKLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_MINIX_SUBPARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SOLARIS_X86_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_UNIXWARE_DISKLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> + +# Menu: Endianness selection +CONFIG_CPU_BIG_ENDIAN policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_CPU_LITTLE_ENDIAN policy<{'arm64': 'y', 'ppc64el': 'y'}> + +# Menu: Endianness selection >> Architecture: powerpc + +# Menu: Executable file formats +CONFIG_BINFMT_ELF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BINFMT_ELF_FDPIC policy<{'armhf': 'y'}> +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BINFMT_SCRIPT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BINFMT_MISC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_COREDUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_BINFMT_SCRIPT mark note + +# Menu: Executable file formats >> Kernel support for flat binaries +CONFIG_BINFMT_FLAT policy<{'armhf': 'y'}> +CONFIG_BINFMT_FLAT_OLD policy<{'armhf': 'y'}> +CONFIG_BINFMT_ZFLAT policy<{'armhf': 'y'}> +CONFIG_BINFMT_SHARED_FLAT policy<{'armhf': 'y'}> + +# Menu: File systems +CONFIG_VALIDATE_FS_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT2_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_EXT3_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_JBD2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GFS2_FS_LOCKING_DLM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NILFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ZONEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FS_DAX policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXPORTFS_BLOCK_OPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FILE_LOCKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FS_ENCRYPTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FS_ENCRYPTION_INLINE_CRYPT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FS_VERITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FS_VERITY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FS_VERITY_BUILTIN_SIGNATURES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DNOTIFY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INOTIFY_USER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FANOTIFY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FANOTIFY_ACCESS_PERMISSIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_QUOTA_NETLINK_INTERFACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUTOFS4_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'y'}> +CONFIG_AUTOFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'y'}> +CONFIG_FUSE_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FUSE_DAX policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SHIFT_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UNICODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UNICODE_NORMALIZATION_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_EXT2_FS note +CONFIG_EXT3_FS note +CONFIG_FUSE_FS note flag + +# Menu: File systems >> Btrfs filesystem support +CONFIG_BTRFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BTRFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BTRFS_FS_CHECK_INTEGRITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_FS_RUN_SANITY_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_ASSERT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BTRFS_FS_REF_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> CD-ROM/DVD Filesystems +CONFIG_ISO9660_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_JOLIET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZISOFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UDF_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: File systems >> Caches +CONFIG_NETFS_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CACHEFILES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CACHEFILES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FSCACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FSCACHE_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FSCACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> DOS/FAT/EXFAT/NT Filesystems +CONFIG_MSDOS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_EXFAT_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EXFAT_DEFAULT_IOCHARSET policy<{'amd64': '"utf8"', 'arm64': '"utf8"', 'armhf': '"utf8"', 'ppc64el': '"utf8"'}> +CONFIG_NTFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NTFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NTFS_RW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_VFAT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FAT_DEFAULT_CODEPAGE policy<{'amd64': '437', 'arm64': '437', 'armhf': '437', 'ppc64el': '437', 's390x': '437'}> +CONFIG_FAT_DEFAULT_IOCHARSET policy<{'amd64': '"iso8859-1"', 'arm64': '"iso8859-1"', 'armhf': '"iso8859-1"', 'ppc64el': '"iso8859-1"', 's390x': '"iso8859-1"'}> +CONFIG_FAT_DEFAULT_UTF8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_VFAT_FS mark note + +# Menu: File systems >> DOS/FAT/EXFAT/NT Filesystems >> NTFS Read-Write file system support +CONFIG_NTFS3_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NTFS3_64BIT_CLUSTER policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NTFS3_LZX_XPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NTFS3_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Distributed Lock Manager (DLM) +CONFIG_DLM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DLM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> F2FS filesystem support +CONFIG_F2FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_F2FS_STAT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_CHECK_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_F2FS_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_F2FS_IOSTAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: File systems >> F2FS filesystem support >> F2FS compression feature +CONFIG_F2FS_FS_COMPRESSION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_LZ4HC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_F2FS_FS_LZORLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> JFS filesystem support +CONFIG_JFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_JFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_JFS_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems +CONFIG_MISC_FILESYSTEMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ORANGEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ADFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ADFS_FS_RW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_AFFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ECRYPT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ECRYPT_FS_MESSAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HFSPLUS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BEFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_BFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_EFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CRAMFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CRAMFS_BLOCKDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CRAMFS_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VXFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MINIX_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_OMFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_HPFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QNX4FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QNX6FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QNX6FS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ROMFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_SYSV_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_UFS_FS_WRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_UFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_VBOXSF_FS policy<{'amd64': 'm'}> +# +CONFIG_ECRYPT_FS mark note + +# Menu: File systems >> Miscellaneous filesystems >> Default pstore compression algorithm +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> EROFS filesystem support +CONFIG_EROFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_EROFS_FS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_EROFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EROFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EROFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EROFS_FS_ZIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support +CONFIG_JFFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_JFFS2_FS_DEBUG policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> +CONFIG_JFFS2_FS_WRITEBUFFER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_FS_WBUF_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_SUMMARY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support >> Advanced compression options for JFFS2 +CONFIG_JFFS2_COMPRESSION_OPTIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_RTIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_JFFS2_RUBIN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support >> Advanced compression options for JFFS2 >> JFFS2 default compression mode +CONFIG_JFFS2_CMODE_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_CMODE_PRIORITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_CMODE_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_JFFS2_CMODE_FAVOURLZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Persistent store support +CONFIG_PSTORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PSTORE_DEFAULT_KMSG_BYTES policy<{'amd64': '10240', 'arm64': '10240', 'armhf': '10240', 'ppc64el': '10240'}> +CONFIG_PSTORE_DEFLATE_COMPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PSTORE_LZO_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_LZ4_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_LZ4HC_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_842_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_ZSTD_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_CONSOLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'ppc64el': 'n'}> +CONFIG_PSTORE_PMSG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_FTRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PSTORE_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm'}> + +# Menu: File systems >> Miscellaneous filesystems >> Persistent store support >> Log panic/oops to a block device + +# Menu: File systems >> Miscellaneous filesystems >> RomFS backing stores +CONFIG_ROMFS_BACKED_BY_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ROMFS_BACKED_BY_MTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ROMFS_BACKED_BY_BOTH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support +CONFIG_SQUASHFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_4K_DEVBLK_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'ppc64el': '3', 's390x': '3'}> +# +CONFIG_SQUASHFS_4K_DEVBLK_SIZE note +CONFIG_SQUASHFS mark note + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support >> Decompressor parallelisation options +CONFIG_SQUASHFS_DECOMP_SINGLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_DECOMP_MULTI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support >> File decompression options +CONFIG_SQUASHFS_FILE_CACHE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_FILE_DIRECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> UBIFS file system support +CONFIG_UBIFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_UBIFS_ATIME_SUPPORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_UBIFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UBIFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UBIFS_FS_AUTHENTICATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> UBIFS file system support >> Advanced compression options +CONFIG_UBIFS_FS_ADVANCED_COMPR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_UBIFS_FS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UBIFS_FS_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UBIFS_FS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> Native language support +CONFIG_NLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NLS_DEFAULT policy<{'amd64': '"utf8"', 'arm64': '"utf8"', 'armhf': '"utf8"', 'ppc64el': '"utf8"', 's390x': '"utf8"'}> +CONFIG_NLS_CODEPAGE_437 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NLS_CODEPAGE_737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_850 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_852 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_857 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_862 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_863 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_864 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_866 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_869 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_936 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_932 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_949 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_874 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_1250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_1251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ASCII policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_7 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_13 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_14 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_15 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_KOI8_R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_KOI8_U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ROMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CELTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CENTEURO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CROATIAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CYRILLIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_GAELIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_GREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ICELAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_INUIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ROMANIAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_TURKISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NLS_UTF8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_NLS note + +# Menu: File systems >> Network File Systems +CONFIG_NETWORK_FILESYSTEMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFSD_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_V3_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RPCSEC_GSS_KRB5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SUNRPC_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SUNRPC_XPRT_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CODA_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: File systems >> Network File Systems >> Andrew File System support (AFS) +CONFIG_AFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AFS_DEBUG_CURSOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Network File Systems >> Ceph distributed file system +CONFIG_CEPH_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CEPH_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CEPH_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CEPH_FS_SECURITY_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> NFS client support +CONFIG_NFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_V3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_V3_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFS_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_USE_LEGACY_DNS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NFS_DISABLE_UDP_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> NFS client support >> NFS client support for NFSv4.1 +CONFIG_NFS_V4_1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN policy<{'amd64': '"kernel.org"', 'arm64': '"kernel.org"', 'armhf': '"kernel.org"', 'ppc64el': '"kernel.org"', 's390x': '"kernel.org"'}> +CONFIG_NFS_V4_1_MIGRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_2_READ_PLUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Network File Systems >> NFS server support for NFS version 4 +CONFIG_NFSD_V4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_BLOCKLAYOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_SCSILAYOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_FLEXFILELAYOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_V4_2_INTER_SSC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFSD_V4_SECURITY_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> Plan 9 Resource Sharing Support (9P2000) +CONFIG_9P_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_9P_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_9P_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_9P_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> SMB3 and CIFS support (advanced network filesystem) +CONFIG_CIFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CIFS_STATS2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CIFS_ALLOW_INSECURE_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_POSIX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_DEBUG2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CIFS_DEBUG_DUMP_KEYS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CIFS_DFS_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_SWN_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CIFS_SMB_DIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CIFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_CIFS_ALLOW_INSECURE_LEGACY flag + +# Menu: File systems >> Network File Systems >> SMB3 server support (EXPERIMENTAL) +CONFIG_SMB_SERVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SMB_SERVER_SMBDIRECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SMB_SERVER_KERBEROS5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> OCFS2 file system support +CONFIG_OCFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_O2CB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_USERSPACE_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OCFS2_DEBUG_MASKLOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OCFS2_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> Overlay filesystem support +CONFIG_OVERLAY_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OVERLAY_FS_REDIRECT_DIR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OVERLAY_FS_INDEX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_OVERLAY_FS_XINO_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OVERLAY_FS_METACOPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_OVERLAY_FS_METACOPY flag + +# Menu: File systems >> Pseudo filesystems +CONFIG_PROC_CHILDREN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HUGETLBFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON policy<{'amd64': 'n'}> +CONFIG_CONFIGFS_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EFIVAR_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_CONFIGFS_FS flag +CONFIG_EFIVAR_FS note + +# Menu: File systems >> Pseudo filesystems >> /proc file system support +CONFIG_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_KCORE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_VMCORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_VMCORE_DEVICE_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_SYSCTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_PAGE_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: File systems >> Pseudo filesystems >> Tmpfs virtual memory file system support (former shm fs) +CONFIG_TMPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TMPFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TMPFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TMPFS_INODE64 policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_TMPFS_POSIX_ACL mark note + +# Menu: File systems >> Quota support +CONFIG_QUOTA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PRINT_QUOTA_WARNING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_QUOTA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_QFMT_V1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_QFMT_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: File systems >> Reiserfs support +CONFIG_REISERFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_REISERFS_CHECK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_REISERFS_PROC_INFO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_REISERFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_REISERFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_REISERFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: File systems >> The Extended 4 (ext4) filesystem +CONFIG_EXT4_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_USE_FOR_EXT2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXT4_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: File systems >> XFS filesystem support +CONFIG_XFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XFS_SUPPORT_V4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_QUOTA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_RT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XFS_ONLINE_SCRUB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFS_WARN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Firmware Drivers +CONFIG_ARM_SCPI_PROTOCOL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SCPI_POWER_DOMAIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SDE_INTERFACE policy<{'arm64': 'y'}> +CONFIG_EDD policy<{'amd64': 'y'}> +CONFIG_EDD_OFF policy<{'amd64': 'y'}> +CONFIG_FIRMWARE_MEMMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_DMIID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_DMI_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_ISCSI_IBFT_FIND policy<{'amd64': 'y'}> +CONFIG_ISCSI_IBFT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_RASPBERRYPI_FIRMWARE policy<{'arm64': 'y'}> +CONFIG_FW_CFG_SYSFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FW_CFG_SYSFS_CMDLINE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_STRATIX10_SERVICE policy<{'arm64': 'm'}> +CONFIG_INTEL_STRATIX10_RSU policy<{'arm64': 'm'}> +CONFIG_QCOM_SCM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SYSFB_SIMPLEFB policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_TI_SCI_PROTOCOL policy<{'arm64': 'y'}> +CONFIG_TRUSTED_FOUNDATIONS policy<{'armhf': 'y'}> +CONFIG_TURRIS_MOX_RWTM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_FFA_TRANSPORT policy<{'arm64': 'm'}> +CONFIG_TEE_BNXT_FW policy<{'arm64': 'm'}> +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_IMX_DSP policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_IMX_SCU policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_IMX_SCU_PD policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_MESON_SM policy<{'arm64-generic': 'y'}> +CONFIG_ARM_PSCI_CHECKER policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_ARM_SMCCC_SOC_ID policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_SYSFB_SIMPLEFB flag + +# Menu: Firmware Drivers >> ARM System Control and Management Interface Protocol + +# Menu: Firmware Drivers >> ARM System Control and Management Interface Protocol >> ARM System Control and Management Interface (SCMI) Message Protocol +CONFIG_ARM_SCMI_PROTOCOL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_TRANSPORT_SMC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_POWER_DOMAIN policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Firmware Drivers >> EFI (Extensible Firmware Interface) Support +CONFIG_EFI_VARS policy<{'amd64': 'y'}> +CONFIG_EFI_VARS_PSTORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n'}> +CONFIG_EFI_RUNTIME_MAP policy<{'amd64': 'y'}> +CONFIG_EFI_FAKE_MEMMAP policy<{'amd64': 'n'}> +CONFIG_EFI_SOFT_RESERVE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_EFI_ARMSTUB_DTB_LOADER policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_EFI_BOOTLOADER_CONTROL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_EFI_CAPSULE_LOADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_EFI_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_APPLE_PROPERTIES policy<{'amd64': 'y'}> +CONFIG_RESET_ATTACK_MITIGATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_EFI_RCI2_TABLE policy<{'amd64': 'y'}> +CONFIG_EFI_DISABLE_PCI_DMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n'}> +# +CONFIG_EFI_VARS mark note + +# Menu: Firmware Drivers >> Google Firmware Drivers +CONFIG_GOOGLE_FIRMWARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Firmware Drivers >> Google Firmware Drivers >> Coreboot Table Access + +# Menu: Firmware Drivers >> Tegra firmware driver +CONFIG_TEGRA_IVC policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_TEGRA_BPMP policy<{'arm64': 'y', 'armhf-generic': 'y'}> + +# Menu: Firmware Drivers >> Zynq MPSoC Firmware Drivers +CONFIG_ZYNQMP_FIRMWARE policy<{'arm64': 'y'}> +CONFIG_ZYNQMP_FIRMWARE_DEBUG policy<{'arm64': 'n'}> + +# Menu: Floating point emulation >> Architecture: arm +CONFIG_VFP policy<{'armhf': 'y'}> +CONFIG_NEON policy<{'armhf': 'y'}> +CONFIG_KERNEL_MODE_NEON policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: General architecture-dependent options +CONFIG_KPROBES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_JUMP_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STATIC_KEYS_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_STATIC_CALL_SELFTEST policy<{'amd64': 'n'}> +CONFIG_SECCOMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECCOMP_CACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_STACKPROTECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_STACKPROTECTOR_STRONG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ARCH_MMAP_RND_BITS policy<{'amd64': '28', 'arm64': '18', 'armhf': '8', 'ppc64el': '28'}> +CONFIG_ARCH_MMAP_RND_COMPAT_BITS policy<{'amd64': '8', 'arm64': '11', 'ppc64el': '8'}> +CONFIG_COMPAT_32BIT_TIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VMAP_STACK policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_STRICT_KERNEL_RWX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STRICT_MODULE_RWX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LOCK_EVENT_COUNTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_SECCOMP mark +CONFIG_JUMP_LABEL flag +CONFIG_STRICT_KERNEL_RWX mark +CONFIG_STRICT_MODULE_RWX mark + +# Menu: General architecture-dependent options >> Architecture: arm + +# Menu: General architecture-dependent options >> Architecture: arm64 + +# Menu: General architecture-dependent options >> Architecture: powerpc + +# Menu: General architecture-dependent options >> Architecture: s390 + +# Menu: General architecture-dependent options >> Architecture: x86 + +# Menu: General architecture-dependent options >> GCC plugins + +# Menu: General architecture-dependent options >> GCOV-based kernel profiling +CONFIG_GCOV_KERNEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) +CONFIG_LTO_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: arm + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: arm64 + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: powerpc + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: s390 + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: x86 + +# Menu: General setup +CONFIG_COMPILE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_WERROR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCALVERSION policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_LOCALVERSION_AUTO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BUILD_SALT policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_DEFAULT_INIT policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_DEFAULT_HOSTNAME policy<{'amd64': '"(none)"', 'arm64': '"(none)"', 'armhf': '"(none)"', 'ppc64el': '"(none)"', 's390x': '"(none)"'}> +CONFIG_VERSION_SIGNATURE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSVIPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_POSIX_MQUEUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WATCH_QUEUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CROSS_MEMORY_ATTACH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_USELIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AUDIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCHED_CORE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CPU_ISOLATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IKCONFIG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IKHEADERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LOG_BUF_SHIFT policy<{'amd64': '18', 'arm64': '18', 'armhf': '17', 'ppc64el': '18', 's390x': '18'}> +CONFIG_LOG_CPU_MAX_BUF_SHIFT policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'ppc64el': '12', 's390x': '12'}> +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT policy<{'amd64': '13', 'arm64': '13', 'armhf': '13', 'ppc64el': '13', 's390x': '13'}> +CONFIG_PRINTK_INDEX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NUMA_BALANCING policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CHECKPOINT_RESTORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCHED_AUTOGROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSFS_DEPRECATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RELAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BOOT_CONFIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LD_DEAD_CODE_DATA_ELIMINATION policy<{'ppc64el': 'n'}> +CONFIG_USERFAULTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_COMPAT_BRK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLAB_MERGE_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLAB_FREELIST_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLAB_FREELIST_HARDENED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SHUFFLE_PAGE_ALLOCATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLUB_CPU_PARTIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROFILING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SYSFS_DEPRECATED mark note +CONFIG_COMPAT_BRK mark note +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED note +CONFIG_LOCALVERSION_AUTO mark note + +# Menu: General setup >> BPF subsystem +CONFIG_BPF_LSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_JIT_ALWAYS_ON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_UNPRIV_DEFAULT_OFF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_JIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_BPF_JIT_ALWAYS_ON flag +CONFIG_BPF_UNPRIV_DEFAULT_OFF mark note + +# Menu: General setup >> BPF subsystem >> Preload BPF file system with kernel specific program and map iterators +CONFIG_BPF_PRELOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> CPU/Task time and stats accounting +CONFIG_IRQ_TIME_ACCOUNTING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_BSD_PROCESS_ACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BSD_PROCESS_ACCT_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASKSTATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASK_DELAY_ACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASK_XACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TASK_IO_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PSI_DEFAULT_DISABLED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +# +CONFIG_PSI_DEFAULT_DISABLED note + +# Menu: General setup >> CPU/Task time and stats accounting >> Cputime accounting +CONFIG_TICK_CPU_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_NATIVE policy<{'ppc64el': 'n', 's390x': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_GEN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: General setup >> Choose SLAB allocator +CONFIG_SLAB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLUB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLOB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> Compiler optimization level +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CC_OPTIMIZE_FOR_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> Configure standard kernel features (expert users) +CONFIG_EXPERT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UID16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> +CONFIG_MULTIUSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SGETMASK_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYSFS_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FHANDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_POSIX_TIMERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PRINTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ELF_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PCSPKR_PLATFORM policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_BASE_FULL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FUTEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EPOLL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SIGNALFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIMERFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVENTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SHMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IO_URING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ADVISE_SYSCALLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMBARRIER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KALLSYMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KALLSYMS_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KCMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RSEQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_RSEQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PC104 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_VM_EVENT_COUNTERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SLUB_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_FHANDLE mark note + +# Menu: General setup >> Control Group support +CONFIG_CGROUPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMCG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_PIDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_RDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_FREEZER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_HUGETLB policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CPUSETS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROC_PID_CPUSET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_CPUACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_PERF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_BPF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_MISC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> Control Group support >> CPU controller +CONFIG_CGROUP_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FAIR_GROUP_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CFS_BANDWIDTH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RT_GROUP_SCHED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UCLAMP_TASK_GROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_RT_GROUP_SCHED mark note note note + +# Menu: General setup >> IRQ subsystem +CONFIG_SPARSE_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GENERIC_IRQ_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support +CONFIG_BLK_DEV_INITRD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_GZIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_BZIP2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_LZMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RD_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support >> Initramfs source file(s) +CONFIG_INITRAMFS_SOURCE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support >> Initramfs source file(s) >> Built-in initramfs compression mode + +# Menu: General setup >> Kernel Performance Events And Counters +CONFIG_PERF_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_PERF_USE_VMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 's390x': 'n'}> + +# Menu: General setup >> Kernel compression mode +CONFIG_KERNEL_GZIP policy<{'amd64': 'n', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KERNEL_BZIP2 policy<{'amd64': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZMA policy<{'amd64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_KERNEL_XZ policy<{'amd64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZO policy<{'amd64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZ4 policy<{'amd64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_KERNEL_ZSTD policy<{'amd64': 'y', 's390x': 'y'}> +CONFIG_KERNEL_UNCOMPRESSED policy<{'s390x': 'n'}> +# +CONFIG_KERNEL_ZSTD mark note + +# Menu: General setup >> Namespaces support +CONFIG_NAMESPACES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UTS_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIME_NS policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPC_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_USER_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PID_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: General setup >> Preemption Model +CONFIG_PREEMPT_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_PREEMPT_VOLUNTARY policy<{'amd64-generic': 'y', 'amd64-lowlatency': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_PREEMPT policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_PREEMPT_NONE note + +# Menu: General setup >> RCU Subsystem +# XXX + +# Menu: General setup >> RCU Subsystem >> Make expert-level adjustments to RCU configuration +CONFIG_RCU_EXPERT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_RCU_EXPERT flag + +# Menu: General setup >> Scheduler features +CONFIG_UCLAMP_TASK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UCLAMP_BUCKETS_COUNT policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'ppc64el': '5'}> +# +CONFIG_UCLAMP_TASK flag + +# Menu: General setup >> Timers subsystem +CONFIG_NO_HZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CONTEXT_TRACKING_FORCE policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 's390x': '-'}> +CONFIG_HIGH_RES_TIMERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_CONTEXT_TRACKING_FORCE note mark + +# Menu: General setup >> Timers subsystem >> Timer tick handling +CONFIG_HZ_PERIODIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NO_HZ_IDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NO_HZ_FULL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_NO_HZ_IDLE note + +# Menu: I/O subsystem >> Architecture: s390 +CONFIG_QDIO policy<{'s390x': 'm'}> +CONFIG_CHSC_SCH policy<{'s390x': 'm'}> +CONFIG_SCM_BUS policy<{'s390x': 'y'}> +CONFIG_EADM_SCH policy<{'s390x': 'm'}> +CONFIG_VFIO_CCW policy<{'s390x': 'm'}> +CONFIG_VFIO_AP policy<{'s390x': 'm'}> +CONFIG_PCI_NR_FUNCTIONS policy<{'s390x': '512'}> +# +CONFIG_PCI_NR_FUNCTIONS mark note + +# Menu: Kernel hacking +CONFIG_DEBUG_TIMEKEEPING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_IRQFLAGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_STACKTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_WARN_ALL_UNSEEDED_RANDOM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PROVIDE_OHCI1394_DMA_INIT policy<{'amd64': 'n'}> +CONFIG_STRICT_DEVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IO_STRICT_DEVMEM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_STRICT_DEVMEM mark + +# Menu: Kernel hacking >> $(SRCARCH) Debugging +CONFIG_DEBUG_ENTRY policy<{'amd64': 'n', 's390x': 'n'}> +CONFIG_PID_IN_CONTEXTIDR policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_EARLY_PRINTK policy<{'amd64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_WX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: arm +CONFIG_DEBUG_USER policy<{'armhf': 'n'}> +CONFIG_DEBUG_VF_UART_PORT policy<{'armhf-generic': '1'}> +CONFIG_ARM_KPROBES_TEST policy<{'armhf': 'm'}> +CONFIG_ARM_PTDUMP_DEBUGFS policy<{'armhf': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: arm64 +CONFIG_DEBUG_EFI policy<{'arm64': 'n'}> +CONFIG_ARM64_RELOC_TEST policy<{'arm64': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: powerpc +CONFIG_PPC_DISABLE_WERROR policy<{'ppc64el': 'n'}> +CONFIG_PRINT_STACK_DEPTH policy<{'ppc64el': '64'}> +CONFIG_HCALL_STATS policy<{'ppc64el': 'n'}> +CONFIG_PPC_EMULATED_STATS policy<{'ppc64el': 'n'}> +CONFIG_CODE_PATCHING_SELFTEST policy<{'ppc64el': 'n'}> +CONFIG_JUMP_LABEL_FEATURE_CHECKS policy<{'ppc64el': 'y'}> +CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_FTR_FIXUP_SELFTEST policy<{'ppc64el': 'n'}> +CONFIG_MSI_BITMAP_SELFTEST policy<{'ppc64el': 'n'}> +CONFIG_PPC_IRQ_SOFT_MASK_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_PPC_RFI_SRR_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_BOOTX_TEXT policy<{'ppc64el': 'n'}> +CONFIG_PPC_EARLY_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_PPC_FAST_ENDIAN_SWITCH policy<{'ppc64el': 'n'}> +# +CONFIG_PPC_DISABLE_WERROR flag + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: s390 +CONFIG_CIO_INJECT policy<{'s390x': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: x86 +CONFIG_X86_VERBOSE_BOOTUP policy<{'amd64': 'n'}> +CONFIG_EFI_PGT_DUMP policy<{'amd64': 'n'}> +CONFIG_PUNIT_ATOM_DEBUG policy<{'amd64': 'm'}> +CONFIG_EARLY_PRINTK_DBGP policy<{'amd64': 'y'}> +CONFIG_EARLY_PRINTK_USB_XDBC policy<{'amd64': 'y'}> +CONFIG_DEBUG_TLBFLUSH policy<{'amd64': 'n'}> +CONFIG_IOMMU_DEBUG policy<{'amd64': 'n'}> +CONFIG_X86_DECODER_SELFTEST policy<{'amd64': 'n'}> +CONFIG_DEBUG_BOOT_PARAMS policy<{'amd64': 'n'}> +CONFIG_CPA_DEBUG policy<{'amd64': 'n'}> +CONFIG_DEBUG_NMI_SELFTEST policy<{'amd64': 'n'}> +CONFIG_X86_DEBUG_FPU policy<{'amd64': 'y'}> +# +CONFIG_PUNIT_ATOM_DEBUG flag +CONFIG_X86_DECODER_SELFTEST flag +CONFIG_X86_DEBUG_FPU flag + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Choose kernel unwinder +CONFIG_UNWINDER_FRAME_POINTER policy<{'amd64': 'y', 'armhf': 'y'}> +# +CONFIG_UNWINDER_FRAME_POINTER mark note + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Choose kernel unwinder >> Architecture: arm + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Choose kernel unwinder >> Architecture: x86 +CONFIG_UNWINDER_ORC policy<{'amd64': 'n'}> +CONFIG_UNWINDER_GUESS policy<{'amd64': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> CoreSight Tracing Support +CONFIG_CORESIGHT policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> CoreSight Tracing Support >> CoreSight Link and Sink drivers + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Early debugging console >> Architecture: powerpc + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> IO delay type >> Architecture: x86 +CONFIG_IO_DELAY_0X80 policy<{'amd64': 'n'}> +CONFIG_IO_DELAY_0XED policy<{'amd64': 'y'}> +CONFIG_IO_DELAY_UDELAY policy<{'amd64': 'n'}> +CONFIG_IO_DELAY_NONE policy<{'amd64': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Include xmon kernel debugger >> Architecture: powerpc +CONFIG_XMON policy<{'ppc64el': 'y'}> +CONFIG_XMON_DEFAULT policy<{'ppc64el': 'n'}> +CONFIG_XMON_DISASSEMBLY policy<{'ppc64el': 'y'}> +CONFIG_XMON_DEFAULT_RO_MODE policy<{'ppc64el': 'y'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Kernel low-level debugging functions (read help!) + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Kernel low-level debugging functions (read help!) >> Architecture: arm +CONFIG_DEBUG_LL policy<{'armhf': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Kernel low-level debugging functions (read help!) >> Kernel low-level debugging port >> Architecture: arm + +# Menu: Kernel hacking >> Compile-time checks and compiler options +CONFIG_FRAME_WARN policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'ppc64el': '2048', 's390x': '1024'}> +CONFIG_STRIP_ASM_SYMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_READABLE_ASM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HEADERS_INSTALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SECTION_MISMATCH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECTION_MISMATCH_WARN_ONLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FRAME_POINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_STACK_VALIDATION policy<{'amd64': 'y'}> +CONFIG_VMLINUX_MAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_FORCE_WEAK_PER_CPU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_STACK_VALIDATION mark note + +# Menu: Kernel hacking >> Compile-time checks and compiler options >> Compile the kernel with debug info +CONFIG_DEBUG_INFO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_INFO_REDUCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_COMPRESSED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_SPLIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_BTF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_GDB_SCRIPTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_DEBUG_INFO mark note +CONFIG_DEBUG_INFO_SPLIT note +CONFIG_DEBUG_INFO_BTF flag note + +# Menu: Kernel hacking >> Compile-time checks and compiler options >> Compile the kernel with debug info >> DWARF version +CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_DWARF4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_INFO_DWARF5 policy<{'armhf': 'n'}> + +# Menu: Kernel hacking >> Debug Oops, Lockups and Hangs +CONFIG_PANIC_ON_OOPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PANIC_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '10', 's390x': '0'}> +CONFIG_SOFTLOCKUP_DETECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_HARDLOCKUP_DETECTOR policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC policy<{'amd64': 'n', 'ppc64el': 'n'}> +CONFIG_DETECT_HUNG_TASK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT policy<{'amd64': '120', 'arm64': '120', 'armhf': '120', 'ppc64el': '120', 's390x': '120'}> +CONFIG_BOOTPARAM_HUNG_TASK_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_WQ_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_LOCKUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_PANIC_ON_OOPS note + +# Menu: Kernel hacking >> Debug kernel data structures +CONFIG_BUG_ON_DATA_CORRUPTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PLIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_NOTIFIERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_BUG_ON_DATA_CORRUPTION flag + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments +CONFIG_MAGIC_SYSRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE policy<{'amd64': '0x01b6', 'arm64': '0x01b6', 'armhf': '0x01b6', 'ppc64el': '0x01b6', 's390x': '0x01b6'}> +CONFIG_MAGIC_SYSRQ_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 's390x': '""'}> +CONFIG_DEBUG_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> Debugfs default access +CONFIG_DEBUG_FS_ALLOW_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_FS_DISALLOW_MOUNT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_FS_ALLOW_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KCSAN: dynamic data race detector + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KCSAN: dynamic data race detector >> Strict data-race checking + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KGDB: kernel debugger +CONFIG_KGDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KGDB_HONOUR_BLOCKLIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KGDB_SERIAL_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KGDB_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_KGDB_LOW_LEVEL_TRAP policy<{'amd64': 'y'}> +# +CONFIG_KGDB flag +CONFIG_KGDB_SERIAL_CONSOLE note + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KGDB: kernel debugger >> KGDB_KDB: include kdb frontend for kgdb +CONFIG_KGDB_KDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KDB_DEFAULT_ENABLE policy<{'amd64': '0x1', 'arm64': '0x1', 'armhf': '0x1', 'ppc64el': '0x1'}> +CONFIG_KDB_KEYBOARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KDB_CONTINUE_CATASTROPHIC policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> Undefined behaviour sanity checker +CONFIG_UBSAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UBSAN mark note + +# Menu: Kernel hacking >> Kernel Testing and Coverage +CONFIG_MEMTEST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_HYPERV_TESTING policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Code coverage for fuzzing +CONFIG_KCOV policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Fault-injection framework +CONFIG_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Fault-injection framework >> Debugfs entries for fault-injection capabilities + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> KUnit - Enable support for unit tests +CONFIG_KUNIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Notifier error injection +CONFIG_NOTIFIER_ERROR_INJECTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PM_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_NETDEV_NOTIFIER_ERROR_INJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Runtime Testing +CONFIG_RUNTIME_TESTING_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LKDTM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_MIN_HEAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_SORT policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 's390x': '-'}> +CONFIG_TEST_DIV64 policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_KPROBES_SANITY_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BACKTRACE_SELF_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RBTREE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_REED_SOLOMON_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INTERVAL_TREE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PERCPU_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ATOMIC64_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ASYNC_RAID6_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_HEXDUMP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_STRING_HELPERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_STRSCPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_KSTRTOX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_PRINTF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_SCANF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_BITMAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_UUID policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_XARRAY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_OVERFLOW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_RHASHTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_HASH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_IDA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_PARMAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_LKM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_BITOPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_VMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_USER_COPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TEST_BLACKHOLE_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_FIND_BIT_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_FIRMWARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_SYSCTL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_UDELAY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_STATIC_KEYS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_KMOD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_MEMCAT_P policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_LIVEPATCH policy<{'amd64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_OBJAGG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_STACKINIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_MEMINIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_HMM policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n'}> +CONFIG_TEST_FREE_PAGES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_FPU policy<{'amd64': 'n'}> +CONFIG_TEST_CLOCKSOURCE_WATCHDOG policy<{'amd64': 'n'}> +CONFIG_STRING_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_RUNTIME_TESTING_MENU flag +CONFIG_LKDTM flag flag +CONFIG_TEST_LIST_SORT flag +CONFIG_TEST_SORT flag +CONFIG_KPROBES_SANITY_TEST flag +CONFIG_BACKTRACE_SELF_TEST flag +CONFIG_RBTREE_TEST flag +CONFIG_INTERVAL_TREE_TEST flag +CONFIG_PERCPU_TEST flag +CONFIG_ATOMIC64_SELFTEST flag +CONFIG_ASYNC_RAID6_TEST flag +CONFIG_TEST_HEXDUMP flag +CONFIG_TEST_STRING_HELPERS flag +CONFIG_TEST_STRSCPY flag +CONFIG_TEST_KSTRTOX flag +CONFIG_TEST_PRINTF flag +CONFIG_TEST_BITMAP flag +CONFIG_TEST_UUID flag +CONFIG_TEST_XARRAY flag +CONFIG_TEST_OVERFLOW flag +CONFIG_TEST_RHASHTABLE flag +CONFIG_TEST_HASH flag +CONFIG_TEST_IDA flag +CONFIG_TEST_PARMAN flag +CONFIG_TEST_LKM flag +CONFIG_TEST_BITOPS flag +CONFIG_TEST_VMALLOC flag +CONFIG_TEST_USER_COPY flag +CONFIG_TEST_BPF flag +CONFIG_TEST_BLACKHOLE_DEV flag note +CONFIG_FIND_BIT_BENCHMARK flag +CONFIG_TEST_FIRMWARE flag +CONFIG_TEST_SYSCTL flag +CONFIG_TEST_UDELAY flag +CONFIG_TEST_STATIC_KEYS flag +CONFIG_TEST_KMOD flag +CONFIG_TEST_MEMCAT_P flag +CONFIG_TEST_LIVEPATCH flag +CONFIG_TEST_OBJAGG flag +CONFIG_TEST_STACKINIT flag +CONFIG_TEST_MEMINIT flag +CONFIG_TEST_HMM flag +CONFIG_TEST_FPU flag + +# Menu: Kernel hacking >> Kernel debugging +CONFIG_DEBUG_KERNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_MISC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_SHIRQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PREEMPT policy<{'amd64-lowlatency': 'n'}> +CONFIG_DEBUG_KOBJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_CREDENTIALS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_WQ_FORCE_RR_CPU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CPU_HOTPLUG_STATE_CONTROL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LATENCYTOP policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_LATENCYTOP mark note + +# Menu: Kernel hacking >> Lock Debugging (spinlocks, mutexes, etc...) +CONFIG_PROVE_LOCKING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCK_STAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_RT_MUTEXES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SPINLOCK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_MUTEXES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_WW_MUTEX_SLOWPATH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_RWSEMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LOCK_ALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_ATOMIC_SLEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LOCKING_API_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCK_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_WW_MUTEX_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCF_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CSD_LOCK_WAIT_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging +CONFIG_PAGE_EXTENSION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PAGEALLOC policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PAGE_OWNER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PAGE_POISONING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_PAGE_REF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_RODATA_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PTDUMP_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_SLUB_DEBUG_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SLUB_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_STACK_USAGE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCHED_STACK_END_CHECK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_VM_PGTABLE policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_VIRTUAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DEBUG_MEMORY_INIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DEBUG_PER_CPU_MAPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEBUG_KMAP_LOCAL policy<{'armhf': 'n'}> +CONFIG_DEBUG_HIGHMEM policy<{'armhf': 'n'}> +CONFIG_DEBUG_STACKOVERFLOW policy<{'ppc64el': 'n'}> +# +CONFIG_PAGE_POISONING mark note + +# Menu: Kernel hacking >> Memory Debugging >> Debug VM +CONFIG_DEBUG_VM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> Debug object operations +CONFIG_DEBUG_OBJECTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> KASAN: runtime memory debugger +CONFIG_KASAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> KASAN: runtime memory debugger >> Instrumentation type + +# Menu: Kernel hacking >> Memory Debugging >> KASAN: runtime memory debugger >> KASAN mode + +# Menu: Kernel hacking >> Memory Debugging >> KFENCE: low-overhead sampling-based memory safety error detector +CONFIG_KFENCE policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_KFENCE_STATIC_KEYS policy<{'amd64': 'n', 'arm64': 'n', 's390x': 'n'}> +CONFIG_KFENCE_SAMPLE_INTERVAL policy<{'amd64': '0', 'arm64': '0', 's390x': '0'}> +CONFIG_KFENCE_NUM_OBJECTS policy<{'amd64': '255', 'arm64': '255', 's390x': '255'}> +CONFIG_KFENCE_STRESS_TEST_FAULTS policy<{'amd64': '0', 'arm64': '0', 's390x': '0'}> + +CONFIG_KFENCE_STATIC_KEYS mark note + +# Menu: Kernel hacking >> Memory Debugging >> Kernel memory leak detector +CONFIG_DEBUG_KMEMLEAK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> RCU Debugging +CONFIG_RCU_SCALE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_REF_SCALE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_CPU_STALL_TIMEOUT policy<{'amd64': '60', 'arm64': '60', 'armhf': '60', 'ppc64el': '21', 's390x': '21'}> +CONFIG_RCU_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RCU_EQS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_RCU_CPU_STALL_TIMEOUT flag + +# Menu: Kernel hacking >> Sample kernel code +CONFIG_SAMPLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SAMPLE_AUXDISPLAY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_TRACE_EVENTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_TRACE_PRINTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SAMPLE_FTRACE_DIRECT policy<{'amd64': 'm'}> +CONFIG_SAMPLE_TRACE_ARRAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SAMPLE_KOBJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_KPROBES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_HW_BREAKPOINT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SAMPLE_KFIFO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_KDB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SAMPLE_QMI_CLIENT policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SAMPLE_RPMSG_CLIENT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SAMPLE_LIVEPATCH policy<{'amd64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_CONFIGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MTTY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MBOCHS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_SAMPLE_TRACE_PRINTK mark note + +# Menu: Kernel hacking >> Scheduler Debugging +CONFIG_SCHED_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCHEDSTATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Kernel hacking >> Tracers +CONFIG_FTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BOOTTIME_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STACK_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IRQSOFF_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_PREEMPT_TRACER policy<{'amd64-lowlatency': 'n'}> +CONFIG_SCHED_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HWLAT_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_OSNOISE_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TIMERLAT_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MMIOTRACE policy<{'amd64': 'y'}> +CONFIG_FTRACE_SYSCALLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACER_SNAPSHOT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BLK_DEV_IO_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KPROBE_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KPROBE_EVENTS_ON_NOTRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UPROBE_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPF_KPROBE_OVERRIDE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYNTH_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HIST_TRIGGERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACE_EVENT_INJECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACEPOINT_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TRACE_EVAL_MAP_FILE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FTRACE_STARTUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_STARTUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MMIOTRACE_TEST policy<{'amd64': 'n'}> +CONFIG_PREEMPTIRQ_DELAY_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SYNTH_EVENT_GEN_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_KPROBE_EVENT_GEN_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HIST_TRIGGERS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_FTRACE_STARTUP_TEST flag +CONFIG_MMIOTRACE_TEST flag +CONFIG_RING_BUFFER_BENCHMARK flag +CONFIG_RING_BUFFER_STARTUP_TEST flag +CONFIG_TRACE_EVAL_MAP_FILE flag + +# Menu: Kernel hacking >> Tracers >> Branch Profiling +CONFIG_BRANCH_PROFILE_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PROFILE_ANNOTATED_BRANCHES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Tracers >> Kernel Function Tracer +CONFIG_FUNCTION_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FUNCTION_GRAPH_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DYNAMIC_FTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FUNCTION_PROFILER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FTRACE_RECORD_RECURSION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> printk and dmesg options +CONFIG_PRINTK_TIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PRINTK_CALLER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_STACKTRACE_BUILD_ID policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CONSOLE_LOGLEVEL_DEFAULT policy<{'amd64': '7', 'arm64': '7', 'armhf': '7', 'ppc64el': '7', 's390x': '7'}> +CONFIG_CONSOLE_LOGLEVEL_QUIET policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'ppc64el': '4', 's390x': '4'}> +CONFIG_MESSAGE_LOGLEVEL_DEFAULT policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'ppc64el': '4', 's390x': '4'}> +CONFIG_BOOT_PRINTK_DELAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_DYNAMIC_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DYNAMIC_DEBUG_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYMBOLIC_ERRNAME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_BUGVERBOSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Library routines +CONFIG_RAID6_PQ_BENCHMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_CORDIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_PRIME_NUMBERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INDIRECT_PIO policy<{'arm64': 'y'}> +CONFIG_CRC_CCITT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC_T10DIF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC_ITU_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC32 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC32_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRC64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC7 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LIBCRC32C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CRC8 policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RANDOM32_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZLIB_DFLTCC policy<{'s390x': 'y'}> +CONFIG_DMA_RESTRICTED_POOL policy<{'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y'}> +CONFIG_DMA_API_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DMA_MAP_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CPUMASK_OFFSTACK policy<{'amd64': 'y'}> +CONFIG_GLOB_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IRQ_POLL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PARMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OBJAGG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_ZLIB_DFLTCC mark note + +# Menu: Library routines >> CRC32 implementation +CONFIG_CRC32_SLICEBY8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CRC32_SLICEBY4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRC32_SARWATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CRC32_BIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Library routines >> DMA Contiguous Memory Allocator +CONFIG_DMA_CMA policy<{'arm64': 'y', 'armhf': 'y', 's390x': 'n'}> +CONFIG_DMA_PERNUMA_CMA policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_CMA_SIZE_MBYTES policy<{'arm64': '32', 'armhf': '32'}> +CONFIG_CMA_ALIGNMENT policy<{'arm64': '8', 'armhf': '8'}> +# +CONFIG_DMA_CMA mark note note +CONFIG_CMA_SIZE_MBYTES mark note + +# Menu: Library routines >> DMA Contiguous Memory Allocator >> Selected region size +CONFIG_CMA_SIZE_SEL_MBYTES policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CMA_SIZE_SEL_PERCENTAGE policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CMA_SIZE_SEL_MIN policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CMA_SIZE_SEL_MAX policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Library routines >> Select compiled-in fonts +CONFIG_FONTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FONT_8x8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FONT_8x16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FONT_6x11 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_7x14 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_PEARL_8x8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_ACORN_8x8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FONT_MINI_4x6 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_6x10 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FONT_10x18 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_SUN8x16 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_SUN12x22 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FONT_TER16x32 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FONT_6x8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Library routines >> XZ decompression support +CONFIG_XZ_DEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XZ_DEC_X86 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_POWERPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_IA64 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_ARM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_ARMTHUMB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_SPARC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +# +CONFIG_XZ_DEC note flag + +# Menu: Memory Management options +CONFIG_SPARSEMEM_VMEMMAP policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMORY_HOTPLUG policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MEMORY_HOTREMOVE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BALLOON_COMPACTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_COMPACTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PAGE_REPORTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MIGRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BOUNCE policy<{'armhf': 'y'}> +CONFIG_KSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_MMAP_MIN_ADDR policy<{'amd64': '65536', 'arm64': '32768', 'armhf': '32768', 'ppc64el': '65536', 's390x': '65536'}> +CONFIG_MEMORY_FAILURE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_HWPOISON_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_TRANSPARENT_HUGEPAGE policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CLEANCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FRONTSWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEM_SOFT_DIRTY policy<{'amd64': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_ZPOOL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZBUD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_Z3FOLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ZSMALLOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZSMALLOC_STAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFERRED_STRUCT_PAGE_INIT policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IDLE_PAGE_TRACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZONE_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 's390x': 'y'}> +CONFIG_ZONE_DMA32 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ZONE_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_DEVICE_PRIVATE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_PERCPU_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_GUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_READ_ONLY_THP_FOR_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf-generic-lpae': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_ZONE_DMA note +CONFIG_DEFAULT_MMAP_MIN_ADDR mark note +CONFIG_TRANSPARENT_HUGEPAGE flag +CONFIG_MEM_SOFT_DIRTY flag +CONFIG_IDLE_PAGE_TRACKING flag note +CONFIG_PERCPU_STATS flag +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE mark note + +# Menu: Memory Management options >> Compressed cache for swap pages (EXPERIMENTAL) +CONFIG_ZSWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZSWAP_DEFAULT_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Compressed cache for swap pages (EXPERIMENTAL) >> Compressed cache for swap pages default allocator +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Compressed cache for swap pages (EXPERIMENTAL) >> Compressed cache for swap pages default compressor +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Contiguous Memory Allocator +CONFIG_CMA policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CMA_DEBUG policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CMA_DEBUGFS policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CMA_SYSFS policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CMA_AREAS policy<{'arm64': '7', 'armhf': '7', 'ppc64el': '7', 's390x': '7'}> +# +CONFIG_CMA mark note note + +# Menu: Memory Management options >> Data Access Monitoring +CONFIG_DAMON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Memory model +CONFIG_FLATMEM_MANUAL policy<{'armhf': 'n'}> +CONFIG_SPARSEMEM_MANUAL policy<{'amd64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Memory Management options >> Transparent Hugepage Support sysfs defaults +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS policy<{'amd64': 'n', 'arm64': 'n', 'armhf-generic-lpae': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'n', 's390x': 'y'}> + +# Menu: Memory setup >> Architecture: s390 +CONFIG_MAX_PHYSMEM_BITS policy<{'s390x': '46'}> +CONFIG_PACK_STACK policy<{'s390x': 'y'}> + +# Menu: Networking support +CONFIG_NET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AF_KCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CEPH_LIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CEPH_LIB_PRETTYDEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CEPH_LIB_USE_DNS_RESOLVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PSAMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LWTUNNEL_BPF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_FAILOVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_ETHTOOL_NETLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Amateur Radio support +CONFIG_HAMRADIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Amateur Radio support >> Amateur Radio AX.25 Level 2 protocol +CONFIG_AX25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_AX25_DAMA_SLAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_NETROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ROSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Amateur Radio support >> Amateur Radio AX.25 Level 2 protocol >> AX.25 network device drivers +CONFIG_MKISS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6PACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BPQETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_SER_FDX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_SER_HDX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_PAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BAYCOM_EPP policy<{'armhf': 'm'}> +CONFIG_YAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Bluetooth subsystem support +CONFIG_BT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_LE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_MSFTEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_AOSPEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth Classic (BR/EDR) features +CONFIG_BT_BREDR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_RFCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_RFCOMM_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_BNEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_BNEP_MC_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_BNEP_PROTO_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_CMTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HIDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers +CONFIG_BT_HCIBTSDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIUART_LL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIBCM203X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBPA10X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBFUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIDTL1 policy<{'amd64': 'm'}> +CONFIG_BT_HCIBT3C policy<{'amd64': 'm'}> +CONFIG_BT_HCIBLUECARD policy<{'amd64': 'm'}> +CONFIG_BT_HCIVHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_MRVL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_MRVL_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_MTKSDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_MTKUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_QCOMSMD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BT_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers >> HCI UART driver +CONFIG_BT_HCIUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIUART_H4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_NOKIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIUART_BCSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_ATH3K policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_3WIRE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_BCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_RTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_QCA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_AG6XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIUART_MRVL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers >> HCI USB driver +CONFIG_BT_HCIBTUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIBTUSB_AUTOSUSPEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIBTUSB_BCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIBTUSB_MTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_HCIBTUSB_RTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BT_ATH3K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAIF support +CONFIG_CAIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CAIF_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CAIF_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAIF_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support +CONFIG_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_CAN_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_BCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_GW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_J1939 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_ISOTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers +CONFIG_CAN_VCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_VXCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SLCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_DEBUG_DEVICES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support +CONFIG_CAN_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_CALC_BITTIMING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CAN_FLEXCAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_GRCAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_JANZ_ICAN3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_KVASER_PCIEFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_TI_HECC policy<{'armhf': 'm'}> +CONFIG_CAN_XILINXCAN policy<{'arm64': 'm'}> +CONFIG_CAN_IFI_CANFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_MSCAN policy<{'ppc64el': 'm'}> +CONFIG_CAN_PEAK_PCIEFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CAN_RCAR_CANFD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CAN_SOFTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SOFTING_CS policy<{'amd64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Bosch CC770 and Intel AN82527 devices +CONFIG_CAN_CC770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_CC770_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_CC770_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Bosch C_CAN/D_CAN devices +CONFIG_CAN_C_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_C_CAN_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_C_CAN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Bosch M_CAN support +CONFIG_CAN_M_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_M_CAN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_M_CAN_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_M_CAN_TCAN4X5X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> CAN SPI interfaces +CONFIG_CAN_HI311X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_MCP251X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_MCP251XFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_MCP251XFD_SANITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> CAN USB interfaces +CONFIG_CAN_8DEV_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_EMS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_ESD_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_ETAS_ES58X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_GS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_KVASER_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_MCBA_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PEAK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_UCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Philips/NXP SJA1000 devices +CONFIG_CAN_SJA1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_EMS_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_EMS_PCMCIA policy<{'amd64': 'm'}> +CONFIG_CAN_F81601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_KVASER_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PEAK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_PEAK_PCIEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CAN_PEAK_PCMCIA policy<{'amd64': 'm'}> +CONFIG_CAN_PLX_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SJA1000_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_SJA1000_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> NFC subsystem support +CONFIG_NFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NFC_DIGITAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NCI_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NCI_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_HCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_SHDLC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> NFC subsystem support >> Near Field Communication (NFC) devices +CONFIG_NFC_TRF7970A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MEI_PHY policy<{'amd64': 'm'}> +CONFIG_NFC_SIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PORT100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_VIRTUAL_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_FDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_FDP_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN544_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN544_MEI policy<{'amd64': 'm'}> +CONFIG_NFC_PN533_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN533_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_PN532_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MICROREAD_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MICROREAD_MEI policy<{'amd64': 'm'}> +CONFIG_NFC_MRVL_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MRVL_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MRVL_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_MRVL_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST21NFCA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST_NCI_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST_NCI_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NXP_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_NXP_NCI_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_S3FWRN5_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_S3FWRN82_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NFC_ST95HF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options +CONFIG_PACKET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PACKET_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_UNIX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_UNIX_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TLS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TLS_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TLS_TOE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFRM_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XFRM_USER_COMPAT policy<{'amd64': 'm'}> +CONFIG_XFRM_INTERFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XFRM_SUB_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFRM_MIGRATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_XFRM_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_KEY_MIGRATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IUCV policy<{'s390x': 'y'}> +CONFIG_AFIUCV policy<{'s390x': 'm'}> +CONFIG_SMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SMC_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_XDP_SOCKETS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_XDP_SOCKETS_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETWORK_SECMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETWORK_PHY_TIMESTAMPING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VLAN_8021Q policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VLAN_8021Q_GVRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_VLAN_8021Q_MVRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DECNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_DECNET_ROUTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_LLC2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ATALK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_X25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_LAPB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PHONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MAC802154 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DNS_RESOLVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETLINK_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_NSH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_PCPU_DEV_REFCNT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_NET_PRIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_CGROUP_NET_CLASSID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SMC mark note +CONFIG_SMC_DIAG mark note +CONFIG_NETWORK_PHY_TIMESTAMPING mark note + +# Menu: Networking support >> Networking options >> 6LoWPAN Support +CONFIG_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_6LOWPAN_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Networking options >> 6LoWPAN Support >> Next Header and Generic Header Compression Support +CONFIG_6LOWPAN_NHC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_DEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_FRAGMENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_HOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_MOBILITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_ROUTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_NHC_UDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_6LOWPAN_GHC_UDP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_6LOWPAN_GHC_ICMPV6 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Networking options >> 802.1d Ethernet Bridging +CONFIG_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_IGMP_SNOOPING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_VLAN_FILTERING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_MRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_CFM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> Appletalk interfaces support +CONFIG_DEV_APPLETALK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_LTPC policy<{'amd64': 'm'}> +CONFIG_IPDDP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_IPDDP mark note + +# Menu: Networking support >> Networking options >> Asynchronous Transfer Mode (ATM) +CONFIG_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_ATM_CLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_CLIP_NO_ICMP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_ATM_LANE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_MPOA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_BR2684 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATM_BR2684_IPFILTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Networking options >> B.A.T.M.A.N. Advanced Meshing Protocol +CONFIG_BATMAN_ADV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_BATMAN_ADV_BATMAN_V policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_BATMAN_ADV_BLA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_DAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_NC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_MCAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_BATMAN_ADV_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_BATMAN_ADV_TRACING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Networking options >> IEEE Std 802.15.4 Low-Rate Wireless Personal Area Networks support +CONFIG_IEEE802154 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IEEE802154_NL802154_EXPERIMENTAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_IEEE802154_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_IEEE802154_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options >> MultiProtocol Label Switching +CONFIG_MPLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_MPLS_GSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MPLS_ROUTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_MPLS_IPTUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) +CONFIG_NETFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_NETFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration +CONFIG_NETFILTER_INGRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_NETLINK_HOOK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_ACCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_QUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_SYSLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_FLOW_TABLE_INET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter Xtables support (required for ip_tables) +CONFIG_NETFILTER_XTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XTABLES_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_XT_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_AUDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CHECKSUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CLASSIFY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_DSCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_HMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_IDLETIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NETFILTER_XT_TARGET_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NETMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NFLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NFQUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NOTRACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NETFILTER_XT_TARGET_RATEEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TRACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_SECMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TCPMSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_COMMENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNBYTES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNLABEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNTRACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DCCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DEVGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DSCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HELPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPRANGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPVS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_L2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_LENGTH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MULTIPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_NFACCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_OWNER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_POLICY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_PHYSDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_PKTTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_QUOTA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_RATEEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_REALM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_RECENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_SCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STATISTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STRING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_TCPMSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter connection tracking support +CONFIG_NF_CONNTRACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_MARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_SECMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_ZONES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_PROCFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_NF_CONNTRACK_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_TIMEOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_TIMESTAMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_LABELS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_DCCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_SCTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_UDPLITE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_AMANDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_FTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_H323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_IRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_NETBIOS_NS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SNMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_PPTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SANE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_TFTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK_TIMEOUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK_HELPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_GLUE_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_NF_CONNTRACK_PROCFS flag + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter nf_tables support +CONFIG_NF_TABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_INET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFT_NUMGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_FLOW_OFFLOAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_CONNLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_MASQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REDIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_OBJREF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_QUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_QUOTA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_COMPAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_HASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_INET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_XFRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_TPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_FLOW_TABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter nf_tables support >> Netfilter nf_tables netdev tables support +CONFIG_NF_TABLES_NETDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_DUP_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_DUP_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_FWD_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_REJECT_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> DECnet: Netfilter Configuration +CONFIG_DECNET_NF_GRABULATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Ethernet Bridge nf_tables support +CONFIG_NF_TABLES_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_BRIDGE_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_BRIDGE_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Ethernet Bridge tables (ebtables) support +CONFIG_BRIDGE_NF_EBTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_BROUTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_T_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_T_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_802_3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_AMONG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_IP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_PKTTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_STP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_VLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_ARPREPLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_DNAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_MARK_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_SNAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_NFLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP set support +CONFIG_IP_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_MAX policy<{'amd64': '256', 'arm64': '256', 'armhf': '256', 'ppc64el': '256', 's390x': '256'}> +CONFIG_IP_SET_BITMAP_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_BITMAP_IPMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_BITMAP_PORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORTIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORTNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_MAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETPORTNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETIFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_SET_LIST_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP virtual server support +CONFIG_IP_VS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IP_VS_TAB_BITS policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'ppc64el': '12', 's390x': '12'}> +CONFIG_IP_VS_PROTO_TCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_UDP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_ESP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_AH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_SCTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_RR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_WRR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_WLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_FO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_OVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LBLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LBLCR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_DH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_MH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_NQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_TWOS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_IP_VS_SH_TAB_BITS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 's390x': '8'}> +CONFIG_IP_VS_MH_TAB_INDEX policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'ppc64el': '12', 's390x': '12'}> +CONFIG_IP_VS_FTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_VS_NFCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PE_SIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration +CONFIG_NF_SOCKET_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TPROXY_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_ARP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NF_FLOW_TABLE_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_DUP_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_REJECT_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARP_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_NAT_SNMP_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_IPV4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFT_DUP_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IP tables support (required for filtering/masq/NAT) +CONFIG_IP_NF_IPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_RPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_SECURITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IP tables support (required for filtering/masq/NAT) >> Packet mangling +CONFIG_IP_NF_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_CLUSTERIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IP tables support (required for filtering/masq/NAT) >> iptables NAT support +CONFIG_IP_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_NETMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration +CONFIG_NF_SOCKET_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TPROXY_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_FLOW_TABLE_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_DUP_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_REJECT_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NFT_DUP_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration >> IP6 tables support (required for filtering) +CONFIG_IP6_NF_IPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_EUI64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_FRAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_OPTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_IPV6HEADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_MH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_RPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_RT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_SRH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_SECURITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_NPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network testing +CONFIG_NET_PKTGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_DROP_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_NET_DROP_MONITOR note + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing +CONFIG_NET_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_SCH_CBQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HFSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_SCH_PRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_MULTIQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_RED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TEQL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TBF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ETF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TAPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_GRED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_DSMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_NETEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_DRR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_MQPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SKBPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CHOKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_QFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CODEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ_CODEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CAKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HHF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_PIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ_PIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_INGRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_PLUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_TCINDEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_ROUTE4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_CLS_U32_PERF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_CLS_U32_MARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_CLS_RSVP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_RSVP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FLOW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_CGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FLOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_MATCHALL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Actions +CONFIG_NET_CLS_ACT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_ACT_POLICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_GACT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_GACT_PROB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_ACT_MIRRED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SAMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_IPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_PEDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SIMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SKBEDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CSUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_MPLS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_VLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CTINFO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SKBMOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_TUNNEL_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_GATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_TC_SKB_EXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Actions >> Inter-FE action based on IETF ForCES InterFE LFB +CONFIG_NET_ACT_IFE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Allow override default queue discipline +CONFIG_NET_SCH_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Allow override default queue discipline >> Default queuing discipline + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Extended Matches +CONFIG_NET_EMATCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_EMATCH_STACK policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 's390x': '32'}> +CONFIG_NET_EMATCH_CMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_NBYTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_TEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_CANID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_EMATCH_IPSET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_IPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Qualcomm IPC Router support +CONFIG_QRTR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_QRTR_SMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QRTR_TUN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_QRTR_MHI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking +CONFIG_INET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_MULTICAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_IPIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE_DEMUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE_BROADCAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SYN_COOKIES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_IPVTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FOU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_FOU_IP_TUNNELS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INET_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_ESP_OFFLOAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_ESPINTCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INET_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_MD5SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NETLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MPTCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MPTCP_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_SWITCHDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_L3_MASTER_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NET_NCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NCSI_OEM_CMD_GET_MAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NCSI_OEM_CMD_KEEP_PHY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_BPF_STREAM_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SYN_COOKIES mark +CONFIG_NET_SWITCHDEV mark note +CONFIG_NET_SWITCHDEV mark note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> BPF based packet filtering framework (BPFILTER) +CONFIG_BPFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BPFILTER_UMH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Distributed Switch Architecture +CONFIG_NET_DSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_NET_DSA_TAG_AR9331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_BRCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_BRCM_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_BRCM_PREPEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_HELLCREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_GSWIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_DSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_EDSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_MTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_KSZ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_RTL4_A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_OCELOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_OCELOT_8021Q policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_QCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_LAN9303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_SJA1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_TRAILER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NET_DSA_TAG_XRS700X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> INET: socket monitoring interface +CONFIG_INET_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_UDP_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_RAW_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET_DIAG_DESTROY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: advanced router +CONFIG_IP_ADVANCED_ROUTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_FIB_TRIE_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_ROUTE_MULTIPATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_ROUTE_VERBOSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: kernel level autoconfiguration +CONFIG_IP_PNP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_IP_PNP note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: multicast routing +CONFIG_IP_MROUTE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_PIMSM_V1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IP_PIMSM_V2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Layer Two Tunneling Protocol (L2TP) +CONFIG_L2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_L2TP_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_L2TP_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_L2TP_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_L2TP_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Open vSwitch +CONFIG_OPENVSWITCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_GRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_VXLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_GENEVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> TCP: advanced congestion control +CONFIG_TCP_CONG_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TCP_CONG_BIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_CUBIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TCP_CONG_WESTWOOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HSTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HYBLA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_VEGAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_SCALABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_LP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_VENO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_YEAH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_ILLINOIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_DCTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_CDG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_BBR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> TCP: advanced congestion control >> Default TCP congestion control +CONFIG_DEFAULT_CUBIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_RENO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The DCCP Protocol +CONFIG_IP_DCCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The DCCP Protocol >> DCCP CCIDs Configuration +CONFIG_IP_DCCP_CCID2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IP_DCCP_CCID3 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_IP_DCCP_CCID3_DEBUG policy<{'s390x': 'n'}> +# +CONFIG_IP_DCCP_CCID3 flag + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The DCCP Protocol >> DCCP Kernel Hacking +CONFIG_IP_DCCP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The IPv6 protocol +CONFIG_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_ROUTER_PREF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_ROUTE_INFO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_OPTIMISTIC_DAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_INET6_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_ESP_OFFLOAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_INET6_ESPINTCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INET6_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_MIP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_ILA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_VTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_SIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_SIT_6RD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_GRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_IPV6_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_SUBTREES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_MROUTE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_PIMSM_V2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_SEG6_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_SEG6_HMAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IPV6_RPL_LWTUNNEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IPV6_IOAM6_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_IPV6_OPTIMISTIC_DAD flag +CONFIG_IPV6 mark note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The Reliable Datagram Sockets Protocol +CONFIG_RDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDS_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDS_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_RDS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The SCTP Protocol +CONFIG_IP_SCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_SCTP_DBG_OBJCNT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCTP_COOKIE_HMAC_MD5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCTP_COOKIE_HMAC_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SCTP_DBG_OBJCNT flag + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The SCTP Protocol >> Default SCTP cookie HMAC encoding +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The TIPC Protocol +CONFIG_TIPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_TIPC_MEDIA_IB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIPC_MEDIA_UDP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIPC_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TIPC_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Virtual Socket protocol +CONFIG_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VSOCKETS_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VSOCKETS_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_VMWARE_VMCI_VSOCKETS policy<{'amd64': 'm'}> +CONFIG_VIRTIO_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_HYPERV_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Networking support >> Plan 9 Resource Sharing Support (9P2000) +CONFIG_NET_9P policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_9P_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_9P_XEN policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NET_9P_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_NET_9P_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_NET_9P note + +# Menu: Networking support >> RF switch subsystem support +CONFIG_RFKILL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_RFKILL_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_RFKILL_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Networking support >> RxRPC session sockets +CONFIG_AF_RXRPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_AF_RXRPC_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_AF_RXRPC_INJECT_LOSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_AF_RXRPC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_RXKAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Wireless +CONFIG_WIRELESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_LIB80211_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) +CONFIG_MAC80211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MAC80211_RC_MINSTREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_MESH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MAC80211_MESSAGE_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) >> Default rate control algorithm +CONFIG_MAC80211_RC_DEFAULT_MINSTREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) >> Select mac80211 debugging features +CONFIG_MAC80211_DEBUG_MENU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_MAC80211_STA_HASH_MAX_SIZE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0'}> + +# Menu: Networking support >> Wireless >> cfg80211 - wireless configuration API +CONFIG_CFG80211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_NL80211_TESTMODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_DEVELOPER_WARNINGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_DEFAULT_PS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CFG80211_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CFG80211_CRDA_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CFG80211_WEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_CFG80211_WEXT flag + +# Menu: Networking support >> Wireless >> cfg80211 - wireless configuration API >> cfg80211 certification onus +CONFIG_CFG80211_CERTIFICATION_ONUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Platform selection +CONFIG_ARCH_ACTIONS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_SUNXI policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_ARCH_ALPINE policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_ARCH_BCM2835 policy<{'arm64': 'y'}> +CONFIG_ARCH_BERLIN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_BRCMSTB policy<{'arm64': 'y'}> +CONFIG_ARCH_EXYNOS policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_ARCH_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MEDIATEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MVEBU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MXC policy<{'arm64': 'y', 'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ARCH_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_REALTEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_INTEL_SOCFPGA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_TEGRA policy<{'arm64': 'y', 'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ARCH_UNIPHIER policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_ARCH_ROCKCHIP note + +# Menu: Platform selection >> Architecture: arm64 +CONFIG_ARCH_APPLE policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM4908 policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_ARCH_BITMAIN policy<{'arm64': 'y'}> +CONFIG_ARCH_SPARX5 policy<{'arm64': 'y'}> +CONFIG_ARCH_K3 policy<{'arm64': 'y'}> +CONFIG_ARCH_LAYERSCAPE policy<{'arm64': 'y'}> +CONFIG_ARCH_LG1K policy<{'arm64': 'y'}> +CONFIG_ARCH_KEEMBAY policy<{'arm64': 'y'}> +CONFIG_ARCH_S32 policy<{'arm64': 'y'}> +CONFIG_ARCH_SEATTLE policy<{'arm64': 'y'}> +CONFIG_ARCH_SYNQUACER policy<{'arm64': 'y'}> +CONFIG_ARCH_SPRD policy<{'arm64': 'y'}> +CONFIG_ARCH_THUNDER policy<{'arm64': 'y'}> +CONFIG_ARCH_THUNDER2 policy<{'arm64': 'y'}> +CONFIG_ARCH_VISCONTI policy<{'arm64': 'y'}> +CONFIG_ARCH_XGENE policy<{'arm64': 'y'}> +CONFIG_ARCH_ZYNQMP policy<{'arm64': 'y'}> + +# Menu: Power management and ACPI options +CONFIG_SUSPEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SUSPEND_FREEZER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SUSPEND_SKIP_SYNC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_HIBERNATION policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'y', 'ppc64el': 'n'}> +CONFIG_HIBERNATION_SNAPSHOT_DEV policy<{'amd64': 'y', 'armhf': 'y'}> +CONFIG_PM_STD_PARTITION policy<{'amd64': '""', 'armhf': '""'}> +CONFIG_PM_AUTOSLEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PM_WAKELOCKS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_WAKELOCKS_LIMIT policy<{'amd64': '100', 'arm64': '100', 'armhf': '100', 'ppc64el': '100'}> +CONFIG_PM_WAKELOCKS_GC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_TRACE_RTC policy<{'amd64': 'y'}> +CONFIG_APM_EMULATION policy<{'armhf': 'n'}> +CONFIG_WQ_POWER_EFFICIENT_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ENERGY_MODEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KVM_GUEST policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_INTEL_IDLE policy<{'amd64': 'y'}> +# +CONFIG_HIBERNATION flag +CONFIG_HIBERNATION mark note +CONFIG_PM mark note + +# Menu: Power management and ACPI options >> 512x-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 52xx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 82xx-based boards (PQ II) >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 83xx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 86xx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 8xx Machine Type >> Architecture: powerpc + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support +# + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> ACPI Platform Error Interface (APEI) + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> Intel DPTF (Dynamic Platform and Thermal Framework) Support + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> PMIC (Power Management Integrated Circuit) operation region support + +# Menu: Power management and ACPI options >> APM (Advanced Power Management) BIOS support >> Architecture: x86 +# +CONFIG_APM flag + +# Menu: Power management and ACPI options >> Architecture: arm + +# Menu: Power management and ACPI options >> Architecture: arm64 + +# Menu: Power management and ACPI options >> Architecture: powerpc +CONFIG_SCOM_DEBUGFS policy<{'ppc64el': 'y'}> +CONFIG_EPAPR_PARAVIRT policy<{'ppc64el': 'y'}> +CONFIG_PPC_OF_BOOT_TRAMPOLINE policy<{'ppc64el': 'y'}> +CONFIG_PPC_DT_CPU_FTRS policy<{'ppc64el': 'y'}> +CONFIG_UDBG_RTAS_CONSOLE policy<{'ppc64el': 'n'}> +CONFIG_MPIC_MSGR policy<{'ppc64el': 'n'}> +CONFIG_RTAS_PROC policy<{'ppc64el': 'y'}> +CONFIG_RTAS_FLASH policy<{'ppc64el': 'm'}> +CONFIG_QE_GPIO policy<{'ppc64el': 'y'}> +CONFIG_GEN_RTC policy<{'ppc64el': 'y'}> +CONFIG_PPC_POWERNV policy<{'ppc64el': 'y'}> +CONFIG_OPAL_PRD policy<{'ppc64el': 'm'}> +CONFIG_PPC_MEMTRACE policy<{'ppc64el': 'y'}> +CONFIG_PPC_VAS policy<{'ppc64el': 'y'}> + +# Menu: Power management and ACPI options >> Architecture: x86 + +# Menu: Power management and ACPI options >> CPU Frequency scaling + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling +CONFIG_CPU_FREQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_STAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_POWERSAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_USERSPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_ONDEMAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_CONSERVATIVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_SCHEDUTIL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_X86_INTEL_PSTATE policy<{'amd64': 'y'}> +CONFIG_X86_PCC_CPUFREQ policy<{'amd64': 'y'}> +CONFIG_X86_SPEEDSTEP_CENTRINO policy<{'amd64': 'y'}> +CONFIG_X86_P4_CLOCKMOD policy<{'amd64': 'm'}> +CONFIG_ACPI_CPPC_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ACPI_CPPC_CPUFREQ_FIE policy<{'arm64': 'y'}> +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM policy<{'arm64': 'm'}> +CONFIG_ARM_SCPI_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_VEXPRESS_SPC_CPUFREQ policy<{'armhf': 'm'}> +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_IMX6Q_CPUFREQ policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_ARM_MEDIATEK_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_MEDIATEK_CPUFREQ_HW policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_OMAP2PLUS_CPUFREQ policy<{'armhf': 'y'}> +CONFIG_ARM_QCOM_CPUFREQ_NVMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_QCOM_CPUFREQ_HW policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_RASPBERRYPI_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_SCMI_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_TEGRA186_CPUFREQ policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_ARM_TEGRA194_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_TI_CPUFREQ policy<{'armhf': 'y'}> +CONFIG_POWERNV_CPUFREQ policy<{'ppc64el': 'y'}> +CONFIG_QORIQ_CPUFREQ policy<{'arm64': 'm'}> +# +CONFIG_CPU_FREQ_STAT note +CONFIG_CPU_FREQ_GOV_PERFORMANCE note +CONFIG_CPU_FREQ_GOV_POWERSAVE note +CONFIG_CPU_FREQ_GOV_USERSPACE note +CONFIG_CPU_FREQ_GOV_ONDEMAND note +CONFIG_CPU_FREQ_GOV_CONSERVATIVE note +CONFIG_X86_PCC_CPUFREQ note +CONFIG_X86_SPEEDSTEP_CENTRINO note +CONFIG_X86_SPEEDSTEP_ICH note +CONFIG_X86_SPEEDSTEP_SMI note +CONFIG_X86_CPUFREQ_NFORCE2 note + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> ACPI Processor P-States driver +CONFIG_X86_ACPI_CPUFREQ policy<{'amd64': 'y'}> +CONFIG_X86_ACPI_CPUFREQ_CPB policy<{'amd64': 'y'}> +CONFIG_X86_POWERNOW_K8 policy<{'amd64': 'y'}> +CONFIG_X86_AMD_FREQ_SENSITIVITY policy<{'amd64': 'm'}> +# +CONFIG_X86_ACPI_CPUFREQ note +CONFIG_X86_POWERNOW_K8 note + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> CPUfreq driver for Samsung S3C24XX series CPUs (EXPERIMENTAL) + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> Default CPUFreq governor +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE note + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> Generic DT based cpufreq driver +CONFIG_CPUFREQ_DT policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ARM_ARMADA_37XX_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_ARMADA_8K_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_HIGHBANK_CPUFREQ policy<{'armhf': 'm'}> +CONFIG_ARM_IMX_CPUFREQ_DT policy<{'arm64': 'm', 'armhf-generic': 'm'}> +CONFIG_ARM_TEGRA20_CPUFREQ policy<{'arm64': 'y', 'armhf-generic': 'y'}> +CONFIG_ARM_TEGRA124_CPUFREQ policy<{'arm64': 'y', 'armhf-generic': 'y'}> +# +CONFIG_CPUFREQ_DT note + +# Menu: Power management and ACPI options >> CPU Idle + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support +CONFIG_CPU_IDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_GOV_LADDER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_GOV_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_GOV_TEO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_GOV_HALTPOLL policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_HALTPOLL_CPUIDLE policy<{'amd64': 'm'}> + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support >> ARM CPU Idle Drivers +CONFIG_ARM_CPUIDLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_PSCI_CPUIDLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_BIG_LITTLE_CPUIDLE policy<{'armhf': 'y'}> +CONFIG_ARM_HIGHBANK_CPUIDLE policy<{'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> +CONFIG_ARM_EXYNOS_CPUIDLE policy<{'armhf': 'y'}> +CONFIG_ARM_MVEBU_V7_CPUIDLE policy<{'armhf': 'y'}> +CONFIG_ARM_TEGRA_CPUIDLE policy<{'armhf-generic': 'n'}> +CONFIG_ARM_QCOM_SPM_CPUIDLE policy<{'armhf': 'y'}> +# +CONFIG_ARM_HIGHBANK_CPUIDLE note + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support >> MIPS CPU Idle Drivers + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support >> POWERPC CPU Idle Drivers +CONFIG_PSERIES_CPUIDLE policy<{'ppc64el': 'y'}> +CONFIG_POWERNV_CPUIDLE policy<{'ppc64el': 'y'}> + +# Menu: Power management and ACPI options >> CPUIdle driver >> Architecture: powerpc + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support >> ARM CPU Idle Drivers +# + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support >> MIPS CPU Idle Drivers + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support >> POWERPC CPU Idle Drivers + +# Menu: Power management and ACPI options >> Cell Broadband Engine options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Embedded 6xx/7xx/7xxx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Freescale Book-E Machine Type >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Freescale Ethernet driver platform-specific options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Freescale Ethernet driver platform-specific options >> Second Ethernet channel >> Architecture: powerpc + +# Menu: Power management and ACPI options >> IBM pSeries & new (POWER5-based) iSeries +CONFIG_CMM policy<{'ppc64el': 'm', 's390x': 'y'}> +# +CONFIG_CMM flag + +# Menu: Power management and ACPI options >> IBM pSeries & new (POWER5-based) iSeries >> Architecture: powerpc +CONFIG_PPC_PSERIES policy<{'ppc64el': 'y'}> +CONFIG_PPC_SPLPAR policy<{'ppc64el': 'y'}> +CONFIG_DTL policy<{'ppc64el': 'y'}> +CONFIG_PSERIES_ENERGY policy<{'ppc64el': 'm'}> +CONFIG_SCANLOG policy<{'ppc64el': 'm'}> +CONFIG_IO_EVENT_IRQ policy<{'ppc64el': 'y'}> +CONFIG_LPARCFG policy<{'ppc64el': 'y'}> +CONFIG_PPC_SMLPAR policy<{'ppc64el': 'y'}> +CONFIG_HV_PERF_CTRS policy<{'ppc64el': 'y'}> +CONFIG_PAPR_SCM policy<{'ppc64el': 'm'}> +CONFIG_PPC_SVM policy<{'ppc64el': 'y'}> + +# Menu: Power management and ACPI options >> MPC8xx CPM Options >> 8xx advanced setup >> Architecture: powerpc + +# Menu: Power management and ACPI options >> MPC8xx CPM Options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> MPC8xx CPM Options >> Microcode patch selection >> Architecture: powerpc + +# Menu: Power management and ACPI options >> PA Semi PWRficient options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> PS3 Platform Options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> PS3 Platform Options >> PS3 Advanced configuration options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Power Management Debug Support +CONFIG_PM_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_ADVANCED_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_TEST_SUSPEND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DPM_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_PM_DEBUG flag + +# Menu: Power management and ACPI options >> Support for 47x variant >> Architecture: powerpc + +# Menu: Processor support +CONFIG_SMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NR_CPUS policy<{'amd64': '8192', 'arm64': '256', 'armhf': '4', 'ppc64el': '2048', 's390x': '512'}> +# +CONFIG_NR_CPUS note + +# Menu: Processor support >> Architecture: powerpc +CONFIG_PPC_FPU policy<{'ppc64el': 'y'}> +CONFIG_ALTIVEC policy<{'ppc64el': 'y'}> +CONFIG_VSX policy<{'ppc64el': 'y'}> +CONFIG_PPC_RADIX_MMU policy<{'ppc64el': 'y'}> +CONFIG_PPC_RADIX_MMU_DEFAULT policy<{'ppc64el': 'y'}> +CONFIG_PPC_KUEP policy<{'ppc64el': 'y'}> +CONFIG_PPC_KUAP policy<{'ppc64el': 'y'}> +CONFIG_PPC_KUAP_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_PMU_SYSFS policy<{'ppc64el': 'n'}> + +# Menu: Processor support >> CPU selection +CONFIG_GENERIC_CPU policy<{'amd64': 'y', 'ppc64el': 'y'}> + +# Menu: Processor support >> CPU selection >> Architecture: powerpc +CONFIG_POWER7_CPU policy<{'ppc64el': 'n'}> +CONFIG_POWER8_CPU policy<{'ppc64el': 'n'}> +CONFIG_POWER9_CPU policy<{'ppc64el': 'n'}> + +# Menu: Processor support >> Processor Type >> Architecture: powerpc +CONFIG_PPC_BOOK3S_64 policy<{'ppc64el': 'y'}> +CONFIG_PPC_BOOK3E_64 policy<{'ppc64el': 'n'}> + +# Menu: Processor type and features +CONFIG_NUMA policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KEXEC_FILE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KEXEC_SIG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ARCH_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RELOCATABLE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RANDOMIZE_BASE policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_SCHED_MC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> +CONFIG_SCHED_SMT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_NODES_SHIFT policy<{'amd64': '10', 'arm64': '6', 'ppc64el': '8', 's390x': '1'}> +CONFIG_PARAVIRT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n'}> +CONFIG_PARAVIRT_TIME_ACCOUNTING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n'}> +CONFIG_XEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n'}> +CONFIG_HIGHPTE policy<{'armhf': 'y'}> +CONFIG_COMPAT_VDSO policy<{'amd64': 'n'}> +CONFIG_HIGHMEM policy<{'armhf': 'y'}> +CONFIG_FORCE_MAX_ZONEORDER policy<{'arm64-generic': '13', 'arm64-generic-64k': '14', 'armhf-generic': '12', 'armhf-generic-lpae': '11', 'ppc64el': '9'}> +# +CONFIG_RELOCATABLE flag +CONFIG_HOTPLUG_CPU flag +CONFIG_NUMA note +CONFIG_COMPAT_VDSO mark + +# Menu: Processor type and features >> ARM errata workarounds via the alternatives framework >> Architecture: arm64 +CONFIG_ARM64_ERRATUM_826319 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_827319 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_824069 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_819472 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_832075 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_834220 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_845719 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_843419 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1024718 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1418040 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1165522 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1319367 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1530923 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1286807 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1463225 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1542419 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1508412 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_22375 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_23144 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_23154 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_27456 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_30115 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_TX2_ERRATUM_219 policy<{'arm64': 'y'}> +CONFIG_FUJITSU_ERRATUM_010001 policy<{'arm64': 'y'}> +CONFIG_HISILICON_ERRATUM_161600802 policy<{'arm64': 'y'}> +CONFIG_QCOM_FALKOR_ERRATUM_1003 policy<{'arm64': 'y'}> +CONFIG_QCOM_FALKOR_ERRATUM_1009 policy<{'arm64': 'y'}> +CONFIG_QCOM_QDF2400_ERRATUM_0065 policy<{'arm64': 'y'}> +CONFIG_QCOM_FALKOR_ERRATUM_E1041 policy<{'arm64': 'y'}> +CONFIG_NVIDIA_CARMEL_CNP_ERRATUM policy<{'arm64': 'y'}> +CONFIG_SOCIONEXT_SYNQUACER_PREITS policy<{'arm64': 'y'}> +# +CONFIG_ARM64_ERRATUM_843419 mark note +CONFIG_QCOM_QDF2400_ERRATUM_0065 mark note + +# Menu: Processor type and features >> ARMv8.1 architectural features >> Architecture: arm64 +CONFIG_ARM64_HW_AFDBM policy<{'arm64': 'y'}> +CONFIG_ARM64_PAN policy<{'arm64': 'y'}> +CONFIG_ARM64_USE_LSE_ATOMICS policy<{'arm64': 'y'}> +# +CONFIG_ARM64_USE_LSE_ATOMICS mark note + +# Menu: Processor type and features >> ARMv8.2 architectural features >> Architecture: arm64 +CONFIG_ARM64_PMEM policy<{'arm64': 'y'}> +CONFIG_ARM64_RAS_EXTN policy<{'arm64': 'y'}> +CONFIG_ARM64_CNP policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.3 architectural features >> Architecture: arm64 +CONFIG_ARM64_PTR_AUTH policy<{'arm64': 'y'}> +CONFIG_ARM64_PTR_AUTH_KERNEL policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.4 architectural features >> Architecture: arm64 +CONFIG_ARM64_AMU_EXTN policy<{'arm64': 'y'}> +CONFIG_ARM64_TLB_RANGE policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.5 architectural features + +# Menu: Processor type and features >> ARMv8.5 architectural features >> Architecture: arm64 +CONFIG_ARM64_BTI policy<{'arm64': 'y'}> +CONFIG_ARM64_BTI_KERNEL policy<{'arm64': 'y'}> +CONFIG_ARM64_E0PD policy<{'arm64': 'y'}> +CONFIG_ARM64_MTE policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.7 architectural features >> Architecture: arm64 +CONFIG_ARM64_EPAN policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> Architecture: arm +CONFIG_HAVE_ARM_ARCH_TIMER policy<{'armhf': 'y'}> +CONFIG_ARM_PSCI policy<{'armhf': 'y'}> +CONFIG_THUMB2_KERNEL policy<{'armhf': 'n'}> +CONFIG_ARM_PATCH_IDIV policy<{'armhf': 'y'}> +CONFIG_AEABI policy<{'armhf': 'y'}> +CONFIG_OABI_COMPAT policy<{'armhf': 'n'}> +CONFIG_CPU_SW_DOMAIN_PAN policy<{'armhf-generic': 'y'}> +CONFIG_ARM_MODULE_PLTS policy<{'armhf': 'y'}> +CONFIG_UACCESS_WITH_MEMCPY policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Architecture: arm64 +CONFIG_KEXEC_IMAGE_VERIFY_SIG policy<{'arm64': 'n'}> +CONFIG_UNMAP_KERNEL_AT_EL0 policy<{'arm64': 'y'}> +CONFIG_RODATA_FULL_DEFAULT_ENABLED policy<{'arm64': 'y'}> +CONFIG_ARM64_SW_TTBR0_PAN policy<{'arm64': 'y'}> +CONFIG_ARM64_TAGGED_ADDR_ABI policy<{'arm64': 'y'}> +CONFIG_ARM64_SVE policy<{'arm64': 'y'}> +CONFIG_ARM64_MODULE_PLTS policy<{'arm64': 'y'}> +CONFIG_ARM64_PSEUDO_NMI policy<{'arm64': 'y'}> +CONFIG_ARM64_DEBUG_PRIORITY_MASKING policy<{'arm64': 'n'}> +CONFIG_RANDOMIZE_MODULE_REGION_FULL policy<{'arm64': 'y'}> +# +CONFIG_KEXEC_IMAGE_VERIFY_SIG flag + +# Menu: Processor type and features >> Architecture: powerpc +CONFIG_PPC_TRANSACTIONAL_MEM policy<{'ppc64el': 'y'}> +CONFIG_PPC_UV policy<{'ppc64el': 'y'}> +CONFIG_LD_HEAD_STUB_CATCH policy<{'ppc64el': 'n'}> +CONFIG_PPC_QUEUED_SPINLOCKS policy<{'ppc64el': 'n'}> +CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE policy<{'ppc64el': 'y'}> +CONFIG_RELOCATABLE_TEST policy<{'ppc64el': 'n'}> +CONFIG_FA_DUMP policy<{'ppc64el': 'y'}> +CONFIG_OPAL_CORE policy<{'ppc64el': 'n'}> +CONFIG_IRQ_ALL_CPUS policy<{'ppc64el': 'y'}> +CONFIG_THREAD_SHIFT policy<{'ppc64el': '14'}> +CONFIG_DATA_SHIFT policy<{'ppc64el': '24'}> +CONFIG_PPC_SUBPAGE_PROT policy<{'ppc64el': 'y'}> +CONFIG_PPC_PROT_SAO_LPAR policy<{'ppc64el': 'n'}> +CONFIG_PPC_DENORMALISATION policy<{'ppc64el': 'y'}> +CONFIG_EXTRA_TARGETS policy<{'ppc64el': '""'}> +CONFIG_PPC_MEM_KEYS policy<{'ppc64el': 'n'}> +CONFIG_PPC_SECURE_BOOT policy<{'ppc64el': 'y'}> +CONFIG_PPC_SECVAR_SYSFS policy<{'ppc64el': 'y'}> +CONFIG_PPC_RTAS_FILTER policy<{'ppc64el': 'y'}> +# +CONFIG_FA_DUMP note +CONFIG_PPC_MEM_KEYS flag note +CONFIG_PPC_SECURE_BOOT mark note note +CONFIG_PPC_SECVAR_SYSFS mark note + +# Menu: Processor type and features >> Architecture: s390 +CONFIG_KERNEL_NOBP policy<{'s390x': 'n'}> +CONFIG_EXPOLINE policy<{'s390x': 'y'}> +CONFIG_SCHED_TOPOLOGY policy<{'s390x': 'y'}> + +# Menu: Processor type and features >> Architecture: x86 +CONFIG_X86_FEATURE_NAMES policy<{'amd64': 'y'}> +CONFIG_X86_X2APIC policy<{'amd64': 'y'}> +CONFIG_X86_MPPARSE policy<{'amd64': 'y'}> +CONFIG_RETPOLINE policy<{'amd64': 'y'}> +CONFIG_X86_CPU_RESCTRL policy<{'amd64': 'y'}> +CONFIG_X86_EXTENDED_PLATFORM policy<{'amd64': 'y'}> +CONFIG_X86_INTEL_LPSS policy<{'amd64': 'y'}> +CONFIG_X86_AMD_PLATFORM_DEVICE policy<{'amd64': 'y'}> +CONFIG_IOSF_MBI policy<{'amd64': 'y'}> +CONFIG_IOSF_MBI_DEBUG policy<{'amd64': 'y'}> +CONFIG_SCHED_OMIT_FRAME_POINTER policy<{'amd64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HPET_TIMER policy<{'amd64': 'y'}> +CONFIG_GART_IOMMU policy<{'amd64': 'y'}> +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS policy<{'amd64': 'y'}> +CONFIG_X86_16BIT policy<{'amd64': 'y'}> +CONFIG_X86_VSYSCALL_EMULATION policy<{'amd64': 'y'}> +CONFIG_X86_IOPL_IOPERM policy<{'amd64': 'y'}> +CONFIG_I8K policy<{'amd64': 'm'}> +CONFIG_X86_MSR policy<{'amd64': 'm'}> +CONFIG_X86_CPUID policy<{'amd64': 'm'}> +CONFIG_X86_5LEVEL policy<{'amd64': 'y'}> +CONFIG_X86_CPA_STATISTICS policy<{'amd64': 'n'}> +CONFIG_AMD_MEM_ENCRYPT policy<{'amd64': 'y'}> +CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT policy<{'amd64': 'n'}> +CONFIG_ARCH_MEMORY_PROBE policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_X86_PMEM_LEGACY policy<{'amd64': 'y'}> +CONFIG_X86_CHECK_BIOS_CORRUPTION policy<{'amd64': 'y'}> +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK policy<{'amd64': 'y'}> +CONFIG_MTRR policy<{'amd64': 'y'}> +CONFIG_MTRR_SANITIZER policy<{'amd64': 'y'}> +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT policy<{'amd64': '1'}> +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT policy<{'amd64': '1'}> +CONFIG_X86_PAT policy<{'amd64': 'y'}> +CONFIG_X86_SMAP policy<{'amd64': 'y'}> +CONFIG_X86_UMIP policy<{'amd64': 'y'}> +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS policy<{'amd64': 'y'}> +CONFIG_X86_SGX policy<{'amd64': 'y'}> +CONFIG_EFI_STUB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_EFI_MIXED policy<{'amd64': 'y'}> +CONFIG_KEXEC_SIG_FORCE policy<{'amd64': 'n'}> +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG policy<{'amd64': 'y'}> +CONFIG_KEXEC_JUMP policy<{'amd64': 'y'}> +CONFIG_PHYSICAL_ALIGN policy<{'amd64': '0x200000'}> +CONFIG_RANDOMIZE_MEMORY policy<{'amd64': 'y'}> +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING policy<{'amd64': '0xa'}> +CONFIG_BOOTPARAM_HOTPLUG_CPU0 policy<{'amd64': 'n'}> +CONFIG_DEBUG_HOTPLUG_CPU0 policy<{'amd64': 'n'}> +CONFIG_CMDLINE_BOOL policy<{'amd64': 'n'}> +CONFIG_MODIFY_LDT_SYSCALL policy<{'amd64': 'y'}> +# +CONFIG_X86_LEGACY_VM86 note +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG flag note +CONFIG_MODIFY_LDT_SYSCALL flag note + +# Menu: Processor type and features >> CPU microcode loading support >> Architecture: x86 +CONFIG_MICROCODE policy<{'amd64': 'y'}> +CONFIG_MICROCODE_INTEL policy<{'amd64': 'y'}> +CONFIG_MICROCODE_AMD policy<{'amd64': 'y'}> +CONFIG_MICROCODE_OLD_INTERFACE policy<{'amd64': 'y'}> +# +CONFIG_MICROCODE_OLD_INTERFACE flag + +# Menu: Processor type and features >> Endianness + +# Menu: Processor type and features >> Endianness >> Architecture: arm64 + +# Menu: Processor type and features >> Expoline default >> Architecture: s390 +CONFIG_EXPOLINE_OFF policy<{'s390x': 'n'}> +CONFIG_EXPOLINE_AUTO policy<{'s390x': 'y'}> +CONFIG_EXPOLINE_FULL policy<{'s390x': 'n'}> + +# Menu: Processor type and features >> High Memory Support >> Architecture: x86 + +# Menu: Processor type and features >> Kernel command line type + +# Menu: Processor type and features >> Kernel command line type >> Architecture: powerpc + +# Menu: Processor type and features >> Kernel support for 32-bit EL0 +CONFIG_KUSER_HELPERS policy<{'arm64': 'y', 'armhf': 'y'}> +# + +# Menu: Processor type and features >> Kernel support for 32-bit EL0 >> Architecture: arm64 + +# Menu: Processor type and features >> Kernel support for 32-bit EL0 >> Emulate deprecated/obsolete ARMv8 instructions >> Architecture: arm64 +CONFIG_ARMV8_DEPRECATED policy<{'arm64': 'y'}> +CONFIG_SWP_EMULATION policy<{'arm64': 'y'}> +CONFIG_CP15_BARRIER_EMULATION policy<{'arm64': 'y'}> +CONFIG_SETEND_EMULATION policy<{'arm64': 'y'}> +# +CONFIG_ARMV8_DEPRECATED mark note +CONFIG_SWP_EMULATION mark note +CONFIG_CP15_BARRIER_EMULATION mark note +CONFIG_SETEND_EMULATION mark note + +# Menu: Processor type and features >> Linux guest support >> Architecture: x86 +CONFIG_HYPERVISOR_GUEST policy<{'amd64': 'y'}> +CONFIG_XEN_PVHVM_GUEST policy<{'amd64': 'y'}> +CONFIG_ARCH_CPUIDLE_HALTPOLL policy<{'amd64': 'y'}> +CONFIG_PVH policy<{'amd64': 'y'}> +CONFIG_JAILHOUSE_GUEST policy<{'amd64': 'y'}> +CONFIG_ACRN_GUEST policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code >> Architecture: x86 +CONFIG_PARAVIRT_DEBUG policy<{'amd64': 'n'}> +CONFIG_PARAVIRT_SPINLOCKS policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code >> Xen guest support + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code >> Xen guest support >> Architecture: x86 +CONFIG_XEN_PV policy<{'amd64': 'y'}> +CONFIG_XEN_DOM0 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_512GB policy<{'amd64': 'y'}> +CONFIG_XEN_DEBUG_FS policy<{'amd64': 'n'}> +CONFIG_XEN_PVH policy<{'amd64': 'y'}> +# +CONFIG_XEN_512GB flag note + +# Menu: Processor type and features >> Machine Check / overheating reporting >> Architecture: x86 +CONFIG_X86_MCE policy<{'amd64': 'y'}> +CONFIG_X86_MCELOG_LEGACY policy<{'amd64': 'y'}> +CONFIG_X86_MCE_INTEL policy<{'amd64': 'y'}> +CONFIG_X86_MCE_AMD policy<{'amd64': 'y'}> +CONFIG_X86_MCE_INJECT policy<{'amd64': 'm'}> + +# Menu: Processor type and features >> Math emulation options >> Architecture: powerpc + +# Menu: Processor type and features >> Memory split +CONFIG_VMSPLIT_3G policy<{'armhf': 'y'}> +CONFIG_VMSPLIT_3G_OPT policy<{'armhf-generic': 'n'}> +CONFIG_VMSPLIT_2G policy<{'armhf': 'n'}> +CONFIG_VMSPLIT_1G policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Memory split >> Architecture: arm + +# Menu: Processor type and features >> Memory split >> Architecture: x86 + +# Menu: Processor type and features >> Page size >> Architecture: arm64 +CONFIG_ARM64_4K_PAGES policy<{'arm64-generic': 'y', 'arm64-generic-64k': 'n'}> +CONFIG_ARM64_16K_PAGES policy<{'arm64': 'n'}> +CONFIG_ARM64_64K_PAGES policy<{'arm64-generic': 'n', 'arm64-generic-64k': 'y'}> + +# Menu: Processor type and features >> Page size >> Architecture: powerpc +CONFIG_PPC_4K_PAGES policy<{'ppc64el': 'n'}> +CONFIG_PPC_64K_PAGES policy<{'ppc64el': 'y'}> + +# Menu: Processor type and features >> Performance monitoring >> Architecture: x86 +CONFIG_PERF_EVENTS_INTEL_UNCORE policy<{'amd64': 'y'}> +CONFIG_PERF_EVENTS_INTEL_RAPL policy<{'amd64': 'm'}> +CONFIG_PERF_EVENTS_INTEL_CSTATE policy<{'amd64': 'm'}> +CONFIG_PERF_EVENTS_AMD_POWER policy<{'amd64': 'n'}> +CONFIG_PERF_EVENTS_AMD_UNCORE policy<{'amd64': 'm'}> + +# Menu: Processor type and features >> Physical address space size >> Architecture: arm64 +CONFIG_ARM64_PA_BITS_48 policy<{'arm64': 'y'}> +CONFIG_ARM64_PA_BITS_52 policy<{'arm64-generic-64k': 'n'}> + +# Menu: Processor type and features >> Power Management Debug Support +# + +# Menu: Processor type and features >> Processor family + +# Menu: Processor type and features >> Processor family >> Architecture: x86 +CONFIG_MK8 policy<{'amd64': 'n'}> +CONFIG_MPSC policy<{'amd64': 'n'}> +CONFIG_MCORE2 policy<{'amd64': 'n'}> +CONFIG_MATOM policy<{'amd64': 'n'}> + +# Menu: Processor type and features >> Processor type >> Architecture: s390 +CONFIG_MARCH_Z900 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z990 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z9_109 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z10 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z196 policy<{'s390x': 'n'}> +CONFIG_MARCH_ZEC12 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z13 policy<{'s390x': 'y'}> +CONFIG_MARCH_Z14 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z15 policy<{'s390x': 'n'}> + +# Menu: Processor type and features >> Support for extended (non-PC) x86 platforms >> Architecture: x86 +CONFIG_X86_NUMACHIP policy<{'amd64': 'y'}> +CONFIG_X86_VSMP policy<{'amd64': 'n'}> +CONFIG_X86_UV policy<{'amd64': 'y'}> +CONFIG_X86_GOLDFISH policy<{'amd64': 'n'}> +CONFIG_X86_INTEL_MID policy<{'amd64': 'n'}> +# +CONFIG_X86_UV mark note + +# Menu: Processor type and features >> Supported processor vendors >> Architecture: x86 +CONFIG_PROCESSOR_SELECT policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_INTEL policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_AMD policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_HYGON policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_CENTAUR policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_ZHAOXIN policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Symmetric Multi-Processing +# + +# Menu: Processor type and features >> Symmetric Multi-Processing >> Architecture: arm +CONFIG_SMP_ON_UP policy<{'armhf': 'y'}> +CONFIG_ARM_CPU_TOPOLOGY policy<{'armhf': 'y'}> +CONFIG_MCPM policy<{'armhf': 'y'}> +CONFIG_BIG_LITTLE policy<{'armhf': 'y'}> +CONFIG_BL_SWITCHER policy<{'armhf': 'y'}> +CONFIG_BL_SWITCHER_DUMMY_IF policy<{'armhf': 'm'}> +CONFIG_STACKPROTECTOR_PER_TASK policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> Symmetric multi-processing support +# + +# Menu: Processor type and features >> Symmetric multi-processing support >> Architecture: x86 +CONFIG_MAXSMP policy<{'amd64': 'y'}> +CONFIG_SCHED_MC_PRIO policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Symmetric multi-processing support >> NUMA Memory Allocation and Scheduler Support +# + +# Menu: Processor type and features >> Symmetric multi-processing support >> NUMA Memory Allocation and Scheduler Support >> Architecture: x86 +CONFIG_NUMA_EMU policy<{'amd64': 'n'}> +CONFIG_AMD_NUMA policy<{'amd64': 'y'}> +CONFIG_X86_64_ACPI_NUMA policy<{'amd64': 'y'}> +# +CONFIG_NUMA_EMU note mark +CONFIG_NUMA_EMU note + +# Menu: Processor type and features >> TSX enable mode >> Architecture: x86 +CONFIG_X86_INTEL_TSX_MODE_OFF policy<{'amd64': 'y'}> +CONFIG_X86_INTEL_TSX_MODE_ON policy<{'amd64': 'n'}> +CONFIG_X86_INTEL_TSX_MODE_AUTO policy<{'amd64': 'n'}> + +# Menu: Processor type and features >> Timer frequency +CONFIG_HZ_100 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_HZ_250 policy<{'amd64-generic': 'y', 'amd64-lowlatency': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_HZ_300 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HZ_1000 policy<{'amd64-generic': 'n', 'amd64-lowlatency': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Processor type and features >> Timer frequency >> Architecture: arm +CONFIG_HZ_200 policy<{'armhf': 'n'}> +CONFIG_HZ_500 policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Tune code generation >> Architecture: s390 +CONFIG_TUNE_DEFAULT policy<{'s390x': 'n'}> +CONFIG_TUNE_Z900 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z990 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z9_109 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z10 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z196 policy<{'s390x': 'n'}> +CONFIG_TUNE_ZEC12 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z13 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z14 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z15 policy<{'s390x': 'y'}> + +# Menu: Processor type and features >> Virtual address space size >> Architecture: arm64 +CONFIG_ARM64_VA_BITS_39 policy<{'arm64-generic': 'n'}> +CONFIG_ARM64_VA_BITS_42 policy<{'arm64-generic-64k': 'n'}> +CONFIG_ARM64_VA_BITS_48 policy<{'arm64': 'y'}> +CONFIG_ARM64_VA_BITS_52 policy<{'arm64-generic-64k': 'n'}> +# +CONFIG_ARM64_VA_BITS_48 mark note + +# Menu: Processor type and features >> vsyscall table for legacy applications >> Architecture: x86 +CONFIG_LEGACY_VSYSCALL_EMULATE policy<{'amd64': 'n'}> +CONFIG_LEGACY_VSYSCALL_XONLY policy<{'amd64': 'y'}> +CONFIG_LEGACY_VSYSCALL_NONE policy<{'amd64': 'n'}> +# +CONFIG_LEGACY_VSYSCALL_XONLY flag + +# Menu: Security options +CONFIG_SECURITY_DMESG_RESTRICT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_PERF_EVENTS_RESTRICT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITYFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PAGE_TABLE_ISOLATION policy<{'amd64': 'y'}> +CONFIG_INTEL_TXT policy<{'amd64': 'y'}> +CONFIG_HARDENED_USERCOPY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HARDENED_USERCOPY_FALLBACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_HARDENED_USERCOPY_PAGESPAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_FORTIFY_SOURCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_STATIC_USERMODEHELPER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LSM policy<{'amd64': '"lockdown,yama,integrity,apparmor"', 'arm64': '"lockdown,yama,integrity,apparmor"', 'armhf': '"lockdown,yama,integrity,apparmor"', 'ppc64el': '"lockdown,yama,integrity,apparmor"', 's390x': '"lockdown,yama,integrity,apparmor"'}> +# +CONFIG_SECURITY_DMESG_RESTRICT mark +CONFIG_LSM mark + +# Menu: Security options >> Enable access key retention support +CONFIG_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KEYS_REQUEST_CACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_PERSISTENT_KEYRINGS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRUSTED_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ENCRYPTED_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KEY_DH_OPERATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_KEY_NOTIFICATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models +CONFIG_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_NETWORK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_INFINIBAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_NETWORK_XFRM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_PATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LSM_MMAP_MIN_ADDR policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 's390x': '0'}> +CONFIG_SECURITY_LOADPIN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_YAMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SAFESETID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_LOCKDOWN_LSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LOCK_DOWN_IN_SECURE_BOOT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_LANDLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SECURITY mark +CONFIG_LSM_MMAP_MIN_ADDR mark flag +CONFIG_SECURITY_YAMA mark +CONFIG_SECURITY_SAFESETID mark note +CONFIG_SECURITY_LOCKDOWN_LSM mark +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY mark +CONFIG_LOCK_DOWN_IN_SECURE_BOOT mark + +# Menu: Security options >> Enable different security models >> AppArmor support +CONFIG_SECURITY_APPARMOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem +CONFIG_INTEGRITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_SIGNATURE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_AUDIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> EVM support +CONFIG_EVM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM_ATTR_FSUUID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM_EXTRA_SMACK_XATTRS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM_ADD_XATTRS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EVM_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_EVM_X509_PATH policy<{'ppc64el': '"/etc/keys/x509_evm.der"'}> +# +CONFIG_EVM note +CONFIG_EVM_ATTR_FSUUID note +CONFIG_EVM_LOAD_X509 note +CONFIG_EVM_X509_PATH note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Enable asymmetric keys support +CONFIG_INTEGRITY_ASYMMETRIC_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_PLATFORM_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LOAD_PPC_KEYS policy<{'ppc64el': 'y'}> +CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_INTEGRITY_PLATFORM_KEYRING mark note +CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY mark note +CONFIG_LOAD_PPC_KEYS mark note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) +CONFIG_IMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_KEXEC policy<{'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_IMA_WRITE_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_READ_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IMA_DISABLE_HTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_IMA mark note +CONFIG_IMA_KEXEC mark note +CONFIG_IMA_WRITE_POLICY mark note +CONFIG_IMA_READ_POLICY mark note note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Appraise integrity measurements +CONFIG_IMA_APPRAISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_ARCH_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IMA_APPRAISE_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_APPRAISE_MODSIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_BLACKLIST_KEYRING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IMA_X509_PATH policy<{'ppc64el': '"/etc/keys/x509_ima.der"'}> +CONFIG_IMA_APPRAISE_SIGNED_INIT policy<{'ppc64el': 'n'}> +# +CONFIG_IMA_APPRAISE mark note +CONFIG_IMA_TRUSTED_KEYRING mark note +CONFIG_IMA_BLACKLIST_KEYRING mark note +CONFIG_IMA_LOAD_X509 mark note +CONFIG_IMA_X509_PATH mark note +CONFIG_IMA_APPRAISE_SIGNED_INIT mark note +CONFIG_IMA_ARCH_POLICY mark note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Appraise integrity measurements >> IMA build time configured policy rules +CONFIG_IMA_APPRAISE_BUILD_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Default integrity hash algorithm +CONFIG_IMA_DEFAULT_HASH_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_IMA_DEFAULT_HASH_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_IMA_DEFAULT_HASH_SHA512 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_IMA_DEFAULT_HASH_SHA256 note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Default template +CONFIG_IMA_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_NG_TEMPLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_IMA_SIG_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> +# +CONFIG_IMA_SIG_TEMPLATE note + +# Menu: Security options >> Enable different security models >> Kernel default lockdown mode +CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Security options >> Enable different security models >> NSA SELinux Support +CONFIG_SECURITY_SELINUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_SECURITY_SELINUX_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_SELINUX_DEVELOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_AVC_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 's390x': '1'}> +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS policy<{'amd64': '9', 'arm64': '9', 'armhf': '9', 'ppc64el': '9', 's390x': '9'}> +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE policy<{'amd64': '256', 'arm64': '256', 'armhf': '256', 'ppc64el': '256', 's390x': '256'}> +# +CONFIG_SECURITY_SELINUX mark +CONFIG_SECURITY_SELINUX_DISABLE marknote + +# Menu: Security options >> Enable different security models >> Simplified Mandatory Access Control Kernel Support +CONFIG_SECURITY_SMACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SMACK_BRINGUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_SMACK_NETFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SMACK_APPEND_SIGNALS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_SECURITY_SMACK mark + +# Menu: Security options >> Enable different security models >> TOMOYO Linux Support +CONFIG_SECURITY_TOMOYO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'ppc64el': '2048', 's390x': '2048'}> +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'ppc64el': '1024', 's390x': '1024'}> +CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SECURITY_TOMOYO_POLICY_LOADER policy<{'amd64': '"/sbin/tomoyo-init"', 'arm64': '"/sbin/tomoyo-init"', 'armhf': '"/sbin/tomoyo-init"', 'ppc64el': '"/sbin/tomoyo-init"', 's390x': '"/sbin/tomoyo-init"'}> +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER policy<{'amd64': '"/sbin/init"', 'arm64': '"/sbin/init"', 'armhf': '"/sbin/init"', 'ppc64el': '"/sbin/init"', 's390x': '"/sbin/init"'}> +CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Security options >> First legacy 'major LSM' to be initialized +CONFIG_DEFAULT_SECURITY_SELINUX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_SMACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_TOMOYO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_APPARMOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_SECURITY_DAC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Security options >> Kernel hardening options + +# Menu: Security options >> Kernel hardening options >> Memory initialization +CONFIG_INIT_ON_ALLOC_DEFAULT_ON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_INIT_ON_FREE_DEFAULT_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> + +# Menu: Security options >> Kernel hardening options >> Memory initialization >> Initialize kernel stack variables at function entry +CONFIG_INIT_STACK_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> + +# Menu: Security options >> Kernel hardening options >> Memory initialization >> Poison kernel stack before returning from syscalls + +# Menu: Selftests >> Architecture: s390 +CONFIG_S390_UNWIND_SELFTEST policy<{'s390x': 'n'}> + +# Menu: System Type +# + +# Menu: System Type >> ARM Ltd. Integrator family >> Architecture: arm + +# Menu: System Type >> ARM Ltd. Integrator family >> Support Integrator/AP and Integrator/PP2 platforms >> Architecture: arm + +# Menu: System Type >> ARM Ltd. Integrator family >> Support Integrator/CP platform >> Architecture: arm + +# Menu: System Type >> ARM Ltd. RealView family >> Architecture: arm +CONFIG_ARCH_REALVIEW policy<{'armhf': 'n'}> + +# Menu: System Type >> ARM Ltd. RealView family >> Support RealView(R) Emulation Baseboard >> Architecture: arm + +# Menu: System Type >> ARM Ltd. Versatile Express family + +# Menu: System Type >> ARM Ltd. Versatile Express family >> Architecture: arm +CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA policy<{'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS_DCSCB policy<{'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS_SPC policy<{'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS_TC2_PM policy<{'armhf': 'y'}> + +# Menu: System Type >> ARM system type >> Architecture: arm +CONFIG_ARCH_MULTIPLATFORM policy<{'armhf': 'y'}> +CONFIG_ARCH_EP93XX policy<{'armhf': 'n'}> +CONFIG_ARCH_FOOTBRIDGE policy<{'armhf': 'n'}> +CONFIG_ARCH_IOP32X policy<{'armhf': 'n'}> +CONFIG_ARCH_IXP4XX policy<{'armhf': 'n'}> +CONFIG_ARCH_DOVE policy<{'armhf': 'n'}> +CONFIG_ARCH_PXA policy<{'armhf': 'n'}> +CONFIG_ARCH_RPC policy<{'armhf': 'n'}> +CONFIG_ARCH_SA1100 policy<{'armhf': 'n'}> +CONFIG_ARCH_S3C24XX policy<{'armhf': 'n'}> +CONFIG_ARCH_OMAP1 policy<{'armhf': 'n'}> + +# Menu: System Type >> AT91/Microchip SoCs >> Architecture: arm +CONFIG_ARCH_AT91 policy<{'armhf': 'n'}> + +# Menu: System Type >> Allwinner SoCs + +# Menu: System Type >> Allwinner SoCs >> Architecture: arm + +# Menu: System Type >> Altera SOCFPGA family + +# Menu: System Type >> Altera SOCFPGA family >> Architecture: arm +CONFIG_SOCFPGA_SUSPEND policy<{'armhf': 'y'}> + +# Menu: System Type >> Amlogic Meson SoCs + +# Menu: System Type >> Amlogic Meson SoCs >> Architecture: arm +CONFIG_MACH_MESON6 policy<{'armhf': 'y'}> +CONFIG_MACH_MESON8 policy<{'armhf': 'y'}> + +# Menu: System Type >> Architecture: arm +CONFIG_ARCH_VIRT policy<{'armhf': 'y'}> +CONFIG_ARCH_AXXIA policy<{'armhf-generic-lpae': 'y'}> +CONFIG_ARCH_DIGICOLOR policy<{'armhf': 'n'}> +CONFIG_ARCH_HIGHBANK policy<{'armhf': 'y'}> +CONFIG_ARCH_KEYSTONE policy<{'armhf': 'n'}> +CONFIG_ARCH_RDA policy<{'armhf': 'y'}> +CONFIG_ARCH_S5PV210 policy<{'armhf': 'n'}> +CONFIG_ARCH_WM8850 policy<{'armhf': 'n'}> +CONFIG_ARCH_ZYNQ policy<{'armhf': 'n'}> +CONFIG_ARM_THUMB policy<{'armhf': 'y'}> +CONFIG_ARM_THUMBEE policy<{'armhf': 'y'}> +CONFIG_SWP_EMULATE policy<{'armhf': 'y'}> +CONFIG_CPU_ICACHE_DISABLE policy<{'armhf': 'n'}> +CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND policy<{'armhf': 'y'}> +CONFIG_CPU_BPREDICT_DISABLE policy<{'armhf': 'n'}> +CONFIG_HARDEN_BRANCH_PREDICTOR policy<{'armhf': 'y'}> +CONFIG_CACHE_FEROCEON_L2 policy<{'armhf': 'y'}> +CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH policy<{'armhf': 'n'}> +CONFIG_CACHE_TAUROS2 policy<{'armhf': 'y'}> +CONFIG_CACHE_UNIPHIER policy<{'armhf': 'y'}> +CONFIG_ARM_DMA_MEM_BUFFERABLE policy<{'armhf': 'y'}> +CONFIG_DEBUG_ALIGN_RODATA policy<{'armhf': 'y'}> +CONFIG_IWMMXT policy<{'armhf': 'y'}> +CONFIG_PJ4B_ERRATA_4742 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_430973 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_643719 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_720789 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_754322 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_754327 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_764369 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_775420 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_798181 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_773022 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_818325_852422 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_821420 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_825619 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_857271 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_852421 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_852423 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_857272 policy<{'armhf': 'y'}> + +# Menu: System Type >> Aspeed BMC architectures >> Architecture: arm +CONFIG_ARCH_ASPEED policy<{'armhf': 'y'}> +CONFIG_MACH_ASPEED_G6 policy<{'armhf': 'y'}> + +# Menu: System Type >> Axis Communications ARM based ARTPEC SoCs >> Architecture: arm +CONFIG_ARCH_ARTPEC policy<{'armhf': 'y'}> +CONFIG_MACH_ARTPEC6 policy<{'armhf': 'n'}> + +# Menu: System Type >> Broadcom SoC Support + +# Menu: System Type >> Broadcom SoC Support >> Architecture: arm +CONFIG_ARCH_BCM policy<{'armhf': 'n'}> + +# Menu: System Type >> Cavium Networks CNS3XXX family >> Architecture: arm + +# Menu: System Type >> Cirrus EP93xx Implementation Options >> Architecture: arm + +# Menu: System Type >> Enable the L2x0 outer cache controller >> Architecture: arm +CONFIG_CACHE_L2X0 policy<{'armhf': 'y'}> +CONFIG_CACHE_L2X0_PMU policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_588369 policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_727915 policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_753970 policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_769419 policy<{'armhf': 'y'}> + +# Menu: System Type >> Footbridge Implementations >> Architecture: arm + +# Menu: System Type >> Freescale i.MX family + +# Menu: System Type >> Freescale i.MX family >> Architecture: arm +CONFIG_SOC_IMX50 policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX51 policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX53 policy<{'armhf-generic': 'n'}> +CONFIG_SOC_IMX6Q policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX6SL policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX6SLL policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX6SX policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX6UL policy<{'armhf-generic': 'y'}> +CONFIG_SOC_LS1021A policy<{'armhf-generic': 'n'}> +CONFIG_SOC_IMX7D policy<{'armhf-generic': 'y'}> +CONFIG_SOC_IMX7ULP policy<{'armhf-generic': 'y'}> +CONFIG_SOC_VF610 policy<{'armhf-generic': 'y'}> + +# Menu: System Type >> Freescale i.MX family >> Clocksource for scheduler clock >> Architecture: arm +CONFIG_VF_USE_ARM_GLOBAL_TIMER policy<{'armhf-generic': 'y'}> +CONFIG_VF_USE_PIT_TIMER policy<{'armhf-generic': 'n'}> + +# Menu: System Type >> Hisilicon platform type >> Architecture: arm +CONFIG_ARCH_HI3xxx policy<{'armhf': 'y'}> +CONFIG_ARCH_HIP01 policy<{'armhf': 'n'}> +CONFIG_ARCH_HIP04 policy<{'armhf': 'y'}> +CONFIG_ARCH_HIX5HD2 policy<{'armhf': 'y'}> + +# Menu: System Type >> IOP32x Implementation Options >> Architecture: arm + +# Menu: System Type >> Intel IXP4xx Implementation Options >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> Gumstix Carrier/Expansion Board >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> Motorola EZX Platform >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Keith und Koep Trizeps DIMM-Modules >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Keith und Koep Trizeps DIMM-Modules >> Select base board for Trizeps module >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Palm PDAs >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Toshiba e-series PDAs >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> display on pcm990 >> Architecture: arm + +# Menu: System Type >> MMU-based Paged Memory Management Support + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Architecture: arm +CONFIG_MMU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_ARM_LPAE policy<{'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> +CONFIG_VDSO policy<{'armhf': 'y'}> + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Marvell Orion >> Architecture: arm + +# Menu: System Type >> MMU-based Paged Memory Management Support >> ST-Ericsson U8500 Series >> Architecture: arm +CONFIG_ARCH_U8500 policy<{'armhf': 'n'}> + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Set flash/sdram size and base addr >> Architecture: arm + +# Menu: System Type >> MOXA ART SoC >> Architecture: arm + +# Menu: System Type >> MStar/Sigmastar Armv7 SoC Support >> Architecture: arm +CONFIG_ARCH_MSTARV7 policy<{'armhf': 'y'}> +CONFIG_MACH_INFINITY policy<{'armhf': 'y'}> +CONFIG_MACH_MERCURY policy<{'armhf': 'y'}> + +# Menu: System Type >> Marvell Berlin SoCs + +# Menu: System Type >> Marvell Berlin SoCs >> Architecture: arm +CONFIG_MACH_BERLIN_BG2 policy<{'armhf': 'y'}> +CONFIG_MACH_BERLIN_BG2CD policy<{'armhf': 'y'}> +CONFIG_MACH_BERLIN_BG2Q policy<{'armhf': 'y'}> + +# Menu: System Type >> Marvell Dove Implementations >> Architecture: arm + +# Menu: System Type >> Marvell Engineering Business Unit (MVEBU) SoCs + +# Menu: System Type >> Marvell Engineering Business Unit (MVEBU) SoCs >> Architecture: arm +CONFIG_MACH_ARMADA_370 policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_375 policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_38X policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_39X policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_XP policy<{'armhf': 'y'}> +CONFIG_MACH_DOVE policy<{'armhf': 'y'}> + +# Menu: System Type >> Marvell MV78xx0 >> Architecture: arm + +# Menu: System Type >> Marvell PXA168/910/MMP2/MMP3 >> Architecture: arm +CONFIG_ARCH_MMP policy<{'armhf': 'n'}> + +# Menu: System Type >> Marvell PXA168/910/MMP2/MMP3 >> Marvell PXA168/910/MMP2 Implementations >> Architecture: arm + +# Menu: System Type >> MediaTek SoC Support + +# Menu: System Type >> MediaTek SoC Support >> Architecture: arm +CONFIG_MACH_MT2701 policy<{'armhf': 'y'}> +CONFIG_MACH_MT6589 policy<{'armhf': 'y'}> +CONFIG_MACH_MT6592 policy<{'armhf': 'y'}> +CONFIG_MACH_MT7623 policy<{'armhf': 'y'}> +CONFIG_MACH_MT7629 policy<{'armhf': 'y'}> +CONFIG_MACH_MT8127 policy<{'armhf': 'y'}> +CONFIG_MACH_MT8135 policy<{'armhf': 'y'}> + +# Menu: System Type >> Multiple platform selection >> Architecture: arm +CONFIG_ARCH_MULTI_V6 policy<{'armhf': 'n'}> +CONFIG_ARCH_MULTI_V7 policy<{'armhf': 'y'}> + +# Menu: System Type >> Nuvoton NPCM Architecture >> Architecture: arm +CONFIG_ARCH_NPCM policy<{'armhf': 'y'}> +CONFIG_ARCH_NPCM7XX policy<{'armhf': 'y'}> + +# Menu: System Type >> Oxford Semiconductor OXNAS Family SoCs >> Architecture: arm + +# Menu: System Type >> Qualcomm Support + +# Menu: System Type >> Qualcomm Support >> Architecture: arm +CONFIG_ARCH_IPQ40XX policy<{'armhf': 'n'}> +CONFIG_ARCH_MSM8X60 policy<{'armhf': 'y'}> +CONFIG_ARCH_MSM8960 policy<{'armhf': 'y'}> +CONFIG_ARCH_MSM8974 policy<{'armhf': 'y'}> +CONFIG_ARCH_MDM9615 policy<{'armhf': 'y'}> + +# Menu: System Type >> SA11x0 Implementations >> Architecture: arm + +# Menu: System Type >> SA11x0 Implementations >> Cerf Flash available >> Architecture: arm + +# Menu: System Type >> ST SPEAr Family >> Architecture: arm +CONFIG_PLAT_SPEAR policy<{'armhf': 'n'}> + +# Menu: System Type >> ST SPEAr Family >> ST SPEAr13xx >> Architecture: arm + +# Menu: System Type >> ST SPEAr Family >> ST SPEAr13xx >> ST SPEAr3xx >> Architecture: arm + +# Menu: System Type >> ST-Ericsson Nomadik >> Architecture: arm + +# Menu: System Type >> STMicroelectronics Consumer Electronics SOCs >> Architecture: arm +CONFIG_ARCH_STI policy<{'armhf': 'n'}> + +# Menu: System Type >> STMicroelectronics STM32 family >> Architecture: arm +CONFIG_ARCH_STM32 policy<{'armhf': 'n'}> + +# Menu: System Type >> Samsung Common options >> Architecture: arm + +# Menu: System Type >> Samsung Exynos + +# Menu: System Type >> Samsung Exynos >> Architecture: arm +CONFIG_ARCH_EXYNOS3 policy<{'armhf': 'n'}> +CONFIG_ARCH_EXYNOS4 policy<{'armhf': 'n'}> + +# Menu: System Type >> Samsung Exynos >> Samsung Exynos5 >> Architecture: arm +CONFIG_ARCH_EXYNOS5 policy<{'armhf': 'y'}> +CONFIG_SOC_EXYNOS5250 policy<{'armhf': 'y'}> +CONFIG_SOC_EXYNOS5260 policy<{'armhf': 'y'}> +CONFIG_SOC_EXYNOS5410 policy<{'armhf': 'y'}> +CONFIG_SOC_EXYNOS5420 policy<{'armhf': 'y'}> +CONFIG_SOC_EXYNOS5800 policy<{'armhf': 'y'}> + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Architecture: arm + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Samsung S3C2410 >> Architecture: arm + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Samsung S3C2412 >> Architecture: arm + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Samsung S3C2440 >> Architecture: arm + +# Menu: System Type >> Samsung S3C64XX >> Architecture: arm + +# Menu: System Type >> Samsung S3C64XX >> SMDK6410 >> Architecture: arm + +# Menu: System Type >> Samsung S3C64XX >> SMDK6410 >> SMDK6410 MMC/SD slot setup >> Architecture: arm + +# Menu: System Type >> Socionext Milbeaut SoCs >> Architecture: arm +CONFIG_ARCH_MILBEAUT policy<{'armhf': 'y'}> +CONFIG_ARCH_MILBEAUT_M10V policy<{'armhf': 'y'}> + +# Menu: System Type >> TI DaVinci >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> DA850/OMAP-L138/AM18x based system >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> DA850/OMAP-L138/AM18x based system >> Select peripherals connected to expander on UI board >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> DaVinci 644x based system >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> Select DA830/OMAP-L137/AM17x UI board peripheral >> Architecture: arm + +# Menu: System Type >> TI OMAP Common Features >> Architecture: arm +CONFIG_POWER_AVS_OMAP policy<{'armhf-generic': 'y'}> +CONFIG_POWER_AVS_OMAP_CLASS3 policy<{'armhf-generic': 'y'}> +CONFIG_OMAP_RESET_CLOCKS policy<{'armhf': 'y'}> +CONFIG_OMAP_32K_TIMER policy<{'armhf': 'y'}> +CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE policy<{'armhf-generic': 'n'}> + +# Menu: System Type >> TI OMAP/AM/DM/DRA Family >> Architecture: arm +CONFIG_ARCH_OMAP3 policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ARCH_OMAP4 policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_SOC_OMAP5 policy<{'armhf': 'n'}> +CONFIG_SOC_AM33XX policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_SOC_AM43XX policy<{'armhf': 'n'}> +CONFIG_SOC_DRA7XX policy<{'armhf': 'y'}> +CONFIG_OMAP5_ERRATA_801819 policy<{'armhf': 'y'}> + +# Menu: System Type >> TI OMAP/AM/DM/DRA Family >> TI OMAP2/3/4 Specific Features >> Architecture: arm +CONFIG_ARCH_OMAP2PLUS_TYPICAL policy<{'armhf': 'y'}> +CONFIG_SOC_HAS_OMAP2_SDRC policy<{'armhf': 'y'}> +CONFIG_SOC_HAS_REALTIME_COUNTER policy<{'armhf': 'y'}> +CONFIG_SOC_OMAP3430 policy<{'armhf-generic': 'y'}> +CONFIG_SOC_TI81XX policy<{'armhf-generic': 'y'}> +CONFIG_OMAP3_SDRC_AC_TIMING policy<{'armhf-generic': 'n'}> + +# Menu: System Type >> TI OMAP1 specific features >> Architecture: arm + +# Menu: System Type >> TI OMAP1 specific features >> OMAP15xx Based System >> Architecture: arm + +# Menu: System Type >> TI OMAP1 specific features >> OMAP16xx Based System >> Architecture: arm +CONFIG_MACH_OMAP_GENERIC policy<{'armhf': 'y'}> + +# Menu: Ubuntu Supplied Third-Party Device Drivers +CONFIG_HIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UBUNTU_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> +# +CONFIG_HIO mark note + +# Menu: Virtualization +CONFIG_VIRTUALIZATION policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# + +# Menu: Virtualization >> Architecture: powerpc +CONFIG_KVM_BOOK3S_64 policy<{'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_64_HV policy<{'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_64_PR policy<{'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_HV_EXIT_TIMING policy<{'ppc64el': 'n'}> +CONFIG_KVM_XICS policy<{'ppc64el': 'y'}> + +# Menu: Virtualization >> Architecture: s390 +CONFIG_PROTECTED_VIRTUALIZATION_GUEST policy<{'s390x': 'y'}> +CONFIG_PFAULT policy<{'s390x': 'y'}> +CONFIG_CMM_IUCV policy<{'s390x': 'y'}> +CONFIG_S390_HYPFS_FS policy<{'s390x': 'y'}> +CONFIG_S390_GUEST policy<{'s390x': 'y'}> + +# Menu: Virtualization >> KVM +CONFIG_KVM policy<{'amd64': 'm', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +# +CONFIG_KVM note + +# Menu: Virtualization >> KVM >> Architecture: s390 +CONFIG_KVM_S390_UCONTROL policy<{'s390x': 'n'}> + +# Menu: Virtualization >> Kernel-based Virtual Machine (KVM) support +# + +# Menu: Virtualization >> Kernel-based Virtual Machine (KVM) support >> Architecture: arm64 +CONFIG_NVHE_EL2_DEBUG policy<{'arm64': 'n'}> + +# Menu: Virtualization >> Kernel-based Virtual Machine (KVM) support >> Architecture: x86 +CONFIG_KVM_WERROR policy<{'amd64': 'y'}> +CONFIG_KVM_INTEL policy<{'amd64': 'm'}> +CONFIG_X86_SGX_KVM policy<{'amd64': 'y'}> +CONFIG_KVM_AMD policy<{'amd64': 'm'}> +CONFIG_KVM_AMD_SEV policy<{'amd64': 'y'}> +CONFIG_KVM_XEN policy<{'amd64': 'y'}> +CONFIG_KVM_MMU_AUDIT policy<{'amd64': 'n'}> + +# Menu: Virtualization >> Linux - VM Monitor Stream, base infrastructure >> Architecture: s390 + +CONFIG_APPLDATA_BASE policy<{'s390x': 'y'}> +CONFIG_APPLDATA_MEM policy<{'s390x': 'm'}> +CONFIG_APPLDATA_OS policy<{'s390x': 'm'}> +CONFIG_APPLDATA_NET_SUM policy<{'s390x': 'm'}> diff --git a/debian.master/config/arm64/config.common.arm64 b/debian.master/config/arm64/config.common.arm64 new file mode 100644 index 00000000000000..063edc5a167c79 --- /dev/null +++ b/debian.master/config/arm64/config.common.arm64 @@ -0,0 +1,726 @@ +# +# Config options for config.common.arm64 automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_EXYNOS is not set +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_ARCH_MXC=y +CONFIG_ARCH_SUNXI=y +CONFIG_ARCH_TEGRA=y +# CONFIG_ARCH_UNIPHIER is not set +CONFIG_ARCNET=m +CONFIG_ARM_SMMU=y +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.2.0-5ubuntu1) 11.2.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="console=ttyAMA0" +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_AXG_AUDIO=m +CONFIG_COUNTER=m +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRAMFS=m +CONFIG_CRC8=y +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DMADEVICES=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DP_CEC=y +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_RCAR_LVDS=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIXED_PHY=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +CONFIG_FSL_MC_BUS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +# CONFIG_HIBERNATION is not set +CONFIG_HID=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_SHPC=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +# CONFIG_I2C_AMD_MP2 is not set +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_IMX=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +# CONFIG_IMA_ARCH_POLICY is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=y +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMMU_VMSA is not set +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC_FILE=y +CONFIG_KVM=y +CONFIG_LAPB=m +# CONFIG_LATENCYTOP is not set +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BUS_MUX=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMSTICK=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_INTEL_PMT=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MII=y +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_ESDHC_IMX=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_PHYSMAP_GEMINI=y +CONFIG_MTD_PHYSMAP_VERSATILE=y +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +CONFIG_NET_DSA_MSCC_FELIX=m +CONFIG_NET_SELFTESTS=y +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=6 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=256 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +CONFIG_PCCARD=m +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCMCIA is not set +CONFIG_PCS_XPCS=m +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYLIB=y +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_TI_GMII_SEL=m +CONFIG_PINCTRL=y +# CONFIG_PMIC_OPREGION is not set +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_PWM_TIECAP=m +CONFIG_PWM_TIEHRPWM=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PL031=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFS_QCOM=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SMC91X=y +CONFIG_SND=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_IMX_SOC=m +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_IMX_PCM_DMA=m +CONFIG_SND_SOC_IMX_SGTL5000=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_BRCMSTB=y +CONFIG_SOC_IMX8M=y +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +# CONFIG_SURFACE_3_BUTTON is not set +# CONFIG_SURFACE_3_POWER_OPREGION is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_SYSFB_SIMPLEFB=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TEST_DIV64=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +# CONFIG_TI_SOC_THERMAL is not set +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_DWC2_PCI=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_EMXX=m +CONFIG_USB_GADGET=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VIDEO_TI_CAL_MC=y +CONFIG_VIRTIO_MMIO=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +CONFIG_XEN=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.master/config/arm64/config.flavour.generic b/debian.master/config/arm64/config.flavour.generic new file mode 100644 index 00000000000000..d6e3ffa1d269c2 --- /dev/null +++ b/debian.master/config/arm64/config.flavour.generic @@ -0,0 +1,13 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_64K_PAGES is not set +CONFIG_ARM64_CONT_PMD_SHIFT=4 +CONFIG_ARM64_CONT_PTE_SHIFT=4 +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_PGTABLE_LEVELS=4 diff --git a/debian.master/config/arm64/config.flavour.generic-64k b/debian.master/config/arm64/config.flavour.generic-64k new file mode 100644 index 00000000000000..4cacb09e2c5414 --- /dev/null +++ b/debian.master/config/arm64/config.flavour.generic-64k @@ -0,0 +1,13 @@ +# +# Config options for config.flavour.generic-64k automatically generated by splitconfig.pl +# +CONFIG_ARCH_MMAP_RND_BITS_MAX=29 +CONFIG_ARCH_MMAP_RND_BITS_MIN=14 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7 +# CONFIG_ARM64_4K_PAGES is not set +CONFIG_ARM64_64K_PAGES=y +CONFIG_ARM64_CONT_PMD_SHIFT=5 +CONFIG_ARM64_CONT_PTE_SHIFT=5 +CONFIG_ARM64_PAGE_SHIFT=16 +CONFIG_FORCE_MAX_ZONEORDER=14 +CONFIG_PGTABLE_LEVELS=3 diff --git a/debian.master/config/armhf/config.common.armhf b/debian.master/config/armhf/config.common.armhf new file mode 100644 index 00000000000000..d48eb002d50f8a --- /dev/null +++ b/debian.master/config/armhf/config.common.armhf @@ -0,0 +1,698 @@ +# +# Config options for config.common.armhf automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=y +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_ALPINE=y +CONFIG_ARCH_EXYNOS=y +CONFIG_ARCH_MMAP_RND_BITS=8 +CONFIG_ARCH_MMAP_RND_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_BITS_MIN=8 +CONFIG_ARCH_NR_GPIO=2048 +# CONFIG_ARCH_SUNXI is not set +CONFIG_ARCH_UNIPHIER=y +CONFIG_ARCNET=m +# CONFIG_ARM_SMMU is not set +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=y +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 11.2.0-5ubuntu1) 11.2.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="" +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +CONFIG_COMMON_CLK=y +# CONFIG_COMMON_CLK_AXG_AUDIO is not set +CONFIG_COUNTER=m +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRAMFS=m +CONFIG_CRC8=y +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CXL_BUS=m +# CONFIG_DEBUG_INFO_BTF is not set +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DMADEVICES=y +CONFIG_DMA_CMA=y +# CONFIG_DMA_PERNUMA_CMA is not set +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DP_CEC=y +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_RCAR_LVDS=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIXED_PHY=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +# CONFIG_FSL_MC_BUS is not set +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=y +CONFIG_GPIO_TWL6040=y +CONFIG_GPIO_VIRTIO=m +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HIBERNATION=y +CONFIG_HID=m +CONFIG_HMC6352=m +# CONFIG_HOTPLUG_PCI is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_EMEV2=m +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_IMX=y +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +# CONFIG_IMA_ARCH_POLICY is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +CONFIG_IPMMU_VMSA=y +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +# CONFIG_JUMP_LABEL is not set +CONFIG_KARMA_PARTITION=y +CONFIG_KERNEL_GZIP=y +CONFIG_LAPB=m +# CONFIG_LATENCYTOP is not set +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMSTICK=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_INTEL_PMT=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=y +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65217=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MII=m +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_ESDHC_IMX=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=y +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_NAND_CORE=y +CONFIG_MTD_OF_PARTS=y +CONFIG_MTD_PHYSMAP_GEMINI=y +CONFIG_MTD_PHYSMAP_VERSATILE=y +CONFIG_MTD_RAW_NAND=y +CONFIG_NET_DSA=m +# CONFIG_NET_DSA_MSCC_FELIX is not set +CONFIG_NET_SELFTESTS=y +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NOP_USB_XCEIV=y +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=4 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NVMEM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +CONFIG_PAGE_EXTENSION=y +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_PARAVIRT is not set +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +# CONFIG_PCCARD is not set +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +# CONFIG_PCI_LAYERSCAPE is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCS_XPCS=m +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYLIB=y +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_TI_GMII_SEL=y +CONFIG_PINCTRL=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_CONSOLE=y +CONFIG_PSTORE_RAM=y +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=y +CONFIG_REGULATOR_TPS65217=y +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_PL031=y +CONFIG_RTC_DRV_TWL4030=y +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_SCHED_SMT is not set +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +# CONFIG_SCSI_UFS_QCOM is not set +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SMC91X=m +CONFIG_SND=y +CONFIG_SND_COMPRESS_OFFLOAD=y +CONFIG_SND_DMAENGINE_PCM=y +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_IMX_SOC=y +CONFIG_SND_PCM=y +CONFIG_SND_SOC=y +CONFIG_SND_SOC_I2C_AND_SPI=y +CONFIG_SND_SOC_IMX_PCM_DMA=y +CONFIG_SND_SOC_IMX_SGTL5000=y +CONFIG_SND_TIMER=y +# CONFIG_SOC_BRCMSTB is not set +# CONFIG_SOC_IMX8M is not set +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=y +CONFIG_SPI=y +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +CONFIG_SYSFB_SIMPLEFB=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TEST_DIV64=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TI_SOC_THERMAL=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_DWC2_PCI=y +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +CONFIG_USB_EMXX=y +CONFIG_USB_GADGET=y +CONFIG_USB_G_MULTI=m +# CONFIG_USB_HCD_BCMA is not set +# CONFIG_USB_HCD_SSB is not set +CONFIG_USB_MUSB_HDRC=y +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +# CONFIG_XEN is not set +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.master/config/armhf/config.flavour.generic b/debian.master/config/armhf/config.flavour.generic new file mode 100644 index 00000000000000..3b5b7ae584efc9 --- /dev/null +++ b/debian.master/config/armhf/config.flavour.generic @@ -0,0 +1,23 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_ARCH_MXC=y +CONFIG_ARCH_OMAP3=y +CONFIG_ARCH_OMAP4=y +CONFIG_ARCH_TEGRA=y +CONFIG_ARM_ATAG_DTB_COMPAT=y +# CONFIG_ARM_HIGHBANK_CPUIDLE is not set +# CONFIG_ARM_LPAE is not set +CONFIG_FORCE_MAX_ZONEORDER=12 +CONFIG_MMC_CQHCI=y +CONFIG_PGTABLE_LEVELS=2 +CONFIG_PWM_TIECAP=m +CONFIG_PWM_TIEHRPWM=m +CONFIG_REGULATOR_TWL4030=y +CONFIG_RTC_DRV_PCF8523=y +CONFIG_SND_SOC_FSL_SSI=y +CONFIG_SND_SOC_IMX_AUDMUX=y +CONFIG_SND_SOC_SGTL5000=y +CONFIG_SOC_AM33XX=y +CONFIG_USB_OHCI_HCD_PLATFORM=m +# CONFIG_VIDEO_TI_CAL_MC is not set diff --git a/debian.master/config/armhf/config.flavour.generic-lpae b/debian.master/config/armhf/config.flavour.generic-lpae new file mode 100644 index 00000000000000..a49ee9685645ce --- /dev/null +++ b/debian.master/config/armhf/config.flavour.generic-lpae @@ -0,0 +1,23 @@ +# +# Config options for config.flavour.generic-lpae automatically generated by splitconfig.pl +# +# CONFIG_ARCH_MXC is not set +# CONFIG_ARCH_OMAP3 is not set +# CONFIG_ARCH_OMAP4 is not set +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARM_ATAG_DTB_COMPAT is not set +CONFIG_ARM_HIGHBANK_CPUIDLE=y +CONFIG_ARM_LPAE=y +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_MMC_CQHCI=m +CONFIG_PGTABLE_LEVELS=3 +# CONFIG_PWM_TIECAP is not set +# CONFIG_PWM_TIEHRPWM is not set +CONFIG_REGULATOR_TWL4030=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_SGTL5000=m +# CONFIG_SOC_AM33XX is not set +# CONFIG_USB_OHCI_HCD_PLATFORM is not set +CONFIG_VIDEO_TI_CAL_MC=y diff --git a/debian.master/config/config.common.ubuntu b/debian.master/config/config.common.ubuntu new file mode 100644 index 00000000000000..dcaa371d8bee00 --- /dev/null +++ b/debian.master/config/config.common.ubuntu @@ -0,0 +1,12765 @@ +# +# Common config options automatically generated by splitconfig.pl +# +CONFIG_104_QUAD_8=m +CONFIG_60XX_WDT=m +CONFIG_64BIT=y +# CONFIG_6LOWPAN_DEBUGFS is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set +# CONFIG_6LOWPAN_GHC_ICMPV6 is not set +# CONFIG_6LOWPAN_GHC_UDP is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6PACK=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_8129=y +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_842_COMPRESS=m +CONFIG_842_DECOMPRESS=m +CONFIG_88EU_AP_MODE=y +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +CONFIG_AAEON_IWMI_WDT=m +CONFIG_ABP060MG=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ACERHDF=m +CONFIG_ACER_WIRELESS=m +CONFIG_ACER_WMI=m +# CONFIG_ACORN_PARTITION is not set +CONFIG_ACPI=y +CONFIG_ACPI_AC=y +CONFIG_ACPI_ADXL=y +CONFIG_ACPI_ALS=m +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_EINJ=m +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BGRT=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_CCA_REQUIRED=y +CONFIG_ACPI_CMPC=m +CONFIG_ACPI_CONFIGFS=m +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_CPPC_CPUFREQ=m +CONFIG_ACPI_CPPC_CPUFREQ_FIE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_DEBUGGER_USER=y +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_DPTF=y +CONFIG_ACPI_EC_DEBUGFS=m +CONFIG_ACPI_EXTLOG=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_FPDT=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_HED=y +CONFIG_ACPI_HMAT=y +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_ACPI_IORT=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_MDIO=y +CONFIG_ACPI_NFIT=m +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_PLATFORM_PROFILE=m +CONFIG_ACPI_PPTT=y +CONFIG_ACPI_PRMT=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +CONFIG_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TAD=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_THERMAL_REL=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_VIOT=y +CONFIG_ACPI_WATCHDOG=y +CONFIG_ACPI_WMI=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ACRN_GUEST=y +CONFIG_ACRN_HSM=m +CONFIG_AD2S1200=m +CONFIG_AD2S1210=m +CONFIG_AD2S90=m +CONFIG_AD5064=m +CONFIG_AD5110=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +CONFIG_AD5272=m +CONFIG_AD5360=m +CONFIG_AD5380=m +CONFIG_AD5421=m +CONFIG_AD5446=m +CONFIG_AD5449=m +CONFIG_AD5504=m +CONFIG_AD5592R=m +CONFIG_AD5592R_BASE=m +CONFIG_AD5593R=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5686_SPI=m +CONFIG_AD5696_I2C=m +CONFIG_AD5755=m +CONFIG_AD5758=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5766=m +CONFIG_AD5770R=m +CONFIG_AD5791=m +CONFIG_AD5933=m +CONFIG_AD7091R5=m +CONFIG_AD7124=m +CONFIG_AD7150=m +CONFIG_AD7192=m +CONFIG_AD7266=m +CONFIG_AD7280=m +CONFIG_AD7291=m +CONFIG_AD7292=m +CONFIG_AD7298=m +CONFIG_AD7303=m +CONFIG_AD7476=m +CONFIG_AD7606=m +CONFIG_AD7606_IFACE_PARALLEL=m +CONFIG_AD7606_IFACE_SPI=m +CONFIG_AD7746=m +CONFIG_AD7766=m +CONFIG_AD7768_1=m +CONFIG_AD7780=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7816=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD7949=m +CONFIG_AD799X=m +CONFIG_AD8366=m +CONFIG_AD8801=m +CONFIG_AD9467=m +CONFIG_AD9523=m +CONFIG_AD9832=m +CONFIG_AD9834=m +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +CONFIG_ADF4350=m +CONFIG_ADF4371=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_ADIN_PHY=m +CONFIG_ADIS16080=m +CONFIG_ADIS16130=m +CONFIG_ADIS16136=m +CONFIG_ADIS16201=m +CONFIG_ADIS16203=m +CONFIG_ADIS16209=m +CONFIG_ADIS16240=m +CONFIG_ADIS16260=m +CONFIG_ADIS16400=m +CONFIG_ADIS16460=m +CONFIG_ADIS16475=m +CONFIG_ADIS16480=m +CONFIG_ADI_AXI_ADC=m +CONFIG_ADJD_S311=m +CONFIG_ADM8211=m +CONFIG_ADT7316=m +CONFIG_ADT7316_I2C=m +CONFIG_ADT7316_SPI=m +CONFIG_ADUX1020=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ADVISE_SYSCALLS=y +CONFIG_ADV_SWBUTTON=m +CONFIG_ADXL372=m +CONFIG_ADXL372_I2C=m +CONFIG_ADXL372_SPI=m +CONFIG_ADXRS290=m +CONFIG_ADXRS450=m +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AEABI=y +CONFIG_AFE4403=m +CONFIG_AFE4404=m +CONFIG_AFIUCV=m +# CONFIG_AFS_DEBUG is not set +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_AFS_FS=m +CONFIG_AFS_FSCACHE=y +CONFIG_AF_KCM=m +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +CONFIG_AF_RXRPC_IPV6=y +CONFIG_AF_UNIX_OOB=y +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=m +CONFIG_AGP_VIA=y +CONFIG_AHCI_BRCM=m +CONFIG_AHCI_CEVA=m +CONFIG_AHCI_DM816=m +CONFIG_AHCI_IMX=y +CONFIG_AHCI_MTK=m +CONFIG_AHCI_MVEBU=m +CONFIG_AHCI_QORIQ=m +# CONFIG_AHCI_SUNXI is not set +CONFIG_AHCI_TEGRA=m +CONFIG_AHCI_XGENE=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +# CONFIG_AIC79XX_DEBUG_ENABLE is not set +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +# CONFIG_AIC7XXX_DEBUG_ENABLE is not set +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_AIO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_AK09911=m +CONFIG_AK8974=m +CONFIG_AK8975=m +CONFIG_AL3010=m +CONFIG_AL3320A=m +CONFIG_ALIENWARE_WMI=m +CONFIG_ALIGNMENT_TRAP=y +CONFIG_ALIM1535_WDT=m +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_ALPINE_MSI=y +CONFIG_ALTERA_FREEZE_BRIDGE=m +CONFIG_ALTERA_MBOX=m +CONFIG_ALTERA_MSGDMA=m +CONFIG_ALTERA_PR_IP_CORE=m +CONFIG_ALTERA_PR_IP_CORE_PLAT=m +CONFIG_ALTIVEC=y +CONFIG_ALX=m +CONFIG_AL_FIC=y +CONFIG_AM2315=m +CONFIG_AM335X_CONTROL_USB=m +CONFIG_AM335X_PHY_USB=m +CONFIG_AMBA_PL08X=y +CONFIG_AMD8111_ETH=m +CONFIG_AMDTEE=m +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_V2=m +CONFIG_AMD_MEM_ENCRYPT=y +# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set +CONFIG_AMD_NB=y +CONFIG_AMD_NUMA=y +CONFIG_AMD_PHY=m +CONFIG_AMD_PMC=m +CONFIG_AMD_PTDMA=m +CONFIG_AMD_SFH_HID=m +CONFIG_AMD_XGBE=m +CONFIG_AMD_XGBE_DCB=y +CONFIG_AMD_XGBE_HAVE_ECC=y +CONFIG_AMILO_RFKILL=m +CONFIG_AMLOGIC_THERMAL=m +CONFIG_ANDROID_BINDERFS=m +CONFIG_ANDROID_BINDER_DEVICES="" +CONFIG_ANDROID_BINDER_IPC=m +# CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set +CONFIG_APDS9300=m +CONFIG_APDS9960=m +# CONFIG_APM_EMULATION is not set +CONFIG_APPLDATA_BASE=y +CONFIG_APPLDATA_MEM=m +CONFIG_APPLDATA_NET_SUM=m +CONFIG_APPLDATA_OS=m +CONFIG_APPLE_AIC=y +CONFIG_APPLE_DART=m +CONFIG_APPLE_GMUX=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_APPLE_PROPERTIES=y +CONFIG_APQ_GCC_8084=m +CONFIG_APQ_MMCC_8084=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AR5523=m +CONFIG_ARCH_32BIT_OFF_T=y +CONFIG_ARCH_32BIT_USTAT_F_TINODE=y +CONFIG_ARCH_ACTIONS=y +CONFIG_ARCH_APPLE=y +CONFIG_ARCH_ARTPEC=y +CONFIG_ARCH_ASPEED=y +# CONFIG_ARCH_AT91 is not set +CONFIG_ARCH_AXXIA=y +# CONFIG_ARCH_BCM is not set +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM4908=y +CONFIG_ARCH_BCM_IPROC=y +CONFIG_ARCH_BERLIN=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ARCH_BITMAIN=y +CONFIG_ARCH_BRCMSTB=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_ARCH_CPU_PROBE_RELEASE=y +# CONFIG_ARCH_DIGICOLOR is not set +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +# CONFIG_ARCH_DOVE is not set +CONFIG_ARCH_EMEV2=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +# CONFIG_ARCH_EP93XX is not set +# CONFIG_ARCH_EXYNOS3 is not set +# CONFIG_ARCH_EXYNOS4 is not set +CONFIG_ARCH_EXYNOS5=y +CONFIG_ARCH_FLATMEM_ENABLE=y +# CONFIG_ARCH_FOOTBRIDGE is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_HAS_BANDGAP=y +CONFIG_ARCH_HAS_BINFMT_FLAT=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CC_PLATFORM=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_ARCH_HAS_DMA_MAP_DIRECT=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_ARCH_HAS_EARLY_DEBUG=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_HAS_FILTER_PGPROT=y +CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_ARCH_HAS_HUGEPD=y +CONFIG_ARCH_HAS_KCOV=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +CONFIG_ARCH_HAS_MEMBARRIER_CALLBACKS=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_ARCH_HAS_MEMREMAP_COMPAT_ALIGN=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_ARCH_HAS_MMIOWB=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_ARCH_HAS_PHYS_TO_DMA=y +CONFIG_ARCH_HAS_PKEYS=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_ARCH_HAS_RESTRICTED_VIRTIO_MEMORY_ACCESS=y +CONFIG_ARCH_HAS_SCALED_CPUTIME=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +CONFIG_ARCH_HAS_VDSO_DATA=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y +CONFIG_ARCH_HAVE_ELF_PROT=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_ARCH_HI3xxx=y +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_HIGHBANK=y +# CONFIG_ARCH_HIP01 is not set +CONFIG_ARCH_HIP04=y +CONFIG_ARCH_HISI=y +CONFIG_ARCH_HIX5HD2=y +CONFIG_ARCH_INLINE_READ_LOCK=y +CONFIG_ARCH_INLINE_READ_LOCK_BH=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_READ_TRYLOCK=y +CONFIG_ARCH_INLINE_READ_UNLOCK=y +CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_SPIN_LOCK=y +CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_WRITE_LOCK=y +CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_WRITE_TRYLOCK=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INTEL_SOCFPGA=y +# CONFIG_ARCH_IOP32X is not set +# CONFIG_ARCH_IPQ40XX is not set +# CONFIG_ARCH_IXP4XX is not set +CONFIG_ARCH_K3=y +CONFIG_ARCH_KEEMBAY=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +# CONFIG_ARCH_KEYSTONE is not set +CONFIG_ARCH_LAYERSCAPE=y +CONFIG_ARCH_LG1K=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_MDM9615=y +CONFIG_ARCH_MEDIATEK=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ARCH_MESON=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_ARCH_MILBEAUT=y +CONFIG_ARCH_MILBEAUT_M10V=y +# CONFIG_ARCH_MMP is not set +CONFIG_ARCH_MSM8960=y +CONFIG_ARCH_MSM8974=y +CONFIG_ARCH_MSM8X60=y +CONFIG_ARCH_MSTARV7=y +CONFIG_ARCH_MULTIPLATFORM=y +# CONFIG_ARCH_MULTI_V6 is not set +CONFIG_ARCH_MULTI_V6_V7=y +CONFIG_ARCH_MULTI_V7=y +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED=y +CONFIG_ARCH_NPCM=y +CONFIG_ARCH_NPCM7XX=y +CONFIG_ARCH_OMAP=y +# CONFIG_ARCH_OMAP1 is not set +CONFIG_ARCH_OMAP2PLUS=y +CONFIG_ARCH_OMAP2PLUS_TYPICAL=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +# CONFIG_ARCH_PXA is not set +CONFIG_ARCH_QCOM=y +CONFIG_ARCH_R7S72100=y +CONFIG_ARCH_R7S9210=y +# CONFIG_ARCH_R8A73A4 is not set +CONFIG_ARCH_R8A7740=y +CONFIG_ARCH_R8A7742=y +CONFIG_ARCH_R8A7743=y +CONFIG_ARCH_R8A7744=y +CONFIG_ARCH_R8A7745=y +CONFIG_ARCH_R8A77470=y +CONFIG_ARCH_R8A774A1=y +CONFIG_ARCH_R8A774B1=y +CONFIG_ARCH_R8A774C0=y +CONFIG_ARCH_R8A774E1=y +CONFIG_ARCH_R8A7778=y +CONFIG_ARCH_R8A7779=y +CONFIG_ARCH_R8A7790=y +CONFIG_ARCH_R8A7791=y +CONFIG_ARCH_R8A7792=y +CONFIG_ARCH_R8A7793=y +CONFIG_ARCH_R8A7794=y +CONFIG_ARCH_R8A77950=y +CONFIG_ARCH_R8A77951=y +CONFIG_ARCH_R8A77960=y +CONFIG_ARCH_R8A77961=y +CONFIG_ARCH_R8A77965=y +CONFIG_ARCH_R8A77970=y +CONFIG_ARCH_R8A77980=y +CONFIG_ARCH_R8A77990=y +CONFIG_ARCH_R8A77995=y +CONFIG_ARCH_R8A779A0=y +CONFIG_ARCH_R9A06G032=y +CONFIG_ARCH_R9A07G044=y +CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_RCAR_GEN1=y +CONFIG_ARCH_RCAR_GEN2=y +CONFIG_ARCH_RCAR_GEN3=y +CONFIG_ARCH_RDA=y +CONFIG_ARCH_REALTEK=y +# CONFIG_ARCH_REALVIEW is not set +CONFIG_ARCH_RENESAS=y +CONFIG_ARCH_RMOBILE=y +CONFIG_ARCH_ROCKCHIP=y +# CONFIG_ARCH_RPC is not set +CONFIG_ARCH_RZN1=y +CONFIG_ARCH_S32=y +# CONFIG_ARCH_S3C24XX is not set +# CONFIG_ARCH_S5PV210 is not set +# CONFIG_ARCH_SA1100 is not set +CONFIG_ARCH_SEATTLE=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SH73A0=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARX5=y +CONFIG_ARCH_SPRD=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_ARCH_STI is not set +# CONFIG_ARCH_STM32 is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y +CONFIG_ARCH_SUPPORTS_CFI_CLANG=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_SUSPEND_NONZERO_CPU=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_SYNQUACER=y +CONFIG_ARCH_TEGRA_114_SOC=y +CONFIG_ARCH_TEGRA_124_SOC=y +CONFIG_ARCH_TEGRA_132_SOC=y +CONFIG_ARCH_TEGRA_186_SOC=y +CONFIG_ARCH_TEGRA_194_SOC=y +CONFIG_ARCH_TEGRA_210_SOC=y +CONFIG_ARCH_TEGRA_234_SOC=y +CONFIG_ARCH_TEGRA_2x_SOC=y +CONFIG_ARCH_TEGRA_3x_SOC=y +CONFIG_ARCH_THUNDER=y +CONFIG_ARCH_THUNDER2=y +# CONFIG_ARCH_U8500 is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_USE_GNU_PROPERTY=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_USE_MEMTEST=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_ARCH_VEXPRESS=y +CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA=y +CONFIG_ARCH_VEXPRESS_DCSCB=y +CONFIG_ARCH_VEXPRESS_SPC=y +CONFIG_ARCH_VEXPRESS_TC2_PM=y +CONFIG_ARCH_VIRT=y +CONFIG_ARCH_VISCONTI=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_IRQS_OFF_ACTIVATE_MM=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_ARCH_WEAK_RELEASE_ACQUIRE=y +# CONFIG_ARCH_WM8850 is not set +CONFIG_ARCH_XGENE=y +# CONFIG_ARCH_ZYNQ is not set +CONFIG_ARCH_ZYNQMP=y +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCX_ANYBUS_CONTROLLER=m +CONFIG_ARC_EMAC_CORE=m +CONFIG_ARM=y +CONFIG_ARM64=y +# CONFIG_ARM64_16K_PAGES is not set +CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y +CONFIG_ARM64_AMU_EXTN=y +CONFIG_ARM64_AS_HAS_MTE=y +CONFIG_ARM64_BTI=y +CONFIG_ARM64_BTI_KERNEL=y +CONFIG_ARM64_CNP=y +CONFIG_ARM64_CRYPTO=y +# CONFIG_ARM64_DEBUG_PRIORITY_MASKING is not set +CONFIG_ARM64_E0PD=y +CONFIG_ARM64_EPAN=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1319367=y +CONFIG_ARM64_ERRATUM_1418040=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1508412=y +CONFIG_ARM64_ERRATUM_1530923=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_845719=y +CONFIG_ARM64_ERRATUM_858921=y +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_LD_HAS_FIX_ERRATUM_843419=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MODULE_PLTS=y +CONFIG_ARM64_MTE=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_PA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +# CONFIG_ARM64_PA_BITS_52 is not set +CONFIG_ARM64_PMEM=y +CONFIG_ARM64_PSEUDO_NMI=y +CONFIG_ARM64_PTR_AUTH=y +CONFIG_ARM64_PTR_AUTH_KERNEL=y +CONFIG_ARM64_RAS_EXTN=y +# CONFIG_ARM64_RELOC_TEST is not set +CONFIG_ARM64_SVE=y +CONFIG_ARM64_SW_TTBR0_PAN=y +CONFIG_ARM64_TAGGED_ADDR_ABI=y +CONFIG_ARM64_TLB_RANGE=y +CONFIG_ARM64_USE_LSE_ATOMICS=y +CONFIG_ARM64_VA_BITS=48 +# CONFIG_ARM64_VA_BITS_39 is not set +# CONFIG_ARM64_VA_BITS_42 is not set +CONFIG_ARM64_VA_BITS_48=y +# CONFIG_ARM64_VA_BITS_52 is not set +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y +CONFIG_ARMADA375_USBCLUSTER_PHY=y +CONFIG_ARMADA_370_CLK=y +CONFIG_ARMADA_370_XP_IRQ=y +CONFIG_ARMADA_370_XP_TIMER=y +CONFIG_ARMADA_375_CLK=y +CONFIG_ARMADA_37XX_CLK=y +CONFIG_ARMADA_37XX_RWTM_MBOX=m +CONFIG_ARMADA_37XX_WATCHDOG=m +CONFIG_ARMADA_38X_CLK=y +CONFIG_ARMADA_39X_CLK=y +CONFIG_ARMADA_AP806_SYSCON=y +CONFIG_ARMADA_AP_CPU_CLK=y +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_CP110_SYSCON=y +CONFIG_ARMADA_THERMAL=y +CONFIG_ARMADA_XP_CLK=y +CONFIG_ARMV8_DEPRECATED=y +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=m +CONFIG_ARM_AMBA=y +CONFIG_ARM_APPENDED_DTB=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_ARM_ARMADA_37XX_CPUFREQ=m +CONFIG_ARM_ARMADA_8K_CPUFREQ=m +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND=y +# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER is not set +CONFIG_ARM_BIG_LITTLE_CPUIDLE=y +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=m +CONFIG_ARM_CCI=y +CONFIG_ARM_CCI400_COMMON=y +CONFIG_ARM_CCI400_PMU=y +CONFIG_ARM_CCI400_PORT_CTRL=y +CONFIG_ARM_CCI5xx_PMU=y +CONFIG_ARM_CCI_PMU=y +CONFIG_ARM_CCN=y +CONFIG_ARM_CHARLCD=y +CONFIG_ARM_CMN=m +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_CPU_SUSPEND=y +CONFIG_ARM_CPU_TOPOLOGY=y +CONFIG_ARM_CRYPTO=y +CONFIG_ARM_DMA_IOMMU_ALIGNMENT=8 +CONFIG_ARM_DMA_MEM_BUFFERABLE=y +CONFIG_ARM_DMA_USE_IOMMU=y +CONFIG_ARM_DMC620_PMU=m +CONFIG_ARM_DSU_PMU=m +CONFIG_ARM_ERRATA_430973=y +CONFIG_ARM_ERRATA_643719=y +CONFIG_ARM_ERRATA_720789=y +CONFIG_ARM_ERRATA_754322=y +CONFIG_ARM_ERRATA_754327=y +CONFIG_ARM_ERRATA_764369=y +CONFIG_ARM_ERRATA_773022=y +CONFIG_ARM_ERRATA_775420=y +CONFIG_ARM_ERRATA_798181=y +CONFIG_ARM_ERRATA_814220=y +CONFIG_ARM_ERRATA_818325_852422=y +CONFIG_ARM_ERRATA_821420=y +CONFIG_ARM_ERRATA_825619=y +CONFIG_ARM_ERRATA_852421=y +CONFIG_ARM_ERRATA_852423=y +CONFIG_ARM_ERRATA_857271=y +CONFIG_ARM_ERRATA_857272=y +CONFIG_ARM_EXYNOS_BUS_DEVFREQ=y +CONFIG_ARM_EXYNOS_CPUIDLE=y +CONFIG_ARM_FFA_SMCCC=y +CONFIG_ARM_FFA_TRANSPORT=m +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_PM=y +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_GLOBAL_TIMER=y +CONFIG_ARM_GT_INITIAL_PRESCALER_VAL=1 +CONFIG_ARM_HAS_SG_CHAIN=y +CONFIG_ARM_HEAVY_MB=y +CONFIG_ARM_HIGHBANK_CPUFREQ=m +CONFIG_ARM_IMX6Q_CPUFREQ=m +CONFIG_ARM_IMX8M_DDRC_DEVFREQ=m +CONFIG_ARM_IMX_BUS_DEVFREQ=m +CONFIG_ARM_IMX_CPUFREQ_DT=m +CONFIG_ARM_KPROBES_TEST=m +CONFIG_ARM_L1_CACHE_SHIFT=7 +CONFIG_ARM_L1_CACHE_SHIFT_6=y +CONFIG_ARM_L1_CACHE_SHIFT_7=y +CONFIG_ARM_MEDIATEK_CPUFREQ=m +CONFIG_ARM_MEDIATEK_CPUFREQ_HW=m +CONFIG_ARM_MHU=m +CONFIG_ARM_MHU_V2=m +CONFIG_ARM_MODULE_PLTS=y +CONFIG_ARM_MVEBU_V7_CPUIDLE=y +CONFIG_ARM_OMAP2PLUS_CPUFREQ=y +CONFIG_ARM_PATCH_IDIV=y +CONFIG_ARM_PATCH_PHYS_VIRT=y +CONFIG_ARM_PL172_MPMC=m +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +CONFIG_ARM_PSCI=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y +CONFIG_ARM_PSCI_FW=y +CONFIG_ARM_PTDUMP_CORE=y +# CONFIG_ARM_PTDUMP_DEBUGFS is not set +CONFIG_ARM_QCOM_CPUFREQ_HW=m +CONFIG_ARM_QCOM_CPUFREQ_NVMEM=m +CONFIG_ARM_QCOM_SPM_CPUIDLE=y +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_RK3399_DMC_DEVFREQ=m +CONFIG_ARM_SBSA_WATCHDOG=m +CONFIG_ARM_SCMI_CPUFREQ=m +CONFIG_ARM_SCMI_HAVE_MSG=y +CONFIG_ARM_SCMI_HAVE_SHMEM=y +CONFIG_ARM_SCMI_HAVE_TRANSPORT=y +CONFIG_ARM_SCMI_POWER_DOMAIN=m +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX=y +CONFIG_ARM_SCMI_TRANSPORT_SMC=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO=y +CONFIG_ARM_SCPI_CPUFREQ=m +CONFIG_ARM_SCPI_POWER_DOMAIN=m +CONFIG_ARM_SCPI_PROTOCOL=m +CONFIG_ARM_SDE_INTERFACE=y +CONFIG_ARM_SMCCC_SOC_ID=y +CONFIG_ARM_SMC_WATCHDOG=m +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set +CONFIG_ARM_SMMU_QCOM=y +CONFIG_ARM_SMMU_V3=y +CONFIG_ARM_SMMU_V3_PMU=m +CONFIG_ARM_SMMU_V3_SVA=y +CONFIG_ARM_SP805_WATCHDOG=m +CONFIG_ARM_SPE_PMU=m +CONFIG_ARM_TEGRA124_CPUFREQ=y +CONFIG_ARM_TEGRA186_CPUFREQ=m +CONFIG_ARM_TEGRA194_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=y +# CONFIG_ARM_TEGRA_CPUIDLE is not set +CONFIG_ARM_TEGRA_DEVFREQ=m +CONFIG_ARM_THUMB=y +CONFIG_ARM_THUMBEE=y +CONFIG_ARM_TIMER_SP804=y +CONFIG_ARM_TI_CPUFREQ=y +CONFIG_ARM_VEXPRESS_SPC_CPUFREQ=m +CONFIG_ARM_VIRT_EXT=y +CONFIG_AS3935=m +CONFIG_AS73211=m +CONFIG_ASHMEM=m +CONFIG_ASM_MODVERSIONS=y +CONFIG_ASN1=y +CONFIG_ASN1_ENCODER=y +CONFIG_ASPEED_ADC=m +CONFIG_ASPEED_BT_IPMI_BMC=m +CONFIG_ASPEED_KCS_IPMI_BMC=m +CONFIG_ASPEED_LPC_CTRL=m +CONFIG_ASPEED_LPC_SNOOP=m +CONFIG_ASPEED_P2A_CTRL=m +CONFIG_ASPEED_SOCINFO=y +CONFIG_ASPEED_WATCHDOG=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_ASUS_LAPTOP=m +CONFIG_ASUS_NB_WMI=m +CONFIG_ASUS_WIRELESS=m +CONFIG_ASUS_WMI=m +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +# CONFIG_ASYNC_RAID6_TEST is not set +CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y +CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y +CONFIG_ASYNC_TX_DMA=y +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_ASYNC_XOR=m +CONFIG_AS_AVX512=y +CONFIG_AS_HAS_ARMV8_4=y +CONFIG_AS_HAS_ARMV8_5=y +CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y +CONFIG_AS_HAS_LDAPR=y +CONFIG_AS_HAS_LSE_ATOMICS=y +CONFIG_AS_HAS_PAC=y +CONFIG_AS_IS_GNU=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y +CONFIG_AS_VERSION=23700 +CONFIG_AS_VFP_VMRS_FPINST=y +CONFIG_AT76C50X_USB=m +CONFIG_AT803X_PHY=m +CONFIG_ATAGS=y +CONFIG_ATAGS_PROC=y +CONFIG_ATA_ACPI=y +CONFIG_ATA_BMDMA=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_SFF=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATH10K=m +CONFIG_ATH10K_AHB=y +CONFIG_ATH10K_CE=y +# CONFIG_ATH10K_DEBUG is not set +CONFIG_ATH10K_DEBUGFS=y +CONFIG_ATH10K_PCI=m +CONFIG_ATH10K_SDIO=m +CONFIG_ATH10K_SNOC=m +CONFIG_ATH10K_SPECTRAL=y +CONFIG_ATH10K_TRACING=y +CONFIG_ATH10K_USB=m +CONFIG_ATH11K=m +CONFIG_ATH11K_AHB=m +# CONFIG_ATH11K_DEBUG is not set +CONFIG_ATH11K_DEBUGFS=y +CONFIG_ATH11K_PCI=m +CONFIG_ATH11K_SPECTRAL=y +CONFIG_ATH11K_TRACING=y +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +CONFIG_ATH5K_PCI=y +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH6KL=m +# CONFIG_ATH6KL_DEBUG is not set +CONFIG_ATH6KL_SDIO=m +# CONFIG_ATH6KL_TRACING is not set +CONFIG_ATH6KL_USB=m +CONFIG_ATH9K=m +CONFIG_ATH9K_AHB=y +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K_CHANNEL_CONTEXT=y +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_COMMON_DEBUG=y +CONFIG_ATH9K_COMMON_SPECTRAL=y +CONFIG_ATH9K_DEBUGFS=y +# CONFIG_ATH9K_DYNACK is not set +CONFIG_ATH9K_HTC=m +CONFIG_ATH9K_HTC_DEBUGFS=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_HWRNG=y +CONFIG_ATH9K_PCI=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_RFKILL=y +CONFIG_ATH9K_STATION_STATISTICS=y +CONFIG_ATH9K_WOW=y +CONFIG_ATH_COMMON=m +# CONFIG_ATH_DEBUG is not set +CONFIG_ATL1=m +CONFIG_ATL1C=m +CONFIG_ATL1E=m +CONFIG_ATL2=m +CONFIG_ATLAS_EZO_SENSOR=m +CONFIG_ATLAS_PH_SENSOR=m +CONFIG_ATMEL=m +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FIRESTREAM=m +CONFIG_ATM_FORE200E=m +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_FORE200E_TX_RETRY=16 +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_LANAI=m +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +CONFIG_ATM_SOLOS=m +CONFIG_ATM_TCP=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +# CONFIG_ATOMIC64_SELFTEST is not set +CONFIG_ATP=m +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_ARCH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUDIT_COMPAT_GENERIC=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUTO_ZRELADDR=y +CONFIG_AUXILIARY_BUS=y +CONFIG_AX25=m +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_AX88796=m +# CONFIG_AX88796_93CX6 is not set +CONFIG_AXI_DMAC=m +CONFIG_AXP20X_ADC=m +CONFIG_AXP20X_POWER=m +CONFIG_AXP288_ADC=m +CONFIG_AXP288_CHARGER=m +CONFIG_AXP288_FUEL_GAUGE=m +CONFIG_B43=m +CONFIG_B43LEGACY=m +# CONFIG_B43LEGACY_DEBUG is not set +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PIO=y +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_B43_BCMA=y +CONFIG_B43_BCMA_PIO=y +# CONFIG_B43_BUSES_BCMA is not set +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_SSB is not set +# CONFIG_B43_DEBUG is not set +CONFIG_B43_HWRNG=y +CONFIG_B43_LEDS=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PIO=y +# CONFIG_B43_SDIO is not set +CONFIG_B43_SSB=y +CONFIG_B44=m +CONFIG_B44_PCI=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B53=m +CONFIG_B53_MDIO_DRIVER=m +CONFIG_B53_MMAP_DRIVER=m +CONFIG_B53_SERDES=m +CONFIG_B53_SPI_DRIVER=m +CONFIG_B53_SRAB_DRIVER=m +CONFIG_BACKLIGHT_88PM860X=m +CONFIG_BACKLIGHT_AAT2870=m +CONFIG_BACKLIGHT_ADP5520=m +CONFIG_BACKLIGHT_ADP8860=m +CONFIG_BACKLIGHT_ADP8870=m +CONFIG_BACKLIGHT_APPLE=m +CONFIG_BACKLIGHT_ARCXCNN=m +CONFIG_BACKLIGHT_AS3711=m +CONFIG_BACKLIGHT_BD6107=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_DA9052=m +CONFIG_BACKLIGHT_GPIO=m +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_LED=m +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_LM3630A=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_LP8788=m +CONFIG_BACKLIGHT_LV5207LP=m +CONFIG_BACKLIGHT_MAX8925=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_PCF50633=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RAVE_SP=m +CONFIG_BACKLIGHT_RT4831=m +CONFIG_BACKLIGHT_SAHARA=m +CONFIG_BACKLIGHT_SKY81452=m +CONFIG_BACKLIGHT_TPS65217=m +CONFIG_BACKLIGHT_WM831X=m +# CONFIG_BACKTRACE_SELF_TEST is not set +CONFIG_BALLOON_COMPACTION=y +CONFIG_BASE_FULL=y +CONFIG_BASE_SMALL=0 +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +# CONFIG_BATMAN_ADV_DEBUG is not set +CONFIG_BATMAN_ADV_MCAST=y +CONFIG_BATMAN_ADV_NC=y +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_BATTERY_88PM860X=m +CONFIG_BATTERY_ACER_A500=m +CONFIG_BATTERY_ACT8945A=m +CONFIG_BATTERY_AXP20X=m +CONFIG_BATTERY_BQ27XXX=m +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +CONFIG_BATTERY_BQ27XXX_HDQ=m +CONFIG_BATTERY_BQ27XXX_I2C=m +CONFIG_BATTERY_CPCAP=m +CONFIG_BATTERY_CW2015=m +CONFIG_BATTERY_DA9030=m +CONFIG_BATTERY_DA9052=m +CONFIG_BATTERY_DA9150=m +CONFIG_BATTERY_DS2760=m +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_GAUGE_LTC2941=m +CONFIG_BATTERY_GOLDFISH=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_MAX1721X=m +CONFIG_BATTERY_RT5033=m +CONFIG_BATTERY_RX51=m +CONFIG_BATTERY_SBS=m +CONFIG_BATTERY_SURFACE=m +CONFIG_BATTERY_TWL4030_MADC=m +CONFIG_BAYCOM_EPP=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BCACHE=m +CONFIG_BCACHE_ASYNC_REGISTRATION=y +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_DEBUG is not set +CONFIG_BCM2711_THERMAL=m +CONFIG_BCM2835_MBOX=y +CONFIG_BCM2835_POWER=y +CONFIG_BCM2835_THERMAL=m +CONFIG_BCM2835_VCHIQ=m +CONFIG_BCM2835_VCHIQ_MMAL=m +CONFIG_BCM2835_WDT=m +CONFIG_BCM4908_ENET=m +CONFIG_BCM54140_PHY=m +CONFIG_BCM7038_L1_IRQ=y +CONFIG_BCM7038_WDT=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA_BLOCKIO=y +# CONFIG_BCMA_DEBUG is not set +CONFIG_BCMA_DRIVER_GMAC_CMN=y +CONFIG_BCMA_DRIVER_GPIO=y +CONFIG_BCMA_DRIVER_PCI=y +CONFIG_BCMA_HOST_PCI=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_SOC=y +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA_SFLASH=y +CONFIG_BCMGENET=m +CONFIG_BCM_FLEXRM_MBOX=m +CONFIG_BCM_IPROC_ADC=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_BCM_NS_THERMAL=m +CONFIG_BCM_PDC_MBOX=m +CONFIG_BCM_PMB=y +CONFIG_BCM_SBA_RAID=m +CONFIG_BCM_SR_THERMAL=m +CONFIG_BCM_VIDEOCORE=m +CONFIG_BCM_VK_TTY=y +CONFIG_BD957XMUF_WATCHDOG=m +CONFIG_BE2NET=m +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +# CONFIG_BEFS_DEBUG is not set +CONFIG_BERLIN2_ADC=m +# CONFIG_BFQ_CGROUP_DEBUG is not set +CONFIG_BFQ_GROUP_IOSCHED=y +CONFIG_BGMAC=y +CONFIG_BGMAC_PLATFORM=y +CONFIG_BH1750=m +CONFIG_BH1780=m +CONFIG_BIG_LITTLE=y +CONFIG_BINARY_PRINTF=y +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_ELF_FDPIC=y +CONFIG_BINFMT_FLAT=y +CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y +CONFIG_BINFMT_FLAT_OLD=y +CONFIG_BINFMT_MISC=m +CONFIG_BINFMT_SCRIPT=y +CONFIG_BINFMT_SHARED_FLAT=y +CONFIG_BINFMT_ZFLAT=y +CONFIG_BITREVERSE=y +CONFIG_BLK_CGROUP=y +CONFIG_BLK_CGROUP_FC_APPID=y +CONFIG_BLK_CGROUP_IOCOST=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEBUG_FS=y +CONFIG_BLK_DEBUG_FS_ZONED=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_DM=y +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DRBD=m +CONFIG_BLK_DEV_FD=m +CONFIG_BLK_DEV_INITRD=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_MD=y +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PMEM=m +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m +CONFIG_BLK_DEV_SD=y +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_DEV_ZONED=y +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_SED_OPAL=y +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +CONFIG_BLOCK=y +CONFIG_BLOCK_COMPAT=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y +CONFIG_BL_SWITCHER=y +CONFIG_BL_SWITCHER_DUMMY_IF=m +CONFIG_BMA220=m +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +CONFIG_BMC150_ACCEL=m +CONFIG_BMC150_ACCEL_I2C=m +CONFIG_BMC150_ACCEL_SPI=m +CONFIG_BMC150_MAGN=m +CONFIG_BMC150_MAGN_I2C=m +CONFIG_BMC150_MAGN_SPI=m +CONFIG_BME680=m +CONFIG_BME680_I2C=m +CONFIG_BME680_SPI=m +CONFIG_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_BMI088_ACCEL=m +CONFIG_BMI088_ACCEL_SPI=m +CONFIG_BMI160=m +CONFIG_BMI160_I2C=m +CONFIG_BMI160_SPI=m +CONFIG_BMP280=m +CONFIG_BMP280_I2C=m +CONFIG_BMP280_SPI=m +CONFIG_BNA=m +CONFIG_BNX2=m +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +CONFIG_BNXT=m +CONFIG_BNXT_DCB=y +CONFIG_BNXT_FLOWER_OFFLOAD=y +CONFIG_BNXT_HWMON=y +CONFIG_BNXT_SRIOV=y +CONFIG_BOARD_TPCI200=m +CONFIG_BONDING=m +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +CONFIG_BOOTTIME_TRACING=y +# CONFIG_BOOTX_TEXT is not set +CONFIG_BOOT_CONFIG=y +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_BOUNCE=y +CONFIG_BPF=y +CONFIG_BPFILTER=y +CONFIG_BPFILTER_UMH=m +CONFIG_BPF_EVENTS=y +CONFIG_BPF_JIT=y +CONFIG_BPF_JIT_ALWAYS_ON=y +CONFIG_BPF_JIT_DEFAULT_ON=y +CONFIG_BPF_KPROBE_OVERRIDE=y +CONFIG_BPF_LSM=y +# CONFIG_BPF_PRELOAD is not set +CONFIG_BPF_STREAM_PARSER=y +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_UNPRIV_DEFAULT_OFF=y +CONFIG_BPQETHER=m +CONFIG_BQL=y +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_BRCMDBG is not set +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PCIE=y +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMSMAC=m +CONFIG_BRCMSTB_DPFE=y +CONFIG_BRCMSTB_GISB_ARB=y +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_BRCMSTB_PM=y +CONFIG_BRCMSTB_THERMAL=m +CONFIG_BRCMUTIL=m +CONFIG_BRCM_TRACING=y +CONFIG_BRCM_USB_PINMAP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_CFM=y +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_NETFILTER=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BROADCOM_PHY=m +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_BT=m +CONFIG_BTREE=y +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_DEBUG is not set +CONFIG_BTRFS_FS=m +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +CONFIG_BTT=y +CONFIG_BT_6LOWPAN=m +CONFIG_BT_AOSPEXT=y +CONFIG_BT_ATH3K=m +CONFIG_BT_BCM=m +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_BREDR=y +CONFIG_BT_CMTP=m +CONFIG_BT_DEBUGFS=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_HCIUART_NOKIA=m +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIVHCI=m +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_INTEL=m +CONFIG_BT_LE=y +CONFIG_BT_LEDS=y +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_MSFTEXT=y +CONFIG_BT_MTKSDIO=m +CONFIG_BT_MTKUART=m +CONFIG_BT_QCA=m +CONFIG_BT_QCOMSMD=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_RTL=m +# CONFIG_BT_SELFTEST is not set +CONFIG_BT_VIRTIO=m +CONFIG_BUG=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_BUILD_BIN2C=y +CONFIG_BUILD_SALT="" +CONFIG_BXT_WC_PMIC_OPREGION=y +CONFIG_BYTCRC_PMIC_OPREGION=y +CONFIG_C2PORT_DURAMAR_2150=m +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +CONFIG_CACHE_FEROCEON_L2=y +# CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH is not set +CONFIG_CACHE_L2X0=y +CONFIG_CACHE_L2X0_PMU=y +CONFIG_CACHE_TAUROS2=y +CONFIG_CACHE_UNIPHIER=y +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_DRIVERS=y +CONFIG_CAIF_NETDEV=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_USB=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_BCM=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_CC770=m +CONFIG_CAN_CC770_ISA=m +CONFIG_CAN_CC770_PLATFORM=m +CONFIG_CAN_C_CAN=m +CONFIG_CAN_C_CAN_PCI=m +CONFIG_CAN_C_CAN_PLATFORM=m +# CONFIG_CAN_DEBUG_DEVICES is not set +CONFIG_CAN_DEV=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_F81601=m +CONFIG_CAN_FLEXCAN=m +CONFIG_CAN_GRCAN=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_GW=m +CONFIG_CAN_HI311X=m +CONFIG_CAN_IFI_CANFD=m +CONFIG_CAN_ISOTP=m +CONFIG_CAN_J1939=m +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_KVASER_PCIEFD=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_MCBA_USB=m +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +CONFIG_CAN_MSCAN=m +CONFIG_CAN_M_CAN=m +CONFIG_CAN_M_CAN_PCI=m +CONFIG_CAN_M_CAN_PLATFORM=m +CONFIG_CAN_M_CAN_TCAN4X5X=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PEAK_PCIEFD=m +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_RAW=m +CONFIG_CAN_RCAR=m +CONFIG_CAN_RCAR_CANFD=m +CONFIG_CAN_SJA1000=m +CONFIG_CAN_SJA1000_ISA=m +CONFIG_CAN_SJA1000_PLATFORM=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m +CONFIG_CAN_TI_HECC=m +CONFIG_CAN_UCAN=m +CONFIG_CAN_VCAN=m +CONFIG_CAN_VXCAN=m +CONFIG_CAN_XILINXCAN=m +CONFIG_CAPI_TRACE=y +CONFIG_CARDBUS=y +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_CARL9170=m +# CONFIG_CARL9170_DEBUGFS is not set +CONFIG_CARL9170_HWRNG=y +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARMINE_DRAM_CUSTOM is not set +CONFIG_CASSINI=m +CONFIG_CAVIUM_CPT=m +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_PTP=m +CONFIG_CAVIUM_TX2_ERRATUM_219=y +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_CC10001_ADC=m +CONFIG_CCS811=m +CONFIG_CCW=y +CONFIG_CCWGROUP=m +CONFIG_CCW_CONSOLE=y +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_KASAN_SW_TAGS=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y +CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_CC_IS_GCC=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_CDNS_I3C_MASTER=m +CONFIG_CDROM=y +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_CEC_CH7322=m +CONFIG_CEC_CORE=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_GPIO=m +CONFIG_CEC_MESON_AO=m +CONFIG_CEC_MESON_G12A_AO=m +CONFIG_CEC_NOTIFIER=y +CONFIG_CEC_PIN=y +# CONFIG_CEC_PIN_ERROR_INJ is not set +CONFIG_CEC_SAMSUNG_S5P=m +CONFIG_CEC_SECO=m +CONFIG_CEC_SECO_RC=y +CONFIG_CEC_TEGRA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_CFG80211=m +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_DEBUGFS=y +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_CGROUPS=y +CONFIG_CGROUP_BPF=y +CONFIG_CGROUP_CPUACCT=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CGROUP_MISC=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_PIDS=y +CONFIG_CGROUP_RDMA=y +CONFIG_CGROUP_SCHED=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CHARGER_88PM860X=m +CONFIG_CHARGER_ADP5061=m +CONFIG_CHARGER_AXP20X=m +CONFIG_CHARGER_BD99954=m +CONFIG_CHARGER_BQ2415X=m +CONFIG_CHARGER_BQ24190=m +CONFIG_CHARGER_BQ24257=m +CONFIG_CHARGER_BQ24735=m +CONFIG_CHARGER_BQ2515X=m +CONFIG_CHARGER_BQ256XX=m +CONFIG_CHARGER_BQ25890=m +CONFIG_CHARGER_BQ25980=m +CONFIG_CHARGER_CPCAP=m +CONFIG_CHARGER_CROS_PCHG=m +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_DA9150=m +CONFIG_CHARGER_DETECTOR_MAX14656=m +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_LP8788=m +CONFIG_CHARGER_LT3651=m +CONFIG_CHARGER_LTC4162L=m +CONFIG_CHARGER_MANAGER=y +CONFIG_CHARGER_MAX14577=m +CONFIG_CHARGER_MAX77650=m +CONFIG_CHARGER_MAX77693=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_MP2629=m +CONFIG_CHARGER_MT6360=m +CONFIG_CHARGER_PCF50633=m +CONFIG_CHARGER_QCOM_SMBB=m +CONFIG_CHARGER_RT9455=m +CONFIG_CHARGER_SBS=m +CONFIG_CHARGER_SC2731=m +CONFIG_CHARGER_SMB347=m +CONFIG_CHARGER_SURFACE=m +CONFIG_CHARGER_TPS65090=m +CONFIG_CHARGER_TPS65217=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHARGER_UCS1002=m +CONFIG_CHARGER_WILCO=m +CONFIG_CHARLCD=m +CONFIG_CHARLCD_BL_FLASH=y +# CONFIG_CHARLCD_BL_OFF is not set +# CONFIG_CHARLCD_BL_ON is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CHELSIO_INLINE_CRYPTO=y +CONFIG_CHELSIO_IPSEC_INLINE=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_TLS_DEVICE=m +CONFIG_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CHROMEOS_TBMC=m +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHR_DEV_SCH=m +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHSC_SCH=m +CONFIG_CHTCRC_PMIC_OPREGION=y +CONFIG_CHT_DC_TI_PMIC_OPREGION=y +CONFIG_CHT_WC_PMIC_OPREGION=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS=m +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_FSCACHE=y +CONFIG_CIFS_POSIX=y +# CONFIG_CIFS_SMB_DIRECT is not set +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_SWN_UPCALL=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIO2_BRIDGE=y +CONFIG_CIO_DAC=m +# CONFIG_CIO_INJECT is not set +CONFIG_CLANG_VERSION=0 +CONFIG_CLEANCACHE=y +CONFIG_CLKBLD_I8253=y +CONFIG_CLKEVT_I8253=y +CONFIG_CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK=y +CONFIG_CLKSRC_EXYNOS_MCT=y +CONFIG_CLKSRC_IMX_GPT=y +CONFIG_CLKSRC_IMX_TPM=y +CONFIG_CLKSRC_MMIO=y +CONFIG_CLKSRC_QCOM=y +CONFIG_CLKSRC_TI_32K=y +CONFIG_CLKSRC_VERSATILE=y +CONFIG_CLK_ACTIONS=y +CONFIG_CLK_BCM2711_DVP=m +CONFIG_CLK_BCM2835=y +CONFIG_CLK_BCM_NS2=y +CONFIG_CLK_BCM_SR=y +CONFIG_CLK_EMEV2=y +CONFIG_CLK_GFM_LPASS_SM8250=m +CONFIG_CLK_IMX5=y +CONFIG_CLK_IMX6Q=y +CONFIG_CLK_IMX6SL=y +CONFIG_CLK_IMX6SLL=y +CONFIG_CLK_IMX6SX=y +CONFIG_CLK_IMX6UL=y +CONFIG_CLK_IMX7D=y +CONFIG_CLK_IMX7ULP=y +CONFIG_CLK_IMX8MM=y +CONFIG_CLK_IMX8MN=y +CONFIG_CLK_IMX8MP=y +CONFIG_CLK_IMX8MQ=y +CONFIG_CLK_IMX8QXP=y +CONFIG_CLK_INTEL_SOCFPGA=y +CONFIG_CLK_INTEL_SOCFPGA32=y +CONFIG_CLK_INTEL_SOCFPGA64=y +CONFIG_CLK_LS1028A_PLLDIG=m +CONFIG_CLK_OWL_S500=y +CONFIG_CLK_OWL_S700=y +CONFIG_CLK_OWL_S900=y +CONFIG_CLK_PX30=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_R7S9210=y +CONFIG_CLK_R8A7740=y +CONFIG_CLK_R8A7742=y +CONFIG_CLK_R8A7743=y +CONFIG_CLK_R8A7745=y +CONFIG_CLK_R8A77470=y +CONFIG_CLK_R8A774A1=y +CONFIG_CLK_R8A774B1=y +CONFIG_CLK_R8A774C0=y +CONFIG_CLK_R8A774E1=y +CONFIG_CLK_R8A7778=y +CONFIG_CLK_R8A7779=y +CONFIG_CLK_R8A7790=y +CONFIG_CLK_R8A7791=y +CONFIG_CLK_R8A7792=y +CONFIG_CLK_R8A7794=y +CONFIG_CLK_R8A7795=y +CONFIG_CLK_R8A77960=y +CONFIG_CLK_R8A77961=y +CONFIG_CLK_R8A77965=y +CONFIG_CLK_R8A77970=y +CONFIG_CLK_R8A77980=y +CONFIG_CLK_R8A77990=y +CONFIG_CLK_R8A77995=y +CONFIG_CLK_R8A779A0=y +CONFIG_CLK_R9A06G032=y +CONFIG_CLK_R9A07G044=y +CONFIG_CLK_RASPBERRYPI=m +CONFIG_CLK_RCAR_CPG_LIB=y +CONFIG_CLK_RCAR_GEN2_CPG=y +CONFIG_CLK_RCAR_GEN3_CPG=y +CONFIG_CLK_RCAR_USB2_CLOCK_SEL=y +CONFIG_CLK_RENESAS=y +CONFIG_CLK_RENESAS_CPG_MSSR=y +CONFIG_CLK_RENESAS_CPG_MSTP=y +CONFIG_CLK_RENESAS_DIV6=y +CONFIG_CLK_RK3036=y +CONFIG_CLK_RK312X=y +CONFIG_CLK_RK3188=y +CONFIG_CLK_RK322X=y +CONFIG_CLK_RK3288=y +CONFIG_CLK_RK3308=y +CONFIG_CLK_RK3328=y +CONFIG_CLK_RK3368=y +CONFIG_CLK_RK3399=y +CONFIG_CLK_RK3568=m +CONFIG_CLK_RV110X=y +CONFIG_CLK_RZA1=y +CONFIG_CLK_RZG2L=y +CONFIG_CLK_SH73A0=y +CONFIG_CLK_SP810=y +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_CLK_TEGRA_BPMP=y +CONFIG_CLK_TWL6040=m +CONFIG_CLK_UNIPHIER=y +CONFIG_CLK_VEXPRESS_OSC=y +CONFIG_CLK_VF610=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_CLONE_BACKWARDS=y +CONFIG_CLONE_BACKWARDS2=y +CONFIG_CLS_U32_MARK=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CLZ_TAB=y +CONFIG_CM32181=m +CONFIG_CM3232=m +CONFIG_CM3323=m +CONFIG_CM3605=m +CONFIG_CM36651=m +CONFIG_CMA_ALIGNMENT=8 +CONFIG_CMA_AREAS=7 +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SIZE_MBYTES=32 +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +CONFIG_CMA_SYSFS=y +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_CMDLINE_FORCE is not set +CONFIG_CMDLINE_FROM_BOOTLOADER=y +CONFIG_CMM_IUCV=y +CONFIG_CMT_SPEECH=m +CONFIG_CNIC=m +CONFIG_CODA_FS=m +# CONFIG_CODE_PATCHING_SELFTEST is not set +CONFIG_COMEDI_8254=m +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_8255_PCI=m +CONFIG_COMEDI_8255_SA=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADDI_WATCHDOG=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADQ12B=m +CONFIG_COMEDI_ADV_PCI1710=m +CONFIG_COMEDI_ADV_PCI1720=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +CONFIG_COMEDI_ADV_PCI1760=m +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AIO_AIO12_8=m +CONFIG_COMEDI_AIO_IIRO_16=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_DIO200_ISA=m +CONFIG_COMEDI_AMPLC_DIO200_PCI=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_AMPLC_PC236_ISA=m +CONFIG_COMEDI_AMPLC_PC236_PCI=m +CONFIG_COMEDI_AMPLC_PC263_ISA=m +CONFIG_COMEDI_AMPLC_PC263_PCI=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_C6XDIGIO=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAC02=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_DAS08_ISA=m +CONFIG_COMEDI_DAS08_PCI=m +CONFIG_COMEDI_DAS16=m +CONFIG_COMEDI_DAS16M1=m +CONFIG_COMEDI_DAS1800=m +CONFIG_COMEDI_DAS6402=m +CONFIG_COMEDI_DAS800=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DMM32AT=m +CONFIG_COMEDI_DT2801=m +CONFIG_COMEDI_DT2811=m +CONFIG_COMEDI_DT2814=m +CONFIG_COMEDI_DT2815=m +CONFIG_COMEDI_DT2817=m +CONFIG_COMEDI_DT282X=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_FL512=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_II_PCI20KC=m +CONFIG_COMEDI_ISADMA=m +CONFIG_COMEDI_ISA_DRIVERS=y +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_MF6X4=m +CONFIG_COMEDI_MISC_DRIVERS=y +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_MPC624=m +CONFIG_COMEDI_MULTIQ3=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_ATMIO=m +CONFIG_COMEDI_NI_ATMIO16D=m +CONFIG_COMEDI_NI_AT_A2150=m +CONFIG_COMEDI_NI_AT_AO=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_LABPC_ISA=m +CONFIG_COMEDI_NI_LABPC_ISADMA=m +CONFIG_COMEDI_NI_LABPC_PCI=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_NI_ROUTING=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_NI_TIOCMD=m +CONFIG_COMEDI_NI_USB6501=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_PCL711=m +CONFIG_COMEDI_PCL724=m +CONFIG_COMEDI_PCL726=m +CONFIG_COMEDI_PCL730=m +CONFIG_COMEDI_PCL812=m +CONFIG_COMEDI_PCL816=m +CONFIG_COMEDI_PCL818=m +CONFIG_COMEDI_PCM3724=m +CONFIG_COMEDI_PCMAD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_PCMDA12=m +CONFIG_COMEDI_PCMMIO=m +CONFIG_COMEDI_PCMUIO=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_RTI800=m +CONFIG_COMEDI_RTI802=m +CONFIG_COMEDI_S526=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_TESTS=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMMON_CLK_ASPEED=y +CONFIG_COMMON_CLK_AXG=y +CONFIG_COMMON_CLK_AXI_CLKGEN=m +CONFIG_COMMON_CLK_BD718XX=m +CONFIG_COMMON_CLK_BM1880=y +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_COMMON_CLK_CDCE925=m +CONFIG_COMMON_CLK_CS2000_CP=m +CONFIG_COMMON_CLK_FIXED_MMIO=y +CONFIG_COMMON_CLK_FSL_FLEXSPI=m +CONFIG_COMMON_CLK_FSL_SAI=y +CONFIG_COMMON_CLK_G12A=y +CONFIG_COMMON_CLK_GXBB=y +CONFIG_COMMON_CLK_HI3516CV300=m +CONFIG_COMMON_CLK_HI3519=m +CONFIG_COMMON_CLK_HI3559A=y +CONFIG_COMMON_CLK_HI3660=y +CONFIG_COMMON_CLK_HI3670=y +CONFIG_COMMON_CLK_HI3798CV200=m +CONFIG_COMMON_CLK_HI6220=y +CONFIG_COMMON_CLK_HI655X=m +CONFIG_COMMON_CLK_IPROC=y +CONFIG_COMMON_CLK_LOCHNAGAR=m +CONFIG_COMMON_CLK_MAX77686=m +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_MEDIATEK=y +CONFIG_COMMON_CLK_MESON8B=y +CONFIG_COMMON_CLK_MESON_AO_CLKC=y +CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y +CONFIG_COMMON_CLK_MESON_DUALDIV=y +CONFIG_COMMON_CLK_MESON_EE_CLKC=y +CONFIG_COMMON_CLK_MESON_MPLL=y +CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PLL=y +CONFIG_COMMON_CLK_MESON_REGMAP=y +CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y +# CONFIG_COMMON_CLK_MT2701 is not set +CONFIG_COMMON_CLK_MT2712=y +CONFIG_COMMON_CLK_MT2712_BDPSYS=y +CONFIG_COMMON_CLK_MT2712_IMGSYS=y +CONFIG_COMMON_CLK_MT2712_JPGDECSYS=y +CONFIG_COMMON_CLK_MT2712_MFGCFG=y +CONFIG_COMMON_CLK_MT2712_MMSYS=y +CONFIG_COMMON_CLK_MT2712_VDECSYS=y +CONFIG_COMMON_CLK_MT2712_VENCSYS=y +CONFIG_COMMON_CLK_MT6765=y +CONFIG_COMMON_CLK_MT6765_AUDIOSYS=y +CONFIG_COMMON_CLK_MT6765_CAMSYS=y +CONFIG_COMMON_CLK_MT6765_GCESYS=y +CONFIG_COMMON_CLK_MT6765_IMGSYS=y +CONFIG_COMMON_CLK_MT6765_MFGSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI0ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI0BSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI1ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI1BSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI2ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI2BSYS=y +CONFIG_COMMON_CLK_MT6765_MMSYS=y +CONFIG_COMMON_CLK_MT6765_VCODECSYS=y +CONFIG_COMMON_CLK_MT6779=y +CONFIG_COMMON_CLK_MT6779_AUDSYS=y +CONFIG_COMMON_CLK_MT6779_CAMSYS=y +CONFIG_COMMON_CLK_MT6779_IMGSYS=y +CONFIG_COMMON_CLK_MT6779_IPESYS=y +CONFIG_COMMON_CLK_MT6779_MFGCFG=y +CONFIG_COMMON_CLK_MT6779_MMSYS=y +CONFIG_COMMON_CLK_MT6779_VDECSYS=y +CONFIG_COMMON_CLK_MT6779_VENCSYS=y +CONFIG_COMMON_CLK_MT6797=y +CONFIG_COMMON_CLK_MT6797_IMGSYS=y +CONFIG_COMMON_CLK_MT6797_MMSYS=y +CONFIG_COMMON_CLK_MT6797_VDECSYS=y +CONFIG_COMMON_CLK_MT6797_VENCSYS=y +CONFIG_COMMON_CLK_MT7622=y +CONFIG_COMMON_CLK_MT7622_AUDSYS=y +CONFIG_COMMON_CLK_MT7622_ETHSYS=y +CONFIG_COMMON_CLK_MT7622_HIFSYS=y +CONFIG_COMMON_CLK_MT7629=y +CONFIG_COMMON_CLK_MT7629_ETHSYS=y +CONFIG_COMMON_CLK_MT7629_HIFSYS=y +CONFIG_COMMON_CLK_MT8135=y +CONFIG_COMMON_CLK_MT8167=y +CONFIG_COMMON_CLK_MT8167_AUDSYS=y +CONFIG_COMMON_CLK_MT8167_IMGSYS=y +CONFIG_COMMON_CLK_MT8167_MFGCFG=y +CONFIG_COMMON_CLK_MT8167_MMSYS=y +CONFIG_COMMON_CLK_MT8167_VDECSYS=y +CONFIG_COMMON_CLK_MT8173=y +CONFIG_COMMON_CLK_MT8173_MMSYS=y +CONFIG_COMMON_CLK_MT8183=y +CONFIG_COMMON_CLK_MT8183_AUDIOSYS=y +CONFIG_COMMON_CLK_MT8183_CAMSYS=y +CONFIG_COMMON_CLK_MT8183_IMGSYS=y +CONFIG_COMMON_CLK_MT8183_IPU_ADL=y +CONFIG_COMMON_CLK_MT8183_IPU_CONN=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE0=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE1=y +CONFIG_COMMON_CLK_MT8183_MFGCFG=y +CONFIG_COMMON_CLK_MT8183_MMSYS=y +CONFIG_COMMON_CLK_MT8183_VDECSYS=y +CONFIG_COMMON_CLK_MT8183_VENCSYS=y +CONFIG_COMMON_CLK_MT8192=y +CONFIG_COMMON_CLK_MT8192_AUDSYS=y +CONFIG_COMMON_CLK_MT8192_CAMSYS=y +CONFIG_COMMON_CLK_MT8192_IMGSYS=y +CONFIG_COMMON_CLK_MT8192_IMP_IIC_WRAP=y +CONFIG_COMMON_CLK_MT8192_IPESYS=y +CONFIG_COMMON_CLK_MT8192_MDPSYS=y +CONFIG_COMMON_CLK_MT8192_MFGCFG=y +CONFIG_COMMON_CLK_MT8192_MMSYS=y +CONFIG_COMMON_CLK_MT8192_MSDC=y +CONFIG_COMMON_CLK_MT8192_SCP_ADSP=y +CONFIG_COMMON_CLK_MT8192_VDECSYS=y +CONFIG_COMMON_CLK_MT8192_VENCSYS=y +CONFIG_COMMON_CLK_MT8516=y +CONFIG_COMMON_CLK_MT8516_AUDSYS=y +CONFIG_COMMON_CLK_PALMAS=m +CONFIG_COMMON_CLK_PWM=m +CONFIG_COMMON_CLK_QCOM=m +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_ROCKCHIP=y +CONFIG_COMMON_CLK_S2MPS11=m +CONFIG_COMMON_CLK_SAMSUNG=y +CONFIG_COMMON_CLK_SCMI=m +CONFIG_COMMON_CLK_SCPI=m +CONFIG_COMMON_CLK_SI514=m +CONFIG_COMMON_CLK_SI5341=m +CONFIG_COMMON_CLK_SI5351=m +CONFIG_COMMON_CLK_SI544=m +CONFIG_COMMON_CLK_SI570=m +CONFIG_COMMON_CLK_TI_ADPLL=y +CONFIG_COMMON_CLK_VC5=m +CONFIG_COMMON_CLK_WM831X=m +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +CONFIG_COMMON_CLK_ZYNQMP=y +CONFIG_COMMON_RESET_HI3660=m +CONFIG_COMMON_RESET_HI6220=m +CONFIG_COMPACTION=y +CONFIG_COMPAL_LAPTOP=m +CONFIG_COMPAT=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_COMPAT_BINFMT_ELF=y +# CONFIG_COMPAT_BRK is not set +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_COMPAT_OLD_SIGACTION=y +# CONFIG_COMPAT_VDSO is not set +# CONFIG_COMPILE_TEST is not set +CONFIG_CONFIGFS_FS=y +CONFIG_CONNECTOR=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_CONSOLE_POLL=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_CONTIG_ALLOC=y +CONFIG_CORDIC=m +CONFIG_COREDUMP=y +# CONFIG_CORESIGHT is not set +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_CORTINA_PHY=m +CONFIG_CP15_BARRIER_EMULATION=y +# CONFIG_CPA_DEBUG is not set +CONFIG_CPCAP_ADC=m +CONFIG_CPU5_WDT=m +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_CPUMASK_OFFSTACK=y +CONFIG_CPUSETS=y +CONFIG_CPU_32v6K=y +CONFIG_CPU_32v7=y +CONFIG_CPU_ABRT_EV7=y +# CONFIG_CPU_BPREDICT_DISABLE is not set +CONFIG_CPU_CACHE_V7=y +CONFIG_CPU_CACHE_VIPT=y +CONFIG_CPU_COPY_V6=y +CONFIG_CPU_CP15=y +CONFIG_CPU_CP15_MMU=y +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_FREQ_THERMAL=y +CONFIG_CPU_HAS_ASID=y +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_CPU_ICACHE_DISABLE is not set +CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND=y +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_HALTPOLL=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +CONFIG_CPU_IDLE_THERMAL=y +CONFIG_CPU_ISOLATION=y +CONFIG_CPU_LITTLE_ENDIAN=y +CONFIG_CPU_PABRT_V7=y +CONFIG_CPU_PJ4=y +CONFIG_CPU_PJ4B=y +CONFIG_CPU_PM=y +CONFIG_CPU_RMAP=y +CONFIG_CPU_SPECTRE=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_SW_DOMAIN_PAN=y +CONFIG_CPU_THERMAL=y +CONFIG_CPU_THUMB_CAPABLE=y +CONFIG_CPU_TLB_V7=y +CONFIG_CPU_V7=y +CONFIG_CRAMFS_BLOCKDEV=y +CONFIG_CRAMFS_MTD=y +CONFIG_CRASH_CORE=y +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRC32=y +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_SELFTEST is not set +# CONFIG_CRC32_SLICEBY4 is not set +CONFIG_CRC32_SLICEBY8=y +CONFIG_CRC4=m +CONFIG_CRC64=m +CONFIG_CRC7=m +CONFIG_CRC_CCITT=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC_T10DIF=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_CROS_EC=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_ISHTP=m +CONFIG_CROS_EC_LIGHTBAR=m +CONFIG_CROS_EC_LPC=m +CONFIG_CROS_EC_MKBP_PROXIMITY=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_EC_RPMSG=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_EC_TYPEC=m +CONFIG_CROS_EC_VBC=m +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +CONFIG_CRYPTO=y +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_AEGIS128_AESNI_SSE2=m +CONFIG_CRYPTO_AEGIS128_SIMD=y +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_ARM=m +CONFIG_CRYPTO_AES_ARM64=m +CONFIG_CRYPTO_AES_ARM64_BS=m +CONFIG_CRYPTO_AES_ARM64_CE=m +CONFIG_CRYPTO_AES_ARM64_CE_BLK=m +CONFIG_CRYPTO_AES_ARM64_CE_CCM=m +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m +CONFIG_CRYPTO_AES_ARM_BS=m +CONFIG_CRYPTO_AES_ARM_CE=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_AES_S390=m +CONFIG_CRYPTO_AES_TI=m +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2B_NEON=m +CONFIG_CRYPTO_BLAKE2S=m +CONFIG_CRYPTO_BLAKE2S_ARM=m +CONFIG_CRYPTO_BLAKE2S_X86=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_CHACHA20_NEON=m +CONFIG_CRYPTO_CHACHA20_X86_64=m +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +CONFIG_CRYPTO_CRC32C_VPMSUM=m +CONFIG_CRYPTO_CRC32_ARM_CE=m +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_CRC32_S390=m +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m +CONFIG_CRYPTO_CRCT10DIF_ARM_CE=m +CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m +CONFIG_CRYPTO_CRCT10DIF_VPMSUM=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_CURVE25519=m +CONFIG_CRYPTO_CURVE25519_NEON=m +CONFIG_CRYPTO_CURVE25519_X86=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DES3_EDE_X86_64=m +CONFIG_CRYPTO_DES_S390=m +CONFIG_CRYPTO_DEV_ALLWINNER=y +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +CONFIG_CRYPTO_DEV_ARTPEC6=m +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_BCM_SPU=m +CONFIG_CRYPTO_DEV_CAVIUM_ZIP=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +CONFIG_CRYPTO_DEV_CCP_DD=m +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +CONFIG_CRYPTO_DEV_CCREE=m +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_CPT=m +CONFIG_CRYPTO_DEV_EXYNOS_RNG=m +CONFIG_CRYPTO_DEV_FSL_CAAM=m +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD=255 +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD=2048 +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=m +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=m +CONFIG_CRYPTO_DEV_HIFN_795X=m +CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y +CONFIG_CRYPTO_DEV_HISI_HPRE=m +CONFIG_CRYPTO_DEV_HISI_QM=m +CONFIG_CRYPTO_DEV_HISI_SEC=m +CONFIG_CRYPTO_DEV_HISI_SEC2=m +CONFIG_CRYPTO_DEV_HISI_TRNG=m +CONFIG_CRYPTO_DEV_HISI_ZIP=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_CTS=y +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_ECB=y +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU_HMAC_SHA224=y +CONFIG_CRYPTO_DEV_MARVELL=m +CONFIG_CRYPTO_DEV_MARVELL_CESA=m +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +CONFIG_CRYPTO_DEV_NITROX=m +CONFIG_CRYPTO_DEV_NX=y +CONFIG_CRYPTO_DEV_NX_COMPRESS=m +CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=m +CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=m +CONFIG_CRYPTO_DEV_OCTEONTX2_CPT=m +CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m +CONFIG_CRYPTO_DEV_OMAP=m +CONFIG_CRYPTO_DEV_OMAP_AES=m +CONFIG_CRYPTO_DEV_OMAP_DES=m +CONFIG_CRYPTO_DEV_OMAP_SHAM=m +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_QAT=m +CONFIG_CRYPTO_DEV_QAT_4XXX=m +CONFIG_CRYPTO_DEV_QAT_C3XXX=m +CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m +CONFIG_CRYPTO_DEV_QAT_C62X=m +CONFIG_CRYPTO_DEV_QAT_C62XVF=m +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +CONFIG_CRYPTO_DEV_QCE=m +CONFIG_CRYPTO_DEV_QCE_AEAD=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_AEAD is not set +CONFIG_CRYPTO_DEV_QCE_ENABLE_ALL=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SHA is not set +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SKCIPHER is not set +CONFIG_CRYPTO_DEV_QCE_SHA=y +CONFIG_CRYPTO_DEV_QCE_SKCIPHER=y +CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN=512 +CONFIG_CRYPTO_DEV_QCOM_RNG=m +CONFIG_CRYPTO_DEV_ROCKCHIP=m +CONFIG_CRYPTO_DEV_S5P=m +CONFIG_CRYPTO_DEV_SA2UL=m +CONFIG_CRYPTO_DEV_SAHARA=m +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_SP_PSP=y +CONFIG_CRYPTO_DEV_SUN4I_SS=m +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE=m +# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG=y +CONFIG_CRYPTO_DEV_SUN8I_SS=m +# CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_SS_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG=y +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_VMX=y +CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m +CONFIG_CRYPTO_DEV_ZYNQMP_AES=m +CONFIG_CRYPTO_DH=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_CTR=y +CONFIG_CRYPTO_DRBG_HASH=y +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECHAINIV=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_ENGINE=m +CONFIG_CRYPTO_ESSIV=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_GCM=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_GHASH=y +CONFIG_CRYPTO_GHASH_ARM64_CE=m +CONFIG_CRYPTO_GHASH_ARM_CE=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m +CONFIG_CRYPTO_GHASH_S390=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_KEYWRAP=m +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_LIB_BLAKE2S=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=m +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LIB_SM4=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_LZO=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MD5_PPC=m +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_NHPOLY1305_AVX2=m +CONFIG_CRYPTO_NHPOLY1305_NEON=m +CONFIG_CRYPTO_NHPOLY1305_SSE2=m +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PAES_S390=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_POLY1305_ARM=m +CONFIG_CRYPTO_POLY1305_NEON=m +CONFIG_CRYPTO_POLY1305_X86_64=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_ARM=m +CONFIG_CRYPTO_SHA1_ARM64_CE=m +CONFIG_CRYPTO_SHA1_ARM_CE=m +CONFIG_CRYPTO_SHA1_ARM_NEON=m +CONFIG_CRYPTO_SHA1_PPC=m +CONFIG_CRYPTO_SHA1_S390=m +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA256_ARM=m +CONFIG_CRYPTO_SHA256_ARM64=m +CONFIG_CRYPTO_SHA256_S390=m +CONFIG_CRYPTO_SHA256_SSSE3=m +CONFIG_CRYPTO_SHA2_ARM64_CE=m +CONFIG_CRYPTO_SHA2_ARM_CE=m +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SHA3_256_S390=m +CONFIG_CRYPTO_SHA3_512_S390=m +CONFIG_CRYPTO_SHA3_ARM64=m +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA512_ARM=m +CONFIG_CRYPTO_SHA512_ARM64=m +CONFIG_CRYPTO_SHA512_ARM64_CE=m +CONFIG_CRYPTO_SHA512_S390=m +CONFIG_CRYPTO_SHA512_SSSE3=m +CONFIG_CRYPTO_SIMD=m +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_SM3_ARM64_CE=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_SM4_ARM64_CE=m +CONFIG_CRYPTO_STATS=y +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_AEAD=m +# CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE is not set +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_VMAC=m +CONFIG_CRYPTO_VPMSUM_TESTER=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_XTS=y +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_ZSTD=m +CONFIG_CS89x0=m +CONFIG_CS89x0_PLATFORM=m +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +CONFIG_CTCM=m +CONFIG_CUSE=m +CONFIG_CW1200=m +CONFIG_CW1200_WLAN_SDIO=m +CONFIG_CW1200_WLAN_SPI=m +CONFIG_CXD2880_SPI_DRV=m +CONFIG_CXL=m +CONFIG_CXLFLASH=m +CONFIG_CXL_ACPI=m +CONFIG_CXL_BASE=y +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +CONFIG_CXL_PMEM=m +CONFIG_CX_ECAT=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_DA280=m +CONFIG_DA311=m +CONFIG_DA9052_WATCHDOG=m +CONFIG_DA9055_WATCHDOG=m +CONFIG_DA9062_THERMAL=m +CONFIG_DA9062_WATCHDOG=m +CONFIG_DA9063_WATCHDOG=m +CONFIG_DA9150_GPADC=m +# CONFIG_DAMON is not set +CONFIG_DASD=m +CONFIG_DASD_DIAG=m +CONFIG_DASD_ECKD=m +CONFIG_DASD_EER=y +CONFIG_DASD_FBA=m +CONFIG_DASD_PROFILE=y +CONFIG_DATA_SHIFT=24 +CONFIG_DAVICOM_PHY=m +CONFIG_DAX=y +CONFIG_DAX_DRIVER=y +CONFIG_DCA=m +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_DCB=y +CONFIG_DCDBAS=m +CONFIG_DCSSBLK=m +CONFIG_DDR=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_DE4X5=m +CONFIG_DEBUGGER=y +CONFIG_DEBUG_ALIGN_RODATA=y +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_CREDENTIALS is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_EFI is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_GPIO is not set +# CONFIG_DEBUG_HIGHMEM is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_INFO_BTF_MODULES=y +# CONFIG_DEBUG_INFO_COMPRESSED is not set +CONFIG_DEBUG_INFO_DWARF4=y +# CONFIG_DEBUG_INFO_DWARF5 is not set +# CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_KERNEL_DC is not set +# CONFIG_DEBUG_KMAP_LOCAL is not set +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_LL is not set +CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_DEBUG_MISC=y +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_PREEMPT is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_STACKOVERFLOW is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_DEBUG_USER is not set +CONFIG_DEBUG_VF_UART_PORT=1 +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +CONFIG_DEBUG_WX=y +CONFIG_DECNET_NF_GRABULATOR=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_DEFAULT_CUBIC=y +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +CONFIG_DEFAULT_INIT="" +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +CONFIG_DEFXX=m +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBTN=m +CONFIG_DELL_RBU=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_SMBIOS_SMM=y +CONFIG_DELL_SMBIOS_WMI=y +CONFIG_DELL_SMO8800=m +CONFIG_DELL_UART_BACKLIGHT=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_DELL_WMI_DESCRIPTOR=m +CONFIG_DELL_WMI_LED=m +CONFIG_DELL_WMI_PRIVACY=y +CONFIG_DELL_WMI_SYSMAN=m +# CONFIG_DEPRECATED_PARAM_STRUCT is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP=y +CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU=y +CONFIG_DEVFREQ_EVENT_ROCKCHIP_DFI=m +CONFIG_DEVFREQ_GOV_PASSIVE=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +CONFIG_DEVFREQ_THERMAL=y +CONFIG_DEVICE_PRIVATE=y +CONFIG_DEVMEM=y +CONFIG_DEVPORT=y +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_DEV_APPLETALK=m +CONFIG_DEV_COREDUMP=y +CONFIG_DEV_DAX=m +CONFIG_DEV_DAX_HMEM=m +CONFIG_DEV_DAX_HMEM_DEVICES=y +CONFIG_DEV_DAX_KMEM=m +CONFIG_DEV_DAX_PMEM=m +CONFIG_DEV_DAX_PMEM_COMPAT=m +CONFIG_DEV_PAGEMAP_OPS=y +CONFIG_DHT11=m +CONFIG_DIAG288_WATCHDOG=m +CONFIG_DIMLIB=y +CONFIG_DL2K=m +CONFIG_DLHL60D=m +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +CONFIG_DLN2_ADC=m +CONFIG_DM9000=m +# CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL is not set +CONFIG_DM9102=m +# CONFIG_DMABUF_DEBUG is not set +CONFIG_DMABUF_HEAPS=y +CONFIG_DMABUF_HEAPS_CMA=y +CONFIG_DMABUF_HEAPS_SYSTEM=y +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# CONFIG_DMADEVICES_DEBUG is not set +CONFIG_DMARD06=m +CONFIG_DMARD09=m +CONFIG_DMARD10=m +CONFIG_DMAR_TABLE=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ACPI=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DMA_BCM2835=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ENGINE_RAID=y +# CONFIG_DMA_FENCE_TRACE is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_OF=y +CONFIG_DMA_OMAP=y +CONFIG_DMA_OPS=y +CONFIG_DMA_OPS_BYPASS=y +CONFIG_DMA_REMAP=y +CONFIG_DMA_RESTRICTED_POOL=y +CONFIG_DMA_SHARED_BUFFER=y +CONFIG_DMA_SUN6I=m +CONFIG_DMI=y +CONFIG_DMIID=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +CONFIG_DMI_SYSFS=m +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_BUFIO=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_CLONE=m +CONFIG_DM_CRYPT=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_DELAY=m +# CONFIG_DM_DUST is not set +CONFIG_DM_EBS=m +CONFIG_DM_ERA=m +CONFIG_DM_FLAKEY=m +CONFIG_DM_INIT=y +CONFIG_DM_INTEGRITY=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_LOG_WRITES=m +CONFIG_DM_MIRROR=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_RAID=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_SWITCH=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_UEVENT=y +CONFIG_DM_UNSTRIPED=m +CONFIG_DM_VERITY=m +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING is not set +CONFIG_DM_WRITECACHE=m +CONFIG_DM_ZERO=m +CONFIG_DM_ZONED=m +CONFIG_DNOTIFY=y +CONFIG_DNS_RESOLVER=y +CONFIG_DOVE_CLK=y +CONFIG_DOVE_THERMAL=m +CONFIG_DP83640_PHY=m +CONFIG_DP83822_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_DP83TC811_PHY=m +CONFIG_DPAA2_CONSOLE=m +CONFIG_DPAA_ERRATUM_A050385=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_DPOT_DAC=m +CONFIG_DPS310=m +CONFIG_DPTF_PCH_FIVR=m +CONFIG_DPTF_POWER=m +CONFIG_DQL=y +CONFIG_DRA752_THERMAL=y +CONFIG_DRAGONRISE_FF=y +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_DRM=m +CONFIG_DRM_AMDGPU_CIK=y +CONFIG_DRM_AMDGPU_SI=y +CONFIG_DRM_AMDGPU_USERPTR=y +CONFIG_DRM_AMD_ACP=y +CONFIG_DRM_AMD_DC=y +CONFIG_DRM_AMD_DC_DCN=y +CONFIG_DRM_AMD_DC_HDCP=y +CONFIG_DRM_AMD_DC_SI=y +CONFIG_DRM_AMD_SECURE_DISPLAY=y +CONFIG_DRM_ANALOGIX_ANX6345=m +CONFIG_DRM_ANALOGIX_ANX7625=m +CONFIG_DRM_ANALOGIX_DP=m +CONFIG_DRM_ARCPGU=m +CONFIG_DRM_ARMADA=m +CONFIG_DRM_ASPEED_GFX=m +CONFIG_DRM_ATMEL_HLCDC=m +CONFIG_DRM_BOCHS=m +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_CDNS_DSI=m +CONFIG_DRM_CDNS_MHDP8546=m +CONFIG_DRM_CDNS_MHDP8546_J721E=y +CONFIG_DRM_CHIPONE_ICN6211=m +CONFIG_DRM_CHRONTEL_CH7033=m +CONFIG_DRM_CROS_EC_ANX7688=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_DISPLAY_CONNECTOR=m +CONFIG_DRM_DP_AUX_BUS=m +CONFIG_DRM_DW_HDMI=m +CONFIG_DRM_DW_HDMI_AHB_AUDIO=m +CONFIG_DRM_DW_HDMI_CEC=m +CONFIG_DRM_DW_HDMI_I2S_AUDIO=m +CONFIG_DRM_DW_MIPI_DSI=m +CONFIG_DRM_ETNAVIV_THERMAL=y +CONFIG_DRM_EXYNOS=m +CONFIG_DRM_EXYNOS5433_DECON=y +# CONFIG_DRM_EXYNOS7_DECON is not set +CONFIG_DRM_EXYNOS_DSI=y +CONFIG_DRM_EXYNOS_FIMC=y +# CONFIG_DRM_EXYNOS_FIMD is not set +CONFIG_DRM_EXYNOS_HDMI=y +CONFIG_DRM_EXYNOS_IPP=y +CONFIG_DRM_EXYNOS_MIC=y +CONFIG_DRM_EXYNOS_MIXER=y +CONFIG_DRM_EXYNOS_ROTATOR=y +CONFIG_DRM_EXYNOS_SCALER=y +# CONFIG_DRM_EXYNOS_VIDI is not set +CONFIG_DRM_FBDEV_EMULATION=y +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_FBDEV_OVERALLOC=100 +CONFIG_DRM_FSL_DCU=m +CONFIG_DRM_GEM_CMA_HELPER=y +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_GM12U320=m +CONFIG_DRM_GMA500=m +CONFIG_DRM_GUD=m +CONFIG_DRM_HDLCD=m +# CONFIG_DRM_HDLCD_SHOW_UNDERRUN is not set +CONFIG_DRM_HISI_HIBMC=m +CONFIG_DRM_HISI_KIRIN=m +CONFIG_DRM_HYPERV=m +CONFIG_DRM_I2C_ADV7511=m +CONFIG_DRM_I2C_ADV7511_AUDIO=y +CONFIG_DRM_I2C_ADV7511_CEC=y +CONFIG_DRM_I915=m +CONFIG_DRM_I915_CAPTURE_ERROR=y +CONFIG_DRM_I915_COMPRESS_ERROR=y +# CONFIG_DRM_I915_DEBUG is not set +# CONFIG_DRM_I915_DEBUG_GUC is not set +# CONFIG_DRM_I915_DEBUG_MMIO is not set +# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set +# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set +CONFIG_DRM_I915_FENCE_TIMEOUT=10000 +CONFIG_DRM_I915_FORCE_PROBE="" +CONFIG_DRM_I915_GVT=y +CONFIG_DRM_I915_GVT_KVMGT=m +CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500 +# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000 +CONFIG_DRM_I915_PREEMPT_TIMEOUT=640 +CONFIG_DRM_I915_REQUEST_TIMEOUT=20000 +# CONFIG_DRM_I915_SELFTEST is not set +CONFIG_DRM_I915_STOP_TIMEOUT=100 +# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set +# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set +CONFIG_DRM_I915_TIMESLICE_DURATION=1 +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250 +CONFIG_DRM_I915_USERPTR=y +# CONFIG_DRM_I915_WERROR is not set +CONFIG_DRM_IMX=m +CONFIG_DRM_IMX_DCSS=m +CONFIG_DRM_IMX_HDMI=m +CONFIG_DRM_IMX_LDB=m +CONFIG_DRM_IMX_PARALLEL_DISPLAY=m +CONFIG_DRM_IMX_TVE=m +CONFIG_DRM_ITE_IT66121=m +CONFIG_DRM_KMB_DISPLAY=m +CONFIG_DRM_KMS_CMA_HELPER=y +CONFIG_DRM_KMS_HELPER=m +CONFIG_DRM_KOMEDA=m +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_LIMA=m +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +CONFIG_DRM_LONTIUM_LT8912B=m +CONFIG_DRM_LONTIUM_LT9611=m +CONFIG_DRM_LONTIUM_LT9611UXC=m +CONFIG_DRM_LVDS_CODEC=m +CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_MCDE=m +CONFIG_DRM_MEDIATEK=m +CONFIG_DRM_MEDIATEK_HDMI=m +CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW=m +CONFIG_DRM_MESON=m +CONFIG_DRM_MESON_DW_HDMI=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_DP=y +CONFIG_DRM_MSM_DSI=y +CONFIG_DRM_MSM_DSI_10NM_PHY=y +CONFIG_DRM_MSM_DSI_14NM_PHY=y +CONFIG_DRM_MSM_DSI_20NM_PHY=y +CONFIG_DRM_MSM_DSI_28NM_8960_PHY=y +CONFIG_DRM_MSM_DSI_28NM_PHY=y +CONFIG_DRM_MSM_DSI_7NM_PHY=y +CONFIG_DRM_MSM_GPU_STATE=y +# CONFIG_DRM_MSM_GPU_SUDO is not set +CONFIG_DRM_MSM_HDMI_HDCP=y +# CONFIG_DRM_MSM_REGISTER_LOGGING is not set +CONFIG_DRM_MXS=y +CONFIG_DRM_MXSFB=m +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_NOUVEAU_SVM is not set +CONFIG_DRM_NWL_MIPI_DSI=m +CONFIG_DRM_NXP_PTN3460=m +# CONFIG_DRM_OMAP is not set +CONFIG_DRM_PANEL=y +CONFIG_DRM_PANEL_ABT_Y030XX067A=m +CONFIG_DRM_PANEL_ARM_VERSATILE=m +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596=m +CONFIG_DRM_PANEL_BOE_HIMAX8279D=m +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m +CONFIG_DRM_PANEL_BRIDGE=y +CONFIG_DRM_PANEL_DSI_CM=m +CONFIG_DRM_PANEL_ELIDA_KD35T133=m +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m +CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D=m +CONFIG_DRM_PANEL_ILITEK_IL9322=m +CONFIG_DRM_PANEL_ILITEK_ILI9341=m +CONFIG_DRM_PANEL_ILITEK_ILI9881C=m +CONFIG_DRM_PANEL_INNOLUX_EJ030NA=m +CONFIG_DRM_PANEL_INNOLUX_P079ZCA=m +CONFIG_DRM_PANEL_JDI_LT070ME05000=m +CONFIG_DRM_PANEL_KHADAS_TS050=m +CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04=m +CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W=m +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829=m +CONFIG_DRM_PANEL_LG_LB035Q02=m +CONFIG_DRM_PANEL_LG_LG4573=m +CONFIG_DRM_PANEL_LVDS=m +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51=m +CONFIG_DRM_PANEL_NEC_NL8048HL11=m +CONFIG_DRM_PANEL_NOVATEK_NT35510=m +CONFIG_DRM_PANEL_NOVATEK_NT36672A=m +CONFIG_DRM_PANEL_NOVATEK_NT39016=m +CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO=m +CONFIG_DRM_PANEL_ORISETECH_OTM8009A=m +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS=m +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00=m +CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m +CONFIG_DRM_PANEL_RAYDIUM_RM67191=m +CONFIG_DRM_PANEL_RAYDIUM_RM68200=m +CONFIG_DRM_PANEL_RONBO_RB070D30=m +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=m +CONFIG_DRM_PANEL_SAMSUNG_DB7430=m +CONFIG_DRM_PANEL_SAMSUNG_LD9040=m +CONFIG_DRM_PANEL_SAMSUNG_S6D16D0=m +CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_DSI=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_SPI=m +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0=m +CONFIG_DRM_PANEL_SAMSUNG_SOFEF00=m +CONFIG_DRM_PANEL_SEIKO_43WVF1G=m +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01=m +CONFIG_DRM_PANEL_SHARP_LS037V7DW01=m +CONFIG_DRM_PANEL_SHARP_LS043T1LE01=m +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PANEL_SITRONIX_ST7701=m +CONFIG_DRM_PANEL_SITRONIX_ST7703=m +CONFIG_DRM_PANEL_SITRONIX_ST7789V=m +CONFIG_DRM_PANEL_SONY_ACX424AKP=m +CONFIG_DRM_PANEL_SONY_ACX565AKM=m +CONFIG_DRM_PANEL_TDO_TL070WSH30=m +CONFIG_DRM_PANEL_TPO_TD028TTEC1=m +CONFIG_DRM_PANEL_TPO_TD043MTEA1=m +CONFIG_DRM_PANEL_TPO_TPG110=m +CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA=m +CONFIG_DRM_PANEL_VISIONOX_RM69299=m +CONFIG_DRM_PANEL_WIDECHIPS_WS2401=m +CONFIG_DRM_PANEL_XINPENG_XPP055C272=m +CONFIG_DRM_PANFROST=m +CONFIG_DRM_PARADE_PS8622=m +CONFIG_DRM_PARADE_PS8640=m +CONFIG_DRM_PL111=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_RCAR_CMM=m +CONFIG_DRM_RCAR_DU=m +CONFIG_DRM_RCAR_DW_HDMI=m +CONFIG_DRM_RCAR_VSP=y +CONFIG_DRM_RCAR_WRITEBACK=y +CONFIG_DRM_ROCKCHIP=m +CONFIG_DRM_SCHED=m +CONFIG_DRM_SII902X=m +CONFIG_DRM_SII9234=m +CONFIG_DRM_SIL_SII8620=m +CONFIG_DRM_SIMPLE_BRIDGE=m +# CONFIG_DRM_STI is not set +CONFIG_DRM_STM=m +CONFIG_DRM_STM_DSI=m +CONFIG_DRM_SUN4I=m +CONFIG_DRM_SUN4I_BACKEND=m +CONFIG_DRM_SUN4I_HDMI=m +CONFIG_DRM_SUN4I_HDMI_CEC=y +CONFIG_DRM_SUN6I_DSI=m +CONFIG_DRM_SUN8I_DW_HDMI=m +CONFIG_DRM_SUN8I_MIXER=m +CONFIG_DRM_SUN8I_TCON_TOP=m +CONFIG_DRM_TEGRA=m +# CONFIG_DRM_TEGRA_DEBUG is not set +CONFIG_DRM_TEGRA_STAGING=y +CONFIG_DRM_THINE_THC63LVD1024=m +CONFIG_DRM_TIDSS=m +CONFIG_DRM_TILCDC=m +CONFIG_DRM_TI_SN65DSI83=m +CONFIG_DRM_TI_SN65DSI86=m +CONFIG_DRM_TI_TFP410=m +CONFIG_DRM_TI_TPD12S015=m +CONFIG_DRM_TOSHIBA_TC358762=m +CONFIG_DRM_TOSHIBA_TC358764=m +CONFIG_DRM_TOSHIBA_TC358767=m +CONFIG_DRM_TOSHIBA_TC358768=m +CONFIG_DRM_TOSHIBA_TC358775=m +CONFIG_DRM_TTM=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_TVE200=m +CONFIG_DRM_UDL=m +CONFIG_DRM_VBOXVIDEO=m +CONFIG_DRM_VC4=m +CONFIG_DRM_VC4_HDMI_CEC=y +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +# CONFIG_DRM_VMWGFX_MKSSTATS is not set +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_XEN=y +CONFIG_DRM_XEN_FRONTEND=m +CONFIG_DRM_ZYNQMP_DPSUB=m +CONFIG_DS1803=m +CONFIG_DS4424=m +CONFIG_DST_CACHE=y +CONFIG_DTC=y +CONFIG_DTL=y +CONFIG_DTPM=y +CONFIG_DTPM_CPU=y +CONFIG_DT_IDLE_STATES=y +CONFIG_DUMMY=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_DVB_A8293=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_AS102=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_IR=y +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_BCM3510=m +CONFIG_DVB_BT8XX=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET_PATCH=m +# CONFIG_DVB_C8SECTPFE is not set +CONFIG_DVB_CORE=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_CXD2099=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_CXD2880=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_DRXK=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_DUMMY_FE=m +CONFIG_DVB_DYNAMIC_MINORS=y +CONFIG_DVB_EC100=m +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_HELENE=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_L64781=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_M88DS3103=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_MB86A16=m +CONFIG_DVB_MB86A20S=m +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_MN88443X=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m +CONFIG_DVB_MT312=m +CONFIG_DVB_MT352=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_MXL692=m +CONFIG_DVB_NET=y +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_NXT200X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_PLATFORM_DRIVERS=y +CONFIG_DVB_PLL=m +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_S921=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_SP2=m +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STV0297=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_TC90522=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_TDA10071=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_TDA826X=m +# CONFIG_DVB_TEST_DRIVERS is not set +CONFIG_DVB_TS2020=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m +CONFIG_DVB_TUNER_ITD1000=m +# CONFIG_DVB_ULE_DEBUG is not set +CONFIG_DVB_USB=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_DIBUSB_MB=m +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_DVBSKY=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_ZD1301=m +CONFIG_DVB_VES1820=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_ZL10353=m +CONFIG_DWC_XLGMAC=m +CONFIG_DWC_XLGMAC_PCI=m +CONFIG_DWMAC_DWC_QOS_ETH=m +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_IMX8=m +CONFIG_DWMAC_INTEL=m +CONFIG_DWMAC_INTEL_PLAT=m +CONFIG_DWMAC_IPQ806X=m +CONFIG_DWMAC_LOONGSON=m +CONFIG_DWMAC_MEDIATEK=m +CONFIG_DWMAC_MESON=m +CONFIG_DWMAC_QCOM_ETHQOS=m +CONFIG_DWMAC_ROCKCHIP=m +CONFIG_DWMAC_SOCFPGA=m +CONFIG_DWMAC_SUN8I=m +# CONFIG_DWMAC_SUNXI is not set +CONFIG_DWMAC_VISCONTI=m +CONFIG_DW_APB_ICTL=y +CONFIG_DW_APB_TIMER=y +CONFIG_DW_APB_TIMER_OF=y +CONFIG_DW_AXI_DMAC=m +CONFIG_DW_DMAC=m +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC_PCI=m +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_DW_I3C_MASTER=m +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_DYNAMIC_PHYSICAL_MASK=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +CONFIG_EADM_SCH=m +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +CONFIG_EARLY_PRINTK_USB=y +CONFIG_EARLY_PRINTK_USB_XDBC=y +CONFIG_EBC_C384_WDT=m +CONFIG_ECRYPT_FS=y +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_EDAC=y +CONFIG_EDAC_ALTERA=y +CONFIG_EDAC_ALTERA_ETHERNET=y +CONFIG_EDAC_ALTERA_L2C=y +CONFIG_EDAC_ALTERA_NAND=y +CONFIG_EDAC_ALTERA_OCRAM=y +CONFIG_EDAC_ALTERA_QSPI=y +CONFIG_EDAC_ALTERA_SDMMC=y +CONFIG_EDAC_ALTERA_SDRAM=y +CONFIG_EDAC_ALTERA_USB=y +CONFIG_EDAC_AL_MC=m +CONFIG_EDAC_AMD64=m +CONFIG_EDAC_ARMADA_XP=y +CONFIG_EDAC_ASPEED=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_BLUEFIELD=m +CONFIG_EDAC_CPC925=m +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_DMC520=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_GHES=y +CONFIG_EDAC_HIGHBANK_L2=m +CONFIG_EDAC_HIGHBANK_MC=m +CONFIG_EDAC_I10NM=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7300=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_IE31200=m +CONFIG_EDAC_IGEN6=m +CONFIG_EDAC_LAYERSCAPE=m +# CONFIG_EDAC_LEGACY_SYSFS is not set +CONFIG_EDAC_PND2=m +CONFIG_EDAC_QCOM=m +CONFIG_EDAC_SBRIDGE=m +CONFIG_EDAC_SKX=m +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC_SYNOPSYS=m +CONFIG_EDAC_THUNDERX=m +CONFIG_EDAC_TI=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_XGENE=m +CONFIG_EDD=y +CONFIG_EDD_OFF=y +CONFIG_EEEPC_LAPTOP=m +CONFIG_EEEPC_WMI=m +CONFIG_EEH=y +CONFIG_EEPROM_93XX46=m +CONFIG_EEPROM_AT25=m +CONFIG_EFI=y +CONFIG_EFIVAR_FS=y +# CONFIG_EFI_ARMSTUB_DTB_LOADER is not set +CONFIG_EFI_BOOTLOADER_CONTROL=m +CONFIG_EFI_CAPSULE_LOADER=m +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +CONFIG_EFI_DEV_PATH_PARSER=y +# CONFIG_EFI_DISABLE_PCI_DMA is not set +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_EMBEDDED_FIRMWARE=y +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +CONFIG_EFI_MIXED=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_PARTITION=y +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_EFI_RCI2_TABLE=y +CONFIG_EFI_RUNTIME_MAP=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_SOFT_RESERVE=y +CONFIG_EFI_STUB=y +CONFIG_EFI_TEST=m +CONFIG_EFI_VARS=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EINT_MTK=y +CONFIG_EISA=y +CONFIG_EISA_NAMES=y +CONFIG_EISA_PCI_EISA=y +CONFIG_EISA_VIRTUAL_ROOT=y +CONFIG_EISA_VLB_PRIMING=y +CONFIG_EL3=m +CONFIG_ELFCORE=y +CONFIG_ELF_CORE=y +CONFIG_EMAC_ROCKCHIP=m +# CONFIG_EMBEDDED is not set +CONFIG_EM_TIMER_STI=y +CONFIG_ENA_ETHERNET=m +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCRYPTED_KEYS=y +CONFIG_ENCX24J600=m +CONFIG_ENERGY_MODEL=y +CONFIG_ENIC=m +CONFIG_ENVELOPE_DETECTOR=m +CONFIG_EPAPR_BOOT=y +CONFIG_EPAPR_PARAVIRT=y +CONFIG_EPIC100=m +CONFIG_EPOLL=y +CONFIG_EQUALIZER=m +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_ZIP=y +CONFIG_ET131X=m +CONFIG_ETHERNET=y +CONFIG_ETHTOOL_NETLINK=y +CONFIG_EUROTECH_WDT=m +CONFIG_EVENTFD=y +CONFIG_EVENT_TRACING=y +CONFIG_EVM=y +CONFIG_EVM_ADD_XATTRS=y +CONFIG_EVM_ATTR_FSUUID=y +CONFIG_EVM_EXTRA_SMACK_XATTRS=y +CONFIG_EVM_X509_PATH="/etc/keys/x509_evm.der" +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_EXPERT=y +CONFIG_EXPOLINE=y +CONFIG_EXPOLINE_AUTO=y +# CONFIG_EXPOLINE_FULL is not set +# CONFIG_EXPOLINE_OFF is not set +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_AXP288=m +CONFIG_EXTCON_FSA9480=m +CONFIG_EXTCON_GPIO=m +CONFIG_EXTCON_INTEL_CHT_WC=m +CONFIG_EXTCON_INTEL_INT3496=m +CONFIG_EXTCON_INTEL_MRFLD=m +CONFIG_EXTCON_MAX14577=m +CONFIG_EXTCON_MAX3355=m +CONFIG_EXTCON_MAX77693=m +CONFIG_EXTCON_MAX77843=m +CONFIG_EXTCON_MAX8997=m +CONFIG_EXTCON_PALMAS=m +CONFIG_EXTCON_PTN5150=m +CONFIG_EXTCON_QCOM_SPMI_MISC=m +CONFIG_EXTCON_RT8973A=m +CONFIG_EXTCON_SM5502=m +CONFIG_EXTCON_USBC_CROS_EC=m +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTRA_FIRMWARE="" +CONFIG_EXTRA_TARGETS="" +CONFIG_EXYNOS5422_DMC=m +CONFIG_EXYNOS_5250_COMMON_CLK=y +CONFIG_EXYNOS_5260_COMMON_CLK=y +CONFIG_EXYNOS_5410_COMMON_CLK=y +CONFIG_EXYNOS_5420_COMMON_CLK=y +CONFIG_EXYNOS_ADC=m +CONFIG_EXYNOS_ASV_ARM=y +CONFIG_EXYNOS_AUDSS_CLK_CON=m +CONFIG_EXYNOS_CHIPID=y +CONFIG_EXYNOS_CLKOUT=m +CONFIG_EXYNOS_CPU_SUSPEND=y +CONFIG_EXYNOS_IOMMU=y +# CONFIG_EXYNOS_IOMMU_DEBUG is not set +CONFIG_EXYNOS_IRQ_COMBINER=y +CONFIG_EXYNOS_MCPM=y +CONFIG_EXYNOS_PMU=y +CONFIG_EXYNOS_PMU_ARM_DRIVERS=y +CONFIG_EXYNOS_PM_DOMAINS=y +CONFIG_EXYNOS_REGULATOR_COUPLER=y +CONFIG_EXYNOS_SROM=y +CONFIG_EXYNOS_THERMAL=y +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET=m +CONFIG_EZX_PCAP=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +CONFIG_F2FS_FS_COMPRESSION=y +CONFIG_F2FS_FS_LZ4=y +CONFIG_F2FS_FS_LZ4HC=y +CONFIG_F2FS_FS_LZO=y +CONFIG_F2FS_FS_LZORLE=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_ZSTD=y +# CONFIG_F2FS_IOSTAT is not set +CONFIG_F2FS_STAT_FS=y +CONFIG_F71808E_WDT=m +CONFIG_FAILOVER=m +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_FARSYNC=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FAT_FS=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_FA_DUMP=y +CONFIG_FB=y +# CONFIG_FB_3DFX_ACCEL is not set +# CONFIG_FB_3DFX_I2C is not set +CONFIG_FB_ARC=m +CONFIG_FB_ARMCLCD=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_ATY_CT=y +# CONFIG_FB_ATY_GENERIC_LCD is not set +CONFIG_FB_ATY_GX=y +CONFIG_FB_BACKLIGHT=m +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +CONFIG_FB_CFB_REV_PIXELS_IN_BYTE=y +CONFIG_FB_CMDLINE=y +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_DA8XX=m +CONFIG_FB_DDC=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_EFI=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_HECUBA=m +CONFIG_FB_HGA=m +CONFIG_FB_HYPERV=m +CONFIG_FB_IMX=m +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_LE80578=m +CONFIG_FB_MACMODES=y +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MB862XX_I2C=y +# CONFIG_FB_MB862XX_LIME is not set +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_MX3=y +CONFIG_FB_N411=m +CONFIG_FB_NOTIFY=y +CONFIG_FB_NVIDIA_BACKLIGHT=y +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_I2C=y +CONFIG_FB_OF=y +CONFIG_FB_OMAP2=m +# CONFIG_FB_OMAP2_CONNECTOR_ANALOG_TV is not set +# CONFIG_FB_OMAP2_CONNECTOR_DVI is not set +# CONFIG_FB_OMAP2_CONNECTOR_HDMI is not set +# CONFIG_FB_OMAP2_DEBUG_SUPPORT is not set +CONFIG_FB_OMAP2_DSS=m +# CONFIG_FB_OMAP2_DSS_DEBUG is not set +# CONFIG_FB_OMAP2_DSS_DEBUGFS is not set +CONFIG_FB_OMAP2_DSS_DPI=y +# CONFIG_FB_OMAP2_DSS_DSI is not set +CONFIG_FB_OMAP2_DSS_HDMI_COMMON=y +CONFIG_FB_OMAP2_DSS_INIT=y +CONFIG_FB_OMAP2_DSS_MIN_FCK_PER_PCK=0 +# CONFIG_FB_OMAP2_DSS_SDI is not set +CONFIG_FB_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y +CONFIG_FB_OMAP2_DSS_VENC=y +# CONFIG_FB_OMAP2_ENCODER_OPA362 is not set +# CONFIG_FB_OMAP2_ENCODER_TFP410 is not set +# CONFIG_FB_OMAP2_ENCODER_TPD12S015 is not set +CONFIG_FB_OMAP2_NUM_FBS=3 +# CONFIG_FB_OMAP2_PANEL_DPI is not set +# CONFIG_FB_OMAP2_PANEL_LGPHILIPS_LB035Q02 is not set +CONFIG_FB_OMAP4_DSS_HDMI=y +# CONFIG_FB_OMAP5_DSS_HDMI is not set +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA=y +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_I2C=y +CONFIG_FB_S3_DDC=y +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SAVAGE_I2C=y +CONFIG_FB_SH_MOBILE_LCDC=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_SM501=m +CONFIG_FB_SM750=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_HX8340BN=m +CONFIG_FB_TFT_HX8347D=m +CONFIG_FB_TFT_HX8353D=m +CONFIG_FB_TFT_HX8357D=m +CONFIG_FB_TFT_ILI9163=m +CONFIG_FB_TFT_ILI9320=m +CONFIG_FB_TFT_ILI9325=m +CONFIG_FB_TFT_ILI9340=m +CONFIG_FB_TFT_ILI9341=m +CONFIG_FB_TFT_ILI9481=m +CONFIG_FB_TFT_ILI9486=m +CONFIG_FB_TFT_PCD8544=m +CONFIG_FB_TFT_RA8875=m +CONFIG_FB_TFT_S6D02A1=m +CONFIG_FB_TFT_S6D1121=m +CONFIG_FB_TFT_SEPS525=m +CONFIG_FB_TFT_SH1106=m +CONFIG_FB_TFT_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_ST7789V=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1611=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TFT_WATTEROTT=m +CONFIG_FB_TMIO=m +CONFIG_FB_TMIO_ACCELL=y +CONFIG_FB_UDL=m +CONFIG_FB_VESA=y +CONFIG_FB_VGA16=m +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +# CONFIG_FB_VIRTUAL is not set +CONFIG_FB_XILINX=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_FEC=y +CONFIG_FHANDLE=y +# CONFIG_FHCI_DEBUG is not set +CONFIG_FIB_RULES=y +CONFIG_FIELDBUS_DEV=m +CONFIG_FILE_LOCKING=y +# CONFIG_FIND_BIT_BENCHMARK is not set +CONFIG_FIQ=y +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_SERIAL=m +CONFIG_FIRMWARE_EDID=y +CONFIG_FIX_EARLYCON_MEM=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_FM10K=m +CONFIG_FONTS=y +# CONFIG_FONT_10x18 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_6x8 is not set +# CONFIG_FONT_7x14 is not set +CONFIG_FONT_8x16=y +CONFIG_FONT_8x8=y +CONFIG_FONT_ACORN_8x8=y +# CONFIG_FONT_MINI_4x6 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FONT_SUN8x16 is not set +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_TER16x32=y +CONFIG_FORCEDETH=m +CONFIG_FORCE_PCI=y +CONFIG_FORCE_SMP=y +CONFIG_FORTIFY_SOURCE=y +CONFIG_FPGA=m +CONFIG_FPGA_DFL_AFU=m +CONFIG_FPGA_DFL_EMIF=m +CONFIG_FPGA_DFL_FME=m +CONFIG_FPGA_DFL_FME_BRIDGE=m +CONFIG_FPGA_DFL_FME_MGR=m +CONFIG_FPGA_DFL_FME_REGION=m +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000=m +CONFIG_FPGA_DFL_PCI=m +CONFIG_FPGA_MGR_ALTERA_CVP=m +CONFIG_FPGA_MGR_ALTERA_PS_SPI=m +CONFIG_FPGA_MGR_ICE40_SPI=m +CONFIG_FPGA_MGR_MACHXO2_SPI=m +CONFIG_FPGA_MGR_SOCFPGA=m +CONFIG_FPGA_MGR_SOCFPGA_A10=m +CONFIG_FPGA_MGR_STRATIX10_SOC=m +CONFIG_FPGA_MGR_VERSAL_FPGA=m +CONFIG_FPGA_MGR_XILINX_SPI=m +CONFIG_FPGA_MGR_ZYNQMP_FPGA=m +CONFIG_FPGA_REGION=m +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +CONFIG_FRAME_POINTER=y +CONFIG_FREEZER=y +CONFIG_FRONTSWAP=y +CONFIG_FSCACHE=m +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_FSCACHE_STATS=y +CONFIG_FSI=m +CONFIG_FSI_MASTER_ASPEED=m +CONFIG_FSI_MASTER_AST_CF=m +CONFIG_FSI_MASTER_GPIO=m +CONFIG_FSI_MASTER_HUB=m +# CONFIG_FSI_NEW_DEV_NODE is not set +CONFIG_FSI_OCC=m +CONFIG_FSI_SBEFIFO=m +CONFIG_FSI_SCOM=m +CONFIG_FSL_BMAN_TEST=m +# CONFIG_FSL_BMAN_TEST_API is not set +CONFIG_FSL_DPAA=y +CONFIG_FSL_DPAA2_ETH=m +CONFIG_FSL_DPAA2_ETH_DCB=y +CONFIG_FSL_DPAA2_PTP_CLOCK=m +CONFIG_FSL_DPAA2_QDMA=m +CONFIG_FSL_DPAA2_SWITCH=m +CONFIG_FSL_DPAA_CHECKING=y +CONFIG_FSL_DPAA_ETH=m +CONFIG_FSL_EDMA=m +CONFIG_FSL_ENETC=m +CONFIG_FSL_ENETC_IERB=m +CONFIG_FSL_ENETC_MDIO=m +CONFIG_FSL_ENETC_PTP_CLOCK=m +CONFIG_FSL_ENETC_QOS=y +CONFIG_FSL_ENETC_VF=m +CONFIG_FSL_ERRATUM_A008585=y +CONFIG_FSL_FMAN=y +CONFIG_FSL_GTM=y +CONFIG_FSL_GUTS=y +CONFIG_FSL_IFC=y +CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_FSL_LBC=y +CONFIG_FSL_MC_DPIO=m +CONFIG_FSL_MC_UAPI_SUPPORT=y +CONFIG_FSL_PQ_MDIO=m +CONFIG_FSL_QDMA=m +# CONFIG_FSL_QMAN_TEST is not set +CONFIG_FSL_RCPM=y +CONFIG_FSL_UCC_HDLC=m +CONFIG_FSL_XGMAC_MDIO=y +CONFIG_FSNOTIFY=y +CONFIG_FS_DAX=y +CONFIG_FS_DAX_LIMITED=y +CONFIG_FS_DAX_PMD=y +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_ENCRYPTION_ALGS=y +CONFIG_FS_ENCRYPTION_INLINE_CRYPT=y +CONFIG_FS_IOMAP=y +CONFIG_FS_MBCACHE=y +CONFIG_FS_POSIX_ACL=y +CONFIG_FS_VERITY=y +CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y +# CONFIG_FS_VERITY_DEBUG is not set +CONFIG_FTGMAC100=m +CONFIG_FTL=m +CONFIG_FTMAC100=m +CONFIG_FTM_QUADDEC=m +CONFIG_FTRACE=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +CONFIG_FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY=y +CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT=y +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_FTRACE_SYSCALLS=y +# CONFIG_FTR_FIXUP_SELFTEST is not set +CONFIG_FTWDT010_WATCHDOG=m +CONFIG_FUEL_GAUGE_SC27XX=m +CONFIG_FUJITSU_ERRATUM_010001=y +CONFIG_FUJITSU_ES=m +CONFIG_FUJITSU_LAPTOP=m +CONFIG_FUJITSU_TABLET=m +CONFIG_FUNCTION_ERROR_INJECTION=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUSE_DAX=y +CONFIG_FUSE_FS=y +CONFIG_FUSION_CTL=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_LOGGING=y +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_SAS=m +CONFIG_FUSION_SPI=m +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_FWNODE_MDIO=y +CONFIG_FWTTY_MAX_CARD_PORTS=32 +CONFIG_FWTTY_MAX_TOTAL_PORTS=64 +CONFIG_FW_ATTR_CLASS=m +CONFIG_FW_CACHE=y +CONFIG_FW_CFG_SYSFS=m +# CONFIG_FW_CFG_SYSFS_CMDLINE is not set +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_FXAS21002C=m +CONFIG_FXAS21002C_I2C=m +CONFIG_FXAS21002C_SPI=m +CONFIG_FXLS8962AF=m +CONFIG_FXLS8962AF_I2C=m +CONFIG_FXLS8962AF_SPI=m +CONFIG_FXOS8700=m +CONFIG_FXOS8700_I2C=m +CONFIG_FXOS8700_SPI=m +CONFIG_GACT_PROB=y +CONFIG_GADGET_UAC1=y +# CONFIG_GADGET_UAC1_LEGACY is not set +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GARP=m +CONFIG_GART_IOMMU=y +CONFIG_GCC_VERSION=110200 +# CONFIG_GCOV_KERNEL is not set +CONFIG_GDB_SCRIPTS=y +CONFIG_GEMINI_ETHERNET=m +CONFIG_GENERIC_ADC_BATTERY=m +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_ARCH_NUMA=y +CONFIG_GENERIC_ARCH_TOPOLOGY=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_GENERIC_CPU=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_GENERIC_ENTRY=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_CHIP=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_GENERIC_PINCONF=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_GENERIC_SCHED_CLOCK=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_TRACER=y +CONFIG_GENERIC_VDSO_32=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_GENEVE=m +CONFIG_GENWQE=m +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0 +CONFIG_GEN_RTC=y +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GIANFAR=m +CONFIG_GIGABYTE_WMI=m +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_GNSS_MTK_SERIAL=m +CONFIG_GNSS_SERIAL=m +CONFIG_GNSS_SIRF_SERIAL=m +CONFIG_GNSS_UBX_SERIAL=m +# CONFIG_GOLDFISH is not set +# CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_GP2AP002=m +CONFIG_GP2AP020A00F=m +CONFIG_GPD_POCKET_FAN=m +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIOLIB_IRQCHIP=y +CONFIG_GPIO_104_DIO_48E=m +CONFIG_GPIO_104_IDIO_16=m +CONFIG_GPIO_104_IDI_48=m +CONFIG_GPIO_74X164=m +CONFIG_GPIO_74XX_MMIO=m +CONFIG_GPIO_AAEON=m +CONFIG_GPIO_ACPI=y +CONFIG_GPIO_ADNP=m +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_AGGREGATOR=m +CONFIG_GPIO_ALTERA=m +CONFIG_GPIO_ALTERA_A10SR=m +CONFIG_GPIO_AMD8111=m +CONFIG_GPIO_AMDPT=m +CONFIG_GPIO_ARIZONA=m +CONFIG_GPIO_ASPEED=m +CONFIG_GPIO_ASPEED_SGPIO=y +CONFIG_GPIO_BCM_XGS_IPROC=m +CONFIG_GPIO_BD70528=m +CONFIG_GPIO_BD71815=m +CONFIG_GPIO_BD71828=m +CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_BRCMSTB=m +CONFIG_GPIO_BT8XX=m +CONFIG_GPIO_CADENCE=m +CONFIG_GPIO_CDEV=y +# CONFIG_GPIO_CDEV_V1 is not set +CONFIG_GPIO_CRYSTAL_COVE=y +CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DA9055=m +CONFIG_GPIO_DAVINCI=y +CONFIG_GPIO_DLN2=m +CONFIG_GPIO_EIC_SPRD=m +# CONFIG_GPIO_EM is not set +CONFIG_GPIO_EXAR=m +CONFIG_GPIO_F7188X=m +CONFIG_GPIO_FTGPIO010=y +CONFIG_GPIO_GPIO_MM=m +CONFIG_GPIO_GRGPIO=m +CONFIG_GPIO_GW_PLD=m +CONFIG_GPIO_HISI=m +CONFIG_GPIO_HLWD=m +CONFIG_GPIO_ICH=m +CONFIG_GPIO_IT87=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LOGICVC=m +CONFIG_GPIO_LP3943=m +CONFIG_GPIO_LP873X=m +CONFIG_GPIO_LP87565=m +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_MAX3191X=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MAX730X=m +CONFIG_GPIO_MAX77620=m +CONFIG_GPIO_MAX77650=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_MENZ127=m +CONFIG_GPIO_MLXBF=m +CONFIG_GPIO_MLXBF2=m +CONFIG_GPIO_ML_IOH=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_MOXTET=m +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_MSC313=y +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_OMAP=y +CONFIG_GPIO_PALMAS=y +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCIE_IDIO_24=m +CONFIG_GPIO_PCI_IDIO_16=m +CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_PL061=y +CONFIG_GPIO_PMIC_EIC_SPRD=m +CONFIG_GPIO_RASPBERRYPI_EXP=m +CONFIG_GPIO_RC5T583=y +CONFIG_GPIO_RCAR=m +CONFIG_GPIO_RDA=y +CONFIG_GPIO_REGMAP=m +CONFIG_GPIO_ROCKCHIP=m +CONFIG_GPIO_SAMA5D2_PIOBU=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_SCH311X=m +CONFIG_GPIO_SIFIVE=y +CONFIG_GPIO_SL28CPLD=m +CONFIG_GPIO_SPRD=m +CONFIG_GPIO_STMPE=y +CONFIG_GPIO_SYSCON=m +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TC3589X=y +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TEGRA186=y +CONFIG_GPIO_THUNDERX=m +CONFIG_GPIO_TPS65086=m +CONFIG_GPIO_TPS65218=m +CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_TPS68470=y +CONFIG_GPIO_TQMX86=m +CONFIG_GPIO_TS4800=m +CONFIG_GPIO_TS4900=m +CONFIG_GPIO_UCB1400=m +CONFIG_GPIO_UNIPHIER=m +CONFIG_GPIO_VF610=y +CONFIG_GPIO_VIPERBOARD=m +CONFIG_GPIO_VISCONTI=m +CONFIG_GPIO_VX855=m +CONFIG_GPIO_WATCHDOG=m +CONFIG_GPIO_WCD934X=m +CONFIG_GPIO_WHISKEY_COVE=m +CONFIG_GPIO_WINBOND=m +CONFIG_GPIO_WM831X=m +CONFIG_GPIO_WM8350=m +CONFIG_GPIO_WM8994=m +CONFIG_GPIO_WS16C48=m +CONFIG_GPIO_XGENE=y +CONFIG_GPIO_XGENE_SB=m +CONFIG_GPIO_XILINX=y +CONFIG_GPIO_XLP=m +CONFIG_GPIO_XRA1403=m +CONFIG_GPIO_ZEVIO=y +CONFIG_GPIO_ZYNQ=m +CONFIG_GRACE_PERIOD=m +CONFIG_GREENASIA_FF=y +CONFIG_GREYBUS_AUDIO=m +CONFIG_GREYBUS_AUDIO_APB_CODEC=m +CONFIG_GREYBUS_BOOTROM=m +CONFIG_GREYBUS_BRIDGED_PHY=m +CONFIG_GREYBUS_ES2=m +CONFIG_GREYBUS_FIRMWARE=m +CONFIG_GREYBUS_GPIO=m +CONFIG_GREYBUS_HID=m +CONFIG_GREYBUS_I2C=m +CONFIG_GREYBUS_LIGHT=m +CONFIG_GREYBUS_LOG=m +CONFIG_GREYBUS_LOOPBACK=m +CONFIG_GREYBUS_POWER=m +CONFIG_GREYBUS_PWM=m +CONFIG_GREYBUS_RAW=m +CONFIG_GREYBUS_SDIO=m +CONFIG_GREYBUS_SPI=m +CONFIG_GREYBUS_UART=m +CONFIG_GREYBUS_USB=m +CONFIG_GREYBUS_VIBRATOR=m +CONFIG_GRO_CELLS=y +CONFIG_GS_FPGABOOT=m +CONFIG_GTP=m +# CONFIG_GUP_TEST is not set +CONFIG_GVE=m +CONFIG_HALTPOLL_CPUIDLE=m +CONFIG_HAMRADIO=y +CONFIG_HANDLE_DOMAIN_IRQ=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_HAPPYMEAL=m +CONFIG_HARDENED_USERCOPY=y +# CONFIG_HARDENED_USERCOPY_FALLBACK is not set +# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set +CONFIG_HARDEN_BRANCH_PREDICTOR=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAS_DMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_ARCH_COMPILER_H=y +CONFIG_HAVE_ARCH_HUGE_VMALLOC=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_HW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_HAVE_ARCH_KCSAN=y +CONFIG_HAVE_ARCH_KFENCE=y +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_HAVE_ARCH_NVRAM_OPS=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_ARM_ARCH_TIMER=y +CONFIG_HAVE_ARM_SCU=y +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +CONFIG_HAVE_ARM_TWD=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_EISA=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUTEX_CMPXCHG=y +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_ARCH=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_IMA_KEXEC=y +CONFIG_HAVE_IMX_ANATOP=y +CONFIG_HAVE_IMX_GPC=y +CONFIG_HAVE_IMX_MMDC=y +CONFIG_HAVE_IMX_SRC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_KCSAN_COMPILER=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_UNCOMPRESSED=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_HAVE_KVM_INVALID_WAKEUPS=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_NO_POLL=y +CONFIG_HAVE_KVM_PM_NOTIFIER=y +CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_HAVE_LD_DEAD_CODE_DATA_ELIMINATION=y +CONFIG_HAVE_LIVEPATCH=y +CONFIG_HAVE_MARCH_Z10_FEATURES=y +CONFIG_HAVE_MARCH_Z13_FEATURES=y +CONFIG_HAVE_MARCH_Z196_FEATURES=y +CONFIG_HAVE_MARCH_Z900_FEATURES=y +CONFIG_HAVE_MARCH_Z990_FEATURES=y +CONFIG_HAVE_MARCH_Z9_109_FEATURES=y +CONFIG_HAVE_MARCH_ZEC12_FEATURES=y +CONFIG_HAVE_MEMBLOCK_PHYS_MAP=y +CONFIG_HAVE_MEMORYLESS_NODES=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_NMI_WATCHDOG=y +CONFIG_HAVE_NOP_MCOUNT=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PATA_PLATFORM=y +CONFIG_HAVE_PCI=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_PNETID=m +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_HAVE_PROC_CPU=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_S3C2410_I2C=y +CONFIG_HAVE_S3C_RTC=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HAVE_SMP=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_UID16=y +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_IDLE=y +CONFIG_HBMC_AM654=m +# CONFIG_HCALL_STATS is not set +CONFIG_HD44780=m +CONFIG_HD44780_COMMON=m +CONFIG_HDC100X=m +CONFIG_HDC2010=m +CONFIG_HDLC=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_X25=m +CONFIG_HDMI=y +CONFIG_HDMI_LPE_AUDIO=m +CONFIG_HDQ_MASTER_OMAP=m +# CONFIG_HEADERS_INSTALL is not set +CONFIG_HERMES=m +CONFIG_HERMES_CACHE_FW_ON_INIT=y +# CONFIG_HERMES_PRISM is not set +# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set +CONFIG_HI13X1_GMAC=y +CONFIG_HI3660_MBOX=m +CONFIG_HI6220_MBOX=m +CONFIG_HI6421V600_IRQ=m +CONFIG_HI8435=m +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_HIDRAW=y +CONFIG_HID_A4TECH=m +CONFIG_HID_ACCUTOUCH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_ALPS=m +CONFIG_HID_APPLE=m +CONFIG_HID_APPLEIR=m +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +CONFIG_HID_BIGBEN_FF=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_HID_ELAN=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EMS_FF=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +CONFIG_HID_GENERIC=m +CONFIG_HID_GFRM=m +CONFIG_HID_GLORIOUS=m +CONFIG_HID_GOOGLE_HAMMER=m +CONFIG_HID_GREENASIA=m +CONFIG_HID_GT683R=m +CONFIG_HID_GYRATION=m +CONFIG_HID_HOLTEK=m +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_ICADE=m +CONFIG_HID_ITE=m +CONFIG_HID_JABRA=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_HID_MACALLY=m +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MALTRON=m +CONFIG_HID_MAYFLASH=m +CONFIG_HID_MCP2221=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NTI=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_LCD=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PID=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_HID_PRIMAX=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_REDRAGON=m +CONFIG_HID_RETRODE=m +CONFIG_HID_RMI=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +CONFIG_HID_SENSOR_GYRO_3D=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_HUMIDITY=m +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_HID_SENSOR_PRESS=m +CONFIG_HID_SENSOR_PROX=m +CONFIG_HID_SENSOR_TEMP=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_HID_SONY=m +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_STEAM=m +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_U2FZERO=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_UDRAW_PS3=m +CONFIG_HID_VIEWSONIC=m +CONFIG_HID_VIVALDI=m +CONFIG_HID_WACOM=m +CONFIG_HID_WALTOP=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_HID_ZYDACRON=m +CONFIG_HIGHMEM=y +CONFIG_HIGHPTE=y +CONFIG_HIGH_RES_TIMERS=y +CONFIG_HINIC=m +# CONFIG_HIO is not set +CONFIG_HIP04_ETH=m +# CONFIG_HIPPI is not set +CONFIG_HISILICON_ERRATUM_161010101=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_HISILICON_LPC=y +# CONFIG_HISI_DMA is not set +CONFIG_HISI_FEMAC=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_HISI_PMU=y +CONFIG_HISI_THERMAL=m +CONFIG_HIST_TRIGGERS=y +# CONFIG_HIST_TRIGGERS_DEBUG is not set +CONFIG_HIX5HD2_GMAC=m +CONFIG_HMC425=m +CONFIG_HMC_DRV=m +CONFIG_HMEM_REPORTING=y +CONFIG_HMM_MIRROR=y +CONFIG_HMS_ANYBUSS_BUS=m +CONFIG_HMS_PROFINET=m +CONFIG_HNS=m +CONFIG_HNS3=m +CONFIG_HNS3_DCB=y +CONFIG_HNS3_ENET=m +CONFIG_HNS3_HCLGE=m +CONFIG_HNS3_HCLGEVF=m +CONFIG_HNS_DSAF=m +CONFIG_HNS_ENET=m +CONFIG_HNS_MDIO=m +CONFIG_HOLTEK_FF=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_CS=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_PLX=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_POWERNV=m +CONFIG_HOTPLUG_PCI_RPA=m +CONFIG_HOTPLUG_PCI_RPA_DLPAR=m +CONFIG_HOTPLUG_PCI_S390=y +CONFIG_HOTPLUG_SMT=y +CONFIG_HP03=m +CONFIG_HP206C=m +CONFIG_HPET=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +CONFIG_HPET_TIMER=y +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_HP_ACCEL=m +CONFIG_HP_WATCHDOG=m +CONFIG_HP_WMI=m +CONFIG_HSA_AMD=y +CONFIG_HSA_AMD_SVM=y +CONFIG_HSI_BOARDINFO=y +CONFIG_HSI_CHAR=m +CONFIG_HSU_DMA=m +CONFIG_HT16K33=m +CONFIG_HTC_EGPIO=y +CONFIG_HTC_I2CPLD=y +CONFIG_HTS221=m +CONFIG_HTS221_I2C=m +CONFIG_HTS221_SPI=m +CONFIG_HTU21=m +CONFIG_HUAWEI_WMI=m +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_FREE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_FREE_VMEMMAP_DEFAULT_ON is not set +CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y +CONFIG_HVCS=m +CONFIG_HVC_CONSOLE=y +# CONFIG_HVC_DCC is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_IUCV=y +CONFIG_HVC_OLD_HVSI=y +CONFIG_HVC_OPAL=y +CONFIG_HVC_RTAS=y +# CONFIG_HVC_UDBG is not set +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_HV_PERF_CTRS=y +CONFIG_HWLAT_TRACER=y +# CONFIG_HWMON_DEBUG_CHIP is not set +CONFIG_HWMON_VID=m +CONFIG_HWPOISON_INJECT=m +CONFIG_HWSPINLOCK_OMAP=m +CONFIG_HWSPINLOCK_QCOM=m +CONFIG_HWSPINLOCK_SPRD=m +CONFIG_HWSPINLOCK_SUN6I=m +CONFIG_HW_CONSOLE=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=m +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_CAVIUM=m +CONFIG_HW_RANDOM_EXYNOS=m +CONFIG_HW_RANDOM_HISI=m +CONFIG_HW_RANDOM_IMX_RNGC=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +CONFIG_HW_RANDOM_MESON=m +CONFIG_HW_RANDOM_MTK=m +CONFIG_HW_RANDOM_NPCM=m +CONFIG_HW_RANDOM_OMAP=m +CONFIG_HW_RANDOM_OMAP3_ROM=m +CONFIG_HW_RANDOM_OPTEE=m +CONFIG_HW_RANDOM_POWERNV=m +CONFIG_HW_RANDOM_PSERIES=m +CONFIG_HW_RANDOM_S390=m +CONFIG_HW_RANDOM_TPM=y +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XGENE=m +CONFIG_HX711=m +CONFIG_HYPERV=m +CONFIG_HYPERVISOR_GUEST=y +CONFIG_HYPERV_BALLOON=m +CONFIG_HYPERV_IOMMU=y +CONFIG_HYPERV_KEYBOARD=m +CONFIG_HYPERV_NET=m +CONFIG_HYPERV_STORAGE=m +# CONFIG_HYPERV_TESTING is not set +CONFIG_HYPERV_TIMER=y +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_VSOCKETS=m +# CONFIG_HZ_200 is not set +# CONFIG_HZ_300 is not set +# CONFIG_HZ_500 is not set +CONFIG_HZ_FIXED=0 +# CONFIG_HZ_PERIODIC is not set +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALTERA=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_ARB_GPIO_CHALLENGE=m +CONFIG_I2C_ASPEED=m +CONFIG_I2C_AXXIA=m +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM_IPROC=m +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_BRCMSTB=m +# CONFIG_I2C_CADENCE is not set +CONFIG_I2C_CHT_WC=m +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CP2615=m +CONFIG_I2C_CROS_EC_TUNNEL=m +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_I2C_DEBUG_CORE is not set +CONFIG_I2C_DEMUX_PINCTRL=m +CONFIG_I2C_DESIGNWARE_BAYTRAIL=y +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_DLN2=m +CONFIG_I2C_EXYNOS5=m +CONFIG_I2C_FSI=m +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_HID_ACPI=m +CONFIG_I2C_HID_CORE=m +CONFIG_I2C_HID_OF=m +CONFIG_I2C_HID_OF_GOODIX=m +CONFIG_I2C_HISI=m +CONFIG_I2C_HIX5HD2=m +CONFIG_I2C_IMX_LPI2C=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_MESON=m +CONFIG_I2C_MLXBF=m +CONFIG_I2C_MLXCPLD=m +CONFIG_I2C_MPC=m +CONFIG_I2C_MT65XX=m +CONFIG_I2C_MULTI_INSTANTIATE=m +CONFIG_I2C_MUX=m +CONFIG_I2C_MUX_GPMUX=m +CONFIG_I2C_MUX_PINCTRL=m +CONFIG_I2C_MV64XXX=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_NOMADIK=m +CONFIG_I2C_NPCM7XX=m +CONFIG_I2C_OMAP=y +CONFIG_I2C_OPAL=y +CONFIG_I2C_OWL=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PXA=m +CONFIG_I2C_PXA_SLAVE=y +CONFIG_I2C_QCOM_CCI=m +CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QUP=m +CONFIG_I2C_RCAR=m +CONFIG_I2C_RIIC=m +CONFIG_I2C_RK3X=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_S3C2410=y +CONFIG_I2C_SCMI=m +CONFIG_I2C_SH_MOBILE=m +CONFIG_I2C_SI470X=m +CONFIG_I2C_SI4713=m +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_SPRD=y +CONFIG_I2C_STUB=m +CONFIG_I2C_SYNQUACER=m +CONFIG_I2C_TEGRA=m +CONFIG_I2C_TEGRA_BPMP=m +CONFIG_I2C_THUNDERX=m +CONFIG_I2C_TINY_USB=m +# CONFIG_I2C_UNIPHIER is not set +# CONFIG_I2C_UNIPHIER_F is not set +CONFIG_I2C_VERSATILE=m +CONFIG_I2C_VIPERBOARD=m +CONFIG_I2C_XGENE_SLIMPRO=m +CONFIG_I2C_XLP9XX=m +CONFIG_I40E=m +CONFIG_I40EVF=m +CONFIG_I40E_DCB=y +CONFIG_I82092=m +CONFIG_I8253_LOCK=y +CONFIG_I8K=m +CONFIG_IA32_EMULATION=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_IAQCORE=m +CONFIG_IAVF=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_IBMVETH=m +CONFIG_IBMVIO=y +CONFIG_IBMVMC=m +CONFIG_IBMVNIC=m +CONFIG_IBM_ASM=m +CONFIG_IBM_BSR=m +CONFIG_IBM_PARTITION=y +CONFIG_IBM_RTL=m +CONFIG_ICE=m +CONFIG_ICP10100=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICST=y +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_IDLE_INJECT=y +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IE6XX_WDT=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_IEEE802154_AT86RF230=m +CONFIG_IEEE802154_AT86RF230_DEBUGFS=y +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_CA8210=m +CONFIG_IEEE802154_CA8210_DEBUGFS=y +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_HWSIM=m +CONFIG_IEEE802154_MCR20A=m +CONFIG_IEEE802154_MRF24J40=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IEEE802154_SOCKET=m +CONFIG_IFB=m +CONFIG_IFCVF=m +CONFIG_IGB=m +CONFIG_IGBVF=m +CONFIG_IGB_DCA=y +CONFIG_IGB_HWMON=y +CONFIG_IGC=m +CONFIG_IIO_ADIS_LIB=m +CONFIG_IIO_ADIS_LIB_BUFFER=y +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +CONFIG_IIO_BUFFER_HW_CONSUMER=m +CONFIG_IIO_CONFIGFS=m +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_CROS_EC_ACCEL_LEGACY=m +CONFIG_IIO_CROS_EC_BARO=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE=m +CONFIG_IIO_HRTIMER_TRIGGER=m +CONFIG_IIO_INTERRUPT_TRIGGER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_MS_SENSORS_I2C=m +CONFIG_IIO_MUX=m +CONFIG_IIO_RESCALE=m +CONFIG_IIO_SCMI=m +CONFIG_IIO_SIMPLE_DUMMY=m +# CONFIG_IIO_SIMPLE_DUMMY_BUFFER is not set +# CONFIG_IIO_SIMPLE_DUMMY_EVENTS is not set +CONFIG_IIO_SSP_SENSORHUB=m +CONFIG_IIO_SSP_SENSORS_COMMONS=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +CONFIG_IIO_ST_GYRO_3AXIS=m +CONFIG_IIO_ST_GYRO_I2C_3AXIS=m +CONFIG_IIO_ST_GYRO_SPI_3AXIS=m +CONFIG_IIO_ST_LSM6DSX=m +CONFIG_IIO_ST_LSM6DSX_I2C=m +CONFIG_IIO_ST_LSM6DSX_I3C=m +CONFIG_IIO_ST_LSM6DSX_SPI=m +CONFIG_IIO_ST_LSM9DS0=m +CONFIG_IIO_ST_LSM9DS0_I2C=m +CONFIG_IIO_ST_LSM9DS0_SPI=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_ST_MAGN_I2C_3AXIS=m +CONFIG_IIO_ST_MAGN_SPI_3AXIS=m +CONFIG_IIO_ST_PRESS=m +CONFIG_IIO_ST_PRESS_I2C=m +CONFIG_IIO_ST_PRESS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_SW_DEVICE=m +CONFIG_IIO_SW_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +CONFIG_IIO_TIGHTLOOP_TRIGGER=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_TRIGGERED_EVENT=m +# CONFIG_IKCONFIG is not set +CONFIG_IKHEADERS=m +CONFIG_IMA=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set +CONFIG_IMA_APPRAISE_MODSIG=y +# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set +# CONFIG_IMA_BLACKLIST_KEYRING is not set +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DISABLE_HTABLE is not set +CONFIG_IMA_KEXEC=y +# CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY is not set +CONFIG_IMA_LSM_RULES=y +CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y +# CONFIG_IMA_TEMPLATE is not set +CONFIG_IMA_TRUSTED_KEYRING=y +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_X509_PATH="/etc/keys/x509_ima.der" +CONFIG_IMG_ASCII_LCD=m +CONFIG_IMX2_WDT=m +CONFIG_IMX7D_ADC=m +CONFIG_IMX7ULP_WDT=m +CONFIG_IMX8MM_THERMAL=m +CONFIG_IMX_DMA=m +CONFIG_IMX_DSP=m +CONFIG_IMX_GPCV2=y +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_IMX_INTMUX=y +CONFIG_IMX_IPUV3_CORE=m +CONFIG_IMX_IRQSTEER=y +CONFIG_IMX_MBOX=m +CONFIG_IMX_REMOTEPROC=m +CONFIG_IMX_SCU=y +CONFIG_IMX_SCU_PD=y +CONFIG_IMX_SC_THERMAL=m +CONFIG_IMX_SC_WDT=m +CONFIG_IMX_SDMA=m +CONFIG_IMX_THERMAL=m +CONFIG_IMX_WEIM=y +CONFIG_INA2XX_ADC=m +CONFIG_INDIRECT_PIO=y +CONFIG_INET=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_ESPINTCP=y +CONFIG_INET6_ESP_OFFLOAD=m +CONFIG_INET6_IPCOMP=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET_AH=m +CONFIG_INET_DCCP_DIAG=m +CONFIG_INET_DIAG=m +CONFIG_INET_DIAG_DESTROY=y +CONFIG_INET_ESP=m +CONFIG_INET_ESPINTCP=y +CONFIG_INET_ESP_OFFLOAD=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_MPTCP_DIAG=m +CONFIG_INET_RAW_DIAG=m +CONFIG_INET_SCTP_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_BNXT_RE=m +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_EFA=m +CONFIG_INFINIBAND_HFI1=m +CONFIG_INFINIBAND_HNS=m +CONFIG_INFINIBAND_HNS_HIP06=y +CONFIG_INFINIBAND_HNS_HIP08=y +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +# CONFIG_INFINIBAND_IPOIB_DEBUG is not set +CONFIG_INFINIBAND_IRDMA=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_MTHCA=m +# CONFIG_INFINIBAND_MTHCA_DEBUG is not set +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_OPA_VNIC=m +CONFIG_INFINIBAND_QEDR=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_QIB_DCA=y +CONFIG_INFINIBAND_RDMAVT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_USNIC=m +CONFIG_INFINIBAND_VIRT_DMA=y +CONFIG_INFINIBAND_VMWARE_PVRDMA=m +CONFIG_INFTL=m +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_INIT_STACK_NONE=y +CONFIG_INLINE_READ_LOCK=y +CONFIG_INLINE_READ_LOCK_BH=y +CONFIG_INLINE_READ_LOCK_IRQ=y +CONFIG_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_INLINE_READ_TRYLOCK=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_BH=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_SPIN_LOCK=y +CONFIG_INLINE_SPIN_LOCK_BH=y +CONFIG_INLINE_SPIN_LOCK_IRQ=y +CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_INLINE_SPIN_TRYLOCK=y +CONFIG_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_INLINE_SPIN_UNLOCK_BH=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_WRITE_LOCK=y +CONFIG_INLINE_WRITE_LOCK_BH=y +CONFIG_INLINE_WRITE_LOCK_IRQ=y +CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_INLINE_WRITE_TRYLOCK=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_BH=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_INOTIFY_USER=y +CONFIG_INPUT=y +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_ARIZONA_HAPTICS=m +CONFIG_INPUT_ATC260X_ONKEY=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATMEL_CAPTOUCH=m +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_CPCAP_PWRBUTTON=m +CONFIG_INPUT_DA7280_HAPTICS=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_DA9055_ONKEY=m +CONFIG_INPUT_DA9063_ONKEY=m +CONFIG_INPUT_DRV260X_HAPTICS=m +CONFIG_INPUT_DRV2665_HAPTICS=m +CONFIG_INPUT_DRV2667_HAPTICS=m +CONFIG_INPUT_E3X0_BUTTON=m +CONFIG_INPUT_EVDEV=y +CONFIG_INPUT_GPIO_BEEPER=m +CONFIG_INPUT_GPIO_DECODER=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_GPIO_VIBRA=m +CONFIG_INPUT_HISI_POWERKEY=m +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_IMS_PCU=m +CONFIG_INPUT_IQS269A=m +CONFIG_INPUT_IQS626A=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +CONFIG_INPUT_LEDS=m +CONFIG_INPUT_MAX77650_ONKEY=m +CONFIG_INPUT_MAX77693_HAPTIC=m +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MAX8997_HAPTIC=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_PALMAS_PWRBUTTON=m +CONFIG_INPUT_PCAP=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PCSPKR=m +CONFIG_INPUT_PM8941_PWRKEY=m +CONFIG_INPUT_PM8XXX_VIBRATOR=m +CONFIG_INPUT_PMIC8XXX_PWRKEY=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_PWM_VIBRA=m +CONFIG_INPUT_RAVE_SP_PWRBUTTON=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_RK805_PWRKEY=m +CONFIG_INPUT_SC27XX_VIBRA=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +CONFIG_INPUT_STPMIC1_ONKEY=m +CONFIG_INPUT_TPS65218_PWRBUTTON=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=y +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m +CONFIG_INPUT_YEALINK=m +CONFIG_INSTRUCTION_DECODER=y +CONFIG_INT3406_THERMAL=m +CONFIG_INT340X_THERMAL=m +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_AUDIT=y +CONFIG_INTEGRITY_PLATFORM_KEYRING=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEL_ATOMISP=y +CONFIG_INTEL_ATOMISP2_LED=m +CONFIG_INTEL_ATOMISP2_PDX86=y +CONFIG_INTEL_BXTWC_PMIC_TMU=m +CONFIG_INTEL_BXT_PMIC_THERMAL=m +CONFIG_INTEL_CHTDC_TI_PWRBTN=m +CONFIG_INTEL_CHT_INT33FE=m +CONFIG_INTEL_GTT=y +CONFIG_INTEL_HID_EVENT=m +CONFIG_INTEL_IDLE=y +CONFIG_INTEL_IDMA64=m +CONFIG_INTEL_IDXD=m +CONFIG_INTEL_IDXD_BUS=m +# CONFIG_INTEL_IDXD_COMPAT is not set +CONFIG_INTEL_IDXD_PERFMON=y +CONFIG_INTEL_IDXD_SVM=y +CONFIG_INTEL_INT0002_VGPIO=m +CONFIG_INTEL_IOATDMA=m +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_SVM=y +CONFIG_INTEL_IPS=m +CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER=m +CONFIG_INTEL_ISH_HID=m +CONFIG_INTEL_LDMA=y +CONFIG_INTEL_MEI=m +CONFIG_INTEL_MEI_HDCP=m +CONFIG_INTEL_MEI_ME=m +CONFIG_INTEL_MEI_TXE=m +CONFIG_INTEL_MEI_WDT=m +CONFIG_INTEL_MENLOW=m +CONFIG_INTEL_MRFLD_ADC=m +CONFIG_INTEL_MRFLD_PWRBTN=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_INTEL_PCH_THERMAL=m +CONFIG_INTEL_PMC_CORE=y +CONFIG_INTEL_PMT_CLASS=m +CONFIG_INTEL_PMT_CRASHLOG=m +CONFIG_INTEL_PMT_TELEMETRY=m +CONFIG_INTEL_POWERCLAMP=m +CONFIG_INTEL_PUNIT_IPC=m +CONFIG_INTEL_QEP=m +CONFIG_INTEL_RAPL=m +CONFIG_INTEL_RAPL_CORE=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SAR_INT1092=m +CONFIG_INTEL_SCU=y +CONFIG_INTEL_SCU_IPC=y +CONFIG_INTEL_SCU_IPC_UTIL=m +CONFIG_INTEL_SCU_PCI=y +CONFIG_INTEL_SCU_PLATFORM=m +CONFIG_INTEL_SKL_INT3472=m +CONFIG_INTEL_SMARTCONNECT=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m +CONFIG_INTEL_SOC_PMIC=y +CONFIG_INTEL_SOC_PMIC_BXTWC=m +CONFIG_INTEL_SOC_PMIC_CHTDC_TI=m +CONFIG_INTEL_SOC_PMIC_CHTWC=y +CONFIG_INTEL_SOC_PMIC_MRFLD=m +CONFIG_INTEL_SPEED_SELECT_INTERFACE=m +CONFIG_INTEL_STRATIX10_RSU=m +CONFIG_INTEL_STRATIX10_SERVICE=m +CONFIG_INTEL_TCC_COOLING=m +CONFIG_INTEL_TELEMETRY=m +CONFIG_INTEL_TH=m +CONFIG_INTEL_TH_ACPI=m +# CONFIG_INTEL_TH_DEBUG is not set +CONFIG_INTEL_TH_GTH=m +CONFIG_INTEL_TH_MSU=m +CONFIG_INTEL_TH_PCI=m +CONFIG_INTEL_TH_PTI=m +CONFIG_INTEL_TH_STH=m +CONFIG_INTEL_TURBO_MAX_3=y +CONFIG_INTEL_TXT=y +CONFIG_INTEL_UNCORE_FREQ_CONTROL=m +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_WMI=y +CONFIG_INTEL_WMI_SBL_FW_UPDATE=m +CONFIG_INTEL_WMI_THUNDERBOLT=m +CONFIG_INTEL_XWAY_PHY=m +CONFIG_INTERCONNECT_EXYNOS=m +CONFIG_INTERCONNECT_IMX=m +CONFIG_INTERCONNECT_IMX8MM=m +CONFIG_INTERCONNECT_IMX8MN=m +CONFIG_INTERCONNECT_IMX8MQ=m +CONFIG_INTERCONNECT_QCOM=y +CONFIG_INTERCONNECT_QCOM_BCM_VOTER=m +CONFIG_INTERCONNECT_QCOM_MSM8916=m +CONFIG_INTERCONNECT_QCOM_MSM8939=m +CONFIG_INTERCONNECT_QCOM_MSM8974=m +CONFIG_INTERCONNECT_QCOM_OSM_L3=m +CONFIG_INTERCONNECT_QCOM_QCS404=m +CONFIG_INTERCONNECT_QCOM_RPMH=m +CONFIG_INTERCONNECT_QCOM_RPMH_POSSIBLE=y +CONFIG_INTERCONNECT_QCOM_SC7180=m +CONFIG_INTERCONNECT_QCOM_SC7280=m +CONFIG_INTERCONNECT_QCOM_SC8180X=m +CONFIG_INTERCONNECT_QCOM_SDM660=m +CONFIG_INTERCONNECT_QCOM_SDM845=m +CONFIG_INTERCONNECT_QCOM_SDX55=m +CONFIG_INTERCONNECT_QCOM_SM8150=m +CONFIG_INTERCONNECT_QCOM_SM8250=m +CONFIG_INTERCONNECT_QCOM_SM8350=m +CONFIG_INTERCONNECT_QCOM_SMD_RPM=m +CONFIG_INTERCONNECT_SAMSUNG=y +CONFIG_INTERRUPT_CNT=m +CONFIG_INTERVAL_TREE=y +# CONFIG_INTERVAL_TREE_TEST is not set +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +CONFIG_INV_MPU6050_I2C=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_SPI=m +CONFIG_IOASID=y +CONFIG_IOMMU_API=y +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_IOMMU_DMA=y +CONFIG_IOMMU_HELPER=y +CONFIG_IOMMU_IO_PGTABLE=y +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +CONFIG_IOMMU_SUPPORT=y +CONFIG_IOMMU_SVA_LIB=y +CONFIG_IONIC=m +CONFIG_IOSCHED_BFQ=m +CONFIG_IOSF_MBI=y +CONFIG_IOSF_MBI_DEBUG=y +CONFIG_IOSM=m +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_EVENT_IRQ=y +# CONFIG_IO_STRICT_DEVMEM is not set +CONFIG_IO_URING=y +CONFIG_IO_WQ=y +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IPC_NS=y +# CONFIG_IPDDP is not set +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_KCS_BMC=m +CONFIG_IPMI_KCS_BMC_CDEV_IPMI=m +CONFIG_IPMI_KCS_BMC_SERIO=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_PLAT_DATA=y +CONFIG_IPMI_POWERNV=m +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPQ_APSS_6018=m +CONFIG_IPQ_APSS_PLL=m +CONFIG_IPQ_GCC_4019=m +CONFIG_IPQ_GCC_6018=m +CONFIG_IPQ_GCC_806X=m +CONFIG_IPQ_GCC_8074=m +CONFIG_IPQ_LCC_806X=m +CONFIG_IPV6=y +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_IOAM6_LWTUNNEL=y +CONFIG_IPV6_MIP6=m +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_IPV6_PIMSM_V2=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +# CONFIG_IPV6_RPL_LWTUNNEL is not set +CONFIG_IPV6_SEG6_BPF=y +CONFIG_IPV6_SEG6_HMAC=y +CONFIG_IPV6_SEG6_LWTUNNEL=y +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPVLAN=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVTAP=m +CONFIG_IPW2100=m +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2100_MONITOR=y +CONFIG_IPW2200=m +# CONFIG_IPW2200_DEBUG is not set +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPWIRELESS=m +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_DCCP=m +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +# CONFIG_IP_DCCP_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARP_MANGLE=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +# CONFIG_IP_PNP is not set +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_SCTP=m +CONFIG_IP_SET=m +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMAC=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_VS=m +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_IPV6=y +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_MH_TAB_INDEX=12 +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_PE_SIP=m +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_SCTP=y +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_SH_TAB_BITS=8 +CONFIG_IP_VS_TAB_BITS=12 +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_WRR=m +CONFIG_IQS620AT_TEMP=m +CONFIG_IQS621_ALS=m +CONFIG_IQS624_POS=m +CONFIG_IRQCHIP=y +# CONFIG_IRQSOFF_TRACER is not set +CONFIG_IRQ_ALL_CPUS=y +CONFIG_IRQ_CROSSBAR=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_IRQ_POLL=y +CONFIG_IRQ_REMAP=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_UNIPHIER_AIDET=y +CONFIG_IRQ_WORK=y +CONFIG_IR_ENE=m +CONFIG_IR_FINTEK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_IR_GPIO_TX=m +CONFIG_IR_HIX5HD2=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_IMON=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_MESON=m +CONFIG_IR_MESON_TX=m +CONFIG_IR_MTK=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_PWM_TX=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_RX51=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SERIAL=m +CONFIG_IR_SERIAL_TRANSMITTER=y +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_SIR=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SPI=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_SUNXI=m +CONFIG_IR_TOY=m +CONFIG_IR_TTUSBIR=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_XMP_DECODER=m +CONFIG_ISA_BUS=y +CONFIG_ISA_BUS_API=y +CONFIG_ISA_DMA_API=y +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_ISCSI_IBFT=m +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_ISCSI_TCP=m +CONFIG_ISDN=y +CONFIG_ISDN_CAPI=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISL29125=m +CONFIG_ISL29501=m +CONFIG_ISM=m +CONFIG_ISO9660_FS=m +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_ITCO_WDT=m +CONFIG_ITG3200=m +CONFIG_IUCV=y +CONFIG_IWL3945=m +CONFIG_IWL4965=m +CONFIG_IWLDVM=m +CONFIG_IWLEGACY=m +# CONFIG_IWLEGACY_DEBUG is not set +CONFIG_IWLEGACY_DEBUGFS=y +CONFIG_IWLMVM=m +CONFIG_IWLWIFI=m +# CONFIG_IWLWIFI_BCAST_FILTERING is not set +# CONFIG_IWLWIFI_DEBUG is not set +CONFIG_IWLWIFI_DEBUGFS=y +CONFIG_IWLWIFI_DEVICE_TRACING=y +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLWIFI_OPMODE_MODULAR=y +CONFIG_IWMMXT=y +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBEVF=m +CONFIG_IXGBEVF_IPSEC=y +CONFIG_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_IPSEC=y +CONFIG_JAILHOUSE_GUEST=y +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_JFFS2_CMODE_FAVOURLZO=y +# CONFIG_JFFS2_CMODE_NONE is not set +# CONFIG_JFFS2_CMODE_PRIORITY is not set +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_FS_WRITEBUFFER=y +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_ZLIB=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_JOLIET=y +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADC=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_FSIA6B=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_232=m +CONFIG_JOYSTICK_IFORCE_USB=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_PSXPAD_SPI=m +CONFIG_JOYSTICK_PSXPAD_SPI_FF=y +CONFIG_JOYSTICK_PXRC=m +CONFIG_JOYSTICK_QWIIC=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JSA1212=m +CONFIG_JUMP_LABEL_FEATURE_CHECKS=y +# CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG is not set +CONFIG_K3_DMA=m +CONFIG_K3_RTI_WATCHDOG=m +CONFIG_K3_THERMAL=m +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_KASAN is not set +CONFIG_KCMP=y +# CONFIG_KCOV is not set +# CONFIG_KCSAN is not set +CONFIG_KDB_CONTINUE_CATASTROPHIC=0 +CONFIG_KDB_DEFAULT_ENABLE=0x1 +CONFIG_KDB_KEYBOARD=y +CONFIG_KEEMBAY_WATCHDOG=m +CONFIG_KEMPLD_WDT=m +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_KERNEL_MODE_NEON=y +# CONFIG_KERNEL_NOBP is not set +CONFIG_KERNEL_START=0xc000000000000000 +# CONFIG_KERNEL_UNCOMPRESSED is not set +# CONFIG_KERNEL_XZ is not set +CONFIG_KERNEL_ZSTD=y +CONFIG_KERNFS=y +CONFIG_KEXEC=y +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y +CONFIG_KEXEC_CORE=y +CONFIG_KEXEC_ELF=y +# CONFIG_KEXEC_IMAGE_VERIFY_SIG is not set +CONFIG_KEXEC_JUMP=y +CONFIG_KEXEC_SIG=y +# CONFIG_KEXEC_SIG_FORCE is not set +CONFIG_KEYBOARD_ADC=m +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_APPLESPI=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_BCM=m +CONFIG_KEYBOARD_CAP11XX=m +CONFIG_KEYBOARD_CROS_EC=m +CONFIG_KEYBOARD_DLINK_DIR685=m +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_IMX=m +CONFIG_KEYBOARD_IMX_SC_KEY=m +CONFIG_KEYBOARD_IQS62X=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MATRIX=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_MTK_PMIC=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_NVEC=m +CONFIG_KEYBOARD_OMAP4=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_PMIC8XXX=m +CONFIG_KEYBOARD_QT1050=m +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_SAMSUNG=m +CONFIG_KEYBOARD_SNVS_PWRKEY=m +CONFIG_KEYBOARD_STMPE=m +CONFIG_KEYBOARD_STOWAWAY=m +# CONFIG_KEYBOARD_SUN4I_LRADC is not set +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_TEGRA=m +CONFIG_KEYBOARD_TM2_TOUCHKEY=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_KEY_NOTIFICATIONS=y +CONFIG_KFENCE=y +CONFIG_KFENCE_NUM_OBJECTS=255 +CONFIG_KFENCE_SAMPLE_INTERVAL=0 +# CONFIG_KFENCE_STATIC_KEYS is not set +CONFIG_KFENCE_STRESS_TEST_FAULTS=0 +CONFIG_KGDB=y +CONFIG_KGDB_HONOUR_BLOCKLIST=y +CONFIG_KGDB_KDB=y +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KHADAS_MCU_FAN_THERMAL=m +CONFIG_KMAP_LOCAL=y +CONFIG_KMAP_LOCAL_NON_LINEAR_PTE_ARRAY=y +CONFIG_KMX61=m +CONFIG_KPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +# CONFIG_KPROBES_SANITY_TEST is not set +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +CONFIG_KPSS_XCC=m +CONFIG_KRAITCC=m +CONFIG_KRAIT_CLOCKS=y +CONFIG_KRAIT_L2_ACCESSORS=y +CONFIG_KRETPROBES=y +CONFIG_KS0108=m +CONFIG_KS0108_DELAY=2 +CONFIG_KS0108_PORT=0x378 +CONFIG_KS7010=m +CONFIG_KS8842=m +CONFIG_KS8851=m +CONFIG_KS8851_MLL=m +CONFIG_KSM=y +CONFIG_KSZ884X_PCI=m +# CONFIG_KUNIT is not set +CONFIG_KUSER_HELPERS=y +CONFIG_KVM_AMD=m +CONFIG_KVM_AMD_SEV=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_KVM_ASYNC_PF_SYNC=y +CONFIG_KVM_BOOK3S_64=m +CONFIG_KVM_BOOK3S_64_HANDLER=y +CONFIG_KVM_BOOK3S_64_HV=m +CONFIG_KVM_BOOK3S_64_PR=m +CONFIG_KVM_BOOK3S_HANDLER=y +# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set +CONFIG_KVM_BOOK3S_HV_POSSIBLE=y +CONFIG_KVM_BOOK3S_PR_POSSIBLE=y +CONFIG_KVM_COMPAT=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_KVM_GUEST=y +CONFIG_KVM_INTEL=m +CONFIG_KVM_MMIO=y +# CONFIG_KVM_MMU_AUDIT is not set +# CONFIG_KVM_S390_UCONTROL is not set +CONFIG_KVM_VFIO=y +CONFIG_KVM_WERROR=y +CONFIG_KVM_XEN=y +CONFIG_KVM_XFER_TO_GUEST_WORK=y +CONFIG_KVM_XICS=y +CONFIG_KVM_XIVE=y +CONFIG_KXCJK1013=m +CONFIG_KXSD9=m +CONFIG_KXSD9_I2C=m +CONFIG_KXSD9_SPI=m +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_ETH=m +CONFIG_L2TP_IP=m +CONFIG_L2TP_V3=y +CONFIG_LAN743X=m +CONFIG_LANMEDIA=m +CONFIG_LAPBETHER=m +CONFIG_LATTICE_ECP3_CONFIG=m +CONFIG_LCD2S=m +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_OTM3225A=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LCS=m +CONFIG_LDISC_AUTOLOAD=y +# CONFIG_LDM_DEBUG is not set +# CONFIG_LD_DEAD_CODE_DATA_ELIMINATION is not set +# CONFIG_LD_HEAD_STUB_CATCH is not set +CONFIG_LD_IS_BFD=y +CONFIG_LD_ORPHAN_WARN=y +CONFIG_LD_VERSION=23700 +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_AAEON=m +CONFIG_LEDS_AAT1290=m +CONFIG_LEDS_ACER_A500=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_AN30259A=m +CONFIG_LEDS_APU=m +CONFIG_LEDS_AS3645A=m +CONFIG_LEDS_ASIC3=y +CONFIG_LEDS_AW2013=m +CONFIG_LEDS_BCM6328=m +CONFIG_LEDS_BCM6358=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_LEDS_CLASS_MULTICOLOR=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_CPCAP=m +CONFIG_LEDS_CR0014114=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_EL15203000=m +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_IS31FL319X=m +CONFIG_LEDS_IS31FL32XX=m +CONFIG_LEDS_KTD2692=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3532=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_LM3601X=m +CONFIG_LEDS_LM36274=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_LM3692X=m +CONFIG_LEDS_LM3697=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=m +CONFIG_LEDS_LP50XX=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +CONFIG_LEDS_LP5562=m +CONFIG_LEDS_LP55XX_COMMON=m +CONFIG_LEDS_LP8501=m +CONFIG_LEDS_LP8788=m +CONFIG_LEDS_LP8860=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_MAX77650=m +CONFIG_LEDS_MAX77693=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_MENF21BMC=m +CONFIG_LEDS_MLXCPLD=m +CONFIG_LEDS_MLXREG=m +CONFIG_LEDS_MT6323=m +CONFIG_LEDS_NIC78BX=m +CONFIG_LEDS_NS2=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA955X_GPIO=y +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_PM8058=m +CONFIG_LEDS_POWERNV=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_RT4505=m +CONFIG_LEDS_RT8515=m +CONFIG_LEDS_SC27XX_BLTC=m +CONFIG_LEDS_SGM3140=m +CONFIG_LEDS_SPI_BYTE=m +CONFIG_LEDS_SYSCON=y +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_TPS6105X=m +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_ACTIVITY=m +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m +CONFIG_LEDS_TRIGGER_DISK=y +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_NETDEV=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_PATTERN=m +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_TTY=m +CONFIG_LEDS_TURRIS_OMNIA=m +CONFIG_LEDS_USER=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LED_TRIGGER_PHY=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=0 +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +CONFIG_LG_LAPTOP=m +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +CONFIG_LIB80211_CRYPT_WEP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_LIBCRC32C=m +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_CS=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_SDIO=m +CONFIG_LIBERTAS_SPI=m +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_LIBFDT=y +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_LIDAR_LITE_V2=m +CONFIG_LINEAR_RANGES=y +CONFIG_LIQUIDIO=m +CONFIG_LIQUIDIO_VF=m +CONFIG_LIRC=y +CONFIG_LITEX=y +CONFIG_LITEX_LITEETH=m +CONFIG_LITEX_SOC_CONTROLLER=m +CONFIG_LIVEPATCH=y +# CONFIG_LKDTM is not set +CONFIG_LLC=m +CONFIG_LLD_VERSION=0 +CONFIG_LMK04832=m +CONFIG_LMP91000=m +CONFIG_LOAD_IPL_KEYS=y +CONFIG_LOAD_PPC_KEYS=y +CONFIG_LOAD_UEFI_KEYS=y +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_LOCKD=m +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_LOCKD_V4=y +CONFIG_LOCKUP_DETECTOR=y +CONFIG_LOCK_DEBUGGING_SUPPORT=y +CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y +# CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY is not set +# CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY is not set +CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_LOCK_SPIN_ON_OWNER=y +# CONFIG_LOCK_STAT is not set +# CONFIG_LOCK_TORTURE_TEST is not set +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +# CONFIG_LOGO is not set +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_LOOPBACK_TARGET=m +CONFIG_LP8788_ADC=m +CONFIG_LPARCFG=y +# CONFIG_LP_CONSOLE is not set +CONFIG_LRU_CACHE=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LSM="lockdown,yama,integrity,apparmor" +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_LS_EXTIRQ=y +CONFIG_LS_SCFG_MSI=y +CONFIG_LTC1660=m +CONFIG_LTC2471=m +CONFIG_LTC2485=m +CONFIG_LTC2496=m +CONFIG_LTC2497=m +CONFIG_LTC2632=m +CONFIG_LTC2983=m +CONFIG_LTE_GDM724X=m +CONFIG_LTO_NONE=y +CONFIG_LTPC=m +CONFIG_LTR501=m +CONFIG_LV0104CS=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_LXT_PHY=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_M62332=m +CONFIG_MAC80211=m +CONFIG_MAC80211_DEBUGFS=y +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_HWSIM=m +CONFIG_MAC80211_LEDS=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_MESSAGE_TRACING=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_MAC802154=m +CONFIG_MACB=m +CONFIG_MACB_PCI=m +CONFIG_MACB_USE_HWSTAMP=y +CONFIG_MACHZ_WDT=m +CONFIG_MACH_ARMADA_370=y +CONFIG_MACH_ARMADA_375=y +CONFIG_MACH_ARMADA_38X=y +CONFIG_MACH_ARMADA_39X=y +CONFIG_MACH_ARMADA_XP=y +# CONFIG_MACH_ARTPEC6 is not set +CONFIG_MACH_ASPEED_G6=y +CONFIG_MACH_BERLIN_BG2=y +CONFIG_MACH_BERLIN_BG2CD=y +CONFIG_MACH_BERLIN_BG2Q=y +CONFIG_MACH_DOVE=y +CONFIG_MACH_INFINITY=y +CONFIG_MACH_MERCURY=y +CONFIG_MACH_MESON6=y +CONFIG_MACH_MESON8=y +CONFIG_MACH_MT2701=y +CONFIG_MACH_MT6589=y +CONFIG_MACH_MT6592=y +CONFIG_MACH_MT7623=y +CONFIG_MACH_MT7629=y +CONFIG_MACH_MT8127=y +CONFIG_MACH_MT8135=y +CONFIG_MACH_MVEBU_ANY=y +CONFIG_MACH_MVEBU_V7=y +CONFIG_MACH_OMAP_GENERIC=y +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MACSEC=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_MADERA_IRQ=m +CONFIG_MAG3110=m +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_MAILBOX_TEST=m +CONFIG_MANAGER_SBS=m +CONFIG_MANTIS_CORE=m +CONFIG_MAPPING_DIRTY_HELPERS=y +# CONFIG_MARCH_Z10 is not set +CONFIG_MARCH_Z13=y +# CONFIG_MARCH_Z14 is not set +# CONFIG_MARCH_Z15 is not set +CONFIG_MARCH_Z15_TUNE=y +# CONFIG_MARCH_Z196 is not set +# CONFIG_MARCH_Z900 is not set +# CONFIG_MARCH_Z990 is not set +# CONFIG_MARCH_Z9_109 is not set +# CONFIG_MARCH_ZEC12 is not set +CONFIG_MARVELL_10G_PHY=m +CONFIG_MARVELL_PHY=m +# CONFIG_MATOM is not set +CONFIG_MAX1027=m +CONFIG_MAX11100=m +CONFIG_MAX1118=m +CONFIG_MAX1241=m +CONFIG_MAX1363=m +CONFIG_MAX30100=m +CONFIG_MAX30102=m +CONFIG_MAX31856=m +CONFIG_MAX44000=m +CONFIG_MAX44009=m +CONFIG_MAX517=m +CONFIG_MAX5432=m +CONFIG_MAX5481=m +CONFIG_MAX5487=m +CONFIG_MAX5821=m +CONFIG_MAX77620_THERMAL=m +CONFIG_MAX77620_WATCHDOG=m +CONFIG_MAX8925_POWER=m +CONFIG_MAX9611=m +CONFIG_MAXIM_THERMOCOUPLE=m +CONFIG_MAXSMP=y +CONFIG_MAX_PHYSMEM_BITS=46 +CONFIG_MB1232=m +CONFIG_MC3230=m +CONFIG_MCB_LPC=m +CONFIG_MCB_PCI=m +# CONFIG_MCORE2 is not set +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_MCP3911=m +CONFIG_MCP4018=m +CONFIG_MCP41010=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_MCPM=y +CONFIG_MCPM_QUAD_CLUSTER=y +CONFIG_MD=y +CONFIG_MDIO=m +CONFIG_MDIO_ASPEED=m +# CONFIG_MDIO_BCM_IPROC is not set +CONFIG_MDIO_BUS_MUX_BCM_IPROC=y +CONFIG_MDIO_BUS_MUX_GPIO=m +CONFIG_MDIO_BUS_MUX_MESON_G12A=m +CONFIG_MDIO_BUS_MUX_MMIOREG=m +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=m +CONFIG_MDIO_CAVIUM=m +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_GPIO=m +CONFIG_MDIO_HISI_FEMAC=m +CONFIG_MDIO_I2C=m +CONFIG_MDIO_IPQ4019=m +CONFIG_MDIO_IPQ8064=m +CONFIG_MDIO_MVUSB=m +CONFIG_MDIO_OCTEON=m +# CONFIG_MDIO_SUN4I is not set +CONFIG_MDIO_XGENE=m +CONFIG_MDM_GCC_9607=m +CONFIG_MDM_GCC_9615=m +CONFIG_MDM_LCC_9615=m +CONFIG_MD_AUTODETECT=y +CONFIG_MD_CLUSTER=m +CONFIG_MD_FAULTY=m +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MEDIATEK_MT6360_ADC=m +CONFIG_MEDIATEK_MT6577_AUXADC=m +CONFIG_MEDIATEK_WATCHDOG=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_ATTACH=y +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_CEC_RC=y +CONFIG_MEDIA_COMMON_OPTIONS=y +CONFIG_MEDIA_CONTROLLER=y +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_PCI_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y +CONFIG_MEDIA_SUPPORT_FILTER=y +CONFIG_MEDIA_TEST_SUPPORT=y +CONFIG_MEDIA_TUNER=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_USB_SUPPORT=y +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_MM=m +CONFIG_MELLANOX_PLATFORM=y +CONFIG_MEMBARRIER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMFD_CREATE=y +CONFIG_MEMORY_BALLOON=y +CONFIG_MEMORY_FAILURE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m +CONFIG_MEMREGION=y +# CONFIG_MEMSTICK_DEBUG is not set +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_MEMSTICK_TIFM_MS=m +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MEMTEST=y +CONFIG_MENF21BMC_WATCHDOG=m +CONFIG_MENZ069_WATCHDOG=m +CONFIG_MEN_A21_WDT=m +CONFIG_MEN_Z188_ADC=m +CONFIG_MERAKI_MX100=m +CONFIG_MESON6_TIMER=y +CONFIG_MESON_CANVAS=m +CONFIG_MESON_CLK_MEASURE=y +CONFIG_MESON_EE_PM_DOMAINS=y +CONFIG_MESON_EFUSE=m +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_GXL_PHY=m +CONFIG_MESON_GX_PM_DOMAINS=y +CONFIG_MESON_GX_SOCINFO=y +CONFIG_MESON_IRQ_GPIO=y +CONFIG_MESON_MX_EFUSE=m +CONFIG_MESON_MX_SOCINFO=y +CONFIG_MESON_SARADC=m +CONFIG_MESON_SECURE_PM_DOMAINS=y +CONFIG_MESON_SM=y +CONFIG_MESON_WATCHDOG=m +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAEON=m +CONFIG_MFD_AAT2870_CORE=y +# CONFIG_MFD_AC100 is not set +CONFIG_MFD_ACER_A500_EC=m +CONFIG_MFD_ACT8945A=m +CONFIG_MFD_ALTERA_A10SR=y +CONFIG_MFD_ALTERA_SYSMGR=y +CONFIG_MFD_ARIZONA=m +CONFIG_MFD_ARIZONA_SPI=m +CONFIG_MFD_AS3711=y +CONFIG_MFD_AS3722=y +CONFIG_MFD_ASIC3=y +CONFIG_MFD_ATC260X=m +CONFIG_MFD_ATMEL_FLEXCOM=m +CONFIG_MFD_ATMEL_HLCDC=m +CONFIG_MFD_AXP20X=m +CONFIG_MFD_AXP20X_RSB=m +CONFIG_MFD_CORE=y +CONFIG_MFD_CPCAP=m +CONFIG_MFD_CROS_EC_DEV=m +CONFIG_MFD_CS47L15=y +CONFIG_MFD_CS47L24=y +CONFIG_MFD_CS47L35=y +CONFIG_MFD_CS47L85=y +CONFIG_MFD_CS47L90=y +CONFIG_MFD_CS47L92=y +CONFIG_MFD_DA9052_I2C=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9055=y +CONFIG_MFD_DLN2=m +CONFIG_MFD_EXYNOS_LPASS=m +CONFIG_MFD_GATEWORKS_GSC=m +CONFIG_MFD_HI6421_PMIC=m +CONFIG_MFD_HI6421_SPMI=m +CONFIG_MFD_HI655X_PMIC=m +CONFIG_MFD_INTEL_LPSS=m +CONFIG_MFD_INTEL_LPSS_ACPI=m +CONFIG_MFD_INTEL_LPSS_PCI=m +CONFIG_MFD_INTEL_M10_BMC=m +CONFIG_MFD_INTEL_PMC_BXT=m +CONFIG_MFD_INTEL_QUARK_I2C_GPIO=m +CONFIG_MFD_KHADAS_MCU=m +CONFIG_MFD_LOCHNAGAR=y +CONFIG_MFD_LP8788=y +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +CONFIG_MFD_MAX77620=y +CONFIG_MFD_MAX77650=m +CONFIG_MFD_MAX77686=y +CONFIG_MFD_MAX77843=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_SPI=m +CONFIG_MFD_NTXEC=m +CONFIG_MFD_NVEC=m +CONFIG_MFD_OMAP_USB_HOST=y +CONFIG_MFD_PALMAS=y +CONFIG_MFD_PM8XXX=m +CONFIG_MFD_QCOM_PM8008=m +CONFIG_MFD_QCOM_RPM=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_RK808=m +CONFIG_MFD_RN5T618=m +CONFIG_MFD_ROHM_BD70528=m +CONFIG_MFD_ROHM_BD71828=m +CONFIG_MFD_ROHM_BD718XX=m +CONFIG_MFD_ROHM_BD957XMUF=m +CONFIG_MFD_RSMU_I2C=m +CONFIG_MFD_RSMU_SPI=m +CONFIG_MFD_SC27XX_PMIC=m +CONFIG_MFD_SEC_CORE=y +CONFIG_MFD_SIMPLE_MFD_I2C=m +CONFIG_MFD_SL28CPLD=m +CONFIG_MFD_SM501_GPIO=y +CONFIG_MFD_SPMI_PMIC=m +CONFIG_MFD_STMFX=m +CONFIG_MFD_STMPE=y +CONFIG_MFD_STPMIC1=m +CONFIG_MFD_SUN4I_GPADC=m +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_T7L66XB=y +CONFIG_MFD_TC3589X=y +CONFIG_MFD_TC6387XB=y +CONFIG_MFD_TC6393XB=y +CONFIG_MFD_TI_LP87565=m +CONFIG_MFD_TMIO=y +CONFIG_MFD_TPS65090=y +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_TPS80031=y +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_MFD_VEXPRESS_SYSREG=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM8997=y +CONFIG_MFD_WM8998=y +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_PCI_GENERIC=m +CONFIG_MHI_NET=m +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_MICREL_KS8995MA=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_PIT64B=y +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROCHIP_TCB_CAPTURE=m +CONFIG_MICROCODE=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_MICROSEMI_PHY=m +CONFIG_MICROSOFT_MANA=m +CONFIG_MIGHT_HAVE_CACHE_L2X0=y +CONFIG_MIGRATION=y +CONFIG_MILBEAUT_HDMAC=m +CONFIG_MILBEAUT_TIMER=y +CONFIG_MILBEAUT_XDMAC=m +CONFIG_MIPI_I3C_HCI=m +CONFIG_MISC_FILESYSTEMS=y +CONFIG_MISC_RTSX=m +CONFIG_MISC_RTSX_USB=m +CONFIG_MISDN=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_HDLC=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m +CONFIG_MISDN_L1OIP=m +CONFIG_MISDN_NETJET=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_W6692=m +# CONFIG_MK8 is not set +CONFIG_MKISS=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_ACCEL=y +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_CORE_EN_DCB=y +CONFIG_MLX5_CORE_IPOIB=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_IPSEC=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_EN_TLS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_FPGA=y +CONFIG_MLX5_FPGA_IPSEC=y +CONFIG_MLX5_FPGA_TLS=y +CONFIG_MLX5_INFINIBAND=m +CONFIG_MLX5_IPSEC=y +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_SF_MANAGER=y +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_TC_CT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_TLS=y +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +CONFIG_MLX90614=m +CONFIG_MLX90632=m +CONFIG_MLXBF_BOOTCTL=m +CONFIG_MLXBF_GIGE=m +CONFIG_MLXBF_PMC=m +CONFIG_MLXBF_TMFIFO=m +CONFIG_MLXFW=m +CONFIG_MLXREG_HOTPLUG=m +CONFIG_MLXREG_IO=m +CONFIG_MLXSW_CORE=m +CONFIG_MLXSW_CORE_HWMON=y +CONFIG_MLXSW_CORE_THERMAL=y +CONFIG_MLXSW_MINIMAL=m +CONFIG_MLXSW_PCI=m +CONFIG_MLXSW_SPECTRUM=m +CONFIG_MLXSW_SPECTRUM_DCB=y +CONFIG_MLX_PLATFORM=m +CONFIG_MLX_WDT=m +CONFIG_MMA7455=m +CONFIG_MMA7455_I2C=m +CONFIG_MMA7455_SPI=m +CONFIG_MMA7660=m +CONFIG_MMA8452=m +CONFIG_MMA9551=m +CONFIG_MMA9551_CORE=m +CONFIG_MMA9553=m +CONFIG_MMC35240=m +CONFIG_MMCONF_FAM10H=y +CONFIG_MMC_ALCOR=m +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_BCM2835=m +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_CAVIUM_THUNDERX=m +CONFIG_MMC_CB710=m +CONFIG_MMC_CRYPTO=y +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_DW=m +CONFIG_MMC_DW_BLUEFIELD=m +CONFIG_MMC_DW_EXYNOS=m +CONFIG_MMC_DW_HI3798CV200=m +CONFIG_MMC_DW_K3=m +CONFIG_MMC_DW_PCI=m +CONFIG_MMC_DW_PLTFM=m +CONFIG_MMC_DW_ROCKCHIP=m +CONFIG_MMC_MESON_GX=m +CONFIG_MMC_MESON_MX_SDHC=m +CONFIG_MMC_MESON_MX_SDIO=m +CONFIG_MMC_MTK=m +CONFIG_MMC_MVSDIO=m +CONFIG_MMC_MXC=m +CONFIG_MMC_OMAP=m +CONFIG_MMC_OMAP_HS=y +CONFIG_MMC_OWL=m +CONFIG_MMC_QCOM_DML=y +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_AM654=m +CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER=y +CONFIG_MMC_SDHCI_BRCMSTB=m +CONFIG_MMC_SDHCI_CADENCE=m +CONFIG_MMC_SDHCI_DOVE=m +CONFIG_MMC_SDHCI_EXTERNAL_DMA=y +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_IPROC=m +CONFIG_MMC_SDHCI_MILBEAUT=m +CONFIG_MMC_SDHCI_MSM=m +CONFIG_MMC_SDHCI_OF_ARASAN=m +CONFIG_MMC_SDHCI_OF_ASPEED=m +CONFIG_MMC_SDHCI_OF_AT91=m +CONFIG_MMC_SDHCI_OF_DWCMSHC=m +CONFIG_MMC_SDHCI_OF_ESDHC=m +CONFIG_MMC_SDHCI_OF_HLWD=m +CONFIG_MMC_SDHCI_OF_SPARX5=m +CONFIG_MMC_SDHCI_OMAP=m +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_SDHCI_PXAV3=m +CONFIG_MMC_SDHCI_S3C=m +CONFIG_MMC_SDHCI_S3C_DMA=y +CONFIG_MMC_SDHCI_SPRD=m +CONFIG_MMC_SDHCI_TEGRA=m +CONFIG_MMC_SDHCI_XENON=m +CONFIG_MMC_SDHI=m +CONFIG_MMC_SDHI_INTERNAL_DMAC=m +CONFIG_MMC_SDHI_SYS_DMAC=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_SH_MMCIF=m +CONFIG_MMC_SPI=m +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SUNXI=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_TMIO=m +CONFIG_MMC_TMIO_CORE=m +CONFIG_MMC_TOSHIBA_PCI=m +CONFIG_MMC_UNIPHIER=m +CONFIG_MMC_USDHI6ROL0=m +CONFIG_MMC_USHC=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_WBSD=m +CONFIG_MMIOTRACE=y +# CONFIG_MMIOTRACE_TEST is not set +CONFIG_MMIOWB=y +CONFIG_MMU=y +CONFIG_MMU_GATHER_NO_GATHER=y +CONFIG_MMU_GATHER_PAGE_SIZE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_NOTIFIER=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_MODPROBE_PATH="/sbin/modprobe" +CONFIG_MODULES=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_MODULES_USE_ELF_REL=y +CONFIG_MODULES_USE_ELF_RELA=y +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +# CONFIG_MODULE_COMPRESS_GZIP is not set +CONFIG_MODULE_COMPRESS_NONE=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_REL_CRCS=y +CONFIG_MODULE_SIG=y +CONFIG_MODULE_SIG_ALL=y +# CONFIG_MODULE_SIG_FORCE is not set +CONFIG_MODULE_SIG_FORMAT=y +CONFIG_MODULE_SIG_HASH="sha512" +CONFIG_MODULE_SIG_KEY="certs/signing_key.pem" +# CONFIG_MODULE_SIG_KEY_TYPE_ECDSA is not set +CONFIG_MODULE_SIG_KEY_TYPE_RSA=y +# CONFIG_MODULE_SIG_SHA1 is not set +# CONFIG_MODULE_SIG_SHA224 is not set +# CONFIG_MODULE_SIG_SHA256 is not set +# CONFIG_MODULE_SIG_SHA384 is not set +CONFIG_MODULE_SIG_SHA512=y +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODVERSIONS=y +CONFIG_MONREADER=m +CONFIG_MONWRITER=m +CONFIG_MOST_CDEV=m +CONFIG_MOST_COMPONENTS=m +CONFIG_MOST_DIM2=m +CONFIG_MOST_I2C=m +CONFIG_MOST_NET=m +CONFIG_MOST_SND=m +CONFIG_MOST_USB_HDM=m +CONFIG_MOST_VIDEO=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_CYAPA=m +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +CONFIG_MOUSE_ELAN_I2C_SMBUS=y +CONFIG_MOUSE_GPIO=m +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_SMBUS=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_TOUCHKIT=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_VMMOUSE=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_MOXTET=m +CONFIG_MP2629_ADC=m +CONFIG_MPIC=y +# CONFIG_MPIC_MSGR is not set +CONFIG_MPILIB=y +CONFIG_MPL115=m +CONFIG_MPL115_I2C=m +CONFIG_MPL115_SPI=m +CONFIG_MPL3115=m +CONFIG_MPLS=y +CONFIG_MPLS_IPTUNNEL=m +CONFIG_MPLS_ROUTING=m +CONFIG_MPROFILE_KERNEL=y +# CONFIG_MPSC is not set +CONFIG_MPTCP=y +CONFIG_MPTCP_IPV6=y +CONFIG_MPU3050=m +CONFIG_MPU3050_I2C=m +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_MRP=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=m +CONFIG_MSC313E_WATCHDOG=m +CONFIG_MSCC_OCELOT_SWITCH=m +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_MSDOS_FS=m +CONFIG_MSDOS_PARTITION=y +# CONFIG_MSI_BITMAP_SELFTEST is not set +CONFIG_MSI_LAPTOP=m +CONFIG_MSI_WMI=m +CONFIG_MSM_GCC_8660=m +CONFIG_MSM_GCC_8916=m +CONFIG_MSM_GCC_8939=m +CONFIG_MSM_GCC_8953=m +CONFIG_MSM_GCC_8960=m +CONFIG_MSM_GCC_8974=m +CONFIG_MSM_GCC_8994=m +CONFIG_MSM_GCC_8996=m +CONFIG_MSM_GCC_8998=m +CONFIG_MSM_GPUCC_8998=m +# CONFIG_MSM_IOMMU is not set +CONFIG_MSM_LCC_8960=m +CONFIG_MSM_MMCC_8960=m +CONFIG_MSM_MMCC_8974=m +CONFIG_MSM_MMCC_8994=m +CONFIG_MSM_MMCC_8996=m +CONFIG_MSM_MMCC_8998=m +CONFIG_MSPRO_BLOCK=m +CONFIG_MSTAR_MSC313_MPLL=y +CONFIG_MST_IRQ=y +CONFIG_MS_BLOCK=m +CONFIG_MT7601U=m +CONFIG_MT7603E=m +CONFIG_MT7615E=m +CONFIG_MT7615_COMMON=m +CONFIG_MT7622_WMAC=y +CONFIG_MT7663S=m +CONFIG_MT7663U=m +CONFIG_MT7663_USB_SDIO_COMMON=m +CONFIG_MT76_CONNAC_LIB=m +CONFIG_MT76_CORE=m +CONFIG_MT76_LEDS=y +CONFIG_MT76_SDIO=m +CONFIG_MT76_USB=m +CONFIG_MT76x02_LIB=m +CONFIG_MT76x02_USB=m +CONFIG_MT76x0E=m +CONFIG_MT76x0U=m +CONFIG_MT76x0_COMMON=m +CONFIG_MT76x2E=m +CONFIG_MT76x2U=m +CONFIG_MT76x2_COMMON=m +CONFIG_MT7915E=m +CONFIG_MT7921E=m +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTD_ABSENT=m +CONFIG_MTD_AFS_PARTS=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_AR7_PARTS=m +CONFIG_MTD_BCM47XXSFLASH=m +CONFIG_MTD_BLOCK2MTD=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_MTD_CFI=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_DATAFLASH=m +CONFIG_MTD_DATAFLASH_OTP=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DOCG3 is not set +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_GEN_PROBE=m +CONFIG_MTD_HYPERBUS=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_IMPA7=m +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_LPDDR=m +CONFIG_MTD_LPDDR2_NVM=m +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_MCHP23K256=m +CONFIG_MTD_MCHP48L640=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTD_NAND_ARASAN=m +CONFIG_MTD_NAND_BRCMNAND=m +CONFIG_MTD_NAND_CADENCE=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_DT=m +CONFIG_MTD_NAND_DENALI_PCI=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_SW_BCH=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_NAND_FSL_IFC=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_GPMI_NAND=m +CONFIG_MTD_NAND_HISI504=m +CONFIG_MTD_NAND_INTEL_LGM=m +CONFIG_MTD_NAND_MARVELL=m +CONFIG_MTD_NAND_MESON=m +CONFIG_MTD_NAND_MTK=m +CONFIG_MTD_NAND_MXC=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_OMAP2=y +CONFIG_MTD_NAND_OMAP_BCH=y +CONFIG_MTD_NAND_OMAP_BCH_BUILD=y +CONFIG_MTD_NAND_ORION=m +CONFIG_MTD_NAND_PL35X=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_QCOM=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_ROCKCHIP=m +# CONFIG_MTD_NAND_SUNXI is not set +CONFIG_MTD_NAND_TEGRA=m +CONFIG_MTD_NAND_TMIO=m +# CONFIG_MTD_NAND_VF610_NFC is not set +CONFIG_MTD_NETtel=m +CONFIG_MTD_OF_PARTS_BCM4908=y +CONFIG_MTD_OF_PARTS_LINKSYS_NS=y +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_ONENAND_GENERIC=m +CONFIG_MTD_ONENAND_OMAP2=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_OOPS=m +CONFIG_MTD_PARSER_TRX=m +# CONFIG_MTD_PARTITIONED_MASTER is not set +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +CONFIG_MTD_PHRAM=m +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_GPIO_ADDR=y +CONFIG_MTD_PHYSMAP_IXP4XX=y +CONFIG_MTD_PHYSMAP_OF=y +CONFIG_MTD_PLATRAM=m +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_POWERNV_FLASH=m +CONFIG_MTD_PSTORE=m +CONFIG_MTD_QCOMSMEM_PARTS=m +CONFIG_MTD_QINFO_PROBE=m +CONFIG_MTD_RAM=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +CONFIG_MTD_REDBOOT_PARTS=m +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +CONFIG_MTD_ROM=m +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_SHARPSL_PARTS=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_SPI_NAND=m +CONFIG_MTD_SPI_NOR=m +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +CONFIG_MTD_SST25L=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_TESTS is not set +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_BEB_LIMIT=20 +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_UBI_FASTMAP=y +CONFIG_MTD_UBI_GLUEBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTK_CMDQ=m +CONFIG_MTK_CMDQ_MBOX=m +CONFIG_MTK_CQDMA=m +CONFIG_MTK_DEVAPC=m +# CONFIG_MTK_EFUSE is not set +CONFIG_MTK_HSDMA=m +CONFIG_MTK_INFRACFG=y +# CONFIG_MTK_IOMMU is not set +# CONFIG_MTK_IOMMU_V1 is not set +CONFIG_MTK_MMSYS=y +CONFIG_MTK_PMIC_WRAP=m +CONFIG_MTK_SCP=m +CONFIG_MTK_SCPSYS=y +CONFIG_MTK_SCPSYS_PM_DOMAINS=y +CONFIG_MTK_SMI=m +CONFIG_MTK_THERMAL=m +CONFIG_MTK_TIMER=y +CONFIG_MTK_UART_APDMA=m +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_MULTIPLEXER=m +CONFIG_MULTIUSER=y +CONFIG_MUSB_PIO_ONLY=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_MUX_ADG792A=m +CONFIG_MUX_ADGS1408=m +CONFIG_MUX_GPIO=m +CONFIG_MUX_MMIO=m +CONFIG_MV643XX_ETH=m +CONFIG_MVEBU_CLK_COMMON=y +CONFIG_MVEBU_CLK_COREDIV=y +CONFIG_MVEBU_CLK_CPU=y +CONFIG_MVEBU_DEVBUS=y +CONFIG_MVEBU_GICP=y +CONFIG_MVEBU_ICU=y +CONFIG_MVEBU_MBUS=y +CONFIG_MVEBU_ODMI=y +CONFIG_MVEBU_PIC=y +CONFIG_MVEBU_SEI=y +CONFIG_MVMDIO=m +CONFIG_MVNETA=m +# CONFIG_MVNETA_BM_ENABLE is not set +CONFIG_MVPP2=m +CONFIG_MVPP2_PTP=y +CONFIG_MV_XOR=y +CONFIG_MV_XOR_V2=y +CONFIG_MWAVE=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_USB=m +CONFIG_MWL8K=m +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_MXC_CLK=y +CONFIG_MXC_CLK_SCU=y +CONFIG_MXC_TZIC=y +CONFIG_MXM_WMI=m +CONFIG_MXS_DMA=y +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_NAMESPACES=y +CONFIG_NATIONAL_PHY=m +CONFIG_NATSEMI=m +CONFIG_NAU7802=m +CONFIG_NBPFAXI_DMA=m +CONFIG_NCSI_OEM_CMD_GET_MAC=y +# CONFIG_NCSI_OEM_CMD_KEEP_PHY is not set +CONFIG_NDC_DIS_DYNAMIC_CACHING=y +CONFIG_ND_BLK=m +CONFIG_ND_BTT=m +CONFIG_ND_CLAIM=y +CONFIG_ND_PFN=m +CONFIG_NE2K_PCI=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEON=y +CONFIG_NET=y +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETDEVICES=y +CONFIG_NETDEVSIM=m +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XTABLES_COMPAT=y +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_SET=m +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFS_STATS=y +CONFIG_NETFS_SUPPORT=m +CONFIG_NETIUCV=m +CONFIG_NETLABEL=y +CONFIG_NETLINK_DIAG=m +CONFIG_NETPOLL=y +CONFIG_NETROM=m +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NETWORK_PHY_TIMESTAMPING=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NETXEN_NIC=m +CONFIG_NET_9P=m +# CONFIG_NET_9P_DEBUG is not set +CONFIG_NET_9P_RDMA=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_9P_XEN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_GACT=m +CONFIG_NET_ACT_GATE=m +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_SAMPLE=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_CALXEDA_XGMAC=m +CONFIG_NET_CLS=y +CONFIG_NET_CLS_ACT=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_U32=m +CONFIG_NET_CORE=y +CONFIG_NET_DEVLINK=y +CONFIG_NET_DROP_MONITOR=y +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_BCM_SF2=m +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +CONFIG_NET_DSA_LANTIQ_GSWIP=m +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_MICROCHIP_KSZ8795=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON=m +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_MT7530=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_MV88E6XXX_PTP=y +CONFIG_NET_DSA_QCA8K=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +CONFIG_NET_DSA_SJA1105_TAS=y +CONFIG_NET_DSA_SJA1105_VL=y +CONFIG_NET_DSA_SMSC_LAN9303=m +CONFIG_NET_DSA_SMSC_LAN9303_I2C=m +CONFIG_NET_DSA_SMSC_LAN9303_MDIO=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +CONFIG_NET_EGRESS=y +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_FAILOVER=m +CONFIG_NET_FC=y +CONFIG_NET_FLOW_LIMIT=y +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_NET_IFE=m +CONFIG_NET_INGRESS=y +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IPIP=m +CONFIG_NET_IPVTI=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_NCSI=y +CONFIG_NET_NS=y +CONFIG_NET_NSH=m +CONFIG_NET_PKTGEN=m +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NET_PTP_CLASSIFY=y +CONFIG_NET_REDIRECT=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_NET_SB1000=m +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_CBS=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_CODEL=m +# CONFIG_NET_SCH_DEFAULT is not set +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_ETS=m +CONFIG_NET_SCH_FIFO=y +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_TC_SKB_EXT=y +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TULIP=y +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_VENDOR_8390=y +CONFIG_NET_VENDOR_ACTIONS=y +CONFIG_NET_VENDOR_ALACRITECH=y +CONFIG_NET_VENDOR_ALLWINNER=y +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_NET_VENDOR_CADENCE=y +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_NET_VENDOR_CORTINA=y +CONFIG_NET_VENDOR_FARADAY=y +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_NET_VENDOR_HISILICON=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_IBM=y +# CONFIG_NET_VENDOR_MEDIATEK is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_NET_VENDOR_NETERION=y +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_NET_VENDOR_SYNOPSYS=y +CONFIG_NET_VENDOR_XILINX=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_NET_VRF=m +CONFIG_NET_XGENE=m +CONFIG_NET_XGENE_V2=m +CONFIG_NFC_DIGITAL=m +CONFIG_NFC_FDP=m +CONFIG_NFC_FDP_I2C=m +CONFIG_NFC_HCI=m +CONFIG_NFC_MEI_PHY=m +CONFIG_NFC_MICROREAD=m +CONFIG_NFC_MICROREAD_I2C=m +CONFIG_NFC_MICROREAD_MEI=m +CONFIG_NFC_MRVL=m +CONFIG_NFC_MRVL_I2C=m +CONFIG_NFC_MRVL_SPI=m +CONFIG_NFC_MRVL_UART=m +CONFIG_NFC_MRVL_USB=m +CONFIG_NFC_NCI=m +CONFIG_NFC_NCI_SPI=m +CONFIG_NFC_NCI_UART=m +CONFIG_NFC_NXP_NCI=m +CONFIG_NFC_NXP_NCI_I2C=m +CONFIG_NFC_PN532_UART=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_I2C=m +CONFIG_NFC_PN533_USB=m +CONFIG_NFC_PN544=m +CONFIG_NFC_PN544_I2C=m +CONFIG_NFC_PN544_MEI=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_S3FWRN5=m +CONFIG_NFC_S3FWRN5_I2C=m +CONFIG_NFC_S3FWRN82_UART=m +CONFIG_NFC_SHDLC=y +CONFIG_NFC_SIM=m +CONFIG_NFC_ST21NFCA=m +CONFIG_NFC_ST21NFCA_I2C=m +CONFIG_NFC_ST95HF=m +CONFIG_NFC_ST_NCI=m +CONFIG_NFC_ST_NCI_I2C=m +CONFIG_NFC_ST_NCI_SPI=m +CONFIG_NFC_TRF7970A=m +CONFIG_NFC_VIRTUAL_NCI=m +# CONFIG_NFIT_SECURITY_DEBUG is not set +CONFIG_NFP_APP_ABM_NIC=y +CONFIG_NFP_APP_FLOWER=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NFSD=m +CONFIG_NFSD_BLOCKLAYOUT=y +CONFIG_NFSD_FLEXFILELAYOUT=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_SCSILAYOUT=y +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_V4_2_INTER_SSC=y +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_DEBUG=y +CONFIG_NFS_DISABLE_UDP_SUPPORT=y +CONFIG_NFS_FS=m +CONFIG_NFS_FSCACHE=y +CONFIG_NFS_SWAP=y +CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_NFS_V4_1_MIGRATION=y +CONFIG_NFS_V4_2=y +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_COUNTER=m +CONFIG_NFT_CT=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_FLOW_OFFLOAD=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_HASH=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_NAT=m +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_OSF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_XFRM=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_PPTP=m +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_FLOW_TABLE_IPV4=m +CONFIG_NF_FLOW_TABLE_IPV6=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_LOG_IPV6=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_IPV4=y +CONFIG_NF_TABLES_IPV6=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NI903X_WDT=m +CONFIG_NIC7018_WDT=m +CONFIG_NILFS2_FS=m +CONFIG_NITRO_ENCLAVES=m +CONFIG_NIU=m +CONFIG_NI_XGE_MANAGEMENT_ENET=m +# CONFIG_NL80211_TESTMODE is not set +CONFIG_NLATTR=y +CONFIG_NLMON=m +CONFIG_NLS=y +CONFIG_NLS_ASCII=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_NMI_IPI=y +CONFIG_NOA1305=m +CONFIG_NOKIA_MODEM=m +CONFIG_NONSTATIC_KERNEL=y +CONFIG_NOP_TRACER=y +CONFIG_NORTEL_HERMES=m +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_NOUVEAU_DEBUG_PUSH is not set +# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +CONFIG_NO_HZ=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ_IDLE=y +CONFIG_NO_IOPORT_MAP=y +CONFIG_NPCM7XX_KCS_IPMI_BMC=m +CONFIG_NPCM7XX_TIMER=y +CONFIG_NPCM7XX_WATCHDOG=y +CONFIG_NPCM_ADC=m +CONFIG_NR_CPUS_DEFAULT=8192 +CONFIG_NR_CPUS_RANGE_BEGIN=8192 +CONFIG_NR_CPUS_RANGE_END=8192 +CONFIG_NR_IRQS=512 +CONFIG_NS83820=m +# CONFIG_NTB_AMD is not set +CONFIG_NTB_EPF=m +CONFIG_NTB_IDT=m +CONFIG_NTB_INTEL=m +CONFIG_NTB_MSI=y +# CONFIG_NTB_MSI_TEST is not set +CONFIG_NTB_NETDEV=m +CONFIG_NTB_PERF=m +CONFIG_NTB_PINGPONG=m +CONFIG_NTB_SWITCHTEC=m +CONFIG_NTB_TOOL=m +CONFIG_NTB_TRANSPORT=m +# CONFIG_NTFS3_64BIT_CLUSTER is not set +CONFIG_NTFS3_FS=m +CONFIG_NTFS3_FS_POSIX_ACL=y +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +CONFIG_NUMA=y +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_EMU is not set +CONFIG_NUMA_KEEP_MEMINFO=y +CONFIG_NVDIMM_DAX=y +CONFIG_NVDIMM_KEYS=y +CONFIG_NVDIMM_PFN=y +CONFIG_NVEC_PAZ00=m +CONFIG_NVEC_POWER=m +# CONFIG_NVHE_EL2_DEBUG is not set +CONFIG_NVIDIA_CARMEL_CNP_ERRATUM=y +CONFIG_NVMEM_BCM_OCOTP=m +CONFIG_NVMEM_IMX_IIM=m +CONFIG_NVMEM_IMX_OCOTP=m +CONFIG_NVMEM_IMX_OCOTP_SCU=m +CONFIG_NVMEM_REBOOT_MODE=m +CONFIG_NVMEM_RMEM=m +CONFIG_NVMEM_SNVS_LPGPR=m +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_NVMEM_SUNXI_SID=m +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_VF610_OCOTP is not set +CONFIG_NVMEM_ZYNQMP=y +CONFIG_NVME_CORE=m +CONFIG_NVME_FABRICS=m +CONFIG_NVME_FC=m +CONFIG_NVME_HWMON=y +CONFIG_NVME_MULTIPATH=y +CONFIG_NVME_RDMA=m +CONFIG_NVME_TARGET=m +CONFIG_NVME_TARGET_FC=m +# CONFIG_NVME_TARGET_FCLOOP is not set +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_PASSTHRU=y +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_TCP=m +CONFIG_NVME_TCP=m +CONFIG_NV_TCO=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_N_HDLC=m +# CONFIG_OABI_COMPAT is not set +CONFIG_OBJAGG=m +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_OCFS2_DEBUG_MASKLOG=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCTEONTX2_AF=m +CONFIG_OCTEONTX2_MBOX=m +CONFIG_OCTEONTX2_PF=m +CONFIG_OCTEONTX2_VF=m +CONFIG_OCXL=m +CONFIG_OCXL_BASE=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_DMA_DEFAULT_COHERENT=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_FLATTREE=y +CONFIG_OF_FPGA_REGION=m +CONFIG_OF_GPIO=y +CONFIG_OF_IOMMU=y +CONFIG_OF_IRQ=y +CONFIG_OF_KOBJ=y +CONFIG_OF_MDIO=y +CONFIG_OF_NET=y +CONFIG_OF_NUMA=y +CONFIG_OF_OVERLAY=y +CONFIG_OF_PMEM=m +# CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT is not set +CONFIG_OF_RESERVED_MEM=y +CONFIG_OF_RESOLVE=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OID_REGISTRY=y +CONFIG_OLD_SIGACTION=y +CONFIG_OLD_SIGSUSPEND=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_OMAP2PLUS_MBOX=m +CONFIG_OMAP2_VRFB=y +# CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set +# CONFIG_OMAP3_SDRC_AC_TIMING is not set +# CONFIG_OMAP3_THERMAL is not set +CONFIG_OMAP4_THERMAL=y +CONFIG_OMAP5_ERRATA_801819=y +CONFIG_OMAP_32K_TIMER=y +CONFIG_OMAP_CONTROL_PHY=m +CONFIG_OMAP_DM_TIMER=y +CONFIG_OMAP_GPMC=y +# CONFIG_OMAP_GPMC_DEBUG is not set +CONFIG_OMAP_HWMOD=y +CONFIG_OMAP_INTERCONNECT=y +CONFIG_OMAP_INTERCONNECT_BARRIER=y +CONFIG_OMAP_IOMMU=y +# CONFIG_OMAP_IOMMU_DEBUG is not set +CONFIG_OMAP_IRQCHIP=y +CONFIG_OMAP_MBOX_KFIFO_SIZE=256 +CONFIG_OMAP_OCP2SCP=m +CONFIG_OMAP_REMOTEPROC=m +# CONFIG_OMAP_REMOTEPROC_WATCHDOG is not set +CONFIG_OMAP_RESET_CLOCKS=y +CONFIG_OMAP_SSI=m +CONFIG_OMAP_USB2=m +CONFIG_OMAP_WATCHDOG=m +# CONFIG_OPAL_CORE is not set +CONFIG_OPAL_PRD=m +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPT3001=m +CONFIG_OPTEE=m +CONFIG_OPTEE_SHM_NUM_PRIV_PAGES=1 +CONFIG_OPTPROBES=y +CONFIG_ORANGEFS_FS=m +CONFIG_ORINOCO_USB=m +CONFIG_ORION_IRQCHIP=y +CONFIG_ORION_TIMER=y +CONFIG_ORION_WATCHDOG=m +# CONFIG_OSNOISE_TRACER is not set +CONFIG_OUTER_CACHE=y +CONFIG_OUTER_CACHE_SYNC=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_METACOPY is not set +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +CONFIG_OVERLAY_FS_XINO_AUTO=y +CONFIG_OWL_DMA=m +CONFIG_OWL_EMAC=m +CONFIG_OWL_PM_DOMAINS=y +CONFIG_OWL_PM_DOMAINS_HELPER=y +CONFIG_OWL_TIMER=y +CONFIG_P54_COMMON=m +CONFIG_P54_LEDS=y +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +# CONFIG_P54_SPI_DEFAULT_EEPROM is not set +CONFIG_P54_USB=m +CONFIG_PA12203001=m +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_PACK_STACK=y +CONFIG_PADATA=y +CONFIG_PAGE_COUNTER=y +CONFIG_PAGE_IDLE_FLAG=y +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POOL=y +CONFIG_PAGE_REPORTING=y +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_PAHOLE_HAS_SPLIT_BTF=y +CONFIG_PALMAS_GPADC=m +CONFIG_PANASONIC_LAPTOP=m +CONFIG_PANEL=m +# CONFIG_PANEL_CHANGE_MESSAGE is not set +CONFIG_PANEL_PARPORT=0 +CONFIG_PANEL_PROFILE=5 +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANTHERLORD_FF=y +CONFIG_PAPR_SCM=m +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_XXL=y +CONFIG_PARIDE=m +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_BPCK6=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PG=m +CONFIG_PARIDE_PT=m +CONFIG_PARMAN=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_NOT_PC=y +CONFIG_PARPORT_PANEL=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_SERIAL=m +CONFIG_PARTITION_ADVANCED=y +CONFIG_PARTITION_PERCPU=y +CONFIG_PATA_ACPI=m +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +# CONFIG_PATA_HPT3X3_DMA is not set +CONFIG_PATA_IMX=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_LEGACY=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OF_PLATFORM=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_TIMINGS=y +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m +CONFIG_PC300TOO=m +CONFIG_PC87413_WDT=m +CONFIG_PCC=y +CONFIG_PCCARD_NONSTATIC=y +CONFIG_PCENGINES_APU2=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_PCI=y +CONFIG_PCI200SYN=m +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +CONFIG_PCIE_AL=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCIE_ARMADA_8K=y +CONFIG_PCIE_BRCMSTB=m +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_CADENCE=y +CONFIG_PCIE_CADENCE_EP=y +CONFIG_PCIE_CADENCE_HOST=y +CONFIG_PCIE_CADENCE_PLAT=y +CONFIG_PCIE_CADENCE_PLAT_EP=y +CONFIG_PCIE_CADENCE_PLAT_HOST=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_EP=y +CONFIG_PCIE_DW_HOST=y +CONFIG_PCIE_DW_PLAT=y +CONFIG_PCIE_DW_PLAT_EP=y +CONFIG_PCIE_DW_PLAT_HOST=y +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIE_EDR is not set +CONFIG_PCIE_HISI_ERR=y +CONFIG_PCIE_HISI_STB=y +CONFIG_PCIE_IPROC=m +CONFIG_PCIE_IPROC_MSI=y +CONFIG_PCIE_IPROC_PLATFORM=m +CONFIG_PCIE_KEEMBAY=y +CONFIG_PCIE_KEEMBAY_EP=y +CONFIG_PCIE_KEEMBAY_HOST=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCIE_LAYERSCAPE_GEN4 is not set +CONFIG_PCIE_MEDIATEK=y +CONFIG_PCIE_MEDIATEK_GEN3=m +CONFIG_PCIE_MICROCHIP_HOST=y +# CONFIG_PCIE_MOBIVEIL_PLAT is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_PTM=y +CONFIG_PCIE_QCOM=y +CONFIG_PCIE_RCAR_EP=y +CONFIG_PCIE_RCAR_HOST=y +CONFIG_PCIE_ROCKCHIP=y +CONFIG_PCIE_ROCKCHIP_DW_HOST=y +CONFIG_PCIE_ROCKCHIP_EP=y +CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_TEGRA194=m +CONFIG_PCIE_TEGRA194_EP=m +CONFIG_PCIE_TEGRA194_HOST=m +CONFIG_PCIE_UNIPHIER=y +CONFIG_PCIE_UNIPHIER_EP=y +CONFIG_PCIE_VISCONTI_HOST=y +CONFIG_PCIE_XILINX=y +CONFIG_PCIE_XILINX_CPM=y +CONFIG_PCIE_XILINX_NWL=y +CONFIG_PCI_AARDVARK=y +CONFIG_PCI_ATMEL=m +CONFIG_PCI_ATS=y +CONFIG_PCI_BRIDGE_EMUL=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_DIRECT=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_DRA7XX=y +CONFIG_PCI_DRA7XX_EP=y +CONFIG_PCI_DRA7XX_HOST=y +CONFIG_PCI_ECAM=y +CONFIG_PCI_ENDPOINT=y +CONFIG_PCI_ENDPOINT_CONFIGFS=y +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_PCI_EPF_TEST is not set +CONFIG_PCI_EXYNOS=m +CONFIG_PCI_FTPCI100=y +CONFIG_PCI_HISI=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HYPERV=m +CONFIG_PCI_HYPERV_INTERFACE=m +CONFIG_PCI_IMX6=y +CONFIG_PCI_IOV=y +CONFIG_PCI_J721E=y +CONFIG_PCI_J721E_EP=y +CONFIG_PCI_J721E_HOST=y +CONFIG_PCI_KEYSTONE=y +CONFIG_PCI_KEYSTONE_EP=y +CONFIG_PCI_KEYSTONE_HOST=y +CONFIG_PCI_LABEL=y +CONFIG_PCI_LAYERSCAPE_EP=y +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_MESON is not set +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_ARCH_FALLBACKS=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_MVEBU=y +CONFIG_PCI_NR_FUNCTIONS=512 +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_PF_STUB=m +CONFIG_PCI_RCAR_GEN2=y +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +CONFIG_PCI_SW_SWITCHTEC=m +CONFIG_PCI_SYSCALL=y +CONFIG_PCI_TEGRA=y +CONFIG_PCI_V3_SEMI=y +CONFIG_PCI_XEN=y +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_AXNET=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_PCMCIA_WL3501=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_PCNET32=m +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_PCS_LYNX=m +CONFIG_PD6729=m +CONFIG_PDA_POWER=m +CONFIG_PDC_ADMA=m +CONFIG_PEAQ_WMI=m +# CONFIG_PERCPU_STATS is not set +# CONFIG_PERCPU_TEST is not set +CONFIG_PERF_EVENTS=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=m +CONFIG_PERF_EVENTS_INTEL_CSTATE=m +CONFIG_PERF_EVENTS_INTEL_RAPL=m +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_USE_VMALLOC=y +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PFAULT=y +CONFIG_PGSTE=y +CONFIG_PHYLINK=m +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PHY_AM654_SERDES=m +CONFIG_PHY_BCM_NS_USB2=m +CONFIG_PHY_BCM_NS_USB3=m +CONFIG_PHY_BCM_SR_PCIE=m +CONFIG_PHY_BCM_SR_USB=m +CONFIG_PHY_BERLIN_SATA=m +CONFIG_PHY_BERLIN_USB=m +CONFIG_PHY_BRCM_SATA=y +CONFIG_PHY_BRCM_USB=m +CONFIG_PHY_CADENCE_DPHY=m +CONFIG_PHY_CADENCE_SALVO=m +CONFIG_PHY_CADENCE_SIERRA=m +CONFIG_PHY_CADENCE_TORRENT=m +CONFIG_PHY_CPCAP_USB=m +CONFIG_PHY_DM816X_USB=m +CONFIG_PHY_EXYNOS5250_SATA=y +CONFIG_PHY_EXYNOS5250_USB2=y +CONFIG_PHY_EXYNOS5_USBDRD=m +CONFIG_PHY_EXYNOS_DP_VIDEO=y +CONFIG_PHY_EXYNOS_MIPI_VIDEO=y +CONFIG_PHY_EXYNOS_PCIE=y +CONFIG_PHY_FSL_IMX8MQ_USB=m +CONFIG_PHY_HI3660_USB=m +CONFIG_PHY_HI3670_USB=m +CONFIG_PHY_HI6220_USB=m +CONFIG_PHY_HISI_INNO_USB2=m +CONFIG_PHY_HISTB_COMBPHY=m +CONFIG_PHY_HIX5HD2_SATA=m +CONFIG_PHY_INTEL_KEEMBAY_EMMC=m +CONFIG_PHY_INTEL_KEEMBAY_USB=m +CONFIG_PHY_INTEL_LGM_EMMC=m +CONFIG_PHY_J721E_WIZ=m +CONFIG_PHY_MAPPHONE_MDM6600=m +CONFIG_PHY_MESON8B_USB2=m +CONFIG_PHY_MESON_AXG_MIPI_DPHY=m +CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG=y +CONFIG_PHY_MESON_AXG_PCIE=y +CONFIG_PHY_MESON_G12A_USB2=m +CONFIG_PHY_MESON_G12A_USB3_PCIE=m +CONFIG_PHY_MESON_GXL_USB2=m +CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_PHY_MTK_HDMI=m +CONFIG_PHY_MTK_MIPI_DSI=m +CONFIG_PHY_MTK_TPHY=m +CONFIG_PHY_MTK_UFS=m +CONFIG_PHY_MTK_XSPHY=m +CONFIG_PHY_MVEBU_A3700_COMPHY=m +CONFIG_PHY_MVEBU_A3700_UTMI=m +CONFIG_PHY_MVEBU_A38X_COMPHY=m +CONFIG_PHY_MVEBU_CP110_COMPHY=m +CONFIG_PHY_MVEBU_CP110_UTMI=m +CONFIG_PHY_MVEBU_SATA=y +CONFIG_PHY_NS2_PCIE=y +CONFIG_PHY_NS2_USB_DRD=m +CONFIG_PHY_OCELOT_SERDES=m +CONFIG_PHY_QCOM_APQ8064_SATA=m +CONFIG_PHY_QCOM_IPQ4019_USB=m +CONFIG_PHY_QCOM_IPQ806X_SATA=m +CONFIG_PHY_QCOM_IPQ806X_USB=m +CONFIG_PHY_QCOM_PCIE2=m +CONFIG_PHY_QCOM_QMP=m +CONFIG_PHY_QCOM_QUSB2=m +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_QCOM_USB_HS_28NM=m +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=m +CONFIG_PHY_QCOM_USB_SS=m +CONFIG_PHY_RCAR_GEN2=m +CONFIG_PHY_RCAR_GEN3_PCIE=m +CONFIG_PHY_RCAR_GEN3_USB2=m +CONFIG_PHY_RCAR_GEN3_USB3=m +CONFIG_PHY_ROCKCHIP_DP=m +CONFIG_PHY_ROCKCHIP_DPHY_RX0=m +CONFIG_PHY_ROCKCHIP_EMMC=m +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY=m +CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY=m +CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_USB2=m +CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_TYPEC=m +CONFIG_PHY_ROCKCHIP_USB=m +CONFIG_PHY_SAMSUNG_UFS=m +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_SPARX5_SERDES=m +CONFIG_PHY_SUN4I_USB=m +CONFIG_PHY_SUN50I_USB3=m +CONFIG_PHY_SUN6I_MIPI_DPHY=m +# CONFIG_PHY_SUN9I_USB is not set +CONFIG_PHY_TEGRA194_P2U=m +CONFIG_PHY_TEGRA_XUSB=m +CONFIG_PHY_TUSB1210=m +CONFIG_PHY_UNIPHIER_AHCI=m +CONFIG_PHY_UNIPHIER_PCIE=m +CONFIG_PHY_UNIPHIER_USB2=m +CONFIG_PHY_UNIPHIER_USB3=m +CONFIG_PHY_XGENE=y +CONFIG_PHY_XILINX_ZYNQMP=m +CONFIG_PI433=m +# CONFIG_PID_IN_CONTEXTIDR is not set +CONFIG_PID_NS=y +CONFIG_PINCONF=y +CONFIG_PINCTRL_ALDERLAKE=m +CONFIG_PINCTRL_AMD=y +CONFIG_PINCTRL_APQ8064=m +CONFIG_PINCTRL_APQ8084=m +CONFIG_PINCTRL_ARMADA_370=y +CONFIG_PINCTRL_ARMADA_375=y +CONFIG_PINCTRL_ARMADA_37XX=y +CONFIG_PINCTRL_ARMADA_38X=y +CONFIG_PINCTRL_ARMADA_39X=y +CONFIG_PINCTRL_ARMADA_AP806=y +CONFIG_PINCTRL_ARMADA_CP110=y +CONFIG_PINCTRL_ARMADA_XP=y +CONFIG_PINCTRL_AS370=y +CONFIG_PINCTRL_AS3722=y +CONFIG_PINCTRL_ASPEED=y +CONFIG_PINCTRL_ASPEED_G6=y +CONFIG_PINCTRL_AXP209=m +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_BERLIN=y +CONFIG_PINCTRL_BERLIN_BG2=y +CONFIG_PINCTRL_BERLIN_BG2CD=y +CONFIG_PINCTRL_BERLIN_BG2Q=y +CONFIG_PINCTRL_BERLIN_BG4CT=y +CONFIG_PINCTRL_BM1880=y +CONFIG_PINCTRL_BROXTON=m +CONFIG_PINCTRL_CANNONLAKE=m +CONFIG_PINCTRL_CEDARFORK=m +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_CS47L15=y +CONFIG_PINCTRL_CS47L35=y +CONFIG_PINCTRL_CS47L85=y +CONFIG_PINCTRL_CS47L90=y +CONFIG_PINCTRL_CS47L92=y +CONFIG_PINCTRL_DA9062=m +CONFIG_PINCTRL_DENVERTON=m +CONFIG_PINCTRL_DOVE=y +CONFIG_PINCTRL_ELKHARTLAKE=m +CONFIG_PINCTRL_EMMITSBURG=m +CONFIG_PINCTRL_EXYNOS=y +CONFIG_PINCTRL_EXYNOS_ARM=y +CONFIG_PINCTRL_GEMINILAKE=m +CONFIG_PINCTRL_ICELAKE=m +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX50=y +CONFIG_PINCTRL_IMX51=y +CONFIG_PINCTRL_IMX6Q=y +CONFIG_PINCTRL_IMX6SL=y +CONFIG_PINCTRL_IMX6SLL=y +CONFIG_PINCTRL_IMX6SX=y +CONFIG_PINCTRL_IMX6UL=y +CONFIG_PINCTRL_IMX7D=y +CONFIG_PINCTRL_IMX7ULP=y +CONFIG_PINCTRL_IMX8DXL=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MP=y +CONFIG_PINCTRL_IMX8MQ=y +CONFIG_PINCTRL_IMX8QM=y +CONFIG_PINCTRL_IMX8QXP=y +CONFIG_PINCTRL_IMX8ULP=m +CONFIG_PINCTRL_IMX_SCU=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_IPQ4019=m +CONFIG_PINCTRL_IPQ6018=m +CONFIG_PINCTRL_IPQ8064=m +CONFIG_PINCTRL_IPQ8074=m +CONFIG_PINCTRL_IPROC_GPIO=y +CONFIG_PINCTRL_JASPERLAKE=m +CONFIG_PINCTRL_KEEMBAY=m +CONFIG_PINCTRL_LAKEFIELD=m +CONFIG_PINCTRL_LEWISBURG=m +CONFIG_PINCTRL_LOCHNAGAR=m +CONFIG_PINCTRL_LPASS_LPI=m +CONFIG_PINCTRL_LYNXPOINT=m +CONFIG_PINCTRL_MADERA=m +CONFIG_PINCTRL_MAX77620=m +CONFIG_PINCTRL_MCP23S08=m +CONFIG_PINCTRL_MCP23S08_I2C=m +CONFIG_PINCTRL_MCP23S08_SPI=m +CONFIG_PINCTRL_MDM9607=m +CONFIG_PINCTRL_MDM9615=m +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MESON8=y +CONFIG_PINCTRL_MESON8B=y +CONFIG_PINCTRL_MESON8_PMX=y +CONFIG_PINCTRL_MESON_A1=y +CONFIG_PINCTRL_MESON_AXG=y +CONFIG_PINCTRL_MESON_AXG_PMX=y +CONFIG_PINCTRL_MESON_G12A=y +CONFIG_PINCTRL_MESON_GXBB=y +CONFIG_PINCTRL_MESON_GXL=y +CONFIG_PINCTRL_MICROCHIP_SGPIO=y +CONFIG_PINCTRL_MSM=y +CONFIG_PINCTRL_MSM8226=m +CONFIG_PINCTRL_MSM8660=m +CONFIG_PINCTRL_MSM8916=m +CONFIG_PINCTRL_MSM8953=m +CONFIG_PINCTRL_MSM8960=m +CONFIG_PINCTRL_MSM8976=m +CONFIG_PINCTRL_MSM8994=m +CONFIG_PINCTRL_MSM8996=m +CONFIG_PINCTRL_MSM8998=m +CONFIG_PINCTRL_MSM8X74=m +CONFIG_PINCTRL_MT2701=y +CONFIG_PINCTRL_MT2712=y +CONFIG_PINCTRL_MT6397=y +CONFIG_PINCTRL_MT6765=y +CONFIG_PINCTRL_MT6779=m +CONFIG_PINCTRL_MT6797=y +CONFIG_PINCTRL_MT7622=y +CONFIG_PINCTRL_MT7623=y +CONFIG_PINCTRL_MT7629=y +CONFIG_PINCTRL_MT8127=y +CONFIG_PINCTRL_MT8135=y +CONFIG_PINCTRL_MT8167=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MT8183=y +CONFIG_PINCTRL_MT8192=y +CONFIG_PINCTRL_MT8195=y +CONFIG_PINCTRL_MT8365=y +CONFIG_PINCTRL_MT8516=y +CONFIG_PINCTRL_MTK=y +CONFIG_PINCTRL_MTK_MOORE=y +CONFIG_PINCTRL_MTK_PARIS=y +CONFIG_PINCTRL_MTK_V2=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_NPCM7XX=y +CONFIG_PINCTRL_NS2_MUX=y +CONFIG_PINCTRL_OCELOT=y +CONFIG_PINCTRL_OWL=y +CONFIG_PINCTRL_PALMAS=y +CONFIG_PINCTRL_PFC_EMEV2=y +CONFIG_PINCTRL_PFC_R8A7740=y +CONFIG_PINCTRL_PFC_R8A7742=y +CONFIG_PINCTRL_PFC_R8A7743=y +CONFIG_PINCTRL_PFC_R8A7744=y +CONFIG_PINCTRL_PFC_R8A7745=y +CONFIG_PINCTRL_PFC_R8A77470=y +CONFIG_PINCTRL_PFC_R8A774A1=y +CONFIG_PINCTRL_PFC_R8A774B1=y +CONFIG_PINCTRL_PFC_R8A774C0=y +CONFIG_PINCTRL_PFC_R8A774E1=y +CONFIG_PINCTRL_PFC_R8A7778=y +CONFIG_PINCTRL_PFC_R8A7779=y +CONFIG_PINCTRL_PFC_R8A7790=y +CONFIG_PINCTRL_PFC_R8A7791=y +CONFIG_PINCTRL_PFC_R8A7792=y +CONFIG_PINCTRL_PFC_R8A7793=y +CONFIG_PINCTRL_PFC_R8A7794=y +CONFIG_PINCTRL_PFC_R8A77950=y +CONFIG_PINCTRL_PFC_R8A77951=y +CONFIG_PINCTRL_PFC_R8A77960=y +CONFIG_PINCTRL_PFC_R8A77961=y +CONFIG_PINCTRL_PFC_R8A77965=y +CONFIG_PINCTRL_PFC_R8A77970=y +CONFIG_PINCTRL_PFC_R8A77980=y +CONFIG_PINCTRL_PFC_R8A77990=y +CONFIG_PINCTRL_PFC_R8A77995=y +CONFIG_PINCTRL_PFC_R8A779A0=y +CONFIG_PINCTRL_PFC_SH73A0=y +CONFIG_PINCTRL_QCOM_SPMI_PMIC=m +CONFIG_PINCTRL_QCOM_SSBI_PMIC=m +CONFIG_PINCTRL_QCS404=m +CONFIG_PINCTRL_QDF2XXX=m +CONFIG_PINCTRL_RENESAS=y +CONFIG_PINCTRL_RK805=m +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_RZA1=y +CONFIG_PINCTRL_RZA2=y +CONFIG_PINCTRL_RZG2L=y +CONFIG_PINCTRL_RZN1=y +CONFIG_PINCTRL_S500=y +CONFIG_PINCTRL_S700=y +CONFIG_PINCTRL_S900=y +CONFIG_PINCTRL_SAMSUNG=y +CONFIG_PINCTRL_SC7180=m +CONFIG_PINCTRL_SC7280=m +CONFIG_PINCTRL_SC8180X=m +CONFIG_PINCTRL_SDM660=m +CONFIG_PINCTRL_SDM845=m +CONFIG_PINCTRL_SDX55=m +CONFIG_PINCTRL_SH_PFC=y +CONFIG_PINCTRL_SH_PFC_GPIO=y +CONFIG_PINCTRL_SINGLE=y +CONFIG_PINCTRL_SM6115=m +CONFIG_PINCTRL_SM6125=m +CONFIG_PINCTRL_SM8150=m +CONFIG_PINCTRL_SM8250=m +CONFIG_PINCTRL_SM8350=m +CONFIG_PINCTRL_SPRD=y +CONFIG_PINCTRL_SPRD_SC9860=y +CONFIG_PINCTRL_STMFX=m +CONFIG_PINCTRL_SUN4I_A10=y +CONFIG_PINCTRL_SUN50I_A100=y +CONFIG_PINCTRL_SUN50I_A100_R=y +CONFIG_PINCTRL_SUN50I_A64=y +CONFIG_PINCTRL_SUN50I_A64_R=y +CONFIG_PINCTRL_SUN50I_H5=y +CONFIG_PINCTRL_SUN50I_H6=y +CONFIG_PINCTRL_SUN50I_H616=y +CONFIG_PINCTRL_SUN50I_H616_R=y +CONFIG_PINCTRL_SUN50I_H6_R=y +CONFIG_PINCTRL_SUN5I=y +CONFIG_PINCTRL_SUN6I_A31=y +CONFIG_PINCTRL_SUN6I_A31_R=y +CONFIG_PINCTRL_SUN8I_A23=y +CONFIG_PINCTRL_SUN8I_A23_R=y +CONFIG_PINCTRL_SUN8I_A33=y +CONFIG_PINCTRL_SUN8I_A83T=y +CONFIG_PINCTRL_SUN8I_A83T_R=y +CONFIG_PINCTRL_SUN8I_H3=y +CONFIG_PINCTRL_SUN8I_H3_R=y +CONFIG_PINCTRL_SUN8I_V3S=y +CONFIG_PINCTRL_SUN9I_A80=y +CONFIG_PINCTRL_SUN9I_A80_R=y +CONFIG_PINCTRL_SUNRISEPOINT=m +CONFIG_PINCTRL_SUNXI=y +CONFIG_PINCTRL_SX150X=y +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA114=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA194=y +CONFIG_PINCTRL_TEGRA20=y +CONFIG_PINCTRL_TEGRA210=y +CONFIG_PINCTRL_TEGRA30=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_TIGERLAKE=m +CONFIG_PINCTRL_TI_IODELAY=y +CONFIG_PINCTRL_TMPV7700=y +CONFIG_PINCTRL_UNIPHIER=y +CONFIG_PINCTRL_UNIPHIER_LD11=y +CONFIG_PINCTRL_UNIPHIER_LD20=y +CONFIG_PINCTRL_UNIPHIER_LD4=y +CONFIG_PINCTRL_UNIPHIER_LD6B=y +CONFIG_PINCTRL_UNIPHIER_PRO4=y +CONFIG_PINCTRL_UNIPHIER_PRO5=y +CONFIG_PINCTRL_UNIPHIER_PXS2=y +CONFIG_PINCTRL_UNIPHIER_PXS3=y +CONFIG_PINCTRL_UNIPHIER_SLD8=y +CONFIG_PINCTRL_VF610=y +CONFIG_PINCTRL_VISCONTI=y +CONFIG_PINCTRL_ZYNQMP=m +CONFIG_PING=m +CONFIG_PINMUX=y +CONFIG_PJ4B_ERRATA_4742=y +CONFIG_PKCS7_MESSAGE_PARSER=y +CONFIG_PKCS7_TEST_KEY=m +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_PKEY=m +CONFIG_PL310_ERRATA_588369=y +CONFIG_PL310_ERRATA_727915=y +CONFIG_PL310_ERRATA_753970=y +CONFIG_PL310_ERRATA_769419=y +CONFIG_PL320_MBOX=y +CONFIG_PL330_DMA=m +CONFIG_PL353_SMC=m +CONFIG_PLATFORM_MHU=m +CONFIG_PLATFORM_SI4713=m +CONFIG_PLAT_ORION=y +# CONFIG_PLAT_SPEAR is not set +CONFIG_PLAT_VERSATILE=y +CONFIG_PLAYSTATION_FF=y +CONFIG_PLDMFW=y +CONFIG_PLIP=m +CONFIG_PLX_DMA=m +CONFIG_PLX_HERMES=m +CONFIG_PM=y +CONFIG_PM8916_WATCHDOG=m +CONFIG_PMBUS=m +CONFIG_PMC_ATOM=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_PMS7003=m +# CONFIG_PMU_SYSFS is not set +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_AUTOSLEEP is not set +CONFIG_PM_CLK=y +CONFIG_PM_DEBUG=y +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +CONFIG_PM_OPP=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_SLEEP_SMP_NONZERO_CPU=y +CONFIG_PM_STD_PARTITION="" +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_GC=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_PNP=y +CONFIG_PNPACPI=y +# CONFIG_PNP_DEBUG_MESSAGES is not set +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_POSIX_TIMERS=y +# CONFIG_POWER7_CPU is not set +# CONFIG_POWER8_CPU is not set +# CONFIG_POWER9_CPU is not set +CONFIG_POWERNV_CPUFREQ=y +CONFIG_POWERNV_CPUIDLE=y +CONFIG_POWERNV_OP_PANEL=m +CONFIG_POWER_AVS_OMAP=y +CONFIG_POWER_AVS_OMAP_CLASS3=y +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_AS3722=y +CONFIG_POWER_RESET_ATC260X=m +CONFIG_POWER_RESET_AXXIA=y +CONFIG_POWER_RESET_BRCMKONA=y +# CONFIG_POWER_RESET_BRCMSTB is not set +CONFIG_POWER_RESET_GPIO=y +CONFIG_POWER_RESET_GPIO_RESTART=y +CONFIG_POWER_RESET_HISI=y +CONFIG_POWER_RESET_LINKSTATION=m +CONFIG_POWER_RESET_LTC2952=y +CONFIG_POWER_RESET_MSM=y +CONFIG_POWER_RESET_MT6323=y +CONFIG_POWER_RESET_OCELOT_RESET=y +CONFIG_POWER_RESET_QCOM_PON=m +# CONFIG_POWER_RESET_QNAP is not set +CONFIG_POWER_RESET_REGULATOR=y +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_RMOBILE=m +CONFIG_POWER_RESET_SC27XX=m +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_POWER_RESET_TPS65086=y +CONFIG_POWER_RESET_VERSATILE=y +CONFIG_POWER_RESET_VEXPRESS=y +# CONFIG_POWER_RESET_XGENE is not set +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +CONFIG_PPC=y +CONFIG_PPC64=y +CONFIG_PPC64_BOOT_WRAPPER=y +CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_PPC_4K_PAGES is not set +CONFIG_PPC_64K_PAGES=y +CONFIG_PPC_BARRIER_NOSPEC=y +# CONFIG_PPC_BOOK3E_64 is not set +CONFIG_PPC_BOOK3S=y +CONFIG_PPC_BOOK3S_64=y +CONFIG_PPC_BOOK3S_IDLE=y +CONFIG_PPC_COPRO_BASE=y +CONFIG_PPC_DAWR=y +CONFIG_PPC_DENORMALISATION=y +# CONFIG_PPC_DISABLE_WERROR is not set +CONFIG_PPC_DOORBELL=y +CONFIG_PPC_DT_CPU_FTRS=y +# CONFIG_PPC_EARLY_DEBUG is not set +# CONFIG_PPC_EMULATED_STATS is not set +# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set +# CONFIG_PPC_FAST_ENDIAN_SWITCH is not set +CONFIG_PPC_FPU=y +CONFIG_PPC_FPU_REGS=y +CONFIG_PPC_HAVE_KUAP=y +CONFIG_PPC_HAVE_KUEP=y +CONFIG_PPC_HAVE_PMU_SUPPORT=y +CONFIG_PPC_I8259=y +CONFIG_PPC_ICP_HV=y +CONFIG_PPC_ICP_NATIVE=y +CONFIG_PPC_ICS_RTAS=y +CONFIG_PPC_INDIRECT_PIO=y +# CONFIG_PPC_IRQ_SOFT_MASK_DEBUG is not set +CONFIG_PPC_KUAP=y +# CONFIG_PPC_KUAP_DEBUG is not set +CONFIG_PPC_KUEP=y +CONFIG_PPC_MEMTRACE=y +# CONFIG_PPC_MEM_KEYS is not set +CONFIG_PPC_MM_SLICES=y +CONFIG_PPC_MSI_BITMAP=y +CONFIG_PPC_NATIVE=y +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y +CONFIG_PPC_P7_NAP=y +CONFIG_PPC_PAGE_SHIFT=16 +CONFIG_PPC_PERF_CTRS=y +CONFIG_PPC_PKEY=y +CONFIG_PPC_POWERNV=y +# CONFIG_PPC_PROT_SAO_LPAR is not set +CONFIG_PPC_PSERIES=y +# CONFIG_PPC_QUEUED_SPINLOCKS is not set +CONFIG_PPC_RADIX_MMU=y +CONFIG_PPC_RADIX_MMU_DEFAULT=y +# CONFIG_PPC_RFI_SRR_DEBUG is not set +CONFIG_PPC_RTAS=y +CONFIG_PPC_RTAS_DAEMON=y +CONFIG_PPC_RTAS_FILTER=y +CONFIG_PPC_SECURE_BOOT=y +CONFIG_PPC_SECVAR_SYSFS=y +CONFIG_PPC_SMLPAR=y +CONFIG_PPC_SMP_MUXED_IPI=y +CONFIG_PPC_SPLPAR=y +CONFIG_PPC_SUBPAGE_PROT=y +CONFIG_PPC_SVM=y +CONFIG_PPC_TRANSACTIONAL_MEM=y +CONFIG_PPC_UDBG_16550=y +CONFIG_PPC_UV=y +CONFIG_PPC_VAS=y +CONFIG_PPC_WATCHDOG=y +CONFIG_PPC_WERROR=y +CONFIG_PPC_XICS=y +CONFIG_PPC_XIVE=y +CONFIG_PPC_XIVE_NATIVE=y +CONFIG_PPC_XIVE_SPAPR=y +CONFIG_PPDEV=m +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPP_SYNC_TTY=m +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_DEBUG is not set +CONFIG_PPTP=m +CONFIG_PREEMPTION=y +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPT_DYNAMIC=y +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PREEMPT_RCU=y +# CONFIG_PREEMPT_TRACER is not set +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_PREVENT_FIRMWARE_BUILD=y +# CONFIG_PRIME_NUMBERS is not set +CONFIG_PRINTER=m +CONFIG_PRINTK=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_PRINTK_INDEX is not set +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PRINT_STACK_DEPTH=64 +CONFIG_PRISM2_USB=m +CONFIG_PROBE_EVENTS=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_CPU_RESCTRL=y +CONFIG_PROC_EVENTS=y +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_THERMAL_MMIO_RAPL=m +CONFIG_PROC_VMCORE=y +CONFIG_PROC_VMCORE_DEVICE_DUMP=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_PROFILING=y +CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_PRU_REMOTEPROC=m +CONFIG_PSAMPLE=m +CONFIG_PSERIES_CPUIDLE=y +CONFIG_PSERIES_ENERGY=m +CONFIG_PSI=y +# CONFIG_PSTORE_842_COMPRESS is not set +CONFIG_PSTORE_BLK=m +CONFIG_PSTORE_BLK_BLKDEV="" +CONFIG_PSTORE_BLK_CONSOLE_SIZE=64 +CONFIG_PSTORE_BLK_KMSG_SIZE=64 +CONFIG_PSTORE_BLK_MAX_REASON=2 +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_PMSG is not set +CONFIG_PSTORE_ZONE=m +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PTDUMP_CORE=y +CONFIG_PTP_1588_CLOCK_DTE=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +CONFIG_PTP_1588_CLOCK_INES=m +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_OCP=m +CONFIG_PTP_1588_CLOCK_QORIQ=m +CONFIG_PTP_1588_CLOCK_VMW=m +CONFIG_PUNIT_ATOM_DEBUG=m +CONFIG_PVH=y +CONFIG_PVPANIC_MMIO=m +CONFIG_PVPANIC_PCI=m +CONFIG_PWM_ATMEL_HLCDC_PWM=m +CONFIG_PWM_ATMEL_TCB=m +CONFIG_PWM_BCM2835=m +CONFIG_PWM_BCM_IPROC=m +CONFIG_PWM_BERLIN=m +CONFIG_PWM_BRCMSTB=m +CONFIG_PWM_CRC=y +CONFIG_PWM_CROS_EC=m +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_DWC=m +CONFIG_PWM_FSL_FTM=m +CONFIG_PWM_HIBVT=m +CONFIG_PWM_IMX1=m +CONFIG_PWM_IMX27=m +CONFIG_PWM_IMX_TPM=m +CONFIG_PWM_IQS620A=m +CONFIG_PWM_KEEMBAY=m +CONFIG_PWM_LP3943=m +CONFIG_PWM_LPSS=y +CONFIG_PWM_LPSS_PCI=y +CONFIG_PWM_LPSS_PLATFORM=y +CONFIG_PWM_MEDIATEK=m +CONFIG_PWM_MESON=m +CONFIG_PWM_MTK_DISP=m +CONFIG_PWM_NTXEC=m +CONFIG_PWM_OMAP_DMTIMER=m +CONFIG_PWM_PCA9685=m +CONFIG_PWM_RASPBERRYPI_POE=m +CONFIG_PWM_RCAR=m +CONFIG_PWM_RENESAS_TPU=m +CONFIG_PWM_ROCKCHIP=m +CONFIG_PWM_SAMSUNG=m +CONFIG_PWM_SL28CPLD=m +CONFIG_PWM_SPRD=m +CONFIG_PWM_STMPE=y +CONFIG_PWM_SUN4I=m +CONFIG_PWM_SYSFS=y +CONFIG_PWM_TEGRA=m +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_PWM_VISCONTI=m +CONFIG_PWRSEQ_EMMC=m +CONFIG_PWRSEQ_SD8787=m +CONFIG_PWRSEQ_SIMPLE=m +CONFIG_PXA168_ETH=m +CONFIG_QCA7000=m +CONFIG_QCA7000_SPI=m +CONFIG_QCA7000_UART=m +CONFIG_QCOM_A53PLL=m +CONFIG_QCOM_A7PLL=m +CONFIG_QCOM_ADM=m +CONFIG_QCOM_AOSS_QMP=m +CONFIG_QCOM_APCS_IPC=m +CONFIG_QCOM_APR=m +CONFIG_QCOM_BAM_DMA=m +CONFIG_QCOM_CLK_APCC_MSM8996=m +CONFIG_QCOM_CLK_APCS_MSM8916=m +CONFIG_QCOM_CLK_APCS_SDX55=m +CONFIG_QCOM_CLK_RPM=m +CONFIG_QCOM_CLK_RPMH=m +CONFIG_QCOM_CLK_SMD_RPM=m +CONFIG_QCOM_COINCELL=m +CONFIG_QCOM_COMMAND_DB=y +CONFIG_QCOM_CPR=m +CONFIG_QCOM_EBI2=y +CONFIG_QCOM_EMAC=m +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_QCOM_FASTRPC=m +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_GENI_SE=m +CONFIG_QCOM_GPI_DMA=m +CONFIG_QCOM_GSBI=m +CONFIG_QCOM_HFPLL=m +CONFIG_QCOM_HIDMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_IOMMU=y +CONFIG_QCOM_IPA=m +CONFIG_QCOM_IPCC=y +CONFIG_QCOM_IRQ_COMBINER=y +CONFIG_QCOM_KRYO_L2_ACCESSORS=y +CONFIG_QCOM_L2_PMU=y +CONFIG_QCOM_L3_PMU=y +CONFIG_QCOM_LLCC=m +CONFIG_QCOM_LMH=m +CONFIG_QCOM_MDT_LOADER=m +CONFIG_QCOM_OCMEM=m +CONFIG_QCOM_PDC=y +CONFIG_QCOM_PDR_HELPERS=m +CONFIG_QCOM_PIL_INFO=m +CONFIG_QCOM_PM8XXX_XOADC=m +CONFIG_QCOM_Q6V5_ADSP=m +CONFIG_QCOM_Q6V5_COMMON=m +CONFIG_QCOM_Q6V5_MSS=m +CONFIG_QCOM_Q6V5_PAS=m +CONFIG_QCOM_Q6V5_WCSS=m +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_QFPROM=m +CONFIG_QCOM_QMI_HELPERS=m +CONFIG_QCOM_RMTFS_MEM=m +CONFIG_QCOM_RPMCC=y +CONFIG_QCOM_RPMH=y +CONFIG_QCOM_RPMHPD=y +CONFIG_QCOM_RPMPD=m +CONFIG_QCOM_RPROC_COMMON=m +CONFIG_QCOM_SCM=y +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_QCOM_SMD_RPM=m +CONFIG_QCOM_SMEM=m +CONFIG_QCOM_SMEM_STATE=y +CONFIG_QCOM_SMP2P=m +CONFIG_QCOM_SMSM=m +CONFIG_QCOM_SOCINFO=m +CONFIG_QCOM_SPMI_ADC5=m +CONFIG_QCOM_SPMI_ADC_TM5=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_TEMP_ALARM=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_SYSMON=m +CONFIG_QCOM_TSENS=m +CONFIG_QCOM_VADC_COMMON=m +CONFIG_QCOM_WCNSS_CTRL=m +# CONFIG_QCOM_WCNSS_PIL is not set +CONFIG_QCOM_WDT=m +CONFIG_QCS_GCC_404=m +CONFIG_QCS_Q6SSTOP_404=m +CONFIG_QCS_TURING_404=m +CONFIG_QDIO=m +CONFIG_QED=m +CONFIG_QEDE=m +CONFIG_QEDF=m +CONFIG_QEDI=m +CONFIG_QED_FCOE=y +CONFIG_QED_ISCSI=y +CONFIG_QED_LL2=y +CONFIG_QED_OOO=y +CONFIG_QED_RDMA=y +CONFIG_QED_SRIOV=y +CONFIG_QETH=m +CONFIG_QETH_L2=m +CONFIG_QETH_L3=m +CONFIG_QETH_OSX=y +CONFIG_QE_GPIO=y +CONFIG_QE_TDM=y +CONFIG_QE_USB=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLGE=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_QORIQ_CPUFREQ=m +CONFIG_QORIQ_THERMAL=m +CONFIG_QRTR_MHI=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_QSEMI_PHY=m +CONFIG_QTNFMAC=m +CONFIG_QTNFMAC_PCIE=m +CONFIG_QUEUED_RWLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_QUICC_ENGINE=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_QUOTA_TREE=m +CONFIG_R6040=m +CONFIG_R8169=m +CONFIG_R8188EU=m +CONFIG_R8712U=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_RADIO_SI470X=m +CONFIG_RADIO_SI4713=m +CONFIG_RADIO_SI476X=m +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_RAID_ATTRS=m +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_RANDOM_TRUST_BOOTLOADER=y +CONFIG_RANDOM_TRUST_CPU=y +CONFIG_RAPIDIO_CHMAN=m +CONFIG_RAPIDIO_CPS_GEN2=m +CONFIG_RAPIDIO_CPS_XX=m +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +CONFIG_RAPIDIO_DMA_ENGINE=y +# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set +CONFIG_RAPIDIO_ENUM_BASIC=m +CONFIG_RAPIDIO_MPORT_CDEV=m +CONFIG_RAPIDIO_RXS_GEN3=m +CONFIG_RAPIDIO_TSI568=m +CONFIG_RAPIDIO_TSI57X=m +CONFIG_RAPIDIO_TSI721=m +CONFIG_RAS=y +CONFIG_RASPBERRYPI_FIRMWARE=y +CONFIG_RASPBERRYPI_POWER=y +CONFIG_RAS_CEC=y +# CONFIG_RAS_CEC_DEBUG is not set +CONFIG_RATIONAL=y +CONFIG_RAVB=m +CONFIG_RAVE_SP_EEPROM=m +CONFIG_RAVE_SP_WATCHDOG=m +# CONFIG_RBTREE_TEST is not set +CONFIG_RCAR_DMAC=m +CONFIG_RCAR_GEN3_THERMAL=m +CONFIG_RCAR_GYRO_ADC=m +CONFIG_RCAR_THERMAL=m +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_RCU_EXPERT is not set +CONFIG_RCU_NEED_SEGCBLIST=y +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_SCALE_TEST is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +CONFIG_RC_ATI_REMOTE=m +CONFIG_RC_DECODERS=y +CONFIG_RC_DEVICES=y +CONFIG_RC_LOOPBACK=m +CONFIG_RC_MAP=m +CONFIG_RC_XBOX_DVD=m +CONFIG_RDA_INTC=y +CONFIG_RDA_TIMER=y +CONFIG_RDMA_RXE=m +CONFIG_RDMA_SIW=m +CONFIG_RDS=m +# CONFIG_RDS_DEBUG is not set +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +CONFIG_RD_BZIP2=y +CONFIG_RD_GZIP=y +CONFIG_RD_LZ4=y +CONFIG_RD_LZMA=y +CONFIG_RD_LZO=y +CONFIG_RD_XZ=y +CONFIG_RD_ZSTD=y +# CONFIG_READABLE_ASM is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_REALTEK_AUTOPM=y +CONFIG_REALTEK_PHY=m +CONFIG_REBOOT_MODE=m +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_ENC8=y +# CONFIG_REED_SOLOMON_TEST is not set +CONFIG_REGMAP=y +CONFIG_REGMAP_AC97=m +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_I3C=m +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_SCCB=m +CONFIG_REGMAP_SLIMBUS=m +CONFIG_REGMAP_SOUNDWIRE=m +CONFIG_REGMAP_SOUNDWIRE_MBQ=m +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPI_AVMM=m +CONFIG_REGMAP_SPMI=m +CONFIG_REGMAP_W1=m +CONFIG_REGULATOR_88PG86X=m +CONFIG_REGULATOR_88PM800=m +CONFIG_REGULATOR_88PM8607=m +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_ACT8865=m +CONFIG_REGULATOR_ACT8945A=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_ANATOP=m +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_ARM_SCMI=m +CONFIG_REGULATOR_AS3711=m +CONFIG_REGULATOR_AS3722=m +CONFIG_REGULATOR_ATC260X=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BCM590XX=m +CONFIG_REGULATOR_BD71815=m +CONFIG_REGULATOR_BD71828=m +CONFIG_REGULATOR_BD718XX=m +CONFIG_REGULATOR_BD9571MWV=m +CONFIG_REGULATOR_BD957XMUF=m +CONFIG_REGULATOR_CPCAP=m +CONFIG_REGULATOR_CROS_EC=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9055=m +CONFIG_REGULATOR_DA9062=m +CONFIG_REGULATOR_DA9063=m +CONFIG_REGULATOR_DA9121=m +CONFIG_REGULATOR_DA9210=m +CONFIG_REGULATOR_DA9211=m +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_FAN53880=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_HI6421=m +CONFIG_REGULATOR_HI6421V530=m +CONFIG_REGULATOR_HI6421V600=m +CONFIG_REGULATOR_HI655X=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_ISL9305=m +CONFIG_REGULATOR_LM363X=m +CONFIG_REGULATOR_LOCHNAGAR=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=m +CONFIG_REGULATOR_LP873X=m +CONFIG_REGULATOR_LP8755=m +CONFIG_REGULATOR_LP87565=m +CONFIG_REGULATOR_LP8788=m +CONFIG_REGULATOR_LTC3589=m +CONFIG_REGULATOR_LTC3676=m +CONFIG_REGULATOR_MAX14577=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX77620=m +CONFIG_REGULATOR_MAX77650=m +CONFIG_REGULATOR_MAX77686=m +CONFIG_REGULATOR_MAX77693=m +CONFIG_REGULATOR_MAX77802=m +CONFIG_REGULATOR_MAX77826=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8893=m +CONFIG_REGULATOR_MAX8907=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8973=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MCP16502=m +CONFIG_REGULATOR_MP5416=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MP886X=m +CONFIG_REGULATOR_MPQ7920=m +CONFIG_REGULATOR_MT6311=m +CONFIG_REGULATOR_MT6315=m +CONFIG_REGULATOR_MT6323=m +CONFIG_REGULATOR_MT6358=m +CONFIG_REGULATOR_MT6359=m +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_MT6380=m +CONFIG_REGULATOR_MT6397=m +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_PBIAS=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PCAP=m +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_PF8X00=m +CONFIG_REGULATOR_PFUZE100=m +CONFIG_REGULATOR_PV88060=m +CONFIG_REGULATOR_PV88080=m +CONFIG_REGULATOR_PV88090=m +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_LABIBB=m +CONFIG_REGULATOR_QCOM_RPM=m +CONFIG_REGULATOR_QCOM_RPMH=m +CONFIG_REGULATOR_QCOM_SMD_RPM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_RK808=m +CONFIG_REGULATOR_RN5T618=m +CONFIG_REGULATOR_ROHM=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT5033=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_S2MPA01=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_SC2731=m +CONFIG_REGULATOR_SKY81452=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_STPMIC1=m +CONFIG_REGULATOR_SY8106A=m +CONFIG_REGULATOR_SY8824X=m +CONFIG_REGULATOR_SY8827N=m +CONFIG_REGULATOR_TI_ABB=y +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65086=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65132=m +CONFIG_REGULATOR_TPS65218=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TPS80031=m +CONFIG_REGULATOR_UNIPHIER=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_VCTRL=m +CONFIG_REGULATOR_VEXPRESS=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_VQMMC_IPQ4019=m +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_REISERFS_FS_XATTR=y +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_RELAY=y +CONFIG_RELOCATABLE=y +# CONFIG_RELOCATABLE_TEST is not set +CONFIG_REMOTEPROC_CDEV=y +CONFIG_RENESAS_DMA=y +CONFIG_RENESAS_INTC_IRQPIN=y +CONFIG_RENESAS_IRQC=y +CONFIG_RENESAS_OSTM=y +CONFIG_RENESAS_PHY=m +CONFIG_RENESAS_RPCIF=m +CONFIG_RENESAS_RZA1_IRQC=y +CONFIG_RENESAS_RZAWDT=m +CONFIG_RENESAS_USB_DMAC=m +CONFIG_RENESAS_WDT=m +CONFIG_RESET_A10SR=m +CONFIG_RESET_ATTACK_MITIGATION=y +CONFIG_RESET_BERLIN=y +CONFIG_RESET_BRCMSTB=m +CONFIG_RESET_BRCMSTB_RESCAL=y +CONFIG_RESET_HISI=y +CONFIG_RESET_IMX7=y +CONFIG_RESET_MCHP_SPARX5=y +CONFIG_RESET_MESON=y +CONFIG_RESET_MESON_AUDIO_ARB=m +CONFIG_RESET_NPCM=y +CONFIG_RESET_QCOM_AOSS=y +CONFIG_RESET_QCOM_PDC=m +CONFIG_RESET_RASPBERRYPI=m +CONFIG_RESET_RZG2L_USBPHY_CTRL=m +CONFIG_RESET_SCMI=m +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SOCFPGA=y +CONFIG_RESET_SUNXI=y +CONFIG_RESET_TEGRA_BPMP=y +CONFIG_RESET_TI_SCI=m +CONFIG_RESET_TI_SYSCON=m +CONFIG_RESET_UNIPHIER=m +CONFIG_RESET_UNIPHIER_GLUE=m +CONFIG_RETPOLINE=y +CONFIG_RETU_WATCHDOG=m +CONFIG_RFD77402=m +CONFIG_RFD_FTL=m +CONFIG_RFKILL_GPIO=m +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFS_ACCEL=y +CONFIG_RING_BUFFER=y +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +CONFIG_RIONET=m +CONFIG_RIONET_RX_SIZE=128 +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +CONFIG_RMI4_F34=y +CONFIG_RMI4_F3A=y +CONFIG_RMI4_F54=y +CONFIG_RMI4_F55=y +CONFIG_RMI4_I2C=m +CONFIG_RMI4_SMB=m +CONFIG_RMI4_SPI=m +CONFIG_RMNET=m +CONFIG_RN5T618_ADC=m +CONFIG_RN5T618_POWER=m +CONFIG_RN5T618_WATCHDOG=m +CONFIG_ROCKCHIP_ANALOGIX_DP=y +CONFIG_ROCKCHIP_CDN_DP=y +CONFIG_ROCKCHIP_DW_HDMI=y +CONFIG_ROCKCHIP_DW_MIPI_DSI=y +CONFIG_ROCKCHIP_EFUSE=m +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_INNO_HDMI=y +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_ROCKCHIP_LVDS=y +CONFIG_ROCKCHIP_MBOX=y +CONFIG_ROCKCHIP_OTP=m +CONFIG_ROCKCHIP_PHY=m +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_ROCKCHIP_RGB=y +CONFIG_ROCKCHIP_RK3066_HDMI=y +CONFIG_ROCKCHIP_SARADC=m +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ROCKCHIP_TIMER=y +CONFIG_ROCKER=m +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROSE=m +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPMSG=m +CONFIG_RPMSG_CHAR=m +CONFIG_RPMSG_MTK_SCP=m +CONFIG_RPMSG_NS=m +CONFIG_RPMSG_QCOM_GLINK=m +CONFIG_RPMSG_QCOM_GLINK_RPM=m +CONFIG_RPMSG_QCOM_GLINK_SMEM=m +CONFIG_RPMSG_QCOM_SMD=m +CONFIG_RPMSG_WWAN_CTRL=m +CONFIG_RPR0521=m +CONFIG_RPS=y +CONFIG_RSEQ=y +CONFIG_RSI_91X=m +CONFIG_RSI_COEX=y +# CONFIG_RSI_DEBUGFS is not set +CONFIG_RSI_SDIO=m +CONFIG_RSI_USB=m +CONFIG_RST_RCAR=y +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT2500USB=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00=m +# CONFIG_RT2X00_DEBUG is not set +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_CRYPTO=y +# CONFIG_RT2X00_LIB_DEBUGFS is not set +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_LEDS=y +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT61PCI=m +CONFIG_RT73USB=m +CONFIG_RTAS_ERROR_LOGGING=y +CONFIG_RTAS_FLASH=m +CONFIG_RTAS_PROC=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABEOZ9=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_ARMADA38X=m +CONFIG_RTC_DRV_AS3722=m +CONFIG_RTC_DRV_ASPEED=m +CONFIG_RTC_DRV_BD70528=m +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_BRCMSTB=m +CONFIG_RTC_DRV_CADENCE=m +CONFIG_RTC_DRV_CPCAP=m +CONFIG_RTC_DRV_CROS_EC=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_DA9055=m +CONFIG_RTC_DRV_DA9063=m +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1302=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1307_CENTURY=y +CONFIG_RTC_DRV_DS1343=m +CONFIG_RTC_DRV_DS1347=m +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1374_WDT=y +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS1685=y +CONFIG_RTC_DRV_DS1685_FAMILY=m +# CONFIG_RTC_DRV_DS1689 is not set +# CONFIG_RTC_DRV_DS17285 is not set +CONFIG_RTC_DRV_DS1742=m +# CONFIG_RTC_DRV_DS17485 is not set +# CONFIG_RTC_DRV_DS17885 is not set +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_EFI=y +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_FSL_FTM_ALARM=m +CONFIG_RTC_DRV_FTRTC010=m +CONFIG_RTC_DRV_GENERIC=y +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_RTC_DRV_HYM8563=m +CONFIG_RTC_DRV_IMXDI=m +CONFIG_RTC_DRV_IMX_SC=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_ISL12026=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_LP8788=m +CONFIG_RTC_DRV_M41T80=m +CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_MAX6916=m +CONFIG_RTC_DRV_MAX77686=m +CONFIG_RTC_DRV_MAX8907=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8997=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_MCP795=m +CONFIG_RTC_DRV_MESON=m +CONFIG_RTC_DRV_MESON_VRTC=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_MT2712=m +CONFIG_RTC_DRV_MT6397=m +CONFIG_RTC_DRV_MT7622=m +CONFIG_RTC_DRV_MV=y +CONFIG_RTC_DRV_MXC=m +CONFIG_RTC_DRV_MXC_V2=m +CONFIG_RTC_DRV_NTXEC=m +CONFIG_RTC_DRV_OMAP=y +CONFIG_RTC_DRV_OPAL=y +CONFIG_RTC_DRV_PALMAS=m +CONFIG_RTC_DRV_PCAP=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_PCF2127=m +CONFIG_RTC_DRV_PCF50633=m +CONFIG_RTC_DRV_PCF85063=m +CONFIG_RTC_DRV_PCF85363=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_PL030=m +CONFIG_RTC_DRV_PM8XXX=m +CONFIG_RTC_DRV_R7301=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_RC5T619=m +CONFIG_RTC_DRV_RK808=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_RTD119X=y +CONFIG_RTC_DRV_RV3028=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y +CONFIG_RTC_DRV_RV3032=m +CONFIG_RTC_DRV_RV8803=m +CONFIG_RTC_DRV_RX4581=m +CONFIG_RTC_DRV_RX6110=m +CONFIG_RTC_DRV_RX8010=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_S3C=y +CONFIG_RTC_DRV_S5M=m +CONFIG_RTC_DRV_SC27XX=m +CONFIG_RTC_DRV_SD3078=m +CONFIG_RTC_DRV_SH=m +CONFIG_RTC_DRV_SNVS=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_SUN6I=y +CONFIG_RTC_DRV_TEGRA=m +# CONFIG_RTC_DRV_TEST is not set +CONFIG_RTC_DRV_TPS6586X=m +CONFIG_RTC_DRV_TPS65910=m +CONFIG_RTC_DRV_TPS80031=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_WILCO_EC=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_XGENE=y +CONFIG_RTC_DRV_ZYNQMP=m +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_I2C_AND_SPI=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_NVMEM=y +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +CONFIG_RTD119X_WATCHDOG=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL8188EE=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192CU=m +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8192DE=m +CONFIG_RTL8192E=m +CONFIG_RTL8192EE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192U=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8723BS=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTL8821AE=m +CONFIG_RTL8XXXU=m +CONFIG_RTL8XXXU_UNTESTED=y +CONFIG_RTLBTCOEXIST=m +CONFIG_RTLLIB=m +CONFIG_RTLLIB_CRYPTO_CCMP=m +CONFIG_RTLLIB_CRYPTO_TKIP=m +CONFIG_RTLLIB_CRYPTO_WEP=m +CONFIG_RTLWIFI=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +CONFIG_RTL_CARDS=m +CONFIG_RTS5208=m +CONFIG_RTW88=m +CONFIG_RTW88_8723D=m +CONFIG_RTW88_8723DE=m +CONFIG_RTW88_8821C=m +CONFIG_RTW88_8821CE=m +CONFIG_RTW88_8822B=m +CONFIG_RTW88_8822BE=m +CONFIG_RTW88_8822C=m +CONFIG_RTW88_8822CE=m +CONFIG_RTW88_CORE=m +CONFIG_RTW88_DEBUG=y +CONFIG_RTW88_DEBUGFS=y +CONFIG_RTW88_PCI=m +CONFIG_RTW89=m +CONFIG_RTW89_8852AE=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_DEBUG=y +CONFIG_RTW89_DEBUGFS=y +CONFIG_RTW89_DEBUGMSG=y +CONFIG_RTW89_PCI=m +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_RT_MUTEXES=y +CONFIG_RUNTIME_TESTING_MENU=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_RXKAD=y +CONFIG_RZG2L_ADC=m +CONFIG_RZ_DMAC=m +CONFIG_S390=y +CONFIG_S390_AP_IOMMU=y +CONFIG_S390_CCW_IOMMU=y +CONFIG_S390_GUEST=y +CONFIG_S390_HYPFS_FS=y +CONFIG_S390_IOMMU=y +CONFIG_S390_PRNG=m +CONFIG_S390_TAPE=m +CONFIG_S390_TAPE_34XX=m +CONFIG_S390_TAPE_3590=m +# CONFIG_S390_UNWIND_SELFTEST is not set +CONFIG_S390_VMUR=m +CONFIG_S3C2410_WATCHDOG=m +CONFIG_S5P_DEV_MFC=y +CONFIG_SAMPLES=y +# CONFIG_SAMPLE_AUXDISPLAY is not set +# CONFIG_SAMPLE_CONFIGFS is not set +CONFIG_SAMPLE_FTRACE_DIRECT=m +# CONFIG_SAMPLE_HW_BREAKPOINT is not set +# CONFIG_SAMPLE_KDB is not set +# CONFIG_SAMPLE_KFIFO is not set +# CONFIG_SAMPLE_KOBJECT is not set +# CONFIG_SAMPLE_KPROBES is not set +# CONFIG_SAMPLE_LIVEPATCH is not set +# CONFIG_SAMPLE_QMI_CLIENT is not set +# CONFIG_SAMPLE_RPMSG_CLIENT is not set +CONFIG_SAMPLE_TRACE_ARRAY=m +# CONFIG_SAMPLE_TRACE_EVENTS is not set +CONFIG_SAMPLE_TRACE_PRINTK=m +# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set +# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set +# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set +# CONFIG_SAMPLE_VFIO_MDEV_MTTY is not set +# CONFIG_SAMPLE_WATCHDOG is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_MC=y +CONFIG_SAMSUNG_Q10=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_AHCI=m +CONFIG_SATA_AHCI_SEATTLE=m +CONFIG_SATA_DWC=m +# CONFIG_SATA_DWC_DEBUG is not set +CONFIG_SATA_DWC_OLD_DMA=y +CONFIG_SATA_HIGHBANK=y +CONFIG_SATA_HOST=y +CONFIG_SATA_INIC162X=m +CONFIG_SATA_MOBILE_LPM_POLICY=3 +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PMP=y +CONFIG_SATA_PROMISE=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_RCAR=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIL24=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_SX4=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m +CONFIG_SATA_ZPODD=y +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_SBITMAP=y +CONFIG_SBP_TARGET=m +CONFIG_SC1200_WDT=m +CONFIG_SC27XX_ADC=m +CONFIG_SC27XX_EFUSE=m +CONFIG_SC92031=m +CONFIG_SCA3000=m +CONFIG_SCA3300=m +CONFIG_SCANLOG=m +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD30_SERIAL=m +# CONFIG_SCF_TORTURE_TEST is not set +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_BOOK=y +CONFIG_SCHED_CORE=y +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_DRAWER=y +CONFIG_SCHED_HRTICK=y +CONFIG_SCHED_INFO=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_SCHED_TOPOLOGY=y +CONFIG_SCHED_TRACER=y +CONFIG_SCLP_CONSOLE=y +CONFIG_SCLP_OFB=y +CONFIG_SCLP_TTY=y +CONFIG_SCLP_VT220_CONSOLE=y +CONFIG_SCLP_VT220_TTY=y +CONFIG_SCM_BLOCK=m +CONFIG_SCM_BUS=y +CONFIG_SCOM_DEBUGFS=y +CONFIG_SCR24X=m +CONFIG_SCSI=y +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_COMMON=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_ALUA=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FLASHPOINT=y +CONFIG_SCSI_HISI_SAS=m +# CONFIG_SCSI_HISI_SAS_DEBUGFS_DEFAULT_ENABLE is not set +CONFIG_SCSI_HISI_SAS_PCI=m +CONFIG_SCSI_IBMVFC=m +CONFIG_SCSI_IBMVFC_TRACE=y +CONFIG_SCSI_IBMVSCSI=m +CONFIG_SCSI_IBMVSCSIS=m +CONFIG_SCSI_IMM=m +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_ISCSI_ATTRS=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_LOWLEVEL=y +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_MOD=y +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MYRS=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_NSP32=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_PROC_FS=y +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SIM710=m +CONFIG_SCSI_SMARTPQI=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_UFSHCD_PCI=m +CONFIG_SCSI_UFSHCD_PLATFORM=m +CONFIG_SCSI_UFS_BSG=y +CONFIG_SCSI_UFS_CDNS_PLATFORM=m +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_DWC_TC_PCI=m +CONFIG_SCSI_UFS_DWC_TC_PLATFORM=m +CONFIG_SCSI_UFS_EXYNOS=m +CONFIG_SCSI_UFS_HISI=m +CONFIG_SCSI_UFS_HPB=y +CONFIG_SCSI_UFS_MEDIATEK=m +CONFIG_SCSI_UFS_TI_J721E=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SC_CAMCC_7180=m +CONFIG_SC_DISPCC_7180=m +CONFIG_SC_DISPCC_7280=m +CONFIG_SC_GCC_7180=m +CONFIG_SC_GCC_7280=m +CONFIG_SC_GCC_8180X=m +CONFIG_SC_GPUCC_7180=m +CONFIG_SC_GPUCC_7280=m +CONFIG_SC_LPASS_CORECC_7180=m +CONFIG_SC_MSS_7180=m +CONFIG_SC_VIDEOCC_7180=m +CONFIG_SC_VIDEOCC_7280=m +CONFIG_SDIO_UART=m +# CONFIG_SDMA_VERBOSITY is not set +CONFIG_SDM_CAMCC_845=m +CONFIG_SDM_DISPCC_845=m +CONFIG_SDM_GCC_660=m +CONFIG_SDM_GCC_845=m +CONFIG_SDM_GPUCC_660=m +CONFIG_SDM_GPUCC_845=m +CONFIG_SDM_LPASSCC_845=m +CONFIG_SDM_MMCC_660=m +CONFIG_SDM_VIDEOCC_845=m +CONFIG_SDR_MAX2175=m +CONFIG_SDR_PLATFORM_DRIVERS=y +CONFIG_SDX_GCC_55=m +CONFIG_SD_ADC_MODULATOR=m +CONFIG_SECCOMP=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_SECCOMP_FILTER=y +CONFIG_SECONDARY_TRUSTED_KEYRING=y +CONFIG_SECRETMEM=y +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_APPARMOR=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY_INFINIBAND=y +CONFIG_SECURITY_LANDLOCK=y +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_LOCKDOWN_LSM=y +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY=y +CONFIG_SECURITY_NETWORK=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y +CONFIG_SECURITY_SAFESETID=y +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_DEVELOP=y +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SMACK=y +CONFIG_SECURITY_SMACK_APPEND_SIGNALS=y +# CONFIG_SECURITY_SMACK_BRINGUP is not set +CONFIG_SECURITY_SMACK_NETFILTER=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_YAMA=y +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SENSIRION_SGP30=m +CONFIG_SENSIRION_SGP40=m +CONFIG_SENSORS_AAEON=m +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADC128D818=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM1266=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_ADT7310=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +CONFIG_SENSORS_ARM_SCMI=m +CONFIG_SENSORS_ARM_SCPI=m +CONFIG_SENSORS_AS370=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_ASPEED=m +CONFIG_SENSORS_ATK0110=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_BEL_PFE=m +CONFIG_SENSORS_BPA_RS600=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_DA9055=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_DPS920AB=m +CONFIG_SENSORS_DRIVETEMP=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_FSP_3Y=m +CONFIG_SENSORS_FTSTEUTATES=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_GPIO_FAN=m +CONFIG_SENSORS_GSC=m +CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_HMC5843_I2C=m +CONFIG_SENSORS_HMC5843_SPI=m +CONFIG_SENSORS_I5500=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IBMPOWERNV=m +CONFIG_SENSORS_IBM_CFFPS=m +CONFIG_SENSORS_IIO_HWMON=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_INSPUR_IPSPS=m +CONFIG_SENSORS_INTEL_M10_BMC_HWMON=m +CONFIG_SENSORS_IR35221=m +CONFIG_SENSORS_IR36021=m +CONFIG_SENSORS_IR38064=m +CONFIG_SENSORS_IRPS5401=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_ISL29028=m +CONFIG_SENSORS_ISL68137=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SENSORS_LIS3_SPI=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LM3533=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95234=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_LOCHNAGAR=m +CONFIG_SENSORS_LTC2945=m +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_LTC2978_REGULATOR=y +CONFIG_SENSORS_LTC2990=m +CONFIG_SENSORS_LTC2992=m +CONFIG_SENSORS_LTC3815=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4222=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4260=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX15301=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX16601=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX20730=m +CONFIG_SENSORS_MAX20751=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX31730=m +CONFIG_SENSORS_MAX31785=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX6621=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MAX6697=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_MENF21BMC_HWMON=m +CONFIG_SENSORS_MLXREG_FAN=m +CONFIG_SENSORS_MP2888=m +CONFIG_SENSORS_MP2975=m +CONFIG_SENSORS_MR75203=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_NPCM7XX=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NZXT_KRAKEN2=m +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_OCC_P9_SBE is not set +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_PIM4328=m +CONFIG_SENSORS_PM6764TR=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_PXE1610=m +CONFIG_SENSORS_RASPBERRYPI_HWMON=m +CONFIG_SENSORS_RM3100=m +CONFIG_SENSORS_RM3100_I2C=m +CONFIG_SENSORS_RM3100_SPI=m +CONFIG_SENSORS_SBRMI=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHT4x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SL28CPLD=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SPARX5=m +CONFIG_SENSORS_STPDDC60=m +CONFIG_SENSORS_STTS751=m +CONFIG_SENSORS_TC654=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP108=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP513=m +CONFIG_SENSORS_TPS23861=m +CONFIG_SENSORS_TPS40422=m +CONFIG_SENSORS_TPS53679=m +CONFIG_SENSORS_TSL2563=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_VEXPRESS=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83773G=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_WM831X=m +CONFIG_SENSORS_WM8350=m +CONFIG_SENSORS_XDPE122=m +CONFIG_SENSORS_XGENE=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +CONFIG_SERIAL_8250_ASPEED_VUART=m +# CONFIG_SERIAL_8250_BCM2835AUX is not set +CONFIG_SERIAL_8250_BCM7271=m +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_CS=m +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_EM is not set +CONFIG_SERIAL_8250_EXAR=m +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_LPSS=m +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_MEN_MCB=m +CONFIG_SERIAL_8250_MID=m +CONFIG_SERIAL_8250_MT6577=y +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_OMAP=y +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_RT288X=y +CONFIG_SERIAL_8250_RUNTIME_UARTS=32 +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_TEGRA=y +CONFIG_SERIAL_8250_UNIPHIER=m +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_AMBA_PL010=m +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_SERIAL_BCM63XX=m +CONFIG_SERIAL_CONEXANT_DIGICOLOR=m +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST=y +CONFIG_SERIAL_ICOM=m +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y +# CONFIG_SERIAL_IMX_EARLYCON is not set +CONFIG_SERIAL_IPOCTAL=m +CONFIG_SERIAL_KGDB_NMI=y +CONFIG_SERIAL_LANTIQ=m +CONFIG_SERIAL_LITEUART=m +CONFIG_SERIAL_LITEUART_MAX_PORTS=1 +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX310X=y +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_MEN_Z135=m +CONFIG_SERIAL_MESON=y +CONFIG_SERIAL_MESON_CONSOLE=y +CONFIG_SERIAL_MILBEAUT_USIO=m +CONFIG_SERIAL_MILBEAUT_USIO_PORTS=4 +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_MVEBU_CONSOLE=y +CONFIG_SERIAL_MVEBU_UART=y +CONFIG_SERIAL_OF_PLATFORM=y +CONFIG_SERIAL_OWL=y +CONFIG_SERIAL_OWL_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=m +CONFIG_SERIAL_QCOM_GENI_CONSOLE=y +CONFIG_SERIAL_QE=m +CONFIG_SERIAL_RDA=y +CONFIG_SERIAL_RDA_CONSOLE=y +CONFIG_SERIAL_RP2_NR_UARTS=32 +CONFIG_SERIAL_SAMSUNG=m +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_SAMSUNG_UARTS_4=y +CONFIG_SERIAL_SC16IS7XX_CORE=m +CONFIG_SERIAL_SC16IS7XX_I2C=y +CONFIG_SERIAL_SC16IS7XX_SPI=y +CONFIG_SERIAL_SCCNXP_CONSOLE=y +CONFIG_SERIAL_SH_SCI=m +CONFIG_SERIAL_SH_SCI_DMA=y +CONFIG_SERIAL_SH_SCI_NR_UARTS=2 +CONFIG_SERIAL_SIFIVE=m +CONFIG_SERIAL_SPRD=m +CONFIG_SERIAL_ST_ASC=m +CONFIG_SERIAL_TEGRA=m +CONFIG_SERIAL_TEGRA_TCU=y +CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y +CONFIG_SERIAL_UARTLITE=m +CONFIG_SERIAL_UARTLITE_NR_UARTS=1 +CONFIG_SERIAL_XILINX_PS_UART=m +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_AMBAKMI=m +CONFIG_SERIO_APBPS2=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_GPIO_PS2=m +CONFIG_SERIO_I8042=y +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_NVEC_PS2=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_RAW=m +CONFIG_SERIO_SERPORT=m +# CONFIG_SERIO_SUN4I_PS2 is not set +CONFIG_SERIO_XILINX_XPS_PS2=m +CONFIG_SETEND_EMULATION=y +CONFIG_SFC_FALCON_MTD=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_MTD=y +CONFIG_SFC_SRIOV=y +CONFIG_SFP=m +CONFIG_SF_PDMA=m +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SGI_GRU=m +# CONFIG_SGI_GRU_DEBUG is not set +CONFIG_SGI_XP=m +CONFIG_SGL_ALLOC=y +CONFIG_SG_POOL=y +CONFIG_SG_SPLIT=y +# CONFIG_SHIFT_FS is not set +CONFIG_SHMEM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SH_ETH=m +CONFIG_SH_TIMER_CMT=y +CONFIG_SH_TIMER_MTU2=y +CONFIG_SH_TIMER_TMU=y +CONFIG_SI1133=m +CONFIG_SI1145=m +CONFIG_SI7005=m +CONFIG_SI7020=m +CONFIG_SIGNALFD=y +CONFIG_SIGNATURE=y +CONFIG_SIGNED_PE_FILE_VERIFICATION=y +CONFIG_SIOX=m +CONFIG_SIOX_BUS_GPIO=m +CONFIG_SIS190=m +CONFIG_SIS900=m +CONFIG_SKB_EXTENSIONS=y +CONFIG_SKFP=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_SL28CPLD_WATCHDOG=m +# CONFIG_SLAB is not set +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLHC=y +CONFIG_SLICOSS=m +CONFIG_SLIC_DS26522=m +CONFIG_SLIMBUS=m +CONFIG_SLIM_QCOM_CTRL=m +CONFIG_SLIM_QCOM_NGD_CTRL=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_SLIP_SMART=y +# CONFIG_SLOB is not set +CONFIG_SLUB=y +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SLUB_DEBUG=y +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_SMBFS_COMMON=m +CONFIG_SMB_SERVER=m +CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=y +CONFIG_SMB_SERVER_KERBEROS5=y +CONFIG_SMB_SERVER_SMBDIRECT=y +CONFIG_SMC=m +CONFIG_SMC911X=m +CONFIG_SMC_DIAG=m +CONFIG_SMP=y +CONFIG_SMP_ON_UP=y +CONFIG_SMSC37B787_WDT=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +CONFIG_SMSC_PHY=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSGIUCV=y +CONFIG_SMSGIUCV_EVENT=m +CONFIG_SMS_SDIO_DRV=m +CONFIG_SMS_SIANO_DEBUGFS=y +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +CONFIG_SMS_USB_DRV=m +CONFIG_SM_CAMCC_8250=m +CONFIG_SM_DISPCC_8250=m +CONFIG_SM_FTL=m +CONFIG_SM_GCC_6115=m +CONFIG_SM_GCC_6125=m +CONFIG_SM_GCC_6350=m +CONFIG_SM_GCC_8150=m +CONFIG_SM_GCC_8250=m +CONFIG_SM_GCC_8350=m +CONFIG_SM_GPUCC_8150=m +CONFIG_SM_GPUCC_8250=m +CONFIG_SM_VIDEOCC_8150=m +CONFIG_SM_VIDEOCC_8250=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_AD1889=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ALOOP=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ARM=y +CONFIG_SND_ARMAACI=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_ATMEL_SOC=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AUDIO_GRAPH_CARD=m +CONFIG_SND_AW2=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BCD2000=m +CONFIG_SND_BCM2835=m +CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +CONFIG_SND_BEBOB=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_DARLA24=m +# CONFIG_SND_DEBUG is not set +CONFIG_SND_DESIGNWARE_I2S=m +CONFIG_SND_DESIGNWARE_PCM=y +CONFIG_SND_DICE=m +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_DRIVERS=y +CONFIG_SND_DUMMY=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_ECHO3G=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +CONFIG_SND_FIREFACE=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_FIREWIRE_MOTU=m +CONFIG_SND_FIREWIRE_TASCAM=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_GINA20=m +CONFIG_SND_GINA24=m +CONFIG_SND_HDA=m +CONFIG_SND_HDA_ALIGNED_MMIO=y +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 +CONFIG_SND_HDA_INTEL=m +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_TEGRA=m +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_HRTIMER=m +CONFIG_SND_HWDEP=m +CONFIG_SND_I2S_HI6210_I2S=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_INTEL_BYT_PREFER_SOF=y +CONFIG_SND_INTEL_DSP_CONFIG=m +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_KIRKWOOD_SOC=m +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_MESON_AIU=m +CONFIG_SND_MESON_AXG_FIFO=m +CONFIG_SND_MESON_AXG_FRDDR=m +CONFIG_SND_MESON_AXG_PDM=m +CONFIG_SND_MESON_AXG_SOUND_CARD=m +CONFIG_SND_MESON_AXG_SPDIFIN=m +CONFIG_SND_MESON_AXG_SPDIFOUT=m +CONFIG_SND_MESON_AXG_TDMIN=m +CONFIG_SND_MESON_AXG_TDMOUT=m +CONFIG_SND_MESON_AXG_TDM_FORMATTER=m +CONFIG_SND_MESON_AXG_TDM_INTERFACE=m +CONFIG_SND_MESON_AXG_TODDR=m +CONFIG_SND_MESON_CARD_UTILS=m +CONFIG_SND_MESON_CODEC_GLUE=m +CONFIG_SND_MESON_G12A_TOACODEC=m +CONFIG_SND_MESON_G12A_TOHDMITX=m +CONFIG_SND_MESON_GX_SOUND_CARD=m +CONFIG_SND_MIA=m +CONFIG_SND_MIXART=m +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_MONA=m +CONFIG_SND_MPU401=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_NM256=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_OXFW=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_PCI=y +CONFIG_SND_PCMCIA=y +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +# CONFIG_SND_PCM_OSS is not set +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_PCSP=m +CONFIG_SND_PCXHR=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_PPC=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_RAWMIDI=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SAMSUNG_I2S=m +CONFIG_SND_SAMSUNG_PCM=m +CONFIG_SND_SAMSUNG_SPDIF=m +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SEQUENCER=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_AC97_CODEC=m +CONFIG_SND_SOC_ACPI=m +CONFIG_SND_SOC_ACPI_INTEL_MATCH=m +CONFIG_SND_SOC_ADAU1372=m +CONFIG_SND_SOC_ADAU1372_I2C=m +CONFIG_SND_SOC_ADAU1372_SPI=m +CONFIG_SND_SOC_ADAU1701=m +CONFIG_SND_SOC_ADAU1761=m +CONFIG_SND_SOC_ADAU1761_I2C=m +CONFIG_SND_SOC_ADAU1761_SPI=m +CONFIG_SND_SOC_ADAU17X1=m +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +CONFIG_SND_SOC_ADAU_UTILS=m +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4118=m +CONFIG_SND_SOC_AK4458=m +CONFIG_SND_SOC_AK4554=m +CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK5386=m +CONFIG_SND_SOC_AK5558=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_ALC5632=m +CONFIG_SND_SOC_AMD_ACP=m +CONFIG_SND_SOC_AMD_ACP3x=m +CONFIG_SND_SOC_AMD_ACP5x=m +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m +CONFIG_SND_SOC_AMD_RENOIR=m +CONFIG_SND_SOC_AMD_RENOIR_MACH=m +CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m +CONFIG_SND_SOC_APQ8016_SBC=m +CONFIG_SND_SOC_ARIZONA=m +CONFIG_SND_SOC_ARNDALE=m +CONFIG_SND_SOC_BD28623=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_CPCAP=m +CONFIG_SND_SOC_CROS_EC_CODEC=m +CONFIG_SND_SOC_CS35L32=m +CONFIG_SND_SOC_CS35L33=m +CONFIG_SND_SOC_CS35L34=m +CONFIG_SND_SOC_CS35L35=m +CONFIG_SND_SOC_CS35L36=m +CONFIG_SND_SOC_CS4234=m +CONFIG_SND_SOC_CS4265=m +CONFIG_SND_SOC_CS4270=m +CONFIG_SND_SOC_CS4271=m +CONFIG_SND_SOC_CS4271_I2C=m +CONFIG_SND_SOC_CS4271_SPI=m +CONFIG_SND_SOC_CS42L42=m +CONFIG_SND_SOC_CS42L51=m +CONFIG_SND_SOC_CS42L51_I2C=m +CONFIG_SND_SOC_CS42L52=m +CONFIG_SND_SOC_CS42L56=m +CONFIG_SND_SOC_CS42L73=m +CONFIG_SND_SOC_CS42XX8=m +CONFIG_SND_SOC_CS42XX8_I2C=m +CONFIG_SND_SOC_CS43130=m +CONFIG_SND_SOC_CS4341=m +CONFIG_SND_SOC_CS4349=m +CONFIG_SND_SOC_CS53L30=m +CONFIG_SND_SOC_CX2072X=m +CONFIG_SND_SOC_DA7213=m +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DAVINCI_MCASP=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_ES7134=m +CONFIG_SND_SOC_ES7241=m +CONFIG_SND_SOC_ES8316=m +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +CONFIG_SND_SOC_EUKREA_TLV320=m +CONFIG_SND_SOC_FSL_ASOC_CARD=m +CONFIG_SND_SOC_FSL_ASRC=m +CONFIG_SND_SOC_FSL_AUD2HTX=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_EASRC=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_RPMSG=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_GTM601=m +CONFIG_SND_SOC_HDAC_HDA=m +CONFIG_SND_SOC_HDAC_HDMI=m +CONFIG_SND_SOC_HDMI_CODEC=m +CONFIG_SND_SOC_ICS43432=m +CONFIG_SND_SOC_IMG=y +CONFIG_SND_SOC_IMG_I2S_IN=m +CONFIG_SND_SOC_IMG_I2S_OUT=m +CONFIG_SND_SOC_IMG_PARALLEL_OUT=m +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC=m +CONFIG_SND_SOC_IMG_SPDIF_IN=m +CONFIG_SND_SOC_IMG_SPDIF_OUT=m +CONFIG_SND_SOC_IMX_AUDIO_RPMSG=m +CONFIG_SND_SOC_IMX_AUDMIX=m +CONFIG_SND_SOC_IMX_CARD=m +CONFIG_SND_SOC_IMX_ES8328=m +CONFIG_SND_SOC_IMX_HDMI=m +CONFIG_SND_SOC_IMX_PCM_FIQ=y +CONFIG_SND_SOC_IMX_PCM_RPMSG=m +CONFIG_SND_SOC_IMX_RPMSG=m +CONFIG_SND_SOC_IMX_SPDIF=m +CONFIG_SND_SOC_INNO_RK3036=m +CONFIG_SND_SOC_INTEL_APL=m +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m +# CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH is not set +CONFIG_SND_SOC_INTEL_CATPT=m +# CONFIG_SND_SOC_INTEL_CFL is not set +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +# CONFIG_SND_SOC_INTEL_CML_H is not set +# CONFIG_SND_SOC_INTEL_CML_LP is not set +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m +# CONFIG_SND_SOC_INTEL_CNL is not set +CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC=m +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_GLK=m +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_HASWELL_MACH=m +CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON=m +CONFIG_SND_SOC_INTEL_KBL=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KEEMBAY=m +CONFIG_SND_SOC_INTEL_MACH=y +CONFIG_SND_SOC_INTEL_SKL=m +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m +# CONFIG_SND_SOC_INTEL_SKYLAKE is not set +CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON=m +CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY=m +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC=y +CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH=m +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m +CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y +CONFIG_SND_SOC_J721E_EVM=m +CONFIG_SND_SOC_LOCHNAGAR_SC=m +CONFIG_SND_SOC_LPASS_APQ8016=m +CONFIG_SND_SOC_LPASS_CPU=m +CONFIG_SND_SOC_LPASS_HDMI=m +CONFIG_SND_SOC_LPASS_IPQ806X=m +CONFIG_SND_SOC_LPASS_PLATFORM=m +CONFIG_SND_SOC_LPASS_RX_MACRO=m +CONFIG_SND_SOC_LPASS_SC7180=m +CONFIG_SND_SOC_LPASS_TX_MACRO=m +CONFIG_SND_SOC_LPASS_VA_MACRO=m +CONFIG_SND_SOC_LPASS_WSA_MACRO=m +CONFIG_SND_SOC_MAX9759=m +CONFIG_SND_SOC_MAX98088=m +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98095=m +CONFIG_SND_SOC_MAX98357A=m +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +CONFIG_SND_SOC_MAX98373_SDW=m +CONFIG_SND_SOC_MAX98390=m +CONFIG_SND_SOC_MAX98504=m +CONFIG_SND_SOC_MAX9860=m +CONFIG_SND_SOC_MAX9867=m +CONFIG_SND_SOC_MAX98927=m +CONFIG_SND_SOC_MEDIATEK=m +CONFIG_SND_SOC_MESON_T9015=m +CONFIG_SND_SOC_MIKROE_PROTO=m +CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m +CONFIG_SND_SOC_MSM8996=m +# CONFIG_SND_SOC_MT2701 is not set +CONFIG_SND_SOC_MT6351=m +CONFIG_SND_SOC_MT6358=m +CONFIG_SND_SOC_MT6359=m +CONFIG_SND_SOC_MT6359_ACCDET=m +CONFIG_SND_SOC_MT6660=m +CONFIG_SND_SOC_MT6797=m +CONFIG_SND_SOC_MT6797_MT6351=m +# CONFIG_SND_SOC_MT8173 is not set +CONFIG_SND_SOC_MT8183=m +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A=m +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A=m +CONFIG_SND_SOC_MT8192=m +CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682=m +CONFIG_SND_SOC_MT8195=m +CONFIG_SND_SOC_MT8195_MT6359_RT1019_RT5682=m +CONFIG_SND_SOC_MTK_BTCVSD=m +CONFIG_SND_SOC_NAU8315=m +CONFIG_SND_SOC_NAU8540=m +CONFIG_SND_SOC_NAU8810=m +CONFIG_SND_SOC_NAU8822=m +CONFIG_SND_SOC_NAU8824=m +CONFIG_SND_SOC_NAU8825=m +CONFIG_SND_SOC_NOKIA_RX51=m +CONFIG_SND_SOC_ODROID=m +CONFIG_SND_SOC_OMAP3_PANDORA=m +CONFIG_SND_SOC_OMAP3_TWL4030=m +CONFIG_SND_SOC_OMAP_ABE_TWL6040=m +CONFIG_SND_SOC_OMAP_DMIC=m +CONFIG_SND_SOC_OMAP_MCBSP=m +CONFIG_SND_SOC_OMAP_MCPDM=m +CONFIG_SND_SOC_PCM1681=m +CONFIG_SND_SOC_PCM1789=m +CONFIG_SND_SOC_PCM1789_I2C=m +CONFIG_SND_SOC_PCM179X=m +CONFIG_SND_SOC_PCM179X_I2C=m +CONFIG_SND_SOC_PCM179X_SPI=m +CONFIG_SND_SOC_PCM186X=m +CONFIG_SND_SOC_PCM186X_I2C=m +CONFIG_SND_SOC_PCM186X_SPI=m +CONFIG_SND_SOC_PCM3060=m +CONFIG_SND_SOC_PCM3060_I2C=m +CONFIG_SND_SOC_PCM3060_SPI=m +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A_SPI=m +CONFIG_SND_SOC_PCM5102A=m +CONFIG_SND_SOC_PCM512x=m +CONFIG_SND_SOC_PCM512x_I2C=m +CONFIG_SND_SOC_PCM512x_SPI=m +CONFIG_SND_SOC_QCOM=m +CONFIG_SND_SOC_QCOM_COMMON=m +CONFIG_SND_SOC_QDSP6=m +CONFIG_SND_SOC_QDSP6_ADM=m +CONFIG_SND_SOC_QDSP6_AFE=m +CONFIG_SND_SOC_QDSP6_AFE_CLOCKS=m +CONFIG_SND_SOC_QDSP6_AFE_DAI=m +CONFIG_SND_SOC_QDSP6_ASM=m +CONFIG_SND_SOC_QDSP6_ASM_DAI=m +CONFIG_SND_SOC_QDSP6_COMMON=m +CONFIG_SND_SOC_QDSP6_CORE=m +CONFIG_SND_SOC_QDSP6_ROUTING=m +CONFIG_SND_SOC_RCAR=m +CONFIG_SND_SOC_RK3288_HDMI_ANALOG=m +CONFIG_SND_SOC_RK3328=m +CONFIG_SND_SOC_RK3399_GRU_SOUND=m +CONFIG_SND_SOC_RK817=m +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RL6347A=m +CONFIG_SND_SOC_ROCKCHIP=m +CONFIG_SND_SOC_ROCKCHIP_I2S=m +CONFIG_SND_SOC_ROCKCHIP_MAX98090=m +CONFIG_SND_SOC_ROCKCHIP_PDM=m +CONFIG_SND_SOC_ROCKCHIP_RT5645=m +CONFIG_SND_SOC_ROCKCHIP_SPDIF=m +CONFIG_SND_SOC_RT1011=m +CONFIG_SND_SOC_RT1015=m +CONFIG_SND_SOC_RT1015P=m +CONFIG_SND_SOC_RT1308=m +CONFIG_SND_SOC_RT1308_SDW=m +CONFIG_SND_SOC_RT1316_SDW=m +CONFIG_SND_SOC_RT286=m +CONFIG_SND_SOC_RT298=m +CONFIG_SND_SOC_RT5514=m +CONFIG_SND_SOC_RT5514_SPI=m +CONFIG_SND_SOC_RT5616=m +CONFIG_SND_SOC_RT5631=m +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +CONFIG_SND_SOC_RT5651=m +CONFIG_SND_SOC_RT5659=m +CONFIG_SND_SOC_RT5660=m +CONFIG_SND_SOC_RT5663=m +CONFIG_SND_SOC_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_RT5682=m +CONFIG_SND_SOC_RT5682_I2C=m +CONFIG_SND_SOC_RT5682_SDW=m +CONFIG_SND_SOC_RT700=m +CONFIG_SND_SOC_RT700_SDW=m +CONFIG_SND_SOC_RT711=m +CONFIG_SND_SOC_RT711_SDCA_SDW=m +CONFIG_SND_SOC_RT711_SDW=m +CONFIG_SND_SOC_RT715=m +CONFIG_SND_SOC_RT715_SDCA_SDW=m +CONFIG_SND_SOC_RT715_SDW=m +CONFIG_SND_SOC_RZ=m +CONFIG_SND_SOC_SAMSUNG=m +CONFIG_SND_SOC_SAMSUNG_ARIES_WM8994=m +CONFIG_SND_SOC_SAMSUNG_MIDAS_WM1811=m +CONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF=m +CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994=m +CONFIG_SND_SOC_SAMSUNG_TM2_WM5110=m +CONFIG_SND_SOC_SC7180=m +CONFIG_SND_SOC_SDM845=m +CONFIG_SND_SOC_SDW_MOCKUP=m +CONFIG_SND_SOC_SH4_FSI=m +CONFIG_SND_SOC_SI476X=m +CONFIG_SND_SOC_SIGMADSP=m +CONFIG_SND_SOC_SIGMADSP_I2C=m +CONFIG_SND_SOC_SIGMADSP_REGMAP=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +CONFIG_SND_SOC_SM8250=m +CONFIG_SND_SOC_SMDK_WM8994_PCM=m +CONFIG_SND_SOC_SNOW=m +CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF_ACPI=m +CONFIG_SND_SOC_SOF_ACPI_DEV=m +CONFIG_SND_SOC_SOF_ALDERLAKE=m +CONFIG_SND_SOC_SOF_APOLLOLAKE=m +CONFIG_SND_SOC_SOF_BAYTRAIL=m +CONFIG_SND_SOC_SOF_BROADWELL=m +CONFIG_SND_SOC_SOF_CANNONLAKE=m +CONFIG_SND_SOC_SOF_COFFEELAKE=m +CONFIG_SND_SOC_SOF_COMETLAKE=m +# CONFIG_SND_SOC_SOF_DEBUG_PROBES is not set +# CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT is not set +CONFIG_SND_SOC_SOF_ELKHARTLAKE=m +CONFIG_SND_SOC_SOF_GEMINILAKE=m +CONFIG_SND_SOC_SOF_HDA=m +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y +CONFIG_SND_SOC_SOF_HDA_COMMON=m +CONFIG_SND_SOC_SOF_HDA_LINK=y +CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_ICELAKE=m +CONFIG_SND_SOC_SOF_IMX8=m +CONFIG_SND_SOC_SOF_IMX8M=m +CONFIG_SND_SOC_SOF_IMX8M_SUPPORT=y +CONFIG_SND_SOC_SOF_IMX8_SUPPORT=y +CONFIG_SND_SOC_SOF_IMX_COMMON=m +CONFIG_SND_SOC_SOF_IMX_OF=m +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y +CONFIG_SND_SOC_SOF_INTEL_APL=m +CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP=m +CONFIG_SND_SOC_SOF_INTEL_CNL=m +CONFIG_SND_SOC_SOF_INTEL_COMMON=m +CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC=m +CONFIG_SND_SOC_SOF_INTEL_ICL=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_INTEL_TGL=m +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y +CONFIG_SND_SOC_SOF_JASPERLAKE=m +CONFIG_SND_SOC_SOF_MERRIFIELD=m +CONFIG_SND_SOC_SOF_OF=m +CONFIG_SND_SOC_SOF_PCI=m +CONFIG_SND_SOC_SOF_PCI_DEV=m +CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE=y +CONFIG_SND_SOC_SOF_TIGERLAKE=m +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_XTENSA=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SPRD=m +CONFIG_SND_SOC_SPRD_MCDT=m +CONFIG_SND_SOC_SSM2305=m +CONFIG_SND_SOC_SSM2518=m +CONFIG_SND_SOC_SSM2602=m +CONFIG_SND_SOC_SSM2602_I2C=m +CONFIG_SND_SOC_SSM2602_SPI=m +CONFIG_SND_SOC_SSM4567=m +CONFIG_SND_SOC_STA32X=m +CONFIG_SND_SOC_STA350=m +CONFIG_SND_SOC_STI_SAS=m +CONFIG_SND_SOC_STORM=m +CONFIG_SND_SOC_TAS2552=m +CONFIG_SND_SOC_TAS2562=m +CONFIG_SND_SOC_TAS2764=m +CONFIG_SND_SOC_TAS2770=m +CONFIG_SND_SOC_TAS5086=m +CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS5720=m +CONFIG_SND_SOC_TAS6424=m +CONFIG_SND_SOC_TDA7419=m +CONFIG_SND_SOC_TEGRA=m +CONFIG_SND_SOC_TEGRA186_DSPK=m +CONFIG_SND_SOC_TEGRA20_AC97=m +CONFIG_SND_SOC_TEGRA20_DAS=m +CONFIG_SND_SOC_TEGRA20_I2S=m +CONFIG_SND_SOC_TEGRA20_SPDIF=m +CONFIG_SND_SOC_TEGRA210_ADMAIF=m +CONFIG_SND_SOC_TEGRA210_AHUB=m +CONFIG_SND_SOC_TEGRA210_DMIC=m +CONFIG_SND_SOC_TEGRA210_I2S=m +CONFIG_SND_SOC_TEGRA30_AHUB=m +CONFIG_SND_SOC_TEGRA30_I2S=m +CONFIG_SND_SOC_TEGRA_ALC5632=m +CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD=m +CONFIG_SND_SOC_TEGRA_MACHINE_DRV=m +CONFIG_SND_SOC_TEGRA_MAX98090=m +CONFIG_SND_SOC_TEGRA_RT5640=m +CONFIG_SND_SOC_TEGRA_RT5677=m +CONFIG_SND_SOC_TEGRA_SGTL5000=m +CONFIG_SND_SOC_TEGRA_TRIMSLICE=m +CONFIG_SND_SOC_TEGRA_WM8753=m +CONFIG_SND_SOC_TEGRA_WM8903=m +CONFIG_SND_SOC_TEGRA_WM9712=m +CONFIG_SND_SOC_TFA9879=m +CONFIG_SND_SOC_TFA989X=m +CONFIG_SND_SOC_TI_EDMA_PCM=m +CONFIG_SND_SOC_TI_SDMA_PCM=m +CONFIG_SND_SOC_TI_UDMA_PCM=m +CONFIG_SND_SOC_TLV320ADCX140=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +CONFIG_SND_SOC_TLV320AIC23_SPI=m +CONFIG_SND_SOC_TLV320AIC31XX=m +CONFIG_SND_SOC_TLV320AIC32X4=m +CONFIG_SND_SOC_TLV320AIC32X4_I2C=m +CONFIG_SND_SOC_TLV320AIC32X4_SPI=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_SPI=m +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_TS3A227E=m +CONFIG_SND_SOC_TSCS42XX=m +CONFIG_SND_SOC_TSCS454=m +CONFIG_SND_SOC_TWL4030=m +CONFIG_SND_SOC_TWL6040=m +CONFIG_SND_SOC_UDA1334=m +CONFIG_SND_SOC_UNIPHIER=m +CONFIG_SND_SOC_UNIPHIER_AIO=m +CONFIG_SND_SOC_UNIPHIER_EVEA_CODEC=m +CONFIG_SND_SOC_UNIPHIER_LD11=m +CONFIG_SND_SOC_UNIPHIER_PXS2=m +CONFIG_SND_SOC_WCD9335=m +CONFIG_SND_SOC_WCD934X=m +CONFIG_SND_SOC_WCD938X=m +CONFIG_SND_SOC_WCD938X_SDW=m +CONFIG_SND_SOC_WCD_MBHC=m +CONFIG_SND_SOC_WM5102=m +CONFIG_SND_SOC_WM5110=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=m +CONFIG_SND_SOC_WM8524=m +CONFIG_SND_SOC_WM8580=m +CONFIG_SND_SOC_WM8711=m +CONFIG_SND_SOC_WM8728=m +CONFIG_SND_SOC_WM8731=m +CONFIG_SND_SOC_WM8737=m +CONFIG_SND_SOC_WM8741=m +CONFIG_SND_SOC_WM8750=m +CONFIG_SND_SOC_WM8753=m +CONFIG_SND_SOC_WM8770=m +CONFIG_SND_SOC_WM8776=m +CONFIG_SND_SOC_WM8782=m +CONFIG_SND_SOC_WM8804=m +CONFIG_SND_SOC_WM8804_I2C=m +CONFIG_SND_SOC_WM8804_SPI=m +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +CONFIG_SND_SOC_WM8960=m +CONFIG_SND_SOC_WM8962=m +CONFIG_SND_SOC_WM8974=m +CONFIG_SND_SOC_WM8978=m +CONFIG_SND_SOC_WM8985=m +CONFIG_SND_SOC_WM8994=m +CONFIG_SND_SOC_WM9712=m +CONFIG_SND_SOC_WM_ADSP=m +CONFIG_SND_SOC_WM_HUBS=m +CONFIG_SND_SOC_WSA881X=m +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER=m +CONFIG_SND_SOC_XILINX_I2S=m +CONFIG_SND_SOC_XILINX_SPDIF=m +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SOC_ZL38060=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_SPI=y +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m +# CONFIG_SND_SUN4I_CODEC is not set +# CONFIG_SND_SUN4I_I2S is not set +# CONFIG_SND_SUN4I_SPDIF is not set +CONFIG_SND_SUN50I_CODEC_ANALOG=m +CONFIG_SND_SUN8I_ADDA_PR_REGMAP=m +CONFIG_SND_SUN8I_CODEC=m +CONFIG_SND_SUN8I_CODEC_ANALOG=m +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_SYNTH_EMUX=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_USB=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_VARIAX=m +# CONFIG_SND_VERBOSE_PRINTK is not set +CONFIG_SND_VERBOSE_PROCFS=y +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_VIRTIO=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VMASTER=y +CONFIG_SND_VX222=m +CONFIG_SND_VXPOCKET=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_X86=y +CONFIG_SND_XEN_FRONTEND=m +CONFIG_SND_YMFPCI=m +CONFIG_SNI_AVE=m +CONFIG_SNI_NETSEC=m +CONFIG_SOCFPGA_FPGA_BRIDGE=m +CONFIG_SOCFPGA_SUSPEND=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_SOCK_VALIDATE_XMIT=y +# CONFIG_SOC_AM43XX is not set +CONFIG_SOC_BUS=y +CONFIG_SOC_DRA7XX=y +CONFIG_SOC_EXYNOS5250=y +CONFIG_SOC_EXYNOS5260=y +CONFIG_SOC_EXYNOS5410=y +CONFIG_SOC_EXYNOS5420=y +CONFIG_SOC_EXYNOS5800=y +CONFIG_SOC_HAS_OMAP2_SDRC=y +CONFIG_SOC_HAS_REALTIME_COUNTER=y +CONFIG_SOC_IMX5=y +CONFIG_SOC_IMX50=y +CONFIG_SOC_IMX51=y +# CONFIG_SOC_IMX53 is not set +CONFIG_SOC_IMX6=y +CONFIG_SOC_IMX6Q=y +CONFIG_SOC_IMX6SL=y +CONFIG_SOC_IMX6SLL=y +CONFIG_SOC_IMX6SX=y +CONFIG_SOC_IMX6UL=y +CONFIG_SOC_IMX7D=y +CONFIG_SOC_IMX7D_CA7=y +CONFIG_SOC_IMX7ULP=y +# CONFIG_SOC_LS1021A is not set +CONFIG_SOC_OMAP3430=y +# CONFIG_SOC_OMAP5 is not set +CONFIG_SOC_RENESAS=y +CONFIG_SOC_SAMSUNG=y +CONFIG_SOC_TEGRA20_VOLTAGE_COUPLER=y +CONFIG_SOC_TEGRA30_VOLTAGE_COUPLER=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_PMC=y +CONFIG_SOC_TEGRA_POWERGATE_BPMP=y +CONFIG_SOC_TI81XX=y +CONFIG_SOC_VF610=y +CONFIG_SOFTLOCKUP_DETECTOR=y +CONFIG_SOFT_WATCHDOG=m +CONFIG_SOFT_WATCHDOG_PRETIMEOUT=y +CONFIG_SONYPI_COMPAT=y +CONFIG_SONY_FF=y +CONFIG_SONY_LAPTOP=m +CONFIG_SOUNDWIRE=m +CONFIG_SOUNDWIRE_CADENCE=m +CONFIG_SOUNDWIRE_GENERIC_ALLOCATION=m +CONFIG_SOUNDWIRE_INTEL=m +CONFIG_SOUNDWIRE_QCOM=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SP5100_TCO=m +CONFIG_SPAPR_TCE_IOMMU=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM_STATIC=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSE_IRQ=y +CONFIG_SPARX5_SWITCH=m +CONFIG_SPI_ALTERA=m +CONFIG_SPI_ALTERA_CORE=m +CONFIG_SPI_ALTERA_DFL=m +CONFIG_SPI_AMD=m +CONFIG_SPI_ARMADA_3700=m +CONFIG_SPI_ASPEED_SMC=m +CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BCM_QSPI=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +CONFIG_SPI_CADENCE=m +CONFIG_SPI_CADENCE_QUADSPI=m +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_DESIGNWARE=m +CONFIG_SPI_DLN2=m +CONFIG_SPI_DW_DMA=y +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_DYNAMIC=y +CONFIG_SPI_FSI=m +CONFIG_SPI_FSL_DSPI=m +CONFIG_SPI_FSL_LIB=y +CONFIG_SPI_FSL_LPSPI=m +CONFIG_SPI_FSL_QUADSPI=m +CONFIG_SPI_FSL_SPI=y +CONFIG_SPI_GPIO=m +CONFIG_SPI_HISI_KUNPENG=m +CONFIG_SPI_HISI_SFC=m +CONFIG_SPI_HISI_SFC_V3XX=m +CONFIG_SPI_IMX=m +# CONFIG_SPI_INTEL_SPI_PCI is not set +# CONFIG_SPI_INTEL_SPI_PLATFORM is not set +CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_LOOPBACK_TEST=m +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y +CONFIG_SPI_MESON_SPICC=m +CONFIG_SPI_MESON_SPIFC=m +CONFIG_SPI_MT65XX=m +CONFIG_SPI_MTK_NOR=m +CONFIG_SPI_MUX=m +CONFIG_SPI_MXIC=m +CONFIG_SPI_NPCM_FIU=m +CONFIG_SPI_NPCM_PSPI=m +CONFIG_SPI_NXP_FLEXSPI=m +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_OMAP24XX=y +CONFIG_SPI_ORION=m +CONFIG_SPI_PL022=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_QCOM_GENI=m +CONFIG_SPI_QCOM_QSPI=m +CONFIG_SPI_QUP=m +CONFIG_SPI_ROCKCHIP_SFC=m +CONFIG_SPI_RPCIF=m +CONFIG_SPI_RSPI=m +CONFIG_SPI_S3C64XX=m +CONFIG_SPI_SC18IS602=m +CONFIG_SPI_SH_HSPI=m +CONFIG_SPI_SH_MSIOF=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_MT27XX=m +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=m +CONFIG_SPI_SLAVE_TIME=m +CONFIG_SPI_SPIDEV=m +CONFIG_SPI_SPRD=m +CONFIG_SPI_SPRD_ADI=m +# CONFIG_SPI_SUN4I is not set +CONFIG_SPI_SUN6I=m +CONFIG_SPI_SYNQUACER=m +CONFIG_SPI_TEGRA114=m +CONFIG_SPI_TEGRA20_SFLASH=m +CONFIG_SPI_TEGRA20_SLINK=m +CONFIG_SPI_TEGRA210_QUAD=m +CONFIG_SPI_THUNDERX=m +CONFIG_SPI_TI_QSPI=m +CONFIG_SPI_TLE62X0=m +CONFIG_SPI_UNIPHIER=m +CONFIG_SPI_XCOMM=m +# CONFIG_SPI_XILINX is not set +CONFIG_SPI_XLP=m +CONFIG_SPI_ZYNQMP_GQSPI=m +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_SPMI_HISI3670=m +CONFIG_SPMI_MSM_PMIC_ARB=m +CONFIG_SPMI_PMIC_CLKDIV=m +CONFIG_SPRD_COMMON_CLK=m +CONFIG_SPRD_DMA=m +CONFIG_SPRD_EFUSE=m +CONFIG_SPRD_IOMMU=m +CONFIG_SPRD_MBOX=m +CONFIG_SPRD_SC9860_CLK=m +CONFIG_SPRD_SC9863A_CLK=m +CONFIG_SPRD_THERMAL=m +CONFIG_SPRD_TIMER=y +CONFIG_SPRD_WATCHDOG=m +CONFIG_SPS30=m +CONFIG_SPS30_I2C=m +CONFIG_SPS30_SERIAL=m +CONFIG_SQUASHFS=y +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_EMBEDDED is not set +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_ZSTD=y +CONFIG_SRAM_EXEC=y +CONFIG_SRCU=y +CONFIG_SRF04=m +CONFIG_SRF08=m +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_DRIVER_GPIO=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SPROM=y +CONFIG_SSFDC=m +CONFIG_SSI_PROTOCOL=m +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_PER_TASK=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_STACKTRACE=y +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_STACK_TRACER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_STAGING_BOARD is not set +CONFIG_STAGING_MEDIA=y +# CONFIG_STATIC_CALL_SELFTEST is not set +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_STE10XP=m +CONFIG_STK3310=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m +CONFIG_STM=m +CONFIG_STMMAC_ETH=m +CONFIG_STMMAC_PCI=m +CONFIG_STMMAC_PLATFORM=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMPE_ADC=m +CONFIG_STMPE_I2C=y +CONFIG_STMPE_SPI=y +CONFIG_STMP_DEVICE=y +CONFIG_STM_DUMMY=m +CONFIG_STM_PROTO_BASIC=m +CONFIG_STM_PROTO_SYS_T=m +CONFIG_STM_SOURCE_CONSOLE=m +CONFIG_STM_SOURCE_FTRACE=m +CONFIG_STM_SOURCE_HEARTBEAT=m +CONFIG_STP=m +CONFIG_STPMIC1_WATCHDOG=m +CONFIG_STREAM_PARSER=y +CONFIG_STRICT_DEVMEM=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_STRICT_MODULE_RWX=y +# CONFIG_STRING_SELFTEST is not set +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_STUB_CLK_HI3660=y +CONFIG_STUB_CLK_HI6220=y +CONFIG_STX104=m +CONFIG_ST_UVIS25=m +CONFIG_ST_UVIS25_I2C=m +CONFIG_ST_UVIS25_SPI=m +# CONFIG_SUN4I_EMAC is not set +# CONFIG_SUN4I_GPADC is not set +CONFIG_SUN4I_TIMER=y +CONFIG_SUN50I_A100_CCU=y +CONFIG_SUN50I_A100_R_CCU=y +CONFIG_SUN50I_A64_CCU=y +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUN50I_ERRATUM_UNKNOWN1=y +CONFIG_SUN50I_H616_CCU=y +CONFIG_SUN50I_H6_CCU=y +CONFIG_SUN50I_H6_R_CCU=y +CONFIG_SUN50I_IOMMU=y +CONFIG_SUN6I_MSGBOX=y +CONFIG_SUN8I_A83T_CCU=y +CONFIG_SUN8I_DE2_CCU=y +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_R_CCU=y +CONFIG_SUN8I_THERMAL=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_SUNGEM=m +CONFIG_SUNGEM_PHY=m +CONFIG_SUNRPC=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_SWAP=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_SUNXI_CCU=y +CONFIG_SUNXI_MBUS=y +CONFIG_SUNXI_RSB=m +CONFIG_SUNXI_SRAM=y +CONFIG_SUNXI_WATCHDOG=m +CONFIG_SURFACE3_WMI=m +CONFIG_SURFACE_ACPI_NOTIFY=m +CONFIG_SURFACE_AGGREGATOR=m +CONFIG_SURFACE_AGGREGATOR_BUS=y +CONFIG_SURFACE_AGGREGATOR_CDEV=m +# CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set +CONFIG_SURFACE_AGGREGATOR_REGISTRY=m +CONFIG_SURFACE_DTX=m +CONFIG_SURFACE_GPE=m +CONFIG_SURFACE_HID=m +CONFIG_SURFACE_HID_CORE=m +CONFIG_SURFACE_HOTPLUG=m +CONFIG_SURFACE_KBD=m +CONFIG_SURFACE_PLATFORMS=y +CONFIG_SURFACE_PLATFORM_PROFILE=m +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_SVC_I3C_MASTER=m +CONFIG_SWAP=y +CONFIG_SWIOTLB=y +CONFIG_SWIOTLB_XEN=y +CONFIG_SWPHY=y +CONFIG_SWP_EMULATE=y +CONFIG_SWP_EMULATION=y +CONFIG_SW_SYNC=y +CONFIG_SX9310=m +CONFIG_SX9500=m +CONFIG_SXGBE_ETH=m +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_SYNCLINK_CS=m +CONFIG_SYNCLINK_GT=m +CONFIG_SYNC_FILE=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +CONFIG_SYN_COOKIES=y +CONFIG_SYSCON_REBOOT_MODE=m +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_SYSC_R8A7742=y +CONFIG_SYSC_R8A7743=y +CONFIG_SYSC_R8A7745=y +CONFIG_SYSC_R8A77470=y +CONFIG_SYSC_R8A774A1=y +CONFIG_SYSC_R8A774B1=y +CONFIG_SYSC_R8A774C0=y +CONFIG_SYSC_R8A774E1=y +CONFIG_SYSC_R8A7779=y +CONFIG_SYSC_R8A7790=y +CONFIG_SYSC_R8A7791=y +CONFIG_SYSC_R8A7792=y +CONFIG_SYSC_R8A7794=y +CONFIG_SYSC_R8A7795=y +CONFIG_SYSC_R8A77960=y +CONFIG_SYSC_R8A77961=y +CONFIG_SYSC_R8A77965=y +CONFIG_SYSC_R8A77970=y +CONFIG_SYSC_R8A77980=y +CONFIG_SYSC_R8A77990=y +CONFIG_SYSC_R8A77995=y +CONFIG_SYSC_R8A779A0=y +CONFIG_SYSC_RCAR=y +CONFIG_SYSC_RMOBILE=y +CONFIG_SYSFB=y +CONFIG_SYSFS=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSTEM76_ACPI=m +CONFIG_SYSTEMPORT=m +CONFIG_SYSTEM_BLACKLIST_HASH_LIST="" +CONFIG_SYSTEM_BLACKLIST_KEYRING=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 +CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem" +CONFIG_SYSTEM_REVOCATION_LIST=y +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_SYS_SUPPORTS_APM_EMULATION=y +CONFIG_SYS_SUPPORTS_EM_STI=y +CONFIG_SYS_SUPPORTS_SH_CMT=y +CONFIG_SYS_SUPPORTS_SH_MTU2=y +CONFIG_SYS_SUPPORTS_SH_TMU=y +CONFIG_T5403=m +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TAHVO_USB=m +CONFIG_TAHVO_USB_HOST_BY_DEFAULT=y +CONFIG_TAP=m +CONFIG_TARGET_CORE=m +CONFIG_TASKSTATS=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_TASK_XACCT=y +CONFIG_TCG_ATMEL=m +CONFIG_TCG_CRB=y +CONFIG_TCG_FTPM_TEE=m +CONFIG_TCG_IBMVTPM=y +CONFIG_TCG_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_TIS=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS_SPI=m +CONFIG_TCG_TIS_SPI_CR50=y +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_SPI=m +CONFIG_TCG_TIS_SYNQUACER=m +CONFIG_TCG_TPM=y +CONFIG_TCG_VTPM_PROXY=m +CONFIG_TCG_XEN=m +CONFIG_TCM_FC=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_TCM_USER2=m +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BBR=m +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_MD5SIG=y +CONFIG_TCS3414=m +CONFIG_TCS3472=m +CONFIG_TEE=m +CONFIG_TEE_BNXT_FW=m +CONFIG_TEGRA124_CLK_EMC=y +CONFIG_TEGRA124_EMC=y +CONFIG_TEGRA20_APB_DMA=y +CONFIG_TEGRA20_EMC=y +CONFIG_TEGRA210_ADMA=m +CONFIG_TEGRA210_EMC=m +CONFIG_TEGRA210_EMC_TABLE=y +CONFIG_TEGRA30_EMC=y +CONFIG_TEGRA30_TSENSOR=m +CONFIG_TEGRA_ACONNECT=m +CONFIG_TEGRA_AHB=y +CONFIG_TEGRA_BPMP=y +CONFIG_TEGRA_BPMP_THERMAL=m +CONFIG_TEGRA_CLK_DFLL=y +CONFIG_TEGRA_GMI=m +CONFIG_TEGRA_HOST1X=m +CONFIG_TEGRA_HOST1X_FIREWALL=y +CONFIG_TEGRA_HSP_MBOX=y +CONFIG_TEGRA_IOMMU_GART=y +CONFIG_TEGRA_IOMMU_SMMU=y +CONFIG_TEGRA_IVC=y +CONFIG_TEGRA_MC=y +# CONFIG_TEGRA_SOCTHERM is not set +CONFIG_TEGRA_TIMER=y +CONFIG_TEGRA_VDE=m +CONFIG_TEGRA_WATCHDOG=m +CONFIG_TEHUTI=m +CONFIG_TELCLOCK=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITOPS is not set +CONFIG_TEST_BLACKHOLE_DEV=m +CONFIG_TEST_BPF=m +# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_FPU is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_HASH is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_HMM is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_LIVEPATCH is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_LOCKUP is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_OBJAGG is not set +# CONFIG_TEST_OVERFLOW is not set +# CONFIG_TEST_PARMAN is not set +CONFIG_TEST_POWER=m +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_SCANF is not set +# CONFIG_TEST_STACKINIT is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_VMALLOC is not set +# CONFIG_TEST_XARRAY is not set +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_TEXTSEARCH_KMP=m +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_EMULATION=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_USER_SPACE=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_MMIO=m +CONFIG_THERMAL_NETLINK=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_STATISTICS=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_LMI=m +CONFIG_THP_SWAP=y +CONFIG_THREAD_INFO_IN_TASK=y +CONFIG_THREAD_SHIFT=14 +CONFIG_THRUSTMASTER_FF=y +# CONFIG_THUMB2_KERNEL is not set +CONFIG_THUNDERX2_PMU=m +CONFIG_THUNDER_NIC_BGX=m +CONFIG_THUNDER_NIC_PF=m +CONFIG_THUNDER_NIC_RGX=m +CONFIG_THUNDER_NIC_VF=m +CONFIG_TICK_CPU_ACCOUNTING=y +CONFIG_TICK_ONESHOT=y +CONFIG_TIFM_7XX1=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_TIMERFD=y +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_IMX_SYS_CTR=y +CONFIG_TIMER_OF=y +CONFIG_TIMER_PROBE=y +CONFIG_TIME_NS=y +CONFIG_TINYDRM_HX8357D=m +CONFIG_TINYDRM_ILI9225=m +CONFIG_TINYDRM_ILI9341=m +CONFIG_TINYDRM_ILI9486=m +CONFIG_TINYDRM_MI0283QT=m +CONFIG_TINYDRM_REPAPER=m +CONFIG_TINYDRM_ST7586=m +CONFIG_TINYDRM_ST7735R=m +CONFIG_TIPC=m +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC084S021=m +CONFIG_TI_ADC108S102=m +CONFIG_TI_ADC12138=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADC161S626=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS124S08=m +CONFIG_TI_ADS131E08=m +CONFIG_TI_ADS7950=m +CONFIG_TI_ADS8344=m +CONFIG_TI_ADS8688=m +CONFIG_TI_AM335X_ADC=m +CONFIG_TI_AM65_CPSW_TAS=y +CONFIG_TI_CPPI41=m +CONFIG_TI_CPSW=y +# CONFIG_TI_CPSW_PHY_SEL is not set +CONFIG_TI_CPSW_SWITCHDEV=m +CONFIG_TI_CPTS=y +CONFIG_TI_DAC082S085=m +CONFIG_TI_DAC5571=m +CONFIG_TI_DAC7311=m +CONFIG_TI_DAC7612=m +CONFIG_TI_DAVINCI_EMAC=m +CONFIG_TI_DAVINCI_MDIO=y +CONFIG_TI_DMA_CROSSBAR=y +CONFIG_TI_EDMA=y +CONFIG_TI_EMIF=m +CONFIG_TI_EMIF_SRAM=m +CONFIG_TI_EQEP=m +CONFIG_TI_K3_AM65_CPSW_NUSS=m +CONFIG_TI_K3_AM65_CPSW_SWITCHDEV=y +CONFIG_TI_K3_AM65_CPTS=m +CONFIG_TI_K3_DSP_REMOTEPROC=m +CONFIG_TI_K3_PSIL=y +CONFIG_TI_K3_R5_REMOTEPROC=m +CONFIG_TI_K3_RINGACC=y +CONFIG_TI_K3_SOCINFO=y +CONFIG_TI_K3_UDMA=y +CONFIG_TI_K3_UDMA_GLUE_LAYER=y +CONFIG_TI_MESSAGE_MANAGER=y +CONFIG_TI_PIPE3=m +CONFIG_TI_PRUSS=m +CONFIG_TI_PRUSS_INTC=m +CONFIG_TI_PWMSS=y +CONFIG_TI_SCI_CLK=m +# CONFIG_TI_SCI_CLK_PROBE_FROM_FW is not set +CONFIG_TI_SCI_INTA_IRQCHIP=y +CONFIG_TI_SCI_INTA_MSI_DOMAIN=y +CONFIG_TI_SCI_INTR_IRQCHIP=y +CONFIG_TI_SCI_PM_DOMAINS=m +CONFIG_TI_SCI_PROTOCOL=y +CONFIG_TI_ST=m +CONFIG_TI_SYSC=y +CONFIG_TI_SYSCON_CLK=y +CONFIG_TI_THERMAL=y +CONFIG_TI_TLC4541=m +CONFIG_TI_TSC2046=m +CONFIG_TLAN=m +CONFIG_TLS=m +CONFIG_TLS_DEVICE=y +# CONFIG_TLS_TOE is not set +CONFIG_TMD_HERMES=m +CONFIG_TMP006=m +CONFIG_TMP007=m +CONFIG_TMP117=m +CONFIG_TMPFS=y +CONFIG_TMPFS_INODE64=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_TN3215=y +CONFIG_TN3215_CONSOLE=y +CONFIG_TN3270=y +CONFIG_TN3270_CONSOLE=y +CONFIG_TN3270_FS=m +CONFIG_TN3270_TTY=y +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_HAPS=m +# CONFIG_TOSHIBA_WMI is not set +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879_SPI=m +CONFIG_TOUCHSCREEN_ADC=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AR1021_I2C=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37=y +CONFIG_TOUCHSCREEN_AUO_PIXCIR=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_BU21029=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505=m +CONFIG_TOUCHSCREEN_COLIBRI_VF50=m +CONFIG_TOUCHSCREEN_CY8CTMA140=m +CONFIG_TOUCHSCREEN_CY8CTMG110=m +CONFIG_TOUCHSCREEN_CYTTSP4_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP4_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP4_SPI=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP_SPI=m +CONFIG_TOUCHSCREEN_DA9034=m +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DMI=y +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_EGALAX=m +CONFIG_TOUCHSCREEN_EGALAX_SERIAL=m +CONFIG_TOUCHSCREEN_EKTF2127=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_EXC3000=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_HIDEEP=m +CONFIG_TOUCHSCREEN_HYCON_HY46XX=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_ILITEK=m +CONFIG_TOUCHSCREEN_IMX6UL_TSC=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_IPROC=m +CONFIG_TOUCHSCREEN_IQS5XX=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MELFAS_MIP4=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MSG2638=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW=m +CONFIG_TOUCHSCREEN_RM_TS=m +CONFIG_TOUCHSCREEN_ROHM_BU21023=m +CONFIG_TOUCHSCREEN_S6SY761=m +CONFIG_TOUCHSCREEN_SILEAD=m +CONFIG_TOUCHSCREEN_SIS_I2C=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMFTS=m +CONFIG_TOUCHSCREEN_STMPE=m +# CONFIG_TOUCHSCREEN_SUN4I is not set +CONFIG_TOUCHSCREEN_SUR40=m +CONFIG_TOUCHSCREEN_SURFACE3_SPI=m +CONFIG_TOUCHSCREEN_SX8654=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_TOUCHSCREEN_TS4800=m +CONFIG_TOUCHSCREEN_TSC2004=m +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_TSC2007_IIO=y +CONFIG_TOUCHSCREEN_TSC200X_CORE=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WDT87XX_I2C=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_ZET6223=m +CONFIG_TOUCHSCREEN_ZFORCE=m +CONFIG_TOUCHSCREEN_ZINITIX=m +CONFIG_TPL0102=m +CONFIG_TPM_KEY_PARSER=m +CONFIG_TPS68470_PMIC_OPREGION=y +CONFIG_TQMX86_WDT=m +CONFIG_TRACEPOINTS=y +# CONFIG_TRACEPOINT_BENCHMARK is not set +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_TRACE_CLOCK=y +# CONFIG_TRACE_EVAL_MAP_FILE is not set +CONFIG_TRACE_EVENT_INJECT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACING=y +CONFIG_TRACING_MAP=y +CONFIG_TRACING_SUPPORT=y +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TREE_RCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_TRUSTED_FOUNDATIONS=y +CONFIG_TRUSTED_KEYS=y +CONFIG_TS4800_IRQ=m +CONFIG_TS4800_WATCHDOG=m +CONFIG_TSL2583=m +CONFIG_TSL2591=m +CONFIG_TSL2772=m +CONFIG_TSL4531=m +CONFIG_TSYS01=m +CONFIG_TSYS02D=m +CONFIG_TTPCI_EEPROM=m +CONFIG_TTY=y +CONFIG_TTY_PRINTK_LEVEL=6 +CONFIG_TULIP=m +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_TUN=y +# CONFIG_TUNE_DEFAULT is not set +# CONFIG_TUNE_Z10 is not set +# CONFIG_TUNE_Z13 is not set +# CONFIG_TUNE_Z14 is not set +CONFIG_TUNE_Z15=y +# CONFIG_TUNE_Z196 is not set +# CONFIG_TUNE_Z900 is not set +# CONFIG_TUNE_Z990 is not set +# CONFIG_TUNE_Z9_109 is not set +# CONFIG_TUNE_ZEC12 is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_TURRIS_MOX_RWTM=m +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_MADC=m +CONFIG_TWL4030_POWER=y +CONFIG_TWL4030_USB=m +CONFIG_TWL4030_WATCHDOG=m +CONFIG_TWL6030_GPADC=m +CONFIG_TWL6030_USB=m +CONFIG_TWL6040_CORE=y +CONFIG_TYPEC=m +CONFIG_TYPEC_DP_ALTMODE=m +CONFIG_TYPEC_FUSB302=m +CONFIG_TYPEC_HD3SS3220=m +CONFIG_TYPEC_MT6360=m +CONFIG_TYPEC_MUX_INTEL_PMC=m +CONFIG_TYPEC_MUX_PI3USB30532=m +CONFIG_TYPEC_NVIDIA_ALTMODE=m +CONFIG_TYPEC_QCOM_PMIC=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_STUSB160X=m +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_UCSI=m +# CONFIG_TYPEC_WCOVE is not set +CONFIG_TYPHOON=m +# CONFIG_UACCESS_WITH_MEMCPY is not set +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_AUTHENTICATION=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +# CONFIG_UBSAN is not set +CONFIG_UBUNTU_HOST=m +CONFIG_UBUNTU_ODM_DRIVERS=y +CONFIG_UCB1400_CORE=m +CONFIG_UCC=y +CONFIG_UCC_FAST=y +CONFIG_UCC_SLOW=y +CONFIG_UCLAMP_BUCKETS_COUNT=5 +CONFIG_UCLAMP_TASK=y +CONFIG_UCLAMP_TASK_GROUP=y +CONFIG_UCS2_STRING=y +CONFIG_UCSI_ACPI=m +CONFIG_UCSI_CCG=m +# CONFIG_UDBG_RTAS_CONSOLE is not set +CONFIG_UDF_FS=m +CONFIG_UDMABUF=y +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_UEFI_CPER_X86=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +# CONFIG_UFS_DEBUG is not set +# CONFIG_UFS_FS_WRITE is not set +CONFIG_UHID=m +CONFIG_UID16=y +CONFIG_UIO=m +CONFIG_UIO_DFL=m +CONFIG_UIO_FSL_ELBC_GPCM=m +# CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 is not set +CONFIG_UIO_HV_GENERIC=m +CONFIG_ULI526X=m +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" +CONFIG_UNICODE=y +# CONFIG_UNICODE_NORMALIZATION_SELFTEST is not set +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_UNIPHIER_EFUSE=m +CONFIG_UNIPHIER_MDMAC=m +CONFIG_UNIPHIER_SYSTEM_BUS=y +CONFIG_UNIPHIER_THERMAL=m +CONFIG_UNIPHIER_WATCHDOG=m +CONFIG_UNIPHIER_XDMAC=m +CONFIG_UNISYSSPAR=y +CONFIG_UNISYS_VISORBUS=m +CONFIG_UNISYS_VISORHBA=m +CONFIG_UNISYS_VISORINPUT=m +CONFIG_UNISYS_VISORNIC=m +CONFIG_UNIX=y +CONFIG_UNIX98_PTYS=y +CONFIG_UNIX_DIAG=m +CONFIG_UNIX_SCM=y +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_GUESS is not set +# CONFIG_UNWINDER_ORC is not set +CONFIG_UPROBES=y +CONFIG_UPROBE_EVENTS=y +CONFIG_US5182D=m +CONFIG_USB=y +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set +CONFIG_USB4_NET=m +CONFIG_USBIP_CORE=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=8 +CONFIG_USBIP_VHCI_NR_HCS=1 +CONFIG_USBIP_VUDC=m +CONFIG_USBPCWATCHDOG=m +CONFIG_USB_ACM=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_AIRSPY=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_AN2720=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_ASPEED_VHUB=m +CONFIG_USB_ATM=m +CONFIG_USB_AUDIO=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_BDC_UDC=m +CONFIG_USB_BELKIN=y +CONFIG_USB_BRCMSTB=m +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CATC=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_CDNS3=m +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_CDNS3_IMX=m +CONFIG_USB_CDNS3_PCI_WRAP=m +CONFIG_USB_CDNS3_TI=m +CONFIG_USB_CDNSP_GADGET=y +CONFIG_USB_CDNSP_HOST=y +CONFIG_USB_CDNSP_PCI=m +CONFIG_USB_CDNS_HOST=y +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CHAOSKEY=m +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_IMX=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_TEGRA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_COMMON=y +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +CONFIG_USB_CONFIGFS_F_TCM=y +CONFIG_USB_CONFIGFS_F_UAC1=y +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY=y +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_CXACRU=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_DEFAULT_PERSIST=y +CONFIG_USB_DSBR=m +# CONFIG_USB_DUMMY_HCD is not set +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_DUAL_ROLE is not set +CONFIG_USB_DWC2_HOST=y +# CONFIG_USB_DWC2_PERIPHERAL is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_DWC3=m +CONFIG_USB_DWC3_DUAL_ROLE=y +CONFIG_USB_DWC3_EXYNOS=m +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_HAPS=m +# CONFIG_USB_DWC3_HOST is not set +CONFIG_USB_DWC3_IMX8MP=m +CONFIG_USB_DWC3_KEYSTONE=m +CONFIG_USB_DWC3_MESON_G12A=m +CONFIG_USB_DWC3_OF_SIMPLE=m +CONFIG_USB_DWC3_OMAP=m +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_QCOM=m +CONFIG_USB_DWC3_ULPI=y +CONFIG_USB_DWC3_XILINX=m +CONFIG_USB_DYNAMIC_MINORS=y +CONFIG_USB_EG20T=m +CONFIG_USB_EHCI_BRCMSTB=m +CONFIG_USB_EHCI_EXYNOS=y +CONFIG_USB_EHCI_FSL=m +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_HCD_NPCM7XX=m +CONFIG_USB_EHCI_HCD_OMAP=m +CONFIG_USB_EHCI_HCD_ORION=y +CONFIG_USB_EHCI_HCD_PPC_OF=y +CONFIG_USB_EHCI_PCI=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TEGRA=m +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_EMI26=m +CONFIG_USB_EMI62=m +CONFIG_USB_EPSON2888=y +CONFIG_USB_ETH=m +CONFIG_USB_ETH_EEM=y +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_FHCI_HCD=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUSB300=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_TCM=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC1_LEGACY=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_GADGETFS=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_XILINX=m +CONFIG_USB_GL860=m +CONFIG_USB_GOKU=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_GSPCA=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_HID=m +CONFIG_USB_G_MULTI_CDC=y +CONFIG_USB_G_MULTI_RNDIS=y +CONFIG_USB_G_NCM=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_HACKRF=m +# CONFIG_USB_HCD_TEST_MODE is not set +CONFIG_USB_HID=m +CONFIG_USB_HIDDEV=y +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_HSIC_USB4604=m +CONFIG_USB_HSO=m +CONFIG_USB_HUB_USB251XB=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_IPHETH=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1301=m +CONFIG_USB_ISP1760=m +CONFIG_USB_ISP1760_DUAL_ROLE=y +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_HCD=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +CONFIG_USB_ISP1761_UDC=y +CONFIG_USB_KAWETH=m +CONFIG_USB_KBD=m +CONFIG_USB_KC2190=y +CONFIG_USB_KEENE=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_LCD=m +CONFIG_USB_LD=m +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_LED_TRIG=y +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LGM_PHY=m +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_M5602=m +# CONFIG_USB_M66592 is not set +CONFIG_USB_MA901=m +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_MAX3420_UDC=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MON=m +CONFIG_USB_MOUSE=m +CONFIG_USB_MR800=m +CONFIG_USB_MSI2500=m +CONFIG_USB_MTU3=m +# CONFIG_USB_MTU3_DEBUG is not set +CONFIG_USB_MTU3_DUAL_ROLE=y +# CONFIG_USB_MTU3_GADGET is not set +# CONFIG_USB_MTU3_HOST is not set +CONFIG_USB_MUSB_AM35X=m +CONFIG_USB_MUSB_DSPS=m +CONFIG_USB_MUSB_DUAL_ROLE=y +# CONFIG_USB_MUSB_GADGET is not set +# CONFIG_USB_MUSB_HOST is not set +CONFIG_USB_MUSB_MEDIATEK=m +CONFIG_USB_MUSB_OMAP2PLUS=m +CONFIG_USB_MUSB_SUNXI=m +CONFIG_USB_MUSB_TUSB6010=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_MXS_PHY=y +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_OHCI_EXYNOS=y +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_OMAP3=m +CONFIG_USB_OHCI_HCD_PCI=y +# CONFIG_USB_OHCI_HCD_PPC_OF_BE is not set +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_PCI=y +CONFIG_USB_PEGASUS=m +CONFIG_USB_PHY=y +CONFIG_USB_PRINTER=m +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_USB_PXA27X=m +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_RAINSHADOW_CEC=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_RAW_GADGET=m +CONFIG_USB_RENESAS_USB3=m +CONFIG_USB_RENESAS_USBHS=m +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_RENESAS_USBHS_UDC=m +CONFIG_USB_ROLES_INTEL_XHCI=m +CONFIG_USB_ROLE_SWITCH=y +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_USB_S2255=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_DEBUG=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_F8153X=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_UPD78F0730=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_XR=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_SI470X=m +CONFIG_USB_SI4713=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_SL811_CS=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SNP_CORE=m +CONFIG_USB_SNP_UDC_PLAT=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_STORAGE=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_DATAFAB=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STV06XX=m +CONFIG_USB_TEGRA_PHY=m +CONFIG_USB_TEGRA_XUDC=m +CONFIG_USB_TEST=m +CONFIG_USB_TMC=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_U132_HCD=m +CONFIG_USB_UAS=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_UHCI_ASPEED=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_UHCI_PLATFORM=y +CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC=y +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_ULPI_VIEWPORT=y +CONFIG_USB_USBNET=m +CONFIG_USB_USS720=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_VL600=m +CONFIG_USB_WDM=m +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_HISTB=m +CONFIG_USB_XHCI_MTK=m +CONFIG_USB_XHCI_MVEBU=m +CONFIG_USB_XHCI_PCI=m +CONFIG_USB_XHCI_PCI_RENESAS=m +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_XHCI_RCAR=m +CONFIG_USB_XHCI_TEGRA=m +CONFIG_USB_XUSBATM=m +CONFIG_USB_YUREX=m +CONFIG_USB_ZD1201=m +CONFIG_USB_ZERO=m +CONFIG_USB_ZR364XX=m +CONFIG_USELIB=y +CONFIG_USERFAULTFD=y +CONFIG_USERIO=m +CONFIG_USERMODE_DRIVER=y +CONFIG_USER_NS=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_USE_OF=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_UTS_NS=y +CONFIG_UV_MMTIMER=m +CONFIG_UV_SYSFS=m +CONFIG_U_SERIAL_CONSOLE=y +CONFIG_V4L2_ASYNC=m +CONFIG_V4L2_FLASH_LED_CLASS=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_H264=m +CONFIG_V4L2_JPEG_HELPER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_VBOXGUEST=m +CONFIG_VBOXSF_FS=m +CONFIG_VCHIQ_CDEV=y +CONFIG_VCNL3020=m +CONFIG_VCNL4000=m +CONFIG_VCNL4035=m +CONFIG_VDPA_SIM=m +CONFIG_VDPA_SIM_BLOCK=m +CONFIG_VDPA_SIM_NET=m +CONFIG_VDPA_USER=m +CONFIG_VDSO=y +CONFIG_VDSO32=y +CONFIG_VEML6030=m +CONFIG_VEML6070=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VETH=m +CONFIG_VEXPRESS_CONFIG=y +CONFIG_VF610_ADC=m +CONFIG_VF610_DAC=m +CONFIG_VFAT_FS=y +CONFIG_VFIO_AMBA=m +CONFIG_VFIO_AP=m +CONFIG_VFIO_CCW=m +CONFIG_VFIO_FSL_MC=m +CONFIG_VFIO_IOMMU_SPAPR_TCE=y +CONFIG_VFIO_MDEV=m +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI_IGD=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_VGA=y +CONFIG_VFIO_PLATFORM=m +CONFIG_VFIO_PLATFORM_AMDXGBE_RESET=m +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET=m +CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET=m +CONFIG_VFIO_SPAPR_EEH=y +CONFIG_VFP=y +CONFIG_VFPv3=y +CONFIG_VF_USE_ARM_GLOBAL_TIMER=y +# CONFIG_VF_USE_PIT_TIMER is not set +CONFIG_VGASTATE=m +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_CONSOLE=y +CONFIG_VGA_SWITCHEROO=y +CONFIG_VHOST=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_RING=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VDPA=m +CONFIG_VHOST_VSOCK=m +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +CONFIG_VIA_VELOCITY=m +CONFIG_VIA_WDT=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_ADV748X=m +CONFIG_VIDEO_ADV7511=m +CONFIG_VIDEO_ADV7511_CEC=y +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_ALLEGRO_DVT=m +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_ASPEED=m +CONFIG_VIDEO_ATOMISP=m +CONFIG_VIDEO_ATOMISP_GC0310=m +CONFIG_VIDEO_ATOMISP_GC2235=m +# CONFIG_VIDEO_ATOMISP_ISP2401 is not set +CONFIG_VIDEO_ATOMISP_LM3554=m +CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER=m +CONFIG_VIDEO_ATOMISP_MT9M114=m +CONFIG_VIDEO_ATOMISP_OV2680=m +CONFIG_VIDEO_ATOMISP_OV2722=m +CONFIG_VIDEO_ATOMISP_OV5693=m +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_BCM2835=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_CADENCE=y +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_COBALT=m +CONFIG_VIDEO_CODA=m +CONFIG_VIDEO_CPIA2=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_CX23885=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX25840=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_DEV=m +CONFIG_VIDEO_DT3155=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_FB_IVTV_FORCE_PAT=y +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m +CONFIG_VIDEO_GS1662=m +CONFIG_VIDEO_HANTRO=m +CONFIG_VIDEO_HANTRO_IMX8M=y +CONFIG_VIDEO_HANTRO_ROCKCHIP=y +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX334=m +CONFIG_VIDEO_IMX335=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_IMX412=m +CONFIG_VIDEO_IMX7_CSI=m +CONFIG_VIDEO_IMX8_JPEG=m +CONFIG_VIDEO_IMX_CSI=m +CONFIG_VIDEO_IMX_MEDIA=m +CONFIG_VIDEO_IMX_PXP=m +CONFIG_VIDEO_IMX_VDOA=m +CONFIG_VIDEO_IPU3_CIO2=m +CONFIG_VIDEO_IPU3_IMGU=m +CONFIG_VIDEO_IR_I2C=m +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_MAX9286=m +CONFIG_VIDEO_MEDIATEK_VPU=m +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_VIDEO_MESON_GE2D=m +CONFIG_VIDEO_MESON_VDEC=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_MUX=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_OMAP2_VOUT=m +CONFIG_VIDEO_OMAP2_VOUT_VRFB=y +CONFIG_VIDEO_OMAP3=m +# CONFIG_VIDEO_OMAP3_DEBUG is not set +CONFIG_VIDEO_OMAP4=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV2740=m +CONFIG_VIDEO_OV5640=m +CONFIG_VIDEO_OV5645=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9282=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV9734=m +# CONFIG_VIDEO_PCI_SKELETON is not set +CONFIG_VIDEO_PVRUSB2=m +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_PVRUSB2_DVB=y +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_QCOM_CAMSS=m +CONFIG_VIDEO_QCOM_VENUS=m +CONFIG_VIDEO_RCAR_CSI2=m +CONFIG_VIDEO_RCAR_DRIF=m +CONFIG_VIDEO_RCAR_VIN=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RENESAS_CEU=m +CONFIG_VIDEO_RENESAS_FCP=m +CONFIG_VIDEO_RENESAS_FDP1=m +CONFIG_VIDEO_RENESAS_JPU=m +CONFIG_VIDEO_RENESAS_VSP1=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_ROCKCHIP_ISP1=m +CONFIG_VIDEO_ROCKCHIP_RGA=m +CONFIG_VIDEO_ROCKCHIP_VDEC=m +CONFIG_VIDEO_S5C73M3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_SAA6588=m +CONFIG_VIDEO_SAA6752HS=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_GO7007=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_SAA7185=m +# CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS is not set +CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC=m +CONFIG_VIDEO_SAMSUNG_S5P_G2D=m +CONFIG_VIDEO_SAMSUNG_S5P_JPEG=m +CONFIG_VIDEO_SAMSUNG_S5P_MFC=m +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_SONY_BTF_MPX=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_ST_MIPID02=m +CONFIG_VIDEO_SUN4I_CSI=m +CONFIG_VIDEO_SUN6I_CSI=m +CONFIG_VIDEO_SUN8I_DEINTERLACE=m +CONFIG_VIDEO_SUN8I_ROTATE=m +CONFIG_VIDEO_SUNXI=y +CONFIG_VIDEO_SUNXI_CEDRUS=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_TEGRA=m +CONFIG_VIDEO_TEGRA_TPG=y +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_THS8200=m +CONFIG_VIDEO_TI_CAL=m +CONFIG_VIDEO_TI_CSC=m +CONFIG_VIDEO_TI_SC=m +CONFIG_VIDEO_TI_VPDMA=m +CONFIG_VIDEO_TI_VPE=m +# CONFIG_VIDEO_TI_VPE_DEBUG is not set +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +CONFIG_VIDEO_USBTV=m +CONFIG_VIDEO_V4L2=m +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_VICODEC=m +CONFIG_VIDEO_VIM2M=m +CONFIG_VIDEO_VIMC=m +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_XILINX=m +CONFIG_VIDEO_XILINX_CSI2RXSS=m +CONFIG_VIDEO_XILINX_TPG=m +CONFIG_VIDEO_XILINX_VTC=m +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_ZR36060=m +CONFIG_VIPERBOARD_ADC=m +CONFIG_VIRTIO=y +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_BLK=m +CONFIG_VIRTIO_CONSOLE=y +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VIRTIO_FS=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_IOMMU=y +CONFIG_VIRTIO_MEM=m +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_NET=m +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_PCI_LIB=y +CONFIG_VIRTIO_PMEM=m +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_VIRTUALIZATION=y +CONFIG_VIRT_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRT_TO_BUS=y +CONFIG_VIRT_WIFI=m +CONFIG_VISCONTI_WATCHDOG=m +CONFIG_VITESSE_PHY=m +CONFIG_VL53L0X_I2C=m +CONFIG_VL6180=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_VMAP_PFN=y +CONFIG_VMAP_STACK=y +CONFIG_VMCP=y +CONFIG_VMCP_CMA_SIZE=4 +CONFIG_VMD=m +CONFIG_VME_CA91CX42=m +CONFIG_VME_FAKE=m +CONFIG_VME_TSI148=m +CONFIG_VME_USER=m +CONFIG_VMIVME_7805=m +CONFIG_VMLINUX_MAP=y +CONFIG_VMLOGRDR=m +# CONFIG_VMSPLIT_1G is not set +# CONFIG_VMSPLIT_2G is not set +CONFIG_VMSPLIT_3G=y +# CONFIG_VMSPLIT_3G_OPT is not set +CONFIG_VMWARE_BALLOON=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_VMWARE_VMCI=m +CONFIG_VMWARE_VMCI_VSOCKETS=m +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_VORTEX=m +CONFIG_VP_VDPA=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VSOCKMON=m +CONFIG_VSX=y +CONFIG_VT=y +CONFIG_VT6655=m +CONFIG_VT6656=m +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_VT_HW_CONSOLE_BINDING=y +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_VXLAN=m +CONFIG_VZ89X=m +CONFIG_W1_CON=y +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_GPIO=m +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_MXC=m +CONFIG_W1_MASTER_SGI=m +CONFIG_W1_SLAVE_DS2405=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2438=m +CONFIG_W1_SLAVE_DS250X=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_DS28E17=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_THERM=m +CONFIG_W83627HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_WAFER_WDT=m +CONFIG_WANT_COMPAT_NETLINK_MESSAGES=y +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_WANXL=m +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP=y +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=m +CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL=m +CONFIG_WATCHDOG_RTAS=m +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCH_QUEUE=y +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_WDAT_WDT=m +# CONFIG_WERROR is not set +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PRIV=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WFX=m +CONFIG_WIL6210=m +CONFIG_WIL6210_DEBUGFS=y +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WILC1000=m +CONFIG_WILC1000_HW_OOB_INTR=y +CONFIG_WILC1000_SDIO=m +CONFIG_WILC1000_SPI=m +CONFIG_WILCO_EC=m +CONFIG_WILCO_EC_DEBUGFS=m +CONFIG_WILCO_EC_EVENTS=m +CONFIG_WILCO_EC_TELEMETRY=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WINBOND_840=m +CONFIG_WINDFARM=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WIRELESS_HOTKEY=m +CONFIG_WIZNET_BUS_ANY=y +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5100_SPI=m +CONFIG_WIZNET_W5300=m +# CONFIG_WKUP_M3_IPC is not set +CONFIG_WKUP_M3_RPROC=m +CONFIG_WL1251=m +CONFIG_WL1251_SDIO=m +CONFIG_WL1251_SPI=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_QUANTENNA=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLCORE=m +CONFIG_WLCORE_SDIO=m +CONFIG_WLCORE_SPI=m +CONFIG_WM831X_BACKUP=m +CONFIG_WM831X_POWER=m +CONFIG_WM831X_WATCHDOG=m +CONFIG_WM8350_POWER=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_WMI_BMOF=m +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +# CONFIG_WQ_WATCHDOG is not set +CONFIG_WWAN_HWSIM=m +# CONFIG_WW_MUTEX_SELFTEST is not set +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_X86=y +CONFIG_X86_16BIT=y +CONFIG_X86_5LEVEL=y +CONFIG_X86_64=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_X86_64_SMP=y +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_AMD_FREQ_SENSITIVITY=m +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_CMOV=y +CONFIG_X86_CMPXCHG64=y +# CONFIG_X86_CPA_STATISTICS is not set +CONFIG_X86_CPUID=m +CONFIG_X86_CPU_RESCTRL=y +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_X86_DEBUG_FPU=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_EXTENDED_PLATFORM=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_GOLDFISH is not set +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +# CONFIG_X86_INTEL_MID is not set +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_IOPL_IOPERM=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_MCE=y +CONFIG_X86_MCELOG_LEGACY=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_INJECT=m +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_MPPARSE=y +CONFIG_X86_MSR=m +CONFIG_X86_NEED_RELOCS=y +CONFIG_X86_NUMACHIP=y +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_PAT=y +CONFIG_X86_PCC_CPUFREQ=y +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_X86_PLATFORM_DRIVERS_DELL=y +CONFIG_X86_PLATFORM_DRIVERS_INTEL=y +CONFIG_X86_PMEM_LEGACY=y +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_SGX=y +CONFIG_X86_SGX_KVM=y +CONFIG_X86_SMAP=y +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_SPEEDSTEP_LIB=m +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_TSC=y +CONFIG_X86_UMIP=y +CONFIG_X86_UV=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_X86_VSMP is not set +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_X2APIC=y +CONFIG_X86_X32=y +CONFIG_XARRAY_MULTI=y +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_XENFS=m +CONFIG_XEN_512GB=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_BACKEND=y +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_COMPAT_XENFS=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_DOM0=y +CONFIG_XEN_EFI=y +CONFIG_XEN_FBDEV_FRONTEND=m +CONFIG_XEN_FRONT_PGDIR_SHBUF=m +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GNTDEV_DMABUF=y +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_XEN_GRANT_DMA_ALLOC=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_HAVE_VPMU=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_XEN_NETDEV_FRONTEND=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PCIDEV_FRONTEND=m +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_PV=y +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PVCALLS_FRONTEND=m +CONFIG_XEN_PVH=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_GUEST=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_PV_DOM0=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_SAVE_RESTORE=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_XEN_SYMS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_UNPOPULATED_ALLOC=y +CONFIG_XEN_WDT=m +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XFRM=y +CONFIG_XFRM_AH=m +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_ESPINTCP=y +CONFIG_XFRM_INTERFACE=m +CONFIG_XFRM_IPCOMP=m +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_OFFLOAD=y +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_USER=m +CONFIG_XFRM_USER_COMPAT=m +# CONFIG_XFS_DEBUG is not set +CONFIG_XFS_FS=m +# CONFIG_XFS_ONLINE_SCRUB is not set +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_RT=y +CONFIG_XFS_SUPPORT_V4=y +# CONFIG_XFS_WARN is not set +CONFIG_XGENE_DMA=m +CONFIG_XGENE_PMU=y +CONFIG_XGENE_SLIMPRO_MBOX=m +CONFIG_XIAOMI_WMI=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_DMA=m +CONFIG_XILINX_GMII2RGMII=m +CONFIG_XILINX_INTC=y +CONFIG_XILINX_PR_DECOUPLER=m +CONFIG_XILINX_VCU=m +CONFIG_XILINX_XADC=m +CONFIG_XILINX_ZYNQMP_DMA=m +CONFIG_XILINX_ZYNQMP_DPDMA=m +CONFIG_XILLYBUS_CLASS=m +CONFIG_XILLYBUS_OF=m +CONFIG_XILLYBUS_PCIE=m +CONFIG_XILLYUSB=m +CONFIG_XIL_AXIS_FIFO=m +CONFIG_XMON=y +# CONFIG_XMON_DEFAULT is not set +CONFIG_XMON_DEFAULT_RO_MODE=y +CONFIG_XMON_DISASSEMBLY=y +CONFIG_XOR_BLOCKS=m +CONFIG_XPOWER_PMIC_OPREGION=y +CONFIG_XPS=y +CONFIG_XXHASH=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_YAM=m +CONFIG_YAMAHA_YAS530=m +CONFIG_YENTA=m +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_Z3FOLD=m +CONFIG_ZBOOT_ROM_BSS=0x0 +CONFIG_ZBOOT_ROM_TEXT=0x0 +CONFIG_ZBUD=y +CONFIG_ZCRYPT=m +# CONFIG_ZCRYPT_DEBUG is not set +CONFIG_ZCRYPT_MULTIDEVNODES=y +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_ZEROPLUS_FF=y +# CONFIG_ZERO_CALL_USED_REGS is not set +CONFIG_ZFCP=m +CONFIG_ZISOFS=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZLIB_DFLTCC=y +CONFIG_ZLIB_INFLATE=y +CONFIG_ZONEFS_FS=m +CONFIG_ZONE_DEVICE=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ZOPT2201=m +CONFIG_ZPA2326=m +CONFIG_ZPA2326_I2C=m +CONFIG_ZPA2326_SPI=m +CONFIG_ZPOOL=y +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_DEF_COMP_842 is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +CONFIG_ZRAM_MEMORY_TRACKING=y +CONFIG_ZRAM_WRITEBACK=y +CONFIG_ZSMALLOC=y +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_ZSTD_COMPRESS=m +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_ZSWAP=y +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZYNQMP_FIRMWARE=y +# CONFIG_ZYNQMP_FIRMWARE_DEBUG is not set +CONFIG_ZYNQMP_IPI_MBOX=y +CONFIG_ZYNQMP_PM_DOMAINS=y +CONFIG_ZYNQMP_POWER=y diff --git a/debian.master/config/ppc64el/config.common.ppc64el b/debian.master/config/ppc64el/config.common.ppc64el new file mode 100644 index 00000000000000..6d5a7c98e0ffd6 --- /dev/null +++ b/debian.master/config/ppc64el/config.common.ppc64el @@ -0,0 +1,695 @@ +# +# Config options for config.common.ppc64el automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=29 +CONFIG_ARCH_MMAP_RND_BITS_MIN=14 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=13 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7 +CONFIG_ARCNET=m +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_RSXX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="powerpc64le-linux-gnu-gcc (Ubuntu 11.2.0-5ubuntu1) 11.2.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="" +CONFIG_CMDLINE_PARTITION=y +CONFIG_CMM=m +CONFIG_COMEDI=m +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +CONFIG_COMMON_CLK=y +CONFIG_COUNTER=m +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRAMFS=m +CONFIG_CRC8=m +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DP_CEC=y +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RCAR_LVDS is not set +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EVM_LOAD_X509=y +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +CONFIG_FB_IBM_GXT4500=y +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIXED_PHY=y +CONFIG_FORCE_MAX_ZONEORDER=9 +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=2048 +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +# CONFIG_HIBERNATION is not set +CONFIG_HID=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_SHPC is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +# CONFIG_HW_RANDOM_CCTRNG is not set +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0x5deadbeef0000000 +CONFIG_IMA_ARCH_POLICY=y +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig" +CONFIG_IMA_LOAD_X509=y +# CONFIG_IMA_NG_TEMPLATE is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y +CONFIG_IMA_SIG_TEMPLATE=y +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +CONFIG_KERNEL_GZIP=y +CONFIG_KEXEC_FILE=y +CONFIG_KVM=y +CONFIG_LAPB=m +# CONFIG_LATENCYTOP is not set +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=m +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMSTICK=m +# CONFIG_MEM_SOFT_DIRTY is not set +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_INTEL_PMT=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +# CONFIG_MFD_TPS65217 is not set +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MII=m +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_CQHCI=m +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_OF_PARTS=m +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +# CONFIG_NET_DSA_MSCC_FELIX is not set +CONFIG_NET_SELFTESTS=y +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=8 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=2048 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NVRAM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PANIC_TIMEOUT=10 +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +# CONFIG_PCCARD is not set +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCS_XPCS=m +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYLIB=y +CONFIG_PHYSICAL_START=0x00000000 +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PINCTRL=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=y +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +# CONFIG_SENSORS_Q54SJ108A2 is not set +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=y +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=y +CONFIG_TCG_TIS_I2C_NUVOTON=y +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TEST_DIV64=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +# CONFIG_TI_SOC_THERMAL is not set +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_DWC2_PCI=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_GADGET=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=y +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_CORE=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRT_CPU_ACCOUNTING_NATIVE is not set +CONFIG_VME_BUS=y +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.master/config/ppc64el/config.flavour.generic b/debian.master/config/ppc64el/config.flavour.generic new file mode 100644 index 00000000000000..bb7773a235d256 --- /dev/null +++ b/debian.master/config/ppc64el/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# diff --git a/debian.master/config/s390x/config.common.s390x b/debian.master/config/s390x/config.common.s390x new file mode 100644 index 00000000000000..e60452c4887439 --- /dev/null +++ b/debian.master/config/s390x/config.common.s390x @@ -0,0 +1,619 @@ +# +# Config options for config.common.s390x automatically generated by splitconfig.pl +# +# CONFIG_6LOWPAN is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ANDROID is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_APPLICOM is not set +# CONFIG_AQTION is not set +# CONFIG_ARCNET is not set +# CONFIG_ATA is not set +# CONFIG_ATALK is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_ATM is not set +CONFIG_AUTOFS4_FS=y +CONFIG_AUTOFS_FS=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# CONFIG_BAREUDP is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCMA is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_BCM_VK is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_C2PORT is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_CAIF is not set +# CONFIG_CAN is not set +# CONFIG_CB710_CORE is not set +CONFIG_CC_VERSION_TEXT="s390x-linux-gnu-gcc (Ubuntu 11.2.0-5ubuntu1) 11.2.0" +# CONFIG_CDROM_PKTCDVD is not set +CONFIG_CMA=y +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_CMM=y +# CONFIG_COMEDI is not set +# CONFIG_COMMON_CLK is not set +# CONFIG_COUNTER is not set +CONFIG_CPU_BIG_ENDIAN=y +# CONFIG_CRAMFS is not set +CONFIG_CRC8=m +CONFIG_CRYPTO_DEFLATE=m +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +# CONFIG_CXL_BUS is not set +CONFIG_DEBUG_INFO_BTF=y +# CONFIG_DECNET is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DMADEVICES is not set +# CONFIG_DMA_CMA is not set +CONFIG_DM_DEBUG=y +# CONFIG_DNET is not set +# CONFIG_DRM_AMDGPU is not set +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DP_CEC is not set +# CONFIG_DRM_ETNAVIV is not set +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_NXP_TDA9950 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_NOUVEAU is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m +# CONFIG_DRM_QXL is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_SIMPLEDRM is not set +# CONFIG_DRM_VGEM is not set +# CONFIG_DRM_VKMS is not set +# CONFIG_DS1682 is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_ECHO is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_EE1004 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EFS_FS is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_ETHOC is not set +# CONFIG_EVM_LOAD_X509 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_EXTCON is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_CARMINE is not set +CONFIG_FB_CFB_COPYAREA=m +CONFIG_FB_CFB_FILLRECT=m +CONFIG_FB_CFB_IMAGEBLIT=m +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_SM712 is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_TILEBLITTING is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FDDI is not set +# CONFIG_FEALNX is not set +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_FIXED_PHY=m +# CONFIG_FPGA_BRIDGE is not set +# CONFIG_FPGA_DFL is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_FUSION is not set +# CONFIG_GAMEPORT is not set +# CONFIG_GENERIC_PHY is not set +# CONFIG_GNSS is not set +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_AMD_FCH is not set +# CONFIG_GPIO_DWAPB is not set +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_RDC321X is not set +# CONFIG_GPIO_SIOX is not set +# CONFIG_GPIO_TPIC2810 is not set +# CONFIG_GPIO_VIRTIO is not set +# CONFIG_GREYBUS is not set +# CONFIG_HABANA_AI is not set +# CONFIG_HAMACHI is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HID is not set +# CONFIG_HMC6352 is not set +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_SHPC is not set +# CONFIG_HPFS_FS is not set +# CONFIG_HP_ILO is not set +# CONFIG_HSI is not set +# CONFIG_HSR is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HWMON is not set +# CONFIG_HWSPINLOCK is not set +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_XIPHERA is not set +CONFIG_HZ=100 +CONFIG_HZ_100=y +# CONFIG_HZ_1000 is not set +# CONFIG_HZ_250 is not set +CONFIG_I2C=m +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_CHARDEV=m +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# CONFIG_I2C_MUX_PCA9541 is not set +# CONFIG_I2C_MUX_PCA954x is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set +# CONFIG_I2C_VIRTIO is not set +# CONFIG_I2C_XILINX is not set +# CONFIG_I3C is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_ICS932S401 is not set +# CONFIG_IEEE802154 is not set +# CONFIG_IIO is not set +# CONFIG_IMA_ARCH_POLICY is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +# CONFIG_INFINIBAND_OCRDMA is not set +# CONFIG_INPUT_EVBUG is not set +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MATRIXKMAP is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +# CONFIG_IPACK_BUS is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_VS_TWOS is not set +CONFIG_IRQ_BYPASS_MANAGER=m +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_JFS_FS is not set +# CONFIG_JME is not set +CONFIG_JUMP_LABEL=y +# CONFIG_KARMA_PARTITION is not set +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KEXEC_FILE is not set +CONFIG_KVM=y +# CONFIG_LAPB is not set +# CONFIG_LATENCYTOP is not set +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_LLC2 is not set +CONFIG_LOG_BUF_SHIFT=18 +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MAC_PARTITION is not set +# CONFIG_MAILBOX is not set +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MCB is not set +# CONFIG_MCTP is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +CONFIG_MDIO_BUS=m +CONFIG_MDIO_DEVRES=m +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_MD_MULTIPATH=y +# CONFIG_MEDIATEK_GE_PHY is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_MEMORY is not set +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +# CONFIG_MEMSTICK is not set +CONFIG_MEM_SOFT_DIRTY=y +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ATC260X_I2C is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_INTEL_PMT is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_WCD934X is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MHI_BUS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MLX5_SF is not set +# CONFIG_MLXSW_I2C is not set +# CONFIG_MMC is not set +# CONFIG_MOST is not set +# CONFIG_MOTORCOMM_PHY is not set +# CONFIG_MTD is not set +# CONFIG_NET_DSA is not set +CONFIG_NET_SELFTESTS=m +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_NET_VENDOR_LITEX is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MICROSOFT is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_NFC is not set +# CONFIG_NFP is not set +CONFIG_NODES_SHIFT=1 +# CONFIG_NOZOMI is not set +CONFIG_NR_CPUS=512 +# CONFIG_NTB is not set +CONFIG_NTFS_RW=y +# CONFIG_NULL_TTY is not set +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +# CONFIG_NVMEM is not set +# CONFIG_NXP_C45_TJA11XX_PHY is not set +# CONFIG_N_GSM is not set +# CONFIG_OF is not set +# CONFIG_OMFS_FS is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_PACKING is not set +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_PARPORT is not set +# CONFIG_PC104 is not set +# CONFIG_PCCARD is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_PCI_EPF_NTB is not set +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCS_XPCS is not set +CONFIG_PGTABLE_LEVELS=5 +# CONFIG_PHANTOM is not set +# CONFIG_PHONET is not set +CONFIG_PHYLIB=m +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PINCTRL is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_POWERCAP is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_PPP is not set +CONFIG_PPS=m +# CONFIG_PPS_CLIENT_GPIO is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PSI_DEFAULT_DISABLED=y +# CONFIG_PSTORE is not set +CONFIG_PTDUMP_DEBUGFS=y +CONFIG_PTP_1588_CLOCK=m +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=m +# CONFIG_PVPANIC is not set +# CONFIG_PWM is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_QRTR is not set +# CONFIG_RAPIDIO is not set +# CONFIG_RAVE_SP_CORE is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RC_CORE is not set +# CONFIG_REGULATOR is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_REMOTEPROC is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_RFKILL is not set +# CONFIG_RMI4_CORE is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_RPMSG_VIRTIO is not set +# CONFIG_S2IO is not set +CONFIG_SCHED_SMT=y +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_BFA_FC is not set +# CONFIG_SCSI_BNX2X_FCOE is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_SCSI_CHELSIO_FCOE is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_EFCT is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_MPI3MR is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_QLA_FC is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_SNIC is not set +CONFIG_SCSI_SRP_ATTRS=m +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +CONFIG_SERIAL_CORE=m +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIO is not set +# CONFIG_SFC is not set +# CONFIG_SFC_FALCON is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_SLIP is not set +# CONFIG_SOC_TI is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_SOUND is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_SRAM is not set +# CONFIG_SSB is not set +# CONFIG_STAGING is not set +CONFIG_STANDALONE=y +# CONFIG_SUN_PARTITION is not set +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_SYSV_FS is not set +# CONFIG_TCG_TIS_I2C_ATMEL is not set +# CONFIG_TCG_TIS_I2C_CR50 is not set +# CONFIG_TCG_TIS_I2C_INFINEON is not set +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_THERMAL is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +# CONFIG_TTY_PRINTK is not set +# CONFIG_UACCE is not set +# CONFIG_UFS_FS is not set +# CONFIG_UIO_AEC is not set +# CONFIG_UIO_CIF is not set +# CONFIG_UIO_DMEM_GENIRQ is not set +# CONFIG_UIO_MF624 is not set +# CONFIG_UIO_NETX is not set +# CONFIG_UIO_PCI_GENERIC is not set +# CONFIG_UIO_PDRV_GENIRQ is not set +# CONFIG_UIO_PRUSS is not set +# CONFIG_UIO_SERCOS3 is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_USB4 is not set +# CONFIG_USB_SUPPORT is not set +# CONFIG_VDPA is not set +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +# CONFIG_VIRTIO_MMIO is not set +CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y +# CONFIG_VME_BUS is not set +# CONFIG_VMXNET3 is not set +# CONFIG_VXFS_FS is not set +# CONFIG_VXGE is not set +# CONFIG_W1 is not set +# CONFIG_WAN is not set +# CONFIG_WDTPCI is not set +# CONFIG_WWAN is not set +# CONFIG_X25 is not set +# CONFIG_XILINX_EMACLITE is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_SPARC is not set +# CONFIG_XZ_DEC_TEST is not set +# CONFIG_XZ_DEC_X86 is not set +# CONFIG_YELLOWFIN is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set diff --git a/debian.master/config/s390x/config.flavour.generic b/debian.master/config/s390x/config.flavour.generic new file mode 100644 index 00000000000000..bb7773a235d256 --- /dev/null +++ b/debian.master/config/s390x/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# diff --git a/debian.master/control.d/flavour-control.stub b/debian.master/control.d/flavour-control.stub new file mode 100644 index 00000000000000..fe08e02e154192 --- /dev/null +++ b/debian.master/control.d/flavour-control.stub @@ -0,0 +1,142 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-PKGVER-ABINUM-FLAVOUR +Recommends: BOOTLOADER, initramfs-tools | linux-initramfs-tool +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR +Suggests: fdutils, linux-doc | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Description: Linux kernel image for version PKGVER on DESC + This package contains the=SIGN-ME-TXT= Linux kernel image for version PKGVER on + DESC. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-PKGVER-ABINUM-FLAVOUR | linux-image-unsigned-PKGVER-ABINUM-FLAVOUR +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version PKGVER on DESC + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-PKGVER-ABINUM-FLAVOUR | linux-image-unsigned-PKGVER-ABINUM-FLAVOUR, crda | wireless-crda +Description: Linux kernel extra modules for version PKGVER on DESC + This package contains the Linux kernel extra modules for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-headers-PKGVER-ABINUM, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version PKGVER on DESC + This package provides kernel header files for version PKGVER on + DESC. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-PKGVER-ABINUM/debian.README.gz for details. + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR-dbgsym +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version PKGVER on DESC + This package provides the=SIGN-ME-TXT= kernel debug image for version PKGVER on + DESC. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-tools-PKGVER-ABINUM +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-cloud-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version PKGVER-ABINUM on + =HUMAN=. + diff --git a/debian.master/control.d/generic.inclusion-list b/debian.master/control.d/generic.inclusion-list new file mode 100644 index 00000000000000..0bb261f5369673 --- /dev/null +++ b/debian.master/control.d/generic.inclusion-list @@ -0,0 +1,298 @@ +arch/*/{crypto,kernel,oprofile} +arch/*/kvm/kvm.ko +arch/powerpc/kvm/kvm-hv.ko +arch/powerpc/kvm/kvm-pr.ko +arch/powerpc/kvm/vfio.ko +arch/powerpc/platforms/powernv/opal-prd.ko +arch/s390/* +arch/x86/kvm/kvm-amd.ko +arch/x86/kvm/kvm-intel.ko +crypto/* +drivers/acpi/* +drivers/ata/acard-ahci.ko +drivers/ata/ahci.ko +drivers/ata/ahci_platform.ko +drivers/ata/ahci_tegra.ko +drivers/ata/ata_generic.ko +drivers/ata/libahci.ko +drivers/ata/libahci_platform.ko +drivers/block/brd.ko +drivers/block/cryptoloop.ko +drivers/block/floppy.ko +drivers/block/loop.ko +drivers/block/nbd.ko +drivers/block/rbd.ko +drivers/block/virtio_blk.ko +drivers/block/xen-blkfront.ko +drivers/bus/tegra-aconnect.ko +drivers/char/hangcheck-timer.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/ipmi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/clk/clk-max77686.ko +drivers/cpufreq/tegra186-cpufreq.ko +drivers/cpufreq/tegra194-cpufreq.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/dma/tegra210-adma.ko +drivers/firmware/efi/* +drivers/firmware/iscsi_ibft.ko +drivers/gpio/gpio-max77620.ko +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/tegra/tegra-drm.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/gpu/drm/vboxvideo/vboxvideo.ko +drivers/gpu/host1x/host1x.ko +drivers/hid/hid-generic.ko +drivers/hid/hid-hyperv.ko +drivers/hid/hid.ko +drivers/hid/usbhid/usbhid.ko +drivers/hv/* +drivers/hwmon/ibmpowernv.ko +drivers/hwmon/pwm-fan.ko +drivers/i2c/busses/i2c-tegra-bpmp.ko +drivers/i2c/busses/i2c-tegra-bpmp.ko +drivers/i2c/busses/i2c-tegra.ko +drivers/infiniband/core/ib_addr.ko +drivers/infiniband/core/ib_cm.ko +drivers/infiniband/core/ib_core.ko +drivers/infiniband/core/ib_mad.ko +drivers/infiniband/core/ib_sa.ko +drivers/infiniband/core/iw_cm.ko +drivers/infiniband/core/rdma_cm.ko +drivers/infiniband/ulp/iser/ib_iser.ko +drivers/infiniband/ulp/isert/ib_isert.ko +drivers/input/evbug.ko +drivers/input/gameport/gameport.ko +drivers/input/input-leds.ko +drivers/input/joydev.ko +drivers/input/keyboard/gpio_keys.ko +drivers/input/misc/xen-kbdfront.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/memory/tegra/tegra210-emc.ko +drivers/message/fusion* +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/mmc/host/sdhci-tegra.ko +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/caif/caif_virtio.ko +drivers/net/dummy.ko +drivers/net/eql.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/ibm/* +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/iavf/iavf.ko +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/mellanox/* +drivers/net/ethernet/netronome/nfp/nfp.ko +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.ko +drivers/net/ethernet/stmicro/stmmac/stmmac-platform.ko +drivers/net/ethernet/stmicro/stmmac/stmmac.ko +drivers/net/fddi/* +drivers/net/geneve.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ifb.ko +drivers/net/ipvlan/* +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/mii.ko +drivers/net/netconsole.ko +drivers/net/pcs/pcs-xpcs.ko +drivers/net/phy/marvell.ko +drivers/net/phy/phylink.ko +drivers/net/ppp/* +drivers/net/ppp/bsd_comp.ko +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/wireguard/wireguard.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/nvme/host/nvme.ko +drivers/nvmem/nvmem_core.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/controller/dwc/pcie-tegra194.ko +drivers/pci/host/vmd.ko +drivers/phy/tegra/phy-tegra194-p2u.ko +drivers/pinctrl/pinctrl-max77620.ko +drivers/platform/x86/pvpanic.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/pwm/pwm-tegra.ko +drivers/regulator/fixed.ko +drivers/regulator/max77620-regulator.ko +drivers/rtc/rtc-max77686.ko +drivers/rtc/rtc-tegra.ko +drivers/s390/* +drivers/s390/block/xpram.ko +drivers/scsi/BusLogic.ko +drivers/scsi/aacraid/* +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/ibmvscsi/* +drivers/scsi/ipr.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/lpfc/* +drivers/scsi/megaraid/* +drivers/scsi/mpt3sas/* +drivers/scsi/osd/libosd.ko +drivers/scsi/osd/osd.ko +drivers/scsi/qla1280.ko +drivers/scsi/qla2xxx/* +drivers/scsi/raid_class.ko +drivers/scsi/scsi_transport_fc.ko +drivers/scsi/scsi_transport_iscsi.ko +drivers/scsi/scsi_transport_sas.ko +drivers/scsi/scsi_transport_spi.ko +drivers/scsi/sd_mod.ko +drivers/scsi/sr_mod.ko +drivers/scsi/virtio_scsi.ko +drivers/scsi/vmw_pvscsi.ko +drivers/spi/spi-tegra114.ko +drivers/staging/media/tegra-video/tegra-video.ko +drivers/target/loopback/tcm_loop.ko +drivers/target/target_core*.ko +drivers/thermal/tegra/tegra-bpmp-thermal.ko +drivers/tty/serial/jsm/* +drivers/tty/serial/serial-tegra.ko +drivers/uio/uio.ko +drivers/uio/uio_pdrv_genirq.ko +drivers/usb/gadget/udc/tegra-xudc.ko +drivers/usb/host/* +drivers/usb/storage/uas.ko +drivers/usb/storage/usb-storage.ko +drivers/vfio/* +drivers/vhost/* +drivers/video/fbdev/* +drivers/video/vgastate.ko +drivers/virt/vboxguest/vboxguest.ko +drivers/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +fs/9p/* +fs/aufs/aufs.ko +fs/autofs/autofs4.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/cifs/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fscache/* +fs/fuse/* +fs/isofs/* +fs/lockd/* +fs/nfs/* +fs/nfs_common/* +fs/nfsd/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/overlayfs/* +fs/shiftfs.ko +fs/squashfs/* +fs/udf/* +fs/ufs/* +fs/vboxsf/vboxsf.ko +fs/xfs/* +lib/* +net/6lowpan/* +net/802/* +net/8021q/* +net/9p/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bpfilter/* +net/bridge/* +net/can/* +net/ceph/libceph.ko +net/core/* +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/key/* +net/lapb/* +net/llc/* +net/netfilter/* +net/netlink/netlink_diag.ko +net/netrom/* +net/openvswitch/* +net/packet/af_packet_diag.ko +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +net/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +! find sound/core -name oss -prune -o -name *.ko -print +sound/drivers/pcsp/snd-pcsp.ko +sound/pci/hda/snd-hda-tegra.ko +sound/pci/snd-ens1370.ko +sound/soc/tegra/snd-soc-tegra186-dspk.ko +sound/soc/tegra/snd-soc-tegra210-admaif.ko +sound/soc/tegra/snd-soc-tegra210-ahub.ko +sound/soc/tegra/snd-soc-tegra210-dmic.ko +sound/soc/tegra/snd-soc-tegra210-i2s.ko +sound/soundcore.ko +ubuntu/ubuntu-host/ubuntu-host.ko diff --git a/debian.master/control.d/linux-doc.stub b/debian.master/control.d/linux-doc.stub new file mode 100644 index 00000000000000..a0e04473286d48 --- /dev/null +++ b/debian.master/control.d/linux-doc.stub @@ -0,0 +1,12 @@ +Package: linux-doc +Build-Profiles: +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel specific documentation for version PKGVER + This package provides the various documents in the PKGVER kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/SRCPKGNAME-doc/00-INDEX for a list of what is + contained in each file. diff --git a/debian.master/control.d/linux-libc-dev.stub b/debian.master/control.d/linux-libc-dev.stub new file mode 100644 index 00000000000000..fb045233d40178 --- /dev/null +++ b/debian.master/control.d/linux-libc-dev.stub @@ -0,0 +1,12 @@ +Package: linux-libc-dev +Architecture: amd64 armhf arm64 i386 ppc64el riscv64 s390x +Depends: ${misc:Depends} +Conflicts: linux-kernel-headers +Replaces: linux-kernel-headers +Provides: linux-kernel-headers, aufs-dev +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use SRCPKGNAME-headers-* packages for that. diff --git a/debian.master/control.d/vars.generic b/debian.master/control.d/vars.generic new file mode 100644 index 00000000000000..ca144cfac8962b --- /dev/null +++ b/debian.master/control.d/vars.generic @@ -0,0 +1,6 @@ +arch="amd64 armhf arm64 ppc64el s390x" +supported="Generic" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.master/control.d/vars.generic-64k b/debian.master/control.d/vars.generic-64k new file mode 100644 index 00000000000000..82213f4803fc0d --- /dev/null +++ b/debian.master/control.d/vars.generic-64k @@ -0,0 +1,6 @@ +arch="arm64" +supported="Generic 64K pages" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-efi-arm64 [arm64] | flash-kernel [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" diff --git a/debian.master/control.d/vars.generic-lpae b/debian.master/control.d/vars.generic-lpae new file mode 100644 index 00000000000000..107ebc52a0b3ec --- /dev/null +++ b/debian.master/control.d/vars.generic-lpae @@ -0,0 +1,6 @@ +arch="armhf" +supported="Generic LPAE" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="flash-kernel [armhf] | grub-efi-arm [armhf]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" diff --git a/debian.master/control.d/vars.lowlatency b/debian.master/control.d/vars.lowlatency new file mode 100644 index 00000000000000..02af97ae921aad --- /dev/null +++ b/debian.master/control.d/vars.lowlatency @@ -0,0 +1,6 @@ +arch="amd64" +supported="Lowlatency" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.master/control.stub.in b/debian.master/control.stub.in new file mode 100644 index 00000000000000..4d0cb5f3aca7b0 --- /dev/null +++ b/debian.master/control.stub.in @@ -0,0 +1,155 @@ +Source: SRCPKGNAME +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + cpio, + kmod , + makedumpfile [amd64] , + libcap-dev , + libelf-dev , + libnewt-dev , + libiberty-dev , + default-jdk-headless , + java-common , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + gawk , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , + libnuma-dev [amd64 arm64 ppc64el s390x] , + dkms , + curl , + zstd [amd64 s390x] , + dwarves [amd64 arm64 armhf ppc64el s390x] , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-sphinx , + python3-sphinx-rtd-theme , + fontconfig , + python3-docutils , + imagemagick , + graphviz , + dvipng , + fonts-noto-cjk , + latexmk , + librsvg2-bin , +Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/=SERIES= +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: linux-source-PKGVER +Build-Profiles: +Architecture: all +Section: devel +Priority: optional +Provides: linux-source +Depends: ${misc:Depends}, binutils, bzip2, coreutils +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version PKGVER with Ubuntu patches + This package provides the source code for the Linux kernel version + PKGVER. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: SRCPKGNAME-headers-PKGVER-ABINUM +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, lsb-release +Description: Linux kernel version specific tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER. + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-cloud-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel version specific cloud tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools for cloud tools for version PKGVER. + +Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-cloud-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-tools-host +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, python3 +Description: Linux kernel VM host tools + This package provides kernel tools useful for VM hosts. + diff --git a/debian.master/copyright b/debian.master/copyright new file mode 100644 index 00000000000000..d1d04a6d669749 --- /dev/null +++ b/debian.master/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/debian.master/etc/getabis b/debian.master/etc/getabis new file mode 100644 index 00000000000000..19e1aa8da3a4b6 --- /dev/null +++ b/debian.master/etc/getabis @@ -0,0 +1,18 @@ +repo_list=( + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux" + "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux" + "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux" +) + +package_prefixes linux-buildinfo + +getall armhf generic +getall armhf generic-lpae +getall amd64 generic lowlatency +getall arm64 generic generic-64k +getall ppc64el generic +getall s390x generic diff --git a/debian.master/etc/kernelconfig b/debian.master/etc/kernelconfig new file mode 100644 index 00000000000000..653d2c21737abb --- /dev/null +++ b/debian.master/etc/kernelconfig @@ -0,0 +1,2 @@ +archs="amd64 armhf arm64 ppc64el s390x" +family='ubuntu' diff --git a/debian.master/modprobe.d/common.conf b/debian.master/modprobe.d/common.conf new file mode 100644 index 00000000000000..e0fbbd6e060d43 --- /dev/null +++ b/debian.master/modprobe.d/common.conf @@ -0,0 +1,3 @@ +# LP:1434842 -- disable OSS drivers by default to allow pulseaudio to emulate +blacklist snd-mixer-oss +blacklist snd-pcm-oss diff --git a/debian.master/reconstruct b/debian.master/reconstruct new file mode 100755 index 00000000000000..039e4d0069c5c2 --- /dev/null +++ b/debian.master/reconstruct @@ -0,0 +1,2 @@ +#!/bin/sh +exit 0 diff --git a/debian.master/rules.d/amd64.mk b/debian.master/rules.d/amd64.mk new file mode 100644 index 00000000000000..7654171a8637ce --- /dev/null +++ b/debian.master/rules.d/amd64.mk @@ -0,0 +1,24 @@ +human_arch = 64 bit x86 +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic lowlatency +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true +do_tools_x86 = true +do_tools_hyperv = true +do_tools_host = true +do_extras_package = true +do_tools_common = true +do_tools_acpidbg = true +do_zfs = true +do_odm_drivers = true diff --git a/debian.master/rules.d/arm64.mk b/debian.master/rules.d/arm64.mk new file mode 100644 index 00000000000000..e0415a4075ace0 --- /dev/null +++ b/debian.master/rules.d/arm64.mk @@ -0,0 +1,22 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = generic generic-64k +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +no_dumpfile = true +uefi_signed = true + +vdso = vdso_install + +do_extras_package = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +do_dtbs = true +do_zfs = true diff --git a/debian.master/rules.d/armhf.mk b/debian.master/rules.d/armhf.mk new file mode 100644 index 00000000000000..99c49b8f42ae66 --- /dev/null +++ b/debian.master/rules.d/armhf.mk @@ -0,0 +1,17 @@ +human_arch = ARM (hard float) +build_arch = arm +header_arch = arm +defconfig = defconfig +flavours = generic generic-lpae +build_image = zImage +kernel_file = arch/$(build_arch)/boot/zImage +install_file = vmlinuz +no_dumpfile = true + +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +do_dtbs = true diff --git a/debian.master/rules.d/hooks.mk b/debian.master/rules.d/hooks.mk new file mode 100644 index 00000000000000..2d02e672a9c93e --- /dev/null +++ b/debian.master/rules.d/hooks.mk @@ -0,0 +1,3 @@ +do_enforce_all = true +# Mainline Build. +do_mainline_build=true diff --git a/debian.master/rules.d/i386.mk b/debian.master/rules.d/i386.mk new file mode 100644 index 00000000000000..30c9ecb85bc2fc --- /dev/null +++ b/debian.master/rules.d/i386.mk @@ -0,0 +1,18 @@ +human_arch = 32 bit x86 +build_arch = i386 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic lowlatency +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +do_flavour_image_package = false +do_tools = false +do_tools_common = false +do_extras_package = false +do_source_package = false +do_doc_package = false +do_flavour_header_package = false +do_common_headers_indep = false diff --git a/debian.master/rules.d/ppc64el.mk b/debian.master/rules.d/ppc64el.mk new file mode 100644 index 00000000000000..71b95e9f281bca --- /dev/null +++ b/debian.master/rules.d/ppc64el.mk @@ -0,0 +1,19 @@ +human_arch = PowerPC 64el +build_arch = powerpc +header_arch = $(build_arch) +defconfig = pseries_le_defconfig +flavours = generic +build_image = vmlinux.strip +kernel_file = arch/powerpc/boot/vmlinux.strip +install_file = vmlinux +no_dumpfile = true +do_extras_package = true +opal_signed = false +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +#do_flavour_image_package = false +do_zfs = true diff --git a/debian.master/rules.d/riscv64.mk b/debian.master/rules.d/riscv64.mk new file mode 100644 index 00000000000000..425537f83142c2 --- /dev/null +++ b/debian.master/rules.d/riscv64.mk @@ -0,0 +1,20 @@ +human_arch = RISC-V +build_arch = riscv +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic +build_image = Image +kernel_file = arch/$(build_arch)/boot/Image +install_file = vmlinuz + +vdso = vdso_install +no_dumpfile = true + +do_flavour_image_package = false +do_tools = false +do_tools_common = false +do_extras_package = false +do_source_package = false +do_doc_package = false +do_flavour_header_package = false +do_common_headers_indep = false diff --git a/debian.master/rules.d/s390x.mk b/debian.master/rules.d/s390x.mk new file mode 100644 index 00000000000000..eb8a131afbbfb2 --- /dev/null +++ b/debian.master/rules.d/s390x.mk @@ -0,0 +1,21 @@ +human_arch = System 390x +build_arch = s390 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz + +vdso = vdso_install +no_dumpfile = true + +do_extras_package = true +sipl_signed = false +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +do_zfs = true diff --git a/debian.master/rules.d/x32.mk b/debian.master/rules.d/x32.mk new file mode 100644 index 00000000000000..84918880e252c9 --- /dev/null +++ b/debian.master/rules.d/x32.mk @@ -0,0 +1,13 @@ +human_arch = 64 bit x86 (32 bit userspace) +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +uefi_signed = true + +do_flavour_image_package = false diff --git a/debian.master/tracking-bug b/debian.master/tracking-bug new file mode 100644 index 00000000000000..006473fe3bb2e2 --- /dev/null +++ b/debian.master/tracking-bug @@ -0,0 +1 @@ +1952583 d2021.10.26-5 diff --git a/debian.master/variants b/debian.master/variants new file mode 100644 index 00000000000000..6830778569ab54 --- /dev/null +++ b/debian.master/variants @@ -0,0 +1,3 @@ +-- +-hwe-20.04 +-hwe-20.04-edge diff --git a/debian/certs/canonical-livepatch-all.pem b/debian/certs/canonical-livepatch-all.pem new file mode 100644 index 00000000000000..3f360f74344d84 --- /dev/null +++ b/debian/certs/canonical-livepatch-all.pem @@ -0,0 +1,121 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + c7:7e:51:6a:1c:25:cd:40 + Signature Algorithm: sha512WithRSAEncryption + Issuer: CN = Canonical Ltd. Live Patch Signing + Validity + Not Before: Jul 18 23:41:27 2016 GMT + Not After : Jul 16 23:41:27 2026 GMT + Subject: CN = Canonical Ltd. Live Patch Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public-Key: (4096 bit) + Modulus: + 00:bd:74:ee:72:b3:4a:ab:e6:31:e8:29:24:c2:bd: + 46:98:32:c0:39:ee:a3:fb:8a:ad:fe:ab:1a:5b:a3: + 2e:a1:80:db:79:61:9e:47:79:2c:75:57:a2:21:f0: + 93:f6:87:f2:9b:4b:9d:2f:b3:58:61:28:3c:41:70: + 13:16:a1:72:90:c9:d5:16:71:7c:e0:30:f9:28:5e: + 48:20:36:00:69:b7:59:9f:a3:ec:a8:eb:55:41:9f: + 38:1e:22:4a:57:20:f4:83:59:49:c5:00:93:d3:33: + 02:92:d1:fc:f0:84:3b:4a:5b:8f:b6:73:9a:89:fa: + 30:1e:e6:2a:68:f2:91:ef:59:57:3d:dc:1c:52:6f: + 5e:e6:9b:b5:b8:7c:98:c9:13:d1:39:68:01:67:91: + e0:d3:67:72:16:0a:5e:16:83:45:31:4f:b5:2b:b3: + f6:40:86:89:3a:84:6e:6f:16:61:bc:70:84:be:5a: + 13:36:7b:82:ea:07:19:fc:18:c1:16:c6:32:0b:7d: + 2c:6b:c4:21:b9:38:6b:31:dc:d9:0c:ad:56:40:68: + 7c:e3:c6:64:8e:bf:1c:e0:72:3e:6c:db:d2:73:79: + da:d7:c5:2f:5d:04:7d:b0:07:1e:95:dd:2a:47:5e: + bf:3e:3a:c8:66:f6:67:0f:d4:2a:f1:e2:71:59:d2: + 6c:7b:a0:37:ac:e6:97:80:30:13:97:48:d5:74:fc: + 38:68:e4:57:cb:99:69:5a:84:27:ac:98:51:e4:64: + bd:91:62:e8:58:27:06:2a:b9:0b:b8:08:e5:e5:b4: + 51:a7:a2:10:df:4e:07:6c:a0:3b:96:f2:6e:df:75: + 8c:97:1e:64:a0:9a:86:9b:98:26:f9:d8:b7:de:5b: + 21:b7:af:89:01:a3:f7:98:6b:da:19:ba:86:ef:ef: + f1:ce:bb:2f:89:ed:c0:b6:1b:e5:5b:f8:90:11:9a: + 52:93:e9:be:f7:35:b9:08:cb:ba:c3:ed:2f:73:af: + cc:96:07:55:b5:de:f6:03:f6:f1:89:f9:21:40:76: + c1:69:f2:61:cc:9a:94:df:9c:ec:6a:65:38:be:d1: + 4e:2a:87:c7:2f:3e:53:ae:8b:9f:54:a1:09:59:64: + 25:aa:a9:d8:44:a9:a8:a0:71:e1:32:aa:4c:32:fd: + 44:28:cc:9c:6f:8e:db:81:7e:6f:fa:00:56:c5:e5: + 03:46:63:fb:8e:71:8d:e3:13:91:9f:ac:60:3e:64: + f3:df:25:34:09:fa:2d:96:9f:16:05:ea:93:f5:e6: + 00:08:27:32:7b:3c:bd:ee:70:24:6c:3b:55:e9:db: + f4:10:2d:20:06:b4:ca:e9:29:65:55:ad:f6:52:54: + 5f:e5:a3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Key Usage: + Digital Signature + X509v3 Subject Key Identifier: + 14:DF:34:D1:A8:7C:F3:76:25:AB:EC:03:9E:F2:BF:52:12:49:B9:69 + X509v3 Authority Key Identifier: + keyid:14:DF:34:D1:A8:7C:F3:76:25:AB:EC:03:9E:F2:BF:52:12:49:B9:69 + + Signature Algorithm: sha512WithRSAEncryption + 30:e7:48:02:37:e9:28:cf:04:a2:4d:5c:fa:d8:4e:c9:76:c7: + 14:3f:bd:2c:51:3d:33:f0:1a:bc:49:f1:47:95:8f:69:d8:a9: + 54:14:44:6c:4d:9f:55:82:08:1e:c6:5b:d5:91:d9:bc:2e:b0: + af:d6:25:65:74:96:aa:36:de:ae:31:a8:11:f2:a4:2c:5a:e1: + 4f:73:f8:4a:c3:35:b0:76:96:71:f2:b5:7d:4b:75:ee:5d:bf: + 86:a5:ba:0b:a9:52:cb:ec:ab:e5:23:4b:f2:74:55:28:17:1e: + b3:ac:27:ad:45:13:6e:69:b3:5a:be:42:36:29:48:db:e7:5c: + 22:58:a0:90:82:2c:2a:21:2b:db:f4:64:b7:91:5d:1f:2c:48: + a4:1a:85:e3:86:a5:aa:19:cd:19:e8:a5:fb:a3:7b:94:77:48: + 25:a4:cf:a0:cf:71:82:5c:6f:71:22:7c:d6:97:a0:53:bb:ec: + 30:f6:cb:16:fb:7b:fd:16:94:7a:53:6e:bd:04:64:a2:01:10: + 9f:f0:5b:b5:a6:73:41:9d:5f:6f:45:73:0d:05:f7:30:6d:39: + 90:b6:7d:55:7d:4c:2f:ae:5f:38:56:2f:8b:df:f4:bf:12:06: + 93:6e:0d:02:23:bf:71:91:57:88:e8:bd:62:72:99:00:40:29: + 1e:c9:13:11:da:7e:8e:e1:d2:a5:0d:bf:f7:d6:ec:01:0d:89: + 41:cd:d5:dc:d2:f7:5f:33:0d:4c:2f:85:b7:85:b7:81:e4:17: + 29:f0:74:cf:0e:15:8c:1a:50:0b:08:63:1a:91:4f:e7:76:97: + f1:d4:3b:7e:72:d4:c5:45:58:0c:6a:e9:0d:f2:85:d8:91:1e: + 37:bd:78:e3:39:4d:2e:fd:85:31:c1:a6:3b:6a:cc:2c:53:72: + 1d:8e:7b:f0:e6:76:86:09:6f:1a:f3:e4:a1:e2:dd:76:5f:b0: + 8c:e2:2a:54:5d:c1:88:49:90:10:15:42:7d:05:24:53:8c:54: + ff:48:18:1a:36:e3:31:d3:54:32:78:0d:fe:f2:3d:aa:0d:37: + 15:84:b4:36:47:31:e8:85:6e:0b:58:38:ff:21:91:09:c9:a8: + 43:a3:ea:60:cb:7e:ed:f7:41:6f:4e:91:c1:fd:77:46:e7:d4: + e7:86:c0:1b:fd:50:6c:aa:be:00:b3:63:02:ff:4e:c7:a5:57: + 6e:29:64:e9:54:d5:30:63:38:5f:2d:5a:db:49:5f:14:14:22: + d2:81:1f:61:9e:ee:ee:16:66:d6:bc:bd:ac:1b:5c:fb:38:31: + 95:33:2e:84:6e:7a:de:ee:b9:fc:97:17:06:13:bf:70:1c:6e: + 76:ed:66:38:e2:70:08:00 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIJAMd+UWocJc1AMA0GCSqGSIb3DQEBDQUAMCwxKjAoBgNV +BAMMIUNhbm9uaWNhbCBMdGQuIExpdmUgUGF0Y2ggU2lnbmluZzAeFw0xNjA3MTgy +MzQxMjdaFw0yNjA3MTYyMzQxMjdaMCwxKjAoBgNVBAMMIUNhbm9uaWNhbCBMdGQu +IExpdmUgUGF0Y2ggU2lnbmluZzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC +ggIBAL107nKzSqvmMegpJMK9RpgywDnuo/uKrf6rGlujLqGA23lhnkd5LHVXoiHw +k/aH8ptLnS+zWGEoPEFwExahcpDJ1RZxfOAw+SheSCA2AGm3WZ+j7KjrVUGfOB4i +Slcg9INZScUAk9MzApLR/PCEO0pbj7Zzmon6MB7mKmjyke9ZVz3cHFJvXuabtbh8 +mMkT0TloAWeR4NNnchYKXhaDRTFPtSuz9kCGiTqEbm8WYbxwhL5aEzZ7guoHGfwY +wRbGMgt9LGvEIbk4azHc2QytVkBofOPGZI6/HOByPmzb0nN52tfFL10EfbAHHpXd +Kkdevz46yGb2Zw/UKvHicVnSbHugN6zml4AwE5dI1XT8OGjkV8uZaVqEJ6yYUeRk +vZFi6FgnBiq5C7gI5eW0UaeiEN9OB2ygO5bybt91jJceZKCahpuYJvnYt95bIbev +iQGj95hr2hm6hu/v8c67L4ntwLYb5Vv4kBGaUpPpvvc1uQjLusPtL3OvzJYHVbXe +9gP28Yn5IUB2wWnyYcyalN+c7GplOL7RTiqHxy8+U66Ln1ShCVlkJaqp2ESpqKBx +4TKqTDL9RCjMnG+O24F+b/oAVsXlA0Zj+45xjeMTkZ+sYD5k898lNAn6LZafFgXq +k/XmAAgnMns8ve5wJGw7Venb9BAtIAa0yukpZVWt9lJUX+WjAgMBAAGjXTBbMAwG +A1UdEwEB/wQCMAAwCwYDVR0PBAQDAgeAMB0GA1UdDgQWBBQU3zTRqHzzdiWr7AOe +8r9SEkm5aTAfBgNVHSMEGDAWgBQU3zTRqHzzdiWr7AOe8r9SEkm5aTANBgkqhkiG +9w0BAQ0FAAOCAgEAMOdIAjfpKM8Eok1c+thOyXbHFD+9LFE9M/AavEnxR5WPadip +VBREbE2fVYIIHsZb1ZHZvC6wr9YlZXSWqjberjGoEfKkLFrhT3P4SsM1sHaWcfK1 +fUt17l2/hqW6C6lSy+yr5SNL8nRVKBces6wnrUUTbmmzWr5CNilI2+dcIligkIIs +KiEr2/Rkt5FdHyxIpBqF44alqhnNGeil+6N7lHdIJaTPoM9xglxvcSJ81pegU7vs +MPbLFvt7/RaUelNuvQRkogEQn/BbtaZzQZ1fb0VzDQX3MG05kLZ9VX1ML65fOFYv +i9/0vxIGk24NAiO/cZFXiOi9YnKZAEApHskTEdp+juHSpQ2/99bsAQ2JQc3V3NL3 +XzMNTC+Ft4W3geQXKfB0zw4VjBpQCwhjGpFP53aX8dQ7fnLUxUVYDGrpDfKF2JEe +N7144zlNLv2FMcGmO2rMLFNyHY578OZ2hglvGvPkoeLddl+wjOIqVF3BiEmQEBVC +fQUkU4xU/0gYGjbjMdNUMngN/vI9qg03FYS0Nkcx6IVuC1g4/yGRCcmoQ6PqYMt+ +7fdBb06Rwf13RufU54bAG/1QbKq+ALNjAv9Ox6VXbilk6VTVMGM4Xy1a20lfFBQi +0oEfYZ7u7hZm1ry9rBtc+zgxlTMuhG563u65/JcXBhO/cBxudu1mOOJwCAA= +-----END CERTIFICATE----- diff --git a/debian/certs/ubuntu-drivers-all.pem b/debian/certs/ubuntu-drivers-all.pem new file mode 100644 index 00000000000000..9966174f1f6bb9 --- /dev/null +++ b/debian/certs/ubuntu-drivers-all.pem @@ -0,0 +1,125 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + e9:df:13:0f:92:92:a9:b7 + Signature Algorithm: sha512WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Kernel Module Signing + Validity + Not Before: May 31 16:06:09 2016 GMT + Not After : May 29 16:06:09 2026 GMT + Subject: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Kernel Module Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public-Key: (4096 bit) + Modulus: + 00:b3:b0:4f:c6:0a:77:8b:f9:d1:53:33:34:d2:80: + b5:63:6f:e1:f6:a2:83:99:d5:b6:b1:e4:99:91:fa: + 6c:19:c6:d0:91:2a:b9:7d:b5:98:a6:0d:28:01:b8: + 7c:8e:aa:38:ec:51:37:33:96:f0:b0:9b:8d:86:5f: + 67:23:69:2f:d7:c2:f3:fb:c5:d7:f9:04:ff:f2:e5: + 61:68:b7:29:b9:c6:8e:4b:4d:2d:8f:92:0c:00:b3: + a3:d2:5a:08:64:cd:f2:09:0b:a5:0e:e6:64:75:d5: + 41:f4:4d:49:3a:0d:dc:b9:27:8e:c4:d6:b1:df:8f: + 6c:f0:e4:f7:31:cb:a9:04:a1:f9:a7:aa:15:da:59: + 03:4d:46:14:d0:dd:bf:e0:f5:9e:f0:71:0c:70:78: + 2b:08:fb:e0:b6:68:a4:74:12:9d:f7:f2:64:88:17: + 2a:8a:ed:1a:91:b5:6c:13:bd:4c:10:0a:0b:72:0b: + 90:db:7d:f3:78:44:4c:d2:a5:41:f7:1c:77:7d:5a: + 8a:54:bc:8f:fe:b7:ee:e1:bc:59:37:c4:d4:e8:14: + d0:5b:42:9b:04:00:8e:6d:83:8a:25:21:5b:08:c4: + 7b:b2:d9:99:52:c9:5e:59:6d:c4:aa:52:59:e2:e4: + 2f:7e:7e:ac:05:01:99:bf:13:72:b7:45:c5:17:da: + 8a:d5:3e:71:73:2e:d8:aa:e6:eb:5a:d0:9a:c4:93: + f3:be:eb:d2:47:25:34:16:29:fa:dd:9a:2f:b1:20: + e5:41:4e:ed:ea:51:7c:23:80:ba:3d:b5:3a:0b:8c: + 9c:85:48:6c:3c:8b:29:2f:2f:12:c7:52:34:02:ea: + 0f:ac:53:23:3c:f8:3e:40:1b:30:63:e9:2d:e6:f6: + 58:cc:51:f9:eb:08:4a:b4:c7:16:80:d1:8b:c2:64: + 6a:71:a9:70:31:a4:a7:3a:c0:93:99:1b:0e:42:c1: + 00:6d:43:27:99:6c:e5:fd:23:16:c1:8e:b5:66:17: + 2b:4c:53:5a:6d:1e:96:16:13:6a:c6:d4:85:5b:74: + 2e:ce:7c:45:2f:ad:cb:75:9e:5e:91:bd:9a:6a:86: + 1a:06:bd:39:be:a3:50:56:ea:e1:f6:e3:95:69:d7: + 31:e4:66:f7:36:b5:51:c2:22:b4:9c:74:9c:44:0b: + 0e:16:5f:53:f0:23:c6:b9:40:bd:d6:b8:7d:1b:f6: + 73:f6:27:e7:c0:e3:65:a0:58:ab:5c:59:b7:80:8c: + 8c:04:b4:a9:ae:a0:51:40:10:3b:63:59:49:87:d1: + 9b:df:a3:8c:c4:2e:eb:70:c1:0a:18:1f:cb:22:c2: + f2:4a:65:0d:e5:81:74:d8:ce:72:c6:35:be:ba:63: + 72:c4:f9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Key Usage: + Digital Signature + X509v3 Subject Key Identifier: + 88:F7:52:E5:60:A1:E0:73:7E:31:16:3A:46:6A:D7:B7:0A:85:0C:19 + X509v3 Authority Key Identifier: + keyid:88:F7:52:E5:60:A1:E0:73:7E:31:16:3A:46:6A:D7:B7:0A:85:0C:19 + + Signature Algorithm: sha512WithRSAEncryption + 04:85:16:27:58:ba:71:28:57:86:7b:c2:83:db:e5:72:6f:1e: + b2:1c:63:b0:db:ad:c0:42:96:c0:4f:65:f6:35:4d:c0:07:0d: + 46:be:d3:1e:ec:f1:22:18:2a:18:5d:bb:69:a6:a6:d4:0d:c3: + 57:03:b9:e7:45:49:28:ca:6d:98:17:68:97:cb:7b:36:81:0a: + 37:9e:34:79:f3:e1:0e:5b:77:43:bb:5a:a5:45:b7:16:50:86: + fd:12:a4:96:0f:15:19:09:1c:e1:fa:80:a5:80:09:be:bb:c8: + 26:0b:3e:de:03:d2:c2:18:a4:8d:0d:de:c5:32:82:0b:fb:75: + 55:66:1a:2a:bb:e4:bd:25:91:20:15:d4:be:b8:3f:53:e3:fb: + a8:c3:55:e3:d5:e7:82:18:95:df:39:09:a7:fc:89:6e:b4:1c: + aa:2d:e8:67:c2:0d:34:34:3e:f9:fa:0b:ce:81:92:11:ae:12: + 0a:fe:35:63:ce:46:29:c4:2b:4f:cb:4e:05:0a:a1:11:e2:35: + f6:5a:5d:b5:e8:d2:6f:4c:fc:3d:24:a6:03:4b:dd:98:6b:f2: + 71:58:16:1d:a5:25:ef:d9:06:7c:e8:db:7b:88:6a:89:5c:59: + 01:92:64:db:44:08:63:6c:7c:32:d6:55:98:63:09:26:61:67: + 0a:fe:5d:ee:fd:23:59:b3:4d:91:c1:4d:41:8b:cd:20:58:fa: + 2d:45:e5:bd:1d:69:5c:03:a0:49:a6:97:54:13:b6:c9:e0:f8: + 56:83:a1:2a:c3:f4:6c:fd:ab:20:ca:3d:9c:95:c0:cf:04:bb: + 46:39:cf:34:81:65:45:27:64:01:7d:62:b3:b8:72:ea:10:d5: + 0f:53:7d:39:88:25:09:6f:8c:bc:e0:49:bb:39:e2:0e:8d:cf: + 56:4d:c1:82:6d:87:d2:e7:fc:c0:9f:a7:65:60:d2:6c:65:18: + 59:38:6e:d0:9c:d7:c3:81:9a:9a:29:8f:83:84:c3:b5:44:ff: + 28:ac:13:17:64:f2:26:13:d9:55:06:b7:69:68:7c:bf:ec:d1: + 8c:ef:b7:da:76:e1:07:73:c6:31:62:31:cb:b6:e1:e7:7f:0c: + c3:f7:4c:52:be:25:36:8e:a1:bb:60:02:c3:cb:3e:6f:29:fc: + 7f:6a:fa:f8:ec:0a:df:49:e2:57:0e:bc:bd:93:c3:1b:d5:36: + 8a:ff:d8:1b:17:c7:1f:cb:69:00:d2:54:9e:ad:61:89:92:95: + 11:f8:ea:17:83:9f:9b:09:7d:b8:94:a4:ea:f5:ae:ea:dc:dd: + 62:b9:9e:68:9c:18:ec:19:c4:13:08:c8:b1:62:ab:8e:84:69: + 11:3c:da:ea:0d:b7:22:bd +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIJAOnfEw+Skqm3MA0GCSqGSIb3DQEBDQUAMH0xCzAJBgNV +BAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEQMA4GA1UEBwwHRG91Z2xhczEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xLTArBgNVBAMMJENhbm9uaWNhbCBMdGQu +IEtlcm5lbCBNb2R1bGUgU2lnbmluZzAeFw0xNjA1MzExNjA2MDlaFw0yNjA1Mjkx +NjA2MDlaMH0xCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEQMA4G +A1UEBwwHRG91Z2xhczEXMBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xLTArBgNVBAMM +JENhbm9uaWNhbCBMdGQuIEtlcm5lbCBNb2R1bGUgU2lnbmluZzCCAiIwDQYJKoZI +hvcNAQEBBQADggIPADCCAgoCggIBALOwT8YKd4v50VMzNNKAtWNv4faig5nVtrHk +mZH6bBnG0JEquX21mKYNKAG4fI6qOOxRNzOW8LCbjYZfZyNpL9fC8/vF1/kE//Ll +YWi3KbnGjktNLY+SDACzo9JaCGTN8gkLpQ7mZHXVQfRNSToN3LknjsTWsd+PbPDk +9zHLqQSh+aeqFdpZA01GFNDdv+D1nvBxDHB4Kwj74LZopHQSnffyZIgXKortGpG1 +bBO9TBAKC3ILkNt983hETNKlQfccd31ailS8j/637uG8WTfE1OgU0FtCmwQAjm2D +iiUhWwjEe7LZmVLJXlltxKpSWeLkL35+rAUBmb8TcrdFxRfaitU+cXMu2Krm61rQ +msST877r0kclNBYp+t2aL7Eg5UFO7epRfCOAuj21OguMnIVIbDyLKS8vEsdSNALq +D6xTIzz4PkAbMGPpLeb2WMxR+esISrTHFoDRi8JkanGpcDGkpzrAk5kbDkLBAG1D +J5ls5f0jFsGOtWYXK0xTWm0elhYTasbUhVt0Ls58RS+ty3WeXpG9mmqGGga9Ob6j +UFbq4fbjlWnXMeRm9za1UcIitJx0nEQLDhZfU/AjxrlAvda4fRv2c/Yn58DjZaBY +q1xZt4CMjAS0qa6gUUAQO2NZSYfRm9+jjMQu63DBChgfyyLC8kplDeWBdNjOcsY1 +vrpjcsT5AgMBAAGjXTBbMAwGA1UdEwEB/wQCMAAwCwYDVR0PBAQDAgeAMB0GA1Ud +DgQWBBSI91LlYKHgc34xFjpGate3CoUMGTAfBgNVHSMEGDAWgBSI91LlYKHgc34x +FjpGate3CoUMGTANBgkqhkiG9w0BAQ0FAAOCAgEABIUWJ1i6cShXhnvCg9vlcm8e +shxjsNutwEKWwE9l9jVNwAcNRr7THuzxIhgqGF27aaam1A3DVwO550VJKMptmBdo +l8t7NoEKN540efPhDlt3Q7tapUW3FlCG/RKklg8VGQkc4fqApYAJvrvIJgs+3gPS +whikjQ3exTKCC/t1VWYaKrvkvSWRIBXUvrg/U+P7qMNV49XnghiV3zkJp/yJbrQc +qi3oZ8INNDQ++foLzoGSEa4SCv41Y85GKcQrT8tOBQqhEeI19lpdtejSb0z8PSSm +A0vdmGvycVgWHaUl79kGfOjbe4hqiVxZAZJk20QIY2x8MtZVmGMJJmFnCv5d7v0j +WbNNkcFNQYvNIFj6LUXlvR1pXAOgSaaXVBO2yeD4VoOhKsP0bP2rIMo9nJXAzwS7 +RjnPNIFlRSdkAX1is7hy6hDVD1N9OYglCW+MvOBJuzniDo3PVk3Bgm2H0uf8wJ+n +ZWDSbGUYWThu0JzXw4GamimPg4TDtUT/KKwTF2TyJhPZVQa3aWh8v+zRjO+32nbh +B3PGMWIxy7bh538Mw/dMUr4lNo6hu2ACw8s+byn8f2r6+OwK30niVw68vZPDG9U2 +iv/YGxfHH8tpANJUnq1hiZKVEfjqF4Ofmwl9uJSk6vWu6tzdYrmeaJwY7BnEEwjI +sWKrjoRpETza6g23Ir0= +-----END CERTIFICATE----- diff --git a/debian/cloud-tools/hv_get_dhcp_info b/debian/cloud-tools/hv_get_dhcp_info new file mode 100755 index 00000000000000..09fabd266a453e --- /dev/null +++ b/debian/cloud-tools/hv_get_dhcp_info @@ -0,0 +1,55 @@ +#!/bin/bash + +# This example script retrieves the DHCP state of a given interface. +# In the interest of keeping the KVP daemon code free of distro specific +# information; the kvp daemon code invokes this external script to gather +# DHCP setting for the specific interface. +# +# Input: Name of the interface +# +# Output: The script prints the string "Enabled" to stdout to indicate +# that DHCP is enabled on the interface. If DHCP is not enabled, +# the script prints the string "Disabled" to stdout. +# +# Each Distro is expected to implement this script in a distro specific +# fashion. + +#set -x + +IF_FILE="/etc/network/interfaces" +NMCMD="nmcli" + +function checknetworkmanager { + #Assumes if $NMCMD exists, inteface exists and interface is not + # in $IF_FILE then dhcp is being used by NM + if hash $NMCMD >/dev/null 2>&1 ; then + if $NMCMD dev status |grep -q $1 ; then + echo "Enabled" + else + echo "Disabled" + fi + else + #Give up + echo "Disabled" + fi +} + +if [ -z $1 ] ; then echo "Disabled"; exit; fi + +if [ -e $IF_FILE ]; then + if grep -v -e "^#" $IF_FILE|grep -q $1 ; then + #interface exists so + if grep -q -e $1\.\*dhcp $IF_FILE; then + echo "Enabled"; exit; + else + echo "Disabled"; exit; + fi + else + checknetworkmanager $1 + exit + fi +else + checknetworkmanager $1 + exit +fi + diff --git a/debian/cloud-tools/hv_get_dns_info b/debian/cloud-tools/hv_get_dns_info new file mode 100755 index 00000000000000..058c17b46ffcdd --- /dev/null +++ b/debian/cloud-tools/hv_get_dns_info @@ -0,0 +1,13 @@ +#!/bin/bash + +# This example script parses /etc/resolv.conf to retrive DNS information. +# In the interest of keeping the KVP daemon code free of distro specific +# information; the kvp daemon code invokes this external script to gather +# DNS information. +# This script is expected to print the nameserver values to stdout. +# Each Distro is expected to implement this script in a distro specific +# fashion. For instance on Distros that ship with Network Manager enabled, +# this script can be based on the Network Manager APIs for retrieving DNS +# entries. + +cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }' diff --git a/debian/cloud-tools/hv_set_ifconfig b/debian/cloud-tools/hv_set_ifconfig new file mode 100755 index 00000000000000..d8b04875c6ce74 --- /dev/null +++ b/debian/cloud-tools/hv_set_ifconfig @@ -0,0 +1,288 @@ +#!/usr/bin/python3 +# +# hv_set_ifconfig -- take the hv_kvp_daemon generated configuration +# file and apply it to the Ubuntu configuration. +# + +# CONFIG example: +# HWADDR=11:22:33:44:55:66 +# DEVICE=foo1 +# DHCP=yes + +# CONFIG example: +# HWADDR=11:22:33:44:55:66 +# DEVICE=foo1 +# IPADDR=192.168.99.10 +# GATEWAY=192.168.99.1 +# DNS1=192.168.88.250 +# IPADDR2=192.168.99.11 +# IPV6ADDR=2001:DB8:99::10 +# IPV6NETMASK=64 +# IPV6_DEFAULTGW=2001:DB8:99::10 + +# set interfaces in hv_kvp_daemon style +import fileinput +import sys +import errno +import os +import shutil +import tempfile +import subprocess + +if_filename="/etc/network/interfaces" + +# Drop our output (XXX?) +sys.stdout = open(os.devnull, 'w') +sys.stderr = open(os.devnull, 'w') + +# Confirm we can open the network configuration. +try: + if_file=open(if_filename,"r+") +except IOError as e: + exit(e.errno) +else: + if_file.close() + +# Usage: hv_set_ifconfig +if len(sys.argv) != 2 : + exit(errno.EINVAL) + +# +# Here is the format of the ip configuration file: +# +# HWADDR=macaddr +# DEVICE=interface name +# BOOTPROTO= (where is "dhcp" if DHCP is configured +# or "none" if no boot-time protocol should be used) +# +# IPADDR0=ipaddr1 +# IPADDR1=ipaddr2 +# IPADDRx=ipaddry (where y = x + 1) +# +# NETMASK0=netmask1 +# NETMASKx=netmasky (where y = x + 1) +# +# GATEWAY=ipaddr1 +# GATEWAYx=ipaddry (where y = x + 1) +# +# DNSx=ipaddrx (where first DNS address is tagged as DNS1 etc) +# +# IPV6 addresses will be tagged as IPV6ADDR, IPV6 gateway will be +# tagged as IPV6_DEFAULTGW and IPV6 NETMASK will be tagged as +# IPV6NETMASK. +# + +kvp=dict(line.strip().split("=") for line in fileinput.input()) + +# Setting the hwaddress to something azure is not expecting is fatal +# to networking. +if not "HWADDR" in kvp : + exit(errno.EPROTO) + +# Confirm we have a device specified. +if not "DEVICE" in kvp : + exit(1) + +autolist = [] +output=[] +basename=kvp["DEVICE"] + +# DNS entries will go with the first interface and there can be a max +# of three. These will be emitted with the first interface. +dns = [] +for count in (1, 2, 3): + key = "DNS" + str(count) + if key in kvp: + dns += [kvp[key]] +dns_emitted = False + +# IPV4 may either be dhcp or static. +if ("DHCP" in kvp and kvp["DHCP"] == "yes") or \ + ("BOOTPROTO" in kvp and kvp["BOOTPROTO"] == "dhcp"): + autolist.append(basename) + output += ["iface " + basename + " inet dhcp"] + output += [""] +else: + # Matchup the interface specific lines + + # No real max for the number of interface + aliases ... + # only required is the address (but mate everything up that comes in. + + # IPv4 -- ensure we sort by numeric suffixes. + v4names = [ int(name[6:]) for name in kvp.keys() if name.startswith("IPADDR") ] + v4names.sort() + + for if_count in v4names: + ifname = basename + which = str(if_count) + + if if_count: + ifname += ":" + str(if_count) + which_gw = which + else: + which_gw = "" + + if not ifname in autolist: + autolist += [ifname] + + output += [ "iface " + ifname + " inet static" ] + output += [ "\t" + "address " + kvp["IPADDR" + which] ] + if "NETMASK" + which in kvp: + output += [ "\tnetmask " + kvp["NETMASK" + which] ] + if "GATEWAY" + which_gw in kvp: + output += ["\tgateway " + kvp["GATEWAY" + which_gw]] + + if not dns_emitted: + dns_emitted = True + output += ["\tdns-nameservers " + ' '.join(dns)] + output += [""] + +# IPv6 requires a netmask +# If an ipv6 exists, you'll want to turn off /proc/sys/net/ipv6/conf/all/autoconf with +# echo 0 > /proc/sys/net/ipv6/conf/all/autoconf +v6names = [ int(name[8:]) for name in kvp.keys() if name.startswith("IPV6ADDR") ] +v6names.sort() + +for if6_count in v6names: + ifname = basename + which = str(if6_count) + + if if6_count: + ifname += ":" + str(if6_count) + which_gw = which + else: + which_gw = "" + + if not ifname in autolist: + autolist += [ifname] + + if "IPV6NETMASK" + which in kvp: + output += [ "iface " + ifname + " inet6 static"] + output += [ "\taddress " + kvp["IPV6ADDR" + which]] + output += [ "\tnetmask " + kvp["IPV6NETMASK" + which]] + if "IPV6_DEFAULTGW" + which_gw in kvp: + output += [ "\tgateway " + kvp["IPV6_DEFAULTGW" + which_gw] ] + if not dns_emitted: + dns_emitted = True + output += ["\tdns-nameservers " + ' '.join(dns)] + output += [""] + +# Mark this new interface for automatic up. +if len(autolist): + output = ["auto "+" ".join(autolist)] + output + +print("===================================") +print(output) +print("===================================") + + +# Time to clean out the existing interface file + +# Markers. +start_mark = "# The following stanza(s) added by hv_set_ifconfig" +end_mark = "#End of hv_set_ifconfig stanzas" + +f=open(if_filename,"r") +flines=f.readlines() +f.close() +newfile=[] +pitchstanza=0 +inastanza=0 +stanza=[] +prev_line=None +for line in flines: + if line.startswith("auto"): + if inastanza: + if not pitchstanza: + newfile.extend(stanza) + stanza=[] + inastanza=0 + newline="" + autoline=line.strip().split(" ") + for word in autoline: + if (not word == basename) and (not word.startswith(basename+":")): + newline+=word + " " + newline = newline.strip() + if not newline == "auto": + newfile += [newline.strip()] + elif line.startswith(("iface","mapping","source")): + '''Read a stanza''' + '''A Stanza can also start with allow- ie allow-hotplug''' + if inastanza: + if not pitchstanza: + newfile.extend(stanza) + stanza=[] + inastanza=1 + pitchstanza=0 + autoline=line.strip().split(" ") + for word in autoline: + if (word == basename) or (word.startswith(basename+":")): + pitchstanza=1 + if not pitchstanza: + stanza+=[line.strip()] + elif line.strip() in (start_mark, end_mark): + if inastanza: + if not pitchstanza: + newfile.extend(stanza) + stanza=[] + inastanza = 0 + pitchstanza = 0 + # Deduplicate markers. + if line != prev_line: + newfile += [line.strip()] + else: + if inastanza: + if not pitchstanza: + stanza+=[line.strip()] + else: + if not pitchstanza: + newfile += [line.strip()] + prev_line=line + +# Include pending stanza if any. +if inastanza and not pitchstanza: + newfile.extend(stanza) + + +def emit(line): + print(line) + output = line + "\n" + os.write(fd, output.encode('utf-8')) + +# Insert the new output at the end and inside the existing markers if found. +emitted = False +fd, path = tempfile.mkstemp() +for line in newfile: + if line == end_mark: + emit("\n".join(output)) + emitted = True + emit(line) +if not emitted: + emit(start_mark) + emit("\n".join(output)) + emit(end_mark) +os.close(fd) + +shutil.copy(path,if_filename) +os.chmod(if_filename,0o644) + +#print("TMPFILE is at: " + path) +#print("Copied file is at: " + if_filename) + +try: + retcode = subprocess.call("ifdown "+basename , shell=True) + if retcode < 0: + print("Child was terminated by signal", -retcode, file=sys.stderr) + else: + print("Child returned", retcode, file=sys.stderr) +except OSError as e: + print("Execution failed:", e, file=sys.stderr) + +try: + retcode = subprocess.call("ifup "+basename , shell=True) + if retcode < 0: + print("Child was terminated by signal", -retcode, file=sys.stderr) + else: + print("Child returned", retcode, file=sys.stderr) +except OSError as e: + print("Execution failed:", e, file=sys.stderr) diff --git a/debian/commit-templates/bumpabi b/debian/commit-templates/bumpabi new file mode 100644 index 00000000000000..6c373c9726bc08 --- /dev/null +++ b/debian/commit-templates/bumpabi @@ -0,0 +1,3 @@ +UBUNTU: Bump ABI + +Ignore: yes diff --git a/debian/commit-templates/config-updates b/debian/commit-templates/config-updates new file mode 100644 index 00000000000000..4b62c299965c8d --- /dev/null +++ b/debian/commit-templates/config-updates @@ -0,0 +1,15 @@ +# +# This template is used for commit messages that don't need to +# show up in debian/changelog. Administrative stuff like config +# updates, ABI bumps, etc. Setting 'Ignore: yes' prevents +# 'debian/rules insertchanges' from inserting this commit meesage +# as a changelog entry. +# +# Please give a one-line description of the config change followed +# by a detailed explanation if necessary + +UBUNTU: [Config] XXXX + +# BugLink: http://bugs.launchpad.net/bugs/ +# Ignore: yes +# Other text below here. diff --git a/debian/commit-templates/external-driver b/debian/commit-templates/external-driver new file mode 100644 index 00000000000000..decdc897bdd66e --- /dev/null +++ b/debian/commit-templates/external-driver @@ -0,0 +1,20 @@ +# Ubuntu external driver commit. +# +# NOTE: This gets reformatted for README.Ubuntu-External-Drivers and +# debian/changelog. +# +# This is only needed when a driver is added, updated or removed. It is +# not needed when patches or fixes are applied to the driver. If the +# driver is being removed, add the line: +# +# Removing: yes +# +# to the commit, and you can remove all other tags (except UBUNTU:). +# +UBUNTU: + +ExternalDriver: +Description: +Url: +Mask: +Version: diff --git a/debian/commit-templates/missing-modules b/debian/commit-templates/missing-modules new file mode 100644 index 00000000000000..f4872e7568cdec --- /dev/null +++ b/debian/commit-templates/missing-modules @@ -0,0 +1,3 @@ +UBUNTU: build/modules: Add modules that have intentionally gone missing + +Ignore: yes diff --git a/debian/commit-templates/newrelease b/debian/commit-templates/newrelease new file mode 100644 index 00000000000000..5f8931c40cd374 --- /dev/null +++ b/debian/commit-templates/newrelease @@ -0,0 +1,3 @@ +UBUNTU: Start new release + +Ignore: yes diff --git a/debian/commit-templates/sauce-patch b/debian/commit-templates/sauce-patch new file mode 100644 index 00000000000000..08720a8c20f20d --- /dev/null +++ b/debian/commit-templates/sauce-patch @@ -0,0 +1,40 @@ +# Ubuntu commit template. +# +# NOTE: This gets reformatted for debian/changelog +# +# +# SAUCE refers to the fact that this patch might not go upstream, but we need to +# carry it to successive releases. In most cases you DONOT want to use this +# template. +# +# An example of a SAUCE patch is the ACPI DSDT-in-initramfs patch which has been +# refused upstream, but still provides useful functionality to users with broken +# BIOSes. +# +#------------------------------------------------------------------------- +# +# The initial UBUNTU is a flag that this is an Ubuntu commit. It will be +# referenced to the Author in the debian/changelog entry. +# +# The text following is the short message that will be placed in the +# changelog. Extra text on the following lines will be ignored, but left +# in the git commit. Lines with # will be ignored in the commit. +# +# OriginalAuthor allows for alternate attribution. +# +# OriginalLocation allows for a URL or description of where the patch came +# from. +# +# BugLink is a URL to a Malone bug. +# +# Ignore: yes will keep this commit from showing up in the changelog. +# +UBUNTU: SAUCE: + + + +# OriginalAuthor: +# OriginalLocation: +# BugLink: http://bugs.launchpad.net/bugs/ +# Ignore: yes +# Other text below here. diff --git a/debian/commit-templates/upstream-patch b/debian/commit-templates/upstream-patch new file mode 100644 index 00000000000000..671ab6a0921f08 --- /dev/null +++ b/debian/commit-templates/upstream-patch @@ -0,0 +1,27 @@ +# Ubuntu commit template. +# +# NOTE: This gets reformatted for debian/changelog +# +# The initial UBUNTU is a flag that this is an Ubuntu commit. It will be +# referenced to the Author in the debian/changelog entry. +# +# The text following is the short message that will be placed in the +# changelog. Extra text on the following lines will be ignored, but left +# in the git commit. Lines with # will be ignored in the commit. +# +# OriginalAuthor allows for alternate attribution. +# +# OriginalLocation allows for a URL or description of where the patch came +# from. +# +# BugLink is a URL to a Malone bug. +# +# Ignore: yes will keep this commit from showing up in the changelog. +# +UBUNTU: [Upstream] + +# OriginalAuthor: +# OriginalLocation: +# BugLink: http://bugs.launchpad.net/bugs/ +# Ignore: yes +# Other text below here. diff --git a/debian/control.d/flavour-buildinfo.stub b/debian/control.d/flavour-buildinfo.stub new file mode 100644 index 00000000000000..dd08a6715f6baa --- /dev/null +++ b/debian/control.d/flavour-buildinfo.stub @@ -0,0 +1,14 @@ + +Package: linux-buildinfo-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel buildinfo for version PKGVER on DESC + This package contains the Linux kernel buildinfo for version PKGVER on + DESC. + . + You likely do not want to install this package. + diff --git a/debian/debian.env b/debian/debian.env new file mode 100644 index 00000000000000..be31a0c2701975 --- /dev/null +++ b/debian/debian.env @@ -0,0 +1 @@ +DEBIAN=debian.master diff --git a/debian/dkms-versions b/debian/dkms-versions new file mode 100644 index 00000000000000..402eed85bed0eb --- /dev/null +++ b/debian/dkms-versions @@ -0,0 +1 @@ +zfs-linux 2.0.6-1ubuntu3 diff --git a/debian/docs/README.inclusion-list b/debian/docs/README.inclusion-list new file mode 100644 index 00000000000000..b025393e7c19f8 --- /dev/null +++ b/debian/docs/README.inclusion-list @@ -0,0 +1,51 @@ +This README describes the reason for, and the use of, module +inclusion lists. + +The original Hardy release had the notion of sub-flavours, +e.g., a flavour that was constructed as a subset of an existing flavour. +For example, the virtual flavour was extracted from the server flavour using +a subset of the server flavour modules. However, there were some difficult +mainteneance issues with regard to packaging, make rules, and scripts. This +re-implementation of the sub-flavours philosophy is hopefully simpler, +and retrofitable to all releases. + +A module inclusion list looks at the problem of of constructing a package +from the perspective of what modules do we _want_ in the package, as opposed +to what modules we _don't_ want. As the kernel matures, more and more devices are added +which makes the problem of configuration maintenance a real pain in the ass. +If we took the approach of disabling all of the config options that we don't want, +then the differences between flavours will quickly become quite large, making +it difficult to quickly compare the individual flavour configs. Each time a +new config option is added then we also have to make a decision about disabling in +order to continue to keep the minimal number of modules. + +A module inclusion list is applied on a per-flavour basis. For example, +debian./control.d/${flavour}.inclusion-list. For example, the +config for virtual is very close to server and generic, but the inclusion list +causes the virtual package to be constructed with _only_ the modules described +in the inclusion list. + +The inclusion list format is a simple bash regular expression list of files. For example, + +arch/*/{crypto,kernel,oprofile} +drivers/acpi/* +drivers/ata/ahci.ko + +These 3 regular expression forms are suitable for expansion by bash and as inputs to 'find'. +See debian/scripts/module-inclusion for details. + +There are 2 log files created as a side effect of the application of the module +inclusion list; $(flavour).inclusion-list.log and $(flavour).depmod.log. + +$(flavour).inclusion-list.log : This log is created while the inclusion list +modules are being copied. If any are missing, then those warnings go in this log. +While its not considered a fatal error, you should endevour to correct your inclusion +list such that there are no missing modules. + +$(flavour).depmod.log : The log is created as a result of running depmod on the +resulting set of modules. If there are missing symbols then you'll find that information +here. Again, you should modify your inclusion list such that there are no missing +symbols. + +Tim Gardner +June 2, 2010 diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 00000000000000..8ce5fdad0ead70 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,2 @@ +[buildpackage] +debian-tag = Ubuntu-%(version)s diff --git a/debian/linux-cloud-tools-common.hv-fcopy-daemon.service b/debian/linux-cloud-tools-common.hv-fcopy-daemon.service new file mode 100644 index 00000000000000..601376e3f67fc6 --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-fcopy-daemon.service @@ -0,0 +1,14 @@ +# On Azure/Hyper-V systems start the hv_fcopy_daemon +# +# author "Andy Whitcroft " +[Unit] +Description=Hyper-V File Copy Protocol Daemon +ConditionVirtualization=microsoft +ConditionPathExists=/dev/vmbus/hv_fcopy +BindsTo=sys-devices-virtual-misc-vmbus\x21hv_fcopy.device + +[Service] +ExecStart=/usr/sbin/hv_fcopy_daemon -n + +[Install] +WantedBy=multi-user.target diff --git a/debian/linux-cloud-tools-common.hv-fcopy-daemon.udev b/debian/linux-cloud-tools-common.hv-fcopy-daemon.udev new file mode 100644 index 00000000000000..8f85edb87aeb30 --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-fcopy-daemon.udev @@ -0,0 +1 @@ +SUBSYSTEM=="misc", KERNEL=="vmbus/hv_fcopy", TAG+="systemd", ENV{SYSTEMD_WANTS}+="hv-fcopy-daemon.service" diff --git a/debian/linux-cloud-tools-common.hv-fcopy-daemon.upstart b/debian/linux-cloud-tools-common.hv-fcopy-daemon.upstart new file mode 100644 index 00000000000000..566bfbb5764c40 --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-fcopy-daemon.upstart @@ -0,0 +1,22 @@ +# On Azure/Hyper-V systems start the hv_fcopy_daemon +# +description "Hyper-V File Copy Protocol Daemon" +author "Andy Whitcroft " + +start on runlevel [2345] +stop on runlevel [!2345] +console log + +pre-start script + if [ -e "/etc/default/hv-kvp-daemon-init" ]; then + . /etc/default/hv-kvp-daemon-init + fi + [ "$RUN_FCOPY_DAEMON" -eq 0 ] && { stop; exit 0; } + if [ -d /sys/class/dmi/id/. ]; then + read company " +[Unit] +Description=Hyper-V KVP Protocol Daemon +ConditionVirtualization=microsoft +ConditionKernelCommandLine=!snapd_recovery_mode +DefaultDependencies=no +BindsTo=sys-devices-virtual-misc-vmbus\x21hv_kvp.device +After=sys-devices-virtual-misc-vmbus\x21hv_kvp.device systemd-remount-fs.service +Before=shutdown.target cloud-init-local.service walinuxagent.service +Conflicts=shutdown.target +RequiresMountsFor=/var/lib/hyperv + +[Service] +ExecStart=/usr/sbin/hv_kvp_daemon -n + +[Install] +WantedBy=multi-user.target diff --git a/debian/linux-cloud-tools-common.hv-kvp-daemon.udev b/debian/linux-cloud-tools-common.hv-kvp-daemon.udev new file mode 100644 index 00000000000000..0c648f54d4c493 --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-kvp-daemon.udev @@ -0,0 +1 @@ +SUBSYSTEM=="misc", KERNEL=="vmbus/hv_kvp", TAG+="systemd", ENV{SYSTEMD_WANTS}+="hv-kvp-daemon.service" diff --git a/debian/linux-cloud-tools-common.hv-kvp-daemon.upstart b/debian/linux-cloud-tools-common.hv-kvp-daemon.upstart new file mode 100644 index 00000000000000..198184add9d335 --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-kvp-daemon.upstart @@ -0,0 +1,22 @@ +# On Azure/Hyper-V systems start the hv_kvp_daemon +# +description "Hyper-V KVP Protocol Daemon" +author "Adam Conrad " + +start on runlevel [2345] +stop on runlevel [!2345] +console log + +pre-start script + if [ -e "/etc/default/hv-kvp-daemon-init" ]; then + . /etc/default/hv-kvp-daemon-init + fi + [ "$RUN_KVP_DAEMON" = 0 ] && { stop; exit 0; } + if [ -d /sys/class/dmi/id/. ]; then + read company " +[Unit] +Description=Hyper-V VSS Protocol Daemon +ConditionVirtualization=microsoft +ConditionPathExists=/dev/vmbus/hv_vss +BindsTo=sys-devices-virtual-misc-vmbus\x21hv_vss.device + +[Service] +ExecStart=/usr/sbin/hv_vss_daemon -n + +[Install] +WantedBy=multi-user.target diff --git a/debian/linux-cloud-tools-common.hv-vss-daemon.udev b/debian/linux-cloud-tools-common.hv-vss-daemon.udev new file mode 100644 index 00000000000000..f4b9a91ad4bfc2 --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-vss-daemon.udev @@ -0,0 +1 @@ +SUBSYSTEM=="misc", KERNEL=="vmbus/hv_vss", TAG+="systemd", ENV{SYSTEMD_WANTS}+="hv-vss-daemon.service" diff --git a/debian/linux-cloud-tools-common.hv-vss-daemon.upstart b/debian/linux-cloud-tools-common.hv-vss-daemon.upstart new file mode 100644 index 00000000000000..3f3326aef2025b --- /dev/null +++ b/debian/linux-cloud-tools-common.hv-vss-daemon.upstart @@ -0,0 +1,22 @@ +# On Azure/Hyper-V systems start the hv_vss_daemon +# +description "Hyper-V VSS Protocol Daemon" +author "Ben Howard " + +start on runlevel [2345] +stop on runlevel [!2345] +console log + +pre-start script + if [ -e "/etc/default/hv-kvp-daemon-init" ]; then + . /etc/default/hv-kvp-daemon-init + fi + [ "$RUN_VSS_DAEMON" -eq 0 ] && { stop; exit 0; } + if [ -d /sys/class/dmi/id/. ]; then + read company +# + +DEBIAN=$(shell awk -F= '($$1 == "DEBIAN") { print $$2 }' /dev/null || echo $$m >> $(prev_abidir)/../modules.ignore; done) +endif + +ifeq ($(do_dkms_wireguard),false) + do_wireguard_disable:=$(shell for m in $$(cat $(DROOT)/wireguard-modules.ignore); do grep -qxF $$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$m >> $(prev_abidir)/../modules.ignore; done) +endif + +# Either tools package needs the common source preparation +do_any_tools=$(sort $(filter-out false,$(do_linux_tools) $(do_cloud_tools))) + +# Versions of dkms packages. +dkms_zfs_linux_version=$(shell gawk '/^zfs-linux / { print $$2; }' debian/dkms-versions) + +# NVIDIA DKMS package gross series split into desktop and server. +nvidia_desktop_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*\) .*/\1/p' debian/dkms-versions) +nvidia_server_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*-server\) .*/\1/p' debian/dkms-versions) + +# Debian Build System targets +binary: binary-indep binary-arch + +build: build-arch build-indep + +clean: debian/control debian/canonical-certs.pem debian/canonical-revoked-certs.pem + dh_testdir + dh_testroot + dh_clean + + # normal build junk + rm -rf $(DEBIAN)/abi/$(release)-$(revision) + rm -rf $(builddir) + rm -f $(stampdir)/stamp-* + rm -rf $(DEBIAN)/linux-* + + cp $(DEBIAN)/changelog debian/changelog + + # Install the copyright information. + cp $(DEBIAN)/copyright debian/copyright + + # Install the retpoline extractor. + cp $(DROOT)/scripts/retpoline-extract-one scripts/ubuntu-retpoline-extract-one + + # If we have a reconstruct script use it. + [ -f $(DEBIAN)/reconstruct ] && bash $(DEBIAN)/reconstruct || true + + # Remove generated intermediate files + rm -f $(DROOT)/control.stub $(DEBIAN)/control.stub + rm -f $(DROOT)/scripts/fix-filenames + +distclean: clean + rm -rf $(DROOT)/control debian/changelog \ + debian/control debian/control.stub debian/copyright \ + scripts/ubuntu-retpoline-extract-one + +# Builds the image, arch headers and debug packages +include $(DROOT)/rules.d/2-binary-arch.mk + +# Builds the source, doc and linux-headers indep packages +include $(DROOT)/rules.d/3-binary-indep.mk + +# Various checks to be performed on builds +include $(DROOT)/rules.d/4-checks.mk + +control_files := $(DEBIAN)/control.stub.in +ifeq ($(do_libc_dev_package),true) +ifneq (,$(wildcard $(DEBIAN)/control.d/linux-libc-dev.stub)) + control_files += $(DEBIAN)/control.d/linux-libc-dev.stub +endif +endif +ifeq ($(do_doc_package),true) +ifneq (,$(wildcard $(DEBIAN)/control.d/linux-doc.stub)) + control_files += $(DEBIAN)/control.d/linux-doc.stub +endif +endif + +# Misc stuff +.PHONY: $(DEBIAN)/control.stub +$(DEBIAN)/control.stub: \ + $(DROOT)/scripts/control-create \ + $(control_files) \ + $(DEBIAN)/changelog \ + $(wildcard $(DEBIAN)/control.d/* $(DEBIAN)/sub-flavours/*.vars) + for i in $(control_files); do \ + cat $$i; \ + echo ""; \ + done | sed -e 's/PKGVER/$(release)/g' \ + -e 's/ABINUM/$(abinum)/g' \ + -e 's/SRCPKGNAME/$(src_pkg_name)/g' \ + -e 's/=HUMAN=/$(human_arch)/g' \ + -e 's/=SERIES=/$(series)/g' \ + > $(DEBIAN)/control.stub; + flavours="$(sort $(wildcard $(DEBIAN)/control.d/vars.* $(DEBIAN)/sub-flavours/*.vars))";\ + for i in $$flavours; do \ + $(SHELL) $(DROOT)/scripts/control-create $$i "$(any_signed)" | \ + sed -e 's/PKGVER/$(release)/g' \ + -e 's/ABINUM/$(abinum)/g' \ + -e 's/SRCPKGNAME/$(src_pkg_name)/g' \ + -e 's/=HUMAN=/$(human_arch)/g' \ + -e 's/=SERIES=/$(series)/g' \ + >> $(DEBIAN)/control.stub; \ + done + +.PHONY: debian/control +debian/control: $(DEBIAN)/control.stub + cp $(DEBIAN)/control.stub debian/control + +debian/canonical-certs.pem: $(wildcard $(DROOT)/certs/*-all.pem) $(wildcard $(DROOT)/certs/*-$(arch).pem) $(wildcard $(DEBIAN)/certs/*-all.pem) $(wildcard $(DEBIAN)/certs/*-$(arch).pem) + for cert in $(sort $(notdir $^)); \ + do \ + for dir in $(DEBIAN) $(DROOT); \ + do \ + if [ -f "$$dir/certs/$$cert" ]; then \ + cat "$$dir/certs/$$cert"; \ + break; \ + fi; \ + done; \ + done >"$@" + +debian/canonical-revoked-certs.pem: $(wildcard $(DROOT)/revoked-certs/*-all.pem) $(wildcard $(DROOT)/revoked-certs/*-$(arch).pem) $(wildcard $(DEBIAN)/revoked-certs/*-all.pem) $(wildcard $(DEBIAN)/revoked-certs/*-$(arch).pem) + for cert in $(sort $(notdir $^)); \ + do \ + for dir in $(DEBIAN) $(DROOT); \ + do \ + if [ -f "$$dir/revoked-certs/$$cert" ]; then \ + cat "$$dir/revoked-certs/$$cert"; \ + break; \ + fi; \ + done; \ + done >"$@" diff --git a/debian/rules.d/0-common-vars.mk b/debian/rules.d/0-common-vars.mk new file mode 100644 index 00000000000000..78f8a0f16e3af4 --- /dev/null +++ b/debian/rules.d/0-common-vars.mk @@ -0,0 +1,287 @@ +# Used when you need to 'escape' a comma. +comma = , + +# +# The source package name will be the first token from $(DEBIAN)/changelog +# +src_pkg_name=$(shell sed -n '1s/^\(.*\) (.*).*$$/\1/p' $(DEBIAN)/changelog) + +# Get the series +series=$(shell dpkg-parsechangelog -l$(DEBIAN)/changelog | sed -ne 's/^Distribution: *//p' | sed -e 's/-\(security\|updates\|proposed\)$$//') + +# Get some version info +release := $(shell sed -n '1s/^$(src_pkg_name).*(\(.*\)-.*).*$$/\1/p' $(DEBIAN)/changelog) +revisions := $(shell sed -n 's/^$(src_pkg_name)\ .*($(release)-\(.*\)).*$$/\1/p' $(DEBIAN)/changelog | tac) +revision ?= $(word $(words $(revisions)),$(revisions)) +prev_revisions := $(filter-out $(revision),0.0 $(revisions)) +ifneq (,$(prev_revisions)) +prev_revision := $(word $(words $(prev_revisions)),$(prev_revisions)) +endif + +prev_fullver ?= $(shell dpkg-parsechangelog -l$(DEBIAN)/changelog -o1 -c1 | sed -ne 's/^Version: *//p') + +# Get variants. Assume primary if debian/variants is not present. +variants = -- +ifneq (,$(wildcard $(DEBIAN)/variants)) + variants := $(shell cat $(DEBIAN)/variants) +endif + +# Get upstream version info +upstream_version := $(shell sed -n 's/^VERSION = \(.*\)$$/\1/p' Makefile) +upstream_patchlevel := $(shell sed -n 's/^PATCHLEVEL = \(.*\)$$/\1/p' Makefile) +upstream_tag := "v$(upstream_version).$(upstream_patchlevel)" + +family=ubuntu + +# This is an internally used mechanism for the daily kernel builds. It +# creates packages whose ABI is suffixed with a minimal representation of +# the current git HEAD sha. If .git/HEAD is not present, then it uses the +# uuidgen program, +# +# AUTOBUILD can also be used by anyone wanting to build a custom kernel +# image, or rebuild the entire set of Ubuntu packages using custom patches +# or configs. +AUTOBUILD= + +ifneq ($(AUTOBUILD),) +skipabi = true +skipmodule = true +skipretpoline = true +skipdbg = true +gitver=$(shell if test -f .git/HEAD; then cat .git/HEAD; else uuidgen; fi) +gitverpre=$(shell echo $(gitver) | cut -b -3) +gitverpost=$(shell echo $(gitver) | cut -b 38-40) +abi_suffix = -$(gitverpre)$(gitverpost) +endif + +ifneq ($(NOKERNLOG),) +ubuntu_log_opts += --no-kern-log +endif +ifneq ($(PRINTSHAS),) +ubuntu_log_opts += --print-shas +endif + +# Get the kernels own extra version to be added to the release signature. +raw_kernelversion=$(shell make kernelversion) + +# +# full_build -- are we doing a full buildd style build +# +ifeq ($(wildcard /CurrentlyBuilding),) +full_build?=false +else +full_build?=true +endif + +# +# The debug packages are ginormous, so you probably want to skip +# building them (as a developer). +# +ifeq ($(full_build),false) +skipdbg=true +endif + +abinum := $(shell echo $(revision) | sed -r -e 's/([^\+~]*)\.[^\.]+(~.*)?(\+.*)?$$/\1/')$(abi_suffix) +prev_abinum := $(shell echo $(prev_revision) | sed -r -e 's/([^\+~]*)\.[^\.]+(~.*)?(\+.*)?$$/\1/')$(abi_suffix) +abi_release := $(release)-$(abinum) + +uploadnum := $(shell echo $(revision) | sed -r -e 's/[^\+~]*\.([^\.~]+(~.*)?(\+.*)?$$)/\1/') +ifneq ($(full_build),false) + uploadnum := $(uploadnum)-Ubuntu +endif + +# XXX: linux-libc-dev got bumped to -803.N inadvertantly by a ti-omap4 upload +# shift our version higher for this package only. Ensure this only +# occurs for the v2.6.35 kernel so that we do not propogate this into +# any other series. +raw_uploadnum := $(shell echo $(revision) | sed -e 's/.*\.//') +libc_dev_version := +ifeq ($(DEBIAN),debian.master) +ifeq ($(release),2.6.35) +libc_dev_version := -v$(release)-$(shell expr "$(abinum)" + 1000).$(raw_uploadnum) +endif +endif + +DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) +DEB_HOST_GNU_TYPE = $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE = $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_BUILD_ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH) + +# +# Detect invocations of the form 'fakeroot debian/rules binary arch=armhf' +# within an x86'en schroot. This only gets you part of the way since the +# packaging phase fails, but you can at least compile the kernel quickly. +# +arch := $(DEB_HOST_ARCH) +ifneq ($(arch),$(DEB_HOST_ARCH)) + CROSS_COMPILE ?= $(shell dpkg-architecture -a$(arch) -qDEB_HOST_GNU_TYPE -f 2>/dev/null)- +endif + +# +# Detect invocations of the form 'dpkg-buildpackage -B -aarmhf' within +# an x86'en schroot. This is the only way to build all of the packages +# (except for tools). +# +ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + CROSS_COMPILE ?= $(DEB_HOST_GNU_TYPE)- +endif + +abidir := $(CURDIR)/$(DEBIAN)/__abi.current/$(arch) +prev_abidir := $(CURDIR)/$(DEBIAN)/abi/$(arch) +commonconfdir := $(CURDIR)/$(DEBIAN)/config +archconfdir := $(CURDIR)/$(DEBIAN)/config/$(arch) +sharedconfdir := $(CURDIR)/debian.master/config +builddir := $(CURDIR)/debian/build +stampdir := $(CURDIR)/debian/stamps + +# +# The binary package name always starts with linux-image-$KVER-$ABI.$UPLOAD_NUM. There +# are places that you'll find linux-image hard coded, but I guess thats OK since the +# assumption that the binary package always starts with linux-image will never change. +# +bin_pkg_name_signed=linux-image-$(abi_release) +bin_pkg_name_unsigned=linux-image-unsigned-$(abi_release) +mods_pkg_name=linux-modules-$(abi_release) +mods_extra_pkg_name=linux-modules-extra-$(abi_release) +bldinfo_pkg_name=linux-buildinfo-$(abi_release) +hdrs_pkg_name=linux-headers-$(abi_release) +indep_hdrs_pkg_name=$(src_pkg_name)-headers-$(abi_release) + +# +# The generation of content in the doc package depends on both 'AUTOBUILD=' and +# 'do_doc_package_content=true'. There are usually build errors during the development +# cycle, so its OK to leave 'do_doc_package_content=false' until those build +# failures get sorted out. Finally, the doc package doesn't really need to be built +# for developer testing (its kind of slow), so only do it if on a buildd. +ifneq ($(filter --,$(variants)),) +do_doc_package=true +else +do_doc_package=false +endif +do_doc_package_content=false +ifeq ($(full_build),false) +do_doc_package_content=false +endif +doc_pkg_name=$(src_pkg_name)-doc + +# +# Similarly with the linux-source package, you need not build it as a developer. Its +# somewhat I/O intensive and utterly useless. +# +do_source_package=true +do_source_package_content=true +ifeq ($(full_build),false) +do_source_package_content=false +endif + +# linux-libc-dev may not be needed, default to building it only for the +# primary variant +ifneq ($(filter --,$(variants)),) +do_libc_dev_package=true +else +do_libc_dev_package=false +endif + +# common headers normally is built as an indep package, but may be arch +do_common_headers_indep=true + +# add a 'full source' mode +do_full_source=false + +# Add an option to enable special drivers which should only be build when +# explicitly enabled. +do_odm_drivers=false + +# build tools +ifneq ($(wildcard $(CURDIR)/tools),) + ifeq ($(do_tools),) + ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + do_tools=false + endif + endif + do_tools?=true +else + do_tools?=false +endif +tools_pkg_name=$(src_pkg_name)-tools-$(abi_release) +tools_common_pkg_name=$(src_pkg_name)-tools-common +tools_flavour_pkg_name=linux-tools-$(abi_release) +cloud_pkg_name=$(src_pkg_name)-cloud-tools-$(abi_release) +cloud_common_pkg_name=$(src_pkg_name)-cloud-tools-common +cloud_flavour_pkg_name=linux-cloud-tools-$(abi_release) +hosttools_pkg_name=$(src_pkg_name)-tools-host + +# The general flavour specific image package. +do_flavour_image_package=true + +# The general flavour specific header package. +do_flavour_header_package=true + +# DTBs +do_dtbs=false + +# FIPS check +do_fips_checks=false + +# Support parallel= in DEB_BUILD_OPTIONS (see #209008) +# +# These 2 environment variables set the -j value of the kernel build. For example, +# CONCURRENCY_LEVEL=16 fakeroot $(DEBIAN)/rules binary-debs +# or +# DEB_BUILD_OPTIONS=parallel=16 fakeroot $(DEBIAN)/rules binary-debs +# +# The default is to use the number of CPUs. +# +COMMA=, +DEB_BUILD_OPTIONS_PARA = $(subst parallel=,,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS)))) +ifneq (,$(DEB_BUILD_OPTIONS_PARA)) + CONCURRENCY_LEVEL := $(DEB_BUILD_OPTIONS_PARA) +endif + +ifeq ($(CONCURRENCY_LEVEL),) + # Check the environment + CONCURRENCY_LEVEL := $(shell echo $$CONCURRENCY_LEVEL) + # No? Then build with the number of CPUs on the host. + ifeq ($(CONCURRENCY_LEVEL),) + CONCURRENCY_LEVEL := $(shell expr `getconf _NPROCESSORS_ONLN` \* 1) + endif + # Oh hell, give 'em one + ifeq ($(CONCURRENCY_LEVEL),) + CONCURRENCY_LEVEL := 1 + endif +endif + +conc_level = -j$(CONCURRENCY_LEVEL) + +PYTHON ?= $(firstword $(wildcard /usr/bin/python3) $(wildcard /usr/bin/python2) $(wildcard /usr/bin/python)) + +# target_flavour is filled in for each step +kmake = make ARCH=$(build_arch) \ + CROSS_COMPILE=$(CROSS_COMPILE) \ + KERNELVERSION=$(abi_release)-$(target_flavour) \ + CONFIG_DEBUG_SECTION_MISMATCH=y \ + KBUILD_BUILD_VERSION="$(uploadnum)" \ + LOCALVERSION= localver-extra= \ + CFLAGS_MODULE="-DPKG_ABI=$(abinum)" \ + PYTHON=$(PYTHON) +ifneq ($(LOCAL_ENV_CC),) +kmake += CC="$(LOCAL_ENV_CC)" DISTCC_HOSTS="$(LOCAL_ENV_DISTCC_HOSTS)" +endif + +# Locking is required in parallel builds to prevent loss of contents +# of the debian/files. +lockme_file = $(CURDIR)/debian/.LOCK +lockme_cmd = flock -w 60 +lockme = $(lockme_cmd) $(lockme_file) + +# Don't fail if a link already exists. +LN = ln -sf + +# Checks if a var is overriden by the custom rules. Called with var and +# flavour as arguments. +custom_override = \ + $(shell if [ -n "$($(1)_$(2))" ]; then echo "$($(1)_$(2))"; else echo "$($(1))"; fi) + +# selftests that Ubuntu cares about +ubuntu_selftests = breakpoints cpu-hotplug efivarfs memfd memory-hotplug mount net ptrace seccomp timers powerpc user ftrace diff --git a/debian/rules.d/1-maintainer.mk b/debian/rules.d/1-maintainer.mk new file mode 100644 index 00000000000000..cd249d179bdfa6 --- /dev/null +++ b/debian/rules.d/1-maintainer.mk @@ -0,0 +1,173 @@ +# The following targets are for the maintainer only! do not run if you don't +# know what they do. + +.PHONY: printenv updateconfigs printchanges insertchanges startnewrelease diffupstream help autoreconstruct finalchecks + +help: + @echo "These are the targets in addition to the normal $(DEBIAN) ones:" + @echo + @echo " printenv : Print some variables used in the build" + @echo + @echo " updateconfigs : Update core arch configs" + @echo + @echo " editconfigs : Update core arch configs interractively" + @echo " genconfigs : Generate core arch configs in CONFIGS/*" + @echo + @echo " printchanges : Print the current changelog entries (from git)" + @echo + @echo " insertchanges : Insert current changelog entries (from git)" + @echo + @echo " startnewrelease : Start a new changelog set" + @echo + @echo " diffupstream : Diff stock kernel code against upstream (git)" + @echo + @echo " compileselftests : Only compile the selftests listed on ubuntu_selftests variable" + @echo + @echo " runselftests : Run the selftests listed on ubuntu_selftests variable" + @echo + @echo " help : If you are kernel hacking, you need the professional" + @echo " version of this" + @echo + @echo "Environment variables:" + @echo + @echo " NOKERNLOG : Do not add upstream kernel commits to changelog" + @echo " CONCURRENCY_LEVEL=X" + @echo " : Use -jX for kernel compile" + @echo " PRINTSHAS : Include SHAs for commits in changelog" + +printdebian: + @echo "$(DEBIAN)" + +updateconfigs defaultconfigs editconfigs genconfigs dumpconfigs: + dh_testdir; + $(SHELL) $(DROOT)/scripts/misc/kernelconfig $@ "$(do_enforce_all)" + rm -rf build + +printenv: + dh_testdir + @echo "src package name = $(src_pkg_name)" + @echo "series = $(series)" + @echo "release = $(release)" + @echo "revisions = $(revisions)" + @echo "revision = $(revision)" + @echo "uploadnum = $(uploadnum)" + @echo "prev_revisions = $(prev_revisions)" + @echo "prev_revision = $(prev_revision)" + @echo "abinum = $(abinum)" + @echo "upstream_tag = $(upstream_tag)" + @echo "gitver = $(gitver)" + @echo "variants = $(variants)" + @echo "flavours = $(flavours)" + @echo "skipabi = $(skipabi)" + @echo "skipmodule = $(skipmodule)" + @echo "skipdbg = $(skipdbg)" + @echo "ubuntu_log_opts = $(ubuntu_log_opts)" + @echo "CONCURRENCY_LEVEL = $(CONCURRENCY_LEVEL)" + @echo "ubuntu_selftests = $(ubuntu_selftests)" + @echo "bin package name = $(bin_pkg_name)" + @echo "hdr package name = $(hdrs_pkg_name)" + @echo "doc package name = $(doc_pkg_name)" + @echo "do_doc_package = $(do_doc_package)" + @echo "do_doc_package_content = $(do_doc_package_content)" + @echo "do_source_package = $(do_source_package)" + @echo "do_source_package_content = $(do_source_package_content)" + @echo "do_libc_dev_package = $(do_libc_dev_package)" + @echo "do_flavour_image_package = $(do_flavour_image_package)" + @echo "do_flavour_header_package = $(do_flavour_header_package)" + @echo "do_common_headers_indep = $(do_common_headers_indep)" + @echo "do_full_source = $(do_full_source)" + @echo "do_odm_drivers = $(do_odm_drivers)" + @echo "do_tools = $(do_tools)" + @echo "do_any_tools = $(do_any_tools)" + @echo "do_linux_tools = $(do_linux_tools)" + @echo " do_tools_cpupower = $(do_tools_cpupower)" + @echo " do_tools_perf = $(do_tools_perf)" + @echo " do_tools_bpftool = $(do_tools_bpftool)" + @echo " do_tools_x86 = $(do_tools_x86)" + @echo " do_tools_host = $(do_tools_host)" + @echo "do_cloud_tools = $(do_cloud_tools)" + @echo " do_tools_hyperv = $(do_tools_hyperv)" + @echo "any_signed = $(any_signed)" + @echo " uefi_signed = $(uefi_signed)" + @echo " opal_signed = $(opal_signed)" + @echo " sipl_signed = $(sipl_signed)" + @echo "full_build = $(full_build)" + @echo "libc_dev_version = $(libc_dev_version)" + @echo "DEB_HOST_GNU_TYPE = $(DEB_HOST_GNU_TYPE)" + @echo "DEB_BUILD_GNU_TYPE = $(DEB_BUILD_GNU_TYPE)" + @echo "DEB_HOST_ARCH = $(DEB_HOST_ARCH)" + @echo "DEB_BUILD_ARCH = $(DEB_BUILD_ARCH)" + @echo "arch = $(arch)" + @echo "kmake = $(kmake)" + +printchanges: + @baseCommit=$$(git log --pretty=format:'%H %s' | \ + gawk '/UBUNTU: '".*Ubuntu-.*`echo $(prev_fullver) | sed 's/+/\\\\+/'`"'(~.*)?$$/ { print $$1; exit }'); \ + if [ -z "$$baseCommit" ]; then \ + echo "WARNING: couldn't find a commit for the previous version. Using the lastest one." >&2; \ + baseCommit=$$(git log --pretty=format:'%H %s' | \ + gawk '/UBUNTU:\s*Ubuntu-.*$$/ { print $$1; exit }'); \ + fi; \ + git log "$$baseCommit"..HEAD | \ + $(DROOT)/scripts/misc/git-ubuntu-log $(ubuntu_log_opts) + +insertchanges: autoreconstruct finalchecks + $(DROOT)/scripts/misc/insert-changes $(DROOT) $(DEBIAN) + +autoreconstruct: + # No need for reconstruct for -rc kernels since we don't upload an + # orig tarball, so just remove it. + if grep -q "^EXTRAVERSION = -rc[0-9]\+$$" Makefile; then \ + echo "exit 0" >$(DEBIAN)/reconstruct; \ + else \ + $(DROOT)/scripts/misc/gen-auto-reconstruct $(upstream_tag) $(DEBIAN)/reconstruct $(DROOT)/source/options; \ + fi + +finalchecks: debian/control +ifeq ($(do_fips_checks),true) + $(DROOT)/scripts/misc/fips-checks +endif + $(DROOT)/scripts/misc/final-checks "$(DEBIAN)" "$(prev_fullver)" + +diffupstream: + @git diff-tree -p refs/remotes/linux-2.6/master..HEAD $(shell ls | grep -vE '^(ubuntu|$(DEBIAN)|\.git.*)') + +startnewrelease: + dh_testdir + @[ -f "$(DEBIAN)/etc/update.conf" ] && . "$(DEBIAN)/etc/update.conf"; \ + if [ -n "$$BACKPORT_SUFFIX" ]; then \ + ver="$$(dpkg-parsechangelog -l"$$DEBIAN_MASTER/changelog" -SVersion)$${BACKPORT_SUFFIX}.1"; \ + prev_ver="$$(dpkg-parsechangelog -l"$(DEBIAN)/changelog" -SVersion)"; \ + if [ "$${ver%.*}" = "$${prev_ver%.*}" ]; then \ + ver="$${ver%.*}.$$(( $${prev_ver##*.} +1 ))"; \ + fi; \ + else \ + rev=$(revision); \ + suffix=$$(echo "$${rev}" | sed 's/^[0-9]*\.[0-9]*//'); \ + abi=$${rev%%.*}; \ + upload=$${rev#*.}; \ + upload=$${upload%$${suffix}}; \ + ver=$(release)-$$((abi + 1)).$$((upload + 1))$${suffix}; \ + fi; \ + now="$(shell date -R)"; \ + echo "Creating new changelog set for $$ver..."; \ + echo -e "$(src_pkg_name) ($$ver) UNRELEASED; urgency=medium\n" > $(DEBIAN)/changelog.new; \ + echo " CHANGELOG: Do not edit directly. Autogenerated at release." >> \ + $(DEBIAN)/changelog.new; \ + echo " CHANGELOG: Use the printchanges target to see the curent changes." \ + >> $(DEBIAN)/changelog.new; \ + echo " CHANGELOG: Use the insertchanges target to create the final log." \ + >> $(DEBIAN)/changelog.new; \ + echo -e "\n -- $$DEBFULLNAME <$$DEBEMAIL> $$now\n" >> \ + $(DEBIAN)/changelog.new ; \ + cat $(DEBIAN)/changelog >> $(DEBIAN)/changelog.new; \ + mv $(DEBIAN)/changelog.new $(DEBIAN)/changelog + +compileselftests: + # a loop is needed here to fail on errors + for test in $(ubuntu_selftests); do \ + $(kmake) -C tools/testing/selftests TARGETS="$$test"; \ + done; + +runselftests: + $(kmake) -C tools/testing/selftests TARGETS="$(ubuntu_selftests)" run_tests diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk new file mode 100644 index 00000000000000..f5ce021276c91f --- /dev/null +++ b/debian/rules.d/2-binary-arch.mk @@ -0,0 +1,805 @@ +# We don't want make removing intermediary stamps +.SECONDARY : + +# Prepare the out-of-tree build directory +ifeq ($(do_full_source),true) +build_cd = cd $(builddir)/build-$*; # +build_O = +else +build_cd = +build_O = O=$(builddir)/build-$* +endif + +# Typically supplied from the arch makefile, e.g., debian.master/control.d/armhf.mk +ifneq ($(gcc),) +kmake += CC=$(CROSS_COMPILE)$(gcc) +endif + +shlibdeps_opts = $(if $(CROSS_COMPILE),-- -l$(CROSS_COMPILE:%-=/usr/%)/lib) + +debian/scripts/fix-filenames: debian/scripts/fix-filenames.c + $(CC) -o $@ $^ + +$(stampdir)/stamp-prepare-%: config-prepare-check-% + @echo Debug: $@ + @touch $@ +$(stampdir)/stamp-prepare-tree-%: target_flavour = $* +$(stampdir)/stamp-prepare-tree-%: $(commonconfdir)/config.common.$(family) $(archconfdir)/config.common.$(arch) $(archconfdir)/config.flavour.% debian/scripts/fix-filenames + @echo Debug: $@ + install -d $(builddir)/build-$* + touch $(builddir)/build-$*/ubuntu-build + [ "$(do_full_source)" != 'true' ] && true || \ + rsync -a --exclude debian --exclude debian.master --exclude $(DEBIAN) * $(builddir)/build-$* + cat $(wordlist 1,3,$^) | sed -e 's/.*CONFIG_VERSION_SIGNATURE.*/CONFIG_VERSION_SIGNATURE="Ubuntu $(release)-$(revision)-$* $(raw_kernelversion)"/' > $(builddir)/build-$*/.config + [ "$(do_odm_drivers)" = 'true' ] && true || \ + sed -ie 's/.*CONFIG_UBUNTU_ODM_DRIVERS.*/# CONFIG_UBUNTU_ODM_DRIVERS is not set/' \ + $(builddir)/build-$*/.config + find $(builddir)/build-$* -name "*.ko" | xargs rm -f + $(build_cd) $(kmake) $(build_O) -j1 syncconfig prepare scripts + touch $@ + +# Used by developers as a shortcut to prepare a tree for compilation. +prepare-%: $(stampdir)/stamp-prepare-% + @echo Debug: $@ +# Used by developers to allow efficient pre-building without fakeroot. +build-%: $(stampdir)/stamp-install-% + @echo Debug: $@ + +# Do the actual build, including image and modules +$(stampdir)/stamp-build-%: target_flavour = $* +$(stampdir)/stamp-build-%: bldimg = $(call custom_override,build_image,$*) +$(stampdir)/stamp-build-%: $(stampdir)/stamp-prepare-% + @echo Debug: $@ build_image $(build_image) bldimg $(bldimg) + $(build_cd) $(kmake) $(build_O) $(conc_level) $(bldimg) modules $(if $(filter true,$(do_dtbs)),dtbs) + +ifneq ($(skipdbg),true) + # The target scripts_gdb is part of "all", so we need to call it manually + if grep -q CONFIG_GDB_SCRIPTS=y $(builddir)/build-$*/.config; then \ + $(build_cd) $(kmake) $(build_O) $(conc_level) scripts_gdb ; \ + fi +endif + + @touch $@ + +define build_dkms_sign = + $(shell set -x; if grep -q CONFIG_MODULE_SIG=y $(1)/.config; then + echo $(1)/scripts/sign-file $(MODHASHALGO) $(MODSECKEY) $(MODPUBKEY); + else + echo "-"; + fi + ) +endef +define build_dkms = + CROSS_COMPILE=$(CROSS_COMPILE) $(SHELL) $(DROOT)/scripts/dkms-build $(dkms_dir) $(abi_release)-$* '$(call build_dkms_sign,$(builddir)/build-$*)' $(1) $(2) $(3) $(4) $(5) +endef + +define install_control = + for which in $(3); \ + do \ + template="$(DROOT)/templates/$(2).$$which.in"; \ + script="$(DROOT)/$(1).$$which"; \ + sed -e 's/@abiname@/$(abi_release)/g' \ + -e 's/@localversion@/-$*/g' \ + -e 's/@image-stem@/$(instfile)/g' \ + <"$$template" >"$$script"; \ + done +endef + +# Ensure the directory prefix is exactly 100 characters long so pathnames are the +# exact same length in any binary files produced by the builds. These will be +# commonised later. +dkms_20d=.................... +dkms_100d=$(dkms_20d)$(dkms_20d)$(dkms_20d)$(dkms_20d)$(dkms_20d) +dkms_100c=$(shell echo '$(dkms_100d)' | sed -e 's/\./_/g') +define dkms_dir_prefix = +$(shell echo $(1)/$(dkms_100c) | \ + sed -e 's/\($(dkms_100d)\).*/\1/' -e 's/^\(.*\)....$$/\1dkms/') +endef + +# Install the finished build +$(stampdir)/stamp-install-%: pkgdir_bin = $(CURDIR)/debian/$(bin_pkg_name)-$* +$(stampdir)/stamp-install-%: pkgdir = $(CURDIR)/debian/$(mods_pkg_name)-$* +$(stampdir)/stamp-install-%: pkgdir_ex = $(CURDIR)/debian/$(mods_extra_pkg_name)-$* +$(stampdir)/stamp-install-%: pkgdir_bldinfo = $(CURDIR)/debian/$(bldinfo_pkg_name)-$* +$(stampdir)/stamp-install-%: bindoc = $(pkgdir)/usr/share/doc/$(bin_pkg_name)-$* +$(stampdir)/stamp-install-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym +$(stampdir)/stamp-install-%: signingv = $(CURDIR)/debian/$(bin_pkg_name)-signing/$(release)-$(revision) +$(stampdir)/stamp-install-%: toolspkgdir = $(CURDIR)/debian/$(tools_flavour_pkg_name)-$* +$(stampdir)/stamp-install-%: cloudpkgdir = $(CURDIR)/debian/$(cloud_flavour_pkg_name)-$* +$(stampdir)/stamp-install-%: basepkg = $(hdrs_pkg_name) +$(stampdir)/stamp-install-%: indeppkg = $(indep_hdrs_pkg_name) +$(stampdir)/stamp-install-%: kernfile = $(call custom_override,kernel_file,$*) +$(stampdir)/stamp-install-%: instfile = $(call custom_override,install_file,$*) +$(stampdir)/stamp-install-%: hdrdir = $(CURDIR)/debian/$(basepkg)-$*/usr/src/$(basepkg)-$* +$(stampdir)/stamp-install-%: target_flavour = $* +$(stampdir)/stamp-install-%: MODHASHALGO=sha512 +$(stampdir)/stamp-install-%: MODSECKEY=$(builddir)/build-$*/certs/signing_key.pem +$(stampdir)/stamp-install-%: MODPUBKEY=$(builddir)/build-$*/certs/signing_key.x509 +$(stampdir)/stamp-install-%: build_dir=$(builddir)/build-$* +$(stampdir)/stamp-install-%: dkms_dir=$(call dkms_dir_prefix,$(builddir)/build-$*) +$(stampdir)/stamp-install-%: enable_zfs = $(call custom_override,do_zfs,$*) +$(stampdir)/stamp-install-%: dbgpkgdir_zfs = $(if $(filter true,$(skipdbg)),"",$(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/kernel) +$(stampdir)/stamp-install-%: $(stampdir)/stamp-build-% $(stampdir)/stamp-install-headers + @echo Debug: $@ kernel_file $(kernel_file) kernfile $(kernfile) install_file $(install_file) instfile $(instfile) + dh_testdir + dh_prep -p$(bin_pkg_name)-$* + dh_prep -p$(mods_pkg_name)-$* + dh_prep -p$(hdrs_pkg_name)-$* +ifneq ($(skipdbg),true) + dh_prep -p$(bin_pkg_name)-$*-dbgsym +endif + + # The main image + # compress_file logic required because not all architectures + # generate a zImage automatically out of the box +ifeq ($(compress_file),) + install -m600 -D $(builddir)/build-$*/$(kernfile) \ + $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* +else + install -d $(pkgdir_bin)/boot + gzip -c9v $(builddir)/build-$*/$(kernfile) > \ + $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* + chmod 600 $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* +endif + +ifeq ($(uefi_signed),true) + install -d $(signingv) + # gzipped kernel images must be decompressed for signing + if [[ "$(kernfile)" =~ \.gz$$ ]]; then \ + < $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ + gunzip -cv > $(signingv)/$(instfile)-$(abi_release)-$*.efi; \ + cp -p --attributes-only $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ + $(signingv)/$(instfile)-$(abi_release)-$*.efi; \ + echo "GZIP=1" >> $(signingv)/$(instfile)-$(abi_release)-$*.efi.vars; \ + else \ + cp -p $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ + $(signingv)/$(instfile)-$(abi_release)-$*.efi; \ + fi +endif +ifeq ($(opal_signed),true) + install -d $(signingv) + cp -p $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ + $(signingv)/$(instfile)-$(abi_release)-$*.opal; +endif +ifeq ($(sipl_signed),true) + install -d $(signingv) + cp -p $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ + $(signingv)/$(instfile)-$(abi_release)-$*.sipl; +endif + + install -d $(pkgdir)/boot + install -m644 $(builddir)/build-$*/.config \ + $(pkgdir)/boot/config-$(abi_release)-$* + install -m600 $(builddir)/build-$*/System.map \ + $(pkgdir)/boot/System.map-$(abi_release)-$* + +ifeq ($(do_dtbs),true) + $(build_cd) $(kmake) $(build_O) $(conc_level) dtbs_install \ + INSTALL_DTBS_PATH=$(pkgdir)/lib/firmware/$(abi_release)-$*/device-tree +endif + +ifeq ($(no_dumpfile),) + makedumpfile -g $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* \ + -x $(builddir)/build-$*/vmlinux + chmod 0600 $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* +endif + + $(build_cd) $(kmake) $(build_O) $(conc_level) modules_install $(vdso) \ + INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=$(pkgdir)/ \ + INSTALL_FW_PATH=$(pkgdir)/lib/firmware/$(abi_release)-$* + + # + # Build module blacklists: + # - blacklist all watchdog drivers (LP:1432837) + # + install -d $(pkgdir)/lib/modprobe.d + echo "# Kernel supplied blacklist for $(src_pkg_name) $(abi_release)-$* $(arch)" \ + >$(pkgdir)/lib/modprobe.d/blacklist_$(src_pkg_name)_$(abi_release)-$*.conf + for conf in $(arch)-$* $(arch) common.conf; do \ + if [ -f $(DEBIAN)/modprobe.d/$$conf ]; then \ + echo "# modprobe.d/$$conf"; \ + cat $(DEBIAN)/modprobe.d/$$conf; \ + fi; \ + done >>$(pkgdir)/lib/modprobe.d/blacklist_$(src_pkg_name)_$(abi_release)-$*.conf + echo "# Autogenerated watchdog blacklist" \ + >>$(pkgdir)/lib/modprobe.d/blacklist_$(src_pkg_name)_$(abi_release)-$*.conf + ls -1 $(pkgdir)/lib/modules/$(abi_release)-$*/kernel/drivers/watchdog/ | \ + grep -v '^bcm2835_wdt$$' | \ + sed -e 's/^/blacklist /' -e 's/.ko$$//' | \ + sort -u \ + >>$(pkgdir)/lib/modprobe.d/blacklist_$(src_pkg_name)_$(abi_release)-$*.conf + +ifeq ($(do_extras_package),true) + # + # Remove all modules not in the inclusion list. + # + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + /sbin/depmod -v -b $(pkgdir) $(abi_release)-$* | \ + sed -e "s@$(pkgdir)/lib/modules/$(abi_release)-$*/kernel/@@g" | \ + awk '{ print $$1 " " $$NF}' >$(build_dir)/module-inclusion.depmap; \ + mkdir -p $(pkgdir_ex)/lib/modules/$(abi_release)-$*; \ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/kernel \ + $(pkgdir_ex)/lib/modules/$(abi_release)-$*/kernel; \ + $(SHELL) $(DROOT)/scripts/module-inclusion --master \ + $(pkgdir_ex)/lib/modules/$(abi_release)-$*/kernel \ + $(pkgdir)/lib/modules/$(abi_release)-$*/kernel \ + $(DEBIAN)/control.d/$(target_flavour).inclusion-list \ + $(build_dir)/module-inclusion.depmap 2>&1 | \ + tee $(target_flavour).inclusion-list.log; \ + /sbin/depmod -b $(pkgdir) -ea -F $(pkgdir)/boot/System.map-$(abi_release)-$* \ + $(abi_release)-$* 2>&1 |tee $(target_flavour).depmod.log; \ + if [ `grep -c 'unknown symbol' $(target_flavour).depmod.log` -gt 0 ]; then \ + echo "EE: Unresolved module dependencies in base package!"; \ + exit 1; \ + fi \ + fi +endif + +ifeq ($(no_dumpfile),) + makedumpfile -g $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* \ + -x $(builddir)/build-$*/vmlinux + chmod 0600 $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* +endif + rm -f $(pkgdir)/lib/modules/$(abi_release)-$*/build + rm -f $(pkgdir)/lib/modules/$(abi_release)-$*/source + + # Some initramfs-tools specific modules + install -d $(pkgdir)/lib/modules/$(abi_release)-$*/initrd + if [ -f $(pkgdir)/lib/modules/$(abi_release)-$*/kernel/drivers/video/vesafb.ko ]; then\ + $(LN) $(pkgdir)/lib/modules/$(abi_release)-$*/kernel/drivers/video/vesafb.ko \ + $(pkgdir)/lib/modules/$(abi_release)-$*/initrd/; \ + fi + + echo "interest linux-update-$(abi_release)-$*" >"$(DROOT)/$(bin_pkg_name)-$*.triggers" + install -d $(pkgdir_bin)/usr/lib/linux/triggers + $(call install_control,$(bin_pkg_name)-$*,image,postinst postrm preinst prerm) + install -d $(pkgdir)/usr/lib/linux/triggers + $(call install_control,$(mods_pkg_name)-$*,extra,postinst postrm) +ifeq ($(do_extras_package),true) + # Install the postinit/postrm scripts in the extras package. + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + install -d $(pkgdir_ex)/usr/lib/linux/triggers; \ + $(call install_control,$(mods_extra_pkg_name)-$*,extra,postinst postrm); \ + fi +endif + + # Install the full changelog. +ifeq ($(do_doc_package),true) + install -d $(bindoc) + cat $(DEBIAN)/changelog $(DEBIAN)/changelog.historical | \ + gzip -9 >$(bindoc)/changelog.Debian.old.gz + chmod 644 $(bindoc)/changelog.Debian.old.gz +endif + +ifneq ($(skipsub),true) + for sub in $($(*)_sub); do \ + if ! (TO=$$sub FROM=$* ABI_RELEASE=$(abi_release) $(SHELL) \ + $(DROOT)/scripts/sub-flavour); then exit 1; fi; \ + /sbin/depmod -b debian/$(bin_pkg_name)-$$sub \ + -ea -F debian/$(bin_pkg_name)-$$sub/boot/System.map-$(abi_release)-$* \ + $(abi_release)-$*; \ + $(call install_control,$(bin_pkg_name)--$$sub,image,postinst postrm preinst prerm); \ + done +endif + +ifneq ($(skipdbg),true) + # Debug image is simple + install -m644 -D $(builddir)/build-$*/vmlinux \ + $(dbgpkgdir)/usr/lib/debug/boot/vmlinux-$(abi_release)-$* + if [ -d $(builddir)/build-$*/scripts/gdb/linux ]; then \ + install -m644 -D $(builddir)/build-$*/vmlinux-gdb.py \ + $(dbgpkgdir)/usr/share/gdb/auto-load/boot/vmlinux-$(abi_release)-$*/vmlinuz-$(abi_release)-$*-gdb.py; \ + install -m644 -D $(builddir)/build-$*/scripts/gdb/linux/* \ + --target-directory=$(dbgpkgdir)/usr/share/gdb/auto-load/boot/vmlinux-$(abi_release)-$*/scripts/gdb/linux; \ + fi + $(build_cd) $(kmake) $(build_O) modules_install $(vdso) \ + INSTALL_MOD_PATH=$(dbgpkgdir)/usr/lib/debug + # Add .gnu_debuglink sections only after all/DKMS modules are built. + rm -f $(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/build + rm -f $(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/source + rm -f $(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/modules.* + rm -fr $(dbgpkgdir)/usr/lib/debug/lib/firmware +endif + + # The flavour specific headers image + # TODO: Would be nice if we didn't have to dupe the original builddir + install -d -m755 $(hdrdir) + cp $(builddir)/build-$*/.config $(hdrdir) + chmod 644 $(hdrdir)/.config + $(kmake) O=$(hdrdir) -j1 syncconfig prepare scripts + # We'll symlink this stuff + rm -f $(hdrdir)/Makefile + rm -rf $(hdrdir)/include2 $(hdrdir)/source + # We do not need the retpoline information. + find $(hdrdir) -name \*.o.ur-\* | xargs rm -f + # Copy over the compilation version. + cp "$(builddir)/build-$*/include/generated/compile.h" \ + "$(hdrdir)/include/generated/compile.h" + # Add UTS_UBUNTU_RELEASE_ABI since UTS_RELEASE is difficult to parse. + echo "#define UTS_UBUNTU_RELEASE_ABI $(abinum)" >> $(hdrdir)/include/generated/utsrelease.h + # powerpc kernel arch seems to need some .o files for external module linking. Add them in. +ifeq ($(build_arch),powerpc) + mkdir -p $(hdrdir)/arch/powerpc/lib + cp $(builddir)/build-$*/arch/powerpc/lib/*.o $(hdrdir)/arch/powerpc/lib +endif + # Copy over scripts/module.lds for building external modules + cp $(builddir)/build-$*/scripts/module.lds $(hdrdir)/scripts + # Copy over the new retpoline extractor. + cp scripts/ubuntu-retpoline-extract-one $(hdrdir)/scripts + # Script to symlink everything up + $(SHELL) $(DROOT)/scripts/link-headers "$(hdrdir)" "$(indeppkg)" "$*" + # The build symlink + install -d debian/$(basepkg)-$*/lib/modules/$(abi_release)-$* + $(LN) /usr/src/$(basepkg)-$* \ + debian/$(basepkg)-$*/lib/modules/$(abi_release)-$*/build + # And finally the symvers + install -m644 $(builddir)/build-$*/Module.symvers \ + $(hdrdir)/Module.symvers + + # Now the header scripts + $(call install_control,$(hdrs_pkg_name)-$*,headers,postinst) + + # At the end of the package prep, call the tests + DPKG_ARCH="$(arch)" KERN_ARCH="$(build_arch)" FLAVOUR="$*" \ + VERSION="$(abi_release)" REVISION="$(revision)" \ + PREV_REVISION="$(prev_revision)" ABI_NUM="$(abinum)" \ + PREV_ABI_NUM="$(prev_abinum)" BUILD_DIR="$(builddir)/build-$*" \ + INSTALL_DIR="$(pkgdir)" SOURCE_DIR="$(CURDIR)" \ + run-parts -v $(DROOT)/tests-build + + # + # Remove files which are generated at installation by postinst, + # except for modules.order and modules.builtin + # + # NOTE: need to keep this list in sync with postrm + # + mkdir $(pkgdir)/lib/modules/$(abi_release)-$*/_ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/modules.order \ + $(pkgdir)/lib/modules/$(abi_release)-$*/_ + if [ -f $(pkgdir)/lib/modules/$(abi_release)-$*/modules.builtin ] ; then \ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/modules.builtin \ + $(pkgdir)/lib/modules/$(abi_release)-$*/_; \ + fi + if [ -f $(pkgdir)/lib/modules/$(abi_release)-$*/modules.builtin.modinfo ] ; then \ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/modules.builtin.modinfo \ + $(pkgdir)/lib/modules/$(abi_release)-$*/_; \ + fi + rm -f $(pkgdir)/lib/modules/$(abi_release)-$*/modules.* + mv $(pkgdir)/lib/modules/$(abi_release)-$*/_/* \ + $(pkgdir)/lib/modules/$(abi_release)-$* + rmdir $(pkgdir)/lib/modules/$(abi_release)-$*/_ + +ifeq ($(do_linux_tools),true) + # Create the linux-tools tool links + install -d $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +ifeq ($(do_tools_usbip),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/usbip $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/usbipd $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +ifeq ($(do_tools_acpidbg),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/acpidbg $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +ifeq ($(do_tools_cpupower),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/cpupower $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +ifeq ($(do_tools_perf),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/perf $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +ifeq ($(do_tools_perf_jvmti),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/libperf-jvmti.so $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +endif +ifeq ($(do_tools_bpftool),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/bpftool $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +ifeq ($(do_tools_x86),true) + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/x86_energy_perf_policy $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/turbostat $(toolspkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +endif +ifeq ($(do_cloud_tools),true) +ifeq ($(do_tools_hyperv),true) + # Create the linux-hyperv tool links + install -d $(cloudpkgdir)/usr/lib/linux-tools/$(abi_release)-$* + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/hv_kvp_daemon $(cloudpkgdir)/usr/lib/linux-tools/$(abi_release)-$* + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/hv_vss_daemon $(cloudpkgdir)/usr/lib/linux-tools/$(abi_release)-$* + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/hv_fcopy_daemon $(cloudpkgdir)/usr/lib/linux-tools/$(abi_release)-$* + $(LN) ../../$(src_pkg_name)-tools-$(abi_release)/lsvmbus $(cloudpkgdir)/usr/lib/linux-tools/$(abi_release)-$* +endif +endif + + # Build a temporary "installed headers" directory. + install -d $(dkms_dir) $(dkms_dir)/headers $(dkms_dir)/build $(dkms_dir)/source + cp -rp "$(hdrdir)" "$(indep_hdrdir)" "$(dkms_dir)/headers" + + $(if $(filter true,$(enable_zfs)),$(call build_dkms, $(mods_pkg_name)-$*, $(pkgdir)/lib/modules/$(abi_release)-$*/kernel, $(dbgpkgdir_zfs), zfs, pool/universe/z/zfs-linux/zfs-dkms_$(dkms_zfs_linux_version)_all.deb)) + +ifneq ($(skipdbg),true) + # Add .gnu_debuglink sections to each stripped .ko + # pointing to unstripped verson + find $(pkgdir) \ + $(if $(filter true,$(do_extras_package)),$(pkgdir_ex)) \ + -name '*.ko' | while read path_module ; do \ + module="/lib/modules/$${path_module#*/lib/modules/}"; \ + if [[ -f "$(dbgpkgdir)/usr/lib/debug/$$module" ]] ; then \ + while IFS= read -r -d '' signature < <(tail -c 28 "$$path_module"); do \ + break; \ + done; \ + $(CROSS_COMPILE)objcopy \ + --add-gnu-debuglink=$(dbgpkgdir)/usr/lib/debug/$$module \ + $$path_module; \ + if grep -q CONFIG_MODULE_SIG=y $(builddir)/build-$*/.config && \ + [ "$$signature" = $$'~Module signature appended~\n' ]; then \ + $(builddir)/build-$*/scripts/sign-file $(MODHASHALGO) \ + $(MODSECKEY) \ + $(MODPUBKEY) \ + $$path_module; \ + fi; \ + else \ + echo "WARNING: Missing debug symbols for module '$$module'."; \ + fi; \ + done +endif + + # Build the final ABI information. + install -d $(abidir) + sed -e 's/^\(.\+\)[[:space:]]\+\(.\+\)[[:space:]]\(.\+\)$$/\3 \2 \1/' \ + $(builddir)/build-$*/Module.symvers | sort > $(abidir)/$* + + # Build the final ABI modules information. + find $(pkgdir_bin) $(pkgdir) $(pkgdir_ex) -name \*.ko | \ + sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > $(abidir)/$*.modules + + # Build the final ABI firmware information. + find $(pkgdir_bin) $(pkgdir) $(pkgdir_ex) -name \*.ko | \ + while read ko; do \ + /sbin/modinfo $$ko | grep ^firmware || true; \ + done | sort -u >$(abidir)/$*.fwinfo + + # Build the final ABI compiler information. + ko=$$(find $(pkgdir_bin) $(pkgdir) $(pkgdir_ex) -name \*.ko | head -1); \ + readelf -p .comment "$$ko" | gawk ' \ + ($$1 == "[") { \ + printf("%s", $$3); \ + for (n=4; n<=NF; n++) { \ + printf(" %s", $$n); \ + } \ + print "" \ + }' | sort -u >$(abidir)/$*.compiler + + # Build the final ABI retpoline information. + if grep -q CONFIG_RETPOLINE=y $(builddir)/build-$*/.config; then \ + echo "# retpoline v1.0" >$(abidir)/$*.retpoline; \ + $(SHELL) $(DROOT)/scripts/retpoline-extract $(builddir)/build-$* $(CURDIR) | \ + sort >>$(abidir)/$*.retpoline; \ + else \ + echo "# RETPOLINE NOT ENABLED" >$(abidir)/$*.retpoline; \ + fi + + # Build the buildinfo package content. + install -d $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$* + install -m644 $(builddir)/build-$*/.config \ + $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/config + install -m644 $(abidir)/$* \ + $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/abi + install -m644 $(abidir)/$*.modules \ + $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/modules + install -m644 $(abidir)/$*.fwinfo \ + $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/fwinfo + install -m644 $(abidir)/$*.retpoline \ + $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/retpoline + install -m644 $(abidir)/$*.compiler \ + $(pkgdir_bldinfo)/usr/lib/linux/$(abi_release)-$*/compiler + +ifneq ($(full_build),false) + # Clean out this flavours build directory. + rm -rf $(builddir)/build-$* +endif + @touch $@ + +headers_tmp := $(CURDIR)/debian/tmp-headers +headers_dir := $(CURDIR)/debian/linux-libc-dev + +hmake := $(MAKE) -C $(CURDIR) O=$(headers_tmp) \ + KERNELVERSION=$(abi_release) INSTALL_HDR_PATH=$(headers_tmp)/install \ + SHELL="$(SHELL)" ARCH=$(header_arch) + +install-arch-headers: + @echo Debug: $@ + dh_testdir + dh_testroot +ifeq ($(do_libc_dev_package),true) + dh_prep -plinux-libc-dev +endif + + rm -rf $(headers_tmp) + install -d $(headers_tmp) $(headers_dir)/usr/include/ + + $(hmake) $(defconfig) + mv $(headers_tmp)/.config $(headers_tmp)/.config.old + sed -e 's/^# \(CONFIG_MODVERSIONS\) is not set$$/\1=y/' \ + -e 's/.*CONFIG_LOCALVERSION_AUTO.*/# CONFIG_LOCALVERSION_AUTO is not set/' \ + $(headers_tmp)/.config.old > $(headers_tmp)/.config + $(hmake) syncconfig + $(hmake) headers_install + + ( cd $(headers_tmp)/install/include/ && \ + find . -name '.' -o -name '.*' -prune -o -print | \ + cpio -pvd --preserve-modification-time \ + $(headers_dir)/usr/include/ ) + mkdir $(headers_dir)/usr/include/$(DEB_HOST_MULTIARCH) + mv $(headers_dir)/usr/include/asm $(headers_dir)/usr/include/$(DEB_HOST_MULTIARCH)/ + + rm -rf $(headers_tmp) + +define dh_all + dh_installchangelogs -p$(1) + dh_installdocs -p$(1) + dh_compress -p$(1) + dh_fixperms -p$(1) -X/boot/ + dh_shlibdeps -p$(1) $(shlibdeps_opts) + dh_installdeb -p$(1) + dh_installdebconf -p$(1) + $(lockme) dh_gencontrol -p$(1) -- -Vlinux:rprovides='$(rprovides)' + dh_md5sums -p$(1) + dh_builddeb -p$(1) +endef +define newline + + +endef +define dh_all_inline + $(subst ${newline},; \${newline},$(call dh_all,$(1))) +endef + +binary-arch-headers: install-arch-headers + @echo Debug: $@ + dh_testdir + dh_testroot +ifeq ($(do_libc_dev_package),true) +ifeq ($(filter debian.master%,$(DEBIAN)),) + echo "non-master branch building linux-libc-dev, aborting" + exit 1 +endif + $(call dh_all,linux-libc-dev) +endif + +binary-%: pkgimg = $(bin_pkg_name)-$* +binary-%: pkgimg_mods = $(mods_pkg_name)-$* +binary-%: pkgimg_ex = $(mods_extra_pkg_name)-$* +binary-%: pkgdir_ex = $(CURDIR)/debian/$(extra_pkg_name)-$* +binary-%: pkgbldinfo = $(bldinfo_pkg_name)-$* +binary-%: pkghdr = $(hdrs_pkg_name)-$* +binary-%: dbgpkg = $(bin_pkg_name)-$*-dbgsym +binary-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym +binary-%: pkgtools = $(tools_flavour_pkg_name)-$* +binary-%: pkgcloud = $(cloud_flavour_pkg_name)-$* +binary-%: rprovides = $(if $(filter true,$(call custom_override,do_zfs,$*)),spl-modules$(comma) spl-dkms$(comma) zfs-modules$(comma) zfs-dkms$(comma)) +binary-%: target_flavour = $* +binary-%: checks-% + @echo Debug: $@ + dh_testdir + dh_testroot + + $(call dh_all,$(pkgimg)) + $(call dh_all,$(pkgimg_mods)) + +ifeq ($(do_extras_package),true) + ifeq ($(ship_extras_package),false) + # If $(ship_extras_package) is explicitly set to false, then do not + # construct the linux-image-extra package; instead just log all of the + # "extra" modules which were pointlessly built yet won't be shipped. + find $(pkgdir_ex) -name '*.ko' | sort \ + | sed 's|^$(pkgdir_ex)/|NOT-SHIPPED |' \ + | tee -a $(target_flavour).not-shipped.log; + else + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + $(call dh_all_inline,$(pkgimg_ex)); \ + fi + endif +endif + + $(call dh_all,$(pkgbldinfo)) + $(call dh_all,$(pkghdr)) + +ifneq ($(skipsub),true) + @set -e; for sub in $($(*)_sub); do \ + pkg=$(bin_pkg_name)-$$sub; \ + $(call dh_all_inline,$$pkg); \ + done +endif + +ifneq ($(skipdbg),true) + $(call dh_all,$(dbgpkg)) + + # Hokay...here's where we do a little twiddling... + # Renaming the debug package prevents it from getting into + # the primary archive, and therefore prevents this very large + # package from being mirrored. It is instead, through some + # archive admin hackery, copied to http://ddebs.ubuntu.com. + # + mv ../$(dbgpkg)_$(release)-$(revision)_$(arch).deb \ + ../$(dbgpkg)_$(release)-$(revision)_$(arch).ddeb + set -e; \ + ( \ + $(lockme_cmd) 9 || exit 1; \ + if grep -qs '^Build-Debug-Symbols: yes$$' /CurrentlyBuilding; then \ + sed -i '/^$(dbgpkg)_/s/\.deb /.ddeb /' debian/files; \ + else \ + grep -v '^$(dbgpkg)_.*$$' debian/files > debian/files.new; \ + mv debian/files.new debian/files; \ + fi; \ + ) 9>$(lockme_file) + # Now, the package wont get into the archive, but it will get put + # into the debug system. +endif + +ifeq ($(do_linux_tools),true) + $(call dh_all,$(pkgtools)) +endif +ifeq ($(do_cloud_tools),true) + $(call dh_all,$(pkgcloud)) +endif + +ifneq ($(full_build),false) + # Clean out the debugging package source directory. + rm -rf $(dbgpkgdir) +endif + +# +# per-architecture packages +# +builddirpa = $(builddir)/tools-perarch + +$(stampdir)/stamp-prepare-perarch: + @echo Debug: $@ +ifeq ($(do_any_tools),true) + rm -rf $(builddirpa) + install -d $(builddirpa) + rsync -a --exclude debian --exclude debian.master --exclude $(DEBIAN) --exclude .git -a ./ $(builddirpa)/ +endif + touch $@ + +$(stampdir)/stamp-build-perarch: $(stampdir)/stamp-prepare-perarch install-arch-headers + @echo Debug: $@ +ifeq ($(do_linux_tools),true) +ifeq ($(do_tools_usbip),true) + chmod 755 $(builddirpa)/tools/usb/usbip/autogen.sh + cd $(builddirpa)/tools/usb/usbip && ./autogen.sh + chmod 755 $(builddirpa)/tools/usb/usbip/configure + cd $(builddirpa)/tools/usb/usbip && ./configure --prefix=$(builddirpa)/tools/usb/usbip/bin + cd $(builddirpa)/tools/usb/usbip && make install CFLAGS="-g -O2 -static" CROSS_COMPILE=$(CROSS_COMPILE) +endif +ifeq ($(do_tools_acpidbg),true) + cd $(builddirpa)/tools/power/acpi && make clean && make CFLAGS="-g -O2 -static -I$(builddirpa)/include" CROSS_COMPILE=$(CROSS_COMPILE) acpidbg +endif +ifeq ($(do_tools_cpupower),true) + # Allow for multiple installed versions of cpupower and libcpupower.so: + # Override LIB_MIN in order to to generate a versioned .so named + # libcpupower.so.$(abi_release) and link cpupower with that. + make -C $(builddirpa)/tools/power/cpupower \ + CROSS_COMPILE=$(CROSS_COMPILE) \ + CROSS=$(CROSS_COMPILE) \ + LIB_MIN=$(abi_release) CPUFREQ_BENCH=false +endif +ifeq ($(do_tools_perf),true) + cd $(builddirpa) && $(kmake) $(defconfig) + mv $(builddirpa)/.config $(builddirpa)/.config.old + sed -e 's/^# \(CONFIG_MODVERSIONS\) is not set$$/\1=y/' \ + -e 's/.*CONFIG_LOCALVERSION_AUTO.*/# CONFIG_LOCALVERSION_AUTO is not set/' \ + $(builddirpa)/.config.old > $(builddirpa)/.config + cd $(builddirpa) && $(kmake) syncconfig + cd $(builddirpa) && $(kmake) prepare + cd $(builddirpa)/tools/perf && \ + $(kmake) prefix=/usr HAVE_NO_LIBBFD=1 HAVE_CPLUS_DEMANGLE_SUPPORT=1 CROSS_COMPILE=$(CROSS_COMPILE) NO_LIBPYTHON=1 NO_LIBPERL=1 WERROR=0 +endif +ifeq ($(do_tools_bpftool),true) + $(kmake) CROSS_COMPILE=$(CROSS_COMPILE) -C $(builddirpa)/tools/bpf/bpftool +endif +ifeq ($(do_tools_x86),true) + cd $(builddirpa)/tools/power/x86/x86_energy_perf_policy && make CROSS_COMPILE=$(CROSS_COMPILE) + cd $(builddirpa)/tools/power/x86/turbostat && make CROSS_COMPILE=$(CROSS_COMPILE) +endif +endif +ifeq ($(do_cloud_tools),true) +ifeq ($(do_tools_hyperv),true) + cd $(builddirpa)/tools/hv && make CFLAGS="-I$(headers_dir)/usr/include -I$(headers_dir)/usr/include/$(DEB_HOST_MULTIARCH)" CROSS_COMPILE=$(CROSS_COMPILE) hv_kvp_daemon hv_vss_daemon hv_fcopy_daemon +endif +endif + @touch $@ + +install-perarch: toolspkgdir = $(CURDIR)/debian/$(tools_pkg_name) +install-perarch: cloudpkgdir = $(CURDIR)/debian/$(cloud_pkg_name) +install-perarch: $(stampdir)/stamp-build-perarch + @echo Debug: $@ + # Add the tools. +ifeq ($(do_linux_tools),true) + install -d $(toolspkgdir)/usr/lib + install -d $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +ifeq ($(do_tools_usbip),true) + install -m755 $(builddirpa)/tools/usb/usbip/bin/sbin/usbip \ + $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + install -m755 $(builddirpa)/tools/usb/usbip/bin/sbin/usbipd \ + $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +endif +ifeq ($(do_tools_acpidbg),true) + install -m755 $(builddirpa)/tools/power/acpi/acpidbg \ + $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +endif +ifeq ($(do_tools_cpupower),true) + install -m755 $(builddirpa)/tools/power/cpupower/cpupower \ + $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + # Install only the full versioned libcpupower.so.$(abi_release), not + # the usual symlinks to it. + install -m644 $(builddirpa)/tools/power/cpupower/libcpupower.so.$(abi_release) \ + $(toolspkgdir)/usr/lib/ +endif +ifeq ($(do_tools_perf),true) + install -m755 $(builddirpa)/tools/perf/perf $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +ifeq ($(do_tools_perf_jvmti),true) + install -m755 $(builddirpa)/tools/perf/libperf-jvmti.so $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +endif +endif +ifeq ($(do_tools_bpftool),true) + install -m755 $(builddirpa)/tools/bpf/bpftool/bpftool $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +endif +ifeq ($(do_tools_x86),true) + install -m755 $(builddirpa)/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy \ + $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + install -m755 $(builddirpa)/tools/power/x86/turbostat/turbostat \ + $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +endif +endif +ifeq ($(do_cloud_tools),true) +ifeq ($(do_tools_hyperv),true) + install -d $(cloudpkgdir)/usr/lib + install -d $(cloudpkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + install -m755 $(builddirpa)/tools/hv/hv_kvp_daemon \ + $(cloudpkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + install -m755 $(builddirpa)/tools/hv/hv_vss_daemon \ + $(cloudpkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + install -m755 $(builddirpa)/tools/hv/hv_fcopy_daemon \ + $(cloudpkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) + install -m755 $(builddirpa)/tools/hv/lsvmbus \ + $(cloudpkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) +endif +endif + +binary-perarch: toolspkg = $(tools_pkg_name) +binary-perarch: cloudpkg = $(cloud_pkg_name) +binary-perarch: install-perarch + @echo Debug: $@ +ifeq ($(do_linux_tools),true) + $(call dh_all,$(toolspkg)) +endif +ifeq ($(do_cloud_tools),true) + $(call dh_all,$(cloudpkg)) +endif + +binary-debs: signing = $(CURDIR)/debian/$(bin_pkg_name)-signing +binary-debs: signingv = $(CURDIR)/debian/$(bin_pkg_name)-signing/$(release)-$(revision) +binary-debs: signing_tar = $(src_pkg_name)_$(release)-$(revision)_$(arch).tar.gz +binary-debs: binary-perarch $(addprefix binary-,$(flavours)) + @echo Debug: $@ +ifeq ($(any_signed),true) + install -d $(signingv)/control + { echo "tarball"; } >$(signingv)/control/options + cd $(signing) && tar czvf ../../../$(signing_tar) . + dpkg-distaddfile $(signing_tar) raw-signing - +endif + +build-arch-deps-$(do_flavour_image_package) += $(addprefix $(stampdir)/stamp-install-,$(flavours)) +build-arch: $(build-arch-deps-true) + @echo Debug: $@ + +ifeq ($(AUTOBUILD),) +binary-arch-deps-$(do_flavour_image_package) += binary-debs +else +binary-arch-deps-$(do_flavour_image_package) = binary-debs +endif +binary-arch-deps-$(do_libc_dev_package) += binary-arch-headers +ifneq ($(do_common_headers_indep),true) +binary-arch-deps-$(do_flavour_header_package) += binary-headers +endif +binary-arch: $(binary-arch-deps-true) + @echo Debug: $@ + diff --git a/debian/rules.d/3-binary-indep.mk b/debian/rules.d/3-binary-indep.mk new file mode 100644 index 00000000000000..95ad7056459bb9 --- /dev/null +++ b/debian/rules.d/3-binary-indep.mk @@ -0,0 +1,232 @@ +build-indep: + @echo Debug: $@ + +# The binary-indep dependency chain is: +# +# install-headers <- install-doc <- install-source <- install-tools <- install-indep <- binary-indep +# install-headers <- binary-headers +# +indep_hdrpkg = $(indep_hdrs_pkg_name) +indep_hdrdir = $(CURDIR)/debian/$(indep_hdrpkg)/usr/src/$(indep_hdrpkg) +$(stampdir)/stamp-install-headers: $(stampdir)/stamp-prepare-indep + @echo Debug: $@ + dh_testdir + +ifeq ($(do_flavour_header_package),true) + install -d $(indep_hdrdir) + find . -path './debian' -prune -o -path './$(DEBIAN)' -prune \ + -o -path './include/*' -prune \ + -o -path './scripts/*' -prune -o -type f \ + \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \ + -name '*.sh' -o -name '*.pl' -o -name '*.lds' \) \ + -print | cpio -pd --preserve-modification-time $(indep_hdrdir) + cp -a scripts include $(indep_hdrdir) + (find arch -name include -type d -print | \ + xargs -n1 -i: find : -type f) | \ + cpio -pd --preserve-modification-time $(indep_hdrdir) +endif + @touch $@ + +docpkg = $(doc_pkg_name) +docdir = $(CURDIR)/debian/$(docpkg)/usr/share/doc/$(docpkg) +install-doc: $(stampdir)/stamp-prepare-indep + @echo Debug: $@ +ifeq ($(do_doc_package),true) + dh_testdir + dh_testroot + + install -d $(docdir) +ifeq ($(do_doc_package_content),true) + # First the html docs. We skip these for autobuilds + if [ -z "$(AUTOBUILD)" ]; then \ + install -d $(docdir)/$(doc_pkg_name)-tmp; \ + $(kmake) O=$(docdir)/$(doc_pkg_name)-tmp htmldocs; \ + install -d $(docdir)/html; \ + rsync -aL $(docdir)/$(doc_pkg_name)-tmp/Documentation/output/ \ + $(docdir)/html/; \ + rm -rf $(docdir)/$(doc_pkg_name)-tmp; \ + fi +endif + # Copy the rest + cp -a Documentation/* $(docdir) + find $(docdir) -name .gitignore | xargs rm -f +endif + +srcpkg = linux-source-$(release) +srcdir = $(CURDIR)/debian/$(srcpkg)/usr/src/$(srcpkg) +balldir = $(CURDIR)/debian/$(srcpkg)/usr/src/$(srcpkg)/$(srcpkg) +install-source: $(stampdir)/stamp-prepare-indep + @echo Debug: $@ +ifeq ($(do_source_package),true) + + install -d $(srcdir) +ifeq ($(do_source_package_content),true) + find . -path './debian' -prune -o -path './$(DEBIAN)' -prune -o \ + -path './.*' -prune -o -print | \ + cpio -pd --preserve-modification-time $(balldir) + (cd $(srcdir); tar cf - $(srcpkg)) | bzip2 -9c > \ + $(srcdir)/$(srcpkg).tar.bz2 + rm -rf $(balldir) + find './debian' './$(DEBIAN)' \ + -path './debian/linux-*' -prune -o \ + -path './debian/$(src_pkg_name)-*' -prune -o \ + -path './debian/build' -prune -o \ + -path './debian/files' -prune -o \ + -path './debian/stamps' -prune -o \ + -path './debian/tmp' -prune -o \ + -path './$(DEBIAN)/__abi.current' -prune -o \ + -print | \ + cpio -pd --preserve-modification-time $(srcdir) + $(LN) $(srcpkg)/$(srcpkg).tar.bz2 $(srcdir)/.. +endif +endif + +install-tools: toolspkg = $(tools_common_pkg_name) +install-tools: toolsbin = $(CURDIR)/debian/$(toolspkg)/usr/bin +install-tools: toolssbin = $(CURDIR)/debian/$(toolspkg)/usr/sbin +install-tools: toolsman = $(CURDIR)/debian/$(toolspkg)/usr/share/man +install-tools: toolsbashcomp = $(CURDIR)/debian/$(toolspkg)/usr/share/bash-completion/completions +install-tools: hosttoolspkg = $(hosttools_pkg_name) +install-tools: hosttoolsbin = $(CURDIR)/debian/$(hosttoolspkg)/usr/bin +install-tools: hosttoolsman = $(CURDIR)/debian/$(hosttoolspkg)/usr/share/man +install-tools: hosttoolssystemd = $(CURDIR)/debian/$(hosttoolspkg)/lib/systemd/system +install-tools: cloudpkg = $(cloud_common_pkg_name) +install-tools: cloudbin = $(CURDIR)/debian/$(cloudpkg)/usr/bin +install-tools: cloudsbin = $(CURDIR)/debian/$(cloudpkg)/usr/sbin +install-tools: cloudman = $(CURDIR)/debian/$(cloudpkg)/usr/share/man +install-tools: $(stampdir)/stamp-prepare-indep $(stampdir)/stamp-build-perarch + @echo Debug: $@ + +ifeq ($(do_tools_common),true) + rm -rf $(builddir)/tools + install -d $(builddir)/tools + for i in *; do $(LN) $(CURDIR)/$$i $(builddir)/tools/; done + rm $(builddir)/tools/tools + rsync -a tools/ $(builddir)/tools/tools/ + + install -d $(toolsbin) + install -d $(toolssbin) + install -d $(toolsman)/man1 + install -d $(toolsman)/man8 + install -d $(toolsbashcomp) + + install -m755 debian/tools/generic $(toolsbin)/usbip + install -m755 debian/tools/generic $(toolsbin)/usbipd + install -m644 $(CURDIR)/tools/usb/usbip/doc/*.8 $(toolsman)/man1/ + + install -m755 debian/tools/generic $(toolsbin)/cpupower + install -m644 $(CURDIR)/tools/power/cpupower/man/*.1 $(toolsman)/man1/ + + install -m755 debian/tools/generic $(toolsbin)/perf + + install -m755 debian/tools/generic $(toolssbin)/bpftool + make -C $(builddir)/tools/tools/bpf/bpftool doc + install -m644 $(builddir)/tools/tools/bpf/bpftool/Documentation/*.8 \ + $(toolsman)/man8 + install -m644 $(builddir)/tools/tools/bpf/bpftool/bash-completion/bpftool \ + $(toolsbashcomp) + + install -m755 debian/tools/generic $(toolsbin)/x86_energy_perf_policy + install -m755 debian/tools/generic $(toolsbin)/turbostat + + cd $(builddir)/tools/tools/perf && make man + install -m644 $(builddir)/tools/tools/perf/Documentation/*.1 \ + $(toolsman)/man1 + + install -m644 $(CURDIR)/tools/power/x86/x86_energy_perf_policy/*.8 $(toolsman)/man8 + install -m644 $(CURDIR)/tools/power/x86/turbostat/*.8 $(toolsman)/man8 + +ifeq ($(do_cloud_tools),true) +ifeq ($(do_tools_hyperv),true) + install -d $(cloudsbin) + install -m755 debian/tools/generic $(cloudsbin)/hv_kvp_daemon + install -m755 debian/tools/generic $(cloudsbin)/hv_vss_daemon + install -m755 debian/tools/generic $(cloudsbin)/hv_fcopy_daemon + install -m755 debian/tools/generic $(cloudsbin)/lsvmbus + install -m755 debian/cloud-tools/hv_get_dhcp_info $(cloudsbin) + install -m755 debian/cloud-tools/hv_get_dns_info $(cloudsbin) + install -m755 debian/cloud-tools/hv_set_ifconfig $(cloudsbin) + + install -d $(cloudman)/man8 + install -m644 $(CURDIR)/tools/hv/*.8 $(cloudman)/man8 +endif +endif + +ifeq ($(do_tools_acpidbg),true) + install -m755 debian/tools/generic $(toolsbin)/acpidbg +endif + +endif + +ifeq ($(do_tools_host),true) + install -d $(hosttoolsbin) + install -d $(hosttoolsman)/man1 + install -d $(hosttoolssystemd) + + install -m 755 $(CURDIR)/tools/kvm/kvm_stat/kvm_stat $(hosttoolsbin)/ + install -m 644 $(CURDIR)/tools/kvm/kvm_stat/kvm_stat.service \ + $(hosttoolssystemd)/ + + cd $(builddir)/tools/tools/kvm/kvm_stat && make man + install -m644 $(builddir)/tools/tools/kvm/kvm_stat/*.1 \ + $(hosttoolsman)/man1 +endif + +$(stampdir)/stamp-prepare-indep: + @echo Debug: $@ + dh_prep -i + @touch $@ + +install-indep: $(stampdir)/stamp-install-headers install-doc install-source install-tools + @echo Debug: $@ + +# This is just to make it easy to call manually. Normally done in +# binary-indep target during builds. +binary-headers: $(stampdir)/stamp-prepare-indep $(stampdir)/stamp-install-headers + @echo Debug: $@ + dh_installchangelogs -p$(indep_hdrpkg) + dh_installdocs -p$(indep_hdrpkg) + dh_compress -p$(indep_hdrpkg) + dh_fixperms -p$(indep_hdrpkg) + dh_installdeb -p$(indep_hdrpkg) + $(lockme) dh_gencontrol -p$(indep_hdrpkg) + dh_md5sums -p$(indep_hdrpkg) + dh_builddeb -p$(indep_hdrpkg) + +binary-indep: cloudpkg = $(cloud_common_pkg_name) +binary-indep: hosttoolspkg = $(hosttools_pkg_name) +binary-indep: install-indep + @echo Debug: $@ + dh_installchangelogs -i + dh_installdocs -i + dh_compress -i + dh_fixperms -i +ifeq ($(do_tools_common),true) +ifeq ($(do_cloud_tools),true) +ifeq ($(do_tools_hyperv),true) + dh_installinit -p$(cloudpkg) -n --name hv-kvp-daemon + dh_installinit -p$(cloudpkg) -n --name hv-vss-daemon + dh_installinit -p$(cloudpkg) -n --name hv-fcopy-daemon + dh_installudev -p$(cloudpkg) -n --name hv-kvp-daemon + dh_installudev -p$(cloudpkg) -n --name hv-vss-daemon + dh_installudev -p$(cloudpkg) -n --name hv-fcopy-daemon + dh_systemd_enable -p$(cloudpkg) + dh_installinit -p$(cloudpkg) -o --name hv-kvp-daemon + dh_installinit -p$(cloudpkg) -o --name hv-vss-daemon + dh_installinit -p$(cloudpkg) -o --name hv-fcopy-daemon + dh_systemd_start -p$(cloudpkg) +endif + # Keep intel_sgx service disabled by default, so add it after dh_systemd_enable + # and dh_systemd_start are called: + dh_installinit -p$(cloudpkg) --no-start --no-enable --name intel-sgx-load-module +endif +endif +ifeq ($(do_tools_host),true) + # Keep kvm_stat.service disabled by default (after dh_systemd_enable + # and dh_systemd_start: + dh_installinit -p$(hosttoolspkg) --no-enable --no-start --name kvm_stat +endif + dh_installdeb -i + $(lockme) dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i diff --git a/debian/rules.d/4-checks.mk b/debian/rules.d/4-checks.mk new file mode 100644 index 00000000000000..d85de43adffc95 --- /dev/null +++ b/debian/rules.d/4-checks.mk @@ -0,0 +1,28 @@ +# Check ABI for package against last release (if not same abinum) +abi-check-%: $(stampdir)/stamp-install-% + @echo Debug: $@ + @perl -f $(DROOT)/scripts/abi-check "$*" "$(prev_abinum)" "$(abinum)" \ + "$(prev_abidir)" "$(abidir)" "$(skipabi)" + +# Check the module list against the last release (always) +module-check-%: $(stampdir)/stamp-install-% + @echo Debug: $@ + $(DROOT)/scripts/module-check "$*" \ + "$(prev_abidir)" "$(abidir)" $(skipmodule) + +# Check the reptoline jmp/call functions against the last release. +retpoline-check-%: $(stampdir)/stamp-install-% + @echo Debug: $@ + $(SHELL) $(DROOT)/scripts/retpoline-check "$*" \ + "$(prev_abidir)" "$(abidir)" "$(skipretpoline)" "$(builddir)/build-$*" + +checks-%: module-check-% abi-check-% retpoline-check-% + @echo Debug: $@ + +# Check the config against the known options list. +config-prepare-check-%: $(stampdir)/stamp-prepare-tree-% + @echo Debug: $@ + @perl -f $(DROOT)/scripts/config-check \ + $(builddir)/build-$*/.config "$(arch)" "$*" "$(commonconfdir)" \ + "$(skipconfig)" "$(do_enforce_all)" + diff --git a/debian/scripts/abi-check b/debian/scripts/abi-check new file mode 100755 index 00000000000000..039e4d0069c5c2 --- /dev/null +++ b/debian/scripts/abi-check @@ -0,0 +1,2 @@ +#!/bin/sh +exit 0 diff --git a/debian/scripts/config-check b/debian/scripts/config-check new file mode 100755 index 00000000000000..039e4d0069c5c2 --- /dev/null +++ b/debian/scripts/config-check @@ -0,0 +1,2 @@ +#!/bin/sh +exit 0 diff --git a/debian/scripts/control-create b/debian/scripts/control-create new file mode 100755 index 00000000000000..2ab9e497515fe1 --- /dev/null +++ b/debian/scripts/control-create @@ -0,0 +1,40 @@ +#!/bin/bash + +. debian/debian.env + +vars=$1 +any_signed=$2 + +. $vars + +[ "$provides" != '' ] && provides="$provides, " + +if [ "$is_sub" = "" ]; then + flavour=$(basename $vars | sed 's/.*\.//') + stub="${DEBIAN}/control.d/flavour-control.stub debian/control.d/flavour-buildinfo.stub" + if [ "$any_signed" = 'true' ]; then + sign_me_pkg="-unsigned" + sign_me_txt=" unsigned" + sign_peer_pkg="" + else + sign_me_pkg="" + sign_me_txt="" + sign_peer_pkg="-unsigned" + fi +else + flavour=$(basename $vars .vars) + stub=${DEBIAN}/sub-flavours/control.stub +fi + +cat $stub | grep -v '^#' | sed \ + -e "s#FLAVOUR#$flavour#g" \ + -e "s#DESC#$desc#g" \ + -e "s#ARCH#$arch#g" \ + -e "s#SUPPORTED#$supported#g" \ + -e "s#TARGET#$target#g" \ + -e "s#BOOTLOADER#$bootloader#g" \ + -e "s#=PROVIDES=#$provides#g" \ + -e "s#=CONFLICTS=#$conflicts#g" \ + -e "s#=SIGN-ME-PKG=#$sign_me_pkg#g" \ + -e "s#=SIGN-ME-TXT=#$sign_me_txt#g" \ + -e "s#=SIGN-PEER-PKG=#$sign_peer_pkg#g" diff --git a/debian/scripts/dkms-build b/debian/scripts/dkms-build new file mode 100755 index 00000000000000..9d78fc60e63f08 --- /dev/null +++ b/debian/scripts/dkms-build @@ -0,0 +1,261 @@ +#!/bin/bash +set -e + +dkms_dir="$1" +abi_flavour="$2" +sign="$3" +pkgname="$4" +pkgdir="$5" +dbgpkgdir="$6" +package="$7" +shift 7 + +here=$(dirname "$(readlink -f "${0}")") + +srcdir=$(pwd) +cd "$dkms_dir" || exit 1 + +built_using_record() +{ + local subst="$1" + local built_using="$2" + if [ ! -f "$subst" ]; then + touch "$subst" + fi + if ! grep -q -s "^linux:BuiltUsing=" "$subst"; then + echo "linux:BuiltUsing=" >>"$subst" + fi + sed -i -e "s/^\(linux:BuiltUsing=.*\)/\1$built_using, /" "$subst" +} + +# ABI: returns present in $? and located path in lpackage_path when found. +package_present() +{ + for lpackage_path in "$1"_*.deb + do + break + done + [ -f "$lpackage_path" ] +} + +# Download and extract the DKMS package -- note there may be more +# than one package to install. +for package_path in "$@" +do + package_file=$(basename "$package_path") + echo "II: dkms-build downloading $package ($package_file)" + rpackage=$( echo "$package_path" | sed -e 's@.*/@@' -e 's@_.*@@' ) + lpackage=$( echo "$rpackage" | sed -e 's@=.*@@' ) + + while true + do + if package_present "$lpackage"; then + break + fi + case "$package_path" in + pool/*) + # Attempt download from the launchpad librarian first. + "$here/file-downloader" "https://launchpad.net/ubuntu/+archive/primary/+files/$package_file" || true + if package_present "$lpackage"; then + break + fi + + # Download from the available pools. + for pool in $( grep -h '^deb ' /etc/apt/sources.list /etc/apt/sources.list.d/*.list | awk '{print $2}' | sort -u ) + do + if package_present "$lpackage"; then + break + fi + url="$pool/$package_path" + "$here/file-downloader" "$url" && break || true + # No components in PPAs. + url=$(echo "$url" | sed -e 's@/pool/[^/]*/@/pool/main/@') + "$here/file-downloader" "$url" && break || true + done + ;; + http*:*) + "$here/file-downloader" "$package_path" + ;; + */*) + cp -p "$package_path" . + ;; + *) + apt-get download "$rpackage" + ;; + esac + break + done + if ! package_present "$lpackage"; then + echo "EE: $lpackage not found" + exit 1 + fi + + dpkg -x "$lpackage"_*.deb "$package" + + lversion=$( echo "$lpackage_path" | sed -e 's@.*/@@' -e 's@_[^_]*$@@' -e 's@.*_@@') + #built_using_record "$srcdir/debian/$pkgname.substvars" "$built_using$lpackage (= $lversion)" +done + +# Pick out the package/version from the dkms.conf. +for dkms_conf in "$package/usr/src"/*/"dkms.conf" +do + break +done + +# It seems some packages have a # in the name which works fine if the +# package is installed directly, but not so much if we build it out +# of the normal location. +sed -i -e '/^PACKAGE_NAME=/ s/#//g' "$dkms_conf" + +# Run any dkms-package specfic configuration steps +dkms_config_specific="$srcdir/$0-configure--$package" +dkms_config_generic=$(echo "$dkms_config_specific" | sed -e 's/-[0-9][0-9]*$/-N/') +for dkms_config in "$dkms_config_specific" "$dkms_config_generic" +do + if [ -z "$dkms_config" -o ! -e "$dkms_config" ]; then + continue + fi + echo "II: dkms-build-configure $(basename "$dkms_config") found, executing" + $SHELL "$dkms_config" \ + "$srcdir" \ + "$dkms_conf" \ + "$dkms_dir" \ + "$abi_flavour" \ + "$sign" \ + "$pkgname" \ + "$pkgdir" \ + "$dbgpkgdir" \ + "$package" \ + "$@" || exit 1 + break +done + +cat - <<'EOF' >>"$dkms_conf" +POST_BUILD="ubuntu-save-objects ${dkms_tree}/${PACKAGE_NAME}/${PACKAGE_VERSION}/build ${dkms_tree}/${PACKAGE_NAME}/${PACKAGE_VERSION}/objects $POST_BUILD" +EOF +ubuntu_script="$(dirname "$dkms_conf")/ubuntu-save-objects" +cat - <<'EOF' >"$ubuntu_script" +#!/bin/sh +from="$1" +to="$2" +script="$3" +shift 2 + +# Copy the objects. +echo "II: copying objects to '$to'" +mkdir -p "$to" +(cd "$from" && find -name \*.o -o -name \*.o.ur-\* | cpio -Lpd "$to") + +# Call the original post_install script if there is one. +[ "$script" = '' ] && exit 0 + +shift +exec "$(dirname "$0")/$script" "$@" +EOF +chmod +x "$ubuntu_script" +dkms_package=$( sed -ne 's/PACKAGE_NAME="\(.*\)"/\1/p' "$dkms_conf" ) +dkms_version=$( sed -ne 's/PACKAGE_VERSION="\(.*\)"/\1/p' "$dkms_conf" ) + +# Build the DKMS binaries. +echo "II: dkms-build building $package" +fakeroot="" +[[ $EUID -ne 0 ]] && fakeroot="/usr/bin/fakeroot" +rc=0 +$fakeroot /usr/sbin/dkms build --no-prepare-kernel --no-clean-kernel \ + -k "$abi_flavour" \ + --sourcetree "$dkms_dir/source" \ + --dkmstree "$dkms_dir/build" \ + --kernelsourcedir "$dkms_dir/headers/linux-headers-$abi_flavour" \ + "$dkms_conf" || rc=1 + +# Find the log and add it to our own. +for log in "$dkms_dir/build/$dkms_package/$dkms_version/$abi_flavour"/*/"log/make.log" "$dkms_dir/build/$dkms_package/$dkms_version/build/make.log" +do + [ -f "$log" ] && break +done +sed -e "s@$dkms_dir@<>@g" <"$log" + +# If this build failed then exit here. +[ "$rc" != 0 ] && exit "$rc" + +# Install the modules with debug symbols we possibly built, +# and strip the original modules for the next install step. +if [ -n "$dbgpkgdir" ]; then + dbgpkgdir="$dbgpkgdir/$package" + echo "II: dkms-build installing $package into $dbgpkgdir (debug symbols)" + install -d "$dbgpkgdir" + find "$dkms_dir/build/$dkms_package/$dkms_version/$abi_version" -name \*.ko | + while read module; do + vmodule=$( basename "$module" ) + + # Check for '.debug_info' section in order to copy module. + # Useful if debug symbols are requested but not built for + # any reason (including not yet supported by DKMS package). + # Strip module just in case even if section isn't present. + if ${CROSS_COMPILE}objdump -h -j '.debug_info' "$module" >/dev/null 2>&1 + then + echo "copying $vmodule" + cp "$module" "$dbgpkgdir" + else + echo "ignoring $vmodule (missing debug symbols)" + fi + + # Just 'strip -g' as '/usr/sbin/dkms' does. + echo "stripping $vmodule" + strip -g "$module" + done +fi + +# Install and optionally sign the modules we have built. +pkgdir="$pkgdir/$package" +echo "II: dkms-build installing $package into $pkgdir" +install -d "$pkgdir" +find "$dkms_dir/build/$dkms_package/$dkms_version/$abi_version" -name \*.ko | +while read module; do + vmodule=$( basename "$module" ) + case "$sign" in + --*) + echo "copying $vmodule" + cp "$module" "$pkgdir" + ;; + *) + echo "signing $vmodule" + $sign "$module" "$pkgdir/$vmodule" + ;; + esac +done + +find "$dkms_dir/build/$dkms_package/$dkms_version/objects" -name \*.o -print | \ +while read object +do + "$srcdir/debian/scripts/fix-filenames" "$object" "$dkms_dir" +done + +# Finally see if there is a dkms-package specific post processor present. Hand +# it the original source directory, destination package directory, the objects +# as squirreled away, and the log in case it is useful. Finally pass a formed +# signing command line in case we need to do that. +dkms_build_specific="$srcdir/$0--$package" +dkms_build_generic=$(echo "$dkms_build_specific" | sed -n -e 's/-[0-9][0-9]*[a-z]*$/-N/p') +for dkms_build in "$dkms_build_specific" "$dkms_build_generic" +do + if [ -z "$dkms_build" -o ! -e "$dkms_build" ]; then + continue + fi + echo "II: dkms-build override $(basename "$dkms_build") found, executing" + $SHELL "$dkms_build" \ + "$srcdir" \ + "$dkms_dir/build/$dkms_package/$dkms_version/objects" \ + "$log" \ + "$dkms_dir" \ + "$abi_flavour" \ + "$sign" \ + "$pkgname" \ + "$pkgdir" \ + "$dbgpkgdir" \ + "$package" \ + "$@" || exit 1 + break +done + +echo "II: dkms-build build $package complete" diff --git a/debian/scripts/dkms-build--nvidia-N b/debian/scripts/dkms-build--nvidia-N new file mode 100755 index 00000000000000..310d63b5edda4e --- /dev/null +++ b/debian/scripts/dkms-build--nvidia-N @@ -0,0 +1,108 @@ +#!/bin/sh + +srcdir="$1" +objects="$2" +log="$3" +shift 3 + +dkms_dir="$1" +abi_flavour="$2" +sign="$3" +pkgname="$4" +pkgdir="$5" +dbgpkgdir="$6" +package="$7" +shift 7 + +build="$( dirname "$objects" )/build" + +# Copy over the objects ready for reconstruction. The objects copy contains +# the *.o files and the *.o-ur* retpoline files to allow the kernel to track +# any retpoline sequences therein. For our purposes we only want the *.o +# files, elide the rest. +mkdir -p "$pkgdir/bits/scripts" +( + gcc_variant1=$(gcc --version | head -1 | sed -e 's/^gcc/GCC:/') + gcc_variant2=$(gcc --version | head -1 | sed -e 's/^\(gcc\) \((.*)\) \(.*\)$/\1 version \3 \2/') + cd "$objects" || exit 1 + find -name \*.o | \ + while read file + do + cp --parents "$file" "$pkgdir/bits" + "$srcdir/debian/scripts/fix-filenames" "$pkgdir/bits/$file" "$gcc_variant1" + "$srcdir/debian/scripts/fix-filenames" "$pkgdir/bits/$file" "$gcc_variant2" + done +) + +# Install the support files we need. +echo "II: copying support files ..." +for lds_src in \ + "$dkms_dir/headers/linux-headers-$abi_flavour/scripts/module.lds" \ + "/usr/src/linux-headers-$abi_flavour/scripts/module.lds" \ + "$dkms_dir/headers/linux-headers-$abi_flavour/scripts/module-common.lds" \ + "/usr/src/linux-headers-$abi_flavour/scripts/module-common.lds" +do + [ ! -f "$lds_src" ] && continue + echo "II: copying support files ... found $lds_src" + cp "$lds_src" "$pkgdir/bits/scripts" + break +done + +# Build helper scripts. +cat - <<'EOL' >"$pkgdir/bits/BUILD" +[ "$1" = "unsigned" ] && signed_only=: +EOL +grep /usr/bin/ld.bfd "$log" | grep -v scripts/genksyms/genksyms | sed -e "s@$build/@@g" >>"$pkgdir/bits/BUILD" +sed -e 's/.*-o *\([^ ]*\) .*/rm -f \1/g' <"$pkgdir/bits/BUILD" >"$pkgdir/bits/CLEAN" + +# As the builds contain the absolute filenames as used. Use RECONSTRUCT to +# rebuild the .ko's, sign them, pull off the signatures and then finally clean +# up again. +( + cd "$pkgdir/bits" || exit 1 + + # Add .ko handling to the CLEAN/BUILD dance. + for ko in "$pkgdir"/*.ko + do + ko=$(basename "$ko") + echo "\$signed_only cat '$ko' '$ko.sig' >'../$ko'" >>"$pkgdir/bits/BUILD" + echo "\$signed_only rm -f '$ko'" >>"$pkgdir/bits/BUILD" + echo "rm -f '../$ko'" >>"$pkgdir/bits/CLEAN" + done + + # Clear out anything we are not going to distribute and build unsigned .kos. + sh ./CLEAN + sh ./BUILD unsigned + + if [ "$sign" = "--custom" ]; then + # We are building for and archive custom signing upload. Keep everything. + : + elif [ "$sign" = "--lrm" ]; then + # We are in the LRM build; grab sha256 checksums and clean up. + sha256sum -b *.ko >"SHA256SUMS" + sh ./CLEAN + + else + # We are in the main kernel, put the .kos together as we will + # on the users machine, sign them, and keep just the signature. + : >"SHA256SUMS" + for ko in *.ko + do + echo "detached-signature $ko" + $sign "$ko" "$ko.signed" + length=$( stat --format %s "$ko" ) + dd if="$ko.signed" of="$ko.sig" bs=1 skip="$length" 2>/dev/null + + rm -f "$ko.signed" + # Keep a checksum of the pre-signed object so we can check it is + # built correctly in LRM. + sha256sum -b "$ko" >>"SHA256SUMS" + done + + # Clean out anything which not a signature. + mv "$pkgdir/bits/"*.sig "$pkgdir" + mv "$pkgdir/bits/SHA256SUMS" "$pkgdir" + find "$pkgdir" -name \*.sig -prune -o -name SHA256SUMS -prune -o -type f -print | xargs rm -f + find "$pkgdir" -depth -type d -print | xargs rmdir --ignore-fail-on-non-empty + fi +) || exit "$?" diff --git a/debian/scripts/dkms-build-configure--zfs b/debian/scripts/dkms-build-configure--zfs new file mode 100644 index 00000000000000..972c8604c8b7b0 --- /dev/null +++ b/debian/scripts/dkms-build-configure--zfs @@ -0,0 +1,23 @@ +#!/bin/sh + +srcdir="$1" +dkms_conf="$2" +shift 2 + +dkms_dir="$1" +abi_flavour="$2" +sign="$3" +pkgname="$4" +pkgdir="$5" +dbgpkgdir="$6" +package="$7" +shift 7 + +# ZFS debug symbols are enabled in dkms.conf via PACKAGE_CONFIG file. +if [ -n "$dbgpkgdir" ]; then + echo "enable zfs debug symbols" + pkg_cfg="$(dirname "$dkms_conf")/pkg_cfg" + echo 'ZFS_DKMS_ENABLE_DEBUGINFO=yes' >"$pkg_cfg" + echo 'ZFS_DKMS_DISABLE_STRIP=yes' >>"$pkg_cfg" + sed -i "s,^\(PACKAGE_CONFIG=\).*,\1$pkg_cfg," $dkms_conf +fi diff --git a/debian/scripts/file-downloader b/debian/scripts/file-downloader new file mode 100755 index 00000000000000..0ebfb4de24194b --- /dev/null +++ b/debian/scripts/file-downloader @@ -0,0 +1,34 @@ +#!/bin/sh + +if [ "$#" -ne 1 ]; then + echo "Usage: $0 " 1>&2 + exit 1 +fi +url="$1" + +to=$(basename "$url") + +count=0 +what='fetching' +while : +do + if [ "$count" -eq 20 ]; then + echo "EE: excessive redirects" 1>&2 + exit 1 + fi + count=$(($count+1)) + + echo "II: $what $url" + + curl --silent --fail --show-error "$url" -o "$to" -D "$to.hdr" || exit 1 + redirect=$(awk '/^Location: / {gsub(/^[[:space:]]+|[[:space:]]+$/,"",$2); print $2;}' "$to.hdr") + [ -z "$redirect" ] && break + what=' following' + + url=$(echo "$redirect" | sed -e 's@https://launchpadlibrarian.net/@http://launchpadlibrarian.net/@') + if [ "$redirect" != "$url" ]; then + echo "II: fixing $redirect" + fi +done + +exit 0 diff --git a/debian/scripts/fix-filenames.c b/debian/scripts/fix-filenames.c new file mode 100644 index 00000000000000..9bd144a6efa8c0 --- /dev/null +++ b/debian/scripts/fix-filenames.c @@ -0,0 +1,80 @@ +/* + * fix-filenames: find a specified pathname prefix and remove it from + * C strings. + * + * Copyright (C) 2018 Canonical Ltd. + * Author: Andy Whitcroft + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + int rc; + char *in_name; + char *prefix; + int prefix_len; + int in_fd; + struct stat in_info; + char *in; + off_t size; + int length; + + if (argc != 3) { + fprintf(stderr, "Usage: %s \n", argv[0]); + exit(1); + } + in_name = argv[1]; + prefix = argv[2]; + prefix_len = strlen(prefix); + + in_fd = open(in_name, O_RDWR); + if (in_fd < 0) { + perror("open input failed"); + exit(1); + } + + rc = fstat(in_fd, &in_info); + if (rc < 0) { + perror("fstat input failed"); + exit(1); + } + size = in_info.st_size; + + in = mmap((void *)0, size, PROT_READ|PROT_WRITE, MAP_SHARED, in_fd, (off_t)0); + if (!in) { + perror("mmap failed"); + exit(1); + } + + for (; size > 0; size--, in++) { + if (*in != *prefix) + continue; + if (strncmp(in, prefix, prefix_len) != 0) + continue; + /* In the case of an exact match there there is nothing to move. */ + if (in[prefix_len] == '\0') + length = 0; + /* If this is a filename, strip the leading slash. */ + else if (in[prefix_len] == '/') + length = strlen(in + prefix_len + 1) + 1; + /* Otherwise just keep the suffix. */ + else + length = strlen(in + prefix_len) + 1; + + /* + * Copy the suffix portion down to the start and clear + * the remainder of the space to 0. + */ + memmove(in, in + prefix_len + 1, length); + memset(in + length, '\0', prefix_len); + } +} diff --git a/debian/scripts/helpers/close b/debian/scripts/helpers/close new file mode 100755 index 00000000000000..f699cec41022d4 --- /dev/null +++ b/debian/scripts/helpers/close @@ -0,0 +1,195 @@ +#!/bin/bash -eu +export LC_ALL=C.UTF-8 + +usage() { + cat << EOF +Usage: ${P:-$(basename "$0")} [-h|--help] [-d|--dry-run] [-c|--include-config] [-s|--skip-master] [-b BASE_VERSION] + +Prepare the closing release commit. Include all the changelog entries +in the current release, including the changes from the base +kernel. Also close the changelog entry and check for config changes. + +Optional arguments: + -d, --dry-run Perform a trial run with no changes made + printing the commands instead. + -c, --include-config Include config changes in the closing commit. + -s, --skip-master Skip master kernel changelog entries (used when + bootstraping new kernels). + -b BASE_VERSION For derivatives and backports, force the changelog + entries to have the base version as provided (used + when changing the base derivative version of a + backport). + -h, --help Show this help message and exit. + +Examples: + Simply close a release: + \$ cranky close + + Also include any config changes to the closing commit: + \$ cranky close -c + +EOF +} + +dry_run=0 +commit_configs=0 +skip_master_entries=0 +base_version= +while [ "$#" -gt 0 ]; do + case "$1" in + -h|--help) + usage + exit 0 + ;; + -d|--dry-run) + dry_run=1 + ;; + -c|--include-config) + commit_configs=1 + ;; + -s|--skip-master) + skip_master_entries=1 + ;; + -b) + shift + base_version="$1" + ;; + *) + usage + exit 1 + ;; + esac + shift +done + +hl() { echo -e "\e[1m$*\e[0m"; } + +run() { + # Quote args for echo or eval + local quoted=() + for token; do + quoted+=( "$(printf '%q' "$token")" ) + done + # Run + if [ "$dry_run" -eq 1 ]; then + hl "DRY RUN: ${quoted[*]}" + else + hl "${quoted[*]}" + "$@" + echo + fi +} + +# Trick shellcheck so it doesn't complain every time it's necessary to +# use `run $CHROOT`. Use `chroot_run` instead. +shopt -s expand_aliases +alias chroot_run='run ${CHROOT:-}' + +DEBIAN= +# shellcheck disable=SC1091 +. debian/debian.env + +# Check if the "$DEBIAN" directory exists. +if [ ! -d "$DEBIAN" ]; then + echo "You must run this script from the top directory of this repository." + exit 1 +fi + +CONF="$DEBIAN/etc/update.conf" +if [ -f "$CONF" ]; then + # shellcheck disable=SC1090 + . "$CONF" +fi + +# Check if changelog is open +series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) +if [ "$series" != 'UNRELEASED' ]; then + echo "The last entry of the changelog is already released." + exit 1 +fi + +# Update configs +if [ -d "$DEBIAN/config" ]; then + chroot_run fakeroot debian/rules clean updateconfigs + changes=$(git diff HEAD -- "./$DEBIAN/config/") + if [ "$commit_configs" -eq 0 ] && [ -n "$changes" ]; then + echo "Config has changed! please, review it and commit." + exit 1 + fi +fi + +# For normal trees the fact that the update.conf file exists means that they are rebase +# kernels. There are some special trees which started with uc20-efi, which have that +# file because they logically depend on another source but do not have the directory +# which DEBIAN_MASTER points to. +# Skip inserting parent source entries if this is not a rebase tree. +if [ ! -f "$DEBIAN/etc/update.conf" ]; then + skip_master_entries=1 +elif [ "$DEBIAN_MASTER" != "" -a ! -d "$DEBIAN_MASTER" ]; then + skip_master_entries=1 +fi +if [ $skip_master_entries == 0 ]; then + if [ "$DEBIAN_MASTER" = "" ]; then + echo "DEBIAN_MASTER should be defined either in $DEBIAN/etc/update.conf or the environment" + exit 1 + fi + + if [ -z "${base_version}" ]; then + offset=0 + # If not provided as an option, loop through each entry of the current changelog, + # searching for an entry that refers to the master version used as base + # (ie a line containing "[ Ubuntu: 4.15.0-39.42 ]"): + while true; do + changes=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SChanges -c1 -o"$offset") + if ! [ "$changes" ]; then + echo "Failed to retrieve base master version from changelog file: $DEBIAN/changelog" + exit 1 + fi + base_version=$(echo "$changes" | sed -n -r -e '/^\s.*\[ Ubuntu: ([~0-9.-]*) \]$/{s//\1/p;q}') + [ "$base_version" ] && break + offset=$(( offset + 1 )) + done + fi + + master_version=$(dpkg-parsechangelog -l${DEBIAN_MASTER}/changelog -SVersion) + if ! [ "$master_version" ]; then + echo "Failed to retrieve current master version from changelog: $DEBIAN/changelog" + exit 1 + fi + run ./debian/scripts/misc/insert-ubuntu-changes "$DEBIAN/changelog" "$base_version" "$master_version" \ + "$DEBIAN_MASTER/changelog" +fi + +# Insert local changes +run fakeroot debian/rules insertchanges + +# This should be the last step. If there were no changes to the +# changelog, there is nothing to release, so nothing to commit. +changes=$(git diff HEAD) +if [ -z "$changes" ] && [ "$dry_run" -eq 0 ]; then + hl "No changes to commit." + exit 1 +fi + +# Find the current series from previous changelog entries: +series='' +offset=0 +while true; do + series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution -c1 -o"$offset") + if [ "$series" ] && [ "$series" != 'UNRELEASED' ]; then + break + fi + offset=$(( offset + 1 )) +done +if ! [ "$series" ]; then + echo "Failed to retrieve the package series from changelog: $DEBIAN/changelog" + exit 1 +fi +# Close the changelog +run dch --nomultimaint -c "$DEBIAN/changelog" -r -D "$series" '' + +# Commit changes +package=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SSource) +prefix="Ubuntu$(echo "$package" | sed -r -e 's/linux(-?)/\1/')-" +version=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion) +run git commit -sam "UBUNTU: $prefix$version" diff --git a/debian/scripts/helpers/open b/debian/scripts/helpers/open new file mode 100755 index 00000000000000..a457377a76b757 --- /dev/null +++ b/debian/scripts/helpers/open @@ -0,0 +1,233 @@ +#!/bin/bash -eu +export LC_ALL=C.UTF-8 + +out() +{ + local rc=${?} + + trap - EXIT INT TERM HUP + [ "${rc}" -eq 0 ] || echo "Error: Script failed" >&2 + + exit "${rc}" +} + +hl() { + echo -e "\e[1m$*\e[0m" +} + +run() { + # Quote args for echo or eval + local quoted=() + for token; do + quoted+=("$(printf '%q' "$token")") + done + # Run + if [ "$dry_run" -eq 1 ]; then + hl "DRY RUN: ${quoted[*]}" + else + hl "${quoted[*]}" + "$@" + echo + fi +} + +usage() { + cat << EOF +Usage: ${P:-$(basename "$0")} [-h|--help] [-d|--dry-run] [-r|--reuse-abi] + +Create a "start new release" commit. The new commit will contain ABI +changes and any customization required by backport kernels. + +Optional arguments: + -d, --dry-run Perform a trial run with no changes made + printing the commands instead. + -r, --reuse-abi Do not download the previous release ABI files + for the new release and just rename the + current ABI directory. This might cause the + build to fail if the module list or the + retpoline information has changed. + -h, --help Show this help message and exit. + +Environment variable: + CRANKY_MAILENFORCE Regular expression used to validate \$DEBEMAIL. If not + set, it defaults to "@canonical.com$". + +Examples: + Simply start a new release (that will fetch the ABI files from the + archieve repositories): + \$ cranky open + + Start a new release re-using the ABI files already present in the + tree: + \$ cranky open --reuse-abi + +EOF +} + +dry_run=0 +reuse_abi=0 +while [ "$#" -gt 0 ]; do + case "$1" in + -h|--help) + usage + exit 0 + ;; + -d|--dry-run) + dry_run=1 + ;; + -r|--reuse-abi) + reuse_abi=1 + ;; + *) + usage + exit 1 + ;; + esac + shift +done + +trap out EXIT INT TERM HUP + +# Trick shellcheck so it doesn't complain every time it's necessary to +# use `run $CHROOT`. Use `chroot_run` instead. +shopt -s expand_aliases +alias chroot_run='run ${CHROOT:-}' + +# Check DEBEMAIL (used to create the new changelog stanza): +DEBEMAIL="${DEBEMAIL:-}" +CRANKY_MAILENFORCE="${CRANKY_MAILENFORCE:-@canonical.com\$}" +if [ -z "$DEBEMAIL" ] || ! echo "$DEBEMAIL" | grep -qE "$CRANKY_MAILENFORCE"; then + echo "DEBEMAIL is unset, or does not contain \"$CRANKY_MAILENFORCE\": $DEBEMAIL" >&2 + exit 1 +fi + +# Requires a git repo +if [ ! -e .git ]; then + echo "Not a git repository!" >&2 + exit 1 +fi + +# Check the debian directory +if [ ! -e debian/debian.env ]; then + echo "Cannot find debian/debian.env!" >&2 + exit 1 +fi +DEBIAN= +# shellcheck disable=SC1091 +. debian/debian.env +if [ -z "$DEBIAN" ] || [ ! -d "$DEBIAN" ]; then + echo "Invalid DEBIAN directory: $DEBIAN" >&2 + exit 1 +fi + +# Abort if changes or untracked files are found in the debian +# directory (ie, in "debian.master/"). cranky open is expected to +# change and commit files in this directory. +if ! git diff-index --quiet HEAD -- "$DEBIAN/" || \ + [ -n "$(git ls-files --others -- "$DEBIAN/")" ]; then + echo "\"$DEBIAN/\" is not clean!" >&2 + exit 1 +fi + +# Check changelog +series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) +if [ "$series" == 'UNRELEASED' ]; then + echo "$DEBIAN/changelog is not closed!" >&2 + exit 1 +fi + +# Load the info about derivative +BACKPORT_SUFFIX= +derivative_conf="$DEBIAN/etc/update.conf" +if [ -f "$derivative_conf" ]; then + # shellcheck disable=SC1090 + . "$derivative_conf" +fi + +# Run the update script used for backport kernels +if [ -n "$BACKPORT_SUFFIX" ]; then + update_from_master_script="$DEBIAN/scripts/helpers/copy-files" + if [ ! -x "$update_from_master_script" ]; then + echo "Backport kernel is missing the"\ + "\"$update_from_master_script\" script!"; + exit 1 + fi + # The tree should be clean at this point, since that is enforced at + # the beginning of the script. Because of that, it's safe to git add + # "$DEBIAN/". + run env CHROOT="$CHROOT" "$update_from_master_script" + run git add "$DEBIAN" + # Update configs after the necessary files were copied from + # the base kernel. It's not expected that `fdr updateconfigs` + # will fail at this point, because the base kernel's + # configuration and annotations file are expected to be in a + # correct state. `fdr updateconfigs` should only change a few + # configuration options that depend on the userspace tooling + # version, such as gcc. + if ! chroot_run fakeroot debian/rules clean updateconfigs; then + echo "Failed to update configs. Please review the previous" \ + "rebase operation and \"$update_from_master_script\""; + exit 1 + fi + run git add "$DEBIAN/config" +fi + +# fdr clean should be called after copy-files, that way we can git add +# any changes in "debian./" (`fdr clean` in trusty will +# usually generate changes in "debian./). Also, fdr clean +# removes an ABI that matches the current version in the +# changelog. Since `fdr startnewrelease` requires `fdr clean`, we need +# to call it before getabis. +chroot_run fakeroot debian/rules clean + +# Update ABI +if [ -d "$DEBIAN/abi" ]; then + # The new ABI directory should use the current version in the + # changelog since `fdr startnewrelease` was't called at this + # point yet: + new=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion) + + if [ "$reuse_abi" -ne 0 ]; then + if [ -f "$DEBIAN/abi/version" ]; then + # This is an unversioned ABI directory, so simply update the + # version file + echo "$new" > "$DEBIAN/abi/version" + git add "$DEBIAN/abi/version" + else + # Get the old ABI directory: + old=$(find "$DEBIAN/abi/" -mindepth 1 -maxdepth 1 -type d | \ + grep -P '/abi/[0-9]+\.[0-9]+\.[0-9]+-[0-9]+\.[0-9]+') + if [ -z "${old}" ] ; then + echo "Failed to find the previous ABI directory." \ + "Please check \"$DEBIAN/abi/\"!" >&2 + exit 1 + elif [ "$(echo "$old" | wc -l)" -gt 1 ]; then + echo "Failed to rename the current ABI directory." \ + "Multiple directories found. Please check \"$DEBIAN/abi/\"!" >&2 + exit 1 + fi + new="$DEBIAN/abi/$new" + # Rename the ABI directory + run git mv "$old" "$new" + fi + else + # Call in-tree getabis: + # Use the single argument form since getabis is now + # updated by cranky fix. + run debian/scripts/misc/getabis "${new}" + # getabis already handles the necessary git add/rm calls. + fi +fi + +# Create the new changelog entry: +run fakeroot debian/rules startnewrelease +run git add "$DEBIAN/changelog" + +# Create the commit +run git commit -s -F debian/commit-templates/newrelease + +# Mimic maint-startnewrelease +[ "$dry_run" -eq 0 ] && \ + hl "\n***** Now please inspect the commit before pushing *****" + +exit 0 diff --git a/debian/scripts/helpers/rebase b/debian/scripts/helpers/rebase new file mode 100755 index 00000000000000..fb2fd52740cd65 --- /dev/null +++ b/debian/scripts/helpers/rebase @@ -0,0 +1,141 @@ +#!/bin/bash -e +# +# This script is intended as a helper when rebasing from its master branch. +# + +LOCAL_BRANCH= +RELEASE_REPO= +SOURCE_RELEASE_BRANCH= + +function out() +{ + local rc="${?}" + trap - EXIT INT TERM HUP + [ "${rc}" -eq 0 ] || echo "Error: Script failed" + exit "${rc}" +} + +trap out EXIT INT TERM HUP + +if [ -f debian/debian.env ]; then + # shellcheck disable=SC1091 + . debian/debian.env +fi + +if [ ! -d "${DEBIAN}" ]; then + echo You must run this script from the top directory of this repository. + exit 1 +fi + +CONF="${DEBIAN}"/etc/update.conf +if [ -f "${CONF}" ]; then + # shellcheck disable=SC1090 + . "${CONF}" +fi + +usage="$0 [-r RELEASE_REPO] [ -b REMOTE_BRANCH ] [-l LOCAL_BRANCH] [-d]"$'\n\n' +usage+="-r RELEASE_REPO Git repository to fetch the reference branch from."$'\n' +usage+="-b REMOTE_BRANCH Remote branch to fetch from."$'\n' +usage+="-l LOCAL_BRANCH Use LOCAL_BRANCH as the reference branch."$'\n' +usage+="-d Dry run (do not rebase)." + +# +# command line options: +# [-r RELEASE_REPO] - override default git repository. +# [-b REMOTE_BRANCH] - override default remote branch. +# [-l LOCAL_BRANCH] - do not fetch from remote repo, use a local branch. + +while getopts "r:b:l:d" opt; do + case $opt in + r ) RELEASE_REPO="$OPTARG" ;; + b ) SOURCE_RELEASE_BRANCH="$OPTARG" ;; + l ) LOCAL_BRANCH="$OPTARG" ;; + d ) DRY_RUN=1 ;; + \? ) echo "usage: ${usage}"; exit ;; + esac +done +shift $((OPTIND - 1)) + +# For normal trees the fact that the update.conf file exists means that they are rebase +# kernels. There are some special trees which started with uc20-efi, which have that +# file because they logically depend on another source but do not have the directory +# which DEBIAN_MASTER points to. +IS_REBASE_KERNEL=true +if [ ! -f "$DEBIAN/etc/update.conf" ]; then + IS_REBASE_KERNEL=false +elif [ "$DEBIAN_MASTER" != "" -a ! -d "$DEBIAN_MASTER" ]; then + IS_REBASE_KERNEL=false +fi +if ! $IS_REBASE_KERNEL; then + echo "This is not a rebase kernel, no rebase should be needed, please report if otherwise" + exit 0 +fi + +if [ "$DEBIAN_MASTER" = "" ]; then + echo "DEBIAN_MASTER should be defined either in ${DEBIAN}/etc/update.conf or the environment" + exit 1 +fi + +if [ -z "${LOCAL_BRANCH}" ]; then + if [ -z "${RELEASE_REPO}" ] || [ -z "${SOURCE_RELEASE_BRANCH}" ]; then + echo Missing update.conf or missing parameters for remote repo and branch. + exit 1 + fi + # + # Fetch the upstream branch. + # + git fetch "${RELEASE_REPO}" + git fetch "${RELEASE_REPO}" "${SOURCE_RELEASE_BRANCH}" + LOCAL_BRANCH=FETCH_HEAD +fi + +# +# Find the most recent tag on given upstream branch, then +# rebase against it. This avoids the case where there have been some +# commits since the last official tag. +# +MASTER_COMMIT=$(git log --pretty=one "${LOCAL_BRANCH}" "${DEBIAN_MASTER}" | \ + awk ' + /Ubuntu-/ { + if (match($0, /UBUNTU: Ubuntu-/)) { + print $1 + exit + } + } + ' +) +# +# Find the current merge point where current branch was based. +# +BASE_COMMIT=$(git log --pretty=one "${DEBIAN_MASTER}" | \ + awk ' + /Ubuntu-/ { + if (match($0, /UBUNTU: Ubuntu-/)) { + print $1 + exit + } + } + ' +) +if [ "${MASTER_COMMIT}" = "${BASE_COMMIT}" ]; then + echo Already up to date. + exit 0 +fi + +if [ -z "${MASTER_COMMIT}" ] || [ -z "${BASE_COMMIT}" ]; then + echo "Could not find either master or base commit." + echo "master commit: ${MASTER_COMMIT}" + echo "base commit: ${BASE_COMMIT}" + exit 1 +fi + +MASTER_VERSION=$(git show --format=%s -s "$MASTER_COMMIT" | sed 's/^UBUNTU: //') +BASE_VERSION=$(git show --format=%s -s "$BASE_COMMIT" | sed 's/^UBUNTU: //') +echo "Rebase still needed between $BASE_VERSION and $MASTER_VERSION." + +if [ "${DRY_RUN}" ]; then + echo "DRY RUN: git rebase --onto ${MASTER_COMMIT} ${BASE_COMMIT}" + exit 0 +fi + +git rebase --onto "${MASTER_COMMIT}" "${BASE_COMMIT}" diff --git a/debian/scripts/link-headers b/debian/scripts/link-headers new file mode 100755 index 00000000000000..fb42dbd12e4df2 --- /dev/null +++ b/debian/scripts/link-headers @@ -0,0 +1,42 @@ +#!/bin/bash -e + +. debian/debian.env + +hdrdir="$1" +symdir="$2" +flavour="$3" + +echo "Symlinking and copying headers for $flavour..." + +excludes="( -path ./debian -prune -o -path ./${DEBIAN} -prune -o -path ./.git ) -prune -o" + +( +find . $excludes -type f \ + \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \ + -name '*.sh' -o -name '*.pl' -o -name '*.lds' \) -print +find ./include ./scripts -name .gitignore -prune -o -type f -print +find ./include -mindepth 1 -maxdepth 1 $excludes -type d -print +) | ( +while read file; do + dir=$file + lastdir=$file + + if [ -e "$hdrdir/$file" -o -L "$hdrdir/$file" ]; then + continue + fi + + while [ ! -e "$hdrdir/$dir" -a ! -L "$hdrdir/$dir" ]; do + lastdir=$dir + dir=`dirname $dir` + done + # If the last item to exist is a symlink we assume all is good + if [ ! -L "$hdrdir/$dir" ]; then + # Turns things like "./foo" into "../" + deref="`echo -n $lastdir | sed -e 's/^\.//' -e's,/[^/]*,../,g'`" + item="`echo -n $lastdir | sed -e 's/^\.\///'`" + ln -s $deref$symdir/$item $hdrdir/$item + fi +done +) + +exit diff --git a/debian/scripts/misc/arch-has-odm-enabled.sh b/debian/scripts/misc/arch-has-odm-enabled.sh new file mode 100755 index 00000000000000..23fe34a868a711 --- /dev/null +++ b/debian/scripts/misc/arch-has-odm-enabled.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# Evaluate whether arch ($1) will be built with do_odm_drivers set to true. +set -e + +if [ "$1" = "" ]; then + # This would be set doing the actual kernel build + if [ "$KBUILD_VERBOSE" = "" ]; then + return 1 + fi + case $ARCH in + x86) ARCH=amd64;; + *) ;; + esac +else + ARCH=$1 +fi + +TOPDIR=$(dirname $0)/../../.. +. $TOPDIR/debian/debian.env +RULESDIR=$TOPDIR/$DEBIAN/rules.d + +do_odm_drivers=false +for f in $ARCH.mk hooks.mk; do + eval $(cat $RULESDIR/$f | sed -n -e '/do_odm_drivers/s/ \+//gp') +done +if [ "$do_odm_drivers" != "true" ]; then + return 1 +fi + +return 0 diff --git a/debian/scripts/misc/final-checks b/debian/scripts/misc/final-checks new file mode 100755 index 00000000000000..8a977745a667af --- /dev/null +++ b/debian/scripts/misc/final-checks @@ -0,0 +1,92 @@ +#!/bin/bash + +debian="$1" +abi="$2" + +. "$debian/etc/kernelconfig" +archs=$( awk '/^Architecture:/ { $1=""; for (i=1; i<=NF; i++) { if ($i != "all") { print $i }}}' debian/control | sort -u) + +fail=0 + +failure() +{ + echo "EE: $@" 1>&2 + fail=1 +} + +abi_check() +{ + local abidir="$1" + local arch="$2" + local flavour="$3" + + local abidir="$abidir/$arch" + + if [ ! -f "$abidir/$flavour" -a \ + ! -f "$abidir/$flavour.ignore" -a \ + ! -f "$abidir/ignore" ] + then + failure "$arch/$flavour ABI symbol file missing" + fi + + if [ ! -f "$abidir/$flavour.modules" -a \ + ! -f "$abidir/$flavour.ignore.modules" -a \ + ! -f "$abidir/ignore.modules" ] + then + failure "$arch/$flavour ABI modules file missing" + fi + + if [ ! -f "$abidir/$flavour.retpoline" -a \ + ! -f "$abidir/$flavour.ignore.retpoline" -a \ + ! -f "$abidir/ignore.retpoline" ] + then + failure "$arch/$flavour ABI retpoline file missing" + fi +} + +abi_version="$debian/abi/version" +if ! [ -f "$abi_version" ] +then + failure "$abi_version ABI version file missing" +fi + +version=$(cat "$abi_version") +if [ "$abi" != "$version" ] +then + failure "$abi_version ABI version mismatch ($abi != $version)" +fi + +if [ -d debian/certs ]; then + if ! grep -q '^CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem"$' $debian/config/config.common.ubuntu; then + failure "'CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem"' is required" + fi +fi + +if [ -d debian/revoked-certs ]; then + if ! grep -q '^CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem"$' $debian/config/config.common.ubuntu; then + failure "'CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem"' is required" + fi +fi + +for arch in $archs +do + image_pkg=$(awk -F '\\s*=\\s*' '$1 == "do_flavour_image_package" { print $2 }' $debian/rules.d/$arch.mk) + if [ "$image_pkg" = "false" ]; then + continue + fi + if [ ! -f "$debian/rules.d/$arch.mk" ]; then + continue + fi + flavours=$( + awk '/^\s*flavours\s*=/{ + sub(/^\s*flavours\s*=\s*/, ""); + print + }' "$debian/rules.d/$arch.mk") + for flavour in $flavours + do + flavour=$(echo "$flavour" | sed -e 's@.*/config.flavour.@@') + abi_check "$debian/abi" "$arch" "$flavour" + done +done + +exit "$fail" diff --git a/debian/scripts/misc/find-missing-sauce.sh b/debian/scripts/misc/find-missing-sauce.sh new file mode 100755 index 00000000000000..2bdcf72607bb7c --- /dev/null +++ b/debian/scripts/misc/find-missing-sauce.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# +# Find the 'UBUNTU: SAUCE:' patches that have been dropped from +# the previous release. +# +PREV_REL=focal +PREV_REPO=git://kernel.ubuntu.com/ubuntu/ubuntu-${PREV_REL}.git + +git fetch ${PREV_REPO} master-next +git log --pretty=oneline FETCH_HEAD|grep SAUCE|while read c m;do echo $m;done |sort > $$.prev-rel +git log --pretty=oneline |grep SAUCE|while read c m;do echo $m;done |sort > $$.curr-rel + +diff -u $$.prev-rel $$.curr-rel |grep "^-" +rm -f $$.prev-rel $$.curr-rel + diff --git a/debian/scripts/misc/fw-to-ihex.sh b/debian/scripts/misc/fw-to-ihex.sh new file mode 100755 index 00000000000000..a63fe67b4f5d2c --- /dev/null +++ b/debian/scripts/misc/fw-to-ihex.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +F=$1 +if [ "$F" = "" ] +then + echo You must supply a firmware file. + exit 1 +fi + +echo "unsigned char d[] = {" > $F.c +hexdump -v -e '"\t" 8/1 "0x%02x, " "\n"' $F >> $F.c +echo "};" >> $F.c +sed -i 's/0x .*$//' $F.c + +O="`dirname $F`/`basename $F`.o" +gcc -o $O -c $F.c +objcopy -Oihex $F.o $F.ihex + diff --git a/debian/scripts/misc/gen-auto-reconstruct b/debian/scripts/misc/gen-auto-reconstruct new file mode 100755 index 00000000000000..43ec9034505541 --- /dev/null +++ b/debian/scripts/misc/gen-auto-reconstruct @@ -0,0 +1,84 @@ +#!/bin/bash + +if [ "$#" -ne 3 ]; then + echo "Usage: $0 | " 1>&2 + exit 1 +fi +tag="$1" +reconstruct="$2" +options="$3" + +case "$tag" in +v*) ;; +*) tag="v${tag%.*}" ;; +esac + +# Validate the tag. +count=$( git tag -l "$tag" | wc -l ) +if [ "$count" != 1 ]; then + echo "$0: $tag: tag invalid" 1>&2 + exit 1 +fi + +#git ls-tree -r --full-tree HEAD | grep ^120 | \ +#while read mode type blobid name + +( + # Identify all new symlinks since the proffered tag. + echo "# Recreate any symlinks created since the orig." + git diff "$tag.." --raw --no-renames | awk '(/^:000000 120000/ && $5 == "A") { print $NF }' | \ + while read name + do + link=$( readlink "$name" ) + + echo "[ ! -L '$name' ] && ln -sf '$link' '$name'" + done + + # Identify all removed files since the proffered tag. + echo "# Remove any files deleted from the orig." + git diff "$tag.." --raw --no-renames | awk '(/^:/ && $5 == "D") { print $NF }' | \ + while read name + do + echo "rm -f '$name'" + done + + # Identify files with execute permissions added since the proffered tag. + git diff "$tag.." --raw --no-renames | awk -F '[: \t]' '{print $2, $3, $NF }' | \ + while IFS=" " read old new name + do + old=$( printf "0%s" $old ) + new=$( printf "0%s" $new ) + changed=$(( (old ^ new) & 0111 )) + if [ "$changed" -ne 0 ]; then + echo "chmod +x '$name'" + fi + done + + # All done, make sure this does not complete in error. + echo "exit 0" +) >"$reconstruct" + +( + # Identify all new symlinks since the proffered tag. + echo "# Ignore any symlinks created since the orig which are rebuilt by reconstruct." + git diff "$tag.." --raw --no-renames | awk '(/^:000000 120000/ && $5 == "A") { print $NF }' | \ + while read name + do + echo "extend-diff-ignore=^$name\$" + done +) >"$options.update" + + +head='^## autoreconstruct -- begin$' +foot='^## autoreconstruct -- end$' +sed -i -e " + /$head/,/$foot/{ + /$head/{ + p; + r $options.update + }; + /$foot/p; + d + } +" "$options" +rm -f "$options.update" diff --git a/debian/scripts/misc/getabis b/debian/scripts/misc/getabis new file mode 100755 index 00000000000000..5c8e005d3415e5 --- /dev/null +++ b/debian/scripts/misc/getabis @@ -0,0 +1,211 @@ +#!/bin/bash + +export LC_ALL=C.UTF-8 + +if [ "$#" = "1" ]; then + set - $(echo "$1" | sed -e 's/-/ /') +fi +if [ "$#" != "2" ]; then + echo "Usage: $0 " 1>&2 + echo "Usage: $0 " 1>&2 + exit 1 +fi + +if [ "$DEBIAN" = "" ]; then + . debian/debian.env +fi + +ver=$1 +revision=$2 +abi=$(echo $revision | sed -r -e 's/([^\+~]*)\.[^\.]+(~.*)?(\+.*)?$/\1/') + +verabi=$ver-$abi +verfull=$ver-$revision + +WGET="wget --tries=1 --timeout=10 --quiet -c" + +# Check if we use a flat (unversioned) ABI directory +if [ -f "${DEBIAN}/abi/version" ] || \ + grep -qP '^abidir\s+.*/__abi.current/' debian/rules.d/0-common-vars.mk ; then + echo "Using flat ABI directory" + flat_abi=1 + abidir=$(pwd)/${DEBIAN}/abi +else + echo "Using versioned ABI directory" + flat_abi=0 + abidir=$(pwd)/${DEBIAN}/abi/${verfull} +fi + +tmpdir="`pwd`/abi-tmp-$verfull" +origdir="`pwd`" +fwinfo=$abidir/fwinfo + +test -d $tmpdir || mkdir $tmpdir + +package_prefixes() { + : # no longer used ... +} + +getall() { + arch=$1 + shift + + mkdir -p $abidir/$arch + + for sub in $@; do + if [ -f $abidir/$arch/$sub ]; then + echo "Existing $sub($arch)..." + continue + fi + echo "Fetching $sub($arch)..." + getall_set "linux-buildinfo" "$arch" "$sub" || \ + getall_set "linux-image-unsigned linux-modules linux-modules-extra" "$arch" "$sub" || \ + getall_set "linux-image-unsigned linux-modules" "$arch" "$sub" || \ + getall_set "linux-image linux-modules linux-modules-extra" "$arch" "$sub" || \ + getall_set "linux-image linux-modules" "$arch" "$sub" || \ + getall_set "linux-image linux-image-extra" "$arch" "$sub" || \ + getall_set "linux-image" "$arch" "$sub" || \ + { echo "FAILED"; exit 1; } + done +} +getall_set() +{ + prefixes="$1" + arch="$2" + sub="$3" + ( + echo -n " set:" + filenames="" + cd $tmpdir + found=1 + for prefix in $prefixes + do + echo -n " $prefix=" + if [ "$found" = 0 ]; then + echo -n "-" + continue + fi + filename=${prefix}-${verabi}-${sub}_${verfull}_${arch}.deb + for r in "${repo_list[@]}" + do + if ! [ -f $filename ]; then + $WGET $r/$filename + rc="$?" + # If this was not successful or a valid error + # return from the server all bets are off, bail. + [ "$rc" != 0 -a "$rc" != 8 ] && return 2 + fi + if [ -f $filename ]; then + echo -n "y" + filenames="$filenames $filename" + break + fi + done + if [ ! -f "$filename" ]; then + echo -n "n" + found=0 + fi + done + echo "" + if [ "$found" = 0 ]; then + return 1 + fi + echo " extracting..." + for filename in $filenames + do + dpkg-deb --extract $filename tmp + done + # FORM 1: linux-image et al extracted here. + if [ -d tmp/boot ]; then + echo " images..." + find tmp -name "*.ko" | while read f; do + modinfo $f | grep ^firmware >> $fwinfo + done + if [ -f tmp/boot/abi-* ]; then + mv tmp/boot/abi-* $abidir/$arch/$sub + else + echo " NO ABI FILE" + fi + if [ -f tmp/boot/retpoline-* ]; then + mv tmp/boot/retpoline-* $abidir/$arch/$sub.retpoline + else + echo " NO RETPOLINE FILE" + fi + (cd tmp; find lib/modules/$verabi-$sub/kernel -name '*.ko') | \ + sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > \ + $abidir/$arch/$sub.modules + ( + cd tmp; + # Prevent exposing some errors when called by python scripts. SIGPIPE seems to get + # exposed when using the `find ...` form of the command. + ko=$(find lib/modules/$verabi-$sub/kernel \ + -name '*.ko' | head -1) + readelf -p .comment "$ko" | gawk ' + ($1 == "[") { + printf("%s", $3); + for (n=4; n<=NF; n++) { + printf(" %s", $n); + } + print "" + }' | sort -u >$abidir/$arch/$sub.compiler + version=`cat $abidir/$arch/$sub.compiler` + echo " $version" + ) + # FORM 2: moduleinfo packages + # cranky fix -- modinfo supported + else + echo " buildinfo..." + base="tmp/usr/lib/linux/${verabi}-${sub}" + mv "$base/abi" "$abidir/$arch/$sub" + for comp in 'modules' 'retpoline' 'compiler' + do + mv "$base/$comp" "$abidir/$arch/$sub.$comp" + done + cat "$base/fwinfo" >>"$fwinfo" + fi + rm -rf tmp $filenames + echo " done" + ) + rc="$?" + if [ "$rc" = 2 ]; then + echo "ERROR: downloads are reporting network failures" 1>&2 + exit 1 + fi + return "$rc" +} + +# MAIN + +# Setup abi directory +rm -rf "${abidir}" +mkdir -p $abidir +echo $abi > $abidir/abiname +if [ ${flat_abi} -eq 1 ] ; then + echo "${verfull}" > "${abidir}"/version +fi + +# NOTE: The flavours are hardcoded, because they may have changed from the +# current build. + +. $DEBIAN/etc/getabis + +# Extract compiler source package version from e.g.: +# GCC: (Ubuntu/Linaro 4.8.2-19ubuntu1) 4.8.2 +compilers=`sed 's/^.*(.* \(.*\)).*$/\1/' $abidir/*/*.compiler | sort -u | wc -l` +if [ "$compilers" != 1 ]; then + echo "WARNING: inconsistent compiler versions detected:" 1>&2 + sort -u $abidir/*/*.compiler | sed 's/^/WARNING: /' 1>&2 +fi + +sort < $fwinfo | uniq > fwinfo.tmp +mv fwinfo.tmp $fwinfo + +rmdir $tmpdir + +# If this is running in a git repo, add the new ABI directory, remove the old +if [ -d ".git" ]; then + git add "${abidir}" + if [ ${flat_abi} -eq 0 ] ; then + find "$DEBIAN"/abi/* -maxdepth 0 -type d | grep -v "$verfull" | while read f; do git rm -rf "$f"; done + fi +fi diff --git a/debian/scripts/misc/git-ubuntu-log b/debian/scripts/misc/git-ubuntu-log new file mode 100755 index 00000000000000..13e40b84dc1f25 --- /dev/null +++ b/debian/scripts/misc/git-ubuntu-log @@ -0,0 +1,166 @@ +#!/usr/bin/python3 + +import sys + +import codecs +import urllib.request +import json + +import textwrap + +sys.stdin = codecs.getreader("utf-8")(sys.stdin.detach()) +sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach()) + +entries = [] + + +def add_entry(entry): + if entry and 'ignore' not in entry: + combo = [] + for bug in set(entry.get('bugs', [])): + combo.append(bug) + for cve in set(entry.get('cves', [])): + combo.append(cve) + combo = sorted(combo) + + if len(combo) == 0: + if entry.get('subject', "").startswith('UBUNTU'): + combo = '__packaging__' + else: + combo = '__mainline__' + else: + if entry.get('subject', "") == 'UBUNTU: link-to-tracker: update tracking bug': + # Construct a key with '__trackingbug__' on the first position + # and the tracking bug number afterwards + combo.insert(0, '__trackingbug__') + # Tracking bug goes at the top + keys.insert(0, combo) + else: + if combo not in keys: + keys.append(combo) + + entry['key'] = combo + entries.append(entry) + + +# Suck up the git log output and extract the information we need. +keys = [] +entry = None +subject_wait = False +for line in sys.stdin: + if line.startswith('commit '): + add_entry(entry) + entry = {} + subject_wait = True + + elif line.startswith('Author: '): + bits = line.strip().split(maxsplit=1) + entry['author'] = bits[1] + + elif subject_wait and line.startswith(' '): + subject_wait = False + entry['subject'] = line.strip() + + elif line.startswith(' BugLink: '): + bits = line.strip().split(maxsplit=2) + if len(bits) > 2: + # There is text after the URL, so use that (after stripping the + # enclosing characters) + entry.setdefault('bugs', []).append(bits[2][1:-1]) + elif 'launchpad.net' in bits[1]: + # Extract the bug number from the launchpad URL + bits = bits[1].split('/') + entry.setdefault('bugs', []).append(bits[-1]) + + elif line.startswith(' CVE-'): + entry.setdefault('cves', []).append(line.strip()) + + elif line.startswith(' Ignore:'): + entry['ignore'] = True + + elif line.startswith(' Properties:'): + for prop in line.strip().split()[1:]: + if prop in ('ignore', 'no-changelog'): + entry['ignore'] = True + +add_entry(entry) + +entries.reverse() + +# Go through the entries and clear out authors for upstream commits. +for entry in entries: + if entry['subject'].startswith('UBUNTU:'): + entry['subject'] = entry['subject'][7:].strip() + else: + del entry['author'] + +# Lump everything without a bug at the bottom. +keys.append('__packaging__') +keys.append('__mainline__') + +emit_nl = False +for key in keys: + if key == '__packaging__': + title_set = ['Miscellaneous Ubuntu changes'] + elif key == '__mainline__': + title_set = ['Miscellaneous upstream changes'] + else: + title_set = [] + for bug in key: + if bug.startswith('CVE-'): + title_set.append(bug) + elif bug == '__trackingbug__': + # Look for the tracking bug number on the second + # position of the key + continue + elif bug.isdigit(): + # Assume that it is an LP bug number if 'bug' contains only digits + bug_info = None + + try: + # urllib.request.urlcleanup() + request = urllib.request.Request('https://api.launchpad.net/devel/bugs/' + bug) + request.add_header('Cache-Control', 'max-age=0') + with urllib.request.urlopen(request) as response: + data = response.read() + bug_info = json.loads(data.decode('utf-8')) + + title = bug_info['title'] + if 'description' in bug_info: + for line in bug_info['description'].split('\n'): + if line.startswith('Kernel-Description:'): + title = line.split(' ', 1)[1] + + except urllib.error.HTTPError: + title = 'INVALID or PRIVATE BUG' + + title += ' (LP###' + bug + ')' + title_set.append(title) + else: + # Finally treat 'bug' itself as the title + title_set.append(bug) + + emit_title = True + for entry in entries: + if entry['key'] != key: + continue + + if emit_title: + if emit_nl: + print('') + emit_nl = True + + title_lines = textwrap.wrap('#// '.join(title_set), 76) + print(' * ' + title_lines[0].replace('LP###', 'LP: #').replace('#//', ' //')) + for line in title_lines[1:]: + line = line.replace('LP###', 'LP: #').replace('#//', ' //') + print(' ' + line) + + emit_title = False + + if key[0] != '__trackingbug__': + title_lines = textwrap.wrap(entry['subject'], 76) + print(' - ' + title_lines[0]) + for line in title_lines[1:]: + line = line.replace('LP###', 'LP: #') + print(' ' + line) diff --git a/debian/scripts/misc/insert-changes b/debian/scripts/misc/insert-changes new file mode 100755 index 00000000000000..e21aaa409884fc --- /dev/null +++ b/debian/scripts/misc/insert-changes @@ -0,0 +1,42 @@ +#!/usr/bin/python3 + +import os +import sys + +from subprocess import check_output + +droot = 'debian' +if len(sys.argv) > 1: + droot = sys.argv[1] + +debian = 'debian.master' +if len(sys.argv) > 2: + debian = sys.argv[2] + +rules = os.path.join(droot, 'rules') +changelog = os.path.join(debian, 'changelog') +changelog_new = os.path.join(debian, 'changelog.new') + +# Generate the list of new changes +changes = check_output(['make', '-s', '-f', rules, 'printchanges']).decode('UTF-8') + +# Insert the new changes into the changelog +with open(changelog) as orig, open(changelog_new, 'w') as new: + printed = False + skip_newline = False + for line in orig: + if line.startswith(' CHANGELOG: '): + if not printed: + printed = True + if changes == '': + skip_newline = True + continue + new.write(changes) + else: + if skip_newline and line.strip() == '': + skip_newline = False + continue + new.write(line) + +# Replace the original changelog with the new one +os.rename(changelog_new, changelog) diff --git a/debian/scripts/misc/insert-mainline-changes b/debian/scripts/misc/insert-mainline-changes new file mode 100755 index 00000000000000..5678b1031e54fb --- /dev/null +++ b/debian/scripts/misc/insert-mainline-changes @@ -0,0 +1,42 @@ +#!/usr/bin/perl + +if ($#ARGV != 2) { + warn "Usage: $0 \n"; + die " $0 debian.master/changelog v3.2.3 v3.2.2..v3.2.3\n"; +} +my ($changelog, $to, $range) = @ARGV; + +my @changes = (); + +push(@changes, "\n"); +push(@changes, " [ Upstream Kernel Changes ]\n\n"); +push(@changes, " * rebase to $to\n"); + +open(LOG, "git log '$range'|") || die "$0: git log failed: - $!\n"; +while () { + if (m@BugLink: .*launchpad.net/.*/([0-9]+)\s$@) { + push(@changes, " - LP: #$1\n"); + } +} +close(LOG); + +open(CHANGELOG, "< $changelog") or die "Cannot open changelog"; +open(NEW, "> $changelog.new") or die "Cannot open new changelog"; + +$printed = 3; +while () { + if (/^ CHANGELOG: /) { + $printed--; + print NEW; + if ($printed == 0) { + print NEW @changes; + } + next; + } + print NEW; +} + +close(NEW); +close(CHANGELOG); + +rename("$changelog.new", "$changelog"); diff --git a/debian/scripts/misc/insert-ubuntu-changes b/debian/scripts/misc/insert-ubuntu-changes new file mode 100755 index 00000000000000..20864874ddbac3 --- /dev/null +++ b/debian/scripts/misc/insert-ubuntu-changes @@ -0,0 +1,83 @@ +#!/usr/bin/perl + +if ($#ARGV != 2 && $#ARGV != 3) { + die "Usage: $0 []\n"; +} +if ($#ARGV == 2) { + push(@ARGV, "debian.master/changelog") +} +my ($changelog, $end, $start, $source_changelog) = @ARGV; + +$end =~ s/^\D+//; +$start =~ s/^\D+//; + +sub version_cmp($$) { + my @a = split(/[\.-]+/, $_[0]); + my @b = split(/[\.-]+/, $_[1]); + for (my $i = 1;; $i++) { + if (!defined $a[$i]) { + if (!defined $b[$i]) { + return 0; + } + return -1; + } + if (!defined $b[$i]) { + return 1; + } + if ($a[$i] < $b[$i]) { + return -1; + } + if ($a[$i] > $b[$i]) { + return 1; + } + } +} + +my @changes = (); +my $output = 0; +open(CHG, "<$source_changelog") || + open(CHG, ") { + if (/^\S+\s+\((.*)\)/) { + if (version_cmp($1, $end) <= 0) { + last; + } + if ($1 eq $start) { + $output = 1; + } + if ($output) { + push(@changes, "\n [ Ubuntu: $1 ]\n\n"); + next; + } + } + next if ($output == 0); + + next if (/^\s*$/); + next if (/^\s--/); + next if (/^\s\s[^\*\s]/); + + push(@changes, $_); +} +close(CHG); + +open(CHANGELOG, "< $changelog") or die "Cannot open changelog"; +open(NEW, "> $changelog.new") or die "Cannot open new changelog"; + +$printed = 3; +while () { + if (/^ CHANGELOG: /) { + $printed--; + print NEW; + if ($printed == 0) { + print NEW @changes; + } + next; + } + print NEW; +} + +close(NEW); +close(CHANGELOG); + +rename("$changelog.new", "$changelog"); diff --git a/debian/scripts/misc/kernelconfig b/debian/scripts/misc/kernelconfig new file mode 100755 index 00000000000000..f95396e28f28a8 --- /dev/null +++ b/debian/scripts/misc/kernelconfig @@ -0,0 +1,207 @@ +#!/bin/bash + +. debian/debian.env + +# Script to merge all configs and run 'make syncconfig' on it to wade out bad juju. +# Then split the configs into distro-commmon and flavour-specific parts + +# We have to be in the top level kernel source directory +if [ ! -f MAINTAINERS ] || [ ! -f Makefile ]; then + echo "This does not appear to be the kernel source directory." 1>&2 + exit 1 +fi + +mode=${1:?"Usage: $0 (oldconfig|editconfig) [do_enforce_all]"} +do_enforce_all=${2:-0} +yes=0 +case "$mode" in + update*configs) mode='syncconfig' ;; + default*configs) mode='oldconfig'; yes=1 ;; + edit*configs) ;; # All is good + gen*configs) mode='genconfigs' ;; # All is good + dump*configs) mode='config'; yes=1 ;; + *) echo "$0 called with invalid mode" 1>&2 + exit 1 ;; +esac +kerneldir="`pwd`" +confdir="$kerneldir/${DEBIAN}/config" +variant="$2" + +. $DEBIAN/etc/kernelconfig + +bindir="`pwd`/${DROOT}/scripts/misc" +common_conf="$confdir/config.common.$family" +tmpdir=`mktemp -d` +mkdir "$tmpdir/CONFIGS" + +if [ "$mode" = "genconfigs" ]; then + keep=1 + mode="oldconfig" + test -d CONFIGS || mkdir CONFIGS +fi + +warning_partial= + +for arch in $archs; do + rm -rf build + mkdir build + + # Map debian archs to kernel archs + case "$arch" in + ppc64|ppc64el) kernarch="powerpc" ;; + amd64) kernarch="x86_64" ;; + lpia) kernarch="x86" ;; + sparc) kernarch="sparc64" ;; + armel|armhf) kernarch="arm" ;; + s390x) kernarch="s390" ;; + riscv64) kernarch="riscv" ;; + *) kernarch="$arch" ;; + esac + + # Determine cross toolchain to use for Kconfig compiler tests + cross_compile="" + deb_build_arch=$(dpkg-architecture -qDEB_BUILD_ARCH -a$arch 2>/dev/null) + deb_host_arch=$(dpkg-architecture -qDEB_HOST_ARCH -a$arch 2>/dev/null) + [ $deb_build_arch != $deb_host_arch ] && cross_compile="$(dpkg-architecture -qDEB_HOST_GNU_TYPE -a$arch 2>/dev/null)-" + + # Environment variables for 'make *config'. We omit CROSS_COMPILE + # for i386 since it is no longer supported after 19.04, however + # we maintain the configs for hwe. + modify_config=true + env="ARCH=$kernarch DEB_ARCH=$arch" + compiler_path=$(which "${cross_compile}gcc" || true) + if [ "$compiler_path" != '' ]; then + env="$env CROSS_COMPILE=$cross_compile" + else + echo "WARNING: ${cross_compile}gcc not installed" + modify_config= + warning_partial="$warning_partial $arch" + fi + + archconfdir=$confdir/$arch + flavourconfigs=$(cd $archconfdir && ls config.flavour.*) + + # Merge configs + # We merge config.common.ubuntu + config.common. + + # config.flavour. + + for config in $flavourconfigs; do + fullconf="$tmpdir/$arch-$config-full" + case $config in + *) + : >"$fullconf" + if [ -f $common_conf ]; then + cat $common_conf >> "$fullconf" + fi + if [ -f $archconfdir/config.common.$arch ]; then + cat $archconfdir/config.common.$arch >> "$fullconf" + fi + cat "$archconfdir/$config" >>"$fullconf" + if [ -f $confdir/OVERRIDES ]; then + cat $confdir/OVERRIDES >> "$fullconf" + fi + ;; + esac + done + + for config in $flavourconfigs; do + if [ -f $archconfdir/$config ]; then + fullconf="$tmpdir/$arch-$config-full" + cat "$fullconf" > build/.config + # Call oldconfig or menuconfig + if [ "$modify_config" ]; then + case "$mode" in + editconfigs) + # Interactively edit config parameters + while : ; do + echo -n "Do you want to edit config: $arch/$config? [Y/n] " + read choice + case "$choice" in + y* | Y* | "" ) + make O=`pwd`/build $env menuconfig + break ;; + n* | N* ) + # 'syncconfig' prevents + # errors for '-' options set + # in common config fragments + make O=`pwd`/build $env syncconfig + break ;; + *) + echo "Entry not valid" + esac + done + ;; + *) + echo "* Run $mode (yes=$yes) on $arch/$config ..." + if [ "$yes" -eq 1 ]; then + yes "" | make O=`pwd`/build $env "$mode" + else + make O=`pwd`/build $env "$mode" + fi ;; + esac + fi + cat build/.config > $archconfdir/$config + [ "$modify_config" ] && cat build/.config >"$tmpdir/CONFIGS/$arch-$config" + if [ "$keep" = "1" ]; then + cat build/.config > CONFIGS/$arch-$config + fi + else + echo "!! Config not found $archconfdir/$config..." + fi + done + + echo "Running splitconfig.pl for $arch" + echo + + # Can we make this more robust by avoiding $tmpdir completely? + # This approach was used for now because I didn't want to change + # splitconfig.pl + (cd $archconfdir; $bindir/splitconfig.pl config.flavour.*; mv config.common \ + config.common.$arch; cp config.common.$arch $tmpdir) +done + +rm -f $common_conf + +# Now run splitconfig.pl on all the config.common. copied to +# $tmpdir +(cd $tmpdir; $bindir/splitconfig.pl *) +( + cd $confdir; + rm -f *-full + grep -v 'is UNMERGABLE' <$tmpdir/config.common >$common_conf + for arch in $archs; do + grep -v 'is UNMERGABLE' <$tmpdir/config.common.$arch \ + >$arch/config.common.$arch + done +) + +echo "" +echo "Running config-check for all configurations ..." +echo "" +fail=0 +for arch in $archs; do + archconfdir=$confdir/$arch + flavourconfigs=$(cd $archconfdir && ls config.flavour.*) + for config in $flavourconfigs; do + flavour="${config##*.}" + if [ -f $archconfdir/$config ]; then + fullconf="$tmpdir/CONFIGS/$arch-$config" + [ ! -f "$fullconf" ] && continue + "$bindir/../config-check" "$fullconf" "$arch" "$flavour" "$confdir" "0" "$do_enforce_all" || let "fail=$fail+1" + fi + done +done + +if [ "$fail" != 0 ]; then + echo "" + echo "*** ERROR: $fail config-check failures detected" + echo "" +fi + +rm -rf build + +if [ "$warning_partial" ]; then + echo "" + echo "WARNING: configuration operation applied only to a subset of architectures (skipped$warning_partial)" 1>&2 + echo "" +fi diff --git a/debian/scripts/misc/retag b/debian/scripts/misc/retag new file mode 100755 index 00000000000000..94cf169a076902 --- /dev/null +++ b/debian/scripts/misc/retag @@ -0,0 +1,34 @@ +#!/usr/bin/perl -w + +open(TAGS, "git tag -l |") or die "Could not get list of tags"; +@tags = ; +close(TAGS); + +open(LOGS, "git log --pretty=short |") or die "ERROR: Calling git log"; +my $commit = ""; + +while () { + my $origtag; + + if (m|^commit (.*)$|) { + $commit = $1; + next; + } + + m|\s*UBUNTU: (Ubuntu-2\.6\..*)| or next; + + $tag = $1; + + ($origtag) = grep(/^$tag.orig$/, @tags); + + if (!defined($origtag)) { + print "I: Adding original tag for $tag\n"; + system("git tag -m $tag $tag.orig $tag"); + } + + print "I: Tagging $tag => $commit\n"; + + system("git tag -f -m $tag $tag $commit"); +} + +close(LOGS); diff --git a/debian/scripts/misc/splitconfig.pl b/debian/scripts/misc/splitconfig.pl new file mode 100755 index 00000000000000..3270edeb4e0179 --- /dev/null +++ b/debian/scripts/misc/splitconfig.pl @@ -0,0 +1,107 @@ +#!/usr/bin/perl -w + +%allconfigs = (); +%common = (); + +print "Reading config's ...\n"; + +for $config (@ARGV) { + # Only config.* + next if $config !~ /^config\..*/; + # Nothing that is disabled, or remnant + next if $config =~ /.*\.(default|disabled|stub)$/; + + %{$allconfigs{$config}} = (); + + print " processing $config ... "; + + open(CONFIG, "< $config"); + + while () { + # Skip comments + /^#*\s*CONFIG_(\w+)[\s=](.*)$/ or next; + + ${$allconfigs{$config}}{$1} = $2; + + $common{$1} = $2; + } + + close(CONFIG); + + print "done.\n"; +} + +print "\n"; + +print "Merging lists ... \n"; + +# %options - pointer to flavour config inside the allconfigs array +for $config (keys(%allconfigs)) { + my %options = %{$allconfigs{$config}}; + + print " processing $config ... "; + + for $key (keys(%common)) { + next if not defined $common{$key}; + + # If we don't have the common option, then it isn't + # common. If we do have that option, it must have the same + # value. EXCEPT where this file does not have a value at all + # which may safely be merged with any other value; the value + # will be elided during recombination of the parts. + if (!defined($options{$key})) { + # Its ok really ... let it merge + } elsif (not defined($options{$key})) { + undef $common{$key}; + } elsif ($common{$key} ne $options{$key}) { + undef $common{$key}; + } + } + + print "done.\n"; +} + +print "\n"; + +print "Creating common config ... "; + +open(COMMON, "> config.common"); +print COMMON "#\n# Common config options automatically generated by splitconfig.pl\n#\n"; + +for $key (sort(keys(%common))) { + if (not defined $common{$key}) { + print COMMON "# CONFIG_$key is UNMERGABLE\n"; + } elsif ($common{$key} eq "is not set") { + print COMMON "# CONFIG_$key is not set\n"; + } else { + print COMMON "CONFIG_$key=$common{$key}\n"; + } +} +close(COMMON); + +print "done.\n\n"; + +print "Creating stub configs ...\n"; + +for $config (keys(%allconfigs)) { + my %options = %{$allconfigs{$config}}; + + print " processing $config ... "; + + open(STUB, "> $config"); + print STUB "#\n# Config options for $config automatically generated by splitconfig.pl\n#\n"; + + for $key (sort(keys(%options))) { + next if defined $common{$key}; + + if ($options{$key} =~ /^is /) { + print STUB "# CONFIG_$key $options{$key}\n"; + } else { + print STUB "CONFIG_$key=$options{$key}\n"; + } + } + + close(STUB); + + print "done.\n"; +} diff --git a/debian/scripts/misc/tristate.sh b/debian/scripts/misc/tristate.sh new file mode 100755 index 00000000000000..cc170c8ba09d99 --- /dev/null +++ b/debian/scripts/misc/tristate.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# +# Find config variables that might be able to transition from =y to =m +# +# Example: debian/scripts/misc/tristate.sh debian.master/config/config.common.ubuntu +# + +KC=Kconfig.tmp +rm -f ${KC} +find .|grep Kconfig | while read f +do + cat $f >> ${KC} +done + +grep =y $1 | sed -e 's/CONFIG_//' -e 's/=y//' | while read c +do + cat < tristate.awk +BEGIN { tristate=0; } +/^config ${c}\$/ { tristate=1; next; } +/tristate/ { if (tristate == 1) printf("CONFIG_%s=m\n","${c}"); next; } +{ if (tristate == 1) exit; } +EOF + + gawk -f tristate.awk ${KC} +done diff --git a/debian/scripts/misc/update-aufs.sh b/debian/scripts/misc/update-aufs.sh new file mode 100755 index 00000000000000..83bbbff8ea6955 --- /dev/null +++ b/debian/scripts/misc/update-aufs.sh @@ -0,0 +1,50 @@ +#!/bin/bash + +AUFS=aufs4-standalone + +# +# Before you run this be sure you've removed or reverted the 'UBUNTU: SAUCE: AUFS" patch. +# +# +# Make sure the current working directory is at the top of the +# linux tree. +# +if ! grep PATCHLEVEL Makefile +then + echo "You must run this script from the top of the linux tree" + exit 1 +fi + +clean=0 +if [ "$#" = 1 ]; then + AUFS="$1" +else + clean=1 + rm -rf ${AUFS} + git clone https://github.com/sfjro/aufs5-standalone.git ${AUFS} + (cd ${AUFS}; git checkout -b aufs5.x-rcN remotes/origin/aufs5.x-rcN) +fi + +cp ${AUFS}/include/uapi/linux/aufs_type.h include/uapi/linux +rsync -av ${AUFS}/fs/ fs/ +rsync -av ${AUFS}/Documentation/ Documentation/ + +PATCHES="${PATCHES} aufs5-kbuild.patch" +PATCHES="${PATCHES} aufs5-base.patch" +PATCHES="${PATCHES} aufs5-mmap.patch" +PATCHES="${PATCHES} aufs5-standalone.patch" +PATCHES="${PATCHES} aufs5-loopback.patch" +#PATCHES="${PATCHES} vfs-ino.patch" +#PATCHES="${PATCHES} tmpfs-idr.patch" + +for i in ${PATCHES} +do + patch -p1 < ${AUFS}/$i +done + +[ "$clean" = 1 ] && rm -rf ${AUFS} +git add mm/prfile.c +git add -u +find . -name "*.orig" | xargs rm +find . |grep aufs | xargs git add +git commit -s -m"UBUNTU: SAUCE: AUFS" diff --git a/debian/scripts/module-check b/debian/scripts/module-check new file mode 100755 index 00000000000000..039e4d0069c5c2 --- /dev/null +++ b/debian/scripts/module-check @@ -0,0 +1,2 @@ +#!/bin/sh +exit 0 diff --git a/debian/scripts/module-inclusion b/debian/scripts/module-inclusion new file mode 100755 index 00000000000000..ccec0f215e0823 --- /dev/null +++ b/debian/scripts/module-inclusion @@ -0,0 +1,104 @@ +#!/bin/bash + +# +# Build a new directory of modules based on an inclusion list. +# The includsion list format must be a bash regular expression. +# +# usage: $0 ROOT INCLUSION_LIST +# example: $0 \ +# debian/build/build-virtual-ALL debian/build/build-virtual \ +# debian.master/control.d/virtual.inclusion-list \ +# virtual.depmap +master=0 +if [ "$1" = "--master" ]; then + master=1 + shift +fi + +ROOT=$1 +NROOT=$2 +ILIST=$3 +DEPMAP=$4 + +tmp="/tmp/module-inclusion.$$" + +# +# Prep a destination directory. +# +mkdir -p ${NROOT} + +{ + # Copy over the framework into the master package. + if [ "$master" -eq 1 ]; then + (cd ${ROOT}; find . ! -name "*.ko" -type f) + fi + + # Copy over modules by name or pattern. + while read -r i + do + # + # 'find' blurts a warning if it cannot find any ko files. + # + case "$i" in + \!*) + (cd ${ROOT}; ${i#!} || true) + ;; + *\**) + (cd ${ROOT}; eval find "${i}" -name "*.ko" || true) + ;; + *) + echo "$i" + ;; + esac + done <"${ILIST}" +} >"$tmp" + +# Copy over the listed modules. +while read i +do + # If this is already moved over, all is good. + if [ -f "${NROOT}/$i" ]; then + : + + # If present in the source, moved it over. + elif [ -f "${ROOT}/$i" ]; then + mkdir -p "${NROOT}/`dirname $i`" + mv "${ROOT}/$i" "${NROOT}/$i" + + # Otherwise, it is missing. + else + echo "Warning: Could not find ${ROOT}/$i" 1>&2 + fi +done <"$tmp" + +# Copy over any dependancies, note if those are missing +# we know they are in a pre-requisite package as they must +# have existed at depmap generation time, and can only have +# moved into a package. +let n=0 || true +while [ -s "$tmp" ] +do + let n="$n+1" || true + [ "$n" = "20" ] && break || true + + echo "NOTE: pass $n: dependency scan" 1>&2 + + while read i + do + grep "^$i " "$DEPMAP" | \ + while read m d + do + if [ -f "${ROOT}/$d" ]; then + echo "NOTE: pass $n: ${i} pulls in ${d}" 1>&2 + echo "$d" + mkdir -p "${NROOT}/`dirname $d`" + mv "${ROOT}/$d" "${NROOT}/$d" + fi + done + done <"$tmp" >"$tmp.new" + mv -f "$tmp.new" "$tmp" +done + +rm -f "$tmp" + +exit 0 diff --git a/debian/scripts/retpoline-check b/debian/scripts/retpoline-check new file mode 100755 index 00000000000000..039e4d0069c5c2 --- /dev/null +++ b/debian/scripts/retpoline-check @@ -0,0 +1,2 @@ +#!/bin/sh +exit 0 diff --git a/debian/scripts/retpoline-extract b/debian/scripts/retpoline-extract new file mode 100755 index 00000000000000..cf13a30b1c62ea --- /dev/null +++ b/debian/scripts/retpoline-extract @@ -0,0 +1,23 @@ +#!/bin/bash + +cd "$1" || exit 1 + +# Find all valid retpoline information, collate the detected and +# safe information together. Join the result to find the detected +# but non-safe elements. These are our concern. +ur_detected=$(mktemp --tmpdir "retpoline-check-XXXXXX.ur-detected") +ur_safe=$(mktemp --tmpdir "retpoline-check-XXXXXX.ur-safe") + +find "." -path './drivers/firmware/efi/libstub' -prune -o \ + -path './arch/x86/boot' -prune -o \ + -path './arch/x86/purgatory' -prune -o \ + -name \*.ur-detected -print0 | xargs -0 cat | \ + sed -e "s@^$1@@" -e "s@ $2/@ @" -e "s@^/@@" | \ + sort -k 1b,1 >"$ur_detected" +find "." -name \*.ur-safe -print0 | xargs -0 cat | \ + sed -e "s@^$1@@" -e "s@^/@@" | \ + sort -k 1b,1 >"$ur_safe" + +join -v 1 -j 1 "$ur_detected" "$ur_safe" | sed -s 's/[^ ]* *//' + +rm -f "$ur_detected" "$ur_safe" diff --git a/debian/scripts/retpoline-extract-one b/debian/scripts/retpoline-extract-one new file mode 100755 index 00000000000000..b203bfbf8df5c7 --- /dev/null +++ b/debian/scripts/retpoline-extract-one @@ -0,0 +1,270 @@ +#!/bin/bash + +exec &2 + exit 1 + fi +} + +# Form an associative lookup for the section numbers in the ELF symbol table. +# Uses 8 character 0 expanded hexadecimal key for ease of consumption. +__sectionmap_init() +{ + readelf -W --headers "$1" | \ + awk ' + { sub("\\[", ""); sub("\\]", ""); } + ($1 ~ /^[0-9][0-9]*/) { printf("%08x %s %s %s\n", int($1), $2, $3, $4); } + ' | \ + { + while read section_num section_name section_type section_vma + do + echo "sectionmap_$section_num='$section_name'" + echo "sectionvma_$section_num='$section_vma'" + case "$section_type" in + REL|RELA) section_relocation="$section_type" ;; + esac + done + echo "section_relocation='$section_relocation'" + } +} +sectionmap_init() +{ + eval $(__sectionmap_init "$1") +} +sectionmap() +{ + eval RET="\$sectionmap_$1" + if [ "$RET" = '' ]; then + echo "sectionmap: $1: invalid section" 1>&2 + exit 1 + fi +} +sectionvma() +{ + eval RET="\$sectionvma_$1" + if [ "$RET" = '' ]; then + echo "sectionvma: $1: invalid section" 1>&2 + exit 1 + fi +} + +# Read and parse the hex-dump output. +hex="[0-9a-f]" +hex_8="$hex$hex$hex$hex$hex$hex$hex$hex" +hexspc="[0-9a-f ]" +hexspc_8="$hexspc$hexspc$hexspc$hexspc$hexspc$hexspc$hexspc$hexspc" + +raw32() +{ + readelf --hex-dump "$2" "$1" 2>/dev/null | + sed \ + -e '/^Hex/d' -e '/^$/d' -e '/^ *NOTE/d' \ + -e 's/ *[^ ][^ ]* *\('"$hex_8"'\) \('"$hexspc_8"'\) \('"$hexspc_8"'\) \('"$hexspc_8"'\) .*/\1 \2 \3 \4 /' \ + -e 's/\('"$hex$hex"'\)\('"$hex$hex"'\)\('"$hex$hex"'\)\('"$hex$hex"'\) /\4\3\2\1 /g' \ + -e 's/ $//g' -e 's/ /\n/g' +} +#-e 's/\([^ ][^ ][^ ][^ ][^ ][^ ][^ ][^ ]\) \([^ ][^ ][^ ][^ ][^ ][^ ][^ ][^ ]\) /\2\1 /g' \ + +rela() +{ + #file="$(basename "$1")" + file="$1" + + # Read relocation information for a 64bit binary. Each relocation entry + # is 3 long longs so we collect 6 quads here. Note that the dump is in + # listed in increasing byte order not withstanding the quad split. + # + # The record says to take the value of add and + # shove that into in the segment of the . + # + # Format: + # 64 bits + # 32 bits + # 32 bits + # 64 bits + raw32 "$1" ".rela$SECTION" | \ + { + a1=''; a2=''; a3=''; a4=''; a5='' + while read a6 + do + [ "$a1" = '' ] && { a1="$a6"; continue; } + [ "$a2" = '' ] && { a2="$a6"; continue; } + [ "$a3" = '' ] && { a3="$a6"; continue; } + [ "$a4" = '' ] && { a4="$a6"; continue; } + [ "$a5" = '' ] && { a5="$a6"; continue; } + + #echo ">$a1< >$a2< >$a3< >$a4< >$a5< >$a6<" 1>&2 + #echo "type<$a3> symbol<$a4> offset<$a2$a1> addr<$a6a5>" 1>&2 + + symbolmap "$a4"; section_num="$RET" + #echo "section_num<$section_num>" 1>&2 + + sectionmap "$section_num"; section="$RET" + sectionvma "$section_num"; vma="$RET" + #echo "section<$section> vma<$vma>" 1>&2 + + # Adjust the segment addressing by the segment offset. + printf -v addr "%u" "0x$a6$a5" + printf -v vma "%u" "0x$vma" + let offset="$addr + $vma" + printf -v offset "%x" "$offset" + + echo "$file-$section-$offset" + + a1=''; a2=''; a3=''; a4=''; a5='' + done + } | sed -e 's/-00*\([0-9a-f]\)/-\1/' +} + +# Form an associative lookup for the raw contents for an ELF section. +# Uses 8 character 0 expanded hexadecimal key for ease of consumption. +contentmap_init() +{ + raw32 "$1" "$2" >"$tmp" + let offset=0 + while read value + do + printf -v offset_hex "%08x" $offset + eval contentmap_$offset_hex=\'$value\' + + let offset="$offset + 4" + done <"$tmp" + rm -f "$tmp" +} +contentmap() +{ + eval RET="\$contentmap_$1" + if [ "$RET" = '' ]; then + echo "contentmap: $1: invalid offset" 1>&2 + exit 1 + fi +} + +rel() +{ + # Load up the current contents of the $SECTION segment + # as the offsets (see below) are recorded there and we will need + # those to calculate the actuall address. + contentmap_init "$1" "$SECTION" + + #file="$(basename "$1")" + file="$1" + + # Read relocation information for a 32bit binary. Each relocation entry + # is 3 longs so we collect 3 quads here. Note that the dump is in + # listed in increasing byte order not withstanding the quad split. + # + # The record says to take the value of and add that to the + # existing contents of in the segment of the . + # + # Format: + # 32 bits + # 24 bits + # 8 bits + raw32 "$1" ".rel$SECTION" | \ + { + a1='' + while read a2 + do + [ "$a1" = '' ] && { a1="$a2"; continue; } + + #echo ">$a1< >$a2<" + contentmap "$a1"; offset="$RET" + symbolmap "00${a2%??}"; section_num="$RET" + + sectionmap "$section_num"; section="$RET" + sectionvma "$section_num"; vma="$RET" + #echo ">$a1< >$a2< >$offset< >$section<" + + echo "$file-$section-$offset" + + a1='' + done + } | sed -e 's/-00*\([0-9a-f]\)/-\1/' +} + +tmp=$(mktemp --tmpdir "retpoline-extract-XXXXXX") + +disassemble() +{ + local object="$1" + local src="$2" + local options="$3" + local selector="$4" + + objdump $options --disassemble --no-show-raw-insn "$object" | \ + awk -F' ' ' + BEGIN { file="'"$object"'"; src="'"$src"'"; } + /Disassembly of section/ { segment=$4; sub(":", "", segment); } + /^[0-9a-f][0-9a-f]* <.*>:/ { tag=$0; sub(".*<", "", tag); sub(">.*", "", tag); } + $0 ~ /(call|jmp)q? *\*0x[0-9a-f]*\(%rip\)/ { + next + } + $0 ~ /(call|jmp)q? *\*.*%/ { + sub(":", "", $1); + if ('"$selector"') { + offset=$1 + $1=tag + print(file "-" segment "-" offset " " src " " segment " " $0); + } + } + ' +} + +# Accumulate potentially vunerable indirect call/jmp sequences. We do this +# by examining the raw disassembly for affected forms, recording the location +# of each. +case "$bit16" in +'') disassemble "$object" "$src" '' 'segment != ".init.text"' ;; +*) disassemble "$object" "$src" '--disassembler-options=i8086' 'segment != ".init.text" && segment != ".text32" && segment != ".text64"' + disassemble "$object" "$src" '--disassembler-options=i386' 'segment == ".text32"' + disassemble "$object" "$src" '--disassembler-options=x86-64' 'segment == ".text64"' + ;; +esac | sort -k 1b,1 >"$object.ur-detected" +[ ! -s "$object.ur-detected" ] && rm -f "$object.ur-detected" + +# Load up the symbol table and section mappings. +symbolmap_init "$object" +sectionmap_init "$object" + +# Accumulate annotated safe indirect call/jmp sequences. We do this by examining +# the $SECTION sections (and their associated relocation information), +# each entry represents the address of an instruction which has been marked +# as ok. +case "$section_relocation" in +REL) rel "$object" ;; +RELA) rela "$object" ;; +esac | sort -k 1b,1 >"$object.ur-safe" +[ ! -s "$object.ur-safe" ] && rm -f "$object.ur-safe" + +# We will perform the below join on the summarised and sorted fragments +# formed above. This is performed in retpoline-check. +#join -v 1 -j 1 "$tmp.extracted" "$tmp.safe" | sed -s 's/[^ ]* *//' + +rm -f "$tmp" diff --git a/debian/scripts/sub-flavour b/debian/scripts/sub-flavour new file mode 100644 index 00000000000000..01004939617c75 --- /dev/null +++ b/debian/scripts/sub-flavour @@ -0,0 +1,69 @@ +#!/bin/bash + +. debian/debian.env + +echo "SUB_PROCESS $FROM => $TO" + +export from_pkg="linux-image-$ABI_RELEASE-$FROM" +export to_pkg="linux-image-$ABI_RELEASE-$TO" + +from_moddir="debian/$from_pkg/lib/modules/$ABI_RELEASE-$FROM" +to_moddir="debian/$to_pkg/lib/modules/$ABI_RELEASE-$FROM" + +install -d "debian/$to_pkg/boot" +install -m644 debian/$from_pkg/boot/config-$ABI_RELEASE-$FROM \ + debian/$to_pkg/boot/ +install -m600 debian/$from_pkg/boot/{vmlinuz,System.map}-$ABI_RELEASE-$FROM \ + debian/$to_pkg/boot/ + +# +# Print some warnings if there are files in the sub-flavours list +# that do not actually exist. +# +cat ${DEBIAN}/sub-flavours/$TO.list | while read line +do +( + cd debian/$from_pkg/lib/modules/$ABI_RELEASE-$FROM/kernel; + # + # If its a wildcard, then check that there are files that match. + # + if echo "$line" | grep '\*' > /dev/null + then + if [ `eval find "$line" -name '*.ko' 2>/dev/null|wc -l` -lt 1 ] + then + echo SUB_INST Warning - No files in $line + fi + # + # Else it should be a single file reference. + # + elif [ ! -f "$line" ] + then + echo SUB_INST Warning - could not find "$line" + fi +) +done + +cat ${DEBIAN}/sub-flavours/$TO.list | while read line; do + ( + cd debian/$from_pkg/lib/modules/$ABI_RELEASE-$FROM/kernel; + if echo "$line" | grep '\*' > /dev/null + then + eval find "$line" -name '*.ko' 2>/dev/null || true + elif [ -f "$line" ] + then + echo "$line" + fi + ); +done | while read mod; do + echo "SUB_INST checking: $mod" + fromdir="/lib/modules/$ABI_RELEASE-$FROM/" + egrep "^($fromdir)?kernel/$mod:" \ + $from_moddir/modules.dep | sed -e "s|^$fromdir||" -e 's/://' -e 's/ /\n/g' | \ + while read m; do + m="${fromdir}$m" + test -f debian/$to_pkg/$m && continue + echo "SUB_INST installing: $m" + install -D -m644 debian/$from_pkg/$m \ + debian/$to_pkg/$m + done +done diff --git a/debian/snapcraft.mk b/debian/snapcraft.mk new file mode 100644 index 00000000000000..49f8727f95a153 --- /dev/null +++ b/debian/snapcraft.mk @@ -0,0 +1,11 @@ +ifeq ($(ARCH),) + arch := $(shell uname -m | sed -e s/i.86/i386/ -e s/x86_64/amd64/ \ + -e s/arm.*/armhf/ -e s/s390/s390x/ -e s/ppc.*/powerpc/ \ + -e s/aarch64.*/arm64/ ) +else ifeq ($(ARCH),arm) + arch := armhf +else + arch := $(ARCH) +endif +config: + cat debian.$(branch)/config/config.common.ubuntu debian.$(branch)/config/$(arch)/config.common.$(arch) debian.$(branch)/config/$(arch)/config.flavour.$(flavour) >.config diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000000000..d3827e75a5cadb --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +1.0 diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 00000000000000..b29684e492759f --- /dev/null +++ b/debian/source/options @@ -0,0 +1,8 @@ +# Ignore vbox symlinks, we will regenerate these at clean (LP:1426113) +## autoreconstruct -- begin +# Ignore any symlinks created since the orig which are rebuilt by reconstruct. +## autoreconstruct -- end + +# force "dpkg-source -I -i" behavior +diff-ignore +tar-ignore diff --git a/debian/stamps/keep-dir b/debian/stamps/keep-dir new file mode 100644 index 00000000000000..5c38d4a5c411f2 --- /dev/null +++ b/debian/stamps/keep-dir @@ -0,0 +1 @@ +Place holder diff --git a/debian/templates/extra.postinst.in b/debian/templates/extra.postinst.in new file mode 100755 index 00000000000000..c4a556c5a6b947 --- /dev/null +++ b/debian/templates/extra.postinst.in @@ -0,0 +1,20 @@ +#!/bin/sh +set -e + +version=@abiname@@localversion@ +image_path=/boot/@image-stem@-$version + +if [ "$1" != configure ]; then + exit 0 +fi + +depmod -a -F /boot/System.map-$version $version || true +if [ -d /etc/kernel/postinst.d ]; then + cat - >/usr/lib/linux/triggers/$version </dev/null || true +# +# We should be rebuilding the initramfs here on removal to pare down the +# initramfs if it contains any of the objects we just removed. But people +# commonly remove kernels in order to free space in /boot, and rebuilding the +# initramfs now risks ENOSPC when we are trying to make space. The files we +# leave lying about could be confusing, but we trade that against safety on +# removal. +# +#if [ -d /etc/kernel/postinst.d ]; then +# # We want to behave as if linux-image (without us) was installed, therefore +# # we do not want the postinst support to know we are being removed, claim +# # this is an installation event. +# cat - >/usr/lib/linux/triggers/$version </usr/lib/linux/triggers/$version </dev/null; then + linux-update-symlinks remove $version $image_path +fi + +if [ -d /etc/kernel/postrm.d ]; then + # We cannot trigger ourselves as at the end of this we will no longer + # exist and can no longer respond to the trigger. The trigger would + # then become lost. Therefore we clear any pending trigger and apply + # postrm directly. + if [ -f /usr/lib/linux/triggers/$version ]; then + echo "$0 ... removing pending trigger" + rm -f /usr/lib/linux/triggers/$version + fi + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/postrm.d +fi + +if [ "$1" = purge ]; then + for extra_file in modules.dep modules.isapnpmap modules.pcimap \ + modules.usbmap modules.parportmap \ + modules.generic_string modules.ieee1394map \ + modules.ieee1394map modules.pnpbiosmap \ + modules.alias modules.ccwmap modules.inputmap \ + modules.symbols modules.ofmap \ + modules.seriomap modules.\*.bin \ + modules.softdep modules.devname; do + eval rm -f /lib/modules/$version/$extra_file + done + rmdir /lib/modules/$version || true +fi + +exit 0 diff --git a/debian/templates/image.preinst.in b/debian/templates/image.preinst.in new file mode 100755 index 00000000000000..74bdb97b76847d --- /dev/null +++ b/debian/templates/image.preinst.in @@ -0,0 +1,22 @@ +#!/bin/sh +set -e + +version=@abiname@@localversion@ +image_path=/boot/@image-stem@-$version + +if [ "$1" = abort-upgrade ]; then + exit 0 +fi + +if [ "$1" = install ]; then + # Create a flag file for postinst + mkdir -p /lib/modules/$version + touch /lib/modules/$version/.fresh-install +fi + +if [ -d /etc/kernel/preinst.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/preinst.d +fi + +exit 0 diff --git a/debian/templates/image.prerm.in b/debian/templates/image.prerm.in new file mode 100755 index 00000000000000..347104d6e18240 --- /dev/null +++ b/debian/templates/image.prerm.in @@ -0,0 +1,18 @@ +#!/bin/sh +set -e + +version=@abiname@@localversion@ +image_path=/boot/@image-stem@-$version + +if [ "$1" != remove ]; then + exit 0 +fi + +linux-check-removal $version + +if [ -d /etc/kernel/prerm.d ]; then + DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \ + --arg=$image_path /etc/kernel/prerm.d +fi + +exit 0 diff --git a/debian/tests-build/README b/debian/tests-build/README new file mode 100644 index 00000000000000..c74d1c4aef8598 --- /dev/null +++ b/debian/tests-build/README @@ -0,0 +1,21 @@ +Scripts placed in this directory get called one at a time by run-parts(8). +The scripts are expected to perform some sort of sanity checks on the +finished build. Scripts will be called once for each flavour. + +Some environment variables are exported to make life a little easier: + +DPKG_ARCH : The dpkg architecture (e.g. "amd64") +KERN_ARCH : The kernel architecture (e.g. "x86_64") +FLAVOUR : The specific flavour for this run (e.g. "generic") +VERSION : The full version of this build (e.g. 2.6.22-1) +REVISION : The exact revision of this build (e.g. 1.3) +PREV_REVISION : The revision prior to this one +ABI_NUM : The specific ABI number for this build (e.g. 2) +PREV_ABI_NUM : The previous ABI number. Can be the same as ABI_NUM. +BUILD_DIR : The directory where this build took place +INSTALL_DIR : The directory where the package is prepared +SOURCE_DIR : Where the main kernel source is + +Scripts are expected to have a zero exit status when no problems occur, +and non-zero when an error occurs that should stop the build. Scripts +should print whatever info they deem needed to deduce the problem. diff --git a/debian/tests-build/check-aliases b/debian/tests-build/check-aliases new file mode 100755 index 00000000000000..ab3f23a7ec6e99 --- /dev/null +++ b/debian/tests-build/check-aliases @@ -0,0 +1,26 @@ +#!/usr/bin/perl -w + +my %map; + +print "Checking for dupe aliases in $ENV{'FLAVOUR'}...\n"; + +$aliases = + "$ENV{'INSTALL_DIR'}/lib/modules/$ENV{'VERSION'}-$ENV{'FLAVOUR'}/modules.alias"; + +exit 0 unless (-e $aliases); + +open(ALIASES, "< $aliases") or die "Could not open $aliases"; + +while () { + chomp; + my ($junk, $alias, $module) = split; + + if (defined($map{$alias})) { + printf("%s %20s / %-20s : %s \n", ("$map{$alias}" eq "$module") + ? "INT" : " ", $map{$alias}, $module, $alias); + } else { + $map{$alias} = $module; + } +} + +exit(0); diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 00000000000000..94eb9b9ed897c5 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,7 @@ +Tests: rebuild +Depends: @builddeps@, fakeroot +Restrictions: allow-stderr, skippable + +Tests: ubuntu-regression-suite +Depends: build-essential, gcc-multilib [amd64 armhf i386], gdb, git, python2 | python, bzr +Restrictions: allow-stderr, isolation-machine, breaks-testbed, skippable diff --git a/debian/tests/rebuild b/debian/tests/rebuild new file mode 100755 index 00000000000000..365835c92d9269 --- /dev/null +++ b/debian/tests/rebuild @@ -0,0 +1,20 @@ +#!/bin/sh + +# If we are triggering for just linux or linux-meta we know we have +# just built the kernel and there is no point in repeating that +# build, it just wastes time. (LP: #1498862) +build_needed=0 +for trigger in ${ADT_TEST_TRIGGERS:-force} +do + case "$trigger" in + linux/*|linux-lts-*/*|linux-meta*/*|linux-oem*/*|fakeroot/*|gdb/*|git/*|bzr/*|gcc-multilib/*) ;; + *) build_needed=1 ;; + esac +done +if [ "$build_needed" -eq 0 ]; then + echo "rebuild: short circuiting build for '${ADT_TEST_TRIGGERS}'" + exit 77 +fi + +set -e +dpkg-buildpackage -rfakeroot -us -uc -b -Pautopkgtest diff --git a/debian/tests/ubuntu-regression-suite b/debian/tests/ubuntu-regression-suite new file mode 100755 index 00000000000000..1dabcb0214c3ae --- /dev/null +++ b/debian/tests/ubuntu-regression-suite @@ -0,0 +1,45 @@ +#!/bin/sh +set -e + +# Only run regression-suite on kernels we can boot in canonistack +source=`dpkg-parsechangelog -SSource` +case $source in + linux|linux-unstable|linux-hwe*|linux-kvm|linux-oem) + ;; + *) + echo "ubuntu-regression-suite is pointless, if one cannot boot the kernel" + exit 77 + ;; +esac + +# Only run regression-suite if we were requested to +have_meta=0 +for trigger in ${ADT_TEST_TRIGGERS} +do + case "$trigger" in + linux-meta/*|linux-meta-*/*) + have_meta=1 + ;; + esac +done +if [ -n "$ADT_TEST_TRIGGERS" ] && [ "$have_meta" -eq 0 ]; then + echo "ubuntu-regression-suite is not requested, as there is no linux-meta trigger" + exit 77 +fi + +sver=`dpkg-parsechangelog -SVersion` +read x rver x &2 + exit 1 +fi + +git clone git://kernel.ubuntu.com/ubuntu/kernel-testing +kernel-testing/run-dep8-tests diff --git a/debian/tools/generic b/debian/tools/generic new file mode 100644 index 00000000000000..ebc87fd8c5b8c9 --- /dev/null +++ b/debian/tools/generic @@ -0,0 +1,60 @@ +#!/bin/bash +full_version=`uname -r` + +# First check for a fully qualified version. +this="/usr/lib/linux-tools/$full_version/`basename $0`" +if [ -f "$this" ]; then + exec "$this" "$@" +fi + +# Removing flavour from version i.e. generic or server. +flavour_abi=${full_version#*-} +flavour=${flavour_abi#*-} +version=${full_version%-$flavour} +this="$0_$version" +if [ -f "$this" ]; then + exec "$this" "$@" +fi + +# Before saucy kernels we had no flavour linkage. +if dpkg --compare-versions "$version" lt "3.11.0"; then + flavour='' +else + flavour="-$flavour" +fi +# Hint at the cloud tools if they exist (trusty and later) +if dpkg --compare-versions "$version" ge "3.13.0"; then + cld="" +else + cld=":" +fi +# Work out if this is an LTS backport or not. +codename=`lsb_release -cs` +case "$codename" in +precise) base='3.2.0-9999' ;; +trusty) base='3.13.0-9999' ;; +*) base='' ;; +esac +std="" +lts=":" +if [ "$base" != "" ]; then + if dpkg --compare-versions "$version" gt "$base"; then + std=":" + lts="" + fi +fi + +# Give them a hint as to what to install. + echo "WARNING: `basename $0` not found for kernel $version" >&2 + echo "" >&2 + echo " You may need to install the following packages for this specific kernel:" >&2 + echo " linux-tools-$version$flavour" >&2 +$cld echo " linux-cloud-tools-$version$flavour" >&2 + echo "" >&2 + echo " You may also want to install one of the following packages to keep up to date:" >&2 +$std echo " linux-tools$flavour" >&2 +$std $cld echo " linux-cloud-tools$flavour" >&2 +$lts echo " linux-tools$flavour-lts-" >&2 +$lts $cld echo " linux-cloud-tools$flavour-lts-" >&2 + +exit 2 diff --git a/debian/wireguard-modules.ignore b/debian/wireguard-modules.ignore new file mode 100644 index 00000000000000..a82c63a2033fd0 --- /dev/null +++ b/debian/wireguard-modules.ignore @@ -0,0 +1 @@ +wireguard diff --git a/debian/zfs-modules.ignore b/debian/zfs-modules.ignore new file mode 100644 index 00000000000000..987d577ec9e8e3 --- /dev/null +++ b/debian/zfs-modules.ignore @@ -0,0 +1,11 @@ +icp +spl +splat +zavl +zcommon +zfs +zlua +znvpair +zpios +zunicode +zzstd From a11cc8872975498c08b4792655e61658f9431b5f Mon Sep 17 00:00:00 2001 From: Seth Forshee Date: Sun, 7 Jul 2019 21:37:43 -0500 Subject: [PATCH 182/192] UBUNTU: SAUCE: kbuild: add -fcf-protection=none when using retpoline flags BugLink: [Replace -fcf-protection=none patch with new version] The gcc -fcf-protection=branch option is not compatible with -mindirect-branch=thunk-extern. The latter is used when CONFIG_RETPOLINE is selected, and this will fail to build with a gcc which has -fcf-protection=branch enabled by default. Adding -fcf-protection=none when building with retpoline support to prevents such build failures. Signed-off-by: Seth Forshee --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 0faa6473328168..50480341d6ef36 100644 --- a/Makefile +++ b/Makefile @@ -899,6 +899,12 @@ ifdef CONFIG_FTRACE_MCOUNT_USE_OBJTOOL CC_FLAGS_USING += -DCC_USING_NOP_MCOUNT endif ifdef CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT +# ensure -fcf-protection is disabled when using retpoline as it is +# incompatible with -mindirect-branch=thunk-extern +ifdef CONFIG_RETPOLINE +KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none,) +endif + ifdef CONFIG_HAVE_C_RECORDMCOUNT BUILD_C_RECORDMCOUNT := y export BUILD_C_RECORDMCOUNT From 317add913fa9e2aad93da7c6c476a879d954faeb Mon Sep 17 00:00:00 2001 From: Andy Whitcroft Date: Fri, 9 Sep 2016 14:02:29 +0100 Subject: [PATCH 183/192] UBUNTU: SAUCE: add vmlinux.strip to BOOT_TARGETS1 on powerpc Signed-off-by: Andy Whitcroft --- arch/powerpc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index aa6808e706470d..17000f1abe462b 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -272,7 +272,7 @@ head-$(CONFIG_PPC_OF_BOOT_TRAMPOLINE) += arch/powerpc/kernel/prom_init.o all: zImage # With make 3.82 we cannot mix normal and wildcard targets -BOOT_TARGETS1 := zImage zImage.initrd uImage +BOOT_TARGETS1 := zImage zImage.initrd uImage vmlinux.strip BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.% PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2) From 5a7454ffc344df1d5ec20d375a2423ff6320d186 Mon Sep 17 00:00:00 2001 From: Andy Whitcroft Date: Fri, 27 May 2016 13:52:22 +0100 Subject: [PATCH 184/192] UBUNTU: SAUCE: tools/hv/lsvmbus -- add manual page BugLink: http://bugs.launchpad.net/bugs/1585311 Signed-off-by: Andy Whitcroft Acked-by: Tim Gardner Acked-by: Brad Figg Signed-off-by: Kamal Mostafa --- tools/hv/lsvmbus.8 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tools/hv/lsvmbus.8 diff --git a/tools/hv/lsvmbus.8 b/tools/hv/lsvmbus.8 new file mode 100644 index 00000000000000..ba07d664950ebc --- /dev/null +++ b/tools/hv/lsvmbus.8 @@ -0,0 +1,23 @@ +.\" This page Copyright (C) 2016 Andy Whitcroft +.\" Distributed under the GPL v2 or later. +.TH LSVMBUS 8 +.SH NAME +lsvmbus \- List Hyper-V VMBus devices +.SH SYNOPSIS +.ft B +.B lsvmbus [-vv] +.br +.SH DESCRIPTION +\fBlsvmbus\fP +displays devices attached to the Hyper-V VMBus. +.SH OPTIONS +.\" +.TP +.B -v +With -v more information is printed including the VMBus Rel_ID, class ID, +Rel_ID, and which channel is bound to which virtual processor. Use -vv +for additional detail including the Device_ID and the sysfs path. +.\" +.SH AUTHORS +.nf +Written by Dexuan Cui From 1766e790a0ae8d69b089fec08bdd39ecac99e6f9 Mon Sep 17 00:00:00 2001 From: "Kernel Builder (gloin)" Date: Wed, 1 Dec 2021 04:37:57 -0500 Subject: [PATCH 185/192] debian changelog --- debian.master/changelog | 13440 +------------------------------------- 1 file changed, 3 insertions(+), 13437 deletions(-) diff --git a/debian.master/changelog b/debian.master/changelog index 6b55bacfb67e31..ba57d719cea6cc 100644 --- a/debian.master/changelog +++ b/debian.master/changelog @@ -1,13440 +1,6 @@ -linux (5.15.0-13.13) jammy; urgency=medium +linux (5.15.6-051506.202112010437) jammy; urgency=low - * jammy/linux: 5.15.0-13.13 -proposed tracker (LP: #1952583) + Mainline build at commit: v5.15.6 - * Packaging resync (LP: #1786013) - - [Packaging] resync update-dkms-versions helper - - debian/dkms-versions -- update from kernel-versions (main/master) + -- Mainline Build Wed, 01 Dec 2021 04:37:57 -0500 - * Jammy update: v5.15.5 upstream stable release (LP: #1952579) - - arm64: zynqmp: Do not duplicate flash partition label property - - arm64: zynqmp: Fix serial compatible string - - clk: sunxi-ng: Unregister clocks/resets when unbinding - - ARM: dts: sunxi: Fix OPPs node name - - arm64: dts: allwinner: h5: Fix GPU thermal zone node name - - arm64: dts: allwinner: a100: Fix thermal zone node name - - staging: wfx: ensure IRQ is ready before enabling it - - ARM: dts: BCM5301X: Fix nodes names - - ARM: dts: BCM5301X: Fix MDIO mux binding - - ARM: dts: NSP: Fix mpcore, mmc node names - - arm64: dts: broadcom: bcm4908: Move reboot syscon out of bus - - scsi: pm80xx: Fix memory leak during rmmod - - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() - - ASoC: mediatek: mt8195: Add missing of_node_put() - - arm64: dts: rockchip: Disable CDN DP on Pinebook Pro - - arm64: dts: hisilicon: fix arm,sp805 compatible string - - RDMA/bnxt_re: Check if the vlan is valid before reporting - - bus: ti-sysc: Add quirk handling for reinit on context lost - - bus: ti-sysc: Use context lost quirk for otg - - usb: musb: tusb6010: check return value after calling - platform_get_resource() - - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read - - ARM: dts: ux500: Skomer regulator fixes - - staging: rtl8723bs: remove possible deadlock when disconnect (v2) - - staging: rtl8723bs: remove a second possible deadlock - - staging: rtl8723bs: remove a third possible deadlock - - ARM: BCM53016: Specify switch ports for Meraki MR32 - - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency - - arm64: dts: qcom: ipq6018: Fix qcom,controlled-remotely property - - arm64: dts: qcom: ipq8074: Fix qcom,controlled-remotely property - - arm64: dts: qcom: sdm845: Fix qcom,controlled-remotely property - - arm64: dts: freescale: fix arm,sp805 compatible string - - arm64: dts: ls1012a: Add serial alias for ls1012a-rdb - - RDMA/rxe: Separate HW and SW l/rkeys - - ASoC: SOF: Intel: hda-dai: fix potential locking issue - - scsi: core: Fix scsi_mode_sense() buffer length handling - - ALSA: usb-audio: disable implicit feedback sync for Behringer UFX1204 and - UFX1604 - - clk: imx: imx6ul: Move csi_sel mux to correct base register - - ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ - - ASoC: rt5651: Use IRQF_NO_AUTOEN when requesting the IRQ - - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect - - scsi: advansys: Fix kernel pointer leak - - scsi: smartpqi: Add controller handshake during kdump - - arm64: dts: imx8mm-kontron: Fix reset delays for ethernet PHY - - ALSA: intel-dsp-config: add quirk for APL/GLK/TGL devices based on ES8336 - codec - - ASoC: Intel: soc-acpi: add missing quirk for TGL SDCA single amp - - ASoC: Intel: sof_sdw: add missing quirk for Dell SKU 0A45 - - firmware_loader: fix pre-allocated buf built-in firmware use - - HID: multitouch: disable sticky fingers for UPERFECT Y - - ALSA: usb-audio: Add support for the Pioneer DJM 750MK2 Mixer/Soundcard - - ARM: dts: omap: fix gpmc,mux-add-data type - - usb: host: ohci-tmio: check return value after calling - platform_get_resource() - - ASoC: rt5682: fix a little pop while playback - - ARM: dts: ls1021a: move thermal-zones node out of soc/ - - ARM: dts: ls1021a-tsn: use generic "jedec,spi-nor" compatible for flash - - ALSA: ISA: not for M68K - - iommu/vt-d: Do not falsely log intel_iommu is unsupported kernel option - - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc - - MIPS: sni: Fix the build - - scsi: scsi_debug: Fix out-of-bound read in resp_readcap16() - - scsi: scsi_debug: Fix out-of-bound read in resp_report_tgtpgs() - - scsi: target: Fix ordered tag handling - - scsi: target: Fix alua_tg_pt_gps_count tracking - - iio: imu: st_lsm6dsx: Avoid potential array overflow in st_lsm6dsx_set_odr() - - RDMA/core: Use kvzalloc when allocating the struct ib_port - - scsi: lpfc: Fix use-after-free in lpfc_unreg_rpi() routine - - scsi: lpfc: Fix link down processing to address NULL pointer dereference - - scsi: lpfc: Allow fabric node recovery if recovery is in progress before - devloss - - memory: tegra20-emc: Add runtime dependency on devfreq governor module - - powerpc/5200: dts: fix memory node unit name - - ARM: dts: qcom: fix memory and mdio nodes naming for RB3011 - - arm64: dts: qcom: Fix node name of rpm-msg-ram device nodes - - ALSA: gus: fix null pointer dereference on pointer block - - ALSA: usb-audio: fix null pointer dereference on pointer cs_desc - - clk: at91: sama7g5: remove prescaler part of master clock - - iommu/dart: Initialize DART_STREAMS_ENABLE - - powerpc/dcr: Use cmplwi instead of 3-argument cmpli - - powerpc/8xx: Fix Oops with STRICT_KERNEL_RWX without DEBUG_RODATA_TEST - - sh: check return code of request_irq - - maple: fix wrong return value of maple_bus_init(). - - f2fs: fix up f2fs_lookup tracepoints - - f2fs: fix to use WHINT_MODE - - f2fs: fix wrong condition to trigger background checkpoint correctly - - sh: fix kconfig unmet dependency warning for FRAME_POINTER - - sh: math-emu: drop unused functions - - sh: define __BIG_ENDIAN for math-emu - - f2fs: compress: disallow disabling compress on non-empty compressed file - - f2fs: fix incorrect return value in f2fs_sanity_check_ckpt() - - clk: ingenic: Fix bugs with divided dividers - - clk/ast2600: Fix soc revision for AHB - - clk: qcom: gcc-msm8996: Drop (again) gcc_aggre1_pnoc_ahb_clk - - KVM: arm64: Fix host stage-2 finalization - - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set - - MIPS: boot/compressed/: add __bswapdi2() to target for ZSTD decompression - - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() - - sched/fair: Prevent dead task groups from regaining cfs_rq's - - perf/x86/vlbr: Add c->flags to vlbr event constraints - - blkcg: Remove extra blkcg_bio_issue_init - - tracing/histogram: Do not copy the fixed-size char array field over the - field size - - perf bpf: Avoid memory leak from perf_env__insert_btf() - - perf bench futex: Fix memory leak of perf_cpu_map__new() - - perf tests: Remove bash construct from record+zstd_comp_decomp.sh - - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame - - bpf: Fix inner map state pruning regression. - - samples/bpf: Fix summary per-sec stats in xdp_sample_user - - samples/bpf: Fix incorrect use of strlen in xdp_redirect_cpu - - selftests: net: switch to socat in the GSO GRE test - - net/ipa: ipa_resource: Fix wrong for loop range - - tcp: Fix uninitialized access in skb frags array for Rx 0cp. - - tracing: Add length protection to histogram string copies - - nl80211: fix radio statistics in survey dump - - mac80211: fix monitor_sdata RCU/locking assertions - - net: ipa: HOLB register sometimes must be written twice - - net: ipa: disable HOLB drop when updating timer - - selftests: gpio: fix gpio compiling error - - net: bnx2x: fix variable dereferenced before check - - bnxt_en: reject indirect blk offload when hw-tc-offload is off - - tipc: only accept encrypted MSG_CRYPTO msgs - - sock: fix /proc/net/sockstat underflow in sk_clone_lock() - - net/smc: Make sure the link_id is unique - - NFSD: Fix exposure in nfsd4_decode_bitmap() - - iavf: Fix return of set the new channel count - - iavf: check for null in iavf_fix_features - - iavf: free q_vectors before queues in iavf_disable_vf - - iavf: don't clear a lock we don't hold - - iavf: Fix failure to exit out from last all-multicast mode - - iavf: prevent accidental free of filter structure - - iavf: validate pointers - - iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset - - iavf: Fix for setting queues to 0 - - iavf: Restore VLAN filters after link down - - bpf: Fix toctou on read-only map's constant scalar tracking - - MIPS: generic/yamon-dt: fix uninitialized variable error - - mips: bcm63xx: add support for clk_get_parent() - - mips: lantiq: add support for clk_get_parent() - - gpio: rockchip: needs GENERIC_IRQ_CHIP to fix build errors - - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' - - platform/x86: think-lmi: Abort probe on analyze failure - - udp: Validate checksum in udp_read_sock() - - btrfs: make 1-bit bit-fields of scrub_page unsigned int - - RDMA/core: Set send and receive CQ before forwarding to the driver - - net/mlx5e: kTLS, Fix crash in RX resync flow - - net/mlx5e: Wait for concurrent flow deletion during neigh/fib events - - net/mlx5: E-Switch, Fix resetting of encap mode when entering switchdev - - net/mlx5e: nullify cq->dbg pointer in mlx5_debug_cq_remove() - - net/mlx5: Update error handler for UCTX and UMEM - - net/mlx5: E-Switch, rebuild lag only when needed - - net/mlx5e: CT, Fix multiple allocations and memleak of mod acts - - net/mlx5: Lag, update tracker when state change event received - - net/mlx5: E-Switch, return error if encap isn't supported - - scsi: ufs: core: Improve SCSI abort handling - - scsi: core: sysfs: Fix hang when device state is set via sysfs - - scsi: ufs: core: Fix task management completion timeout race - - scsi: ufs: core: Fix another task management completion race - - net: mvmdio: fix compilation warning - - net: sched: act_mirred: drop dst for the direction from egress to ingress - - net: dpaa2-eth: fix use-after-free in dpaa2_eth_remove - - net: virtio_net_hdr_to_skb: count transport header in UFO - - i40e: Fix correct max_pkt_size on VF RX queue - - i40e: Fix NULL ptr dereference on VSI filter sync - - i40e: Fix changing previously set num_queue_pairs for PFs - - i40e: Fix ping is lost after configuring ADq on VF - - RDMA/mlx4: Do not fail the registration on port stats - - i40e: Fix warning message and call stack during rmmod i40e driver - - i40e: Fix creation of first queue by omitting it if is not power of two - - i40e: Fix display error code in dmesg - - NFC: reorganize the functions in nci_request - - NFC: reorder the logic in nfc_{un,}register_device - - NFC: add NCI_UNREG flag to eliminate the race - - e100: fix device suspend/resume - - ptp: ocp: Fix a couple NULL vs IS_ERR() checks - - tools build: Fix removal of feature-sync-compare-and-swap feature detection - - riscv: fix building external modules - - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() - - powerpc: clean vdso32 and vdso64 directories - - powerpc/pseries: rename numa_dist_table to form2_distances - - powerpc/pseries: Fix numa FORM2 parsing fallback code - - pinctrl: qcom: sdm845: Enable dual edge errata - - pinctrl: qcom: sm8350: Correct UFS and SDC offsets - - perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server - - perf/x86/intel/uncore: Fix IIO event constraints for Skylake Server - - perf/x86/intel/uncore: Fix IIO event constraints for Snowridge - - s390/kexec: fix return code handling - - blk-cgroup: fix missing put device in error path from blkg_conf_pref() - - dmaengine: remove debugfs #ifdef - - tun: fix bonding active backup with arp monitoring - - Revert "mark pstore-blk as broken" - - pstore/blk: Use "%lu" to format unsigned long - - hexagon: export raw I/O routines for modules - - hexagon: clean up timer-regs.h - - tipc: check for null after calling kmemdup - - ipc: WARN if trying to remove ipc object which is absent - - shm: extend forced shm destroy to support objects from several IPC nses - - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag - - hugetlb, userfaultfd: fix reservation restore on userfaultfd error - - kmap_local: don't assume kmap PTEs are linear arrays in memory - - mm/damon/dbgfs: use '__GFP_NOWARN' for user-specified size buffer allocation - - mm/damon/dbgfs: fix missed use of damon_dbgfs_lock - - x86/boot: Pull up cmdline preparation and early param parsing - - x86/sgx: Fix free page accounting - - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails - - KVM: x86: Assume a 64-bit hypercall for guests with protected state - - KVM: x86: Fix uninitialized eoi_exit_bitmap usage in vcpu_load_eoi_exitmap() - - KVM: x86/mmu: include EFER.LMA in extended mmu role - - KVM: x86/xen: Fix get_attr of KVM_XEN_ATTR_TYPE_SHARED_INFO - - powerpc/signal32: Fix sigset_t copy - - powerpc/xive: Change IRQ domain to a tree domain - - powerpc/8xx: Fix pinned TLBs with CONFIG_STRICT_KERNEL_RWX - - Revert "drm/i915/tgl/dsi: Gate the ddi clocks after pll mapping" - - Revert "parisc: Reduce sigreturn trampoline to 3 instructions" - - ata: libata: improve ata_read_log_page() error message - - ata: libata: add missing ata_identify_page_supported() calls - - scsi: qla2xxx: Fix mailbox direction flags in qla2xxx_get_adapter_id() - - pinctrl: ralink: include 'ralink_regs.h' in 'pinctrl-mt7620.c' - - s390/setup: avoid reserving memory above identity mapping - - s390/boot: simplify and fix kernel memory layout setup - - s390/vdso: filter out -mstack-guard and -mstack-size - - s390/kexec: fix memory leak of ipl report buffer - - s390/dump: fix copying to user-space of swapped kdump oldmem - - block: Check ADMIN before NICE for IOPRIO_CLASS_RT - - fbdev: Prevent probing generic drivers if a FB is already registered - - KVM: SEV: Disallow COPY_ENC_CONTEXT_FROM if target has created vCPUs - - KVM: nVMX: don't use vcpu->arch.efer when checking host state on nested - state load - - drm/cma-helper: Release non-coherent memory with dma_free_noncoherent() - - printk: restore flushing of NMI buffers on remote CPUs after NMI backtraces - - udf: Fix crash after seekdir - - spi: fix use-after-free of the add_lock mutex - - net: stmmac: socfpga: add runtime suspend/resume callback for stratix10 - platform - - Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size - - btrfs: fix memory ordering between normal and ordered work functions - - fs: handle circular mappings correctly - - net: stmmac: Fix signed/unsigned wreckage - - parisc/sticon: fix reverse colors - - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type - - mac80211: fix radiotap header generation - - mac80211: drop check for DONT_REORDER in __ieee80211_select_queue - - drm/amd/display: Update swizzle mode enums - - drm/amd/display: Limit max DSC target bpp for specific monitors - - drm/i915/guc: Fix outstanding G2H accounting - - drm/i915/guc: Don't enable scheduling on a banned context, guc_id invalid, - not registered - - drm/i915/guc: Workaround reset G2H is received after schedule done G2H - - drm/i915/guc: Don't drop ce->guc_active.lock when unwinding context - - drm/i915/guc: Unwind context requests in reverse order - - drm/udl: fix control-message timeout - - drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap - - drm/nouveau: Add a dedicated mutex for the clients list - - drm/nouveau: use drm_dev_unplug() during device removal - - drm/nouveau: clean up all clients on device removal - - drm/i915/dp: Ensure sink rate values are always valid - - drm/i915/dp: Ensure max link params are always valid - - drm/i915: Fix type1 DVI DP dual mode adapter heuristic for modern platforms - - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga - and dvi connectors - - drm/amd/pm: avoid duplicate powergate/ungate setting - - signal: Implement force_fatal_sig - - exit/syscall_user_dispatch: Send ordinary signals on failure - - signal/powerpc: On swapcontext failure force SIGSEGV - - signal/s390: Use force_sigsegv in default_trap_handler - - signal/sparc32: Exit with a fatal signal when try_to_clear_window_buffer - fails - - signal/sparc32: In setup_rt_frame and setup_fram use force_fatal_sig - - signal/vm86_32: Properly send SIGSEGV when the vm86 state cannot be saved. - - signal/x86: In emulate_vsyscall force a signal instead of calling do_exit - - signal: Replace force_sigsegv(SIGSEGV) with force_fatal_sig(SIGSEGV) - - signal: Don't always set SA_IMMUTABLE for forced signals - - signal: Replace force_fatal_sig with force_exit_sig when in doubt - - hugetlbfs: flush TLBs correctly after huge_pmd_unshare - - RDMA/netlink: Add __maybe_unused to static inline in C file - - bpf: Forbid bpf_ktime_get_coarse_ns and bpf_timer_* in tracing progs - - selinux: fix NULL-pointer dereference when hashtab allocation fails - - ASoC: DAPM: Cover regression by kctl change notification fix - - ASoC: rsnd: fixup DMAEngine API - - usb: max-3421: Use driver data instead of maintaining a list of bound - devices - - ice: Fix VF true promiscuous mode - - ice: Delete always true check of PF pointer - - fs: export an inode_update_time helper - - btrfs: update device path inode time instead of bd_inode - - net: add and use skb_unclone_keeptruesize() helper - - x86/Kconfig: Fix an unused variable error in dell-smm-hwmon - - ALSA: hda: hdac_ext_stream: fix potential locking issues - - ALSA: hda: hdac_stream: fix potential locking issue in - snd_hdac_stream_assign() - - Linux 5.15.5 - - * Fix non-working e1000e device after resume (LP: #1951861) - - SAUCE: Revert "e1000e: Additional PHY power saving in S0ix" - - SAUCE: Revert "e1000e: Add polling mechanism to indicate CSME DPG exit" - - SAUCE: Revert "e1000e: Add handshake with the CSME to support S0ix" - - * [SRU][I/OEM-5.13/OEM-5.14] Add MAC passthrough support for more Lenovo docks - (LP: #1951767) - - net: usb: r8152: Add MAC passthrough support for more Lenovo Docks - - * [amdgpu] USB4 support for DP tunneling (LP: #1951868) - - drm/amd/display: Support for DMUB HPD interrupt handling - - drm/amd/display: Update link encoder object creation. - - drm/amd/display: USB4 DPIA enumeration and AUX Tunneling - - drm/amd/display: Support for DMUB HPD and HPD RX interrupt handling - - drm/amd/display: Set DPIA link endpoint type - - drm/amd/display: Stub out DPIA link training call - - drm/amd/display: Add stub to get DPIA tunneling device data - - drm/amd/display: Skip DPCD read for DPTX-to-DPIA hop - - drm/amd/display: Train DPIA links with fallback - - drm/amd/display: Implement DPIA training loop - - drm/amd/display: Implement DPIA link configuration - - drm/amd/display: Implement DPIA clock recovery phase - - drm/amd/display: Implement DPIA equalisation phase - - drm/amd/display: Implement end of training for hop in DPIA display path - - drm/amd/display: Support for SET_CONFIG processing with DMUB - - drm/amd/display: isolate link training setting override to its own function - - drm/amd/display: Read USB4 DP tunneling data from DPCD. - - drm/amd/display: Add dpia debug options - - drm/amd/display: Support for SET_CONFIG processing with DMUB - - drm/amd/display: Add DPCD writes at key points - - drm/amd/display: Fix DIG_HPD_SELECT for USB4 display endpoints. - - drm/amd/display: Add helper for blanking all dp displays - - drm/amd/display: Fix link training fallback logic - - drm/amd/display: Add debug flags for USB4 DP link training. - - drm/amd/display: Fix dynamic link encoder access. - - drm/amd/display: Fix concurrent dynamic encoder assignment - - drm/amd/display: Fix dynamic encoder reassignment - - drm/amd/display: Fix for access for ddc pin and aux engine. - - drm/amd/display: Deadlock/HPD Status/Crash Bug Fix - - drm/amd/display: Fix USB4 Aux via DMUB terminate unexpectedly - - * Miscellaneous Ubuntu changes - - [Packaging] Rewrite debian/scripts/module-check in Python - - [Config] update config and annotations after applying v5.15.5 - - -- Andrea Righi Mon, 29 Nov 2021 09:25:37 +0100 - -linux (5.15.0-12.12) jammy; urgency=medium - - * jammy/linux: 5.15.0-12.12 -proposed tracker (LP: #1951810) - - * Jammy update: v5.15.4 upstream stable release (LP: #1951820) - - string: uninline memcpy_and_pad - - Revert "drm: fb_helper: improve CONFIG_FB dependency" - - Revert "drm: fb_helper: fix CONFIG_FB dependency" - - KVM: Fix steal time asm constraints - - btrfs: introduce btrfs_is_data_reloc_root - - btrfs: zoned: add a dedicated data relocation block group - - btrfs: zoned: only allow one process to add pages to a relocation inode - - btrfs: zoned: use regular writes for relocation - - btrfs: check for relocation inodes on zoned btrfs in should_nocow - - btrfs: zoned: allow preallocation for relocation inodes - - fortify: Explicitly disable Clang support - - block: Add a helper to validate the block size - - loop: Use blk_validate_block_size() to validate block size - - Bluetooth: btusb: Add support for TP-Link UB500 Adapter - - parisc/entry: fix trace test in syscall exit path - - PCI/MSI: Deal with devices lying about their MSI mask capability - - PCI: Add MSI masking quirk for Nvidia ION AHCI - - perf/core: Avoid put_page() when GUP fails - - thermal: Fix NULL pointer dereferences in of_thermal_ functions - - Revert "ACPI: scan: Release PM resources blocked by unused objects" - - Linux 5.15.4 - - * Jammy update: v5.15.3 upstream stable release (LP: #1951822) - - xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good - delay - - usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform - - Input: iforce - fix control-message timeout - - Input: elantench - fix misreporting trackpoint coordinates - - Input: i8042 - Add quirk for Fujitsu Lifebook T725 - - libata: fix read log timeout value - - ocfs2: fix data corruption on truncate - - scsi: scsi_ioctl: Validate command size - - scsi: core: Avoid leaving shost->last_reset with stale value if EH does not - run - - scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() - - scsi: lpfc: Don't release final kref on Fport node while ABTS outstanding - - scsi: lpfc: Fix FCP I/O flush functionality for TMF routines - - scsi: qla2xxx: Fix crash in NVMe abort path - - scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file - - scsi: qla2xxx: Fix use after free in eh_abort path - - ce/gf100: fix incorrect CE0 address calculation on some GPUs - - char: xillybus: fix msg_ep UAF in xillyusb_probe() - - mmc: mtk-sd: Add wait dma stop done flow - - mmc: dw_mmc: Dont wait for DRTO on Write RSP error - - exfat: fix incorrect loading of i_blocks for large files - - io-wq: remove worker to owner tw dependency - - parisc: Fix set_fixmap() on PA1.x CPUs - - parisc: Fix ptrace check on syscall return - - tpm: Check for integer overflow in tpm2_map_response_body() - - firmware/psci: fix application of sizeof to pointer - - crypto: s5p-sss - Add error handling in s5p_aes_probe() - - media: rkvdec: Do not override sizeimage for output format - - media: ite-cir: IR receiver stop working after receive overflow - - media: rkvdec: Support dynamic resolution changes - - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers - - media: v4l2-ioctl: Fix check_ext_ctrls - - ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 - - ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED - - ALSA: hda/realtek: Add quirk for Clevo PC70HS - - ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ - - ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N - - ALSA: hda/realtek: Add quirk for ASUS UX550VE - - ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED - - ALSA: ua101: fix division by zero at probe - - ALSA: 6fire: fix control and bulk message timeouts - - ALSA: line6: fix control and interrupt message timeouts - - ALSA: mixer: oss: Fix racy access to slots - - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume - - ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk - - ALSA: usb-audio: Add registration quirk for JBL Quantum 400 - - ALSA: hda: Free card instance properly at probe errors - - ALSA: synth: missing check for possible NULL after the call to kstrdup - - ALSA: pci: rme: Fix unaligned buffer addresses - - ALSA: PCM: Fix NULL dereference at mmap checks - - ALSA: timer: Fix use-after-free problem - - ALSA: timer: Unconditionally unlink slave instances, too - - Revert "ext4: enforce buffer head state assertion in ext4_da_map_blocks" - - ext4: fix lazy initialization next schedule time computation in more - granular unit - - ext4: ensure enough credits in ext4_ext_shift_path_extents - - ext4: refresh the ext4_ext_path struct after dropping i_data_sem. - - fuse: fix page stealing - - x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c - - x86/cpu: Fix migration safety with X86_BUG_NULL_SEL - - x86/irq: Ensure PI wakeup handler is unregistered before module unload - - x86/iopl: Fake iopl(3) CLI/STI usage - - btrfs: clear MISSING device status bit in btrfs_close_one_device - - btrfs: fix lost error handling when replaying directory deletes - - btrfs: call btrfs_check_rw_degradable only if there is a missing device - - KVM: x86/mmu: Drop a redundant, broken remote TLB flush - - KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup - - KVM: PPC: Tick accounting should defer vtime accounting 'til after IRQ - handling - - ia64: kprobes: Fix to pass correct trampoline address to the handler - - selinux: fix race condition when computing ocontext SIDs - - ipmi:watchdog: Set panic count to proper value on a panic - - md/raid1: only allocate write behind bio for WriteMostly device - - hwmon: (pmbus/lm25066) Add offset coefficients - - regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is - disabled - - regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default- - dvs-idx property - - EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell - - mwifiex: fix division by zero in fw download path - - ath6kl: fix division by zero in send path - - ath6kl: fix control-message timeout - - ath10k: fix control-message timeout - - ath10k: fix division by zero in send path - - PCI: Mark Atheros QCA6174 to avoid bus reset - - rtl8187: fix control-message timeouts - - evm: mark evm_fixmode as __ro_after_init - - ifb: Depend on netfilter alternatively to tc - - platform/surface: aggregator_registry: Add support for Surface Laptop Studio - - mt76: mt7615: fix skb use-after-free on mac reset - - HID: surface-hid: Use correct event registry for managing HID events - - HID: surface-hid: Allow driver matching for target ID 1 devices - - wcn36xx: Fix HT40 capability for 2Ghz band - - wcn36xx: Fix tx_status mechanism - - wcn36xx: Fix (QoS) null data frame bitrate/modulation - - PM: sleep: Do not let "syscore" devices runtime-suspend during system - transitions - - mwifiex: Read a PCI register after writing the TX ring write pointer - - mwifiex: Try waking the firmware until we get an interrupt - - libata: fix checking of DMA state - - dma-buf: fix and rework dma_buf_poll v7 - - wcn36xx: handle connection loss indication - - rsi: fix occasional initialisation failure with BT coex - - rsi: fix key enabled check causing unwanted encryption for vap_id > 0 - - rsi: fix rate mask set leading to P2P failure - - rsi: Fix module dev_oper_mode parameter description - - perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server - - perf/x86/intel/uncore: Fix invalid unit check - - perf/x86/intel/uncore: Fix Intel ICX IIO event constraints - - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP - - ASoC: tegra: Set default card name for Trimslice - - ASoC: tegra: Restore AC97 support - - signal: Remove the bogus sigkill_pending in ptrace_stop - - memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode - - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT - - soc: samsung: exynos-pmu: Fix compilation when nothing selects - CONFIG_MFD_CORE - - soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id - - soc: fsl: dpio: use the combined functions to protect critical zone - - mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines - - mctp: handle the struct sockaddr_mctp padding fields - - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold - - power: supply: max17042_battery: use VFSOC for capacity when no rsns - - iio: core: fix double free in iio_device_unregister_sysfs() - - iio: core: check return value when calling dev_set_name() - - KVM: arm64: Extract ESR_ELx.EC only - - KVM: x86: Fix recording of guest steal time / preempted status - - KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows - - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use - - KVM: nVMX: Handle dynamic MSR intercept toggling - - can: peak_usb: always ask for BERR reporting for PCAN-USB devices - - can: mcp251xfd: mcp251xfd_irq(): add missing - can_rx_offload_threaded_irq_finish() in case of bus off - - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport - - can: j1939: j1939_can_recv(): ignore messages with invalid source address - - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM - - iio: adc: tsc2046: fix scan interval warning - - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found - - io_uring: honour zeroes as io-wq worker limits - - ring-buffer: Protect ring_buffer_reset() from reentrancy - - serial: core: Fix initializing and restoring termios speed - - ifb: fix building without CONFIG_NET_CLS_ACT - - xen/balloon: add late_initcall_sync() for initial ballooning done - - ovl: fix use after free in struct ovl_aio_req - - ovl: fix filattr copy-up failure - - PCI: pci-bridge-emul: Fix emulation of W1C bits - - PCI: cadence: Add cdns_plat_pcie_probe() missing return - - cxl/pci: Fix NULL vs ERR_PTR confusion - - PCI: aardvark: Do not clear status bits of masked interrupts - - PCI: aardvark: Fix checking for link up via LTSSM state - - PCI: aardvark: Do not unmask unused interrupts - - PCI: aardvark: Fix reporting Data Link Layer Link Active - - PCI: aardvark: Fix configuring Reference clock - - PCI: aardvark: Fix return value of MSI domain .alloc() method - - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG - - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated - bridge - - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge - - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge - - PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge - - quota: check block number when reading the block in quota file - - quota: correct error number in free_dqentry() - - cifs: To match file servers, make sure the server hostname matches - - cifs: set a minimum of 120s for next dns resolution - - mfd: simple-mfd-i2c: Select MFD_CORE to fix build error - - pinctrl: core: fix possible memory leak in pinctrl_enable() - - coresight: cti: Correct the parameter for pm_runtime_put - - coresight: trbe: Fix incorrect access of the sink specific data - - coresight: trbe: Defer the probe on offline CPUs - - iio: buffer: check return value of kstrdup_const() - - iio: buffer: Fix memory leak in iio_buffers_alloc_sysfs_and_mask() - - iio: buffer: Fix memory leak in __iio_buffer_alloc_sysfs_and_mask() - - iio: buffer: Fix memory leak in iio_buffer_register_legacy_sysfs_groups() - - drivers: iio: dac: ad5766: Fix dt property name - - iio: dac: ad5446: Fix ad5622_write() return value - - iio: ad5770r: make devicetree property reading consistent - - Documentation:devicetree:bindings:iio:dac: Fix val - - USB: serial: keyspan: fix memleak on probe errors - - serial: 8250: fix racy uartclk update - - ksmbd: set unique value to volume serial field in FS_VOLUME_INFORMATION - - io-wq: serialize hash clear with wakeup - - serial: 8250: Fix reporting real baudrate value in c_ospeed field - - Revert "serial: 8250: Fix reporting real baudrate value in c_ospeed field" - - most: fix control-message timeouts - - USB: iowarrior: fix control-message timeouts - - USB: chipidea: fix interrupt deadlock - - power: supply: max17042_battery: Clear status bits in interrupt handler - - component: do not leave master devres group open after bind - - dma-buf: WARN on dmabuf release with pending attachments - - drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) - - drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 - - drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 - - Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() - - Bluetooth: fix use-after-free error in lock_sock_nested() - - Bluetooth: call sock_hold earlier in sco_conn_del - - drm/panel-orientation-quirks: add Valve Steam Deck - - rcutorture: Avoid problematic critical section nesting on PREEMPT_RT - - platform/x86: wmi: do not fail if disabling fails - - drm/amdgpu: move iommu_resume before ip init/resume - - MIPS: lantiq: dma: add small delay after reset - - MIPS: lantiq: dma: reset correct number of channel - - locking/lockdep: Avoid RCU-induced noinstr fail - - net: sched: update default qdisc visibility after Tx queue cnt changes - - rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop - - smackfs: Fix use-after-free in netlbl_catmap_walk() - - ath11k: Align bss_chan_info structure with firmware - - crypto: aesni - check walk.nbytes instead of err - - x86/mm/64: Improve stack overflow warnings - - x86: Increase exception stack sizes - - mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type - - mwifiex: Properly initialize private structure on interface type changes - - spi: Check we have a spi_device_id for each DT compatible - - fscrypt: allow 256-bit master keys with AES-256-XTS - - drm/amdgpu: Fix MMIO access page fault - - drm/amd/display: Fix null pointer dereference for encoders - - selftests: net: fib_nexthops: Wait before checking reported idle time - - ath11k: Avoid reg rules update during firmware recovery - - ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED - - ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets - - ath10k: high latency fixes for beacon buffer - - octeontx2-pf: Enable promisc/allmulti match MCAM entries. - - media: mt9p031: Fix corrupted frame after restarting stream - - media: netup_unidvb: handle interrupt properly according to the firmware - - media: atomisp: Fix error handling in probe - - media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() - - media: uvcvideo: Set capability in s_param - - media: uvcvideo: Return -EIO for control errors - - media: uvcvideo: Set unique vdev name based in type - - media: vidtv: Fix memory leak in remove - - media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() - - media: s5p-mfc: Add checking to s5p_mfc_probe(). - - media: videobuf2: rework vb2_mem_ops API - - media: imx: set a media_device bus_info string - - media: rcar-vin: Use user provided buffers when starting - - media: mceusb: return without resubmitting URB in case of -EPROTO error. - - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK - - rtw88: fix RX clock gate setting while fifo dump - - brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet - - media: rcar-csi2: Add checking to rcsi2_start_receiver() - - ipmi: Disable some operations during a panic - - fs/proc/uptime.c: Fix idle time reporting in /proc/uptime - - kselftests/sched: cleanup the child processes - - ACPICA: Avoid evaluating methods too early during system resume - - cpufreq: Make policy min/max hard requirements - - ice: Move devlink port to PF/VF struct - - media: imx-jpeg: Fix possible null pointer dereference - - media: ipu3-imgu: imgu_fmt: Handle properly try - - media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info - - media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() - - net-sysfs: try not to restart the syscall if it will fail eventually - - drm/amdkfd: rm BO resv on validation to avoid deadlock - - tracefs: Have tracefs directories not set OTH permission bits by default - - tracing: Disable "other" permission bits in the tracefs files - - ath: dfs_pattern_detector: Fix possible null-pointer dereference in - channel_detector_create() - - KVM: arm64: Propagate errors from __pkvm_prot_finalize hypercall - - mmc: moxart: Fix reference count leaks in moxart_probe - - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value - - ACPI: battery: Accept charges over the design capacity as full - - ACPI: scan: Release PM resources blocked by unused objects - - drm/amd/display: fix null pointer deref when plugging in display - - drm/amdkfd: fix resume error when iommu disabled in Picasso - - net: phy: micrel: make *-skew-ps check more lenient - - leaking_addresses: Always print a trailing newline - - thermal/core: Fix null pointer dereference in thermal_release() - - drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() - - thermal/drivers/tsens: Add timeout to get_temp_tsens_valid - - block: bump max plugged deferred size from 16 to 32 - - floppy: fix calling platform_device_unregister() on invalid drives - - md: update superblock after changing rdev flags in state_store - - memstick: r592: Fix a UAF bug when removing the driver - - locking/rwsem: Disable preemption for spinning region - - lib/xz: Avoid overlapping memcpy() with invalid input with in-place - decompression - - lib/xz: Validate the value before assigning it to an enum variable - - workqueue: make sysfs of unbound kworker cpumask more clever - - tracing/cfi: Fix cmp_entries_* functions signature mismatch - - mt76: mt7915: fix an off-by-one bound check - - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() - - iwlwifi: change all JnP to NO-160 configuration - - block: remove inaccurate requeue check - - media: allegro: ignore interrupt if mailbox is not initialized - - drm/amdgpu/pm: properly handle sclk for profiling modes on vangogh - - nvmet: fix use-after-free when a port is removed - - nvmet-rdma: fix use-after-free when a port is removed - - nvmet-tcp: fix use-after-free when a port is removed - - nvme: drop scan_lock and always kick requeue list when removing namespaces - - samples/bpf: Fix application of sizeof to pointer - - arm64: vdso32: suppress error message for 'make mrproper' - - PM: hibernate: Get block device exclusively in swsusp_check() - - selftests: kvm: fix mismatched fclose() after popen() - - selftests/bpf: Fix perf_buffer test on system with offline cpus - - iwlwifi: mvm: disable RX-diversity in powersave - - smackfs: use __GFP_NOFAIL for smk_cipso_doi() - - ARM: clang: Do not rely on lr register for stacktrace - - gre/sit: Don't generate link-local addr if addr_gen_mode is - IN6_ADDR_GEN_MODE_NONE - - can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to - unsigned int - - gfs2: Cancel remote delete work asynchronously - - gfs2: Fix glock_hash_walk bugs - - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 - - tools/latency-collector: Use correct size when writing queue_full_warning - - vrf: run conntrack only in context of lower/physdev for locally generated - packets - - net: annotate data-race in neigh_output() - - ACPI: AC: Quirk GK45 to skip reading _PSR - - ACPI: resources: Add one more Medion model in IRQ override quirk - - btrfs: reflink: initialize return value to 0 in btrfs_extent_same() - - btrfs: do not take the uuid_mutex in btrfs_rm_device - - spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in - bcm_qspi_probe() - - wcn36xx: Correct band/freq reporting on RX - - wcn36xx: Fix packet drop on resume - - Revert "wcn36xx: Enable firmware link monitoring" - - ftrace: do CPU checking after preemption disabled - - inet: remove races in inet{6}_getname() - - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted - - drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled - - perf/x86/intel: Fix ICL/SPR INST_RETIRED.PREC_DIST encodings - - parisc: fix warning in flush_tlb_all - - task_stack: Fix end_of_stack() for architectures with upwards-growing stack - - erofs: don't trigger WARN() when decompression fails - - parisc/unwind: fix unwinder when CONFIG_64BIT is enabled - - parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling - - netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream - state - - selftests/bpf: Fix strobemeta selftest regression - - fbdev/efifb: Release PCI device's runtime PM ref during FB destroy - - drm/bridge: anx7625: Propagate errors from sp_tx_rst_aux() - - perf/x86/intel/uncore: Fix Intel SPR CHA event constraints - - perf/x86/intel/uncore: Fix Intel SPR IIO event constraints - - perf/x86/intel/uncore: Fix Intel SPR M2PCIE event constraints - - perf/x86/intel/uncore: Fix Intel SPR M3UPI event constraints - - drm/bridge: it66121: Initialize {device,vendor}_ids - - drm/bridge: it66121: Wait for next bridge to be probed - - Bluetooth: fix init and cleanup of sco_conn.timeout_work - - libbpf: Don't crash on object files with no symbol tables - - Bluetooth: hci_uart: fix GPF in h5_recv - - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() - - MIPS: lantiq: dma: fix burst length for DEU - - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function - - objtool: Handle __sanitize_cov*() tail calls - - net/mlx5: Publish and unpublish all devlink parameters at once - - drm/v3d: fix wait for TMU write combiner flush - - crypto: sm4 - Do not change section of ck and sbox - - virtio-gpu: fix possible memory allocation failure - - lockdep: Let lock_is_held_type() detect recursive read as read - - net: net_namespace: Fix undefined member in key_remove_domain() - - net: phylink: don't call netif_carrier_off() with NULL netdev - - drm: bridge: it66121: Fix return value it66121_probe - - spi: Fixed division by zero warning - - cgroup: Make rebind_subsystems() disable v2 controllers all at once - - wcn36xx: Fix Antenna Diversity Switching - - wilc1000: fix possible memory leak in cfg_scan_result() - - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync - - drm/amdgpu: Fix crash on device remove/driver unload - - drm/amd/display: Pass display_pipe_params_st as const in DML - - drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage - - crypto: caam - disable pkc for non-E SoCs - - crypto: qat - power up 4xxx device - - Bluetooth: hci_h5: Fix (runtime)suspend issues on RTL8723BS HCIs - - bnxt_en: Check devlink allocation and registration status - - qed: Don't ignore devlink allocation failures - - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() - - mptcp: do not shrink snd_nxt when recovering - - fortify: Fix dropped strcpy() compile-time write overflow check - - mac80211: twt: don't use potentially unaligned pointer - - cfg80211: always free wiphy specific regdomain - - net/mlx5: Accept devlink user input after driver initialization complete - - net: dsa: rtl8366rb: Fix off-by-one bug - - net: dsa: rtl8366: Fix a bug in deleting VLANs - - bpf/tests: Fix error in tail call limit tests - - ath11k: fix some sleeping in atomic bugs - - ath11k: Avoid race during regd updates - - ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status - - ath11k: Fix memory leak in ath11k_qmi_driver_event_work - - gve: DQO: avoid unused variable warnings - - ath10k: Fix missing frame timestamp for beacon/probe-resp - - ath10k: sdio: Add missing BH locking around napi_schdule() - - drm/ttm: stop calling tt_swapin in vm_access - - arm64: mm: update max_pfn after memory hotplug - - drm/amdgpu: fix warning for overflow check - - libbpf: Fix skel_internal.h to set errno on loader retval < 0 - - media: em28xx: add missing em28xx_close_extension - - media: meson-ge2d: Fix rotation parameter changes detection in - 'ge2d_s_ctrl()' - - media: cxd2880-spi: Fix a null pointer dereference on error handling path - - media: ttusb-dec: avoid release of non-acquired mutex - - media: dvb-usb: fix ununit-value in az6027_rc_query - - media: imx258: Fix getting clock frequency - - media: v4l2-ioctl: S_CTRL output the right value - - media: mtk-vcodec: venc: fix return value when start_streaming fails - - media: TDA1997x: handle short reads of hdmi info frame. - - media: mtk-vpu: Fix a resource leak in the error handling path of - 'mtk_vpu_probe()' - - media: imx-jpeg: Fix the error handling path of 'mxc_jpeg_probe()' - - media: i2c: ths8200 needs V4L2_ASYNC - - media: sun6i-csi: Allow the video device to be open multiple times - - media: radio-wl1273: Avoid card name truncation - - media: si470x: Avoid card name truncation - - media: tm6000: Avoid card name truncation - - media: cx23885: Fix snd_card_free call on null card pointer - - media: atmel: fix the ispck initialization - - scs: Release kasan vmalloc poison in scs_free process - - kprobes: Do not use local variable when creating debugfs file - - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency - - drm: fb_helper: fix CONFIG_FB dependency - - cpuidle: Fix kobject memory leaks in error paths - - media: em28xx: Don't use ops->suspend if it is NULL - - ath10k: Don't always treat modem stop events as crashes - - ath9k: Fix potential interrupt storm on queue reset - - PM: EM: Fix inefficient states detection - - x86/insn: Use get_unaligned() instead of memcpy() - - EDAC/amd64: Handle three rank interleaving mode - - rcu: Always inline rcu_dynticks_task*_{enter,exit}() - - rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr - - netfilter: nft_dynset: relax superfluous check on set updates - - media: venus: fix vpp frequency calculation for decoder - - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() - - crypto: ccree - avoid out-of-range warnings from clang - - crypto: qat - detect PFVF collision after ACK - - crypto: qat - disregard spurious PFVF interrupts - - hwrng: mtk - Force runtime pm ops for sleep ops - - ima: fix deadlock when traversing "ima_default_rules". - - b43legacy: fix a lower bounds test - - b43: fix a lower bounds test - - gve: Recover from queue stall due to missed IRQ - - gve: Track RX buffer allocation failures - - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured - - mmc: sdhci-omap: Fix context restore - - memstick: avoid out-of-range warning - - memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() - - net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE - - hwmon: Fix possible memleak in __hwmon_device_register() - - hwmon: (pmbus/lm25066) Let compiler determine outer dimension of - lm25066_coeff - - ath10k: fix max antenna gain unit - - kernel/sched: Fix sched_fork() access an invalid sched_task_group - - net: fealnx: fix build for UML - - net: intel: igc_ptp: fix build for UML - - net: tulip: winbond-840: fix build for UML - - tcp: switch orphan_count to bare per-cpu counters - - crypto: octeontx2 - set assoclen in aead_do_fallback() - - thermal/core: fix a UAF bug in __thermal_cooling_device_register() - - drm/msm/dsi: do not enable irq handler before powering up the host - - drm/msm: Fix potential Oops in a6xx_gmu_rpmh_init() - - drm/msm: potential error pointer dereference in init() - - drm/msm: unlock on error in get_sched_entity() - - drm/msm: fix potential NULL dereference in cleanup - - drm/msm: uninitialized variable in msm_gem_import() - - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() - - thermal/drivers/qcom/lmh: make QCOM_LMH depends on QCOM_SCM - - mailbox: Remove WARN_ON for async_cb.cb in cmdq_exec_done - - media: ivtv: fix build for UML - - media: ir_toy: assignment to be16 should be of correct type - - mmc: mxs-mmc: disable regulator on error and in the remove function - - io-wq: Remove duplicate code in io_workqueue_create() - - block: ataflop: fix breakage introduced at blk-mq refactoring - - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning - - mailbox: mtk-cmdq: Validate alias_id on probe - - mailbox: mtk-cmdq: Fix local clock ID usage - - ACPI: PM: Turn off unused wakeup power resources - - ACPI: PM: Fix sharing of wakeup power resources - - drm/amdkfd: Fix an inappropriate error handling in allloc memory of gpu - - mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event - - mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb - - mt76: mt7921: fix endianness warning in mt7921_update_txs - - mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi - - mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() - - mt76: connac: fix mt76_connac_gtk_rekey_tlv usage - - mt76: fix build error implicit enumeration conversion - - mt76: mt7921: fix survey-dump reporting - - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c - - mt76: mt7921: Fix out of order process by invalid event pkt - - mt76: mt7915: fix potential overflow of eeprom page index - - mt76: mt7915: fix bit fields for HT rate idx - - mt76: mt7921: fix dma hang in rmmod - - mt76: connac: fix GTK rekey offload failure on WPA mixed mode - - mt76: overwrite default reg_ops if necessary - - mt76: mt7921: report HE MU radiotap - - mt76: mt7921: fix firmware usage of RA info using legacy rates - - mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate - - mt76: mt7921: always wake device if necessary in debugfs - - mt76: mt7915: fix hwmon temp sensor mem use-after-free - - mt76: mt7615: fix hwmon temp sensor mem use-after-free - - mt76: mt7915: fix possible infinite loop release semaphore - - mt76: mt7921: fix retrying release semaphore without end - - mt76: mt7615: fix monitor mode tear down crash - - mt76: connac: fix possible NULL pointer dereference in - mt76_connac_get_phy_mode_v2 - - mt76: mt7915: fix sta_rec_wtbl tag len - - mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() - - rsi: stop thread firstly in rsi_91x_init() error handling - - mwifiex: Send DELBA requests according to spec - - iwlwifi: mvm: reset PM state on unsuccessful resume - - iwlwifi: pnvm: don't kmemdup() more than we have - - iwlwifi: pnvm: read EFI data only if long enough - - net: enetc: unmap DMA in enetc_send_cmd() - - phy: micrel: ksz8041nl: do not use power down mode - - nbd: Fix use-after-free in pid_show - - nvme-rdma: fix error code in nvme_rdma_setup_ctrl - - PM: hibernate: fix sparse warnings - - clocksource/drivers/timer-ti-dm: Select TIMER_OF - - x86/sev: Fix stack type check in vc_switch_off_ist() - - drm/msm: Fix potential NULL dereference in DPU SSPP - - drm/msm/dsi: fix wrong type in msm_dsi_host - - crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks - - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi - - KVM: selftests: Fix nested SVM tests when built with clang - - libbpf: Fix memory leak in btf__dedup() - - bpftool: Avoid leaking the JSON writer prepared for program metadata - - libbpf: Fix overflow in BTF sanity checks - - libbpf: Fix BTF header parsing checks - - mt76: mt7615: mt7622: fix ibss and meshpoint - - s390/gmap: validate VMA in __gmap_zap() - - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() - - s390/mm: validate VMA in PGSTE manipulation functions - - s390/mm: fix VMA and page table handling code in storage key handling - functions - - s390/uv: fully validate the VMA before calling follow_page() - - KVM: s390: pv: avoid double free of sida page - - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm - - irq: mips: avoid nested irq_enter() - - net: dsa: avoid refcount warnings when ->port_{fdb,mdb}_del returns error - - ARM: 9142/1: kasan: work around LPAE build warning - - ath10k: fix module load regression with iram-recovery feature - - block: ataflop: more blk-mq refactoring fixes - - blk-cgroup: synchronize blkg creation against policy deactivation - - libbpf: Fix off-by-one bug in bpf_core_apply_relo() - - tpm: fix Atmel TPM crash caused by too frequent queries - - tpm_tis_spi: Add missing SPI ID - - libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() - - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() - - tracing: Fix missing trace_boot_init_histograms kstrdup NULL checks - - cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization - - spi: spi-rpc-if: Check return value of rpcif_sw_init() - - samples/kretprobes: Fix return value if register_kretprobe() failed - - KVM: s390: Fix handle_sske page fault handling - - libertas_tf: Fix possible memory leak in probe and disconnect - - libertas: Fix possible memory leak in probe and disconnect - - wcn36xx: add proper DMA memory barriers in rx path - - wcn36xx: Fix discarded frames due to wrong sequence number - - bpf: Avoid races in __bpf_prog_run() for 32bit arches - - bpf: Fixes possible race in update_prog_stats() for 32bit arches - - wcn36xx: Channel list update before hardware scan - - drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw() - - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits - - selftests/bpf: Fix fd cleanup in sk_lookup test - - selftests/bpf: Fix memory leak in test_ima - - sctp: allow IP fragmentation when PLPMTUD enters Error state - - sctp: reset probe_timer in sctp_transport_pl_update - - sctp: subtract sctphdr len in sctp_transport_pl_hlen - - sctp: return true only for pathmtu update in sctp_transport_pl_toobig - - net: amd-xgbe: Toggle PLL settings during rate change - - ipmi: kcs_bmc: Fix a memory leak in the error handling path of - 'kcs_bmc_serio_add_device()' - - nfp: fix NULL pointer access when scheduling dim work - - nfp: fix potential deadlock when canceling dim work - - net: phylink: avoid mvneta warning when setting pause parameters - - net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled - - selftests: net: bridge: update IGMP/MLD membership interval value - - crypto: pcrypt - Delay write to padata->info - - selftests/bpf: Fix fclose/pclose mismatch in test_progs - - udp6: allow SO_MARK ctrl msg to affect routing - - ibmvnic: don't stop queue in xmit - - ibmvnic: Process crqs after enabling interrupts - - ibmvnic: delay complete() - - selftests: mptcp: fix proto type in link_failure tests - - skmsg: Lose offset info in sk_psock_skb_ingress - - cgroup: Fix rootcg cpu.stat guest double counting - - bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off. - - bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit. - - of: unittest: fix EXPECT text for gpio hog errors - - cpufreq: Fix parameter in parse_perf_domain() - - staging: r8188eu: fix memory leak in rtw_set_key - - arm64: dts: meson: sm1: add Ethernet PHY reset line for ODROID-C4/HC4 - - iio: st_sensors: disable regulators after device unregistration - - RDMA/rxe: Fix wrong port_cap_flags - - ARM: dts: BCM5301X: Fix memory nodes names - - arm64: dts: broadcom: bcm4908: Fix UART clock name - - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths - - scsi: pm80xx: Fix lockup in outbound queue management - - scsi: qla2xxx: edif: Use link event to wake up app - - scsi: lpfc: Fix NVMe I/O failover to non-optimized path - - ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() - - arm64: dts: rockchip: Fix GPU register width for RK3328 - - ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY - - RDMA/bnxt_re: Fix query SRQ failure - - arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes - - arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe - - arm64: dts: ti: j7200-main: Fix "vendor-id"/"device-id" properties of pcie - node - - arm64: dts: ti: j7200-main: Fix "bus-range" upto 256 bus number for PCIe - - arm64: dts: meson-g12a: Fix the pwm regulator supply properties - - arm64: dts: meson-g12b: Fix the pwm regulator supply properties - - arm64: dts: meson-sm1: Fix the pwm regulator supply properties - - bus: ti-sysc: Fix timekeeping_suspended warning on resume - - ARM: dts: at91: tse850: the emac<->phy interface is rmii - - arm64: dts: qcom: sc7180: Base dynamic CPU power coefficients in reality - - soc: qcom: llcc: Disable MMUHWT retention - - arm64: dts: qcom: sc7280: fix display port phy reg property - - scsi: dc395: Fix error case unwinding - - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT - - JFS: fix memleak in jfs_mount - - pinctrl: renesas: rzg2l: Fix missing port register 21h - - ASoC: wcd9335: Use correct version to initialize Class H - - arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock - - arm64: dts: renesas: beacon: Fix Ethernet PHY mode - - iommu/mediatek: Fix out-of-range warning with clang - - arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 - - iommu/dma: Fix sync_sg with swiotlb - - iommu/dma: Fix arch_sync_dma for map - - ALSA: hda: Reduce udelay() at SKL+ position reporting - - ALSA: hda: Use position buffer for SKL+ again - - ALSA: usb-audio: Fix possible race at sync of urb completions - - soundwire: debugfs: use controller id and link_id for debugfs - - power: reset: at91-reset: check properly the return value of devm_of_iomap - - scsi: ufs: core: Fix ufshcd_probe_hba() prototype to match the definition - - scsi: ufs: core: Stop clearing UNIT ATTENTIONS - - scsi: megaraid_sas: Fix concurrent access to ISR between IRQ polling and - real interrupt - - scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() - - driver core: Fix possible memory leak in device_link_add() - - arm: dts: omap3-gta04a4: accelerometer irq fix - - ASoC: SOF: topology: do not power down primary core during topology removal - - iio: st_pressure_spi: Add missing entries SPI to device ID table - - soc/tegra: Fix an error handling path in tegra_powergate_power_up() - - memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe - - clk: at91: check pmc node status before registering syscore ops - - powerpc/mem: Fix arch/powerpc/mm/mem.c:53:12: error: no previous prototype - for 'create_section_mapping' - - video: fbdev: chipsfb: use memset_io() instead of memset() - - powerpc: fix unbalanced node refcount in check_kvm_guest() - - powerpc/paravirt: correct preempt debug splat in vcpu_is_preempted() - - serial: 8250_dw: Drop wrong use of ACPI_PTR() - - usb: gadget: hid: fix error code in do_config() - - power: supply: rt5033_battery: Change voltage values to µV - - power: supply: max17040: fix null-ptr-deref in max17040_probe() - - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() - - RDMA/mlx4: Return missed an error if device doesn't support steering - - usb: musb: select GENERIC_PHY instead of depending on it - - staging: most: dim2: do not double-register the same device - - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC - - RDMA/core: Set sgtable nents when using ib_dma_virt_map_sg() - - dyndbg: make dyndbg a known cli param - - powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 - - pinctrl: renesas: checker: Fix off-by-one bug in drive register check - - ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz - - ARM: dts: stm32: fix STUSB1600 Type-C irq level on stm32mp15xx-dkx - - ARM: dts: stm32: fix SAI sub nodes register range - - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 - - ASoC: cs42l42: Always configure both ASP TX channels - - ASoC: cs42l42: Correct some register default values - - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER - - soc: qcom: rpmhpd: Make power_on actually enable the domain - - soc: qcom: socinfo: add two missing PMIC IDs - - iio: buffer: Fix double-free in iio_buffers_alloc_sysfs_and_mask() - - usb: typec: STUSB160X should select REGMAP_I2C - - iio: adis: do not disabe IRQs in 'adis_init()' - - soundwire: bus: stop dereferencing invalid slave pointer - - scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer - - scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset - - serial: imx: fix detach/attach of serial console - - usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init - - usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled - - usb: dwc2: drd: reset current session before setting the new one - - powerpc/booke: Disable STRICT_KERNEL_RWX, DEBUG_PAGEALLOC and KFENCE - - usb: dwc3: gadget: Skip resizing EP's TX FIFO if already resized - - firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() - - soc: qcom: rpmhpd: fix sm8350_mxc's peer domain - - soc: qcom: apr: Add of_node_put() before return - - arm64: dts: qcom: pmi8994: Fix "eternal"->"external" typo in WLED node - - arm64: dts: qcom: sdm845: Use RPMH_CE_CLK macro directly - - arm64: dts: qcom: sdm845: Fix Qualcomm crypto engine bus clock - - pinctrl: equilibrium: Fix function addition in multiple groups - - ASoC: topology: Fix stub for snd_soc_tplg_component_remove() - - phy: qcom-qusb2: Fix a memory leak on probe - - phy: ti: gmii-sel: check of_get_address() for failure - - phy: qcom-qmp: another fix for the sc8180x PCIe definition - - phy: qcom-snps: Correct the FSEL_MASK - - phy: Sparx5 Eth SerDes: Fix return value check in sparx5_serdes_probe() - - serial: xilinx_uartps: Fix race condition causing stuck TX - - clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL - - clk: at91: clk-master: check if div or pres is zero - - clk: at91: clk-master: fix prescaler logic - - HID: u2fzero: clarify error check and length calculations - - HID: u2fzero: properly handle timeouts in usb_submit_urb - - powerpc/nohash: Fix __ptep_set_access_flags() and ptep_set_wrprotect() - - powerpc/book3e: Fix set_memory_x() and set_memory_nx() - - powerpc/44x/fsp2: add missing of_node_put - - powerpc/xmon: fix task state output - - ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or - later - - iommu/dma: Fix incorrect error return on iommu deferred attach - - powerpc: Don't provide __kernel_map_pages() without - ARCH_SUPPORTS_DEBUG_PAGEALLOC - - ASoC: cs42l42: Correct configuring of switch inversion from ts-inv - - RDMA/hns: Fix initial arm_st of CQ - - RDMA/hns: Modify the value of MAX_LP_MSG_LEN to meet hardware compatibility - - ASoC: rsnd: Fix an error handling path in 'rsnd_node_count()' - - serial: cpm_uart: Protect udbg definitions by CONFIG_SERIAL_CPM_CONSOLE - - virtio_ring: check desc == NULL when using indirect with packed - - vdpa/mlx5: Fix clearing of VIRTIO_NET_F_MAC feature bit - - mips: cm: Convert to bitfield API to fix out-of-bounds access - - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error - - RDMA/core: Require the driver to set the IOVA correctly during rereg_mr - - apparmor: fix error check - - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined - - mtd: rawnand: intel: Fix potential buffer overflow in probe - - nfsd: don't alloc under spinlock in rpc_parse_scope_id - - rtc: ds1302: Add SPI ID table - - rtc: ds1390: Add SPI ID table - - rtc: pcf2123: Add SPI ID table - - remoteproc: imx_rproc: Fix TCM io memory type - - i2c: i801: Use PCI bus rescan mutex to protect P2SB access - - dmaengine: idxd: move out percpu_ref_exit() to ensure it's outside - submission - - rtc: mcp795: Add SPI ID table - - Input: ariel-pwrbutton - add SPI device ID table - - i2c: mediatek: fixing the incorrect register offset - - NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED - - NFS: Don't set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA - - NFS: Ignore the directory size when marking for revalidation - - NFS: Fix dentry verifier races - - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds - - drm/bridge/lontium-lt9611uxc: fix provided connector suport - - drm/plane-helper: fix uninitialized variable reference - - PCI: aardvark: Don't spam about PIO Response Status - - PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge - - opp: Fix return in _opp_add_static_v2() - - NFS: Fix deadlocks in nfs_scan_commit_list() - - sparc: Add missing "FORCE" target when using if_changed - - fs: orangefs: fix error return code of orangefs_revalidate_lookup() - - Input: st1232 - increase "wait ready" timeout - - drm/bridge: nwl-dsi: Add atomic_get_input_bus_fmts - - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() - - PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation - - mtd: rawnand: arasan: Prevent an unsupported configuration - - mtd: core: don't remove debugfs directory if device is in use - - remoteproc: Fix a memory leak in an error handling path in - 'rproc_handle_vdev()' - - rtc: rv3032: fix error handling in rv3032_clkout_set_rate() - - dmaengine: at_xdmac: call at_xdmac_axi_config() on resume path - - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro - - dmaengine: stm32-dma: fix stm32_dma_get_max_width - - NFS: Fix up commit deadlocks - - NFS: Fix an Oops in pnfs_mark_request_commit() - - Fix user namespace leak - - auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string - - auxdisplay: ht16k33: Connect backlight to fbdev - - auxdisplay: ht16k33: Fix frame buffer device blanking - - soc: fsl: dpaa2-console: free buffer before returning from - dpaa2_console_read - - netfilter: nfnetlink_queue: fix OOB when mac header was cleared - - dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` - - dmaengine: tegra210-adma: fix pm runtime unbalance - - dmanegine: idxd: fix resource free ordering on driver removal - - dmaengine: idxd: reconfig device after device reset command - - signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) - - m68k: set a default value for MEMORY_RESERVE - - watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT - - ar7: fix kernel builds for compiler test - - scsi: target: core: Remove from tmr_list during LUN unlink - - scsi: qla2xxx: Relogin during fabric disturbance - - scsi: qla2xxx: Fix gnl list corruption - - scsi: qla2xxx: Turn off target reset during issue_lip - - scsi: qla2xxx: edif: Fix app start fail - - scsi: qla2xxx: edif: Fix app start delay - - scsi: qla2xxx: edif: Flush stale events and msgs on session down - - scsi: qla2xxx: edif: Increase ELS payload - - scsi: qla2xxx: edif: Fix EDIF bsg - - NFSv4: Fix a regression in nfs_set_open_stateid_locked() - - dmaengine: idxd: fix resource leak on dmaengine driver disable - - i2c: xlr: Fix a resource leak in the error handling path of - 'xlr_i2c_probe()' - - gpio: realtek-otto: fix GPIO line IRQ offset - - xen-pciback: Fix return in pm_ctrl_init() - - nbd: fix max value for 'first_minor' - - nbd: fix possible overflow for 'first_minor' in nbd_dev_add() - - io-wq: fix max-workers not correctly set on multi-node system - - net: davinci_emac: Fix interrupt pacing disable - - kselftests/net: add missed icmp.sh test to Makefile - - kselftests/net: add missed setup_loopback.sh/setup_veth.sh to Makefile - - kselftests/net: add missed SRv6 tests - - kselftests/net: add missed vrf_strict_mode_test.sh test to Makefile - - kselftests/net: add missed toeplitz.sh/toeplitz_client.sh to Makefile - - ethtool: fix ethtool msg len calculation for pause stats - - openrisc: fix SMP tlb flush NULL pointer dereference - - net: vlan: fix a UAF in vlan_dev_real_dev() - - net: dsa: felix: fix broken VLAN-tagged PTP under VLAN-aware bridge - - ice: Fix replacing VF hardware MAC to existing MAC filter - - ice: Fix not stopping Tx queues for VFs - - kdb: Adopt scheduler's task classification - - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses - - PCI: j721e: Fix j721e_pcie_probe() error path - - nvdimm/btt: do not call del_gendisk() if not needed - - scsi: bsg: Fix errno when scsi_bsg_register_queue() fails - - scsi: ufs: ufshpb: Use proper power management API - - scsi: ufs: core: Fix NULL pointer dereference - - scsi: ufs: ufshpb: Properly handle max-single-cmd - - drm/nouveau/svm: Fix refcount leak bug and missing check against null bug - - nvdimm/pmem: cleanup the disk if pmem_release_disk() is yet assigned - - block/ataflop: use the blk_cleanup_disk() helper - - block/ataflop: add registration bool before calling del_gendisk() - - block/ataflop: provide a helper for cleanup up an atari disk - - ataflop: remove ataflop_probe_lock mutex - - PCI: Do not enable AtomicOps on VFs - - cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline - - net: phy: fix duplex out of sync problem while changing settings - - block: fix device_add_disk() kobject_create_and_add() error handling - - drm/ttm: remove ttm_bo_vm_insert_huge() - - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed - - octeontx2-pf: select CONFIG_NET_DEVLINK - - ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer - - mfd: core: Add missing of_node_put for loop iteration - - mfd: cpcap: Add SPI device ID table - - mfd: sprd: Add SPI device ID table - - mfd: altera-sysmgr: Fix a mistake caused by resource_size conversion - - ACPI: PM: Fix device wakeup power reference counting error - - libbpf: Fix lookup_and_delete_elem_flags error reporting - - selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder - - selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number - - selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly - - selftests/bpf/xdp_redirect_multi: Limit the tests in netns - - drm: fb_helper: improve CONFIG_FB dependency - - Revert "drm/imx: Annotate dma-fence critical section in commit path" - - drm/amdgpu/powerplay: fix sysfs_emit/sysfs_emit_at handling - - can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path - - can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for - mcp251xfd_chip_rx_int_enable() - - mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and - zs_unregister_migration() - - zram: off by one in read_block_state() - - perf bpf: Add missing free to bpf_event__print_bpf_prog_info() - - llc: fix out-of-bound array index in llc_sk_dev_hash() - - nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails - - litex_liteeth: Fix a double free in the remove function - - arm64: arm64_ftr_reg->name may not be a human-readable string - - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions - - bpf, sockmap: Remove unhash handler for BPF sockmap usage - - bpf, sockmap: Fix race in ingress receive verdict with redirect to self - - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding - - bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg - - dmaengine: stm32-dma: fix burst in case of unaligned memory address - - dmaengine: stm32-dma: avoid 64-bit division in stm32_dma_get_max_width - - gve: Fix off by one in gve_tx_timeout() - - drm/i915/fb: Fix rounding error in subsampled plane size calculation - - init: make unknown command line param message clearer - - seq_file: fix passing wrong private data - - drm/amdgpu: fix uvd crash on Polaris12 during driver unloading - - net: dsa: mv88e6xxx: Don't support >1G speeds on 6191X on ports other than - 10 - - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any - - net: hns3: fix ROCE base interrupt vector initialization bug - - net: hns3: fix pfc packet number incorrect after querying pfc parameters - - net: hns3: fix kernel crash when unload VF while it is being reset - - net: hns3: allow configure ETS bandwidth of all TCs - - net: stmmac: allow a tc-taprio base-time of zero - - net: ethernet: ti: cpsw_ale: Fix access to un-initialized memory - - net: marvell: mvpp2: Fix wrong SerDes reconfiguration order - - vsock: prevent unnecessary refcnt inc for nonblocking connect - - net/smc: fix sk_refcnt underflow on linkdown and fallback - - cxgb4: fix eeprom len when diagnostics not implemented - - selftests/net: udpgso_bench_rx: fix port argument - - thermal: int340x: fix build on 32-bit targets - - smb3: do not error on fsync when readonly - - ARM: 9155/1: fix early early_iounmap() - - ARM: 9156/1: drop cc-option fallbacks for architecture selection - - parisc: Fix backtrace to always include init funtion names - - parisc: Flush kernel data mapping in set_pte_at() when installing pte for - user page - - MIPS: fix duplicated slashes for Platform file path - - MIPS: fix *-pkg builds for loongson2ef platform - - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL - - x86/mce: Add errata workaround for Skylake SKX37 - - PCI/MSI: Move non-mask check back into low level accessors - - PCI/MSI: Destroy sysfs before freeing entries - - KVM: x86: move guest_pv_has out of user_access section - - posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() - - irqchip/sifive-plic: Fixup EOI failed when masked - - f2fs: should use GFP_NOFS for directory inodes - - f2fs: include non-compressed blocks in compr_written_block - - f2fs: fix UAF in f2fs_available_free_memory - - ceph: fix mdsmap decode when there are MDS's beyond max_mds - - erofs: fix unsafe pagevec reuse of hooked pclusters - - drm/i915/guc: Fix blocked context accounting - - block: Hold invalidate_lock in BLKDISCARD ioctl - - block: Hold invalidate_lock in BLKZEROOUT ioctl - - block: Hold invalidate_lock in BLKRESETZONE ioctl - - ksmbd: Fix buffer length check in fsctl_validate_negotiate_info() - - ksmbd: don't need 8byte alignment for request length in ksmbd_check_message - - dmaengine: ti: k3-udma: Set bchan to NULL if a channel request fail - - dmaengine: ti: k3-udma: Set r/tchan or rflow to NULL if request fail - - dmaengine: bestcomm: fix system boot lockups - - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE - - 9p/net: fix missing error check in p9_check_errors - - mm/filemap.c: remove bogus VM_BUG_ON - - memcg: prohibit unconditional exceeding the limit of dying tasks - - mm, oom: pagefault_out_of_memory: don't force global OOM for dying tasks - - mm, oom: do not trigger out_of_memory from the #PF - - mm, thp: lock filemap when truncating page cache - - mm, thp: fix incorrect unmap behavior for private pages - - mfd: dln2: Add cell for initializing DLN2 ADC - - video: backlight: Drop maximum brightness override for brightness zero - - bcache: fix use-after-free problem in bcache_device_free() - - bcache: Revert "bcache: use bvec_virt" - - PM: sleep: Avoid calling put_device() under dpm_list_mtx - - s390/cpumf: cpum_cf PMU displays invalid value after hotplug remove - - s390/cio: check the subchannel validity for dev_busid - - s390/tape: fix timer initialization in tape_std_assign() - - s390/ap: Fix hanging ioctl caused by orphaned replies - - s390/cio: make ccw_device_dma_* more robust - - remoteproc: elf_loader: Fix loading segment when is_iomem true - - remoteproc: Fix the wrong default value of is_iomem - - remoteproc: imx_rproc: Fix ignoring mapping vdev regions - - remoteproc: imx_rproc: Fix rsc-table name - - mtd: rawnand: fsmc: Fix use of SM ORDER - - mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: xway: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: mpc5121: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: gpio: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: pasemi: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: orion: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: plat_nand: Keep the driver compatible with on-die ECC engines - - mtd: rawnand: au1550nd: Keep the driver compatible with on-die ECC engines - - powerpc/vas: Fix potential NULL pointer dereference - - powerpc/bpf: Fix write protecting JIT code - - powerpc/32e: Ignore ESR in instruction storage interrupt handler - - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload - - powerpc/security: Use a mutex for interrupt exit code patching - - powerpc/64s/interrupt: Fix check_return_regs_valid() false positive - - powerpc/pseries/mobility: ignore ibm, platform-facilities updates - - powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n - - drm/sun4i: Fix macros in sun8i_csc.h - - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros - - PCI: aardvark: Fix PCIe Max Payload Size setting - - SUNRPC: Partial revert of commit 6f9f17287e78 - - drm/amd/display: Look at firmware version to determine using dmub on dcn21 - - media: vidtv: move kfree(dvb) to vidtv_bridge_dev_release() - - cifs: fix memory leak of smb3_fs_context_dup::server_hostname - - ath10k: fix invalid dma_addr_t token assignment - - mmc: moxart: Fix null pointer dereference on pointer host - - selftests/x86/iopl: Adjust to the faked iopl CLI/STI usage - - selftests/bpf: Fix also no-alu32 strobemeta selftest - - arch/cc: Introduce a function to check for confidential computing features - - x86/sev: Add an x86 version of cc_platform_has() - - x86/sev: Make the #VC exception stacks part of the default stacks storage - - media: videobuf2: always set buffer vb2 pointer - - media: videobuf2-dma-sg: Fix buf->vb NULL pointer dereference - - Linux 5.15.3 - - * kernel panic: NULL pointer dereference in wb_timer_f() (LP: #1947557) // - Jammy update: v5.15.3 upstream stable release (LP: #1951822) - - blk-wbt: prevent NULL pointer dereference in wb_timer_fn - - * Medion Notebook Keyboard not working (LP: #1909814) // Jammy update: v5.15.3 - upstream stable release (LP: #1951822) - - ACPI: resources: Add DMI-based legacy IRQ override quirk - - * Enable CONFIG_INTEL_IOMMU_DEFAULT_ON and - CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON on jammy 5.15 (LP: #1951440) - - [Config] enable Intel DMA remapping options by default - - * Thinkpad E14 Gen2: Kernel panic with trackpad and trackpoint enabled - (LP: #1945590) - - SAUCE: Input: elantech - Fix stack out of bound access in - elantech_change_report_id() - - * Miscellaneous Ubuntu changes - - SAUCE: LSM: Specify which LSM to display (using struct cred as input) - - SAUCE: selftests/seccomp: fix check of fds being assigned - - [Config] enable SUNRPC_DISABLE_INSECURE_ENCTYPES - - [Config] updateconfigs following v5.15.3, v5.15.4 import - - * Miscellaneous upstream changes - - binder: use cred instead of task for selinux checks - - binder: use cred instead of task for getsecid - - Revert "UBUNTU: SAUCE: storvsc: use small sg_tablesize on x86" - - -- Paolo Pisati Mon, 22 Nov 2021 13:14:15 +0100 - -linux (5.15.0-11.11) jammy; urgency=medium - - * jammy/linux: 5.15.0-11.11 -proposed tracker (LP: #1950948) - - * Packaging resync (LP: #1786013) - - debian/dkms-versions -- update from kernel-versions (main/master) - - * OOPs on boot: invalid opcode: 0000 [#1] SMP NOPTI (LP: #1942215) - - SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT - - [Config] disable UBSAN - - SAUCE: ACPICA: avoid accessing operands out-of-bounds - - * Jammy update: v5.15.2 upstream stable release (LP: #1950949) - - KVM: x86: avoid warning with -Wbitwise-instead-of-logical - - Revert "x86/kvm: fix vcpu-id indexed array sizes" - - usb: ehci: handshake CMD_RUN instead of STS_HALT - - usb: gadget: Mark USB_FSL_QE broken on 64-bit - - usb: musb: Balance list entry in musb_gadget_queue - - usb-storage: Add compatibility quirk flags for iODD 2531/2541 - - Revert "proc/wchan: use printk format instead of lookup_symbol_name()" - - binder: use euid from cred instead of using task - - binder: don't detect sender/target during buffer cleanup - - kfence: always use static branches to guard kfence_alloc() - - kfence: default to dynamic branch instead of static keys mode - - btrfs: fix lzo_decompress_bio() kmap leakage - - staging: rtl8712: fix use-after-free in rtl8712_dl_fw - - isofs: Fix out of bound access for corrupted isofs image - - comedi: dt9812: fix DMA buffers on stack - - comedi: ni_usb6501: fix NULL-deref in command paths - - comedi: vmk80xx: fix transfer-buffer overflows - - comedi: vmk80xx: fix bulk-buffer overflow - - comedi: vmk80xx: fix bulk and interrupt message timeouts - - staging: r8712u: fix control-message timeout - - staging: rtl8192u: fix control-message timeouts - - staging: r8188eu: fix memleak in rtw_wx_set_enc_ext - - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init - - rsi: fix control-message timeout - - Linux 5.15.2 - - * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le - (LP: #1867570) - - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes - - * Miscellaneous Ubuntu changes - - packaging: switch getabis to the linux package name - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: (no-up) rename the adv7511 drm driver to adv7511_drm" - - Revert "UBUNTU: SAUCE: drm/i915/dp: Use max params for older panels" - - Revert "UBUNTU: SAUCE: i915: Fix build error due to missing struct - definition" - - selftests/core: fix conflicting types compile error for close_range() - - selftests: net: test_vxlan_under_vrf: fix HV connectivity test - - Revert "UBUNTU: SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT" - - -- Paolo Pisati Mon, 15 Nov 2021 10:12:47 +0100 - -linux (5.15.0-10.10) jammy; urgency=medium - - * jammy/linux: 5.15.0-10.10 -proposed tracker (LP: #1950133) - - * Jammy update: v5.15.1 upstream stable release (LP: #1950131) - - sfc: Fix reading non-legacy supported link modes - - media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() - - Revert "xhci: Set HCD flag to defer primary roothub registration" - - Revert "usb: core: hcd: Add support for deferring roothub registration" - - drm/amdkfd: fix boot failure when iommu is disabled in Picasso. - - Revert "soc: imx: gpcv2: move reset assert after requesting domain power up" - - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" - - Revert "wcn36xx: Disable bmps when encryption is disabled" - - drm/amdgpu: revert "Add autodump debugfs node for gpu reset v8" - - drm/amd/display: Revert "Directly retrain link from debugfs" - - Revert "drm/i915/gt: Propagate change in error status to children on unhold" - - ALSA: usb-audio: Add quirk for Audient iD14 - - Linux 5.15.1 - - * Miscellaneous Ubuntu changes - - packaging: fixup previous ABI/spin to -9.9 - - [Packaging] Drop unused d-i build-deps and packaging - - [Packaging] Drop now unsupported d-i/ input files - - * Miscellaneous upstream changes - - selftests: net: properly support IPv6 in GSO GRE test - - signal: Add SA_IMMUTABLE to ensure forced siganls do not get changed - - -- Paolo Pisati Mon, 08 Nov 2021 14:43:24 +0100 - -linux (5.15.0-9.9) jammy; urgency=medium - - * jammy/linux: 5.15.0-1.1 -proposed tracker (LP: #1949876) - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - [Packaging] update Ubuntu.md - - * Add F81966 watchdog support (LP: #1949063) - - SAUCE: ODM: watchdog: f71808e_wdt: Add F81966 support - - * Miscellaneous Ubuntu changes - - [Packaging] Rewrite debian/scripts/misc/insert-changes.pl in Python - - [Packaging] change source package name to linux - - -- Andrea Righi Thu, 04 Nov 2021 18:47:19 +0100 - -linux (5.15.0-0.0) jammy; urgency=medium - - * Empty entry - - -- Andrea Righi Thu, 04 Nov 2021 16:47:16 +0100 - -linux-unstable (5.15.0-8.8) jammy; urgency=medium - - * jammy/linux-unstable: 5.15.0-8.8 -proposed tracker (LP: #1949436) - - * Packaging resync (LP: #1786013) - - debian/dkms-versions -- update from kernel-versions (main/master) - - * Drop "UBUNTU: SAUCE: cachefiles: Page leaking in - cachefiles_read_backing_file while vmscan is active" (LP: #1947709) - - Revert "UBUNTU: SAUCE: cachefiles: Page leaking in - cachefiles_read_backing_file while vmscan is active" - - * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) - - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" - - * Check for changes relevant for security certifications (LP: #1945989) - - [Packaging] Add fips-checks as part of finalchecks - - * Add final-checks to check certificates (LP: #1947174) - - [Packaging] Add system trusted and revocation keys final check - - * Can only reach PC3 when ethernet is plugged r8169 (LP: #1946433) - - r8169: Enable chip-specific ASPM regardless of PCIe ASPM status - - PCI/ASPM: Introduce a new helper to report ASPM capability - - r8169: Implement dynamic ASPM mechanism - - * rtw89 kernel module for Realtek 8852 wifi is missing (LP: #1945967) - - rtw89: add Realtek 802.11ax driver - - rtw89: Remove redundant check of ret after call to rtw89_mac_enable_bb_rf - - rtw89: fix return value check in rtw89_cam_send_sec_key_cmd() - - rtw89: remove unneeded semicolon - - [Config] RTW89=m - - * Fix A yellow screen pops up in an instant (< 1 second) and then disappears - before loading the system (LP: #1945932) - - drm/i915: Stop force enabling pipe bottom color gammma/csc - - * disable CONFIG_KFENCE_STATIC_KEYS in linux 5.15 (LP: #1948038) - - [Config] disable CONFIG_KFENCE_STATIC_KEYS - - * Miscellaneous Ubuntu changes - - [Debian] Remove old and unused firmware helper scripts - - [Packaging] Replace Perl oneliner with Bash statements - - rebase to v5.15 - - [ Upstream Kernel Changes ] - - * Rebase to v5.15 - - -- Paolo Pisati Tue, 02 Nov 2021 08:29:45 +0100 - -linux-unstable (5.15.0-7.7) jammy; urgency=medium - - * jammy/linux-unstable: 5.15.0-7.7 -proposed tracker (LP: #1948770) - - * Miscellaneous Ubuntu changes - - [Config] Temporarily disable signing for ppc64el and s390x - - packaging: switch release to Jammy - - rebase to v5.15-rc7 - - [Config] GCC version update - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc7 - - -- Paolo Pisati Tue, 26 Oct 2021 11:38:14 +0200 - -linux-unstable (5.15.0-6.6) jammy; urgency=medium - - * impish/linux-unstable: 5.15.0-6.6 -proposed tracker (LP: #1947565) - - * [impish] Remove the downstream xr-usb-uart driver (LP: #1945938) - - SAUCE: xr-usb-serial: remove driver - - [Config] update modules list - - * Packaging resync (LP: #1786013) - - debian/dkms-versions -- update from kernel-versions (main/master) - - * Miscellaneous Ubuntu changes - - rebase to v5.15-rc6 - - [Config] update config & annotations following v5.15-rc6 rebase - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: xr-usb-serial: switch to tty_alloc_driver() and - tty_driver_kref_put()" - - Revert "UBUNTU: SAUCE: xr-usb-serial: update return code for - xr_usb_serial_tty_write_room() and xr_usb_serial_tty_chars_in_buffer()" - - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc6 - - -- Paolo Pisati Mon, 18 Oct 2021 12:24:45 +0200 - -linux-unstable (5.15.0-5.5) impish; urgency=medium - - * impish/linux-unstable: 5.15.0-5.5 -proposed tracker (LP: #1946338) - - * Miscellaneous Ubuntu changes - - rebase to v5.15-rc5 - - [Config] FB_SIMPLE=m - - [Config] update annotations - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc5 - - -- Paolo Pisati Mon, 11 Oct 2021 12:14:02 +0200 - -linux-unstable (5.15.0-4.4) impish; urgency=medium - - * impish/linux-unstable: 5.15.0-4.4 -proposed tracker (LP: #1945953) - - * Fix missing HDMI audio on Intel RKL (LP: #1945556) - - drm/i915/audio: Use BIOS provided value for RKL HDA link - - * Miscellaneous Ubuntu changes - - SAUCE: media: atomisp: add missing return type (fix -Werror=return-type) - - SAUCE: xr-usb-serial: switch to tty_alloc_driver() and tty_driver_kref_put() - - rebase to v5.15-rc4 - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] FTBFS: disable INTEL_ATOMISP" - - Revert "UBUNTU: [Config] FTBFS: disable xr-usb-serial" - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc4 - - -- Paolo Pisati Mon, 04 Oct 2021 10:52:41 +0200 - -linux-unstable (5.15.0-3.3) impish; urgency=medium - - * impish/linux-unstable: 5.15.0-3.3 -proposed tracker (LP: #1944944) - - * Packaging resync (LP: #1786013) - - debian/dkms-versions -- update from kernel-versions (main/master) - - * Miscellaneous Ubuntu changes - - rebase to v5.15-rc3 - - [Config] updateconfigs following v5.15-rc3 rebase - - [Packaging] correctly evaluate release in update-dkms-versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc3 - - -- Paolo Pisati Mon, 27 Sep 2021 16:48:03 +0200 - -linux-unstable (5.15.0-2.2) impish; urgency=medium - - * impish/linux-unstable: 5.15.0-2.2 -proposed tracker (LP: #1944423) - - * Miscellaneous Ubuntu changes - - rebase to v5.15-rc2 - - [Config] updateconfigs following v5.15-rc2 rebase - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc2 - - -- Paolo Pisati Tue, 21 Sep 2021 11:46:59 +0200 - -linux-unstable (5.15.0-1.1) impish; urgency=medium - - * Packaging resync (LP: #1786013) - - debian/dkms-versions -- update from kernel-versions (main/master) - - * LRMv5: switch primary version handling to kernel-versions data set - (LP: #1928921) - - [Packaging] switch to kernel-versions - - * Miscellaneous Ubuntu changes - - [Packaging] remove remaining references to ports - - [Packaging] drop x32 architecture configs - - [Config] mark CONFIG_BPF_UNPRIV_DEFAULT_OFF enforced - - [Packaging] bump kernel version to 5.15 - - rebase to v5.15-rc1 - - [Config] updateconfigs following v5.15-rc1 rebase - - [Config] FTBFS: disable INTEL_ATOMISP - - [Config] FTBFS: disable xr-usb-serial - - [Packaging] FTBFS: disable zfs - - * Miscellaneous upstream changes - - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables - ASPM" - - Revert "UBUNTU: SAUCE: RDMA/core: Introduce peer memory interface" - - [ Upstream Kernel Changes ] - - * Rebase to v5.15-rc1 - - -- Paolo Pisati Fri, 17 Sep 2021 11:42:25 +0200 - -linux-unstable (5.15.0-0.0) impish; urgency=medium - - * Empty entry - - -- Paolo Pisati Wed, 15 Sep 2021 11:54:10 +0200 - -linux-unstable (5.14.0-9.9) impish; urgency=medium - - * impish/linux-unstable: 5.14.0-9.9 -proposed tracker (LP: #1943022) - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Packaging] NVIDIA -- Add the NVIDIA 470 driver - - [Packaging] NVIDIA: transition -460 and -465 to -470, transition -460-server - to -470-server - - * Miscellaneous upstream changes - - vt_kdsetmode: extend console locking - - Bluetooth: btusb: check conditions before enabling USB ALT 3 for WBS - - net: dsa: mt7530: fix VLAN traffic leaks again - - btrfs: fix NULL pointer dereference when deleting device by invalid id - - Revert "floppy: reintroduce O_NDELAY fix" - - fscrypt: add fscrypt_symlink_getattr() for computing st_size - - ext4: report correct st_size for encrypted symlinks - - f2fs: report correct st_size for encrypted symlinks - - ubifs: report correct st_size for encrypted symlinks - - net: don't unconditionally copy_from_user a struct ifreq for socket ioctls - - audit: move put_tree() to avoid trim_trees refcount underflow and UAF - - Linux 5.14.1 - - -- Paolo Pisati Wed, 08 Sep 2021 12:20:18 +0200 - -linux-unstable (5.14.0-8.8) impish; urgency=medium - - * impish/linux-unstable: 5.14.0-8.8 -proposed tracker (LP: #1941887) - - * Fix Intel AC9560 BT function cannot turn on if BT turn off before S3 entry - (LP: #1941696) - - SAUCE: Bluetooth: btusb: add a reject table to disable msft - - * Add USB4 support for AMD SoC (LP: #1941036) - - thunderbolt: Add vendor specific NHI quirk for auto-clearing interrupt - status - - thunderbolt: Handle ring interrupt by reading interrupt status register - - thunderbolt: Do not read control adapter config space - - thunderbolt: Fix port linking by checking all adapters - - * Support builtin revoked certificates (LP: #1932029) - - [Config] Enforce SYSTEM_TRUSTED_KEYS and SYSTEM_REVOCATION_KEYS - - * GPIO error logs in start and dmesg after update of kernel (LP: #1937897) - - ODM: mfd: Check AAEON BFPI version before adding device - - * initramfs-tools & kernel: use zstd as the default compression method - (LP: #1931725) - - [Config] enforce ZSTD compression - - * Miscellaneous Ubuntu changes - - rebase to v5.14 - - [Config] RESET_MCHP_SPARX5 depends on ARCH_SPARX5 - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" - - [ Upstream Kernel Changes ] - - * Rebase to v5.14 - - -- Paolo Pisati Mon, 30 Aug 2021 12:57:19 +0200 - -linux-unstable (5.14.0-7.7) impish; urgency=medium - - * Please enable CONFIG_UBSAN_BOUNDS (LP: #1914685) - - [Config] Enable CONFIG_UBSAN_BOUNDS - - * CONFIG_HARDENED_USERCOPY_FALLBACK should be disabled (LP: #1855340) - - [Config] Disable CONFIG_HARDENED_USERCOPY_FALLBACK - - * fs: removing mandatory locks (LP: #1940392) - - [Config] Disable CONFIG_MANDATORY_FILE_LOCKING - - * Fix kernel panic caused by legacy devices on AMD platforms (LP: #1936682) - - SAUCE: iommu/amd: Keep swiotlb enabled to ensure devices with 32bit DMA - still work - - * ALSA: hda/cs8409: Add support for dolphin (LP: #1939541) - - ALSA: hda/cirrus: Move CS8409 HDA bridge to separate module - - ALSA: hda/cs8409: Move arrays of configuration to a new file - - ALSA: hda/cs8409: Use enums for register names and coefficients - - ALSA: hda/cs8409: Mask all CS42L42 interrupts on initialization - - ALSA: hda/cs8409: Reduce HS pops/clicks for Cyborg - - ALSA: hda/cs8409: Disable unnecessary Ring Sense for Cyborg/Warlock/Bullseye - - ALSA: hda/cs8409: Disable unsolicited responses during suspend - - ALSA: hda/cs8409: Disable unsolicited response for the first boot - - ALSA: hda/cs8409: Mask CS42L42 wake events - - ALSA: hda/cs8409: Simplify CS42L42 jack detect. - - ALSA: hda/cs8409: Prevent I2C access during suspend time - - ALSA: hda/cs8409: Generalize volume controls - - ALSA: hda/cs8409: Dont disable I2C clock between consecutive accesses - - ALSA: hda/cs8409: Avoid setting the same I2C address for every access - - ALSA: hda/cs8409: Avoid re-setting the same page as the last access - - ALSA: hda/cs8409: Support i2c bulk read/write functions - - ALSA: hda/cs8409: Separate CS8409, CS42L42 and project functions - - ALSA: hda/cs8409: Move codec properties to its own struct - - ALSA: hda/cs8409: Support multiple sub_codecs for Suspend/Resume/Unsol - events - - ALSA: hda/cs8409: Add Support to disable jack type detection for CS42L42 - - ALSA: hda/cs8409: Add support for dolphin - - ALSA: hda/cs8409: Enable Full Scale Volume for Line Out Codec on Dolphin - - ALSA: hda/cs8409: Set fixed sample rate of 48kHz for CS42L42 - - ALSA: hda/cs8409: Use timeout rather than retries for I2C transaction waits - - ALSA: hda/cs8409: Remove unnecessary delays - - ALSA: hda/cs8409: Follow correct CS42L42 power down sequence for suspend - - ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops - - ALSA: hda/cs8409: Prevent pops and clicks during suspend - - SAUCE: ALSA: hda/cs8409: Prevent pops and clicks during reboot - - [Config] Enable Cirrus Logic HDA bridge support - - * e1000e: add handshake with the Intel CSME to support S0ix (LP: #1937252) - - SAUCE: e1000e: Add handshake with the CSME to support S0ix - - SAUCE: e1000e: Add polling mechanism to indicate CSME DPG exit - - SAUCE: e1000e: Additional PHY power saving in S0ix - - * AMDGPU: Fix System hang after resume from suspend (LP: #1940204) - - SAUCE: drm/amdgpu: disable BACO support for 699F:C7 polaris12 SKU - temporarily - - * [Regression] Audio card [8086:9d71] not detected after upgrade from linux - 5.4 to 5.8 (LP: #1915117) - - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y - - * Miscellaneous Ubuntu changes - - rebase to v5.14-rc7 - - [Config] updateconfigs following 5.14-rc7 rebase - - [Config] Enable CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT - - [Config] annotations: set CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT to y - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] annotations: set - CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y" - - Revert "UBUNTU: [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to - y" - - [ Upstream Kernel Changes ] - - * Rebase to v5.14-rc7 - - -- Paolo Pisati Tue, 24 Aug 2021 10:32:31 +0200 - -linux-unstable (5.14.0-6.6) impish; urgency=medium - - * Miscellaneous Ubuntu changes - - no changes upload (to avoid picking up libc6 from -proposed) - - * No changes upload (to avoid picking up libc6 from -proposed) - - -- Paolo Pisati Wed, 18 Aug 2021 13:41:16 +0200 - -linux-unstable (5.14.0-5.5) impish; urgency=medium - - * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) - - [Config] Disable CONFIG_HISI_DMA - - * Dell XPS 17 (9710) PCI/internal sound card not detected (LP: #1935850) - - ASoC: Intel: sof_sdw: include rt711.h for RT711 JD mode - - ASoC: Intel: sof_sdw: add quirk for Dell XPS 9710 - - * [regression] USB device is not detected during boot (LP: #1939638) - - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" - - * armhf build failure (LP: #1939308) - - SAUCE: arm: Fix instruction set selection for GCC 11 - - * REGRESSION: shiftfs lets sendfile fail with EINVAL (LP: #1939301) - - SAUCE: shiftfs: fix sendfile() invocations - - * Wobbly graphics on built-in display since linux-image-5.11.0-22-generic - (LP: #1936708) - - SAUCE: drm/i915/dp: Use max params for older panels - - * [SRU][H/OEM-5.10/OEM-5.13/U] Fix system hang after unplug tbt dock - (LP: #1938689) - - SAUCE: igc: fix page fault when thunderbolt is unplugged - - * e1000e blocks the boot process when it tried to write checksum to its NVM - (LP: #1936998) - - SAUCE: e1000e: Do not take care about recovery NVM checksum - - * [Regression] Audio card [8086:9d71] not detected after upgrade from linux - 5.4 to 5.8 (LP: #1915117) - - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y - - [Config] annotations: set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y - - * Miscellaneous Ubuntu changes - - [Config] updateconfigs following 5.14-rc6 rebase - - rebase to v5.14-rc6 - - [ Upstream Kernel Changes ] - - * Rebase to v5.14-rc6 - - -- Paolo Pisati Tue, 17 Aug 2021 17:49:15 +0200 - -linux-unstable (5.14.0-4.4) impish; urgency=medium - - * impish/linux-unstable: 5.14.0-4.4 -proposed tracker (LP: #1938566) - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous upstream changes - - Revert "riscv: Get CPU manufacturer information" - - -- Paolo Pisati Tue, 03 Aug 2021 14:50:27 +0200 - -linux-unstable (5.14.0-3.3) impish; urgency=medium - - * Add additional Mediatek MT7921 WiFi/BT device IDs (LP: #1937004) - - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for Foxconn - - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for IMC Network - - SAUCE: Bluetooth: btusb: Add support for Foxconn Mediatek Chip - - * Fix display output on HP hybrid GFX laptops (LP: #1936296) - - drm/i915: Invoke another _DSM to enable MUX on HP Workstation laptops - - * Miscellaneous Ubuntu changes - - rebase to v5.14-rc3 - - [Config] updateconfigs following 5.14-rc3 rebase - - [ Upstream Kernel Changes ] - - * Rebase to v5.14-rc3 - - -- Paolo Pisati Mon, 26 Jul 2021 12:52:38 +0200 - -linux-unstable (5.14.0-2.2) impish; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - SAUCE: xr-usb-serial: update return code for xr_usb_serial_tty_write_room() - and xr_usb_serial_tty_chars_in_buffer() - - SAUCE: platform/x86: dell-uart-backlight: update return code for - uart_chars_in_buffer(() - - [Config] updateconfigs following 5.14-rc2 rebase - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] FTBFS: disable ubuntu/xr-usb-serial" - - Revert "UBUNTU: [Config] FTBFS: disable DELL_UART_BACKLIGHT" - - [ Upstream Kernel Changes ] - - * Rebase to v5.14-rc2 - - -- Paolo Pisati Thu, 22 Jul 2021 11:03:28 +0200 - -linux-unstable (5.14.0-1.1) impish; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Packaging] bump kernel version to 5.14 - - [Config] updateconfigs following 5.14-rc1 rebase - - [Config] update annotations - - [Packaging] FTBFS: disable zfs - - [Config] FTBFS: disable DELL_UART_BACKLIGHT - - [Config] FTBFS: disable ubuntu/xr-usb-serial - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Packaging] update variants" - - [ Upstream Kernel Changes ] - - * Rebase to v5.14-rc1 - - -- Paolo Pisati Fri, 16 Jul 2021 15:20:04 +0200 - -linux-unstable (5.14.0-0.0) impish; urgency=medium - - * Empty entry - - -- Paolo Pisati Tue, 13 Jul 2021 12:15:35 +0200 - -linux (5.13.0-11.11) impish; urgency=medium - - * impish/linux: 5.13.0-11.11 -proposed tracker (LP: #1933854) - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - * Support builtin revoked certificates (LP: #1932029) - - [Packaging] build canonical-revoked-certs.pem from branch/arch certs - - [Packaging] Revoke 2012 UEFI signing certificate as built-in - - [Config] Configure CONFIG_SYSTEM_REVOCATION_KEYS with revoked keys - - * Miscellaneous Ubuntu changes - - [Packaging] Change source package name to linux - - * Miscellaneous upstream changes - - mm/page_alloc: Correct return value of populated elements if bulk array is - populated - - -- Andrea Righi Tue, 29 Jun 2021 07:50:25 +0200 - -linux (5.13.0-10.10) impish; urgency=medium - - * Empty entry - - -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 - -linux-unstable (5.13.0-10.10) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-10.10 -proposed tracker (LP: #1933795) - - * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) - - media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K - - * initramfs-tools & kernel: use zstd as the default compression method - (LP: #1931725) - - s390/decompressor: correct BOOT_HEAP_SIZE condition - - s390/boot: add zstd support - - [Packaging] use ZSTD to compress s390 kernels - - * Miscellaneous Ubuntu changes - - SAUCE: selftests: tls: fix chacha+bidir tests - - SAUCE: selftests: icmp_redirect: support expected failures - - [Config] update configs and annotations after rebase to 5.13 - - * Miscellaneous upstream changes - - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE - - [ Upstream Kernel Changes ] - - * Rebase to v5.13 - - -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 - -linux-unstable (5.13.0-9.9) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-9.9 -proposed tracker (LP: #1933070) - - * Add support for selective build of special drivers (LP: #1912789) - - [Packaging] Add support for ODM drivers - - [Packaging] Turn on ODM support for amd64 - - [Packaging] Fix ODM support in actual build - - [Packaging] Fix ODM DRIVERS Kconfig - - * Add support for IO functions of AAEON devices (LP: #1929504) - - ODM: [Config] update config for AAEON devices - - ODM: hwmon: add driver for AAEON devices - - ODM: leds: add driver for AAEON devices - - ODM: watchdog: add driver for AAEON devices - - ODM: gpio: add driver for AAEON devices - - ODM: mfd: Add support for IO functions of AAEON devices - - * Disable hv-kvp-daemon.service on certain instance types (LP: #1932081) - - [Packaging]: Add kernel command line condition to hv-kvp-daemon service - - * Fix non-working GPU on Some HP desktops (LP: #1931147) - - PCI: Coalesce host bridge contiguous apertures - - * Miscellaneous Ubuntu changes - - SAUCE: selftests: seccomp: bump up timeout to 5min - - SAUCE: Revert "net/tls(TLS_SW): Add selftest for 'chunked' sendfile test" - - [Config] update annotations after rebase to 5.13-rc7 - - [ Upstream Kernel Changes ] - - * Rebase to v5.13-rc7 - - -- Andrea Righi Mon, 21 Jun 2021 10:55:36 +0200 - -linux-unstable (5.13.0-8.8) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-8.8 -proposed tracker (LP: #1932018) - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * initramfs-tools & kernel: use zstd as the default compression method - (LP: #1931725) - - [Config] use ZSTD to compress amd64 kernels - - * Miscellaneous Ubuntu changes - - [Config] enable signing for ppc64el - - SAUCE: powerpc: Fix initrd corruption with relative jump labels - - -- Andrea Righi Tue, 15 Jun 2021 15:07:34 +0200 - -linux-unstable (5.13.0-7.7) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-7.7 -proposed tracker (LP: #1931840) - - * Packaging resync (LP: #1786013) - - update dkms package versions - - [Packaging] resync getabis - - [Packaging] update helper scripts - - update dkms package versions - - * Intel ADL-S graphics feature enabling (LP: #1931240) - - SAUCE: drm/i915/adl_s: ADL-S platform Update PCI ids for Mobile BGA - - * Kernel package builds running out of space on builders (LP: #1930713) - - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n - - * Miscellaneous Ubuntu changes - - [Debian] remove nvidia dkms build support - - [Config] remove now unsued do_dkms_nvidia* build variables - - [Config] enable signing for s390x - - [Config] update annotations after configs review - - [Config] update toolchain versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.13-rc6 - - -- Andrea Righi Mon, 14 Jun 2021 11:53:08 +0200 - -linux-unstable (5.13.0-6.6) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-6.6 -proposed tracker (LP: #1931071) - - * Kernel package builds running out of space on builders (LP: #1930713) - - [Debian] use stamps for flavour install targets - - [Debian] run install-$(flavour) targets during build phase - - [Debian] remove dh_testroot from install targets - - [Debian] dkms-build -- use fakeroot if not running as root - - [Debian] exclude $(DEBIAN)/__abi.current from linux-source - - * [UBUNTU 21.04] tools/kvm_stat: Add restart delay (LP: #1921870) - - [Debian] install kvm_stat systemd service - - * Debugging symbols (dbgsym) packages are missing GDB kernel scripts - (LP: #1928715) - - [Packaging] Build and include GDB Python scripts into debug packages - - * Can't detect intel wifi 6235 (LP: #1920180) - - SAUCE: iwlwifi: add new pci id for 6235 - - * Select correct boot VGA when BIOS doesn't do it properly (LP: #1929217) - - vgaarb: Use ACPI HID name to find integrated GPU - - * Fix kernel panic on Intel Bluetooth (LP: #1928838) - - Bluetooth: Shutdown controller after workqueues are flushed or cancelled - - * build module CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m for 5.11, 5.13-rc2 - and later (LP: #1921632) - - [Config] enable soundwire audio mach driver - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_SND_SOC_RT1308 can only be enabled on amd64 - - [ Upstream Kernel Changes ] - - * Rebase to v5.13-rc5 - - -- Andrea Righi Mon, 07 Jun 2021 10:45:13 +0200 - -linux-unstable (5.13.0-5.5) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-5.5 -proposed tracker (LP: #1930205) - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y - - -- Andrea Righi Mon, 31 May 2021 12:32:38 +0200 - -linux-unstable (5.13.0-4.4) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-4.4 -proposed tracker (LP: #1929404) - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Support importing mokx keys into revocation list from the mok table - (LP: #1928679) - - SAUCE: integrity: add informational messages when revoking certs - - * Support importing mokx keys into revocation list from the mok table - (LP: #1928679) // CVE-2020-26541 when certificates are revoked via - MokListXRT. - - SAUCE: integrity: Load mokx certs from the EFI MOK config table - - * Miscellaneous Ubuntu changes - - [Config] Temporarily disable signing for ppc64el and s390x - - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Be more careful about copying up - sxid files" - - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Propogate nosuid from lower and - upper mounts" - - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Enable user namespace mounts" - - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: ensure mounter privileges when - reading directories" - - SAUCE: Revert "UBUNTU: SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags" - - [ Upstream Kernel Changes ] - - * Rebase to v5.13-rc3 - - -- Andrea Righi Mon, 24 May 2021 13:06:17 +0200 - -linux-unstable (5.13.0-3.3) impish; urgency=medium - - * impish/linux-unstable: 5.13.0-3.3 -proposed tracker (LP: #1928655) - - [ Upstream Kernel Changes ] - - * Rebase to v5.13-rc2 - - -- Andrea Righi Mon, 17 May 2021 11:55:02 +0200 - -linux-unstable (5.13.0-2.2) impish; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] enable CONFIG_DEBUG_INFO_COMPRESSED - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] temporarily disable BPF JIT" - - -- Andrea Righi Fri, 14 May 2021 09:19:02 +0200 - -linux-unstable (5.13.0-1.1) impish; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v5.13-rc1 - - -- Andrea Righi Wed, 12 May 2021 11:35:23 +0200 - -linux-unstable (5.13.0-0.0) impish; urgency=medium - - * Empty entry - - -- Andrea Righi Tue, 11 May 2021 08:40:09 +0200 - -linux-unstable (5.12.0-11.11) impish; urgency=medium - - * Impish update: v5.12.1 upstream stable release (LP: #1927094) - - net: hso: fix NULL-deref on disconnect regression - - USB: CDC-ACM: fix poison/unpoison imbalance - - iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd() - - cfg80211: fix locking in netlink owner interface destruction - - mei: me: add Alder Lake P device id. - - Linux 5.12.1 - - * Packaging resync (LP: #1786013) // Impish update: v5.12.1 upstream stable - release (LP: #1927094) - - update dkms package versions - - * Gigabyte R120-T33 (ARM ThunderX SoC) fails to boot in ACPI mode - (LP: #1925075) // Impish update: v5.12.1 upstream stable release - (LP: #1927094) - - ACPI: GTDT: Don't corrupt interrupt mappings on watchdow probe failure - - * Fix kernel panic at boot on dual GFX systems (LP: #1926792) // Impish - update: v5.12.1 upstream stable release (LP: #1927094) - - drm/amdgpu: Register VGA clients after init can no longer fail - - * On TGL platforms screen shows garbage when browsing website by scrolling - mouse (LP: #1926579) // Impish update: v5.12.1 upstream stable release - (LP: #1927094) - - SAUCE: drm/i915/display: Disable PSR2 if TGL Display stepping is B1 from A0 - - * CirrusLogic: Cracking noises appears in built-in speaker when output volume - is set >80% (LP: #1924997) // Impish update: v5.12.1 upstream stable release - (LP: #1927094) - - SAUCE: ALSA: hda/cirrus: Use CS8409 Equalizer to fix abnormal sounds on - Bullseye - - * Enable mute/micmute LEDs and limit mic boost on EliteBook 845 G8 - (LP: #1925415) // Impish update: v5.12.1 upstream stable release - (LP: #1927094) - - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook - 845 G8 - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: PCI: Disable broken RTIT_BAR of Intel TH" - - Revert "UBUNTU: [Config] temporarily disable ZFS" - - -- Paolo Pisati Tue, 04 May 2021 18:35:54 +0200 - -linux-unstable (5.12.0-10.10) impish; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Packaging] Drop versioned ABI directory names - - [Packaging] getabis: Download ABIs into an unversioned directory - - [Packaging] final-checks: Handle unversioned ABI directories - - bump to impish - - [Config] GCC version update - - -- Paolo Pisati Thu, 29 Apr 2021 12:27:20 +0200 - -linux-unstable (5.12.0-9.9) impish; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc8 - - -- Seth Forshee Mon, 26 Apr 2021 11:14:16 -0500 - -linux-unstable (5.12.0-8.8) hirsute; urgency=medium - - * CVE-2021-3492 - - SAUCE: shiftfs: free allocated memory in shiftfs_btrfs_ioctl_fd_replace() - error paths - - SAUCE: shiftfs: handle copy_to_user() return values correctly - - * Fix no picture from HDMI when it's plugged after boot (LP: #1924238) - - drm/i915/display: Handle lane polarity for DDI port - - * hirsute beta desktop AMD64 ISO kernel panic on boot when booting using UEFI - (LP: #1922403) - - SAUCE: efifb: Check efifb_pci_dev before using it - - * Miscellaneous Ubuntu changes - - Rebase to v5.12-rc8 - - [Config] updateconfigs following 5.12-rc8 rebase - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc8 - - -- Paolo Pisati Mon, 19 Apr 2021 11:37:27 +0200 - -linux-unstable (5.12.0-7.7) hirsute; urgency=medium - - * drm/i915: Drop force_probe requirement for Rocket Lake (LP: #1905466) - - drm/i915/rkl: Remove require_force_probe protection - - * HP m400 cartridges fail to find NIC when deploying hirsute (LP: #1918793) - - PCI: xgene: Fix cfg resource mapping - - * Update - Fix no screen show on display after S3 on CML-R (LP: #1922768) - - drm/i915/gen9bc: Handle TGP PCH during suspend/resume - - * Miscellaneous Ubuntu changes - - SAUCE: RDMA/core: Introduce peer memory interface - - Rebase to v5.12-rc7 - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc7 - - -- Paolo Pisati Mon, 12 Apr 2021 11:48:07 +0200 - -linux-unstable (5.12.0-6.6) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - * i915 doesn't support some high pixel clock 4k * 60Hz monitors (LP: #1922372) - - drm/i915/vbt: update DP max link rate table - - * Tegra "mmc0: Timeout waiting for hardware interrupt" (LP: #1921140) - - SAUCE: mmc: host: Add required callbacks to set/clear CQE_EN bit - - * Enable ath11k debugfs/tracing (LP: #1922033) - - [Config] enable ath11k debugfs/tracing - - * Fix mic on P620 after S3 resume (LP: #1921757) - - ALSA: usb-audio: Carve out connector value checking into a helper - - ALSA: usb-audio: Check connector value on resume - - * Miscellaneous Ubuntu changes - - [Config] amd64,arm64: build KFENCE support but disable it by default - (KFENCE_SAMPLE_INTERVAL=0) - - Rebase to v5.12-rc6 - - * Miscellaneous upstream changes - - drm/dp: add MSO related DPCD registers - - drm/i915/edp: reject modes with dimensions other than fixed mode - - drm/i915/edp: always add fixed mode to probed modes in ->get_modes() - - drm/i915/edp: read sink MSO configuration for eDP 1.4+ - - drm/i915/reg: add stream splitter configuration definitions - - drm/i915/mso: add splitter state readout for platforms that support it - - drm/i915/mso: add splitter state check - - drm/i915/edp: modify fixed and downclock modes for MSO - - drm/i915/edp: enable eDP MSO during link training - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc6 - - -- Paolo Pisati Wed, 07 Apr 2021 11:42:55 +0200 - -linux-unstable (5.12.0-5.5) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * alsa/realtek: extend the delay time in the determine_headset_type for a - Dell AIO (LP: #1920747) - - SAUCE: ALSA: hda/realtek: fix a determine_headset_type issue for a Dell AIO - - * power off stress test will hang on the TGL machines (LP: #1919930) - - SAUCE: ASoC: SOF: Intel: TGL: set shutdown callback to hda_dsp_shutdown - - [Config] set SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 to n - - * lockdown on power (LP: #1855668) - - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode - - * Miscellaneous Ubuntu changes - - [Config] arm64 -- unify build_image and kernel_file values - - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). - - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot - mode - - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode - - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set - - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature - verify - - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot - - SAUCE: (lockdown) security: lockdown: Make - CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic - - SAUCE: xr-usb-serial: clean up indentation - - SAUCE: xr-usb-serial: clean up build warnings - - SAUCE: apparmor: Fix build error, make sk parameter const - - Rebase to v5.12-rc5 - - [Config] updateconfigs following v5.12-rc5 rebase - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: (lockdown) s390: Lock down the kernel when the IPL - secure flag is set" - - Revert "UBUNTU: SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to - indicate secure boot mode" - - Revert "UBUNTU: SAUCE: (lockdown) powerpc: lock down kernel in secure boot - mode" - - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: Make - CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic" - - Revert "UBUNTU: SAUCE: (lockdown) arm64: Allow locking down the kernel under - EFI secure boot" - - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for - module signature verify" - - Revert "UBUNTU: SAUCE: (lockdown) efi: Lock down the kernel if booted in - secure boot mode" - - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock - the kernel down" - - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() use - efi_status_to_str() to print error messages." - - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework - efi_status_to_err()." - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc5 - - -- Paolo Pisati Mon, 29 Mar 2021 12:59:38 +0200 - -linux-unstable (5.12.0-4.4) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Fix broken efifb on graphics device without driver (LP: #1914411) - - SAUCE: efifb: Ensure graphics device for efifb stays at PCI D0 - - * Fix system sleep on TGL systems with Intel ME (LP: #1919321) - - SAUCE: PCI: Serialize TGL e1000e PM ops - - * Miscellaneous Ubuntu changes - - Rebase to v5.12-rc4 - - [Config] updateconfigs following v5.12-rc4 rebase - - * Miscellaneous upstream changes - - riscv: dts: fu740: fix cache-controller interrupts - - riscv: sifive: fu740: cpu{1, 2, 3, 4} set compatible to sifive, u74-mc - - riscv: sifive: unmatched: update for 16GB rev3 - - riscv: Add 3 SBI wrapper functions to get cpu manufacturer information - - riscv: Get CPU manufacturer information - - riscv: Introduce alternative mechanism to apply errata solution - - riscv: sifive: apply errata "cip-453" patch - - clk: sifive: Add pcie_aux clock in prci driver for PCIe driver - - clk: sifive: Use reset-simple in prci driver for PCIe driver - - MAINTAINERS: Add maintainers for SiFive FU740 PCIe driver - - dt-bindings: PCI: Add SiFive FU740 PCIe host controller - - PCI: designware: Add SiFive FU740 PCIe host controller driver - - riscv: dts: Add PCIe support for the SiFive FU740-C000 SoC - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc4 - - -- Paolo Pisati Mon, 22 Mar 2021 12:43:14 +0100 - -linux-unstable (5.12.0-3.3) hirsute; urgency=medium - - * riscv: revert SiFive Unleashed CPUFreq (LP: #1917433) - - SAUCE: Revert "SiFive Unleashed CPUFreq" - - * Dell Precision 5550 takes up to 10 seconds to respond when coming out of - sleep (LP: #1919123) - - SAUCE: Input: i8042 - add dmi quirk - - * LRMv4: switch to signing nvidia modules via the Ubuntu Modules signing key - (LP: #1918134) - - [Packaging] sync dkms-build et al from LRMv4 - - * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) - - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Enable Tegra support in arm64 for NVIDIA Jetson (LP: #1918471) - - [Config] enable ARCH_TEGRA and all Tegra SOC's - - [Packaging] include modern Tegra modules - - * Cirrus Audio Codec CS8409/CS42L42: Input Device does not switch to headset - Mic when a headset is inserted (LP: #1918378) - - SAUCE: ALSA: hda/cirrus: Fix Headset Mic volume control name - - * Cirrus Audio Codec CS8409/CS42L42 support (LP: #1916554) - - ALSA: hda/cirrus: Increase AUTO_CFG_MAX_INS from 8 to 18 - - ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion - codec. - - ALSA: hda/cirrus: Add jack detect interrupt support from CS42L42 companion - codec. - - ALSA: hda/cirrus: Add Headphone and Headset MIC Volume Control - - * drm/i915: Drop force_probe requirement for JSL (LP: #1917843) - - SAUCE: drm/i915: Drop require_force_probe from JSL - - * Miscellaneous Ubuntu changes - - [Packaging] Skip d-i code if udebs are disabled - - [Packaging] Disable udebs if $DEBIAN/d-i doesn't exist - - [Packaging] remove dh-systemd build dependency - - [Config] fix several annotaions with enforcement typos - - [Config] refresh annotations - - [Config] updateconfigs following v5.12-rc3 rebase - - annotations: fixup after v5.12-rc3 rebase - - Rebase to v5.12-rc3 - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc3 - - -- Paolo Pisati Tue, 16 Mar 2021 18:43:03 +0100 - -linux-unstable (5.12.0-2.2) hirsute; urgency=medium - - * Miscellaneous Ubuntu changes - - Rebase to v5.12-rc2 - - [Config] updateconfigs following v5.12-rc2 rebase - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc2 - - -- Paolo Pisati Mon, 08 Mar 2021 11:22:04 +0100 - -linux-unstable (5.12.0-1.1) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Support no udeb profile (LP: #1916095) - - [Packaging] replace custom filter script with dctrl-tools - - [Packaging] correctly implement noudeb build profiles. - - * Miscellaneous Ubuntu changes - - [Packaging] dkms-versions -- remove nvidia-graphics-drivers-440-server - - [Debian] run ubuntu-regression-suite for linux-unstable - - [Packaging] remove Provides: aufs-dkms - - [Config] update config and annotations following v5.12-rc1 rebase - - [Config] disable nvidia and nvidia_server builds - - [Config] temporarily disable ZFS - - temporarily disable modules check - - annotations: s390: temporarily remove CONFIG_KMSG_IDS - - [Config] amd64: FTBFS: disable HIO - - [Config] FTBFS: disable SHIFT_FS - - [Config] s390: temporarily remove CONFIG_KMSG_IDS - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] disable nvidia and nvidia_server builds" - - Revert "UBUNTU: SAUCE: s390: kernel message catalog" - - [ Upstream Kernel Changes ] - - * Rebase to v5.12-rc1 - - -- Paolo Pisati Thu, 04 Mar 2021 18:26:12 +0100 - -linux-unstable (5.12.0-0.0) hirsute; urgency=medium - - * Empty entry - - -- Paolo Pisati Thu, 04 Mar 2021 18:17:32 +0100 - -linux-unstable (5.11.0-10.11) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - * Support CML-S CPU + TGP PCH (LP: #1909457) - - drm/i915/rkl: new rkl ddc map for different PCH - - SAUCE: drm/i915/gen9_bc : Add TGP PCH support - - * Use DCPD to control HP DreamColor panel (LP: #1911001) - - SAUCE: drm/dp: Another HP DreamColor panel brigntness fix - - * Update nvidia dkms build for module linker script changes - - [Packaging] build-dkms--nvidia-N -- Update for preprocessed module linker - script - - * Please trust Canonical Livepatch Service kmod signing key (LP: #1898716) - - [Config] enable CONFIG_MODVERSIONS=y - - [Packaging] build canonical-certs.pem from branch/arch certs - - [Config] add Canonical Livepatch Service key to SYSTEM_TRUSTED_KEYS - - [Config] add ubuntu-drivers key to SYSTEM_TRUSTED_KEYS - - * Miscellaneous Ubuntu changes - - [Config] re-enable nvidia dkms - - SAUCE: selftests: memory-hotplug: bump timeout to 10min - - [Debian] update-aufs.sh -- Don't apply tmpfs-idr.patch - - [Config] Update configs - - [Config] disable nvidia and nvidia_server builds - - SAUCE: Import aufs driver - - [Config] CONFIG_AUFS_FS=n - - [Config] refresh annotations file - - [Config] set CONFIG_MIPI_I3C_HCI=m consistently - - [Config] set CONFIG_PINCTRL_MSM8953=m on armhf generic-lpae - - [Packaging] Change source package name to linux-unstable - - [Config] update LD_VERSION in config due to toolchain update - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit - ino_t" - - -- Andrea Righi Mon, 22 Feb 2021 07:18:07 +0100 - -linux-unstable (5.11.0-9.10) hirsute; urgency=medium - - * Empty entry - - -- Andrea Righi Mon, 22 Feb 2021 07:02:45 +0100 - -linux (5.11.0-9.10) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Config] update configs/annotations after rebase to 5.11 - - zfs-modules.ignore: add zzstd - - [ Upstream Kernel Changes ] - - * Rebase to v5.11 - - -- Andrea Righi Mon, 15 Feb 2021 16:29:36 +0100 - -linux (5.11.0-8.9) hirsute; urgency=medium - - * Missing device id for Intel TGL-H ISH [8086:43fc] in intel-ish-hid driver - (LP: #1914543) - - SAUCE: HID: intel-ish-hid: ipc: Add Tiger Lake H PCI device ID - - * Add support for new Realtek ethernet NIC (LP: #1914604) - - r8169: Add support for another RTL8168FP - - * Miscellaneous Ubuntu changes - - SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit ino_t - - [Config] Set CONFIG_TMPFS_INODE64=n for s390x - - [Config] re-enable ZFS - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc7 - - -- Andrea Righi Mon, 08 Feb 2021 11:56:23 +0100 - -linux (5.11.0-7.8) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 - (LP: #1911359) - - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y - - * Remove scary stack trace from Realtek WiFi driver (LP: #1913263) - - rtw88: reduce the log level for failure of tx report - - * Fix unexpected AER/DPC on PCH400 and PCH500 (LP: #1913691) - - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on all CML root ports" - - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on CML root port" - - SAUCE: PCI/AER: Disable AER interrupt during suspend - - SAUCE: PCI/DPC: Disable DPC interrupt during suspend - - * switch to an autogenerated nvidia series based core via dkms-versions - (LP: #1912803) - - [Packaging] nvidia -- use dkms-versions to define versions built - - [Packaging] update-version-dkms -- maintain flags fields - - * Introduce the new NVIDIA 460-server series and update the 460 series - (LP: #1913200) - - [Config] dkms-versions -- add the 460-server nvidia driver - - * Fix the video can't output through WD19TB connected with TGL platform during - cold-boot (LP: #1910211) - - SAUCE: drm/i915/dp: Prevent setting LTTPR mode if no LTTPR is detected - - * Stop using get_scalar_status command in Dell AIO uart backlight driver - (LP: #1865402) - - SAUCE: platform/x86: dell-uart-backlight: add get_display_mode command - - * Miscellaneous Ubuntu changes - - SAUCE: selftests/seccomp: Accept any valid fd in user_notification_addfd - - [Packaging] Don't disable CONFIG_DEBUG_INFO in headers packages - - [Config] update configs/annotations after rebase to 5.11-rc6 - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc6 - - -- Andrea Righi Mon, 01 Feb 2021 10:27:52 +0100 - -linux (5.11.0-6.7) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Prevent thermal shutdown during boot process (LP: #1906168) - - thermal/drivers/acpi: Use hot and critical ops - - thermal/core: Remove notify ops - - thermal: int340x: Fix unexpected shutdown at critical temperature - - thermal: intel: pch: Fix unexpected shutdown at critical temperature - - * riscv: backport support for SiFive Unmatched (LP: #1910965) - - RISC-V: Update l2 cache DT documentation to add support for SiFive FU740 - - RISC-V: sifive_l2_cache: Update L2 cache driver to support SiFive FU740 - - dt-bindings: riscv: Update DT binding docs to support SiFive FU740 SoC - - riscv: dts: add initial support for the SiFive FU740-C000 SoC - - dt-bindings: riscv: Update YAML doc to support SiFive HiFive Unmatched board - - riscv: dts: add initial board data for the SiFive HiFive Unmatched - - PCI: microsemi: Add host driver for Microsemi PCIe controller - - Microsemi PCIe expansion board DT entry. - - SiFive Unleashed CPUFreq - - SiFive HiFive Unleashed: Add PWM LEDs (D1, D2, D3, D4) - - * initramfs unpacking failed (LP: #1835660) - - lib/decompress_unlz4.c: correctly handle zero-padding around initrds. - - * Miscellaneous Ubuntu changes - - [Config] update configs and annotations after rebase to 5.11-rc5 - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc5 - - -- Andrea Righi Mon, 25 Jan 2021 09:31:31 +0100 - -linux (5.11.0-5.6) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Config] update config and annotations after rebase to 5.11-rc4 - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc4 - - -- Andrea Righi Mon, 18 Jan 2021 10:46:10 +0100 - -linux (5.11.0-4.5) hirsute; urgency=medium - - * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 - (LP: #1911359) - - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y - - -- Andrea Righi Thu, 14 Jan 2021 12:53:26 +0100 - -linux (5.11.0-3.4) hirsute; urgency=medium - - * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 - (LP: #1911359) - - bpf: Allow empty module BTFs - - libbpf: Allow loading empty BTFs - - -- Andrea Righi Thu, 14 Jan 2021 07:43:45 +0100 - -linux (5.11.0-2.3) hirsute; urgency=medium - - * DMI entry syntax fix for Pegatron / ByteSpeed C15B (LP: #1910639) - - Input: i8042 - unbreak Pegatron C15B - - * SYNA30B4:00 06CB:CE09 Mouse on HP EliteBook 850 G7 not working at all - (LP: #1908992) - - HID: multitouch: Enable multi-input for Synaptics pointstick/touchpad device - - * debian/scripts/file-downloader does not handle positive failures correctly - (LP: #1878897) - - [Packaging] file-downloader not handling positive failures correctly - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * CVE-2021-1052 // CVE-2021-1053 - - [Packaging] NVIDIA -- Add the NVIDIA 460 driver - - * Miscellaneous Ubuntu changes - - [Packaging] Remove nvidia-455 dkms build - - SAUCE: ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP - machines - - [Config] update configs and annotations after rebase to 5.11-rc3 - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc3 - - -- Andrea Righi Mon, 11 Jan 2021 09:52:27 +0100 - -linux (5.11.0-1.2) hirsute; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc2 - - -- Andrea Righi Thu, 07 Jan 2021 16:57:01 +0100 - -linux (5.11.0-0.1) hirsute; urgency=medium - - * dep-8 ubuntu-regression-suite tests are not run for all linux-hwe-* kernels - (LP: #1908529) - - [dep-8] Allow all hwe kernels - - * Fix reading speed and duplex sysfs on igc device (LP: #1906851) - - igc: Report speed and duplex as unknown when device is runtime suspended - - * rtwpci driver blocks the system to enter PC10, stuck at PC3 (LP: #1907200) - - SAUCE: rtw88: 8723de: let cpu enter c10 - - * [21.04 FEAT] Deactivate CONFIG_QETH_OSN kernel config option (LP: #1906370) - - [Config] Deactivate CONFIG_QETH_OSN kernel config option - - * Add dpcd backlight control for 0x4c83 0x4f41 (LP: #1905663) - - SAUCE: drm/dp: Add dpcd backlight control for 0x4c83 0x4f41 - - * disable building bpf selftests (LP: #1908144) - - SAUCE: selftests/bpf: Clarify build error if no vmlinux - - SAUCE: selftests: Skip BPF selftests by default - - disable building bpf selftests (no VMLINUX_BTF) - - * Miscellaneous Ubuntu changes - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot - mode - - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set - - [Config] update configs and annotations after rebase to v5.11-rc1 - - hio: fix build error with kernel 5.11 - - SAUCE: shiftfs: fix build error with 5.11 - - [Config] temporarily disable ZFS - - check-aliases: do not error if modules.alias does not exist - - ppc64el: don't build stripped vdso - - * Miscellaneous upstream changes - - irq: export irq_check_status_bit - - [ Upstream Kernel Changes ] - - * Rebase to v5.11-rc1 - - -- Andrea Righi Mon, 04 Jan 2021 09:17:48 +0100 - -linux (5.11.0-0.0) hirsute; urgency=medium - - * Empty entry - - -- Andrea Righi Wed, 30 Dec 2020 09:04:41 +0100 - -linux (5.10.0-9.10) hirsute; urgency=medium - - * Use INTx for Pericom USB controllers (LP: #1906839) - - PCI: Disable MSI for Pericom PCIe-USB adapter - - * disable building bpf selftests (LP: #1908144) - - SAUCE: selftests/bpf: clarify build error if no vmlinux - - SAUCE: selftests: Skip BPF seftests by default - - disable building bpf selftests (no VMLINUX_BTF) - - * Miscellaneous Ubuntu changes - - [Config] Enable CONFIG_BPF_LSM - - * Miscellaneous upstream changes - - Revert "md: change mddev 'chunk_sectors' from int to unsigned" - - Revert "dm raid: fix discard limits for raid1 and raid10" - - -- Andrea Righi Tue, 15 Dec 2020 10:16:14 +0100 - -linux (5.10.0-8.9) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - * Fix bpf selftest compilation with clang 11 - - bpf: Fix selftest compilation on clang 11 - - * Miscellaneous Ubuntu changes - - [Config] update configs and annotations after rebase to v5.10 - - [ Upstream Kernel Changes ] - - * Rebase to v5.10 - - -- Andrea Righi Mon, 14 Dec 2020 08:57:57 +0100 - -linux (5.10.0-7.8) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Fix linux-libc-dev build for hirsute forward port kernels (LP: #1904067) - - [Debian] Build linux-libc-dev for debian.master* branches - - * Update kernel packaging to support forward porting kernels (LP: #1902957) - - [Debian] Update for leader included in BACKPORT_SUFFIX - - * Introduce the new NVIDIA 455 series (LP: #1897751) - - [Packaging] NVIDIA -- Add signed modules for the 455 driver - - * 5.10 kernel fails to boot with secure boot disabled (LP: #1904906) - - [Config] CONFIG_RCU_SCALE_TEST=n - - * Miscellaneous Ubuntu changes - - [Config] s390x: disable GPIO_CDEV - - [Config] ARM_CMN=m - - [Config] disable GPIO_CDEV_V1 - - [Config] Reorder annotations after 5.10-rc6 rebase - - [Packaging] Remove nvidia-435 dkms build - - [Packaging] Change source package name to linux - - [Config] Update configs and annotations after rebase to v5.10-rc7 - - SAUCE: Revert "mm/filemap: add static for function - __add_to_page_cache_locked" - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc7 - - -- Seth Forshee Mon, 07 Dec 2020 00:15:20 -0600 - -linux (5.10.0-6.7) hirsute; urgency=medium - - * Empty entry. - - -- Seth Forshee Sun, 06 Dec 2020 22:13:46 -0600 - -linux-5.10 (5.10.0-6.7) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Avoid double newline when running insertchanges (LP: #1903293) - - [Packaging] insertchanges: avoid double newline - - * Miscellaneous Ubuntu changes - - [Packaging]: linux-modules should depend on linux-image - - [Packaging]: linux-image should suggest linux-modules-extra - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc6 - - -- Andrea Righi Mon, 30 Nov 2020 07:47:34 +0100 - -linux-5.10 (5.10.0-5.6) hirsute; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] add CONFIG_INFINIBAND_VIRT_DMA - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc5 - - -- Andrea Righi Mon, 23 Nov 2020 13:17:44 +0100 - -linux-5.10 (5.10.0-4.5) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Packaging] reduce the size required to build packages - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc4 - - -- Andrea Righi Mon, 16 Nov 2020 08:33:54 +0100 - -linux-5.10 (5.10.0-3.4) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * e1000e: fix issues with S0ix (LP: #1902687) - - SAUCE: e1000e: fix S0ix flow to allow S0i3.2 subset entry - - SAUCE: e1000e: allow turning s0ix flows on for systems with ME - - SAUCE: e1000e: Add Dell's Comet Lake systems into s0ix heuristics - - SAUCE: e1000e: Add more Dell CML systems into s0ix heuristics - - [Config] Update CONFIG_E1000E for ppc64el in annotations - - * perf: Add support for Rocket Lake (LP: #1902004) - - SAUCE: perf/x86/intel: Add Rocket Lake CPU support - - SAUCE: perf/x86/cstate: Add Rocket Lake CPU support - - SAUCE: perf/x86/msr: Add Rocket Lake CPU support - - SAUCE: perf/x86/intel/uncore: Add Rocket Lake support - - * Miscellaneous Ubuntu changes - - [Config] Disable CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE - - [Config] update CONFIG_MST_IRQ after rebase to 5.10-rc3 - - [Config] drop obsolete SND_SST_IPC options - - [Config] re-enable ZFS - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc3 - - -- Andrea Righi Mon, 09 Nov 2020 09:37:08 +0100 - -linux-5.10 (5.10.0-2.3) hirsute; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] Switch arm64 default cpufreq governor to ondemand - - [Debian] Include scripts/module.lds from builddir in headers package - - -- Seth Forshee Tue, 03 Nov 2020 21:01:52 -0600 - -linux-5.10 (5.10.0-1.2) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Fix non-working Intel NVMe after S3 (LP: #1900847) - - SAUCE: PCI: Enable ACS quirk on all CML root ports - - * Miscellaneous Ubuntu changes - - [Packaging] move to hirsute - - [Config] Update configs and annotations after rebase to 5.10-rc2 - - [Config] Update numerous configs to conform with policy - - [Config] Switch default CPUFreq governer for arm64/armhf to schedultil - - [Config] Temporarily disable DEBUG_INFO_BTF for armhf - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc2 - - -- Seth Forshee Mon, 02 Nov 2020 13:18:27 -0600 - -linux-5.10 (5.10.0-0.1) hirsute; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - [Config] Update configs and annotations for v5.10-rc1 - - SAUCE: platform/x86: dell-uart-backlight: rename kzfree() to - kfree_sensitive() - - SAUCE: apparmor: rename kzfree() to kfree_sensitive() - - SAUCE: LSM: change ima_read_file() to use lsmblob - - SAUCE: LSM: Use lsmblob in smk_netlbl_mls() - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Packaging] Change source package name to linux-5.10" - - s390: correct __bootdata / __bootdata_preserved macros - - [ Upstream Kernel Changes ] - - * Rebase to v5.10-rc1 - - -- Paolo Pisati Tue, 27 Oct 2020 16:57:07 +0100 - -linux-5.10 (5.10.0-0.0) groovy; urgency=medium - - * Empty entry - - -- Paolo Pisati Mon, 26 Oct 2020 14:55:48 +0100 - -linux-5.9 (5.9.0-2.3) groovy; urgency=medium - - * Fix system reboot when disconnecting WiFi (LP: #1899726) - - iwlwifi: msix: limit max RX queues for 9000 family - - * booting linux-generic-lpae armhf kernel under qemu results in relocation out - of range, and thus no modules can be loaded (LP: #1899519) - - [Config] armhf: ARM_MODULE_PLTS=y - - * Fix broken MSI interrupt after HDA controller was suspended (LP: #1899586) - - ALSA: hda: fix jack detection with Realtek codecs when in D3 - - * CVE-2020-16119 - - SAUCE: dccp: avoid double free of ccid on child socket - - * python3-venv is gone (LP: #1896801) - - SAUCE: doc: remove python3-venv dependency - - * *-tools-common packages descriptions have typo "PGKVER" (LP: #1898903) - - [Packaging] Fix typo in -tools template s/PGKVER/PKGVER/ - - * Enable brightness control on HP DreamColor panel (LP: #1898865) - - SAUCE: drm/i915/dpcd_bl: Skip testing control capability with force DPCD - quirk - - SAUCE: drm/dp: HP DreamColor panel brigntness fix - - * HP Zbook Studio G7 boots into corrupted screen with PSR featured panel - (LP: #1897501) - - SAUCE: drm/i915/psr: allow overriding PSR disable param by quirk - - SAUCE: drm/dp: add DP_QUIRK_FORCE_PSR_CHIP_DEFAULT quirk to CMN prod-ID - 19-15 - - * Fix broken e1000e device after S3 (LP: #1897755) - - SAUCE: e1000e: Increase polling timeout on MDIC ready bit - - * Wakeup the system by touching the touchpad (LP: #1888331) - - HID: i2c-hid: Enable wakeup capability from Suspend-to-Idle - - * Enable LTR for endpoints behind VMD (LP: #1896598) - - SAUCE: PCI/ASPM: Enable LTR for endpoints behind VMD - - * [SRU] [Focal/OEM-5.6/Groovy]Fix AMD usb host controller lost after stress S3 - (LP: #1893914) - - SAUCE: xhci: workaround for S3 issue on AMD SNPS 3.0 xHC - - * debian/rules editconfigs does not work on s390x to change s390x only configs - (LP: #1863116) - - [Packaging] kernelconfig -- only update/edit configurations on architectures - we have compiler support - - * Fix non-working NVMe after S3 (LP: #1895718) - - SAUCE: PCI: Enable ACS quirk on CML root port - - * Miscellaneous Ubuntu changes - - SAUCE: bpf: Check CONFIG_BPF option for resolve_btfids - - SAUCE: tools resolve_btfids: Always force HOSTARCH - - packaging: arm64: add a 64KB mem pages flavour called 'generic-64k' - - packaging: arm64: generic-64k: skip ABI, modules and retpoline checks - - SAUCE: drm/i915/display: Fix null deref in intel_psr_atomic_check() - - [Config] Update toolchain versions - - [Config] Refresh annotations - - Add ubuntu-host module - - CONFIG_UBUNTU_HOST=m - - SAUCE: apparmor: drop prefixing abs root labels with '=' - - SAUCE: apparmor: disable showing the mode as part of a secid to secctx - - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() - - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() - - SAUCE: LSM: Infrastructure management of the sock security - - SAUCE: LSM: Create and manage the lsmblob data structure. - - SAUCE: LSM: Use lsmblob in security_audit_rule_match - - SAUCE: LSM: Use lsmblob in security_kernel_act_as - - SAUCE: net: Prepare UDS for security module stacking - - SAUCE: LSM: Use lsmblob in security_secctx_to_secid - - SAUCE: LSM: Use lsmblob in security_secid_to_secctx - - SAUCE: LSM: Use lsmblob in security_ipc_getsecid - - SAUCE: LSM: Use lsmblob in security_task_getsecid - - SAUCE: LSM: Use lsmblob in security_inode_getsecid - - SAUCE: LSM: Use lsmblob in security_cred_getsecid - - SAUCE: IMA: Change internal interfaces to use lsmblobs - - SAUCE: LSM: Specify which LSM to display - - SAUCE: LSM: Ensure the correct LSM context releaser - - SAUCE: LSM: Use lsmcontext in security_secid_to_secctx - - SAUCE: LSM: Use lsmcontext in security_inode_getsecctx - - SAUCE: LSM: security_secid_to_secctx in netlink netfilter - - SAUCE: NET: Store LSM netlabel data in a lsmblob - - SAUCE: LSM: Verify LSM display sanity in binder - - SAUCE: Audit: Add new record for multiple process LSM attributes - - SAUCE: Audit: Add a new record for multiple object LSM - - SAUCE: LSM: Add /proc attr entry for full LSM context - - SAUCE: AppArmor: Remove the exclusive flag - - SAUCE: Audit: Fix for missing NULL check - - * Miscellaneous upstream changes - - tty: hvcs: Don't NULL tty->driver_data until hvcs_cleanup() - - [ Upstream Kernel Changes ] - - * Rebase to v5.9 - - -- Seth Forshee Wed, 14 Oct 2020 13:31:18 -0500 - -linux-5.9 (5.9.0-1.2) groovy; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] Update configs after rebase to 5.9-rc6 - - SAUCE: dax: Fix compilation for CONFIG_DAX && !CONFIG_FS_DAX - - SAUCE: bpf: Use --no-fail option if CONFIG_BPF is not enabled - - SAUCE: tools resolve_btfids: Always force HOSTARCH - - [ Upstream Kernel Changes ] - - * Rebase to v5.9-rc6 - - -- Seth Forshee Mon, 21 Sep 2020 14:39:34 -0500 - -linux-5.9 (5.9.0-0.1) groovy; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] Update configs and annotations for v5.9-rc1 - - SAUCE: i915: Fix build error due to missing struct definition - - hio -- Update blk_queue_split() calls for changes in 5.9-rc1 - - hio -- Updates for move of make_request_fn to struct block_device_operations - - [Config] Disable zfs dkms build - - [Config] Disable nvidia dkms build - - [Config] Disable nvidia server dkms builds - - SAUCE: remoteproc: qcom: Use div_u64() for 64-bit division - - SAUCE: PCI/ASPM: Enable ASPM for links under VMD domain - - [Packaging] Bind hv_vss_daemon startup to hv_vss device - - [Packaging] bind hv_fcopy_daemon startup to hv_fcopy device - - [Config] Re-enable UEFI signing for arm64 - - SAUCE: Revert "UBUNTU: SAUCE: export __get_vm_area_caller() and map_kernel_range()" - - [Config] Set the default CPU governor to ONDEMAND - - [Packaging] update variants - - [Packaging] update helper scripts - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.9-rc5 - - -- Seth Forshee Thu, 17 Sep 2020 15:01:21 -0500 - -linux-5.9 (5.9.0-0.0) groovy; urgency=medium - - * Empty entry - - -- Seth Forshee Tue, 18 Aug 2020 16:48:03 -0500 - -linux (5.8.0-16.17) groovy; urgency=medium - - * groovy/linux: 5.8.0-16.17 -proposed tracker (LP: #1891233) - - * Miscellaneous Ubuntu changes - - hio -- Update to use bio_{start,end}_io_acct with 5.8+ - - Enable hio driver - - [Packaging] Temporarily disable building doc package contents - - -- Seth Forshee Tue, 11 Aug 2020 15:32:58 -0500 - -linux (5.8.0-15.16) groovy; urgency=medium - - * groovy/linux: 5.8.0-15.16 -proposed tracker (LP: #1891177) - - * Miscellaneous Ubuntu changes - - SAUCE: Documentation: import error c_funcptr_sig_re, c_sig_re (sphinx- - doc/sphinx@0f49e30c) - - -- Seth Forshee Tue, 11 Aug 2020 09:29:58 -0500 - -linux (5.8.0-14.15) groovy; urgency=medium - - * groovy/linux: 5.8.0-14.15 -proposed tracker (LP: #1891085) - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * msg_zerocopy.sh in net from ubuntu_kernel_selftests failed (LP: #1812620) - - selftests/net: relax cpu affinity requirement in msg_zerocopy test - - * Fix missing HDMI/DP Audio on an HP Desktop (LP: #1890441) - - ALSA: hda/hdmi: Add quirk to force connectivity - - * Add initial audio support for Lenovo ThinkStation P620 (LP: #1890317) - - ALSA: usb-audio: Add support for Lenovo ThinkStation P620 - - * Fix IOMMU error on AMD Radeon Pro W5700 (LP: #1890306) - - PCI: Mark AMD Navi10 GPU rev 0x00 ATS as broken - - * Enlarge hisi_sec2 capability (LP: #1890222) - - crypto: hisilicon - update SEC driver module parameter - - * Miscellaneous Ubuntu changes - - [Config] Re-enable signing for ppc64el - - -- Seth Forshee Mon, 10 Aug 2020 15:26:46 -0500 - -linux (5.8.0-13.14) groovy; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] Remove i386 configs - - SAUCE: apply a workaround to re-enable CONFIG_CRYPTO_AEGIS128_SIMD - - SAUCE: export __get_vm_area_caller() and map_kernel_range() - - [Config] drop CONFIG_BINFMT_AOUT enforcement - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD" - - [ Upstream Kernel Changes ] - - * Rebase to v5.8 - - -- Andrea Righi Tue, 04 Aug 2020 09:51:50 +0200 - -linux (5.8.0-12.13) groovy; urgency=medium - - * groovy/linux: 5.8.0-12.13 -proposed tracker (LP: #1889481) - - * Fix right speaker of HP laptop (LP: #1889375) - - SAUCE: hda/realtek: Fix right speaker of HP laptop - - * blk_update_request error when mount nvme partition (LP: #1872383) - - SAUCE: nvme-pci: prevent SK hynix PC400 from using Write Zeroes command - - * Add support for Atlantic NIC firmware v4 (LP: #1886908) - - Revert "UBUNTU: SAUCE: net: atlantic: Add support for firmware v4" - - net: atlantic: align return value of ver_match function with function name - - net: atlantic: add support for FW 4.x - - * Miscellaneous Ubuntu changes - - [Debian] Fix debian/tests for linux-5.8 -> linux rename - - SAUCE: selftests/powerpc: return skip code for spectre_v2 - - -- Seth Forshee Wed, 29 Jul 2020 16:58:47 -0500 - -linux (5.8.0-11.12) groovy; urgency=medium - - * groovy/linux: 5.8.0-11.12 -proposed tracker (LP: #1889336) - - * Miscellaneous Ubuntu changes - - [Packaging] dwarves is not required for linux-libc-dev or stage1 - - -- Seth Forshee Tue, 28 Jul 2020 22:33:24 -0500 - -linux (5.8.0-10.11) groovy; urgency=medium - - * groovy/linux: 5.8.0-10.11 -proposed tracker (LP: #1889316) - - * Miscellaneous Ubuntu changes - - [Packaging] Add more packages to Build-Depends-Indep for docs - - [Debian] Specify python executable in kmake - - [Debian] Don't treat warnings as errors during perf builds - - [Config] Disable signing for ppc64el - - -- Seth Forshee Tue, 28 Jul 2020 17:09:52 -0500 - -linux (5.8.0-9.10) groovy; urgency=medium - - * groovy/linux: 5.8.0-9.10 -proposed tracker (LP: #1889140) - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * Miscellaneous Ubuntu changes - - SAUCE: Fix s390x compile error on F32 utils/stat-display.c - - [Packaging] Add python3-venv to Build-Depends-Indep - - -- Seth Forshee Mon, 27 Jul 2020 21:01:46 -0500 - -linux (5.8.0-8.9) groovy; urgency=medium - - * groovy/linux: 5.8.0-8.9 -proposed tracker (LP: #1889104) - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - update dkms package versions - - [Packaging] update variants - - * Introduce the new NVIDIA 450-server and the 450 UDA series (LP: #1887674) - - [Packaging] NVIDIA -- Add signed modules for 450 450-server - - * Introduce the new NVIDIA 418-server and 440-server series, and update the - current NVIDIA drivers (LP: #1881137) - - [packaging] add signed modules for the 418-server and the 440-server - flavours - - * Miscellaneous Ubuntu changes - - SAUCE: Revert "radix-tree: Use local_lock for protection" - - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n - - [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD - - [Config] Enable nvidia dkms build - - * Miscellaneous upstream changes - - usbip: tools: fix build error for multiple definition - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc7 - - -- Seth Forshee Mon, 27 Jul 2020 11:18:12 -0500 - -linux (5.8.0-7.8) groovy; urgency=medium - - * Empty entry - - -- Seth Forshee Mon, 27 Jul 2020 09:22:19 +0200 - -linux-5.8 (5.8.0-7.8) groovy; urgency=medium - - * soc/amd/renoir: detect dmic from acpi table (LP: #1887734) - - ASoC: amd: add logic to check dmic hardware runtime - - ASoC: amd: add ACPI dependency check - - ASoC: amd: fixed kernel warnings - - * linux 4.15.0-109-generic network DoS regression vs -108 (LP: #1886668) - - SAUCE: Revert "netprio_cgroup: Fix unlimited memory leak of v2 cgroups" - - * Add support for Atlantic NIC firmware v4 (LP: #1886908) - - SAUCE: net: atlantic: Add support for firmware v4 - - * MGA G200e doesn't work under GDM Wayland (LP: #1886140) - - drm/mgag200: Remove HW cursor - - drm/mgag200: Clean up mga_set_start_address() - - drm/mgag200: Clean up mga_crtc_do_set_base() - - drm/mgag200: Move mode-setting code into separate helper function - - drm/mgag200: Split MISC register update into PLL selection, SYNC and I/O - - drm/mgag200: Update mode registers after plane registers - - drm/mgag200: Set pitch in a separate helper function - - drm/mgag200: Set primary plane's format in separate helper function - - drm/mgag200: Move TAGFIFO reset into separate function - - drm/mgag200: Move hiprilvl setting into separate functions - - drm/mgag200: Move register initialization into separate function - - drm/mgag200: Remove out-commented suspend/resume helpers - - drm/mgag200: Use simple-display data structures - - drm/mgag200: Convert to simple KMS helper - - drm/mgag200: Replace VRAM helpers with SHMEM helpers - - * Miscellaneous Ubuntu changes - - SAUCE: s390/bpf: fix sign extension in branch_ku - - SAUCE: selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support - - SAUCE: selftests: fib_nexthop_multiprefix: fix cleanup() netns deletion - - [packaging] debhelper-compat (= 10) (and retire debian/compat) - - [Config] Update configs after rebase to 5.8-rc6 - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc6 - - -- Andrea Righi Mon, 20 Jul 2020 09:55:47 +0200 - -linux-5.8 (5.8.0-6.7) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * perf build broken after updating to bintuils 2.34.90.20200706-1ubuntu1 - (LP: #1887397) - - SAUCE: libtraceevent: Strip symbol version from nm output - - -- Seth Forshee Mon, 13 Jul 2020 14:07:53 -0500 - -linux-5.8 (5.8.0-5.6) groovy; urgency=medium - - * linux-libc-dev broken for crossbuilding, Multi-Arch:same violation - (LP: #1886188) - - [Packaging] Produce linux-libc-deb package for riscv64 - - [Debian] Disallow building linux-libc-dev from linux-riscv - - * Miscellaneous Ubuntu changes - - SAUCE: Revert "UBUNTU: SAUCE: test_bpf: remove expected fail for Ctx heavy - transformations test on s390" - - SAUCE: Revert "test_bpf: flag tests that cannot be jited on s390" - - [Config] Update configs (gcc update) - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc5 - - -- Andrea Righi Mon, 13 Jul 2020 08:42:14 +0200 - -linux-5.8 (5.8.0-4.5) groovy; urgency=medium - - * Add generic LED class support for audio LED (LP: #1885896) - - ALSA: hda: generic: Always call led-trigger for mic mute LED - - ALSA: hda: generic: Add a helper for mic-mute LED with LED classdev - - ALSA: hda/realtek: Convert to cdev-variant of mic-mute LED controls - - ALSA: hda/conexant: Convert to cdev-variant of mic-mute LED controls - - ALSA: hda/sigmatel: Convert to cdev-variant of mic-mute LED controls - - ALSA: hda: generic: Drop unused snd_hda_gen_fixup_micmute_led() - - ALSA: hda: generic: Drop the old mic-mute LED hook - - ALSA: hda: generic: Add vmaster mute LED helper - - ALSA: hda/realtek: Use the new vmaster mute LED helper - - ALSA: hda/conexant: Use the new vmaster mute LED helper - - ALSA: hda/sigmatel: Use the new vmaster mute LED helper - - ALSA: hda/realtek: Unify LED helper code - - ALSA: hda: Let LED cdev handling suspend/resume - - * seccomp_bpf fails on powerpc (LP: #1885757) - - SAUCE: selftests/seccomp: fix ptrace tests on powerpc - - * CVE-2020-11935 - - SAUCE: aufs: do not call i_readcount_inc() - - * Miscellaneous Ubuntu changes - - SAUCE: Update aufs to 5.x-rcN 20200622 - - [Config] Update configs to set CONFIG_SND_HDA_GENERIC_LEDS value - - [Config] CONFIG_SECURITY_DMESG_RESTRICT=y - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc4 - - -- Seth Forshee Mon, 06 Jul 2020 08:14:28 -0500 - -linux-5.8 (5.8.0-3.4) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - update dkms package versions - - * lxc 1:4.0.2-0ubuntu1 ADT test failure with linux-5.8 5.8.0-1.2 - (LP: #1884635) - - SAUCE: overlayfs: fix faulty rebase - - * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) - - SAUCE: shiftfs: prevent ESTALE for LOOKUP_JUMP lookups - - * shiftfs: fix btrfs regression (LP: #1884767) - - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: fix dentry revalidation" - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_DEBUG_INFO_COMPRESSED=y - - SAUCE: regulator: rename da903x to da903x-regulator - - [Config] Add da903x to modules.ignore - - [Config] Update configs for rebase to 5.8-rc3 - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc3 - - -- Seth Forshee Mon, 29 Jun 2020 08:48:25 -0500 - -linux-5.8 (5.8.0-2.3) groovy; urgency=medium - - * Support Audio Mute LED for two new HP laptops (LP: #1884251) - - ALSA: hda/realtek: Add mute LED and micmute LED support for HP systems - - * CVE-2019-16089 - - SAUCE: nbd_genl_status: null check for nla_nest_start - - * tpm: fix TIS locality timeout problems (LP: #1881710) - - SAUCE: tpm: fix TIS locality timeout problems - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Miscellaneous Ubuntu changes - - SAUCE: security,perf: Allow further restriction of perf_event_open - - [Config] CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y - - [Config] Update configs and annotations for 5.8-rc2 - - [Config] Enable zfs - - [Config] Enable CONFIG_DEBUG_INFO_BTF - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc2 - - -- Seth Forshee Mon, 22 Jun 2020 15:05:54 -0500 - -linux-5.8 (5.8.0-1.2) groovy; urgency=medium - - * Miscellaneous Ubuntu changes - - [Debian] Support linux-x.y in udeb package names - - [Packaging] Use SRCPKGNAME for udeb packages - - -- Seth Forshee Wed, 17 Jun 2020 19:34:32 -0500 - -linux-5.8 (5.8.0-0.1) groovy; urgency=medium - - * Docker registry doesn't stay up and keeps restarting (LP: #1879690) - - Revert "UBUNTU: SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay" - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - * Miscellaneous Ubuntu changes - - [Packaging] Update source package name to linux-5.8 - - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). - - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print error messages. - - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode - - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode - - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set - - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature verify - - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot - - SAUCE: (lockdown) security: lockdown: Make CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic - - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode - - SAUCE: Import aufs driver - - [Config] Update configs for v5.8-rc1 - - [Config] Update annotations for v5.8-rc1 config changes - - SAUCE: shiftfs -- Fix build errors from missing fiemap definitions - - Disable hio driver - - * Miscellaneous upstream changes - - acpi: disallow loading configfs acpi tables when locked down - - [ Upstream Kernel Changes ] - - * Rebase to v5.8-rc1 - - -- Seth Forshee Wed, 17 Jun 2020 11:54:24 -0500 - -linux-5.8 (5.8.0-0.0) groovy; urgency=medium - - * Empty entry - - -- Seth Forshee Sun, 14 Jun 2020 22:40:35 -0500 - -linux-5.7 (5.7.0-8.9) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Enforce all config annotations (LP: #1879327) - - [Config]: do not enforce CONFIG_VERSION_SIGNATURE - - [Config]: prepare to enforce all - - [Config]: enforce all config options - - * Miscellaneous Ubuntu changes - - [Config]: annotations review after 5.7 rebase - - [Config] annotations: IXP4XX* depends on ARCH_IXP4XX - - [Config] THERMAL_GOV_POWER_ALLOCATOR=y - - [Config] annotations: SOC_CAMERA is marked as BROKEN - - [Config] annotations: NFSD_V4_2_INTER_SSC depends on NFS_FS=y - - [Config] annotations: CRYPTO_DEV_CHELSIO_TLS depends on legacy (and largely - unmantained) TLS_TOE - - [Config] annotations: SERIO_OLPC_APSP depends on ARCH_MMP - - [Config] RTW88_DEBUG=y - - [Config] annotations: ISDN_CAPI is a bool, and BT_CMTP depends on it - - [Config] annotations SND_SOC_SOF_DEVELOPER_SUPPORT depends on - SND_SOC_SOF_DEVELOPER_SUPPORT - - [Config] annotations: SND_SOC_SOF_BAYTRAIL_SUPPORT is mutually exclusive - with SND_SST_ATOM_HIFI2_PLATFORM_ACPI - - [Config] annotations: DEBUG_IMX_UART_PORT is defined only any - DEBUG_IMX*_UART is enabled - - [Config] annotations: HW_RANDOM_IMX_RNGC depends on SOC_IMX25 - - [Config] annotations: armhf: VIRTUALIZATION support was removed for arm32 - - [Config] annotations: arm64: remove DEBUG_ALIGN_RODATA - - [Config] annotations: ppc64: DATA_SHIFT defaults to PPC_PAGE_SHIFT - - [Config] arm64: enforce ARM64_USE_LSE_ATOMICS - - [Config] s390x: MOST is not set - - [Config] s390x: BCM84881_PHY is not set - - [Config] s390x: XILINX_LL_TEMAC is not set - - [Config] s390x: PHY_INTEL_EMMC requires GENERIC_PHY (off by default on - s390x) - - [Config] s390x: CHECK_STACK conflicts with VMAP_STACK - - [Config] annotations: s390x: NODES_SHIFT=1 - - [Config] annotations: import new symbols - - [Config] annotations: remove unmatched menu and options - - -- Paolo Pisati Fri, 12 Jun 2020 12:03:01 +0200 - -linux-5.7 (5.7.0-7.8) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - [Packaging] update helper scripts - - * [UBUNTU 20.04] s390x/pci: fix linking between PF and VF for multifunction - devices (LP: #1879704) - - PCI/IOV: Introduce pci_iov_sysfs_link() function - - s390/pci: create links between PFs and VFs - - * Miscellaneous Ubuntu changes - - [Config] Disable UEFI signing for arm64 - - Rebase to v5.7.1 - - [ Upstream Kernel Changes ] - - * Rebase to v5.7.1 - - -- Paolo Pisati Mon, 08 Jun 2020 11:16:58 +0200 - -linux-5.7 (5.7.0-6.7) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - update dkms package versions - - * shiftfs: fix btrfs snapshot deletion (LP: #1879688) - - SAUCE: shiftfs: let userns root destroy subvolumes from other users - - * seccomp_benchmark times out on eoan (LP: #1881576) - - SAUCE: selftests/seccomp: use 90s as timeout - - * Realtek 8723DE [10ec:d723] subsystem [10ec:d738] disconnects unsolicitedly - when Bluetooth is paired: Reason: 23=IEEE8021X_FAILED (LP: #1878147) - - SAUCE: Revert "UBUNTU: SAUCE: rtw88: Move driver IQK to set channel before - association for 11N chip" - - SAUCE: Revert "UBUNTU: SAUCE: rtw88: fix rate for a while after being - connected" - - SAUCE: Revert "UBUNTU: SAUCE: rtw88: No retry and report for auth and assoc" - - SAUCE: Revert "UBUNTU: SAUCE: rtw88: 8723d: Add coex support" - - rtw88: 8723d: Add coex support - - SAUCE: rtw88: coex: 8723d: set antanna control owner - - SAUCE: rtw88: coex: 8723d: handle BT inquiry cases - - SAUCE: rtw88: fix EAPOL 4-way failure by finish IQK earlier - - * ASoC/amd: add audio driver for amd renoir (LP: #1881046) - - ASoC: amd: add Renoir ACP3x IP register header - - ASoC: amd: add Renoir ACP PCI driver - - ASoC: amd: add acp init/de-init functions - - ASoC: amd: create acp3x pdm platform device - - ASoC: amd: add ACP3x PDM platform driver - - ASoC: amd: irq handler changes for ACP3x PDM dma driver - - ASoC: amd: add acp3x pdm driver dma ops - - ASoC: amd: add ACP PDM DMA driver dai ops - - ASoC: amd: add Renoir ACP PCI driver PM ops - - ASoC: amd: add ACP PDM DMA driver pm ops - - ASoC: amd: enable Renoir acp3x drivers build - - ASoC: amd: create platform devices for Renoir - - ASoC: amd: RN machine driver using dmic - - ASoC: amd: enable build for RN machine driver - - ASoC: amd: fix kernel warning - - ASoC: amd: refactoring dai_hw_params() callback - - ASoC: amd: return error when acp de-init fails - - [Config]: enable amd renoir ASoC audio - - * Slow send speed with Intel I219-V on Ubuntu 18.04.1 (LP: #1802691) - - e1000e: Disable TSO for buffer overrun workaround - - * Fix incorrect speed/duplex when I210 device is runtime suspended - (LP: #1880656) - - igb: Report speed and duplex as unknown when device is runtime suspended - - * Fix Pericom USB controller OHCI/EHCI PME# defect (LP: #1879321) - - serial: 8250_pci: Move Pericom IDs to pci_ids.h - - PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect - - * [UBUNTU 20.04] s390x/pci: enumerate pci functions per physical adapter - (LP: #1874056) - - s390/pci: Expose new port attribute for PCIe functions - - s390/pci: adaptation of iommu to multifunction - - s390/pci: define kernel parameters for PCI multifunction - - s390/pci: define RID and RID available - - s390/pci: create zPCI bus - - s390/pci: adapt events for zbus - - s390/pci: Handling multifunctions - - s390/pci: Do not disable PF when VFs exist - - s390/pci: Documentation for zPCI - - s390/pci: removes wrong PCI multifunction assignment - - * add 16-bit width registers support for EEPROM at24 device (LP: #1876699) - - regmap-i2c: add 16-bit width registers support - - * Miscellaneous Ubuntu changes - - [Config] Enable virtualbox guest and shared-folder modules - - [ Upstream Kernel Changes ] - - * Rebase to v5.7 - - -- Seth Forshee Mon, 01 Jun 2020 16:11:24 -0500 - -linux-5.7 (5.7.0-5.6) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * [UBUNTU 20.04] PSI generates overhead on s390x (LP: #1876044) - - Ubuntu: [Config] CONFIG_PSI is enabled by default, but creates additional - overhead on s390x, hence should be disabled by default on s390x only. - - * Miscellaneous Ubuntu changes - - Rebase to v5.7-rc7 - - [Config] ppc64el: disable STRICT_KERNEL_RWX - - [ Upstream Kernel Changes ] - - * Rebase to v5.7-rc7 - - -- Paolo Pisati Mon, 25 May 2020 11:44:09 +0200 - -linux-5.7 (5.7.0-4.5) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * update-initramfs complains of missing amdgpu firmware files (LP: #1873325) - - SAUCE: drm/amdgpu: Remove unreleased arcturus and navi12 firmware from - modinfo - - * Support DMIC micmute LED on HP platforms (LP: #1876859) - - ALSA: hda/realtek - Introduce polarity for micmute LED GPIO - - ALSA: hda/realtek - Enable micmute LED on and HP system - - ALSA: hda/realtek - Add LED class support for micmute LED - - ALSA: hda/realtek - Fix unused variable warning w/o - CONFIG_LEDS_TRIGGER_AUDIO - - ASoC: SOF: Update correct LED status at the first time usage of - update_mute_led() - - * Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW), - REV=0x354 [8086:a0f0] subsystem id [1a56:1651] wireless adapter not found - due to firmware crash (LP: #1874685) - - SAUCE: iwlwifi: pcie: handle QuZ configs with killer NICs as well - - * rtkit-daemon[*]: Failed to make ourselves RT: Operation not permitted after - upgrade to 20.04 (LP: #1875665) - - [Config] Turn off CONFIG_RT_GROUP_SCHED everywhere - - * Unable to handle kernel pointer dereference in virtual kernel address space - on Eoan (LP: #1876645) - - SAUCE: overlayfs: fix shitfs special-casing - - * Miscellaneous Ubuntu changes - - SAUCE: skip building selftest 'runqslower' if kernel not built - - Rebase to v5.7-rc6 - - [Config] updateconfigs after 5.7-rc6 rebase - - [ Upstream Kernel Changes ] - - * Rebase to v5.7-rc6 - - -- Paolo Pisati Mon, 18 May 2020 11:27:25 +0200 - -linux-5.7 (5.7.0-3.4) groovy; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v5.7-rc5 - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * getitimer returns it_value=0 erroneously (LP: #1349028) - - [Config] CONTEXT_TRACKING_FORCE policy should be unset - - * lockdown on power (LP: #1855668) // Ubuntu Kernel Support for OpenPOWER NV - Secure & Trusted Boot (LP: #1866909) - - [Config] Enable configs for OpenPOWER NV Secure & Trusted Boot - - * Miscellaneous Ubuntu changes - - SAUCE: Import aufs driver - - [Config] Enable aufs - - [Config] annotations: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC - - [Config] Remove CONFIG_SND_HDA_INTEL_DETECT_DMIC from annotations - - [Debian] final-checks -- Do not remove ~* from abi - - [Config] Enable 5-level page table support for x86 - - [Config] updateconfigs after 5.7-rc5 rebase - - -- Paolo Pisati Mon, 11 May 2020 10:25:42 +0200 - -linux-5.7 (5.7.0-2.3) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - update dkms package versions - - [Packaging] update helper scripts - - * ASUS T100HAN boots to a blank screen with a cursor [i965: Failed to submit - batchbuffer: Input/output error] (LP: #1860754) - - [Config] CONFIG_PMIC_OPREGION=y and CONFIG_GPIO_CRYSTAL_COVE=y for amd64 - - * ubuntu/focal64 fails to mount Vagrant shared folders (LP: #1873506) - - [Packaging] Move virtualbox modules to linux-modules - - [Packaging] Remove vbox and zfs modules from generic.inclusion-list - - * built-using constraints preventing uploads (LP: #1875601) - - temporarily drop Built-Using data - - * dkms artifacts may expire from the pool (LP: #1850958) - - [Packaging] autoreconstruct -- manage executable debian files - - [packaging] handle downloads from the librarian better - - * Add signed modules for the 435 NVIDIA driver (LP: #1875888) - - [Packaging] NVIDIA -- add signed modules for the 435 NVIDIA driver - - * [Selftests] Apply various fixes and improvements (LP: #1870543) - - SAUCE: selftests/seccomp -- Disable timeout for seccomp tests - - * [17.04 FEAT] Integrate kernel message catalogue for s390x into Ubuntu - distribution (LP: #1628889) - - SAUCE: s390: kernel message catalog - - * Overlayfs in user namespace leaks directory content of inaccessible - directories (LP: #1793458) // CVE-2018-6559 - - SAUCE: overlayfs: ensure mounter privileges when reading directories - - * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) - - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th - - * [ICL] TC port in legacy/static mode can't be detected due TCCOLD - (LP: #1868936) - - drm/i915/display: Move out code to return the digital_port of the aux ch - - drm/i915/display: Add intel_legacy_aux_to_power_domain() - - drm/i915/display: Split hsw_power_well_enable() into two - - drm/i915/tc/icl: Implement TC cold sequences - - drm/i915/tc: Skip ref held check for TC legacy aux power wells - - drm/i915/tc/tgl: Implement TC cold sequences - - drm/i915/tc: Catch TC users accessing FIA registers without enable aux - - drm/i915/tc: Do not warn when aux power well of static TC ports timeout - - * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) - - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 - 2-in-1" - - * 'Elan touchpad' not detected on 'Lenovo ThinkBook 15 IIL' (LP: #1861610) - - SAUCE: Input: elan_i2c - add more hardware ID for Lenovo laptop - - * linux-image-5.0.0-35-generic breaks checkpointing of container - (LP: #1857257) - - SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay - - * alsa/sof: kernel oops on the machine without Intel hdmi audio codec (a - regression in the asoc machine driver) (LP: #1874359) - - ASoC: intel/skl/hda - fix oops on systems without i915 audio codec - - * Add debian/rules targets to compile/run kernel selftests (LP: #1874286) - - [Packaging] add support to compile/run selftests - - * 5.4.0-24.28 does not seem to apply rtprio, whereas -21 does. (LP: #1873315) - - [Config] lowlatency: turn off RT_GROUP_SCHED - - * alsa/sof: external mic can't be deteced on Lenovo and HP laptops - (LP: #1872569) - - SAUCE: ASoC: intel/skl/hda - set autosuspend timeout for hda codecs - - * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) - - SAUCE: shiftfs: fix dentry revalidation - - * shiftfs: broken shiftfs nesting (LP: #1872094) - - SAUCE: shiftfs: record correct creator credentials - - * lockdown on power (LP: #1855668) - - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode - - * Add support for Realtek 8723DE wireless adapter (LP: #1780590) - - SAUCE: rtw88: add adaptivity support for EU/JP regulatory - - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets - - SAUCE: rtw88: sar: dump sar information via debugfs - - SAUCE: rtw88: 8723d: add IQ calibration - - SAUCE: rtw88: 8723d: Add power tracking - - SAUCE: rtw88: 8723d: implement flush queue - - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info - - SAUCE: rtw88: 8723d: Add coex support - - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend - - * Fix authentication fail on Realtek WiFi 8723de (LP: #1871300) - - SAUCE: rtw88: No retry and report for auth and assoc - - SAUCE: rtw88: fix rate for a while after being connected - - SAUCE: rtw88: Move driver IQK to set channel before association for 11N chip - - * Miscellaneous Ubuntu changes - - SAUCE: rtw88: fix 'const' mismatch in power suequence hooks - - SAUCE: rtw88: fix 'const' mismatch in - __priority_queue_cfg_legacy()/__priority_queue_cfg() - - [Config] RTW88=m - - SAUCE: (lockdown) Revert carried-forward lockdown patches - - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). - - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot - mode - - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode - - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set - - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature - verify - - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot - - SAUCE: (lockdown) security: lockdown: Make - CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic - - [Config] Add back CONFIG_LOCK_DOWN_IN_SECURE_BOOT annotation for ppc64el - - [Config] CONFIG_RT_GROUP_SCHED=y - - [Packaging] Include modules.builtin.modinfo in linux-modules - - SAUCE: LSM: Infrastructure management of the sock security - - SAUCE: Fix-up af_unix mediation for sock infrastructure management - - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" - - SAUCE: Revert "apparmor: Parse secmark policy" - - SAUCE: Revert "apparmor: Add a wildcard secid" - - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" - - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" - - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" - - Update dropped.txt for restored apparmor patches - - Remove lockdown patches from dropped.txt - - SAUCE: powerpc/ima: require IMA module signatures only if MODULE_SIG is not - enabled - - SAUCE: selftests/ftrace: Use printf instead of echo in kprobe syntax error - tests - - SAUCE: selftests/net -- disable l2tp.sh test - - SAUCE: selftests/net -- disable timeout - - SAUCE: tools: hv: Update shebang to use python3 instead of python - - Remove dropped.txt - - [Packaging] move linux-doc and linux-libc-dev stubs to debian.master - - [Debian] Support generating configs for riscv64 - - [Config] CONFIG_KMSG_IDS=y for s390x - - [Packaging] add libcap-dev dependency - - [Config] CONFIG_AD5770R=m - - [Config] CONFIG_AL3010=m - - [Config] CONFIG_APPLE_MFI_FASTCHARGE=m - - [Config] CONFIG_BAREUDP=m - - [Config] CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m - - [Config] CONFIG_CRYPTO_DEV_ZYNQMP_AES=m - - [Config] CONFIG_DRM_DISPLAY_CONNECTOR=m - - [Config] CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m - - [Config] CONFIG_DRM_PANEL_ELIDA_KD35T133=m - - [Config] CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m - - [Config] CONFIG_DRM_PANEL_NOVATEK_NT35510=m - - [Config] CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m - - [Config] CONFIG_DRM_PARADE_PS8640=m - - [Config] CONFIG_DRM_SIMPLE_BRIDGE=m - - [Config] CONFIG_DRM_TIDSS=m - - [Config] CONFIG_DRM_TI_TPD12S015=m - - [Config] CONFIG_DRM_TOSHIBA_TC358768=m - - [Config] CONFIG_EDAC_DMC520=m - - [Config] CONFIG_EXFAT_FS=m - - [Config] CONFIG_GP2AP002=m - - [Config] CONFIG_GPIO_MLXBF2=m - - [Config] CONFIG_HID_GLORIOUS=m - - [Config] CONFIG_HID_MCP2221=m - - [Config] CONFIG_HMC425=m - - [Config] CONFIG_ICP10100=m - - [Config] CONFIG_IMX8MM_THERMAL=m - - [Config] CONFIG_IMX_SC_THERMAL=m - - [Config] CONFIG_INTERCONNECT_QCOM_OSM_L3=m - - [Config] CONFIG_INTERCONNECT_QCOM_SC7180=m - - [Config] CONFIG_K3_RTI_WATCHDOG=m - - [Config] CONFIG_MDIO_IPQ8064=m - - [Config] CONFIG_MDIO_MVUSB=m - - [Config] CONFIG_MHI_BUS=m - - [Config] CONFIG_OCTEONTX2_VF=m - - [Config] CONFIG_PHY_CADENCE_TORRENT=m - - [Config] CONFIG_PHY_QCOM_USB_HS_28NM=m - - [Config] CONFIG_PHY_QCOM_USB_SS=m - - [Config] CONFIG_PINCTRL_DA9062=m - - [Config] CONFIG_PINCTRL_IPQ6018=m - - [Config] CONFIG_PTP_1588_CLOCK_IDT82P33=m - - [Config] CONFIG_PTP_1588_CLOCK_VMW=m - - [Config] CONFIG_QCOM_IPA=m - - [Config] CONFIG_REGULATOR_MP5416=m - - [Config] CONFIG_REGULATOR_MP886X=m - - [Config] CONFIG_RN5T618_ADC=m - - [Config] CONFIG_RTC_DRV_MT2712=m - - [Config] CONFIG_RTC_DRV_RC5T619=m - - [Config] CONFIG_SC_MSS_7180=m - - [Config] CONFIG_SENSORS_AXI_FAN_CONTROL=m - - [Config] CONFIG_SM_GCC_8250=m - - [Config] CONFIG_SND_BCM63XX_I2S_WHISTLER=m - - [Config] CONFIG_SND_MESON_AIU=m - - [Config] CONFIG_SND_MESON_G12A_TOACODEC=m - - [Config] CONFIG_SND_MESON_GX_SOUND_CARD=m - - [Config] CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m - - [Config] CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m - - [Config] CONFIG_SND_SOC_MESON_T9015=m - - [Config] CONFIG_SND_SOC_RT5682_SDW=m - - [Config] CONFIG_SND_SOC_TLV320ADCX140=m - - [Config] CONFIG_SPI_FSI=m - - [Config] CONFIG_SPI_MTK_NOR=m - - [Config] CONFIG_SPI_MUX=m - - [Config] CONFIG_SPRD_THERMAL=m - - [Config] CONFIG_SURFACE_3_POWER_OPREGION=m - - [Config] CONFIG_TINYDRM_ILI9486=m - - [Config] CONFIG_TI_K3_AM65_CPSW_NUSS=m - - [Config] CONFIG_TYPEC_MUX_INTEL_PMC=m - - [Config] CONFIG_UACCE=m - - [Config] CONFIG_UNIPHIER_XDMAC=m - - [Config] CONFIG_USB_MAX3420_UDC=m - - [Config] CONFIG_USB_RAW_GADGET=m - - [Config] CONFIG_VHOST_VDPA=m - - [Config] CONFIG_VIDEO_IMX219=m - - [Config] CONFIG_VIDEO_SUN8I_ROTATE=m - - [Config] CONFIG_VIRTIO_VDPA=m - - [Config] CONFIG_MOST_COMPONENTS=m - - [Config] CONFIG_MFD_IQS62X=m - - packaging: getabis: switch to ckt-ppa:bootstrap/linux-5.7 - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask" - - Revert "UBUNTU: SAUCE: drm/i915/fbc: disable framebuffer compression on - IceLake" - - Revert "UBUNTU: SAUCE: platform/x86: dell-uart-backlight: move retry block" - - -- Paolo Pisati Mon, 04 May 2020 10:48:48 +0200 - -linux-5.7 (5.7.0-1.2) groovy; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * Miscellaneous Ubuntu changes - - SAUCE: hio: pass make_request ptr directly to blk_alloc_queue() - - SAUCE: hio: locally define disk_map_sector_rcu() - - SAUCE: hio: Revert "block: unexport disk_map_sector_rcu" - - SAUCE: hio: include - - [Config] amd64: i386: HIO=m - - [Config] updateconfigs after 5.7-rc3 rebase - - -- Paolo Pisati Mon, 27 Apr 2020 11:31:38 +0200 - -linux-5.7 (5.7.0-0.1) groovy; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] updateconfigs after rebase to 5.7-rc1 - - [ Upstream Kernel Changes ] - - * Rebase to v5.7-rc1 - * Rebase to v5.7-rc2 - - -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 - -linux-5.7 (5.7.0-0.0) focal; urgency=medium - - * Dummy entry - - -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 - -linux-5.6 (5.6.0-7.7) focal; urgency=medium - - * Packaging resync (LP: #1786013) - - update dkms package versions - - * Kernel Oops - general protection fault: 0000 [#1] SMP PTI after - disconnecting thunderbolt docking station (LP: #1864754) - - SAUCE: ptp: free ptp clock properly - - * swap storms kills interactive use (LP: #1861359) - - SAUCE: mm/page_alloc.c: disable memory reclaim watermark boosting by default - - * sysfs: incorrect network device permissions on network namespace change - (LP: #1865359) - - sysfs: add sysfs_file_change_owner() - - sysfs: add sysfs_link_change_owner() - - sysfs: add sysfs_group{s}_change_owner() - - sysfs: add sysfs_change_owner() - - device: add device_change_owner() - - drivers/base/power: add dpm_sysfs_change_owner() - - net-sysfs: add netdev_change_owner() - - net-sysfs: add queue_change_owner() - - net: fix sysfs permssions when device changes network namespace - - sysfs: fix static inline declaration of sysfs_groups_change_owner() - - * Miscellaneous Ubuntu changes - - [Config] updateconfigs after rebase to 5.6 - - [ Upstream Kernel Changes ] - - * Rebase to v5.6 - - -- Andrea Righi Tue, 31 Mar 2020 10:45:09 +0200 - -linux-5.6 (5.6.0-6.6) focal; urgency=medium - - * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) - - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th - - * Make Dell WD19 dock more reliable after suspend (LP: #1868217) - - xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3 - - xhci: Wait until link state trainsits to U0 after setting USB_SS_PORT_LS_U0 - - xhci: Finetune host initiated USB3 rootport link suspend and resume - - * update-version-dkms doesn't add a BugLink (LP: #1867790) - - [Packaging] Add BugLink to update-version-dkms commit - - * Add support for Realtek 8723DE wireless adapter (LP: #1780590) - - SAUCE: rtw88: add regulatory process strategy for different chipset - - SAUCE: rtw88: support dynamic user regulatory setting - - SAUCE: rtw88: Use secondary channel offset enumeration - - SAUCE: rtw88: 8822c: modify rf protection setting - - SAUCE: rtw88: disable TX-AMSDU on 2.4G band - - SAUCE: Revert "rtw88: disable TX-AMSDU on 2.4G band" - - SAUCE: rtw88: disable TX-AMSDU on 2.4G band - - SAUCE: rtw88: remove unused parameter vif in rtw_lps_pg_info_get() - - SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask - - SAUCE: rtw88: pci: 8822c should set clock delay to zero - - SAUCE: rtw88: move rtw_enter_ips() to the last when config - - SAUCE: rtw88: avoid holding mutex for cancel_delayed_work_sync() - - SAUCE: rtw88: add ciphers to suppress error message - - SAUCE: rtw88: 8822c: update power sequence to v16 - - SAUCE: rtw88: Fix incorrect beamformee role setting - - SAUCE: rtw88: don't hold all IRQs disabled for PS operations - - SAUCE: rtw88: extract alloc rsvd_page and h2c skb routines - - SAUCE: rtw88: associate reserved pages with each vif - - SAUCE: rtw88: add adaptivity support for EU/JP regulatory - - SAUCE: rtw88: 8723d: Add basic chip capabilities - - SAUCE: rtw88: 8723d: add beamform wrapper functions - - SAUCE: rtw88: 8723d: Add power sequence - - SAUCE: rtw88: 8723d: Add RF read/write ops - - SAUCE: rtw88: 8723d: Add mac/bb/rf/agc/power_limit tables - - SAUCE: rtw88: 8723d: Add cfg_ldo25 to control LDO25 - - SAUCE: rtw88: 8723d: Add new chip op efuse_grant() to control efuse access - - SAUCE: rtw88: 8723d: Add read_efuse to recognize efuse info from map - - SAUCE: rtw88: add legacy firmware download for 8723D devices - - SAUCE: rtw88: no need to send additional information to legacy firmware - - SAUCE: rtw88: 8723d: Add mac power-on/-off function - - SAUCE: rtw88: decompose while(1) loop of power sequence polling command - - SAUCE: rtw88: 8723d: 11N chips don't support H2C queue - - SAUCE: rtw88: 8723d: implement set_tx_power_index ops - - SAUCE: rtw88: 8723d: Organize chip TX/RX FIFO - - SAUCE: rtw88: 8723d: initialize mac/bb/rf basic functions - - SAUCE: rtw88: 8723d: Add DIG parameter - - SAUCE: rtw88: 8723d: Add query_rx_desc - - SAUCE: rtw88: 8723d: Add set_channel - - SAUCE: rtw88: handle C2H_CCX_TX_RPT to know if packet TX'ed successfully - - SAUCE: rtw88: 8723d: 11N chips don't support LDPC - - SAUCE: rtw88: set default port to firmware - - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets - - SAUCE: rtw88: sar: add SAR of TX power limit - - SAUCE: rtw88: sar: Load static SAR table from ACPI WRDS method - - SAUCE: rtw88: sar: Load dynamic SAR table from ACPI methods - - SAUCE: rtw88: sar: apply dynamic SAR table to tx power limit - - SAUCE: rtw88: sar: add sar_work to poll if dynamic SAR table is changed - - SAUCE: rtw88: sar: dump sar information via debugfs - - SAUCE: rtw88: 8723d: Add chip_ops::false_alarm_statistics - - SAUCE: rtw88: 8723d: Set IG register for CCK rate - - SAUCE: rtw88: 8723d: add interface configurations table - - SAUCE: rtw88: 8723d: Add LC calibration - - SAUCE: rtw88: 8723d: add IQ calibration - - SAUCE: rtw88: 8723d: Add power tracking - - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend - - SAUCE: rtw88: 8723d: implement flush queue - - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info - - SAUCE: rtw88: 8723d: Add coex support - - SAUCE: rtw88: fill zeros to words 0x06 and 0x07 of security cam entry - - SAUCE: rtw88: 8723d: Add 8723DE to Kconfig and Makefile - - [Config] CONFIG_RTW88_8723DE=y - - * [Ubuntu 20.04] Unset HIBERNATION and PM kernel config options for focal - (LP: #1867753) - - [Config] CONFIG_HIBERNATION=n and CONFIG_PM=n for s390x - - * [20.04 FEAT] Base KVM setup for secure guests - kernel part (LP: #1835531) - - s390/protvirt: introduce host side setup - - s390/protvirt: add ultravisor initialization - - s390/mm: provide memory management functions for protected KVM guests - - s390/mm: add (non)secure page access exceptions handlers - - s390/protvirt: Add sysfs firmware interface for Ultravisor information - - KVM: s390/interrupt: do not pin adapter interrupt pages - - KVM: s390: protvirt: Add UV debug trace - - KVM: s390: add new variants of UV CALL - - KVM: s390: protvirt: Add initial vm and cpu lifecycle handling - - KVM: s390: protvirt: Secure memory is not mergeable - - KVM: s390/mm: Make pages accessible before destroying the guest - - KVM: s390: protvirt: Handle SE notification interceptions - - KVM: s390: protvirt: Instruction emulation - - KVM: s390: protvirt: Implement interrupt injection - - KVM: s390: protvirt: Add SCLP interrupt handling - - KVM: s390: protvirt: Handle spec exception loops - - KVM: s390: protvirt: Add new gprs location handling - - KVM: S390: protvirt: Introduce instruction data area bounce buffer - - KVM: s390: protvirt: handle secure guest prefix pages - - KVM: s390/mm: handle guest unpin events - - KVM: s390: protvirt: Write sthyi data to instruction data area - - KVM: s390: protvirt: STSI handling - - KVM: s390: protvirt: disallow one_reg - - KVM: s390: protvirt: Do only reset registers that are accessible - - KVM: s390: protvirt: Only sync fmt4 registers - - KVM: s390: protvirt: Add program exception injection - - KVM: s390: protvirt: UV calls in support of diag308 0, 1 - - KVM: s390: protvirt: Report CPU state to Ultravisor - - KVM: s390: protvirt: Support cmd 5 operation state - - KVM: s390: protvirt: Mask PSW interrupt bits for interception 104 and 112 - - KVM: s390: protvirt: do not inject interrupts after start - - KVM: s390: protvirt: Add UV cpu reset calls - - DOCUMENTATION: Protected virtual machine introduction and IPL - - KVM: s390: protvirt: introduce and enable KVM_CAP_S390_PROTECTED - - KVM: s390: protvirt: Add KVM api documentation - - mm/gup/writeback: add callbacks for inaccessible pages - - * All PS/2 ports on PS/2 Serial add-in bracket are not working after S3 - (LP: #1866734) - - SAUCE: Input: i8042 - fix the selftest retry logic - - * Sys oopsed with sysfs test in ubuntu_stress_smoke_test on X-hwe ARM64 - (LP: #1866772) - - ACPI: sysfs: copy ACPI data using io memory copying - - * Miscellaneous Ubuntu changes - - hio -- remove duplicated MODULE_DEVICE_TABLE declaration - - SAUCE: r8169: disable ASPM L1.1 - - [Config] update annotations from configs - - [Config] update configs after annotation file review - - SAUCE: Revert "tools/power turbostat: Fix 32-bit capabilities warning" - - * Miscellaneous upstream changes - - drm/i915: Fix eDP DPCD aux max backlight calculations - - drm/dp: Introduce EDID-based quirks - - drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED panel - - drm/i915: Force DPCD backlight mode for some Dell CML 2020 panels - - [ Upstream Kernel Changes ] - - * Rebase to v5.6-rc7 - - -- Andrea Righi Wed, 25 Mar 2020 18:09:13 +0100 - -linux-5.6 (5.6.0-5.5) focal; urgency=medium - - * please help enable CONFIG_EROFS_FS_ZIP (LP: #1867099) - - [Config] CONFIG_EROFS_FS_ZIP=y - - [Config] CONFIG_EROFS_FS_CLUSTER_PAGE_LIMIT=1 - - * Miscellaneous Ubuntu changes - - Config: Fix SND_HDA_PREALLOC_SIZE annotations - - Config: Fix DATA_SHIFT annotations - - Config: remove ANDROID_VSOC from annotations - - Config: remove arm arch from annotations - - Config: Update SOC_R8A7796X annotations - - Config: Update CLK_R8A7796X annotations - - update dkms package versions - - [Config] updateconfigs after rebase to 5.6-rc6 - - [ Upstream Kernel Changes ] - - * Rebase to v5.6-rc6 - - -- Andrea Righi Wed, 18 Mar 2020 17:25:30 +0100 - -linux-5.6 (5.6.0-4.4) focal; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] resync getabis - - [Packaging] update helper scripts - - * Add sysfs attribute to show remapped NVMe (LP: #1863621) - - SAUCE: ata: ahci: Add sysfs attribute to show remapped NVMe device count - - * [20.04 FEAT] Compression improvements in Linux kernel (LP: #1830208) - - [Config] Introducing s390x specific kernel config option CONFIG_ZLIB_DFLTCC - - * [UBUNTU 20.04] s390x/pci: increase CONFIG_PCI_NR_FUNCTIONS to 512 in kernel - config (LP: #1866056) - - [Config] Increase CONFIG_PCI_NR_FUNCTIONS from 64 to 512 starting with focal - on s390x - - * CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set (LP: #1865332) - - [Config] CONFIG_IP_MROUTE_MULTIPLE_TABLES=y - - * [UBUNTU 20.04] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x - starting with focal (LP: #1865452) - - [Config] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x starting - with focal - - * Miscellaneous Ubuntu changes - - SAUCE: Revert "UBUNTU: SAUCE: blk/core: Gracefully handle unset - make_request_fn" - - [Packaging] prevent duplicated entries in modules.ignore - - update dkms package versions - - [Config] updateconfigs after rebase to 5.6-rc5 - - [ Upstream Kernel Changes ] - - * Rebase to v5.6-rc5 - - -- Andrea Righi Mon, 09 Mar 2020 09:42:06 +0100 - -linux-5.6 (5.6.0-3.3) focal; urgency=medium - - * nsleep-lat / set-timer-lat / inconsistency-check / raw_skew from timer in - ubuntu_kernel_selftests timeout on 5.3 / 5.4 (LP: #1864626) - - selftests/timers: Turn off timeout setting - - * Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU for focal - (LP: #1864198) - - Ubuntu: [Config] Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU - - * alsa/hda/realtek: fix a mute led regression on Lenovo X1 Carbon - (LP: #1864576) - - SAUCE: ALSA: hda/realtek - Fix a regression for mute led on Lenovo Carbon X1 - - * r8152 init may take up to 40 seconds at initialization with Dell WD19/WD19DC - during hotplug (LP: #1864284) - - UBUNTU SAUCE: r8151: check disconnect status after long sleep - - * Another Dell AIO backlight issue (LP: #1863880) - - SAUCE: platform/x86: dell-uart-backlight: move retry block - - * Backport GetFB2 ioctl (LP: #1863874) - - SAUCE: drm: Add getfb2 ioctl - - * Focal Fossa (20.04) feature request - Enable CONFIG_X86_UV (LP: #1863810) - - [Config] CONFIG_X86_UV=y - - * Miscellaneous Ubuntu changes - - debian: remove snapdragon config, rules and flavour - - remove snapdragon abi files - - update dkms package versions - - [Config] updateconfigs after rebase to 5.6-rc4 - - * Miscellaneous upstream changes - - updateconfigs following snapdragon removal - - [ Upstream Kernel Changes ] - - * Rebase to v5.6-rc4 - - -- Andrea Righi Wed, 04 Mar 2020 08:21:10 +0100 - -linux-5.6 (5.6.0-2.2) focal; urgency=medium - - * Sometimes can't adjust brightness on Dell AIO (LP: #1862885) - - SAUCE: platform/x86: dell-uart-backlight: increase retry times - - * Dell XPS 13 (7390) Display Flickering - 19.10 (LP: #1849947) - - SAUCE: drm/i915: Disable PSR by default on all platforms - - * Miscellaneous Ubuntu changes - - [debian] ignore missing wireguard module - - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). - - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot - mode - - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode - - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set - - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature - verify - - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot - - SAUCE: (lockdown) security: lockdown: Make - CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic - - [Config] CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y - - update dkms package versions - - [Config] updateconfigs after rebase to 5.6-rc3 - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: (lockdown) s390/ipl: lockdown kernel when booted - secure" - - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for - module signature verify" - - Revert "UBUNTU: SAUCE: (lockdown) Add a SysRq option to lift kernel - lockdown" - - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock - the kernel down" - - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework - efi_status_to_err()." - - -- Andrea Righi Mon, 24 Feb 2020 18:57:22 +0100 - -linux-5.6 (5.6.0-1.1) focal; urgency=medium - - * Integrate Intel SGX driver into linux-azure (LP: #1844245) - - [Packaging] Add systemd service to load intel_sgx - - * QAT drivers for C3XXX and C62X not included as modules (LP: #1845959) - - [Config] CRYPTO_DEV_QAT_C3XXX=m, CRYPTO_DEV_QAT_C62X=m and - CRYPTO_DEV_QAT_DH895xCC=m - - * 5.4.0-11 crash on cryptsetup open (LP: #1860231) - - SAUCE: blk/core: Gracefully handle unset make_request_fn - - * multi-zone raid0 corruption (LP: #1850540) - - SAUCE: md/raid0: Use kernel specific layout - - * Miscellaneous Ubuntu changes - - update dkms package versions - - update dropped.txt after rebase to v5.6-rc1 - - [Config] updateconfigs after rebase to 5.6-rc1 - - hio -- proc_create() requires a "struct proc_ops" in 5.6 - - SAUCE: arm: fix build error in kvm tracepoint - - * Miscellaneous upstream changes - - Revert "UBUNTU: [Config] Disable the uselib system call" - - Revert "UBUNTU: [Config] Disable legacy PTY naming" - - Revert "UBUNTU: [Config] Enforce filtered access to iomem" - - Revert "UBUNTU: [Config] Enable notifier call chain validations" - - Revert "UBUNTU: [Config] Enable scatterlist validation" - - Revert "UBUNTU: [Config] Enable cred sanity checks" - - Revert "UBUNTU: [Config] Enable linked list manipulation checks" - - [ Upstream Kernel Changes ] - - * Rebase to v5.6-rc1 - - -- Andrea Righi Thu, 13 Feb 2020 17:20:27 +0100 - -linux-5.6 (5.6.0-0.0) focal; urgency=medium - - * Dummy entry - - -- Andrea Righi Mon, 10 Feb 2020 11:06:18 +0100 - -linux-5.5 (5.5.0-7.8) focal; urgency=medium - - * CONFIG_USELIB should be disabled (LP: #1855341) - - [Config] Disable the uselib system call - - * CONFIG_LEGACY_PTYS should be disabled (LP: #1855339) - - [Config] Disable legacy PTY naming - - * CONFIG_IO_STRICT_DEVMEM should be enabled (LP: #1855338) - - [Config] Enforce filtered access to iomem - - * CONFIG_DEBUG_NOTIFIERS should be enabled (LP: #1855337) - - [Config] Enable notifier call chain validations - - * CONFIG_DEBUG_SG should be enabled (LP: #1855336) - - [Config] Enable scatterlist validation - - * CONFIG_DEBUG_CREDENTIALS should be enabled (LP: #1855335) - - [Config] Enable cred sanity checks - - * CONFIG_DEBUG_LIST should be enabled (LP: #1855334) - - [Config] Enable linked list manipulation checks - - * shiftfs: prevent lower dentries from going negative during unlink - (LP: #1860041) - - SAUCE: shiftfs: prevent lower dentries from going negative during unlink - - * [SRU][B/OEM-B/OEM-OSP1/D/E/Unstable] UBUNTU: SAUCE: Use native backlight on - Lenovo E41-25/45 (LP: #1859561) - - SAUCE: ACPI: video: Use native backlight on Lenovo E41-25/45 - - * USB key cannot be detected by hotplug on Sunix USB Type-A 3.1 Gen 2 card - [1b21:2142] (LP: #1858988) - - SAUCE: PCI: Avoid ASMedia XHCI USB PME# from D0 defect - - * Dell AIO can't adjust brightness (LP: #1858761) - - SAUCE: platform/x86: dell-uart-backlight: add retry for get scalar status - - * Miscellaneous Ubuntu changes - - [Config] Fix typo in annotations file - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.5 - - -- Andrea Righi Mon, 27 Jan 2020 11:39:38 +0100 - -linux-5.5 (5.5.0-6.7) focal; urgency=medium - - * Miscellaneous Ubuntu changes - - [Packaging] Update ubuntu-regression-suite dependency to python2 - - [Packaging] Fix ubuntu-regression-suite python dependency for hwe kernel - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.5-rc7 - - -- Andrea Righi Mon, 20 Jan 2020 10:16:01 +0100 - -linux-5.5 (5.5.0-5.6) focal; urgency=medium - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.5-rc6 - - -- Andrea Righi Mon, 13 Jan 2020 15:50:12 +0100 - -linux-5.5 (5.5.0-4.5) focal; urgency=medium - - * linux build and autopkg tests need to use python2 instead of python - (LP: #1858487) - - [Packaging] Remove python-dev build dependency - - -- Andrea Righi Wed, 08 Jan 2020 16:00:26 +0100 - -linux-5.5 (5.5.0-3.4) focal; urgency=medium - - * [SRU][B/OEM-B/OEM-OSP1/D/E/F] Add LG I2C touchscreen multitouch support - (LP: #1857541) - - SAUCE: HID: multitouch: Add LG MELF0410 I2C touchscreen support - - * Make vfio-pci built-in or xhci_hcd optional (LP: #1770845) - - [Config]: built-in VFIO_PCI for amd64 - - * multi-zone raid0 corruption (LP: #1850540) - - SAUCE: md/raid0: Link to wiki with guidance on multi-zone RAID0 layout - migration - - * Packaging resync (LP: #1786013) - - [Packaging] update variants - - * Miscellaneous Ubuntu changes - - [Packaging] Change source package to linux-5.5 - - [Packaging] Don't use SRCPKGNAME for linux-libc-dev - - [Packaging] Remove linux-source-3 Provides: from linux-source - - [Packaging] Fix linux-doc in linux-image Suggests: - - [Debian] Read variants list into a variable - - [Packaging] Generate linux-libc-dev package only for primary variant - - [Packaging] Generate linux-doc for only the primary variant - - [Debian] Update linux source package name in debian/tests/* - - update dkms package versions - - [Config] updateconfigs after rebase to 5.5-rc3 - - [Config] disable PCI_MESON - - [Config] Add pinctrl-equilibrium to modules.ignore - - [ Upstream Kernel Changes ] - - * Rebase to v5.5-rc5 - - -- Andrea Righi Wed, 08 Jan 2020 11:28:43 +0100 - -linux-5.5 (5.5.0-2.3) focal; urgency=medium - - * Empty entry. - - -- Seth Forshee Tue, 17 Dec 2019 22:33:59 -0600 - -linux (5.5.0-2.3) focal; urgency=medium - - * Support DPCD aux brightness control (LP: #1856134) - - SAUCE: drm/i915: Fix eDP DPCD aux max backlight calculations - - SAUCE: drm/i915: Assume 100% brightness when not in DPCD control mode - - SAUCE: drm/i915: Fix DPCD register order in intel_dp_aux_enable_backlight() - - SAUCE: drm/i915: Auto detect DPCD backlight support by default - - SAUCE: drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED - panel - - USUNTU: SAUCE: drm/i915: Force DPCD backlight mode on Dell Precision 4K sku - - * change kconfig of the soundwire bus driver from y to m (LP: #1855685) - - [Config]: SOUNDWIRE=m - - * Fix unusable USB hub on Dell TB16 after S3 (LP: #1855312) - - SAUCE: USB: core: Make port power cycle a seperate helper function - - SAUCE: USB: core: Attempt power cycle port when it's in eSS.Disabled state - - * Miscellaneous Ubuntu changes - - [Debian] add python depends to ubuntu-regression-suite - - SAUCE: selftests: net: tls: remove recv_rcvbuf test - - update dkms package versions - - * Miscellaneous upstream changes - - [Config] updateconfigs after rebase to 5.5-rc2 - - -- Andrea Righi Tue, 17 Dec 2019 16:02:43 +0100 - -linux (5.5.0-1.2) focal; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] disable nvidia dkms build - - [Config] disable virtualbox dkms build - - [Config] disable zfs dkms build - - update dropped.txt after rebase to v5.5-rc1 - - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that - aren't present. - - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). - - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot - mode - - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode - - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature - verify - - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot - - SAUCE: (lockdown) security: lockdown: Make - CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic - - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure - - [Config] Enable lockdown under secure boot - - update dkms package versions - - -- Andrea Righi Thu, 12 Dec 2019 16:54:41 +0100 - -linux (5.5.0-0.1) focal; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] updateconfigs after rebase to 5.5-rc1 - - [ Upstream Kernel Changes ] - - * Rebase to v5.5-rc1 - - -- Andrea Righi Mon, 09 Dec 2019 19:03:35 +0100 - -linux (5.5.0-0.0) focal; urgency=medium - - * Dummy entry. - - -- Andrea Righi Mon, 09 Dec 2019 15:14:37 +0100 - -linux (5.4.0-8.11) focal; urgency=medium - - * focal/linux: 5.4.0-8.9 -proposed tracker (LP: #1855448) - - * update ENA driver for DIMLIB dynamic interrupt moderation (LP: #1853180) - - SAUCE: net: ena: fix issues in setting interrupt moderation params in - ethtool - - SAUCE: net: ena: fix too long default tx interrupt moderation interval - - * Kernel build log filled with "/bin/bash: line 5: warning: command - substitution: ignored null byte in input" (LP: #1853843) - - [Debian] Fix warnings when checking for modules signatures - - * hwe-edge kernel 5.3.0-23.25 kernel does not boot on Precision 5720 AIO - (LP: #1852581) - - [Packaging] Fix module signing with older modinfo - - * Fix MST support on Ice Lake (LP: #1854432) - - drm/i915: fix port checks for MST support on gen >= 11 - - * headphone has noise as not mute on dell machines with alc236/256 - (LP: #1854401) - - SAUCE: ALSA: hda/realtek - Dell headphone has noise on unmute for ALC236 - - * [CML-S62] Need enable intel_pmc_core driver patch for Comet lake- S 6+2 - (LP: #1847450) - - SAUCE: platform/x86: intel_pmc_core: Add Comet Lake (CML) platform support - to intel_pmc_core driver - - * CVE-2019-14901 - - SAUCE: mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() - - * CVE-2019-14896 // CVE-2019-14897 - - SAUCE: libertas: Fix two buffer overflows at parsing bss descriptor - - * CVE-2019-14895 - - SAUCE: mwifiex: fix possible heap overflow in mwifiex_process_country_ie() - - * [CML-S62] Need enable intel_rapl patch support for Comet lake- S 6+2 - (LP: #1847454) - - powercap/intel_rapl: add support for CometLake Mobile - - powercap/intel_rapl: add support for Cometlake desktop - - * External microphone can't work on some dell machines with the codec alc256 - or alc236 (LP: #1853791) - - SAUCE: ALSA: hda/realtek - Move some alc256 pintbls to fallback table - - SAUCE: ALSA: hda/realtek - Move some alc236 pintbls to fallback table - - * remount of multilower moved pivoted-root overlayfs root, results in I/O - errors on some modified files (LP: #1824407) - - SAUCE: ovl: fix lookup failure on multi lower squashfs - - * [CML-S62] Need enable turbostat patch support for Comet lake- S 6+2 - (LP: #1847451) - - SAUCE: tools/power turbostat: Add Cometlake support - - * CONFIG_ARCH_ROCKCHIP is not set in ubuntu 18.04 aarch64,arm64 (LP: #1825222) - - [Config] Enable ROCKCHIP support for arm64 - - * [broadwell-rt286, playback] Since Linux 5.2rc2 audio playback no longer - works on Dell Venue 11 Pro 7140 (LP: #1846539) - - SAUCE: ASoC: SOF: Intel: Broadwell: clarify mutual exclusion with legacy - driver - - * i40e: general protection fault in i40e_config_vf_promiscuous_mode - (LP: #1852663) - - SAUCE: i40e Fix GPF when deleting VMs - - * libbpf check_abi fails on ppc64el (LP: #1854974) - - libbpf: Fix readelf output parsing on powerpc with recent binutils - - * CVE-2019-19050 - - crypto: user - fix memory leak in crypto_reportstat - - * Make hotplugging docking station to Thunderbolt port more reliable - (LP: #1853991) - - PCI/PM: Add pcie_wait_for_link_delay() - - PCI/PM: Add missing link delays required by the PCIe spec - - * i915: Display flickers (monitor loses signal briefly) during "flickerfree" - boot, while showing the BIOS logo on a black background (LP: #1836858) - - [Config] FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y - - * [CML] New device id's for CMP-H (LP: #1846335) - - i2c: i801: Add support for Intel Comet Lake PCH-H - - mtd: spi-nor: intel-spi: Add support for Intel Comet Lake-H SPI serial flash - - mfd: intel-lpss: Add Intel Comet Lake PCH-H PCI IDs - - * Focal update: v5.4.2 upstream stable release (LP: #1855326) - - io_uring: async workers should inherit the user creds - - net: separate out the msghdr copy from ___sys_{send,recv}msg() - - net: disallow ancillary data for __sys_{send,recv}msg_file() - - crypto: inside-secure - Fix stability issue with Macchiatobin - - driver core: platform: use the correct callback type for bus_find_device - - usb: dwc2: use a longer core rest timeout in dwc2_core_reset() - - staging: wilc1000: fix illegal memory access in wilc_parse_join_bss_param() - - staging: rtl8192e: fix potential use after free - - staging: rtl8723bs: Drop ACPI device ids - - staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids - - USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P - - mei: bus: prefix device names on bus with the bus name - - mei: me: add comet point V device id - - thunderbolt: Power cycle the router if NVM authentication fails - - x86/fpu: Don't cache access to fpu_fpregs_owner_ctx - - gve: Fix the queue page list allocated pages count - - macvlan: schedule bc_work even if error - - mdio_bus: don't use managed reset-controller - - net: dsa: sja1105: fix sja1105_parse_rgmii_delays() - - net: macb: add missed tasklet_kill - - net: psample: fix skb_over_panic - - net: sched: fix `tc -s class show` no bstats on class with nolock subqueues - - openvswitch: fix flow command message size - - sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook - - slip: Fix use-after-free Read in slip_open - - sctp: cache netns in sctp_ep_common - - openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() - - openvswitch: remove another BUG_ON() - - net/tls: take into account that bpf_exec_tx_verdict() may free the record - - net/tls: free the record on encryption error - - net: skmsg: fix TLS 1.3 crash with full sk_msg - - selftests/tls: add a test for fragmented messages - - net/tls: remove the dead inplace_crypto code - - net/tls: use sg_next() to walk sg entries - - selftests: bpf: test_sockmap: handle file creation failures gracefully - - selftests: bpf: correct perror strings - - tipc: fix link name length check - - selftests: pmtu: use -oneline for ip route list cache - - r8169: fix jumbo configuration for RTL8168evl - - r8169: fix resume on cable plug-in - - ext4: add more paranoia checking in ext4_expand_extra_isize handling - - Revert "jffs2: Fix possible null-pointer dereferences in - jffs2_add_frag_to_fragtree()" - - crypto: talitos - Fix build error by selecting LIB_DES - - HID: core: check whether Usage Page item is after Usage ID items - - platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer - - platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size - - Linux 5.4.2 - - * no HDMI video output since GDM greeter after linux-oem-osp1 version - 5.0.0-1026 (LP: #1852386) - - drm/i915: Add new CNL PCH ID seen on a CML platform - - SAUCE: drm/i915: Fix detection for a CMP-V PCH - - * Please add patch fixing RK818 ID detection (LP: #1853192) - - SAUCE: mfd: rk808: Fix RK818 ID template - - * Raydium Touchscreen on ThinkPad L390 does not work (LP: #1849721) - - HID: i2c-hid: fix no irq after reset on raydium 3118 - - * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) - - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 - 2-in-1" - - lib: devres: add a helper function for ioremap_uc - - mfd: intel-lpss: Use devm_ioremap_uc for MMIO - - * Lenovo dock MAC Address pass through doesn't work in Ubuntu (LP: #1827961) - - r8152: Add macpassthru support for ThinkPad Thunderbolt 3 Dock Gen 2 - - * Disable unreliable HPET on CFL-H system (LP: #1852216) - - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake H platforms - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [Config] Enable virtualbox dkms build - - [Config] update annotations to match current configs - - SAUCE: Add exfat module to signature inclusion list - - * Miscellaneous upstream changes - - Bluetooth: Fix invalid-free in bcsp_close() - - ath9k_hw: fix uninitialized variable data - - ath10k: Fix a NULL-ptr-deref bug in ath10k_usb_alloc_urb_from_pipe - - ath10k: Fix HOST capability QMI incompatibility - - ath10k: restore QCA9880-AR1A (v1) detection - - Revert "Bluetooth: hci_ll: set operational frequency earlier" - - Revert "dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues" - - md/raid10: prevent access of uninitialized resync_pages offset - - x86/insn: Fix awk regexp warnings - - x86/speculation: Fix incorrect MDS/TAA mitigation status - - x86/speculation: Fix redundant MDS mitigation message - - nbd: prevent memory leak - - x86/stackframe/32: Repair 32-bit Xen PV - - x86/xen/32: Make xen_iret_crit_fixup() independent of frame layout - - x86/xen/32: Simplify ring check in xen_iret_crit_fixup() - - x86/doublefault/32: Fix stack canaries in the double fault handler - - x86/pti/32: Size initial_page_table correctly - - x86/cpu_entry_area: Add guard page for entry stack on 32bit - - x86/entry/32: Fix IRET exception - - x86/entry/32: Use %ss segment where required - - x86/entry/32: Move FIXUP_FRAME after pushing %fs in SAVE_ALL - - x86/entry/32: Unwind the ESPFIX stack earlier on exception entry - - x86/entry/32: Fix NMI vs ESPFIX - - selftests/x86/mov_ss_trap: Fix the SYSENTER test - - selftests/x86/sigreturn/32: Invalidate DS and ES when abusing the kernel - - x86/pti/32: Calculate the various PTI cpu_entry_area sizes correctly, make - the CPU_ENTRY_AREA_PAGES assert precise - - x86/entry/32: Fix FIXUP_ESPFIX_STACK with user CR3 - - futex: Prevent robust futex exit race - - ALSA: usb-audio: Fix NULL dereference at parsing BADD - - ALSA: usb-audio: Fix Scarlett 6i6 Gen 2 port data - - media: vivid: Set vid_cap_streaming and vid_out_streaming to true - - media: vivid: Fix wrong locking that causes race conditions on streaming - stop - - media: usbvision: Fix invalid accesses after device disconnect - - media: usbvision: Fix races among open, close, and disconnect - - cpufreq: Add NULL checks to show() and store() methods of cpufreq - - futex: Move futex exit handling into futex code - - futex: Replace PF_EXITPIDONE with a state - - exit/exec: Seperate mm_release() - - futex: Split futex_mm_release() for exit/exec - - futex: Set task::futex_state to DEAD right after handling futex exit - - futex: Mark the begin of futex exit explicitly - - futex: Sanitize exit state handling - - futex: Provide state handling for exec() as well - - futex: Add mutex around futex exit - - futex: Provide distinct return value when owner is exiting - - futex: Prevent exit livelock - - media: uvcvideo: Fix error path in control parsing failure - - media: b2c2-flexcop-usb: add sanity checking - - media: cxusb: detect cxusb_ctrl_msg error in query - - media: imon: invalid dereference in imon_touch_event - - media: mceusb: fix out of bounds read in MCE receiver buffer - - ALSA: hda - Disable audio component for legacy Nvidia HDMI codecs - - USBIP: add config dependency for SGL_ALLOC - - usbip: tools: fix fd leakage in the function of read_attr_usbip_status - - usbip: Fix uninitialized symbol 'nents' in stub_recv_cmd_submit() - - usb-serial: cp201x: support Mark-10 digital force gauge - - USB: chaoskey: fix error case of a timeout - - appledisplay: fix error handling in the scheduled work - - USB: serial: mos7840: add USB ID to support Moxa UPort 2210 - - USB: serial: mos7720: fix remote wakeup - - USB: serial: mos7840: fix remote wakeup - - USB: serial: option: add support for DW5821e with eSIM support - - USB: serial: option: add support for Foxconn T77W968 LTE modules - - staging: comedi: usbduxfast: usbduxfast_ai_cmdtest rounding error - - powerpc/book3s64: Fix link stack flush on context switch - - KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel - - Linux 5.4.1 - - -- Seth Forshee Fri, 06 Dec 2019 15:53:53 -0600 - -linux (5.4.0-7.8) focal; urgency=medium - - * Miscellaneous Ubuntu changes - - SAUCE: selftests/bpf: Comment out BPF_CORE_READ's which cause clang to - segfault - - Update nvidia-430 to nvidia-440 - - [Config] Enable nvidia dkms build - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.4 - - -- Andrea Righi Mon, 25 Nov 2019 15:02:30 +0100 - -linux (5.4.0-6.7) focal; urgency=medium - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [Config] updateconfigs after rebase to 5.4-rc8 - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc7 - - -- Andrea Righi Mon, 18 Nov 2019 12:08:01 +0100 - -linux (5.4.0-5.6) focal; urgency=medium - - * refcount underflow and type confusion in shiftfs (LP: #1850867) // - CVE-2019-15793 - - SAUCE: shiftfs: Correct id translation for lower fs operations - - * refcount underflow and type confusion in shiftfs (LP: #1850867) // - CVE-2019-15792 - - SAUCE: shiftfs: prevent type confusion - - * refcount underflow and type confusion in shiftfs (LP: #1850867) // - CVE-2019-15791 - - SAUCE: shiftfs: Fix refcount underflow in btrfs ioctl handling - - * Some EFI systems fail to boot in efi_init() when booted via maas - (LP: #1851810) - - SAUCE: efi: efi_get_memory_map -- increase map headroom - - * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) - - SAUCE: seccomp: rework define for SECCOMP_USER_NOTIF_FLAG_CONTINUE - - SAUCE: seccomp: avoid overflow in implicit constant conversion - - * dkms artifacts may expire from the pool (LP: #1850958) - - [Packaging] dkms -- try launchpad librarian for pool downloads - - [Packaging] dkms -- dkms-build quieten wget verbiage - - * tsc marked unstable after entered PC10 on Intel CoffeeLake (LP: #1840239) - - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake platforms - - SAUCE: x86/intel: Disable HPET on Intel Ice Lake platforms - - * shiftfs: prevent exceeding project quotas (LP: #1849483) - - SAUCE: shiftfs: drop CAP_SYS_RESOURCE from effective capabilities - - * shiftfs: fix fallocate() (LP: #1849482) - - SAUCE: shiftfs: setup correct s_maxbytes limit - - * The alsa hda driver is not loaded due to the missing of PCIID for Comet - Lake-S [8086:a3f0] (LP: #1852070) - - SAUCE: ALSA: hda: Add Cometlake-S PCI ID - - * Can't adjust brightness on DELL UHD dGPU AIO (LP: #1813877) - - SAUCE: platform/x86: dell-uart-backlight: add missing status command - - SAUCE: platform/x86: dell-uart-backlight: load driver by scalar status - - SAUCE: platform/x86: dell-uart-backlight: add force parameter - - SAUCE: platform/x86: dell-uart-backlight: add quirk for old platforms - - * s_iflags overlap prevents unprivileged overlayfs mounts (LP: #1851677) - - SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags - - * ubuntu-aufs-modified mmap_region() breaks refcounting in overlayfs/shiftfs - error path (LP: #1850994) // CVE-2019-15794 - - SAUCE: shiftfs: Restore vm_file value when lower fs mmap fails - - SAUCE: ovl: Restore vm_file value when lower fs mmap fails - - * Miscellaneous Ubuntu changes - - [Debian] Convert update-aufs.sh to use aufs5 - - SAUCE: import aufs driver - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc7 - - -- Seth Forshee Wed, 13 Nov 2019 11:56:35 -0800 - -linux (5.4.0-4.5) focal; urgency=medium - - * High power consumption using 5.0.0-25-generic (LP: #1840835) - - PCI: Add a helper to check Power Resource Requirements _PR3 existence - - ALSA: hda: Allow HDA to be runtime suspended when dGPU is not bound to a - driver - - PCI: Fix missing inline for pci_pr3_present() - - * Fix signing of staging modules in eoan (LP: #1850234) - - [Packaging] Leave unsigned modules unsigned after adding .gnu_debuglink - - * [20.04 FEAT] Set Architecture Level (ALS) to z13 (LP: #1837525) - - [Config] s390x bump march to z13, with tune to z15 - - * Miscellaneous Ubuntu changes - - [Debian]: do not skip tests for linux-hwe-edge - - update dkms package versions - - [Config] re-enable zfs - - [Config] rename module virtio_fs to virtiofs - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc6 - - -- Andrea Righi Mon, 04 Nov 2019 15:12:02 +0100 - -linux (5.4.0-3.4) focal; urgency=medium - - * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) - - SAUCE: seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test - - * cloudimg: no iavf/i40evf module so no network available with SR-IOV enabled - cloud (LP: #1848481) - - [Packaging] include iavf/i40evf in generic - - * CVE-2019-17666 - - SAUCE: rtlwifi: Fix potential overflow on P2P code - - * Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x from yes - to no (LP: #1848492) - - [Config] Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x - from yes to no - - * Add Intel Comet Lake ethernet support (LP: #1848555) - - SAUCE: e1000e: Add support for Comet Lake - - * seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE (LP: #1847744) - - SAUCE: seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE - - SAUCE: seccomp: test SECCOMP_USER_NOTIF_FLAG_CONTINUE - - * drm/i915: Fix the issue of "azx_get_response timeout" for hdmi audio on ICL - platforms (LP: #1847192) - - SAUCE: drm/i915: Fix audio power up sequence for gen10+ display - - SAUCE: drm/i915: extend audio CDCLK>=2*BCLK constraint to more platforms - - * PM / hibernate: fix potential memory corruption (LP: #1847118) - - SAUCE: PM / hibernate: memory_bm_find_bit -- tighten node optimisation - - * [regression] NoNewPrivileges incompatible with Apparmor (LP: #1844186) - - SAUCE: apparmor: fix nnp subset test for unconfined - - * overlayfs: allow with shiftfs as underlay (LP: #1846272) - - SAUCE: overlayfs: allow with shiftfs as underlay - - * eoan: alsa/sof: Enable SOF_HDA link and codec (LP: #1848490) - - [Config] Fix SOF Kconfig options - - * linux won't build when new virtualbox version is present on the archive - (LP: #1848788) - - [Packaging]: download virtualbox from sources - - * Miscellaneous Ubuntu changes - - [Config] update annotations from configs - - [Config] updateconfigs after rebase to 5.4-rc5 - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc5 - - -- Seth Forshee Tue, 29 Oct 2019 12:01:27 -0500 - -linux (5.4.0-2.3) eoan; urgency=medium - - * Add installer support for iwlmvm adapters (LP: #1848236) - - d-i: Add iwlmvm to nic-modules - - * shiftfs: rework how shiftfs opens files (LP: #1846265) - - SAUCE: shiftfs: rework how shiftfs opens files - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [Config] updateconfigs after rebase to 5.4-rc4 - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc4 - - -- Andrea Righi Mon, 21 Oct 2019 17:31:26 +0200 - -linux (5.4.0-1.2) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [Config] updateconfigs after rebase to 5.4-rc3 - - [Config] add flexfb, fbtft_device and rio500 to modules.ignore - - [Config] amd64: ignore fbtft and all dependent modules - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc3 - - -- Andrea Righi Mon, 14 Oct 2019 19:48:52 +0200 - -linux (5.4.0-0.1) eoan; urgency=medium - - * Enable the Dragonboards out of Eoan/master arm64 kernel (LP: #1846704) - - [Packaging] arm64: snapdragon: introduce a snapdragon flavour - - [Packaging] arm64: snapdragon: switch kernel format to Image - - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8916=y - - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8994=y - - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8996=y - - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8998=y - - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_RPMH=y - - [Config] arm64: snapdragon: CONFIG_QCOM_BAM_DMA=y - - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA_MGMT=y - - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA=y - - [Config] arm64: snapdragon: CONFIG_COMMON_CLK_QCOM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_RPMH=y - - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8916=y - - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8994=y - - [Config] arm64: snapdragon: CONFIG_MSM_MMCC_8996=y - - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8998=y - - [Config] arm64: snapdragon: CONFIG_HWSPINLOCK_QCOM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_APCS_IPC=y - - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_GLINK_RPM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_GENI_SE=y - - [Config] arm64: snapdragon: CONFIG_QCOM_SMEM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_SMD_RPM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_SMP2P=y - - [Config] arm64: snapdragon: CONFIG_QCOM_SMSM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_QFPROM=y - - [Config] arm64: snapdragon: CONFIG_SERIAL_QCOM_GENI=y - - [Config] arm64: snapdragon: CONFIG_QCOM_TSENS=y - - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SMD_RPM=y - - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_SMD_RPM=y - - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_SMD=y - - [Config] arm64: snapdragon: CONFIG_MFD_QCOM_RPM=y - - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD=y - - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD_PLATFORM=y - - [Config] arm64: snapdragon: CONFIG_SCSI_UFS_HISI=y - - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI=y - - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_PLTFM=y - - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_MSM=y - - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SPMI=y - - [Config] arm64: snapdragon: CONFIG_PINCTRL_QCOM_SPMI_PMIC=y - - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HS=y - - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_QMP=y - - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_UFS=y - - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HSIC=y - - [Config] arm64: snapdragon: CONFIG_USB_CHIPIDEA_OF=y - - [Config] arm64: snapdragon: CONFIG_USB_EHCI_HCD_PLATFORM=y - - [Config] arm64: snapdragon: CONFIG_EXTCON_USB_GPIO=y - - [Config] arm64: snapdragon: CONFIG_REGULATOR_FIXED_VOLTAGE=y - - [Config] arm64: snapdragon: CONFIG_LEDS_GPIO=y - - [Config] arm64: snapdragon: CONFIG_USB_HSIC_USB3503=y - - [Config] arm64: snapdragon: CONFIG_USB_NET_DRIVERS=y - - [Config] arm64: snapdragon: CONFIG_USB_OTG=y - - [Config] arm64: snapdragon: CONFIG_USB_XHCI_PLATFORM=y - - [Config] arm64: snapdragon: CONFIG_USB_OHCI_HCD_PLATFORM=y - - [Config] arm64: snapdragon: CONFIG_USB_MUSB_HDRC=y - - [Config] arm64: snapdragon: CONFIG_USB_DWC3=y - - [Config] arm64: snapdragon: CONFIG_USB_DWC3_PCI=y - - [Config] arm64: snapdragon: CONFIG_USB_DWC3_OF_SIMPLE=y - - [Config] arm64: snapdragon: CONFIG_USB_DWC3_QCOM=y - - [Config] arm64: snapdragon: CONFIG_LEDS_PWM=y - - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_HEARTBEAT=y - - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_DEFAULT_ON=y - - [Config] arm64: snapdragon: CONFIG_QCOM_A53PLL=y - - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_APCS_MSM8916=y - - [Config] arm64: snapdragon: CONFIG_NLS_ISO8859_1=y - - [Config] arm64: snapdragon: CONFIG_USB_USBNET=y - - [Config] arm64: snapdragon: CONFIG_CRYPTO_DEV_QCOM_RNG=y - - [Config] arm64: snapdragon: CONFIG_POWER_RESET_QCOM_PON=y - - [Config] arm64: snapdragon: CONFIG_INPUT_PM8941_PWRKEY=y - - [Config] arm64: snapdragon: CONFIG_KEYBOARD_GPIO=y - - [Config] arm64: snapdragon: CONFIG_RTC_DRV_PM8XXX=y - - * Miscellaneous Ubuntu changes - - [Config] updateconfigs after rebase to 5.4-rc2 - - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that - aren't present. - - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). - - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down - - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot - mode - - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode - - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature - verify - - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot - - SAUCE: (lockdown) security: lockdown: Make - CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic - - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure - - [Config] Enable lockdown under secure boot - - SAUCE: import aufs driver - - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 - - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers - - [Config] enable aufs - - update dkms package versions - - [Config] disable zfs - - [Config] disable nvidia dkms build - - [Config] disable virtualbox dkms build - - [Debian] Generate stub reconstruct for -rc kernels - - Revert "UBUNTU: SAUCE: (namespace) block_dev: Forbid unprivileged mounting - when device is opened for writing" - - Revert "UBUNTU: SAUCE: (namespace) ext4: Add module parameter to enable user - namespace mounts" - - Revert "UBUNTU: SAUCE: (namespace) ext4: Add support for unprivileged mounts - from user namespaces" - - Revert "UBUNTU: SAUCE: (namespace) mtd: Check permissions towards mtd block - device inode when mounting" - - Revert "UBUNTU: SAUCE: (namespace) block_dev: Check permissions towards - block device inode when mounting" - - Revert "UBUNTU: SAUCE: (namespace) block_dev: Support checking inode - permissions in lookup_bdev()" - - [ Upstream Kernel Changes ] - - * Rebase to v5.4-rc2 - - -- Seth Forshee Fri, 11 Oct 2019 16:42:41 -0500 - -linux (5.4.0-0.0) eoan; urgency=medium - - * Dummy entry. - - -- Seth Forshee Tue, 08 Oct 2019 09:59:00 -0500 - -linux (5.3.0-17.18) eoan; urgency=medium - - * eoan/linux: 5.3.0-17.18 -proposed tracker (LP: #1846641) - - * CVE-2019-17056 - - nfc: enforce CAP_NET_RAW for raw sockets - - * CVE-2019-17055 - - mISDN: enforce CAP_NET_RAW for raw sockets - - * CVE-2019-17054 - - appletalk: enforce CAP_NET_RAW for raw sockets - - * CVE-2019-17053 - - ieee802154: enforce CAP_NET_RAW for raw sockets - - * CVE-2019-17052 - - ax25: enforce CAP_NET_RAW for raw sockets - - * CVE-2019-15098 - - ath6kl: fix a NULL-ptr-deref bug in ath6kl_usb_alloc_urb_from_pipe() - - * xHCI on AMD Stoney Ridge cannot detect USB 2.0 or 1.1 devices. - (LP: #1846470) - - x86/PCI: Avoid AMD FCH XHCI USB PME# from D0 defect - - * Re-enable linux-libc-dev build on i386 (LP: #1846508) - - [Packaging] Build only linux-libc-dev for i386 - - [Debian] final-checks -- ignore archtictures with no binaries - - * arm64: loop on boot after installing linux-generic-hwe-18.04-edge/bionic- - proposed (LP: #1845820) - - [Config] Disable CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT - - * Revert ESE DASD discard support (LP: #1846219) - - SAUCE: Revert "s390/dasd: Add discard support for ESE volumes" - - * Miscellaneous Ubuntu changes - - update dkms package versions - - -- Seth Forshee Thu, 03 Oct 2019 16:57:05 -0500 - -linux (5.3.0-16.17) eoan; urgency=medium - - * eoan/linux: 5.3.0-16.17 -proposed tracker (LP: #1846204) - - * zfs fails to build on s390x with debug symbols enabled (LP: #1846143) - - SAUCE: s390: Mark atomic const ops always inline - - -- Seth Forshee Tue, 01 Oct 2019 07:46:43 -0500 - -linux (5.3.0-15.16) eoan; urgency=medium - - * eoan/linux: 5.3.0-15.16 -proposed tracker (LP: #1845987) - - * Drop i386 build for 19.10 (LP: #1845714) - - [Packaging] Remove x32 arch references from control files - - [Debian] final-checks -- Get arch list from debian/control - - * ZFS kernel modules lack debug symbols (LP: #1840704) - - [Debian] Fix conditional for setting zfs debug package path - - * Use pyhon3-sphinx instead of python-sphinx for building html docs - (LP: #1845808) - - [Packaging] Update sphinx build dependencies to python3 packages - - * Kernel panic with 19.10 beta image (LP: #1845454) - - efi/tpm: Don't access event->count when it isn't mapped. - - efi/tpm: don't traverse an event log with no events - - efi/tpm: only set efi_tpm_final_log_size after successful event log parsing - - -- Seth Forshee Mon, 30 Sep 2019 11:57:20 -0500 - -linux (5.3.0-14.15) eoan; urgency=medium - - * eoan/linux: 5.3.0-14.15 -proposed tracker (LP: #1845728) - - * Drop i386 build for 19.10 (LP: #1845714) - - [Debian] Remove support for producing i386 kernels - - [Debian] Don't use CROSS_COMPILE for i386 configs - - * udevadm trigger will fail when trying to add /sys/devices/vio/ - (LP: #1845572) - - SAUCE: powerpc/vio: drop bus_type from parent device - - * Trying to online dasd drive results in invalid input/output from the kernel - on z/VM (LP: #1845323) - - SAUCE: s390/dasd: Fix error handling during online processing - - * intel-lpss driver conflicts with write-combining MTRR region (LP: #1845584) - - SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 2-in-1 - - * Support Hi1620 zip hw accelerator (LP: #1845355) - - [Config] Enable HiSilicon QM/ZIP as modules - - crypto: hisilicon - add queue management driver for HiSilicon QM module - - crypto: hisilicon - add hardware SGL support - - crypto: hisilicon - add HiSilicon ZIP accelerator support - - crypto: hisilicon - add SRIOV support for ZIP - - Documentation: Add debugfs doc for hisi_zip - - crypto: hisilicon - add debugfs for ZIP and QM - - MAINTAINERS: add maintainer for HiSilicon QM and ZIP controller driver - - crypto: hisilicon - fix kbuild warnings - - crypto: hisilicon - add dependency for CRYPTO_DEV_HISI_ZIP - - crypto: hisilicon - init curr_sgl_dma to fix compile warning - - crypto: hisilicon - add missing single_release - - crypto: hisilicon - fix error handle in hisi_zip_create_req_q - - crypto: hisilicon - Fix warning on printing %p with dma_addr_t - - crypto: hisilicon - Fix return value check in hisi_zip_acompress() - - crypto: hisilicon - avoid unused function warning - - * SafeSetID LSM should be built but disabled by default (LP: #1845391) - - LSM: SafeSetID: Stop releasing uninitialized ruleset - - [Config] Build SafeSetID LSM but don't enable it by default - - * CONFIG_LSM should not specify loadpin since it is not built (LP: #1845383) - - [Config] loadpin shouldn't be in CONFIG_LSM - - * Add new pci-id's for CML-S, ICL (LP: #1845317) - - drm/i915/icl: Add missing device ID - - drm/i915/cml: Add Missing PCI IDs - - * Thunderbolt support for ICL (LP: #1844680) - - thunderbolt: Correct path indices for PCIe tunnel - - thunderbolt: Move NVM upgrade support flag to struct icm - - thunderbolt: Use 32-bit writes when writing ring producer/consumer - - thunderbolt: Do not fail adding switch if some port is not implemented - - thunderbolt: Hide switch attributes that are not set - - thunderbolt: Expose active parts of NVM even if upgrade is not supported - - thunderbolt: Add support for Intel Ice Lake - - ACPI / property: Add two new Thunderbolt property GUIDs to the list - - * Ubuntu 19.10 - Additional PCI patch and fix (LP: #1844668) - - s390/pci: fix MSI message data - - * Enhanced Hardware Support - Finalize Naming (LP: #1842774) - - s390: add support for IBM z15 machines - - [Config] CONFIG_MARCH_Z15=n, CONFIG_TUNE_Z15=n - - * Eoan update: v5.3.1 upstream stable release (LP: #1845642) - - USB: usbcore: Fix slab-out-of-bounds bug during device reset - - media: tm6000: double free if usb disconnect while streaming - - phy: renesas: rcar-gen3-usb2: Disable clearing VBUS in over-current - - ip6_gre: fix a dst leak in ip6erspan_tunnel_xmit - - net/sched: fix race between deactivation and dequeue for NOLOCK qdisc - - net_sched: let qdisc_put() accept NULL pointer - - udp: correct reuseport selection with connected sockets - - xen-netfront: do not assume sk_buff_head list is empty in error handling - - net: dsa: Fix load order between DSA drivers and taggers - - net: stmmac: Hold rtnl lock in suspend/resume callbacks - - KVM: coalesced_mmio: add bounds checking - - Documentation: sphinx: Add missing comma to list of strings - - firmware: google: check if size is valid when decoding VPD data - - serial: sprd: correct the wrong sequence of arguments - - tty/serial: atmel: reschedule TX after RX was started - - nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds - - Revert "arm64: Remove unnecessary ISBs from set_{pte,pmd,pud}" - - ovl: fix regression caused by overlapping layers detection - - phy: qcom-qmp: Correct ready status, again - - floppy: fix usercopy direction - - media: technisat-usb2: break out of loop at end of buffer - - Linux 5.3.1 - - * ZFS kernel modules lack debug symbols (LP: #1840704) - - [Debian]: Remove hardcoded $(pkgdir) in debug symbols handling - - [Debian]: Handle debug symbols for modules in extras too - - [Debian]: Check/link modules with debug symbols after DKMS modules - - [Debian]: Warn about modules without debug symbols - - [Debian]: dkms-build: new parameter for debug package directory - - [Debian]: dkms-build: zfs: support for debug symbols - - [Debian]: dkms-build: Avoid executing post-processor scripts twice - - [Debian]: dkms-build: Move zfs special-casing into configure script - - * /proc/self/maps paths missing on live session (was vlc won't start; eoan - 19.10 & bionic 18.04 ubuntu/lubuntu/kubuntu/xubuntu/ubuntu-mate dailies) - (LP: #1842382) - - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: enable overlayfs on shiftfs" - - -- Seth Forshee Fri, 27 Sep 2019 16:08:06 -0500 - -linux (5.3.0-13.14) eoan; urgency=medium - - * eoan/linux: 5.3.0-13.14 -proposed tracker (LP: #1845105) - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * Miscellaneous Ubuntu changes - - [Debian] Remove binutils-dev build dependency - - -- Seth Forshee Mon, 23 Sep 2019 19:26:43 -0500 - -linux (5.3.0-12.13) eoan; urgency=medium - - * Change kernel compression method to improve boot speed (LP: #1840934) - - [Packaging] Add lz4 build dependency for s390x - - * Miscellaneous Ubuntu changes - - SAUCE: Remove spl and zfs source - - -- Seth Forshee Tue, 17 Sep 2019 13:36:26 +0200 - -linux (5.3.0-11.12) eoan; urgency=medium - - * eoan/linux: 5.3.0-11.12 -proposed tracker (LP: #1844144) - - * Suspend to RAM(S3) does not wake up for latest megaraid and mpt3sas - adapters(SAS3.5 onwards) (LP: #1838751) - - PCI: Restore Resizable BAR size bits correctly for 1MB BARs - - * s390/setup: Actually init kernel lock down (LP: #1843961) - - SAUCE: (lockdown) s390/setup: Actually init kernel lock down - - * cherrypick has_sipl fix (LP: #1843960) - - SAUCE: s390/sclp: Fix bit checked for has_sipl - - * Change kernel compression method to improve boot speed (LP: #1840934) - - [Config]: Switch kernel compression from LZO to LZ4 on s390x - - * Installation fails on eoan/PowerVM : missing /dev/nvram (LP: #1837726) - - [Config] CONFIG_NVRAM=y for ppc64el - - * Miscellaneous Ubuntu changes - - [Config]: remove nvram from ppc64el modules ABI - - [Config] Update annotations for recent config changes - - SAUCE: sched: Add __ASSEMBLY__ guards around struct clone_args - - SAUCE: i2c: qcom-geni: Disable DMA processing on the Lenovo Yoga C630 - - SAUCE: arm64: dts: qcom: Add Lenovo Yoga C630 - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.3 - - -- Paolo Pisati Mon, 16 Sep 2019 16:18:27 +0200 - -linux (5.3.0-10.11) eoan; urgency=medium - - * eoan/linux: 5.3.0-10.11 -proposed tracker (LP: #1843232) - - * No sound inputs from the external microphone and headset on a Dell machine - (LP: #1842265) - - SAUCE: ALSA: hda - Expand pin_match function to match upcoming new tbls - - SAUCE: ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family - - * Horizontal corrupted line at top of screen caused by framebuffer compression - (LP: #1840236) - - SAUCE: drm/i915/fbc: disable framebuffer compression on IceLake - - * Add bpftool to linux-tools-common (LP: #1774815) - - [Debian] package bpftool in linux-tools-common - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc8 - - -- Paolo Pisati Mon, 09 Sep 2019 10:00:41 +0200 - -linux (5.3.0-9.10) eoan; urgency=medium - - * eoan/linux: 5.3.0-9.10 -proposed tracker (LP: #1842393) - - * shiftfs: mark kmem_cache as reclaimable (LP: #1842059) - - SAUCE: shiftfs: mark slab objects SLAB_RECLAIM_ACCOUNT - - * shiftfs: drop entries from cache on unlink (LP: #1841977) - - SAUCE: shiftfs: fix buggy unlink logic - - * Fix touchpad IRQ storm after S3 (LP: #1841396) - - pinctrl: intel: remap the pin number to gpio offset for irq enabled pin - - * Please include DTBs for arm64 laptops (LP: #1842050) - - arm64: dts: qcom: Add Lenovo Miix 630 - - arm64: dts: qcom: Add HP Envy x2 - - arm64: dts: qcom: Add Asus NovaGo TP370QL - - * Miscellaneous Ubuntu changes - - SAUCE: import aufs driver - - [Packaging]: ignore vbox modules when vbox is disabled - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc7 - - -- Paolo Pisati Tue, 03 Sep 2019 10:27:33 +0200 - -linux (5.3.0-8.9) eoan; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] resync getabis - - * Change kernel compression method to improve boot speed (LP: #1840934) - - [Config] change kernel compression method to improve boot speed - - [Packaging] add build dependencies for compression algorithms - - * realtek r8822be kernel module fails after update to linux kernel-headers - 5.0.0-21 (LP: #1838133) - - rtw88: Fix misuse of GENMASK macro - - rtw88: pci: Rearrange the memory usage for skb in RX ISR - - rtw88: pci: Use DMA sync instead of remapping in RX ISR - - rtw88: debug: dump tx power indexes in use - - rtw88: use txpwr_lmt_cfg_pair struct, not arrays - - rtw88: pci: remove set but not used variable 'ip_sel' - - rtw88: allow c2h operation in irq context - - rtw88: enclose c2h cmd handle with mutex - - rtw88: add BT co-existence support - - SAUCE: rtw88: pci: enable MSI interrupt - - * VIMC module not available (CONFIG_VIDEO_VIMC not set) (LP: #1831482) - - [Config] Enable VIMC module - - * Goodix touchpad may drop first input event (LP: #1840075) - - Revert "UBUNTU: SAUCE: i2c: designware: add G3 3590 into i2c quirk" - - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk" - - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c - quirk" - - Revert "UBUNTU: SAUCE: i2c: designware: Add disable runtime pm quirk" - - mfd: intel-lpss: Remove D3cold delay - - * Include Sunix serial/parallel driver (LP: #1826716) - - serial: 8250_pci: Add support for Sunix serial boards - - parport: parport_serial: Add support for Sunix Multi I/O boards - - * enable lockdown on s390x when Secure IPL is performed (LP: #1839622) - - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure - - Ubuntu: [Config] Enable CONFIG_LOCK_DOWN_KERNEL on s390x. - - * UBUNTU: SAUCE: shiftfs: pass correct point down (LP: #1837231) - - SAUCE: shiftfs: pass correct point down - - * shiftfs: add O_DIRECT support (LP: #1837223) - - SAUCE: shiftfs: add O_DIRECT support - - * Miscellaneous Ubuntu changes - - [Config] enable secureboot signing on s390x - - [Config] CONFIG_TEST_BLACKHOLE_DEV=m - - SAUCE: selftests: fib_tests: assign address to dummy1 for rp_filter tests - - [Debian] disable dkms builds for autopktest rebuilds - - update dkms package versions - - [Config] updateconfigs after v5.3-rc6 rebase - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc5 - - -- Paolo Pisati Mon, 26 Aug 2019 10:09:42 +0200 - -linux (5.3.0-7.8) eoan; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] resync getabis - - * Miscellaneous Ubuntu changes - - [Config] updateconfigs after v5.3-rc5 rebase - - remove missing module after updateconfigs - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc5 - - -- Paolo Pisati Mon, 19 Aug 2019 15:31:24 +0200 - -linux (5.3.0-6.7) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - SAUCE: selftests/bpf: prevent headers to be compiled as C code - - -- Seth Forshee Wed, 14 Aug 2019 13:25:01 -0500 - -linux (5.3.0-5.6) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [Config] enable zfs build - - -- Seth Forshee Tue, 13 Aug 2019 09:16:06 -0500 - -linux (5.3.0-4.5) eoan; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] resync getabis - - [Packaging] update helper scripts - - * bcache: bch_allocator_thread(): hung task timeout (LP: #1784665) // Tight - timeout for bcache removal causes spurious failures (LP: #1796292) - - SAUCE: bcache: fix deadlock in bcache_allocator - - * shiftfs: allow overlayfs (LP: #1838677) - - SAUCE: shiftfs: enable overlayfs on shiftfs - - * Miscellaneous Ubuntu changes - - SAUCE: Revert "kbuild: modpost: do not parse unnecessary rules for vmlinux - modpost" - - update dkms package versions - - enable nvidia dkms build - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc4 - - -- Seth Forshee Mon, 12 Aug 2019 10:41:27 -0500 - -linux (5.3.0-3.4) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - update dkms package versions - - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers - - [Config] add mux-* to modules.ignore - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc3 - - -- Paolo Pisati Mon, 05 Aug 2019 18:17:09 +0200 - -linux (5.3.0-2.3) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - [Packaging] add build dependincy on fontconfig - - -- Seth Forshee Mon, 29 Jul 2019 12:18:46 -0400 - -linux (5.3.0-1.2) eoan; urgency=medium - - * System does not auto detect disconnection of external monitor (LP: #1835001) - - SAUCE: drm/i915: Add support for retrying hotplug - - SAUCE: drm/i915: Enable hotplug retry - - * Please enable CONFIG_SCSI_UFS_QCOM as a module on arm64 (LP: #1837332) - - [Config] Enable CONFIG_SCSI_UFS_QCOM as a module on arm64. - - * Add arm64 CONFIG_ARCH_MESON=y and related configs Edit (LP: #1820530) - - [Config] enable ARCH_MESON - - remove missing module - - [Config] update annotations after enabling ARCH_MESON for arm64 - - * Miscellaneous Ubuntu changes - - SAUCE: KVM: PPC: comment implicit fallthrough - - update dkms package versions - - [Config] enable vbox dkms build - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc2 - - -- Seth Forshee Sun, 28 Jul 2019 23:10:16 -0400 - -linux (5.3.0-0.1) eoan; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] resync git-ubuntu-log - - * Miscellaneous Ubuntu changes - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is - locked down - - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked - down - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and - KEXEC_SIG_FORCE - - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is - locked down - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Lock down module params that specify hardware - parameters (eg. ioport) - - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module - - SAUCE: (efi-lockdown) Lock down /proc/kcore - - SAUCE: (efi-lockdown) Lock down kprobes - - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the - kernel is locked down - - SAUCE: (efi-lockdown) Lock down perf - - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked - down - - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages - - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy - when locked down - - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation - defined - - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists - that aren't present. - - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err(). - - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module - signature verify - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates - - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in - Secure Boot mode - - SAUCE: import aufs driver - - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 - - [Config] disable zfs dkms build - - [Config] disable nvidia dkms build - - [Config] disable vbox dkms build - - SAUCE: perf diff: use llabs for s64 vaules - - [ Upstream Kernel Changes ] - - * Rebase to v5.3-rc1 - - -- Seth Forshee Tue, 23 Jul 2019 21:45:44 -0500 - -linux (5.3.0-0.0) eoan; urgency=medium - - * Dummy entry. - - -- Seth Forshee Mon, 22 Jul 2019 10:19:04 -0500 - -linux (5.2.0-9.10) eoan; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * input/mouse: alps trackpoint-only device doesn't work (LP: #1836752) - - SAUCE: Input: alps - don't handle ALPS cs19 trackpoint-only device - - SAUCE: Input: alps - fix a mismatch between a condition check and its - comment - - * System does not auto detect disconnection of external monitor (LP: #1835001) - - SAUCE: drm/i915: Add support for retrying hotplug - - SAUCE: drm/i915: Enable hotplug retry - - * alsa/hdmi: add icelake hdmi audio support for a Dell machine (LP: #1836916) - - SAUCE: ALSA: hda/hdmi - Remove duplicated define - - SAUCE: ALSA: hda/hdmi - Fix i915 reverse port/pin mapping - - * First click on Goodix touchpad doesn't be recognized after runtime suspended - (LP: #1836836) - - SAUCE: i2c: designware: add G3 3590 into i2c quirk - - * ixgbe{vf} - Physical Function gets IRQ when VF checks link state - (LP: #1836760) - - ixgbevf: Use cached link state instead of re-reading the value for ethtool - - * Doing multiple squashfs (and other loop?) mounts in parallel breaks - (LP: #1836914) - - SAUCE: Revert "loop: Don't change loop device under exclusive opener" - - * hibmc-drm Causes Unreadable Display for Huawei amd64 Servers (LP: #1762940) - - SAUCE: Make CONFIG_DRM_HISI_HIBMC depend on ARM64 - - [Config] Set CONFIG_DRM_HISI_HIBMC to arm64 only - - [Config] add hibmc-drm to modules.ignore - - * hda/realtek: can't detect external mic on a Dell machine (LP: #1836755) - - ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine - - * Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 - (LP: #1835054) - - [Config] Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 - - * Unhide Nvidia HDA audio controller (LP: #1836308) - - PCI: Enable NVIDIA HDA controllers - - * Intel ethernet I219 may wrongly detect connection speed as 10Mbps - (LP: #1836177) - - e1000e: Make watchdog use delayed work - - * Sometimes touchpad(goodix) can't use tap function (LP: #1836020) - - SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c quirk - - SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk - - * Intel ethernet I219 has slow RX speed (LP: #1836152) - - e1000e: add workaround for possible stalled packet - - e1000e: disable force K1-off feature - - * bcache: risk of data loss on I/O errors in backing or caching devices - (LP: #1829563) - - Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" - - * bnx2x driver causes 100% CPU load (LP: #1832082) - - bnx2x: Prevent ptp_task to be rescheduled indefinitely - - * fcf-protection=none patch with new version - - Revert "UBUNTU: SAUCE: kbuild: add -fcf-protection=none to retpoline flags" - - SAUCE: kbuild: add -fcf-protection=none when using retpoline flags - - * CVE-2019-12614 - - powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() - - * Eoan update: v5.2.1 upstream stable release (LP: #1836622) - - crypto: lrw - use correct alignmask - - crypto: talitos - rename alternative AEAD algos. - - fscrypt: don't set policy for a dead directory - - udf: Fix incorrect final NOT_ALLOCATED (hole) extent length - - media: stv0297: fix frequency range limit - - ALSA: usb-audio: Fix parse of UAC2 Extension Units - - ALSA: hda/realtek - Headphone Mic can't record after S3 - - tpm: Actually fail on TPM errors during "get random" - - tpm: Fix TPM 1.2 Shutdown sequence to prevent future TPM operations - - block: fix .bi_size overflow - - block, bfq: NULL out the bic when it's no longer valid - - perf intel-pt: Fix itrace defaults for perf script - - perf auxtrace: Fix itrace defaults for perf script - - perf intel-pt: Fix itrace defaults for perf script intel-pt documentation - - perf pmu: Fix uncore PMU alias list for ARM64 - - perf thread-stack: Fix thread stack return from kernel for kernel-only case - - perf header: Assign proper ff->ph in perf_event__synthesize_features() - - x86/ptrace: Fix possible spectre-v1 in ptrace_get_debugreg() - - x86/tls: Fix possible spectre-v1 in do_get_thread_area() - - Documentation: Add section about CPU vulnerabilities for Spectre - - Documentation/admin: Remove the vsyscall=native documentation - - mwifiex: Don't abort on small, spec-compliant vendor IEs - - USB: serial: ftdi_sio: add ID for isodebug v1 - - USB: serial: option: add support for GosunCn ME3630 RNDIS mode - - Revert "serial: 8250: Don't service RX FIFO if interrupts are disabled" - - p54usb: Fix race between disconnect and firmware loading - - usb: gadget: f_fs: data_len used before properly set - - usb: gadget: ether: Fix race between gether_disconnect and rx_submit - - usb: dwc2: use a longer AHB idle timeout in dwc2_core_reset() - - usb: renesas_usbhs: add a workaround for a race condition of workqueue - - drivers/usb/typec/tps6598x.c: fix portinfo width - - drivers/usb/typec/tps6598x.c: fix 4CC cmd write - - p54: fix crash during initialization - - staging: comedi: dt282x: fix a null pointer deref on interrupt - - staging: wilc1000: fix error path cleanup in wilc_wlan_initialize() - - staging: bcm2835-camera: Restore return behavior of ctrl_set_bitrate() - - staging: comedi: amplc_pci230: fix null pointer deref on interrupt - - staging: mt7621-pci: fix PCIE_FTS_NUM_LO macro - - HID: Add another Primax PIXART OEM mouse quirk - - lkdtm: support llvm-objcopy - - binder: fix memory leak in error path - - binder: return errors from buffer copy functions - - iio: adc: stm32-adc: add missing vdda-supply - - coresight: Potential uninitialized variable in probe() - - coresight: etb10: Do not call smp_processor_id from preemptible - - coresight: tmc-etr: Do not call smp_processor_id() from preemptible - - coresight: tmc-etr: alloc_perf_buf: Do not call smp_processor_id from - preemptible - - coresight: tmc-etf: Do not call smp_processor_id from preemptible - - carl9170: fix misuse of device driver API - - Revert "x86/build: Move _etext to actual end of .text" - - VMCI: Fix integer overflow in VMCI handle arrays - - staging: vchiq_2835_arm: revert "quit using custom down_interruptible()" - - staging: vchiq: make wait events interruptible - - staging: vchiq: revert "switch to wait_for_completion_killable" - - staging: fsl-dpaa2/ethsw: fix memory leak of switchdev_work - - staging: bcm2835-camera: Replace spinlock protecting context_map with mutex - - staging: bcm2835-camera: Ensure all buffers are returned on disable - - staging: bcm2835-camera: Remove check of the number of buffers supplied - - staging: bcm2835-camera: Handle empty EOS buffers whilst streaming - - staging: rtl8712: reduce stack usage, again - - Linux 5.2.1 - - [Config] updateconfigs after v5.2.1 stable update - - * fcf-protection=none patch with upstream version - - Revert "UBUNTU: SAUCE: add -fcf-protection=none to retpoline flags" - - SAUCE: kbuild: add -fcf-protection=none to retpoline flags - - * Miscellaneous Ubuntu changes - - SAUCE: selftests/ftrace: avoid failure when trying to probe a notrace - function - - SAUCE: selftests/powerpc/ptrace: fix build failure - - update dkms package versions - - [Packaging] add zlua to zfs-modules.ignore - - update dkms package versions - - -- Seth Forshee Fri, 19 Jul 2019 15:04:45 -0500 - -linux (5.2.0-8.9) eoan; urgency=medium - - * linux: 5.2.0-8.9 -proposed tracker (LP: #1835700) - - * Miscellaneous Ubuntu changes - - [Packaging] replace zfs and spl build with zfs 0.8.1-1ubuntu1 - - SAUCE: test_bpf: remove expected fail for Ctx heavy transformations test on - s390 - - SAUCE: add -fcf-protection=none to retpoline flags - - SAUCE: usbip: ensure strings copied using strncpy are null-terminated - - SAUCE: usbip: add -Wno-address-of-packed-member to EXTRA_CFLAGS - - SAUCE: perf jvmti: ensure strncpy result is null-terminated - - update dkms package versions - - add removed zfs modules to modules.ignore - - [ Upstream Kernel Changes ] - - * Rebase to v5.2 - - -- Seth Forshee Mon, 08 Jul 2019 07:13:41 -0500 - -linux (5.2.0-7.8) eoan; urgency=medium - - * Kernel panic upon resetting ixgbe SR-IOV VFIO virtual function using 5.0 - kernel (LP: #1829652) - - SAUCE: ixgbe: Avoid NULL pointer dereference with VF on non-IPsec hw - - * Hi1620 driver updates from upstream 5.2 merge window (LP: #1830815) - - net: hns3: initialize CPU reverse mapping - - net: hns3: refine the flow director handle - - net: hns3: add aRFS support for PF - - net: hns3: fix for FEC configuration - - RDMA/hns: Remove unnecessary print message in aeq - - RDMA/hns: Update CQE specifications - - RDMA/hns: Move spin_lock_irqsave to the correct place - - RDMA/hns: Remove jiffies operation in disable interrupt context - - RDMA/hns: Replace magic numbers with #defines - - net: hns3: fix compile warning without CONFIG_RFS_ACCEL - - net: hns3: fix for HNS3_RXD_GRO_SIZE_M macro - - net: hns3: add support for dump firmware statistics by debugfs - - net: hns3: use HCLGE_STATE_NIC_REGISTERED to indicate PF NIC client has - registered - - net: hns3: use HCLGE_STATE_ROCE_REGISTERED to indicate PF ROCE client has - registered - - net: hns3: use HCLGEVF_STATE_NIC_REGISTERED to indicate VF NIC client has - registered - - net: hns3: modify hclge_init_client_instance() - - net: hns3: modify hclgevf_init_client_instance() - - net: hns3: add handshake with hardware while doing reset - - net: hns3: stop schedule reset service while unloading driver - - net: hns3: adjust hns3_uninit_phy()'s location in the hns3_client_uninit() - - net: hns3: fix a memory leak issue for hclge_map_unmap_ring_to_vf_vector - - RDMA/hns: Bugfix for posting multiple srq work request - - net: hns3: remove redundant core reset - - net: hns3: don't configure new VLAN ID into VF VLAN table when it's full - - net: hns3: fix VLAN filter restore issue after reset - - net: hns3: set the port shaper according to MAC speed - - net: hns3: add a check to pointer in error_detected and slot_reset - - net: hns3: set ops to null when unregister ad_dev - - net: hns3: add handling of two bits in MAC tunnel interrupts - - net: hns3: remove setting bit of reset_requests when handling mac tunnel - interrupts - - net: hns3: add opcode about query and clear RAS & MSI-X to special opcode - - net: hns3: delay and separate enabling of NIC and ROCE HW errors - - RDMA/hns: fix inverted logic of readl read and shift - - RDMA/hns: Bugfix for filling the sge of srq - - net: hns3: log detail error info of ROCEE ECC and AXI errors - - net: hns3: fix wrong size of mailbox responding data - - net: hns3: make HW GRO handling compliant with SW GRO - - net: hns3: replace numa_node_id with numa_mem_id for buffer reusing - - net: hns3: refactor hns3_get_new_int_gl function - - net: hns3: trigger VF reset if a VF has an over_8bd_nfe_err - - net: hns3: delete the redundant user NIC codes - - net: hns3: small changes for magic numbers - - net: hns3: use macros instead of magic numbers - - net: hns3: refactor PF/VF RSS hash key configuration - - net: hns3: some modifications to simplify and optimize code - - net: hns3: fix some coding style issues - - net: hns3: delay setting of reset level for hw errors until slot_reset is - called - - net: hns3: fix avoid unnecessary resetting for the H/W errors which do not - require reset - - net: hns3: process H/W errors occurred before HNS dev initialization - - net: hns3: add recovery for the H/W errors occurred before the HNS dev - initialization - - net: hns3: some changes of MSI-X bits in PPU(RCB) - - net: hns3: extract handling of mpf/pf msi-x errors into functions - - net: hns3: clear restting state when initializing HW device - - net: hns3: free irq when exit from abnormal branch - - net: hns3: fix for dereferencing before null checking - - net: hns3: fix for skb leak when doing selftest - - net: hns3: delay ring buffer clearing during reset - - net: hns3: some variable modification - - net: hns3: fix dereference of ae_dev before it is null checked - - scsi: hisi_sas: Delete PHY timers when rmmod or probe failed - - scsi: hisi_sas: Fix the issue of argument mismatch of printing ecc errors - - scsi: hisi_sas: Reduce HISI_SAS_SGE_PAGE_CNT in size - - scsi: hisi_sas: Change the type of some numbers to unsigned - - scsi: hisi_sas: Ignore the error code between phy down to phy up - - scsi: hisi_sas: Disable stash for v3 hw - - net: hns3: Add missing newline at end of file - - RDMa/hns: Don't stuck in endless timeout loop - - * Sometimes touchpad automatically trigger double click (LP: #1833484) - - SAUCE: i2c: designware: Add disable runtime pm quirk - - * Add pointstick support on HP ZBook 17 G5 (LP: #1833387) - - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" - - * depmod may prefer unsigned l-r-m nvidia modules to signed modules - (LP: #1834479) - - [Packaging] dkms-build--nvidia-N -- clean up unsigned ko files - - * Miscellaneous Ubuntu changes - - SAUCE: selftests/powerpc: disable signal_fuzzer test - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc7 - - -- Seth Forshee Mon, 01 Jul 2019 07:22:18 -0500 - -linux (5.2.0-6.7) eoan; urgency=medium - - * hinic: fix oops due to race in set_rx_mode (LP: #1832048) - - hinic: fix a bug in set rx mode - - * Miscellaneous Ubuntu changes - - rebase to v5.2-rc6 - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc6 - - -- Seth Forshee Sun, 23 Jun 2019 23:36:11 -0500 - -linux (5.2.0-5.6) eoan; urgency=medium - - * QCA9377 isn't being recognized sometimes (LP: #1757218) - - SAUCE: USB: Disable USB2 LPM at shutdown - - * shiftfs: allow changing ro/rw for subvolumes (LP: #1832316) - - SAUCE: shiftfs: allow changing ro/rw for subvolumes - - * Miscellaneous Ubuntu changes - - update dkms package versions - - [Packaging] replace nvidia-418 dkms build with nvidia-430 - - SAUCE: import aufs driver - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc5 - - -- Seth Forshee Mon, 17 Jun 2019 15:04:12 -0500 - -linux (5.2.0-4.5) eoan; urgency=medium - - * arm64: cma_alloc errors at boot (LP: #1823753) - - [Config] Bump CMA_SIZE_MBYTES to 32 on arm64 - - dma-contiguous: add dma_{alloc,free}_contiguous() helpers - - dma-contiguous: use fallback alloc_pages for single pages - - dma-contiguous: fix !CONFIG_DMA_CMA version of dma_{alloc, - free}_contiguous() - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_MFD_TQMX86=n for s390x - - [Config] CONFIG_GPIO_AMD_FCH=n for s390x - - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x - - [Config] CONFIG_LCD_CLASS_DEVICE=n for s390x - - [Config] CONFIG_DRM_ETNAVIV=m for armhf generic-lpae - - [Config] CONFIG_DRM_NOUVEAU_SVM=n - - [Config] CONFIG_HWMON=n for s390x - - [Config] CONFIG_NEW_LEDS=n for s390x - - [Config] CONFIG_MTD_NAND_OMAP2=y for armhf - - [Config] CONFIG_VOP_BUS=n for non-amd64 arches - - [Config] CONFIG_TI_CPSW_PHY_SEL=n - - [Config] CONFIG_INTERCONNECT=n for s390x - - [Config] CONFIG_SCSI_GDTH=n for s390x - - [Config] CONFIG_PACKING=n for s390x - - [Config] CONFIG_ARCH_MILBEAUT=y for armhf - - [Config] update annotations following config review - - update dkms package versions - - [Config] enable nvidia dkms build - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc4 - - -- Seth Forshee Mon, 10 Jun 2019 07:00:11 -0500 - -linux (5.2.0-3.4) eoan; urgency=medium - - * [18.04/18.10] File libperf-jvmti.so is missing in linux-tools-common deb on - Ubuntu (LP: #1761379) - - [Packaging] Support building libperf-jvmti.so - - * Miscellaneous Ubuntu changes - - SAUCE: Revert "bpf, selftest: test global data/bss/rodata sections" - - update dkms package versions - - [Config] enable zfs - - rebase to v5.2-rc3 - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc3 - - -- Seth Forshee Sun, 02 Jun 2019 21:48:50 -0500 - -linux (5.2.0-2.3) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - SAUCE: perf arm64: Fix mksyscalltbl when system kernel headers are ahead of - the kernel - - -- Seth Forshee Tue, 28 May 2019 07:12:39 -0500 - -linux (5.2.0-1.2) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_INTEGRITY_PLATFORM_KEYRING=y - - update dkms package versions - - [Config] enable vbox dkms build - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc2 - - -- Seth Forshee Mon, 27 May 2019 21:11:27 -0500 - -linux (5.2.0-0.1) eoan; urgency=medium - - * Miscellaneous Ubuntu changes - - SAUCE: import aufs driver - - [Packaging] disable ZFS - - [Packaging] disable nvidia - - [Packaging] dkms-build -- expand paths searched for make.log files - - add virtualbox-guest-dkms dkms package build - - enable vbox dkms build for amd64 and i386 - - update dkms package versions - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is - locked down - - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked - down - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and - KEXEC_SIG_FORCE - - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is - locked down - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Lock down module params that specify hardware - parameters (eg. ioport) - - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module - - SAUCE: (efi-lockdown) Lock down /proc/kcore - - SAUCE: (efi-lockdown) Lock down kprobes - - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the - kernel is locked down - - SAUCE: (efi-lockdown) Lock down perf - - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked - down - - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages - - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy - when locked down - - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists - that aren't present. - - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err(). - - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module - signature verify - - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation - defined - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates - - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in - Secure Boot mode - - update dkms package versions - - [Config] disable vbox build - - SAUCE: s390: mark __cpacf_check_opcode() and cpacf_query_func() as - __always_inline - - SAUCE: IB/mlx5: use size_t instead of u64 when dividing - - [ Upstream Kernel Changes ] - - * Rebase to v5.2-rc1 - - -- Seth Forshee Tue, 21 May 2019 11:18:43 -0500 - -linux (5.2.0-0.0) eoan; urgency=medium - - * Dummy entry. - - -- Seth Forshee Tue, 21 May 2019 07:34:43 -0500 - -linux (5.1.0-2.2) eoan; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] resync git-ubuntu-log - - * Eoan update: v5.1.2 upstream stable release (LP: #1829050) - - x86/msr-index: Cleanup bit defines - - x86/speculation: Consolidate CPU whitelists - - x86/speculation/mds: Add basic bug infrastructure for MDS - - x86/speculation/mds: Add BUG_MSBDS_ONLY - - x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests - - x86/speculation/mds: Add mds_clear_cpu_buffers() - - x86/speculation/mds: Clear CPU buffers on exit to user - - x86/kvm/vmx: Add MDS protection when L1D Flush is not active - - x86/speculation/mds: Conditionally clear CPU buffers on idle entry - - x86/speculation/mds: Add mitigation control for MDS - - x86/speculation/mds: Add sysfs reporting for MDS - - x86/speculation/mds: Add mitigation mode VMWERV - - Documentation: Move L1TF to separate directory - - Documentation: Add MDS vulnerability documentation - - x86/speculation/mds: Add mds=full,nosmt cmdline option - - x86/speculation: Move arch_smt_update() call to after mitigation decisions - - x86/speculation/mds: Add SMT warning message - - x86/speculation/mds: Fix comment - - x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off - - cpu/speculation: Add 'mitigations=' cmdline option - - x86/speculation: Support 'mitigations=' cmdline option - - powerpc/speculation: Support 'mitigations=' cmdline option - - s390/speculation: Support 'mitigations=' cmdline option - - x86/speculation/mds: Add 'mitigations=' support for MDS - - x86/mds: Add MDSUM variant to the MDS documentation - - Documentation: Correct the possible MDS sysfs values - - x86/speculation/mds: Fix documentation typo - - Linux 5.1.2 - - * Eoan update: v5.1.1 upstream stable release (LP: #1829046) - - Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() - - ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings - - staging: greybus: power_supply: fix prop-descriptor request size - - staging: wilc1000: Avoid GFP_KERNEL allocation from atomic context. - - staging: most: cdev: fix chrdev_region leak in mod_exit - - staging: most: sound: pass correct device when creating a sound card - - usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON - - usb: dwc3: Fix default lpm_nyet_threshold value - - USB: serial: f81232: fix interrupt worker not stop - - USB: cdc-acm: fix unthrottle races - - usb-storage: Set virt_boundary_mask to avoid SG overflows - - genirq: Prevent use-after-free and work list corruption - - intel_th: pci: Add Comet Lake support - - iio: adc: qcom-spmi-adc5: Fix of-based module autoloading - - cpufreq: armada-37xx: fix frequency calculation for opp - - ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for - hibernate - - soc: sunxi: Fix missing dependency on REGMAP_MMIO - - scsi: lpfc: change snprintf to scnprintf for possible overflow - - scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines - - scsi: qla2xxx: Set remote port devloss timeout to 0 - - scsi: qla2xxx: Fix device staying in blocked state - - Bluetooth: hidp: fix buffer overflow - - Bluetooth: Align minimum encryption key size for LE and BR/EDR connections - - Bluetooth: Fix not initializing L2CAP tx_credits - - Bluetooth: hci_bcm: Fix empty regulator supplies for Intel Macs - - UAS: fix alignment of scatter/gather segments - - ASoC: Intel: avoid Oops if DMA setup fails - - i3c: Fix a shift wrap bug in i3c_bus_set_addr_slot_status() - - locking/futex: Allow low-level atomic operations to return -EAGAIN - - arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP - - Linux 5.1.1 - - * shiftfs: lock security sensitive superblock flags (LP: #1827122) - - SAUCE: shiftfs: lock down certain superblock flags - - * Please package libbpf (which is done out of the kernel src) in Debian [for - 19.10] (LP: #1826410) - - SAUCE: tools -- fix add ability to disable libbfd - - * ratelimit cma_alloc messages (LP: #1828092) - - SAUCE: cma: ratelimit cma_alloc error messages - - * Headphone jack switch sense is inverted: plugging in headphones disables - headphone output (LP: #1824259) - - ASoC: rt5645: Headphone Jack sense inverts on the LattePanda board - - * There are 4 HDMI/Displayport audio output listed in sound setting without - attach any HDMI/DP monitor (LP: #1827967) - - ALSA: hda/hdmi - Read the pin sense from register when repolling - - ALSA: hda/hdmi - Consider eld_valid when reporting jack event - - * CONFIG_LOG_BUF_SHIFT set to 14 is too low on arm64 (LP: #1824864) - - [Config] CONFIG_LOG_BUF_SHIFT=18 on all 64bit arches - - * CTAUTO:DevOps:860.50:devops4fp1:Error occurred during LINUX Dmesg error - Checking for all LINUX clients for devops4p10 (LP: #1766201) - - SAUCE: integrity: downgrade error to warning - - * linux-buildinfo: pull out ABI information into its own package - (LP: #1806380) - - [Packaging] autoreconstruct -- base tag is always primary mainline version - - * [SRU] Please sync vbox modules from virtualbox 6.0.6 on next kernel update - (LP: #1825210) - - vbox-update: updates for renamed makefiles - - ubuntu: vbox -- update to 6.0.6-dfsg-1 - - * autofs kernel module missing (LP: #1824333) - - [Config] Update autofs4 path in inclusion list - - * The Realtek card reader does not enter PCIe 1.1/1.2 (LP: #1825487) - - SAUCE: misc: rtsx: Fixed rts5260 power saving parameter and sd glitch - - * CVE-2019-3874 - - sctp: implement memory accounting on tx path - - sctp: implement memory accounting on rx path - - * apparmor does not start in Disco LXD containers (LP: #1824812) - - SAUCE: shiftfs: use separate llseek method for directories - - * Miscellaneous Ubuntu changes - - [Packaging] autoreconstruct -- remove for -rc kernels - - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation - defined - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates - - [Config] (efi-lockdown): update configs after efi lockdown patch refresh - - [Packaging] don't delete efi_parser.c - - vbox-update -- do not fix up KERN_DIR or KBUILD_EXTMOD - - ubuntu: vbox -- update to 6.0.6-dfsg-2 - - add nvidia-418 dkms build - - remove virtualbox guest drivers - - [Packaging] dkms-build -- expand paths searched for make.log files - - add virtualbox-guest-dkms dkms package build - - enable vbox dkms build for amd64 and i386 - - [Config] update configs for v5.1(-rc7)? rebase - - update dkms package versions - - Add the ability to lock down access to the running kernel image - - Enforce module signatures if the kernel is locked down - - Restrict /dev/{mem,kmem,port} when the kernel is locked down - - kexec_load: Disable at runtime if the kernel is locked down - - Copy secure_boot flag in boot params across kexec reboot - - kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE - - kexec_file: Restrict at runtime if the kernel is locked down - - hibernate: Disable when the kernel is locked down - - uswsusp: Disable when the kernel is locked down - - PCI: Lock down BAR access when the kernel is locked down - - x86: Lock down IO port access when the kernel is locked down - - x86/msr: Restrict MSR access when the kernel is locked down - - ACPI: Limit access to custom_method when the kernel is locked down - - acpi: Ignore acpi_rsdp kernel param when the kernel has been locked down - - acpi: Disable ACPI table override if the kernel is locked down - - acpi: Disable APEI error injection if the kernel is locked down - - Prohibit PCMCIA CIS storage when the kernel is locked down - - Lock down TIOCSSERIAL - - Lock down module params that specify hardware parameters (eg. ioport) - - x86/mmiotrace: Lock down the testmmiotrace module - - Lock down /proc/kcore - - Lock down kprobes - - bpf: Restrict kernel image access functions when the kernel is locked down - - Lock down perf - - debugfs: Restrict debugfs when the kernel is locked down - - lockdown: Print current->comm in restriction messages - - kexec: Allow kexec_file() with appropriate IMA policy when locked down - - Make get_cert_list() not complain about cert lists that aren't present. - - Add efi_status_to_str() and rework efi_status_to_err(). - - Make get_cert_list() use efi_status_to_str() to print error messages. - - efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode - - efi: Lock down the kernel if booted in secure boot mode - - KEYS: Make use of platform keyring for module signature verify - - * Miscellaneous upstream changes - - ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) - - -- Seth Forshee Tue, 14 May 2019 12:32:56 -0500 - -linux (5.1.0-1.1) eoan; urgency=medium - - * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) - - [Packaging]: really drop snapdragon - - * Miscellaneous Ubuntu changes - - SAUCE: fix vbox use of MAP_SHARED - - SAUCE: fix vbox use of vm_fault_t - - [Packaging] disable ZFS - - [Packaging] disable nvidia - - SAUCE: perf annotate: Fix build on 32 bit for BPF annotation - - [Config]: updateconfig after rebase to v5.1-rc - - [Config]: build ETNAVIV only on arm platforms - - [Config]: Disable CMA on non-arm platforms - - [Config]: MMC_CQHCI is needed by some built-in drivers - - [Config]: a.out support has been deprecated - - [Config]: R3964 was marked as BROKEN - - [Config]: Add SENSIRION_SGP30 module - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: tools: lib/bpf -- add generated headers to search - path" - - Revert "UBUNTU: SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK" - - -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 10:03:25 -0300 - -linux (5.1.0-0.0) eoan; urgency=medium - - * Dummy entry. - - -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 09:49:47 -0300 - -linux (5.0.0-13.14) disco; urgency=medium - - * linux: 5.0.0-13.14 -proposed tracker (LP: #1824819) - - * Display only has 640x480 (LP: #1824677) - - Revert "UBUNTU: SAUCE: drm/nouveau: Disable nouveau driver by default" - - * shiftfs: use after free when checking mount options (LP: #1824735) - - SAUCE: shiftfs: prevent use-after-free when verifying mount options - - -- Seth Forshee Mon, 15 Apr 2019 09:11:23 -0500 - -linux (5.0.0-12.13) disco; urgency=medium - - * linux: 5.0.0-12.13 -proposed tracker (LP: #1824726) - - * Linux 5.0 black screen on boot, display flickers (i915 regression with - certain laptop panels) (LP: #1824216) - - drm/i915/dp: revert back to max link rate and lane count on eDP - - * kernel BUG at fs/attr.c:287 when using shiftfs (LP: #1824717) - - SAUCE: shiftfs: fix passing of attrs to underaly for setattr - - -- Seth Forshee Sun, 14 Apr 2019 13:38:05 -0500 - -linux (5.0.0-11.12) disco; urgency=medium - - * linux: 5.0.0-11.12 -proposed tracker (LP: #1824383) - - * hns3: PPU_PF_ABNORMAL_INT_ST over_8bd_no_fe found [error status=0x1] - (LP: #1824194) - - net: hns3: fix for not calculating tx bd num correctly - - * disco: unable to use iptables/enable ufw under -virtual kernel - (LP: #1823862) - - [Packaging] add bpfilter to linux-modules - - * Make shiftfs a module rather than built-in (LP: #1824354) - - [Config] CONFIG_SHIFT_FS=m - - * shiftfs: chown sets untranslated ids in lower fs (LP: #1824350) - - SAUCE: shiftfs: use translated ids when chaning lower fs attrs - - * [Hyper-V] KVP daemon fails to start on first boot of disco VM (LP: #1820063) - - [Packaging] bind hv_kvp_daemon startup to hv_kvp device - - -- Seth Forshee Thu, 11 Apr 2019 10:17:19 -0500 - -linux (5.0.0-10.11) disco; urgency=medium - - * linux: 5.0.0-10.11 -proposed tracker (LP: #1823936) - - * Apparmor enforcement failure in lxc selftests (LP: #1823379) - - SAUCE: apparmor: Restore Y/N in /sys for apparmor's "enabled" - - * systemd cause kernel trace "BUG: unable to handle kernel paging request at - 6db23a14" on Cosmic i386 (LP: #1813244) - - openvswitch: fix flow actions reallocation - - -- Seth Forshee Tue, 09 Apr 2019 08:30:38 -0500 - -linux (5.0.0-9.10) disco; urgency=medium - - * linux: 5.0.0-9.10 -proposed tracker (LP: #1823228) - - * Packaging resync (LP: #1786013) - - [Packaging] resync git-ubuntu-log - - [Packaging] update helper scripts - - [Packaging] resync retpoline extraction - - * Huawei Hi1822 NIC has poor performance (LP: #1820187) - - net-next/hinic: replace disable_irq_nosync/enable_irq - - * Add uid shifting overlay filesystem (shiftfs) (LP: #1823186) - - shiftfs: uid/gid shifting bind mount - - shiftfs: rework and extend - - shiftfs: support some btrfs ioctls - - [Config] enable shiftfs - - * Cannot boot or install - have to use nomodeset (LP: #1821820) - - Revert "drm/i915/fbdev: Actually configure untiled displays" - - * Disco update: v5.0.6 upstream stable release (LP: #1823060) - - netfilter: nf_tables: fix set double-free in abort path - - dccp: do not use ipv6 header for ipv4 flow - - genetlink: Fix a memory leak on error path - - gtp: change NET_UDP_TUNNEL dependency to select - - ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL - - mac8390: Fix mmio access size probe - - mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S - - net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 - - net: datagram: fix unbounded loop in __skb_try_recv_datagram() - - net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec - - net: phy: meson-gxl: fix interrupt support - - net: rose: fix a possible stack overflow - - net: stmmac: fix memory corruption with large MTUs - - net-sysfs: call dev_hold if kobject_init_and_add success - - net: usb: aqc111: Extend HWID table by QNAP device - - packets: Always register packet sk in the same order - - rhashtable: Still do rehash when we get EEXIST - - sctp: get sctphdr by offset in sctp_compute_cksum - - sctp: use memdup_user instead of vmemdup_user - - tcp: do not use ipv6 header for ipv4 flow - - tipc: allow service ranges to be connect()'ed on RDM/DGRAM - - tipc: change to check tipc_own_id to return in tipc_net_stop - - tipc: fix cancellation of topology subscriptions - - tun: properly test for IFF_UP - - vrf: prevent adding upper devices - - vxlan: Don't call gro_cells_destroy() before device is unregistered - - thunderx: enable page recycling for non-XDP case - - thunderx: eliminate extra calls to put_page() for pages held for recycling - - net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode - - net: mii: Fix PAUSE cap advertisement from linkmode_adv_to_lcl_adv_t() - helper - - net: phy: don't clear BMCR in genphy_soft_reset - - r8169: fix cable re-plugging issue - - ila: Fix rhashtable walker list corruption - - tun: add a missing rcu_read_unlock() in error path - - powerpc/fsl: Fix the flush of branch predictor. - - Btrfs: fix incorrect file size after shrinking truncate and fsync - - btrfs: remove WARN_ON in log_dir_items - - btrfs: don't report readahead errors and don't update statistics - - btrfs: Fix bound checking in qgroup_trace_new_subtree_blocks - - btrfs: Avoid possible qgroup_rsv_size overflow in - btrfs_calculate_inode_block_rsv_size - - Btrfs: fix assertion failure on fsync with NO_HOLES enabled - - locks: wake any locks blocked on request before deadlock check - - tracing: initialize variable in create_dyn_event() - - ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time - - powerpc: bpf: Fix generation of load/store DW instructions - - vfio: ccw: only free cp on final interrupt - - NFS: Fix nfs4_lock_state refcounting in nfs4_alloc_{lock,unlock}data() - - NFS: fix mount/umount race in nlmclnt. - - NFSv4.1 don't free interrupted slot on open - - net: dsa: qca8k: remove leftover phy accessors - - ALSA: rawmidi: Fix potential Spectre v1 vulnerability - - ALSA: seq: oss: Fix Spectre v1 vulnerability - - ALSA: pcm: Fix possible OOB access in PCM oss plugins - - ALSA: pcm: Don't suspend stream in unrecoverable PCM state - - ALSA: hda/realtek - Fixed Headset Mic JD not stable - - ALSA: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook - - ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO - - ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB - - ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 - - ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 - - ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic - - ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 - - ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 - - ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 - - ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops - - kbuild: modversions: Fix relative CRC byte order interpretation - - fs/open.c: allow opening only regular files during execve() - - ocfs2: fix inode bh swapping mixup in ocfs2_reflink_inodes_lock - - scsi: sd: Fix a race between closing an sd device and sd I/O - - scsi: sd: Quiesce warning if device does not report optimal I/O size - - scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host - - scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP - devices - - drm/rockchip: vop: reset scale mode when win is disabled - - tty/serial: atmel: Add is_half_duplex helper - - tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped - - tty: mxs-auart: fix a potential NULL pointer dereference - - tty: atmel_serial: fix a potential NULL pointer dereference - - tty: serial: qcom_geni_serial: Initialize baud in qcom_geni_console_setup - - staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest - - staging: olpc_dcon_xo_1: add missing 'const' qualifier - - staging: speakup_soft: Fix alternate speech with other synths - - staging: vt6655: Remove vif check from vnt_interrupt - - staging: vt6655: Fix interrupt race condition on device start up. - - staging: erofs: fix to handle error path of erofs_vmap() - - staging: erofs: fix error handling when failed to read compresssed data - - staging: erofs: keep corrupted fs from crashing kernel in erofs_readdir() - - serial: max310x: Fix to avoid potential NULL pointer dereference - - serial: mvebu-uart: Fix to avoid a potential NULL pointer dereference - - serial: sh-sci: Fix setting SCSCR_TIE while transferring data - - USB: serial: cp210x: add new device id - - USB: serial: ftdi_sio: add additional NovaTech products - - USB: serial: mos7720: fix mos_parport refcount imbalance on error path - - USB: serial: option: set driver_info for SIM5218 and compatibles - - USB: serial: option: add support for Quectel EM12 - - USB: serial: option: add Olicard 600 - - ACPI / CPPC: Fix guaranteed performance handling - - Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc - - fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links - - drivers/block/zram/zram_drv.c: fix idle/writeback string compare - - blk-mq: fix sbitmap ws_active for shared tags - - cpufreq: intel_pstate: Also use CPPC nominal_perf for base_frequency - - cpufreq: scpi: Fix use after free - - drm/vgem: fix use-after-free when drm_gem_handle_create() fails - - drm/vkms: fix use-after-free when drm_gem_handle_create() fails - - drm/i915: Mark AML 0x87CA as ULX - - drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check - - drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro - - gpio: exar: add a check for the return value of ida_simple_get fails - - gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input - - phy: sun4i-usb: Support set_mode to USB_HOST for non-OTG PHYs - - usb: mtu3: fix EXTCON dependency - - USB: gadget: f_hid: fix deadlock in f_hidg_write() - - usb: common: Consider only available nodes for dr_mode - - mm/memory.c: fix modifying of page protection by insert_pfn() - - usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk - - xhci: Fix port resume done detection for SS ports with LPM enabled - - usb: xhci: dbc: Don't free all memory with spinlock held - - xhci: Don't let USB3 ports stuck in polling state prevent suspend - - usb: cdc-acm: fix race during wakeup blocking TX traffic - - usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps - - usb: typec: Fix unchecked return value - - mm/hotplug: fix offline undo_isolate_page_range() - - mm: add support for kmem caches in DMA32 zone - - iommu/io-pgtable-arm-v7s: request DMA32 memory, and improve debugging - - mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified - - mm/debug.c: fix __dump_page when mapping->host is not set - - mm/memory_hotplug.c: fix notification in offline error path - - mm/page_isolation.c: fix a wrong flag in set_migratetype_isolate() - - mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate - - perf pmu: Fix parser error for uncore event alias - - perf intel-pt: Fix TSC slip - - objtool: Query pkg-config for libelf location - - powerpc/pseries/energy: Use OF accessor functions to read ibm,drc-indexes - - powerpc/64: Fix memcmp reading past the end of src/dest - - powerpc/pseries/mce: Fix misleading print for TLB mutlihit - - watchdog: Respect watchdog cpumask on CPU hotplug - - cpu/hotplug: Prevent crash when CPU bringup fails on CONFIG_HOTPLUG_CPU=n - - x86/smp: Enforce CONFIG_HOTPLUG_CPU when SMP=y - - KVM: Reject device ioctls from processes other than the VM's creator - - KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts - - KVM: x86: update %rip after emulating IO - - bpf: do not restore dst_reg when cur_state is freed - - mt76x02u: use usb_bulk_msg to upload firmware - - Linux 5.0.6 - - * RDMA/hns updates for disco (LP: #1822897) - - RDMA/hns: Fix the bug with updating rq head pointer when flush cqe - - RDMA/hns: Bugfix for the scene without receiver queue - - RDMA/hns: Add constraint on the setting of local ACK timeout - - RDMA/hns: Modify the pbl ba page size for hip08 - - RDMA/hns: RDMA/hns: Assign rq head pointer when enable rq record db - - RDMA/hns: Add the process of AEQ overflow for hip08 - - RDMA/hns: Add SCC context allocation support for hip08 - - RDMA/hns: Add SCC context clr support for hip08 - - RDMA/hns: Add timer allocation support for hip08 - - RDMA/hns: Remove set but not used variable 'rst' - - RDMA/hns: Make some function static - - RDMA/hns: Fix the Oops during rmmod or insmod ko when reset occurs - - RDMA/hns: Fix the chip hanging caused by sending mailbox&CMQ during reset - - RDMA/hns: Fix the chip hanging caused by sending doorbell during reset - - RDMA/hns: Limit minimum ROCE CQ depth to 64 - - RDMA/hns: Fix the state of rereg mr - - RDMA/hns: Set allocated memory to zero for wrid - - RDMA/hns: Delete useful prints for aeq subtype event - - RDMA/hns: Configure capacity of hns device - - RDMA/hns: Modify qp&cq&pd specification according to UM - - RDMA/hns: Bugfix for set hem of SCC - - RDMA/hns: Use GFP_ATOMIC in hns_roce_v2_modify_qp - - * autopkgtests run too often, too much and don't skip enough (LP: #1823056) - - Set +x on rebuild testcase. - - Skip rebuild test, for regression-suite deps. - - Make ubuntu-regression-suite skippable on unbootable kernels. - - make rebuild use skippable error codes when skipping. - - Only run regression-suite, if requested to. - - * touchpad not working on lenovo yoga 530 (LP: #1787775) - - Revert "UBUNTU: SAUCE: i2c:amd Depends on ACPI" - - Revert "UBUNTU: SAUCE: i2c:amd move out pointer in union i2c_event_base" - - i2c: add extra check to safe DMA buffer helper - - i2c: Add drivers for the AMD PCIe MP2 I2C controller - - [Config] Update config for AMD MP2 I2C driver - - * Detect SMP PHY control command errors (LP: #1822680) - - scsi: libsas: Check SMP PHY control function result - - * disable a.out support (LP: #1818552) - - [Config] Disable a.out support - - [Config] remove binfmt_aout from abi for i386 lowlatency - - * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) - - [Packaging] remove snapdragon flavour support - - Revert "UBUNTU: SAUCE: (snapdragon) drm/msm/adv7511: wrap hacks under - CONFIG_ADV7511_SNAPDRAGON_HACKS #ifdefs" - - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: skip address change if dt - addr == default addr" - - Revert "UBUNTU: SAUCE: (snapdragon) DT: leds: Add Qualcomm Light Pulse - Generator binding" - - Revert "UBUNTU: SAUCE: (snapdragon) MAINTAINERS: Add Qualcomm Camera Control - Interface driver" - - Revert "UBUNTU: SAUCE: (snapdragon) dt-bindings: media: Binding document for - Qualcomm Camera Control Interface driver" - - Revert "UBUNTU: SAUCE: (snapdragon) leds: Add driver for Qualcomm LPG" - - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/adv7511: Don't rely on - interrupts for EDID parsing" - - Revert "UBUNTU: SAUCE: (snapdragon) drm/bridge/adv7511: Delay clearing of - HPD interrupt status" - - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: Fix I2C address" - - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix I2C address bug" - - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix run queue completion - timeout" - - Revert "UBUNTU: SAUCE: (snapdragon) camss: Do not register if no cameras are - present" - - Revert "UBUNTU: SAUCE: (snapdragon) i2c: Add Qualcomm Camera Control - Interface driver" - - Revert "UBUNTU: SAUCE: (snapdragon) ov5645: I2C address change" - - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Allow - REGULATOR_QCOM_SMD_RPM=m" - - Revert "UBUNTU: SAUCE: (snapdragon) cpufreq: Add apq8016 to cpufreq-dt- - platdev blacklist" - - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Add a helper to get an opp - regulator for device" - - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: HACK: Allow to set regulator - without opp_list" - - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Drop RCU usage in - dev_pm_opp_adjust_voltage()" - - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Support adjusting OPP voltages - at runtime" - - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Add floor and corner - operations" - - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Register with cpufreq- - dt" - - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: fix with new - reg_sequence structures" - - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Use raw mem access for - qfprom" - - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: Add support for CPR (Core - Power Reduction)" - - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/iommu: Remove runtime_put - calls in map/unmap" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable LEDS_QCOM_LPG" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'BBR' TCP - congestion algorithm" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'fq' and - 'fq_codel' qdiscs" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable - 'schedutil' CPUfreq governor" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: set USB_CONFIG_F_FS in - distro.config" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable - CONFIG_USB_CONFIGFS_F_FS by default" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add freq stat to sysfs" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: Enable camera drivers" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: disable ANALOG_TV and - DIGITAL_TV" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add more USB net - drivers" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable BT_QCOMSMD" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable - CFG80211_DEFAULT_PS by default" - - Revert "UBUNTU: SAUCE: (snapdragon) Force the SMD regulator driver to be - compiled-in" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: enable dm_mod and - dm_crypt" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: Enable a53/apcs and - avs" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable QCOM Venus" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable debug - friendly USB network adpater" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable WCN36xx" - - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs; add distro.config" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable QCOM audio - drivers for APQ8016 and DB410c" - - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable REMOTEPROC" - - [Config] fix abi for remove i2c-qcom-cci module - - [Config] update annotations - - [Config] update configs following snapdragon removal - - * Disco update: v5.0.5 upstream stable release (LP: #1822671) - - Revert "ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec" - - ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist - - ALSA: firewire-motu: use 'version' field of unit directory to identify model - - mmc: pxamci: fix enum type confusion - - mmc: alcor: fix DMA reads - - mmc: mxcmmc: "Revert mmc: mxcmmc: handle highmem pages" - - mmc: renesas_sdhi: limit block count to 16 bit for old revisions - - drm/amdgpu: fix invalid use of change_bit - - drm/vmwgfx: Don't double-free the mode stored in par->set_mode - - drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's - - iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE - - iommu/iova: Fix tracking of recently failed iova address - - libceph: wait for latest osdmap in ceph_monc_blacklist_add() - - udf: Fix crash on IO error during truncate - - mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction. - - MIPS: Ensure ELF appended dtb is relocated - - MIPS: Fix kernel crash for R6 in jump label branch function - - powerpc/vdso64: Fix CLOCK_MONOTONIC inconsistencies across Y2038 - - powerpc/security: Fix spectre_v2 reporting - - net/mlx5: Fix DCT creation bad flow - - scsi: core: Avoid that a kernel warning appears during system resume - - scsi: qla2xxx: Fix FC-AL connection target discovery - - scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton - - scsi: ibmvscsi: Fix empty event pool access during host removal - - futex: Ensure that futex address is aligned in handle_futex_death() - - perf probe: Fix getting the kernel map - - objtool: Move objtool_file struct off the stack - - irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp - - clocksource/drivers/riscv: Fix clocksource mask - - ALSA: ac97: Fix of-node refcount unbalance - - ext4: fix NULL pointer dereference while journal is aborted - - ext4: fix data corruption caused by unaligned direct AIO - - ext4: brelse all indirect buffer in ext4_ind_remove_space() - - media: v4l2-ctrls.c/uvc: zero v4l2_event - - Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() - - Bluetooth: Fix decrementing reference count twice in releasing socket - - Bluetooth: hci_ldisc: Initialize hci_dev before open() - - Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in - hci_uart_set_proto() - - drm/vkms: Fix flush_work() without INIT_WORK(). - - RDMA/cma: Rollback source IP address if failing to acquire device - - f2fs: fix to avoid deadlock of atomic file operations - - aio: simplify - and fix - fget/fput for io_submit() - - netfilter: ebtables: remove BUGPRINT messages - - loop: access lo_backing_file only when the loop device is Lo_bound - - x86/unwind: Handle NULL pointer calls better in frame unwinder - - x86/unwind: Add hardcoded ORC entry for NULL - - locking/lockdep: Add debug_locks check in __lock_downgrade() - - ALSA: hda - Record the current power state before suspend/resume calls - - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec - - Linux 5.0.5 - - * hisi_sas updates for disco (LP: #1822385) - - scsi: hisi_sas: send primitive NOTIFY to SSP situation only - - scsi: hisi_sas: shutdown axi bus to avoid exception CQ returned - - scsi: hisi_sas: remove the check of sas_dev status in - hisi_sas_I_T_nexus_reset() - - scsi: hisi_sas: Remove unused parameter of function hisi_sas_alloc() - - scsi: hisi_sas: Reject setting programmed minimum linkrate > 1.5G - - scsi: hisi_sas: Fix losing directly attached disk when hot-plug - - scsi: hisi_sas: Correct memory allocation size for DQ debugfs - - scsi: hisi_sas: Some misc tidy-up - - scsi: hisi_sas: Fix to only call scsi_get_prot_op() for non-NULL scsi_cmnd - - scsi: hisi_sas: Add missing seq_printf() call in hisi_sas_show_row_32() - - scsi: hisi_sas: Add support for DIX feature for v3 hw - - scsi: hisi_sas: Add manual trigger for debugfs dump - - scsi: hisi_sas: change queue depth from 512 to 4096 - - scsi: hisi_sas: Issue internal abort on all relevant queues - - scsi: hisi_sas: Use pci_irq_get_affinity() for v3 hw as experimental - - scsi: hisi_sas: Do some more tidy-up - - scsi: hisi_sas: Change return variable type in phy_up_v3_hw() - - scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO - - scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw - - scsi: hisi_sas: Set PHY linkrate when disconnected - - scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of STP - target port - - scsi: hisi_sas: Change SERDES_CFG init value to increase reliability of - HiLink - - scsi: hisi_sas: Add softreset in hisi_sas_I_T_nexus_reset() - - * [Patch][Raven 2] kernel 5.0.0 cannot boot because of psp response - (LP: #1822267) - - drm/amdgpu/psp: Fix can't detect psp INVOKE command failed - - drm/amdgpu/psp: ignore psp response status - - * 3b080b2564287be91605bfd1d5ee985696e61d3c in ubuntu_btrfs_kernel_fixes - triggers system hang on i386 (LP: #1812845) - - btrfs: raid56: properly unmap parity page in finish_parity_scrub() - - * enable CONFIG_DRM_BOCHS (LP: #1795857) - - [Config] Reenable DRM_BOCHS as module - - * [Dell Precision 7530/5530 with Nvidia Quadro P1000] Live USB freezes or - cannot complete install when nouveau driver is loaded (crashing in GP100 - code) (LP: #1822026) - - SAUCE: drm/nouveau: Disable nouveau driver by default - - * Need to add Intel CML related pci-id's (LP: #1821863) - - drm/i915/cml: Add CML PCI IDS - - drm/i915/cml: Introduce Comet Lake PCH - - * ARM: Add support for the SDEI interface (LP: #1822005) - - ACPI / APEI: Don't wait to serialise with oops messages when panic()ing - - ACPI / APEI: Remove silent flag from ghes_read_estatus() - - ACPI / APEI: Switch estatus pool to use vmalloc memory - - ACPI / APEI: Make hest.c manage the estatus memory pool - - ACPI / APEI: Make estatus pool allocation a static size - - ACPI / APEI: Don't store CPER records physical address in struct ghes - - ACPI / APEI: Remove spurious GHES_TO_CLEAR check - - ACPI / APEI: Don't update struct ghes' flags in read/clear estatus - - ACPI / APEI: Generalise the estatus queue's notify code - - ACPI / APEI: Don't allow ghes_ack_error() to mask earlier errors - - ACPI / APEI: Move NOTIFY_SEA between the estatus-queue and NOTIFY_NMI - - ACPI / APEI: Switch NOTIFY_SEA to use the estatus queue - - KVM: arm/arm64: Add kvm_ras.h to collect kvm specific RAS plumbing - - arm64: KVM/mm: Move SEA handling behind a single 'claim' interface - - ACPI / APEI: Move locking to the notification helper - - ACPI / APEI: Let the notification helper specify the fixmap slot - - ACPI / APEI: Pass ghes and estatus separately to avoid a later copy - - ACPI / APEI: Make GHES estatus header validation more user friendly - - ACPI / APEI: Split ghes_read_estatus() to allow a peek at the CPER length - - ACPI / APEI: Only use queued estatus entry during in_nmi_queue_one_entry() - - ACPI / APEI: Use separate fixmap pages for arm64 NMI-like notifications - - firmware: arm_sdei: Add ACPI GHES registration helper - - ACPI / APEI: Add support for the SDEI GHES Notification type - - * CVE-2019-9857 - - inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() - - * scsi: libsas: Support SATA PHY connection rate unmatch fixing during - discovery (LP: #1821408) - - scsi: libsas: Support SATA PHY connection rate unmatch fixing during - discovery - - * Qualcomm Atheros QCA9377 wireless does not work (LP: #1818204) - - platform/x86: ideapad-laptop: Add Ideapad 530S-14ARR to no_hw_rfkill list - - * Lenovo ideapad 330-15ICH Wifi rfkill hard blocked (LP: #1811815) - - platform/x86: ideapad: Add ideapad 330-15ICH to no_hw_rfkill - - * hid-sensor-hub spamming dmesg in 4.20 (LP: #1818547) - - HID: Increase maximum report size allowed by hid_field_extract() - - * [disco] [5.0.0-7.8] can't mount guest cifs share (LP: #1821053) - - cifs: allow guest mounts to work for smb3.11 - - SMB3: Fix SMB3.1.1 guest mounts to Samba - - * Add HiSilicon SoC quirk for cpufreq (LP: #1821620) - - ACPI / CPPC: Add a helper to get desired performance - - cpufreq / cppc: Work around for Hisilicon CPPC cpufreq - - * Disco update: v5.0.4 upstream stable release (LP: #1821607) - - 9p: use inode->i_lock to protect i_size_write() under 32-bit - - 9p/net: fix memory leak in p9_client_create - - ASoC: fsl_esai: fix register setting issue in RIGHT_J mode - - ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() - - ASoC: codecs: pcm186x: Fix energysense SLEEP bit - - iio: adc: exynos-adc: Fix NULL pointer exception on unbind - - iio: adc: exynos-adc: Use proper number of channels for Exynos4x12 - - mei: hbm: clean the feature flags on link reset - - mei: bus: move hw module get/put to probe/release - - stm class: Prevent division by zero - - stm class: Fix an endless loop in channel allocation - - crypto: caam - fix hash context DMA unmap size - - crypto: ccree - fix missing break in switch statement - - crypto: caam - fixed handling of sg list - - crypto: caam - fix DMA mapping of stack memory - - crypto: ccree - fix free of unallocated mlli buffer - - crypto: ccree - unmap buffer before copying IV - - crypto: ccree - don't copy zero size ciphertext - - crypto: cfb - add missing 'chunksize' property - - crypto: cfb - remove bogus memcpy() with src == dest - - crypto: ofb - fix handling partial blocks and make thread-safe - - crypto: ahash - fix another early termination in hash walk - - crypto: rockchip - fix scatterlist nents error - - crypto: rockchip - update new iv to device in multiple operations - - dax: Flush partial PMDs correctly - - nfit: Fix nfit_intel_shutdown_status() command submission - - nfit: acpi_nfit_ctl(): Check out_obj->type in the right place - - acpi/nfit: Fix bus command validation - - nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot - - nfit/ars: Attempt short-ARS even in the no_init_ars case - - libnvdimm/label: Clear 'updating' flag after label-set update - - libnvdimm, pfn: Fix over-trim in trim_pfn_device() - - libnvdimm/pmem: Honor force_raw for legacy pmem regions - - libnvdimm: Fix altmap reservation size calculation - - fix cgroup_do_mount() handling of failure exits - - crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails - - crypto: aegis - fix handling chunked inputs - - crypto: arm/crct10dif - revert to C code for short inputs - - crypto: arm64/aes-neonbs - fix returning final keystream block - - crypto: arm64/crct10dif - revert to C code for short inputs - - crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails - - crypto: morus - fix handling chunked inputs - - crypto: pcbc - remove bogus memcpy()s with src == dest - - crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails - - crypto: testmgr - skip crc32c context test for ahash algorithms - - crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP - - crypto: x86/aesni-gcm - fix crash on empty plaintext - - crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP - - crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling - - crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine - - CIFS: Fix leaking locked VFS cache pages in writeback retry - - CIFS: Do not reset lease state to NONE on lease break - - CIFS: Do not skip SMB2 message IDs on send failures - - CIFS: Fix read after write for files with read caching - - smb3: make default i/o size for smb3 mounts larger - - tracing: Use strncpy instead of memcpy for string keys in hist triggers - - tracing: Do not free iter->trace in fail path of tracing_open_pipe() - - tracing/perf: Use strndup_user() instead of buggy open-coded version - - vmw_balloon: release lock on error in vmballoon_reset() - - xen: fix dom0 boot on huge systems - - ACPI / device_sysfs: Avoid OF modalias creation for removed device - - mmc: sdhci-esdhc-imx: fix HS400 timing issue - - mmc: renesas_sdhi: Fix card initialization failure in high speed mode - - mmc:fix a bug when max_discard is 0 - - spi: ti-qspi: Fix mmap read when more than one CS in use - - spi: pxa2xx: Setup maximum supported DMA transfer length - - spi: omap2-mcspi: Fix DMA and FIFO event trigger size mismatch - - spi: spi-gpio: fix SPI_CS_HIGH capability - - regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 - - regulator: max77620: Initialize values for DT properties - - regulator: s2mpa01: Fix step values for some LDOs - - mt76: fix corrupted software generated tx CCMP PN - - clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR - - clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown - - clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer - instability - - s390: vfio_ap: link the vfio_ap devices to the vfio_ap bus subsystem - - s390/setup: fix early warning messages - - s390/virtio: handle find on invalid queue gracefully - - scsi: virtio_scsi: don't send sc payload with tmfs - - scsi: aacraid: Fix performance issue on logical drives - - scsi: sd: Optimal I/O size should be a multiple of physical block size - - scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock - - scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware - - scsi: qla2xxx: Avoid PCI IRQ affinity mapping when multiqueue is not - supported - - scsi: qla2xxx: Use complete switch scan for RSCN events - - fs/devpts: always delete dcache dentry-s in dput() - - splice: don't merge into linked buffers - - ovl: During copy up, first copy up data and then xattrs - - ovl: Do not lose security.capability xattr over metadata file copy-up - - m68k: Add -ffreestanding to CFLAGS - - Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() - - Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl - - btrfs: scrub: fix circular locking dependency warning - - btrfs: drop the lock on error in btrfs_dev_replace_cancel - - btrfs: ensure that a DUP or RAID1 block group has exactly two stripes - - btrfs: init csum_list before possible free - - Btrfs: fix corruption reading shared and compressed extents after hole - punching - - Btrfs: fix deadlock between clone/dedupe and rename - - soc: qcom: rpmh: Avoid accessing freed memory from batch API - - libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer - - irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table - - irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code - - x86/kprobes: Prohibit probing on optprobe template code - - cpufreq: kryo: Release OPP tables on module removal - - cpufreq: tegra124: add missing of_node_put() - - cpufreq: pxa2xx: remove incorrect __init annotation - - ext4: fix check of inode in swap_inode_boot_loader - - ext4: cleanup pagecache before swap i_data - - mm: hwpoison: fix thp split handing in soft_offline_in_use_page() - - mm/vmalloc: fix size check for remap_vmalloc_range_partial() - - mm/memory.c: do_fault: avoid usage of stale vm_area_struct - - kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv - - nvmem: core: don't check the return value of notifier chain call - - device property: Fix the length used in PROPERTY_ENTRY_STRING() - - intel_th: Don't reference unassigned outputs - - parport_pc: fix find_superio io compare code, should use equal test. - - i2c: tegra: fix maximum transfer size - - i2c: tegra: update maximum transfer size - - media: i2c: ov5640: Fix post-reset delay - - gpio: pca953x: Fix dereference of irq data in shutdown - - ext4: update quota information while swapping boot loader inode - - ext4: add mask of ext4 flags to swap - - ext4: fix crash during online resizing - - dma: Introduce dma_max_mapping_size() - - swiotlb: Introduce swiotlb_max_mapping_size() - - swiotlb: Add is_swiotlb_active() function - - PCI/ASPM: Use LTR if already enabled by platform - - PCI/DPC: Fix print AER status in DPC event handling - - PCI: qcom: Don't deassert reset GPIO during probe - - PCI: dwc: skip MSI init if MSIs have been explicitly disabled - - PCI: pci-bridge-emul: Create per-bridge copy of register behavior - - PCI: pci-bridge-emul: Extend pci_bridge_emul_init() with flags - - IB/hfi1: Close race condition on user context disable and close - - IB/rdmavt: Fix loopback send with invalidate ordering - - IB/rdmavt: Fix concurrency panics in QP post_send and modify to error - - cxl: Wrap iterations over afu slices inside 'afu_list_lock' - - ext2: Fix underflow in ext2_max_size() - - clk: uniphier: Fix update register for CPU-gear - - clk: clk-twl6040: Fix imprecise external abort for pdmclk - - clk: samsung: exynos5: Fix possible NULL pointer exception on - platform_device_alloc() failure - - clk: samsung: exynos5: Fix kfree() of const memory on setting - driver_override - - clk: ingenic: Fix round_rate misbehaving with non-integer dividers - - clk: ingenic: Fix doc of ingenic_cgu_div_info - - usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() - - usb: typec: tps6598x: handle block writes separately with plain-I2C adapters - - dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit - - serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO - - serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart - - serial: 8250_pci: Fix number of ports for ACCES serial cards - - serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 - chip use the pci_pericom_setup() - - jbd2: clear dirty flag when revoking a buffer from an older transaction - - jbd2: fix compile warning when using JBUFFER_TRACE - - selinux: add the missing walk_size + len check in selinux_sctp_bind_connect - - security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock - - powerpc/32: Clear on-stack exception marker upon exception return - - powerpc/wii: properly disable use of BATs when requested. - - powerpc/powernv: Make opal log only readable by root - - powerpc/83xx: Also save/restore SPRG4-7 during suspend - - powerpc/kvm: Save and restore host AMR/IAMR/UAMOR - - powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit - - powerpc/64s/hash: Fix assert_slb_presence() use of the slbfee. instruction - - powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest - - powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning - - powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR - configuration - - powerpc/smp: Fix NMI IPI timeout - - powerpc/smp: Fix NMI IPI xmon timeout - - powerpc/traps: fix recoverability of machine check handling on book3s/32 - - powerpc/traps: Fix the message printed when stack overflows - - ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify - - arm64: Fix HCR.TGE status for NMI contexts - - arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals - - arm64: debug: Ensure debug handlers check triggering exception level - - arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 - - Revert "KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range()" - - ipmi_si: Fix crash when using hard-coded device - - ipmi_si: fix use-after-free of resource->name - - dm: fix to_sector() for 32bit - - dm integrity: limit the rate of error messages - - media: cx25840: mark pad sig_types to fix cx231xx init - - mfd: sm501: Fix potential NULL pointer dereference - - cpcap-charger: generate events for userspace - - cpuidle: governor: Add new governors to cpuidle_governors again - - NFS: Fix I/O request leakages - - NFS: Fix an I/O request leakage in nfs_do_recoalesce - - NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() - - nfsd: fix performance-limiting session calculation - - nfsd: fix memory corruption caused by readdir - - nfsd: fix wrong check in write_v4_end_grace() - - NFSv4.1: Reinitialise sequence results before retransmitting a request - - svcrpc: fix UDP on servers with lots of threads - - PM / wakeup: Rework wakeup source timer cancellation - - PM / OPP: Update performance state when freq == old_freq - - bcache: treat stale && dirty keys as bad keys - - bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadata - - stable-kernel-rules.rst: add link to networking patch queue - - vt: perform safe console erase in the right order - - x86/unwind/orc: Fix ORC unwind table alignment - - perf intel-pt: Fix CYC timestamp calculation after OVF - - perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols - - perf auxtrace: Define auxtrace record alignment - - perf intel-pt: Fix overlap calculation for padding - - perf/x86/intel/uncore: Fix client IMC events return huge result - - perf intel-pt: Fix divide by zero when TSC is not available - - md: Fix failed allocation of md_register_thread - - x86/kvmclock: set offset for kvm unstable clock - - x86/ftrace: Fix warning and considate ftrace_jmp_replace() and - ftrace_call_replace() - - tpm/tpm_crb: Avoid unaligned reads in crb_recv() - - tpm: Unify the send callback behaviour - - rcu: Do RCU GP kthread self-wakeup from softirq and interrupt - - media: imx: prpencvf: Stop upstream before disabling IDMA channel - - media: lgdt330x: fix lock status reporting - - media: sun6i: Fix CSI regmap's max_register - - media: uvcvideo: Avoid NULL pointer dereference at the end of streaming - - media: vimc: Add vimc-streamer for stream control - - media: imx-csi: Input connections to CSI should be optional - - media: imx: csi: Disable CSI immediately after last EOF - - media: imx: csi: Stop upstream before disabling IDMA channel - - drm/fb-helper: generic: Fix drm_fbdev_client_restore() - - drm/radeon/evergreen_cs: fix missing break in switch statement - - drm/amd/powerplay: correct power reading on fiji - - drm/amd/display: don't call dm_pp_ function from an fpu block - - KVM: Call kvm_arch_memslots_updated() before updating memslots - - KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-run - - KVM: VMX: Zero out *all* general purpose registers after VM-Exit - - KVM: x86/mmu: Detect MMIO generation wrap in any address space - - KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux - - KVM: nVMX: Sign extend displacements of VMX instr's mem operands - - KVM: nVMX: Apply addr size mask to effective address for VMX instructions - - KVM: nVMX: Ignore limit checks on VMX instructions using flat segments - - KVM: nVMX: Check a single byte for VMCS "launched" in nested early checks - - net: dsa: lantiq_gswip: fix use-after-free on failed probe - - net: dsa: lantiq_gswip: fix OF child-node lookups - - s390/setup: fix boot crash for machine without EDAT-1 - - SUNRPC: Prevent thundering herd when the socket is not connected - - SUNRPC: Fix up RPC back channel transmission - - SUNRPC: Respect RPC call timeouts when retrying transmission - - Linux 5.0.4 - - [Config] update configs for 5.0.4 stable update - - * New Intel Wireless-AC 9260 [8086:2526] card not correctly probed in Ubuntu - system (LP: #1821271) - - iwlwifi: add new card for 9260 series - - * [CONFIG] please enable highdpi font FONT_TER16x32 (LP: #1819881) - - [Config]: enable highdpi Terminus 16x32 font support - - * [SRU][B/B-OEM/C/D] Fix AMD IOMMU NULL dereference (LP: #1820990) - - iommu/amd: Fix NULL dereference bug in match_hid_uid - - * some codecs stop working after S3 (LP: #1820930) - - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec - - ALSA: hda - Don't trigger jackpoll_work in azx_resume - - * tcm_loop.ko: move from modules-extra into main modules package - (LP: #1817786) - - [Packaging] move tcm_loop.lo to main linux-modules package - - * C++ demangling support missing from perf (LP: #1396654) - - [Packaging] fix a mistype - - * r8169 doesn't get woken up by ethernet cable plugging, no PME generated - (LP: #1817676) - - PCI: pciehp: Disable Data Link Layer State Changed event on suspend - - * Disco update: v5.0.3 upstream stable release (LP: #1821074) - - connector: fix unsafe usage of ->real_parent - - fou, fou6: avoid uninit-value in gue_err() and gue6_err() - - gro_cells: make sure device is up in gro_cells_receive() - - ipv4/route: fail early when inet dev is missing - - l2tp: fix infoleak in l2tp_ip6_recvmsg() - - lan743x: Fix RX Kernel Panic - - lan743x: Fix TX Stall Issue - - net: hsr: fix memory leak in hsr_dev_finalize() - - net/hsr: fix possible crash in add_timer() - - net: sit: fix UBSAN Undefined behaviour in check_6rd - - net/x25: fix use-after-free in x25_device_event() - - net/x25: reset state in x25_connect() - - pptp: dst_release sk_dst_cache in pptp_sock_destruct - - ravb: Decrease TxFIFO depth of Q3 and Q2 to one - - route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race - - rxrpc: Fix client call queueing, waiting for channel - - sctp: remove sched init from sctp_stream_init - - tcp: do not report TCP_CM_INQ of 0 for closed connections - - tcp: Don't access TCP_SKB_CB before initializing it - - tcp: handle inet_csk_reqsk_queue_add() failures - - vxlan: Fix GRO cells race condition between receive and link delete - - vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() - - net/mlx4_core: Fix reset flow when in command polling mode - - net/mlx4_core: Fix locking in SRIOV mode when switching between events and - polling - - net/mlx4_core: Fix qp mtt size calculation - - net: dsa: mv88e6xxx: Set correct interface mode for CPU/DSA ports - - vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock - - net: sched: flower: insert new filter to idr after setting its mask - - f2fs: wait on atomic writes to count F2FS_CP_WB_DATA - - perf/x86: Fixup typo in stub functions - - ALSA: bebob: use more identical mod_alias for Saffire Pro 10 I/O against - Liquid Saffire 56 - - ALSA: firewire-motu: fix construction of PCM frame for capture direction - - ALSA: hda: Extend i915 component bind timeout - - ALSA: hda - add more quirks for HP Z2 G4 and HP Z240 - - ALSA: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 - - ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone - - ALSA: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with - ALC255 - - perf/x86/intel: Fix memory corruption - - perf/x86/intel: Make dev_attr_allow_tsx_force_abort static - - It's wrong to add len to sector_nr in raid10 reshape twice - - drm: Block fb changes for async plane updates - - Linux 5.0.3 - - * Disco update: v5.0.2 upstream stable release (LP: #1820318) - - media: uvcvideo: Fix 'type' check leading to overflow - - Input: wacom_serial4 - add support for Wacom ArtPad II tablet - - Input: elan_i2c - add id for touchpad found in Lenovo s21e-20 - - iscsi_ibft: Fix missing break in switch statement - - scsi: aacraid: Fix missing break in switch statement - - x86/PCI: Fixup RTIT_BAR of Intel Denverton Trace Hub - - arm64: dts: zcu100-revC: Give wifi some time after power-on - - arm64: dts: hikey: Give wifi some time after power-on - - arm64: dts: hikey: Revert "Enable HS200 mode on eMMC" - - ARM: dts: exynos: Fix pinctrl definition for eMMC RTSN line on Odroid X2/U3 - - ARM: dts: exynos: Add minimal clkout parameters to Exynos3250 PMU - - ARM: dts: exynos: Fix max voltage for buck8 regulator on Odroid XU3/XU4 - - drm: disable uncached DMA optimization for ARM and arm64 - - media: Revert "media: rc: some events are dropped by userspace" - - Revert "PCI/PME: Implement runtime PM callbacks" - - bpf: Stop the psock parser before canceling its work - - gfs2: Fix missed wakeups in find_insert_glock - - staging: erofs: keep corrupted fs from crashing kernel in erofs_namei() - - staging: erofs: compressed_pages should not be accessed again after freed - - scripts/gdb: replace flags (MS_xyz -> SB_xyz) - - ath9k: Avoid OF no-EEPROM quirks without qca,no-eeprom - - perf/x86/intel: Make cpuc allocations consistent - - perf/x86/intel: Generalize dynamic constraint creation - - x86: Add TSX Force Abort CPUID/MSR - - perf/x86/intel: Implement support for TSX Force Abort - - Linux 5.0.2 - - * Linux security module stacking support - - LSM: Introduce LSM_FLAG_LEGACY_MAJOR - - LSM: Provide separate ordered initialization - - LSM: Plumb visibility into optional "enabled" state - - LSM: Lift LSM selection out of individual LSMs - - LSM: Build ordered list of LSMs to initialize - - LSM: Introduce CONFIG_LSM - - LSM: Introduce "lsm=" for boottime LSM selection - - LSM: Tie enabling logic to presence in ordered list - - LSM: Prepare for reorganizing "security=" logic - - LSM: Refactor "security=" in terms of enable/disable - - LSM: Separate idea of "major" LSM from "exclusive" LSM - - apparmor: Remove SECURITY_APPARMOR_BOOTPARAM_VALUE - - selinux: Remove SECURITY_SELINUX_BOOTPARAM_VALUE - - LSM: Add all exclusive LSMs to ordered initialization - - LSM: Split LSM preparation from initialization - - LoadPin: Initialize as ordered LSM - - Yama: Initialize as ordered LSM - - LSM: Introduce enum lsm_order - - capability: Initialize as LSM_ORDER_FIRST - - procfs: add smack subdir to attrs - - Smack: Abstract use of cred security blob - - SELinux: Abstract use of cred security blob - - SELinux: Remove cred security blob poisoning - - SELinux: Remove unused selinux_is_enabled - - AppArmor: Abstract use of cred security blob - - TOMOYO: Abstract use of cred security blob - - Infrastructure management of the cred security blob - - SELinux: Abstract use of file security blob - - Smack: Abstract use of file security blob - - LSM: Infrastructure management of the file security - - SELinux: Abstract use of inode security blob - - Smack: Abstract use of inode security blob - - LSM: Infrastructure management of the inode security - - LSM: Infrastructure management of the task security - - SELinux: Abstract use of ipc security blobs - - Smack: Abstract use of ipc security blobs - - LSM: Infrastructure management of the ipc security blob - - TOMOYO: Update LSM flags to no longer be exclusive - - LSM: generalize flag passing to security_capable - - LSM: Make lsm_early_cred() and lsm_early_task() local functions. - - LSM: Make some functions static - - apparmor: Adjust offset when accessing task blob. - - LSM: Ignore "security=" when "lsm=" is specified - - LSM: Update list of SECURITYFS users in Kconfig - - apparmor: delete the dentry in aafs_remove() to avoid a leak - - apparmor: fix double free when unpack of secmark rules fails - - SAUCE: LSM: Infrastructure management of the sock security - - SAUCE: LSM: Limit calls to certain module hooks - - SAUCE: LSM: Special handling for secctx lsm hooks - - SAUCE: LSM: Specify which LSM to display with /proc/self/attr/display - - SAUCE: Fix-up af_unix mediation for sock infrastructure management - - SAUCE: Revert "apparmor: Fix warning about unused function - apparmor_ipv6_postroute" - - SAUCE: Revert "apparmor: fix checkpatch error in Parse secmark policy" - - SAUCE: Revert "apparmor: add #ifdef checks for secmark filtering" - - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" - - SAUCE: Revert "apparmor: Parse secmark policy" - - SAUCE: Revert "apparmor: Add a wildcard secid" - - SAUCE: Revert "apparmor: fix bad debug check in apparmor_secid_to_secctx()" - - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" - - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" - - SAUCE: Revert "apparmor: Fix memory leak of rule on error exit path" - - SAUCE: Revert "apparmor: modify audit rule support to support profile - stacks" - - SAUCE: Revert "apparmor: Add support for audit rule filtering" - - SAUCE: Revert "apparmor: add the ability to get a task's secid" - - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" - - SAUCE: apparmor: add proc subdir to attrs - - SAUCE: apparmor: add an apparmorfs entry to access current attrs - - SAUCE: apparmor: update flags to no longer be exclusive - - SAUCE: update configs and annotations for LSM stacking - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_EARLY_PRINTK_USB_XDBC=y - - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the - kernel is locked down - - [Config] CONFIG_RANDOM_TRUST_CPU=y - - [Config] refresh annotations for recent config changes - - ubuntu: vbox -- update to 6.0.4-dfsg-7 - - Revert "UBUNTU: SAUCE: i2c:amd I2C Driver based on PCI Interface for - upcoming platform" - - -- Seth Forshee Thu, 04 Apr 2019 14:49:59 -0500 - -linux (5.0.0-8.9) disco; urgency=medium - - * linux: 5.0.0-8.9 -proposed tracker (LP: #1819759) - - * hisi_sas: add debugfs support (LP: #1819500) - - scsi: hisi_sas: Create root and device debugfs directories - - scsi: hisi_sas: Alloc debugfs snapshot buffer memory for all registers - - scsi: hisi_sas: Take debugfs snapshot for all regs - - scsi: hisi_sas: Debugfs global register create file and add file operations - - scsi: hisi_sas: Add debugfs for port registers - - scsi: hisi_sas: Add debugfs CQ file and add file operations - - scsi: hisi_sas: Add debugfs DQ file and add file operations - - scsi: hisi_sas: Add debugfs IOST file and add file operations - - scsi: hisi_sas: No need to check return value of debugfs_create functions - - scsi: hisi_sas: Fix type casting and missing static qualifier in debugfs - code - - scsi: hisi_sas: Add debugfs ITCT file and add file operations - - * [disco] hns driver updates from 5.1 merge window (LP: #1819535) - - net: hns: Use struct_size() in devm_kzalloc() - - net: hns3: modify enet reinitialization interface - - net: hns3: remove unused member in struct hns3_enet_ring - - net: hns3: remove unnecessary hns3_adjust_tqps_num - - net: hns3: reuse reinitialization interface in the hns3_set_channels - - net: hns3: add interface hclge_tm_bp_setup - - net: hns3: modify parameter checks in the hns3_set_channels - - net: hns3: remove redundant codes in hclge_knic_setup - - net: hns3: fix user configuration loss for ethtool -L - - net: hns3: adjust the use of alloc_tqps and num_tqps - - net: hns3: fix wrong combined count returned by ethtool -l - - net: hns3: do reinitialization while ETS configuration changed - - net: hns3: add HNAE3_RESTORE_CLIENT interface in enet module - - net: hns3: add calling roce callback function when link status change - - net: hns3: add rx multicast packets statistic - - net: hns3: refactor the statistics updating for netdev - - net: hns3: fix rss configuration lost problem when setting channel - - net: hns3: fix for shaper not setting when TC num changes - - net: hns3: fix bug of ethtool_ops.get_channels for VF - - net: hns3: clear param in ring when free ring - - net: hns3: Change fw error code NOT_EXEC to NOT_SUPPORTED - - net: hns3: do not return GE PFC setting err when initializing - - net: hns3: add ETS TC weight setting in SSU module - - net: hns3: add statistics for PFC frames and MAC control frames - - net: hns3: fix PFC not setting problem for DCB module - - net: hns3: don't update packet statistics for packets dropped by hardware - - net: hns3: clear pci private data when unload hns3 driver - - net: hns3: add error handling in hclge_ieee_setets - - net: hns3: fix return value handle issue for hclge_set_loopback() - - net: hns3: fix broadcast promisc issue for revision 0x20 - - net: hns3: After setting the loopback, add the status of getting MAC - - net: hns3: do reinitialization while mqprio configuration changed - - net: hns3: remove dcb_ops->map_update in hclge_dcb - - net: hns3: call hns3_nic_set_real_num_queue with netdev down - - net: hns3: add 8 BD limit for tx flow - - net: hns3: add initialization for nic state - - net: hns3: don't allow vf to enable promisc mode - - net: hns3: reuse the definition of l3 and l4 header info union - - net: hns3: fix VF dump register issue - - net: hns3: use the correct interface to stop|open port - - net: hns3: change hnae3_register_ae_dev() to int - - net: hns3: only support tc 0 for VF - - net: hns3: Fix NULL deref when unloading driver - - net: hns3: fix netif_napi_del() not do problem when unloading - - net: hns3: fix for rss result nonuniform - - net: hns3: fix improper error handling in the hclge_init_ae_dev() - - net: hns3: fix an issue for hclgevf_ae_get_hdev - - net: hns3: stop sending keep alive msg to PF when VF is resetting - - net: hns3: keep flow director state unchanged when reset - - net: hns3: Check for allocation failure - - net: hns3: fix a code style issue for hns3_update_new_int_gl() - - net: hns3: fix an issue for hns3_update_new_int_gl - - net: hns3: Modify parameter type from int to bool in set_gro_en - - net: hns3: code optimization for hclge_rx_buffer_calc - - net: hns3: add hclge_cmd_check_retval() to parse comman's return value - - net: hns3: move some set_bit statement into hclge_prepare_mac_addr - - net: hns3: fix a wrong checking in the hclge_tx_buffer_calc() - - net: hns3: fix the problem that the supported port is empty - - net: hns3: optimize the maximum TC macro - - net: hns3: don't allow user to change vlan filter state - - net: hns3: modify the upper limit judgment condition - - net: hns3: MAC table entry count function increases operation 0 value - protection measures - - net: hns3: make function hclge_set_all_vf_rst() static - - net: hns3: add pointer checking at the beginning of the exported functions. - - net: hns3: Check variable is valid before assigning it to another - - net: hns3: convert mac advertize and supported from u32 to link mode - - net: hns3: fix port info query issue for copper port - - net: hns3: modify print message of ssu common ecc errors - - net: hns3: some bugfix of ppu(rcb) ras errors - - net: hns3: enable 8~11th bit of mac common msi-x error - - net: hns3: fix 6th bit of ppp mpf abnormal errors - - net: hns3: Record VF unicast and multicast tables - - net: hns3: Record VF vlan tables - - net: hns3: uninitialize command queue while unloading PF driver - - net: hns3: clear command queue's registers when unloading VF driver - - net: hns3: add xps setting support for hns3 driver - - net: hns3: avoid mult + div op in critical data path - - net: hns3: limit some variable scope in critical data path - - net: hns3: remove some ops in struct hns3_nic_ops - - net: hns3: add unlikely for error handling in data path - - net: hns3: replace hnae3_set_bit and hnae3_set_field in data path - - net: hns3: remove hnae3_get_bit in data path - - net: hns3: add support to config depth for tx|rx ring separately - - net: hns3: enable VF VLAN filter for each VF when initializing - - net: hns3: fix get VF RSS issue - - net: hns3: fix setting of the hns reset_type for rdma hw errors - - net: hns3: fix improper error handling for hns3_client_start - - net: hns: use struct_size() in devm_kzalloc() - - net: hns3: Fix a logical vs bitwise typo - - net: hns3: add dma_rmb() for rx description - - net: hns3: fix to stop multiple HNS reset due to the AER changes - - * Build Nvidia drivers in conjunction with kernel (LP: #1764792) - - [Packaging] dkms-build -- support building against packages in PPAs - - [Packaging] dkms-build: do not redownload files on subsequent passes - - [Packaging] dkms-build -- elide partial Built-Using information - - [Packaging] dkms-build -- remove retpoline data from final binary packages - - [Packaging] dkms-build--nvidia* -- check gcc version against primary build - - [Packaging] dkms-build -- add support for unversioned overrides - - [Packaging] dkms-build--nvidia-* -- convert to generic -N form - - [Packaging] fix-filenames -- handle exact string removal - - [Packaging] dkms-build--nvidia-N -- remove GCC versions - - * Disco update: v5.0.1 upstream stable release (LP: #1819515) - - cpufreq: Use struct kobj_attribute instead of struct global_attr - - staging: erofs: fix mis-acted TAIL merging behavior - - binder: create node flag to request sender's security context - - USB: serial: option: add Telit ME910 ECM composition - - USB: serial: cp210x: add ID for Ingenico 3070 - - USB: serial: ftdi_sio: add ID for Hjelmslund Electronics USB485 - - driver core: Postpone DMA tear-down until after devres release - - staging: erofs: fix fast symlink w/o xattr when fs xattr is on - - staging: erofs: fix memleak of inode's shared xattr array - - staging: erofs: fix race of initializing xattrs of a inode at the same time - - staging: erofs: fix illegal address access under memory pressure - - staging: comedi: ni_660x: fix missing break in switch statement - - staging: wilc1000: fix to set correct value for 'vif_num' - - staging: android: ion: fix sys heap pool's gfp_flags - - staging: android: ashmem: Don't call fallocate() with ashmem_mutex held. - - staging: android: ashmem: Avoid range_alloc() allocation with ashmem_mutex - held. - - ip6mr: Do not call __IP6_INC_STATS() from preemptible context - - net: dsa: mv88e6xxx: add call to mv88e6xxx_ports_cmode_init to probe for new - DSA framework - - net: dsa: mv88e6xxx: handle unknown duplex modes gracefully in - mv88e6xxx_port_set_duplex - - net: dsa: mv8e6xxx: fix number of internal PHYs for 88E6x90 family - - net: mscc: Enable all ports in QSGMII - - net: sched: put back q.qlen into a single location - - net-sysfs: Fix mem leak in netdev_register_kobject - - qmi_wwan: Add support for Quectel EG12/EM12 - - sctp: call iov_iter_revert() after sending ABORT - - team: Free BPF filter when unregistering netdev - - tipc: fix RDM/DGRAM connect() regression - - x86/CPU/AMD: Set the CPB bit unconditionally on F17h - - x86/boot/compressed/64: Do not read legacy ROM on EFI system - - tracing: Fix event filters and triggers to handle negative numbers - - xhci: tegra: Prevent error pointer dereference - - usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on - INTEL_SUNRISEPOINT_LP_XHCI - - applicom: Fix potential Spectre v1 vulnerabilities - - alpha: wire up io_pgetevents system call - - MIPS: irq: Allocate accurate order pages for irq stack - - aio: Fix locking in aio_poll() - - xtensa: fix get_wchan - - gnss: sirf: fix premature wakeup interrupt enable - - USB: serial: cp210x: fix GPIO in autosuspend - - Revert "selftests: firmware: add CONFIG_FW_LOADER_USER_HELPER_FALLBACK to - config" - - Revert "selftests: firmware: remove use of non-standard diff -Z option" - - selftests: firmware: fix verify_reqs() return value - - Bluetooth: btrtl: Restore old logic to assume firmware is already loaded - - Bluetooth: Fix locking in bt_accept_enqueue() for BH context - - Linux 5.0.1 - - * sky2 ethernet card doesn't work after returning from suspend - (LP: #1807259) // sky2 ethernet card link not up after suspend - (LP: #1809843) // Disco update: v5.0.1 upstream stable release - (LP: #1819515) - - sky2: Disable MSI on Dell Inspiron 1545 and Gateway P-79 - - * tls selftest failures/hangs on i386 (LP: #1813607) - - [Config] CONFIG_TLS=n for i386 - - * CVE-2019-8980 - - exec: Fix mem leak in kernel_read_file - - * Miscellaneous Ubuntu changes - - SAUCE: selftests: net: Use 'ipproto ipv6-icmp' to match ICMPv6 headers - - [Config] enable nvidia build - - [Config] update gcc version to 8.3 - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: selftests: pmtu: disable accept_dad for tests" - - -- Thadeu Lima de Souza Cascardo Tue, 12 Mar 2019 16:15:44 -0300 - -linux (5.0.0-7.8) disco; urgency=medium - - * linux: 5.0.0-7.8 -proposed tracker (LP: #1818519) - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * unnecessary request_queue freeze (LP: #1815733) - - block: avoid setting nr_requests to current value - - block: avoid setting none scheduler if it's already none - - * Miscellaneous Ubuntu changes - - SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on xfail - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.0 - - -- Seth Forshee Mon, 04 Mar 2019 08:46:10 -0600 - -linux (5.0.0-6.7) disco; urgency=medium - - * linux: 5.0.0-6.7 -proposed tracker (LP: #1817585) - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - [Packaging] resync getabis - - * installer does not support iSCSI iBFT (LP: #1817321) - - d-i: add iscsi_ibft to scsi-modules - - * Silent "Unknown key" message when pressing keyboard backlight hotkey - (LP: #1817063) - - platform/x86: dell-wmi: Ignore new keyboard backlight change event - - * Fix I219 doesn't get woken up after plugging ethernet cable (LP: #1817058) - - e1000e: Disable runtime PM on CNP+ - - * efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted (LP: #1814982) - - efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted - - * CVE-2019-3460 - - Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt - - * CVE-2019-3459 - - Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer - - * kernel net tls selftest fails on 5.0 (LP: #1816716) - - SAUCE: Revert "selftests/tls: Add test for recv(PEEK) spanning across - multiple records" - - * Please enable CONFIG_DMA_CMA=y on arm64 (LP: #1803206) - - [Config] annotations -- enforce CONFIG_DMA_CMA and update notes - - * [19.04 FEAT] [LS1801] PCI Virtual function enablement (LP: #1814684) - - s390/pci: map IOV resources - - s390/pci: improve bar check - - * glibc 2.28-0ubuntu1 ADT test failure with linux 5.0.0-1.2 (LP: #1813060) - - SAUCE: prevent a glibc test failure when looking for obsolete types on - headers - - * Miscellaneous Ubuntu changes - - [Config] Enforce CONFIG_ZCRYPT_MULTIDEVNODES in annotations - - SAUCE: selftests: pmtu: disable accept_dad for tests - - SAUCE: arm64: add kernel config option to lock down when in Secure Boot mode - - SAUCE: selftests: net: Make test for VXLAN underlay in non-default VRF an - expected failure - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc8 - - -- Seth Forshee Mon, 25 Feb 2019 09:37:36 -0600 - -linux (5.0.0-5.6) disco; urgency=medium - - * [ALSA] [PATCH] System76 darp5 and oryp5 fixups (LP: #1815831) - - ALSA: hda/realtek - Headset microphone and internal speaker support for - System76 oryp5 - - * Miscellaneous Ubuntu changes - - [Config] Fix aufs menus in annotations file - - [Config] CONFIG_SAMPLE_TRACE_PRINTK=m - - [Config] Update annotations based on configs - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc7 - - -- Seth Forshee Mon, 18 Feb 2019 10:04:11 +0100 - -linux (5.0.0-4.5) disco; urgency=medium - - * linux-buildinfo: pull out ABI information into its own package - (LP: #1806380) - - [Packaging] autoreconstruct -- base tag is always primary mainline version - - * [Packaging] Allow overlay of config annotations (LP: #1752072) - - [Packaging] config-check: Add an include directive - - * Miscellaneous Ubuntu changes - - hio -- stub out BIOVEC_PHYS_MERGEABLE for 4.20+ - - hio -- replace use of do_gettimeofday() - - hio -- part_round_stats() removed in 5.0 - - hio -- device_add_disk() grew a 'groups' argument in 4.20 - - enable hio build - - Revert "UBUNTU: [Packaging] autoreconstruct -- base tag is always primary - mainline version" - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc6 - - -- Seth Forshee Tue, 12 Feb 2019 08:15:32 -0600 - -linux (5.0.0-3.4) disco; urgency=medium - - * CONFIG_TEST_BPF is disabled (LP: #1813955) - - [Config]: Reenable TEST_BPF - - * Ignore "incomplete report" from Elan touchpanels (LP: #1813733) - - HID: i2c-hid: Ignore input report if there's no data present on Elan - touchpanels - - * SecureBoot support for arm64 (LP: #1804481) - - Build signed kernels for arm64 - - * Miscellaneous Ubuntu changes - - SAUCE: selftests: net: fix "from" match test in fib_rule_tests.sh - - [Config] CONFIG_PCMCIA=n for arm64 and s390x - - [Config] CONFIG_SERIAL_SC16IS7XX=n for s390x - - [Config] disable I2C TPM drivers for s390x - - [Config] CONFIG_RAPIDIO=n for s390x - - [Config] CONFIG_DMADEVICES=n for s390x - - [Config] disable gpio drivers for s390x - - [Config] CONFIG_SENSORS_OCC_P8_I2C=m for ppc64el - - [Config] disable I2C hardware drivers for s390x - - [Config] CONFIG_I3C=n for s390x - - [Config] CONFIG_SERIO=n for s390x - - [Config] disable misc drivers for s390x - - [Config] disable EEPROM drivers for s390x - - [Config] disable MFD drivers for s390x - - [Config] CONFIG_NVMEM=n for s390x - - [Config] CONFIG_MLXSW_I2C=n for s390x - - [Config] CONFIG_NET_VENDOR_MICROCHIP=n for s390x - - [Config] CONFIG_PPP=n for s390x - - [Config] CONFIG_PCCARD=n for s390x - - [Config] CONFIG_PCI_MESON=y - - [Config] CONFIG_SCSI_MYRB=n for s390x - - [Config] CONFIG_REGULATOR=n for s390x - - [Config] CONFIG_ZIIRAVE_WATCHDOG=n for s390x - - [Config] CONFIG_NCSI_OEM_CMD_GET_MAC=y - - [Config] update annotations following config review - - [Packaging] remove handoff check for uefi signing - - [Packaging] decompress gzipped efi images in signing tarball - - vbox-update: allow leading whitespace when fixing up KERN_DIR - - ubuntu: vbox -- update to 6.0.4-dfsg-3 - - vbox: remove remount check in sf_read_super_aux() - - enable vbox build - - [Config] CONFIG_ANDROID_BINDER_DEVICES="" - - SAUCE: import aufs driver - - [Config]: Enable aufs - - [Config] relocate aufs annotations to menu - - [Config] remove unmatched configs from annotations - - [Config] fix up abi for removed modules - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules - - SAUCE: (efi-lockdown) Move EFI signature blob parser to shared location - - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot - - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed - - [Config] (efi-lockdown) enable importing of efi certificates for module sig - verification - - * Miscellaneous upstream changes - - binder: fix CONFIG_ANDROID_BINDER_DEVICES - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc5 - - -- Seth Forshee Tue, 05 Feb 2019 14:26:12 -0600 - -linux (5.0.0-2.3) disco; urgency=medium - - * kernel oops in bcache module (LP: #1793901) - - SAUCE: bcache: never writeback a discard operation - - * Enable sound card power saving by default (LP: #1804265) - - [Config] CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: SAUCE: selftests: disable some failing networking tests" - - SAUCE: ashmem: turn into module - - SAUCE: binder: turn into module - - SAUCE: binder: give binder_alloc its own debug mask file - - [Config] enable binder and ashmem as modules - - SAUCE: selftests: net: replace AF_MAX with INT_MAX in socket.c - - SAUCE: selftests/ftrace: Fix tab expansion in trace_marker snapshot trigger - test - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc4 - - -- Seth Forshee Tue, 29 Jan 2019 06:57:32 -0600 - -linux (5.0.0-1.2) disco; urgency=medium - - * Fix non-working QCA Rome Bluetooth after S3 (LP: #1812812) - - USB: Add new USB LPM helpers - - USB: Consolidate LPM checks to avoid enabling LPM twice - - * bluetooth controller not detected with 4.15 kernel (LP: #1810797) - - SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK - - [Config] arm64: snapdragon: BT_QCOMSMD_HACK=y - - * [19.04 FEAT| Enable virtio-gpu for s390x (LP: #1799467) - - [Config] enable virtio-gpu for s390x - - * Crash on "ip link add foo type ipip" (LP: #1811803) - - SAUCE: fan: Fix NULL pointer dereference - - * Fix not working Goodix touchpad (LP: #1811929) - - HID: i2c-hid: Disable runtime PM on Goodix touchpad - - * Miscellaneous Ubuntu changes - - update dkms package versions - - enable zfs build - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc3 - - -- Seth Forshee Tue, 22 Jan 2019 13:56:17 -0600 - -linux (5.0.0-0.1) disco; urgency=medium - - * Build Nvidia drivers in conjunction with kernel (LP: #1764792) - - [Packaging] dkms -- add per package post-process step - - [Packaging] dkms -- switch to a consistent build prefix length and strip - - [Packaging] nvidia -- build and sign nvidia packages and ship signatures - - [Packaging] nvidia -- make nvidia package version explicit - - * Add support for ALC3277 codec on new Dell edge gateways (LP: #1807334) - - [Config] CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m - - * RTL8822BE WiFi Disabled in Kernel 4.18.0-12 (LP: #1806472) - - [Config] CONFIG_RTLWIFI_DEBUG_ST=n - - * Miscellaneous Ubuntu changes - - ubuntu -- disable vbox build - - ubuntu -- disable hio build - - Disable zfs build - - SAUCE: import aufs driver - - update dkms package versions - - [Config] disable aufs config options - - [Config] disable nvidia build - - update dropped.txt - - [Packaging] disable nvidia dkms builds for mainline - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is - locked down - - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked - down - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Lock down module params that specify hardware - parameters (eg. ioport) - - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module - - SAUCE: (efi-lockdown) Lock down /proc/kcore - - SAUCE: (efi-lockdown) Lock down kprobes - - SAUCE: (efi-lockdown) Lock down perf - - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked - down - - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation - defined - - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to - secondary keyring - - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists - that aren't present. - - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err(). - - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - [Config] set config options for efi lockdown - - Revert "UBUNTU: SAUCE: import aufs driver" - - [ Upstream Kernel Changes ] - - * Rebase to v5.0-rc2 - - -- Seth Forshee Thu, 17 Jan 2019 12:31:29 -0600 - -linux (5.0.0-0.0) disco; urgency=medium - - * Dummy entry. - - -- Seth Forshee Wed, 16 Jan 2019 14:48:05 -0600 - -linux (4.20.0-2.3) disco; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v4.20 - - -- Seth Forshee Thu, 03 Jan 2019 12:11:43 -0600 - -linux (4.20.0-1.2) disco; urgency=medium - - * Packaging resync (LP: #1786013) - - [Packaging] update helper scripts - - * Power leakage at S5 with Qualcomm Atheros QCA9377 802.11ac Wireless Network - Adapter (LP: #1805607) - - SAUCE: ath10k: provide reset function for QCA9377 chip - - * zfs/spl build in conjunction with the kernel from DKMS source (LP: #1807378) - - [Packaging] dkms -- dkms package build packaging support - - [Packaging] dkms -- save build objects artifacts for validation - - [Packaging] dkms -- add general Built-Using: support - - [Packaging] simplify Provides comma handling - - [Packaging] zfs/spl -- remove packaging support for incorporated source - - [Packaging] zfs/spl -- remove incorporated source - - [Packaging] zfs/spl -- build via dkms - - [Packaging] zfs/spl -- make zfs package version explicit - - [Packaging] update-version-dkms -- sync archive versions to package - - * Miscellaneous Ubuntu changes - - [Packaging] update-version-dkms -- fix getting distrbution from changelog - - update dkms package versions - - [ Upstream Kernel Changes ] - - * Rebase to v4.20-rc6 - - -- Seth Forshee Tue, 11 Dec 2018 11:33:08 -0600 - -linux (4.20.0-0.1) disco; urgency=medium - - * Overlayfs in user namespace leaks directory content of inaccessible - directories (LP: #1793458) // CVE-2018-6559 - - Revert "ovl: relax permission checking on underlying layers" - - SAUCE: overlayfs: ensure mounter privileges when reading directories - - * Miscellaneous Ubuntu changes - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is - locked down - - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked - down - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Lock down module params that specify hardware - parameters (eg. ioport) - - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module - - SAUCE: (efi-lockdown) Lock down /proc/kcore - - SAUCE: (efi-lockdown) Lock down kprobes - - SAUCE: (efi-lockdown) Lock down perf - - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked - down - - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to - secondary keyring - - SAUCE: (efi-lockdown) efi: Add EFI signature data types - - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser - - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot - - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed - - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists - that aren't present. - - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err(). - - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) Fix for module sig verification - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: Import aufs driver - - ubuntu: vbox -- update to 5.2.22-dfsg-2 - - ubuntu -- disable vbox build - - ubuntu -- disable hio build - - Disable zfs build - - [ Upstream Kernel Changes ] - - * Rebase to v4.20-rc5 - - -- Seth Forshee Fri, 07 Dec 2018 07:13:42 -0600 - -linux (4.20.0-0.0) disco; urgency=medium - - * Dummy entry. - - -- Seth Forshee Thu, 06 Dec 2018 10:20:19 -0600 - -linux (4.19.0-8.9) disco; urgency=medium - - * linux: 4.19.0-8.9 -proposed tracker (LP: #1806952) - - * Workaround CSS timeout on AMD SNPS 3.0 xHC (LP: #1806838) - - xhci: workaround CSS timeout on AMD SNPS 3.0 xHC - - * Fix Intel I210 doesn't work when ethernet cable gets plugged (LP: #1806818) - - igb: Fix an issue that PME is not enabled during runtime suspend - - * The line-out on the Dell Dock station can't work (LP: #1806532) - - ALSA: usb-audio: Add vendor and product name for Dell WD19 Dock - - * CVE-2018-19407 - - KVM: X86: Fix scan ioapic use-before-initialization - - * PC SN720 NVMe WDC 256GB consumes more power in S2Idle than during long idle - (LP: #1805775) - - SAUCE: pci/nvme: prevent WDC PC SN720 NVMe from entering D3 and being - disabled - - * Disco update: 4.19.6 upstream stable release (LP: #1806909) - - HID: steam: remove input device when a hid client is running. - - efi/libstub: arm: support building with clang - - usb: core: Fix hub port connection events lost - - usb: dwc3: gadget: fix ISOC TRB type on unaligned transfers - - usb: dwc3: gadget: Properly check last unaligned/zero chain TRB - - usb: dwc3: core: Clean up ULPI device - - usb: dwc3: Fix NULL pointer exception in dwc3_pci_remove() - - xhci: Fix leaking USB3 shared_hcd at xhci removal - - xhci: handle port status events for removed USB3 hcd - - xhci: Add check for invalid byte size error when UAS devices are connected. - - usb: xhci: fix uninitialized completion when USB3 port got wrong status - - usb: xhci: fix timeout for transition from RExit to U0 - - xhci: Add quirk to workaround the errata seen on Cavium Thunder-X2 Soc - - usb: xhci: Prevent bus suspend if a port connect change or polling state is - detected - - ALSA: oss: Use kvzalloc() for local buffer allocations - - MAINTAINERS: Add Sasha as a stable branch maintainer - - Documentation/security-bugs: Clarify treatment of embargoed information - - Documentation/security-bugs: Postpone fix publication in exceptional cases - - mmc: sdhci-pci: Try "cd" for card-detect lookup before using NULL - - mmc: sdhci-pci: Workaround GLK firmware failing to restore the tuning value - - gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path - - iwlwifi: fix wrong WGDS_WIFI_DATA_SIZE - - iwlwifi: mvm: support sta_statistics() even on older firmware - - iwlwifi: mvm: fix regulatory domain update when the firmware starts - - iwlwifi: mvm: don't use SAR Geo if basic SAR is not used - - brcmfmac: fix reporting support for 160 MHz channels - - opp: ti-opp-supply: Dynamically update u_volt_min - - opp: ti-opp-supply: Correct the supply in _get_optimal_vdd_voltage call - - tools/power/cpupower: fix compilation with STATIC=true - - v9fs_dir_readdir: fix double-free on p9stat_read error - - selinux: Add __GFP_NOWARN to allocation at str_read() - - Input: synaptics - avoid using uninitialized variable when probing - - bfs: add sanity check at bfs_fill_super() - - sctp: clear the transport of some out_chunk_list chunks in - sctp_assoc_rm_peer - - gfs2: Don't leave s_fs_info pointing to freed memory in init_sbd - - llc: do not use sk_eat_skb() - - mm: don't warn about large allocations for slab - - mm/memory.c: recheck page table entry with page table lock held - - tcp: do not release socket ownership in tcp_close() - - drm/fb-helper: Blacklist writeback when adding connectors to fbdev - - drm/amdgpu: Add missing firmware entry for HAINAN - - drm/vc4: Set ->legacy_cursor_update to false when doing non-async updates - - drm/amdgpu: Fix oops when pp_funcs->switch_power_profile is unset - - drm/i915: Disable LP3 watermarks on all SNB machines - - drm/ast: change resolution may cause screen blurred - - drm/ast: fixed cursor may disappear sometimes - - drm/ast: Remove existing framebuffers before loading driver - - can: flexcan: Unlock the MB unconditionally - - can: dev: can_get_echo_skb(): factor out non sending code to - __can_get_echo_skb() - - can: dev: __can_get_echo_skb(): replace struct can_frame by canfd_frame to - access frame length - - can: dev: __can_get_echo_skb(): Don't crash the kernel if can_priv::echo_skb - is accessed out of bounds - - can: dev: __can_get_echo_skb(): print error message, if trying to echo non - existing skb - - can: rx-offload: introduce can_rx_offload_get_echo_skb() and - can_rx_offload_queue_sorted() functions - - can: rx-offload: rename can_rx_offload_irq_queue_err_skb() to - can_rx_offload_queue_tail() - - can: flexcan: use can_rx_offload_queue_sorted() for flexcan_irq_bus_*() - - can: flexcan: handle tx-complete CAN frames via rx-offload infrastructure - - can: raw: check for CAN FD capable netdev in raw_sendmsg() - - can: hi311x: Use level-triggered interrupt - - can: flexcan: Always use last mailbox for TX - - can: flexcan: remove not needed struct flexcan_priv::tx_mb and struct - flexcan_priv::tx_mb_idx - - ACPICA: AML interpreter: add region addresses in global list during - initialization - - IB/hfi1: Eliminate races in the SDMA send error path - - fsnotify: generalize handling of extra event flags - - fanotify: fix handling of events on child sub-directory - - pinctrl: meson: fix pinconf bias disable - - pinctrl: meson: fix gxbb ao pull register bits - - pinctrl: meson: fix gxl ao pull register bits - - pinctrl: meson: fix meson8 ao pull register bits - - pinctrl: meson: fix meson8b ao pull register bits - - tools/testing/nvdimm: Fix the array size for dimm devices. - - scsi: lpfc: fix remoteport access - - scsi: hisi_sas: Remove set but not used variable 'dq_list' - - KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE - - cpufreq: imx6q: add return value check for voltage scale - - rtc: cmos: Do not export alarm rtc_ops when we do not support alarms - - rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_write - - crypto: simd - correctly take reqsize of wrapped skcipher into account - - floppy: fix race condition in __floppy_read_block_0() - - powerpc/io: Fix the IO workarounds code to work with Radix - - sched/fair: Fix cpu_util_wake() for 'execl' type workloads - - perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs - - block: copy ioprio in __bio_clone_fast() and bounce - - SUNRPC: Fix a bogus get/put in generic_key_to_expire() - - riscv: add missing vdso_install target - - RISC-V: Silence some module warnings on 32-bit - - drm/amdgpu: fix bug with IH ring setup - - kdb: Use strscpy with destination buffer size - - NFSv4: Fix an Oops during delegation callbacks - - powerpc/numa: Suppress "VPHN is not supported" messages - - efi/arm: Revert deferred unmap of early memmap mapping - - z3fold: fix possible reclaim races - - mm, memory_hotplug: check zone_movable in has_unmovable_pages - - tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset - - mm, page_alloc: check for max order in hot path - - dax: Avoid losing wakeup in dax_lock_mapping_entry - - include/linux/pfn_t.h: force '~' to be parsed as an unary operator - - tty: wipe buffer. - - tty: wipe buffer if not echoing data - - gfs2: Fix iomap buffer head reference counting bug - - rcu: Make need_resched() respond to urgent RCU-QS needs - - media: ov5640: Re-work MIPI startup sequence - - media: ov5640: Fix timings setup code - - media: ov5640: fix exposure regression - - media: ov5640: fix auto gain & exposure when changing mode - - media: ov5640: fix wrong binning value in exposure calculation - - media: ov5640: fix auto controls values when switching to manual mode - - Linux 4.19.6 - - * linux-buildinfo: pull out ABI information into its own package - (LP: #1806380) - - [Packaging] limit preparation to linux-libc-dev in headers - - [Packaging] commonise debhelper invocation - - [Packaging] ABI -- accumulate abi information at the end of the build - - [Packaging] buildinfo -- add basic build information - - [Packaging] buildinfo -- add firmware information to the flavour ABI - - [Packaging] buildinfo -- add compiler information to the flavour ABI - - [Packaging] buildinfo -- add buildinfo support to getabis - - [Packaging] getabis -- handle all known package combinations - - [Packaging] getabis -- support parsing a simple version - - * linux packages should own /usr/lib/linux/triggers (LP: #1770256) - - [Packaging] own /usr/lib/linux/triggers - - * Miscellaneous upstream changes - - blk-mq: fix corruption with direct issue - - -- Seth Forshee Wed, 05 Dec 2018 09:18:30 -0600 - -linux (4.19.0-7.8) disco; urgency=medium - - * linux: 4.19.0-7.8 -proposed tracker (LP: #1805465) - - * Fix and issue that LG I2C touchscreen stops working after reboot - (LP: #1805085) - - HID: i2c-hid: Disable runtime PM for LG touchscreen - - * click/pop noise in the headphone on several lenovo laptops (LP: #1805079) // - click/pop noise in the headphone on several lenovo laptops (LP: #1805079) - - ALSA: hda/realtek - fix the pop noise on headphone for lenovo laptops - - * Regression: hinic performance degrades over time (LP: #1805248) - - Revert "net-next/hinic: add checksum offload and TSO support" - - * Disco update: 4.19.5 upstream stable release (LP: #1805461) - - drm/i915: Replace some PAGE_SIZE with I915_GTT_PAGE_SIZE - - cifs: don't dereference smb_file_target before null check - - cifs: fix return value for cifs_listxattr - - arm64: kprobe: make page to RO mode when allocate it - - block: brd: associate with queue until adding disk - - net: hns3: bugfix for rtnl_lock's range in the hclgevf_reset() - - net: hns3: bugfix for rtnl_lock's range in the hclge_reset() - - net: hns3: bugfix for handling mailbox while the command queue reinitialized - - net: hns3: bugfix for the initialization of command queue's spin lock - - ixgbe: fix MAC anti-spoofing filter after VFLR - - reiserfs: propagate errors from fill_with_dentries() properly - - hfs: prevent btree data loss on root split - - hfsplus: prevent btree data loss on root split - - perf unwind: Take pgoff into account when reporting elf to libdwfl - - um: Give start_idle_thread() a return code - - drm/edid: Add 6 bpc quirk for BOE panel. - - afs: Handle EIO from delivery function - - platform/x86: intel_telemetry: report debugfs failure - - clk: fixed-rate: fix of_node_get-put imbalance - - perf symbols: Set PLT entry/header sizes properly on Sparc - - fs/exofs: fix potential memory leak in mount option parsing - - clk: samsung: exynos5420: Enable PERIS clocks for suspend - - apparmor: Fix uninitialized value in aa_split_fqname - - x86/earlyprintk: Add a force option for pciserial device - - platform/x86: acerhdf: Add BIOS entry for Gateway LT31 v1.3307 - - clk: meson-axg: pcie: drop the mpll3 clock parent - - arm64: percpu: Initialize ret in the default case - - clk: meson: clk-pll: drop CLK_GET_RATE_NOCACHE where unnecessary - - clk: renesas: r9a06g032: Fix UART34567 clock rate - - clk: ti: fix OF child-node lookup - - serial: sh-sci: Fix receive on SCIFA/SCIFB variants with DMA - - netfilter: ipv6: fix oops when defragmenting locally generated fragments - - netfilter: bridge: define INT_MIN & INT_MAX in userspace - - s390/decompressor: add missing FORCE to build targets - - s390/vdso: add missing FORCE to build targets - - HID: i2c-hid: Add a small delay after sleep command for Raydium touchpanel - - Revert "HID: add NOGET quirk for Eaton Ellipse MAX UPS" - - HID: alps: allow incoming reports when only the trackstick is opened - - Revert "netfilter: nft_numgen: add map lookups for numgen random operations" - - netfilter: ipset: list:set: Decrease refcount synchronously on deletion and - replace - - netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net - - netfilter: ipset: fix ip_set_list allocation failure - - s390/mm: fix mis-accounting of pgtable_bytes - - s390/mm: Fix ERROR: "__node_distance" undefined! - - bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv - - netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment() - - netfilter: xt_IDLETIMER: add sysfs filename checking routine - - netfilter: ipset: Fix calling ip_set() macro at dumping - - netfilter: nft_compat: ebtables 'nat' table is normal chain type - - s390/qeth: fix HiperSockets sniffer - - s390/qeth: unregister netdevice only when registered - - net: hns3: Fix for out-of-bounds access when setting pfc back pressure - - hwmon: (ibmpowernv) Remove bogus __init annotations - - ARM: dts: imx6sll: fix typo for fsl,imx6sll-i2c node - - ARM: dts: fsl: Fix improperly quoted stdout-path values - - Revert "drm/exynos/decon5433: implement frame counter" - - arm64: dts: renesas: r8a7795: add missing dma-names on hscif2 - - arm64: dts: renesas: condor: switch from EtherAVB to GEther - - xen/grant-table: Fix incorrect gnttab_dma_free_pages() pr_debug message - - clk: fixed-factor: fix of_node_get-put imbalance - - mtd: nand: Fix nanddev_pos_next_page() kernel-doc header - - lib/raid6: Fix arm64 test build - - drm/amd/display: Stop leaking planes - - block: Clear kernel memory before copying to user - - drm/amd/display: Drop reusing drm connector for MST - - drm/amd/amdgpu/dm: Fix dm_dp_create_fake_mst_encoder() - - s390/perf: Change CPUM_CF return code in event init function - - ceph: quota: fix null pointer dereference in quota check - - of/device: Really only set bus DMA mask when appropriate - - nvme: make sure ns head inherits underlying device limits - - i2c: omap: Enable for ARCH_K3 - - i2c: qcom-geni: Fix runtime PM mismatch with child devices - - sched/core: Take the hotplug lock in sched_init_smp() - - perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so - - perf tools: Do not zero sample_id_all for group members - - ice: Fix dead device link issue with flow control - - ice: Fix the bytecount sent to netdev_tx_sent_queue - - ice: Change req_speeds to be u16 - - i40e: restore NETIF_F_GSO_IPXIP[46] to netdev features - - qed: Fix memory/entry leak in qed_init_sp_request() - - qed: Fix blocking/unlimited SPQ entries leak - - qed: Fix SPQ entries not returned to pool in error flows - - qed: Fix potential memory corruption - - net: stmmac: Fix RX packet size > 8191 - - net: aquantia: fix potential IOMMU fault after driver unbind - - net: aquantia: fixed enable unicast on 32 macvlan - - net: aquantia: invalid checksumm offload implementation - - kbuild: deb-pkg: fix too low build version number - - Revert "scripts/setlocalversion: git: Make -dirty check more robust" - - SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() - - x86/mm: Move LDT remap out of KASLR region on 5-level paging - - x86/ldt: Unmap PTEs for the slot before freeing LDT pages - - x86/ldt: Remove unused variable in map_ldt_struct() - - media: v4l: event: Add subscription to list before calling "add" operation - - MIPS: OCTEON: cavium_octeon_defconfig: re-enable OCTEON USB driver - - RISC-V: Fix raw_copy_{to,from}_user() - - uio: Fix an Oops on load - - ALSA: hda/realtek - Add quirk entry for HP Pavilion 15 - - ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap() - - can: kvaser_usb: Fix accessing freed memory in kvaser_usb_start_xmit() - - can: kvaser_usb: Fix potential uninitialized variable use - - usb: cdc-acm: add entry for Hiro (Conexant) modem - - USB: Wait for extra delay time after USB_PORT_FEAT_RESET for quirky hub - - usb: quirks: Add delay-init quirk for Corsair K70 LUX RGB - - misc: atmel-ssc: Fix section annotation on atmel_ssc_get_driver_data - - USB: misc: appledisplay: add 20" Apple Cinema Display - - gnss: serial: fix synchronous write timeout - - gnss: sirf: fix synchronous write timeout - - mtd: rawnand: atmel: fix OF child-node lookup - - drivers/misc/sgi-gru: fix Spectre v1 vulnerability - - ACPI / platform: Add SMB0001 HID to forbidden_id_list - - HID: uhid: forbid UHID_CREATE under KERNEL_DS or elevated privileges - - HID: Add quirk for Primax PIXART OEM mice - - HID: Add quirk for Microsoft PIXART OEM mouse - - libceph: fall back to sendmsg for slab pages - - mt76x0: run vco calibration for each channel configuration - - Linux 4.19.5 - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: Build signed kernels for arm64" - - -- Seth Forshee Tue, 27 Nov 2018 10:38:34 -0600 - -linux (4.19.0-6.7) disco; urgency=medium - - * linux: 4.19.0-6.7 -proposed tracker (LP: #1805195) - - * SecureBoot support for arm64 (LP: #1804481) - - Build signed kernels for arm64 - - * Add pointstick support for Cirque Touchpad (LP: #1805081) - - HID: multitouch: Add pointstick support for Cirque Touchpad - - * Power consumption during s2idle is higher than long idle (Intel SSDPEKKF) - (LP: #1804588) - - SAUCE: pci: prevent Intel NVMe SSDPEKKF from entering D3 - - SAUCE: nvme: add quirk to not call disable function when suspending - - * Disco update: 4.19.4 upstream stable release (LP: #1805159) - - flow_dissector: do not dissect l4 ports for fragments - - ibmvnic: fix accelerated VLAN handling - - ip_tunnel: don't force DF when MTU is locked - - ipv6: fix a dst leak when removing its exception - - ipv6: Fix PMTU updates for UDP/raw sockets in presence of VRF - - net: bcmgenet: protect stop from timeout - - net-gro: reset skb->pkt_type in napi_reuse_skb() - - sctp: not allow to set asoc prsctp_enable by sockopt - - tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP - coalescing - - tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths - - tipc: don't assume linear buffer when reading ancillary data - - tipc: fix lockdep warning when reinitilaizing sockets - - tuntap: fix multiqueue rx - - net: systemport: Protect stop from timeout - - net/sched: act_pedit: fix memory leak when IDR allocation fails - - net: sched: cls_flower: validate nested enc_opts_policy to avoid warning - - tipc: fix link re-establish failure - - net/mlx5e: Don't match on vlan non-existence if ethertype is wildcarded - - net/mlx5e: Claim TC hw offloads support only under a proper build config - - net/mlx5e: Adjust to max number of channles when re-attaching - - net/mlx5e: RX, verify received packet size in Linear Striding RQ - - Revert "sctp: remove sctp_transport_pmtu_check" - - net/mlx5e: Always use the match level enum when parsing TC rule match - - net/mlx5e: Fix selftest for small MTUs - - net/mlx5e: Removed unnecessary warnings in FEC caps query - - inet: frags: better deal with smp races - - l2tp: fix a sock refcnt leak in l2tp_tunnel_register - - net/mlx5: IPSec, Fix the SA context hash key - - net/mlx5e: IPoIB, Reset QP after channels are closed - - net: dsa: mv88e6xxx: Fix clearing of stats counters - - net: phy: realtek: fix RTL8201F sysfs name - - sctp: define SCTP_SS_DEFAULT for Stream schedulers - - net: qualcomm: rmnet: Fix incorrect assignment of real_dev - - net: dsa: microchip: initialize mutex before use - - sctp: fix strchange_flags name for Stream Change Event - - net: phy: mdio-gpio: Fix working over slow can_sleep GPIOs - - sctp: not increase stream's incnt before sending addstrm_in request - - mlxsw: spectrum: Fix IP2ME CPU policer configuration - - net: smsc95xx: Fix MTU range - - rxrpc: Fix lockup due to no error backoff after ack transmit error - - usbnet: smsc95xx: disable carrier check while suspending - - Revert "x86/speculation: Enable cross-hyperthread spectre v2 STIBP - mitigation" - - Linux 4.19.4 - - * Disco update: 4.19.3 upstream stable release (LP: #1805158) - - powerpc/traps: restore recoverability of machine_check interrupts - - powerpc/64/module: REL32 relocation range check - - powerpc/mm: Fix page table dump to work on Radix - - powerpc/mm: fix always true/false warning in slice.c - - drm/amd/display: fix bug of accessing invalid memory - - Input: wm97xx-ts - fix exit path - - powerpc/Makefile: Fix PPC_BOOK3S_64 ASFLAGS - - powerpc/eeh: Fix possible null deref in eeh_dump_dev_log() - - tty: check name length in tty_find_polling_driver() - - tracing/kprobes: Check the probe on unloaded module correctly - - drm/nouveau/secboot/acr: fix memory leak - - drm/amdgpu/powerplay: fix missing break in switch statements - - ARM: imx_v6_v7_defconfig: Select CONFIG_TMPFS_POSIX_ACL - - powerpc/nohash: fix undefined behaviour when testing page size support - - drm/msm/gpu: fix parameters in function msm_gpu_crashstate_capture - - drm/msm/disp/dpu: Use proper define for drm_encoder_init() 'encoder_type' - - drm/msm: dpu: Allow planes to extend past active display - - powerpc/mm: Don't report hugepage tables as memory leaks when using kmemleak - - drm/omap: fix memory barrier bug in DMM driver - - drm/amd/display: Raise dispclk value for dce120 by 15% - - drm/amd/display: fix gamma not being applied - - drm/hisilicon: hibmc: Do not carry error code in HiBMC framebuffer pointer - - media: pci: cx23885: handle adding to list failure - - media: coda: don't overwrite h.264 profile_idc on decoder instance - - MIPS: kexec: Mark CPU offline before disabling local IRQ - - powerpc/boot: Ensure _zimage_start is a weak symbol - - powerpc/memtrace: Remove memory in chunks - - MIPS/PCI: Call pcie_bus_configure_settings() to set MPS/MRRS - - staging: erofs: fix a missing endian conversion - - serial: 8250_of: Fix for lack of interrupt support - - sc16is7xx: Fix for multi-channel stall - - media: tvp5150: fix width alignment during set_selection() - - powerpc/selftests: Wait all threads to join - - staging:iio:ad7606: fix voltage scales - - drm: rcar-du: Update Gen3 output limitations - - drm/amdgpu: Fix SDMA TO after GPU reset v3 - - staging: most: video: fix registration of an empty comp core_component - - 9p locks: fix glock.client_id leak in do_lock - - udf: Prevent write-unsupported filesystem to be remounted read-write - - ARM: dts: imx6ull: keep IMX6UL_ prefix for signals on both i.MX6UL and - i.MX6ULL - - media: ov5640: fix mode change regression - - 9p: clear dangling pointers in p9stat_free - - drm/amdgpu: fix integer overflow test in amdgpu_bo_list_create() - - media: ov5640: fix restore of last mode set - - cdrom: fix improper type cast, which can leat to information leak. - - ovl: fix error handling in ovl_verify_set_fh() - - ovl: fix recursive oi->lock in ovl_link() - - ovl: check whiteout in ovl_create_over_whiteout() - - ovl: automatically enable redirect_dir on metacopy=on - - serial: sh-sci: Fix could not remove dev_attr_rx_fifo_timeout - - scsi: qla2xxx: Fix incorrect port speed being set for FC adapters - - scsi: qla2xxx: Fix process response queue for ISP26XX and above - - scsi: qla2xxx: Remove stale debug trace message from tcm_qla2xxx - - scsi: qla2xxx: Fix early srb free on abort - - scsi: qla2xxx: shutdown chip if reset fail - - scsi: qla2xxx: Reject bsg request if chip is down. - - scsi: qla2xxx: Fix re-using LoopID when handle is in use - - scsi: qla2xxx: Fix for double free of SRB structure - - scsi: qla2xxx: Fix NVMe session hang on unload - - scsi: qla2xxx: Fix NVMe Target discovery - - scsi: qla2xxx: Fix duplicate switch database entries - - scsi: qla2xxx: Fix driver hang when FC-NVMe LUNs are configured - - vfs: fix FIGETBSZ ioctl on an overlayfs file - - fuse: Fix use-after-free in fuse_dev_do_read() - - fuse: Fix use-after-free in fuse_dev_do_write() - - fuse: fix blocked_waitq wakeup - - fuse: set FR_SENT while locked - - drm/msm: fix OF child-node lookup - - arm64: dts: stratix10: Support Ethernet Jumbo frame - - arm64: dts: stratix10: fix multicast filtering - - clk: meson-gxbb: set fclk_div3 as CLK_IS_CRITICAL - - clk: meson: axg: mark fdiv2 and fdiv3 as critical - - zram: close udev startup race condition as default groups - - MIPS: Loongson-3: Fix CPU UART irq delivery problem - - MIPS: Loongson-3: Fix BRIDGE irq delivery problem - - xtensa: add NOTES section to the linker script - - xtensa: make sure bFLT stack is 16 byte aligned - - xtensa: fix boot parameters address translation - - um: Drop own definition of PTRACE_SYSEMU/_SINGLESTEP - - clk: s2mps11: Fix matching when built as module and DT node contains - compatible - - clk: at91: Fix division by zero in PLL recalc_rate() - - clk: sunxi-ng: h6: fix bus clocks' divider position - - clk: rockchip: fix wrong mmc sample phase shift for rk3328 - - clk: rockchip: Fix static checker warning in rockchip_ddrclk_get_parent call - - libceph: bump CEPH_MSG_MAX_DATA_LEN - - Revert "ceph: fix dentry leak in splice_dentry()" - - thermal: core: Fix use-after-free in thermal_cooling_device_destroy_sysfs - - mach64: fix display corruption on big endian machines - - mach64: fix image corruption due to reading accelerator registers - - acpi/nfit, x86/mce: Handle only uncorrectable machine checks - - acpi/nfit, x86/mce: Validate a MCE's address before using it - - acpi, nfit: Fix ARS overflow continuation - - reset: hisilicon: fix potential NULL pointer dereference - - crypto: hisilicon - Fix NULL dereference for same dst and src - - crypto: hisilicon - Fix reference after free of memories on error path - - vhost/scsi: truncate T10 PI iov_iter to prot_bytes - - scsi: qla2xxx: Initialize port speed to avoid setting lower speed - - SCSI: fix queue cleanup race before queue initialization is done - - Revert "powerpc/8xx: Use L1 entry APG to handle _PAGE_ACCESSED for - CONFIG_SWAP" - - soc: ti: QMSS: Fix usage of irq_set_affinity_hint - - ocfs2: fix a misuse a of brelse after failing ocfs2_check_dir_entry - - ocfs2: free up write context when direct IO failed - - mm: thp: relax __GFP_THISNODE for MADV_HUGEPAGE mappings - - memory_hotplug: cond_resched in __remove_pages - - netfilter: conntrack: fix calculation of next bucket number in early_drop - - ARM: 8809/1: proc-v7: fix Thumb annotation of cpu_v7_hvc_switch_mm - - bonding/802.3ad: fix link_failure_count tracking - - mtd: spi-nor: cadence-quadspi: Return error code in - cqspi_direct_read_execute() - - mtd: nand: Fix nanddev_neraseblocks() - - mtd: docg3: don't set conflicting BCH_CONST_PARAMS option - - hwmon: (core) Fix double-free in __hwmon_device_register() - - perf cs-etm: Correct CPU mode for samples - - perf stat: Handle different PMU names with common prefix - - perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc} - - perf intel-pt/bts: Calculate cpumode for synthesized samples - - perf intel-pt: Insert callchain context into synthesized callchains - - of, numa: Validate some distance map rules - - x86/cpu/vmware: Do not trace vmware_sched_clock() - - x86/hyper-v: Enable PIT shutdown quirk - - termios, tty/tty_baudrate.c: fix buffer overrun - - arch/alpha, termios: implement BOTHER, IBSHIFT and termios2 - - watchdog/core: Add missing prototypes for weak functions - - btrfs: fix pinned underflow after transaction aborted - - Btrfs: fix missing data checksums after a ranged fsync (msync) - - Btrfs: fix cur_offset in the error case for nocow - - Btrfs: fix infinite loop on inode eviction after deduplication of eof block - - Btrfs: fix data corruption due to cloning of eof block - - btrfs: tree-checker: Fix misleading group system information - - clockevents/drivers/i8253: Add support for PIT shutdown quirk - - ext4: add missing brelse() update_backups()'s error path - - ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path - - ext4: add missing brelse() add_new_gdb_meta_bg()'s error path - - ext4: avoid potential extra brelse in setup_new_flex_group_blocks() - - ext4: missing !bh check in ext4_xattr_inode_write() - - ext4: fix possible inode leak in the retry loop of ext4_resize_fs() - - ext4: avoid buffer leak on shutdown in ext4_mark_iloc_dirty() - - ext4: avoid buffer leak in ext4_orphan_add() after prior errors - - ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing - - ext4: avoid possible double brelse() in add_new_gdb() on error path - - ext4: fix possible leak of sbi->s_group_desc_leak in error path - - ext4: fix possible leak of s_journal_flag_rwsem in error path - - ext4: fix buffer leak in ext4_xattr_get_block() on error path - - ext4: release bs.bh before re-using in ext4_xattr_block_find() - - ext4: fix buffer leak in ext4_xattr_move_to_block() on error path - - ext4: fix buffer leak in ext4_expand_extra_isize_ea() on error path - - ext4: fix buffer leak in __ext4_read_dirblock() on error path - - mount: Prevent MNT_DETACH from disconnecting locked mounts - - mnt: fix __detach_mounts infinite loop - - uapi: fix linux/kfd_ioctl.h userspace compilation errors - - ARM: cpuidle: Don't register the driver when back-end init returns -ENXIO - - kdb: use correct pointer when 'btc' calls 'btt' - - kdb: print real address of pointers instead of hashed addresses - - sunrpc: correct the computation for page_ptr when truncating - - NFSv4: Don't exit the state manager without clearing - NFS4CLNT_MANAGER_RUNNING - - nfsd: COPY and CLONE operations require the saved filehandle to be set - - rtc: hctosys: Add missing range error reporting - - fuse: fix use-after-free in fuse_direct_IO() - - fuse: fix leaked notify reply - - fuse: fix possibly missed wake-up after abort - - selinux: check length properly in SCTP bind hook - - gfs2: Put bitmap buffers in put_super - - gfs2: Fix metadata read-ahead during truncate (2) - - libata: blacklist SAMSUNG MZ7TD256HAFV-000L9 SSD - - crypto: user - fix leaking uninitialized memory to userspace - - lib/ubsan.c: don't mark __ubsan_handle_builtin_unreachable as noreturn - - hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! - - mm/swapfile.c: use kvzalloc for swap_info_struct allocation - - efi/arm/libstub: Pack FDT after populating it - - mm: don't reclaim inodes with many attached pages - - scripts/spdxcheck.py: make python3 compliant - - drm/rockchip: Allow driver to be shutdown on reboot/kexec - - drm/amdgpu: Fix typo in amdgpu_vmid_mgr_init - - drm/amdgpu: add missing CHIP_HAINAN in amdgpu_ucode_get_load_type - - drm/amdgpu: Suppress keypresses from ACPI_VIDEO events - - drm/nouveau: Check backlight IDs are >= 0, not > 0 - - drm/nouveau: Fix nv50_mstc->best_encoder() - - drm/amd/powerplay: Enable/Disable NBPSTATE on On/OFF of UVD - - drm/etnaviv: fix bogus fence complete check in timeout handler - - drm/dp_mst: Check if primary mstb is null - - drm: panel-orientation-quirks: Add quirk for Acer One 10 (S1003) - - drm/i915/dp: Link train Fallback on eDP only if fallback link BW can fit - panel's native mode - - drm/i915: Use the correct crtc when sanitizing plane mapping - - drm/i915: Restore vblank interrupts earlier - - drm/i915: Don't unset intel_connector->mst_port - - drm/i915: Skip vcpi allocation for MSTB ports that are gone - - drm/i915: Large page offsets for pread/pwrite - - drm/i915/dp: Fix link retraining comment in intel_dp_long_pulse() - - drm/i915/dp: Restrict link retrain workaround to external monitors - - drm/i915/icl: Fix the macros for DFLEXDPMLE register bits - - drm/i915/hdmi: Add HDMI 2.0 audio clock recovery N values - - drm/i915: Mark up GTT sizes as u64 - - drm/i915: Fix error handling for the NV12 fb dimensions check - - drm/i915: Fix ilk+ watermarks when disabling pipes - - drm/i915: Compare user's 64b GTT offset even on 32b - - drm/i915: Don't oops during modeset shutdown after lpe audio deinit - - drm/i915: Mark pin flags as u64 - - drm/i915/ringbuffer: Delay after EMIT_INVALIDATE for gen4/gen5 - - drm/i915/execlists: Force write serialisation into context image vs - execution - - drm/i915: Fix possible race in intel_dp_add_mst_connector() - - drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST - - drm/i915: Fix hpd handling for pins with two encoders - - CONFIG_XEN_PV breaks xen_create_contiguous_region on ARM - - Revert "ACPICA: AML interpreter: add region addresses in global list during - initialization" - - Linux 4.19.3 - - * glibc 2.28-0ubuntu1 ADT test failure with linux 4.19.0-5.6 (LP: #1805154) - - SAUCE: Revert "x86: vdso: Use $LD instead of $CC to link" - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.7.12-1ubuntu1, zfs to 0.7.12-1ubuntu1 - - -- Seth Forshee Mon, 26 Nov 2018 11:44:00 -0600 - -linux (4.19.0-5.6) disco; urgency=medium - - * crash in ENA driver on removing an interface (LP: #1802341) - - SAUCE: net: ena: fix crash during ena_remove() - - * Ubuntu 18.04.1 - [s390x] Kernel panic while stressing network bonding - (LP: #1797367) - - s390/qeth: sanitize strings in debug messages - - * Disco update: 4.19.2 upstream stable release (LP: #1803410) - - bpf: fix partial copy of map_ptr when dst is scalar - - MIPS: VDSO: Reduce VDSO_RANDOMIZE_SIZE to 64MB for 64bit - - gpio: mxs: Get rid of external API call - - mtd: rawnand: marvell: fix the IRQ handler complete() condition - - mtd: maps: gpio-addr-flash: Fix ioremapped size - - mtd: spi-nor: fsl-quadspi: fix read error for flash size larger than 16MB - - mtd: spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash - - mtd: spi-nor: fsl-quadspi: Don't let -EINVAL on the bus - - spi: spi-mem: Adjust op len based on message/transfer size limitations - - spi: bcm-qspi: switch back to reading flash using smaller chunks - - spi: bcm-qspi: fix calculation of address length - - bcache: trace missed reading by cache_missed - - bcache: fix ioctl in flash device - - bcache: correct dirty data statistics - - bcache: fix miss key refill->end in writeback - - hwmon: (pmbus) Fix page count auto-detection. - - jffs2: free jffs2_sb_info through jffs2_kill_sb() - - block: setup bounce bio_sets properly - - block: make sure discard bio is aligned with logical block size - - block: make sure writesame bio is aligned with logical block size - - cpufreq: conservative: Take limits changes into account properly - - dma-mapping: fix panic caused by passing empty cma command line argument - - pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges - - ACPI / OSL: Use 'jiffies' as the time bassis for acpi_os_get_timer() - - ACPICA: AML interpreter: add region addresses in global list during - initialization - - ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended - opcodes - - acpi, nfit: Fix Address Range Scrub completion tracking - - kprobes/x86: Use preempt_enable() in optimized_callback() - - mailbox: PCC: handle parse error - - parisc: Fix address in HPMC IVA - - parisc: Fix map_pages() to not overwrite existing pte entries - - parisc: Fix exported address of os_hpmc handler - - ALSA: hda - Add quirk for ASUS G751 laptop - - ALSA: hda - Fix headphone pin config for ASUS G751 - - ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) - - ALSA: hda: Add 2 more models to the power_save blacklist - - ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops - - ALSA: hda - Fix incorrect clearance of thinkpad_acpi hooks - - x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation - - x86/xen: Fix boot loader version reported for PVH guests - - x86/corruption-check: Fix panic in memory_corruption_check() when boot - option without value is provided - - x86/kvm/nVMX: allow bare VMXON state migration - - x86/mm/pat: Disable preemption around __flush_tlb_all() - - x86/numa_emulation: Fix uniform-split numa emulation - - ARM: dts: exynos: Disable pull control for MAX8997 interrupts on Origen - - net: socionext: Reset tx queue in ndo_stop - - net: loopback: clear skb->tstamp before netif_rx() - - locking/lockdep: Fix debug_locks off performance problem - - netfilter: xt_nat: fix DNAT target for shifted portmap ranges - - ataflop: fix error handling during setup - - swim: fix cleanup on setup error - - arm64: cpufeature: ctr: Fix cpu capability check for late CPUs - - hv_netvsc: fix vf serial matching with pci slot info - - nfp: devlink port split support for 1x100G CXP NIC - - tun: Consistently configure generic netdev params via rtnetlink - - s390/sthyi: Fix machine name validity indication - - hwmon: (pwm-fan) Set fan speed to 0 on suspend - - lightnvm: pblk: fix race on sysfs line state - - lightnvm: pblk: fix two sleep-in-atomic-context bugs - - lightnvm: pblk: fix race condition on metadata I/O - - spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare} - - perf tools: Free temporary 'sys' string in read_event_files() - - perf tools: Cleanup trace-event-info 'tdata' leak - - perf tools: Free 'printk' string in parse_ftrace_printk() - - perf strbuf: Match va_{add,copy} with va_end - - cpupower: Fix coredump on VMWare - - bcache: Populate writeback_rate_minimum attribute - - mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 - - sdhci: acpi: add free_slot callback - - mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset - - iwlwifi: pcie: avoid empty free RB queue - - iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface - - iwlwifi: mvm: check for n_profiles validity in EWRD ACPI - - x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC - - wlcore: Fix BUG with clear completion on timeout - - ACPI/PPTT: Handle architecturally unknown cache types - - ACPI / PM: LPIT: Register sysfs attributes based on FADT - - ACPI / processor: Fix the return value of acpi_processor_ids_walk() - - cpufreq: dt: Try freeing static OPPs only if we have added them - - x86/intel_rdt: Show missing resctrl mount options - - mtd: rawnand: atmel: Fix potential NULL pointer dereference - - nvme: call nvme_complete_rq when nvmf_check_ready fails for mpath I/O - - ath10k: fix tx status flag setting for management frames - - signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack - - ice: fix changing of ring descriptor size (ethtool -G) - - ice: update fw version check logic - - net: hns3: Fix for packet buffer setting bug - - Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth - - Bluetooth: hci_qca: Remove hdev dereference in qca_close(). - - x86: boot: Fix EFI stub alignment - - net: hns3: Add nic state check before calling netif_tx_wake_queue - - net: hns3: Fix ets validate issue - - pinctrl: sunxi: fix 'pctrl->functions' allocation in - sunxi_pinctrl_build_state - - pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux - - brcmfmac: fix for proper support of 160MHz bandwidth - - net: hns3: Check hdev state when getting link status - - net: hns3: Set STATE_DOWN bit of hdev state when stopping net - - net: phy: phylink: ensure the carrier is off when starting phylink - - block, bfq: correctly charge and reset entity service in all cases - - arm64: entry: Allow handling of undefined instructions from EL1 - - kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() - - spi: gpio: No MISO does not imply no RX - - ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers - - pinctrl: qcom: spmi-mpp: Fix drive strength setting - - bpf/verifier: fix verifier instability - - failover: Add missing check to validate 'slave_dev' in - net_failover_slave_unregister - - perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo - - pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant - - pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() to be compliant - - net: hns3: Preserve vlan 0 in hardware table - - net: hns3: Fix ping exited problem when doing lp selftest - - net: hns3: Fix for vf vlan delete failed problem - - net: dsa: mv88e6xxx: Fix writing to a PHY page. - - mt76x2u: run device cleanup routine if resume fails - - rsi: fix memory alignment issue in ARM32 platforms - - libertas_tf: prevent underflow in process_cmdrequest() - - iwlwifi: mvm: fix BAR seq ctrl reporting - - gpio: brcmstb: allow 0 width GPIO banks - - ixgbe: disallow IPsec Tx offload when in SR-IOV mode - - ixgbevf: VF2VF TCP RSS - - wil6210: fix RX buffers release and unmap - - ath10k: schedule hardware restart if WMI command times out - - libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 - - thermal: rcar_thermal: Prevent doing work after unbind - - thermal: da9062/61: Prevent hardware access during system suspend - - cifs: fix a credits leak for compund commands - - cgroup, netclassid: add a preemption point to write_classid - - net: stmmac: dwmac-sun8i: fix OF child-node lookup - - f2fs: fix to account IO correctly for cgroup writeback - - MD: Memory leak when flush bio size is zero - - md: fix memleak for mempool - - of: Add missing exports of node name compare functions - - scsi: esp_scsi: Track residual for PIO transfers - - scsi: ufs: Schedule clk gating work on correct queue - - UAPI: ndctl: Fix g++-unsupported initialisation in headers - - KVM: nVMX: Clear reserved bits of #DB exit qualification - - scsi: megaraid_sas: fix a missing-check bug - - RDMA/core: Do not expose unsupported counters - - RDMA/cm: Respect returned status of cm_init_av_by_path - - IB/ipoib: Clear IPCB before icmp_send - - RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case - - RDMA/bnxt_re: Fix recursive lock warning in debug kernel - - usb: host: ohci-at91: fix request of irq for optional gpio - - PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic - - PCI: cadence: Use AXI region 0 to signal interrupts from EP - - usb: typec: tcpm: Report back negotiated PPS voltage and current - - tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated - - f2fs: clear PageError on the read path - - Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask - - VMCI: Resource wildcard match fixed - - PCI / ACPI: Enable wake automatically for power managed bridges - - xprtrdma: Reset credit grant properly after a disconnect - - irqchip/pdc: Setup all edge interrupts as rising edge at GIC - - usb: dwc2: fix call to vbus supply exit routine, call it unlocked - - usb: dwc2: fix a race with external vbus supply - - usb: gadget: udc: atmel: handle at91sam9rl PMC - - ext4: fix argument checking in EXT4_IOC_MOVE_EXT - - MD: fix invalid stored role for a disk - - PCI: cadence: Correct probe behaviour when failing to get PHY - - nvmem: check the return value of nvmem_add_cells() - - xhci: Avoid USB autosuspend when resuming USB2 ports. - - scsi: qla2xxx: Fix recursive mailbox timeout - - f2fs: fix to recover inode's crtime during POR - - f2fs: fix to recover inode's i_flags during POR - - PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice - - coresight: etb10: Fix handling of perf mode - - PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode - - crypto: caam - fix implicit casts in endianness helpers - - usb: chipidea: Prevent unbalanced IRQ disable - - Smack: ptrace capability use fixes - - driver/dma/ioat: Call del_timer_sync() without holding prep_lock - - ASoC: AMD: Fix capture unstable in beginning for some runs - - firmware: coreboot: Unmap ioregion after device population - - IB/ipoib: Use dev_port to expose network interface port numbers - - IB/mlx5: Allow transition of DCI QP to reset - - uio: ensure class is registered before devices - - scsi: lpfc: Correct soft lockup when running mds diagnostics - - scsi: lpfc: Correct race with abort on completion path - - f2fs: avoid sleeping under spin_lock - - f2fs: report error if quota off error during umount - - signal: Always deliver the kernel's SIGKILL and SIGSTOP to a pid namespace - init - - f2fs: fix to flush all dirty inodes recovered in readonly fs - - mfd: menelaus: Fix possible race condition and leak - - dmaengine: dma-jz4780: Return error if not probed from DT - - IB/rxe: fix for duplicate request processing and ack psns - - ALSA: hda: Check the non-cached stream buffers more explicitly - - cpupower: Fix AMD Family 0x17 msr_pstate size - - Revert "f2fs: fix to clear PG_checked flag in set_page_dirty()" - - f2fs: fix missing up_read - - f2fs: fix to recover cold bit of inode block during POR - - f2fs: fix to account IO correctly - - OPP: Free OPP table properly on performance state irregularities - - ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings - - ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 - - xen-swiotlb: use actually allocated size on check physical continuous - - tpm: Restore functionality to xen vtpm driver. - - xen/blkfront: avoid NULL blkfront_info dereference on device removal - - xen/balloon: Support xend-based toolstack - - xen: fix race in xen_qlock_wait() - - xen: make xen_qlock_wait() nestable - - xen/pvh: increase early stack size - - xen/pvh: don't try to unplug emulated devices - - libertas: don't set URB_ZERO_PACKET on IN USB transfer - - usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten - - usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage - - usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" - - mt76: mt76x2: fix multi-interface beacon configuration - - iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() - - net/ipv4: defensive cipso option parsing - - dmaengine: ppc4xx: fix off-by-one build failure - - scsi: sched/wait: Add wait_event_lock_irq_timeout for TASK_UNINTERRUPTIBLE - usage - - scsi: target: Fix target_wait_for_sess_cmds breakage with active signals - - libnvdimm: Hold reference on parent while scheduling async init - - libnvdimm, region: Fail badblocks listing for inactive regions - - libnvdimm, pmem: Fix badblocks population for 'raw' namespaces - - ASoC: intel: skylake: Add missing break in skl_tplg_get_token() - - ASoC: sta32x: set ->component pointer in private struct - - IB/mlx5: Fix MR cache initialization - - IB/rxe: Revise the ib_wr_opcode enum - - jbd2: fix use after free in jbd2_log_do_checkpoint() - - gfs2_meta: ->mount() can get NULL dev_name - - ext4: fix EXT4_IOC_SWAP_BOOT - - ext4: initialize retries variable in ext4_da_write_inline_data_begin() - - ext4: fix setattr project check in fssetxattr ioctl - - ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR - - ext4: fix use-after-free race in ext4_remount()'s error path - - selinux: fix mounting of cgroup2 under older policies - - HID: wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 - - HID: hiddev: fix potential Spectre v1 - - EDAC, amd64: Add Family 17h, models 10h-2fh support - - EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting - - EDAC, skx_edac: Fix logical channel intermediate decoding - - ARM: dts: dra7: Fix up unaligned access setting for PCIe EP - - PCI/ASPM: Fix link_state teardown on device removal - - PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk - - signal/GenWQE: Fix sending of SIGKILL - - signal: Guard against negative signal numbers in copy_siginfo_from_user32 - - crypto: lrw - Fix out-of bounds access on counter overflow - - crypto: tcrypt - fix ghash-generic speed test - - crypto: aesni - don't use GFP_ATOMIC allocation if the request doesn't cross - a page in gcm - - crypto: morus/generic - fix for big endian systems - - crypto: aegis/generic - fix for big endian systems - - crypto: speck - remove Speck - - mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() - - userfaultfd: disable irqs when taking the waitqueue lock - - ima: fix showing large 'violations' or 'runtime_measurements_count' - - ima: open a new file instance if no read permissions - - hugetlbfs: dirty pages as they are added to pagecache - - mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly - - mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback - - KVM: arm/arm64: Ensure only THP is candidate for adjustment - - KVM: arm64: Fix caching of host MDCR_EL2 value - - kbuild: fix kernel/bounds.c 'W=1' warning - - iio: ad5064: Fix regulator handling - - iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() - - iio: adc: at91: fix acking DRDY irq on simple conversions - - iio: adc: at91: fix wrong channel number in triggered buffer mode - - w1: omap-hdq: fix missing bus unregister at removal - - smb3: allow stats which track session and share reconnects to be reset - - smb3: do not attempt cifs operation in smb3 query info error path - - smb3: on kerberos mount if server doesn't specify auth type use krb5 - - printk: Fix panic caused by passing log_buf_len to command line - - genirq: Fix race on spurious interrupt detection - - tpm: fix response size validation in tpm_get_random() - - NFC: nfcmrvl_uart: fix OF child-node lookup - - NFSv4.1: Fix the r/wsize checking - - nfs: Fix a missed page unlock after pg_doio() - - nfsd: correctly decrement odstate refcount in error path - - nfsd: Fix an Oops in free_session() - - lockd: fix access beyond unterminated strings in prints - - dm ioctl: harden copy_params()'s copy_from_user() from malicious users - - dm zoned: fix metadata block ref counting - - dm zoned: fix various dmz_get_mblock() issues - - media: ov7670: make "xclk" clock optional - - fsnotify: Fix busy inodes during unmount - - powerpc64/module elfv1: Set opd addresses after module relocation - - powerpc/msi: Fix compile error on mpc83xx - - powerpc/tm: Fix HFSCR bit for no suspend case - - powerpc/64s/hash: Do not use PPC_INVALIDATE_ERAT on CPUs before POWER9 - - MIPS: OCTEON: fix out of bounds array access on CN68XX - - rtc: ds1307: fix ds1339 wakealarm support - - rtc: cmos: Fix non-ACPI undefined reference to `hpet_rtc_interrupt' - - rtc: cmos: Remove the `use_acpi_alarm' module parameter for !ACPI - - power: supply: twl4030-charger: fix OF sibling-node lookup - - ocxl: Fix access to the AFU Descriptor Data - - iommu/arm-smmu: Ensure that page-table updates are visible before TLBI - - TC: Set DMA masks for devices - - net: bcmgenet: fix OF child-node lookup - - media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD - - Revert "media: dvbsky: use just one mutex for serializing device R/W ops" - - kgdboc: Passing ekgdboc to command line causes panic - - remoteproc: qcom: q6v5: Propagate EPROBE_DEFER - - media: cec: make cec_get_edid_spa_location() an inline function - - media: cec: integrate cec_validate_phys_addr() in cec-api.c - - xen: fix xen_qlock_wait() - - xen: remove size limit of privcmd-buf mapping interface - - xen-blkfront: fix kernel panic with negotiate_mq error path - - media: cec: add new tx/rx status bits to detect aborts/timeouts - - media: cec: fix the Signal Free Time calculation - - media: cec: forgot to cancel delayed work - - media: em28xx: use a default format if TRY_FMT fails - - media: tvp5150: avoid going past array on v4l2_querymenu() - - media: em28xx: fix input name for Terratec AV 350 - - media: em28xx: make v4l2-compliance happier by starting sequence on zero - - media: em28xx: fix handler for vidioc_s_input() - - media: adv7604: when the EDID is cleared, unconfigure CEC as well - - media: adv7842: when the EDID is cleared, unconfigure CEC as well - - drm/mediatek: fix OF sibling-node lookup - - media: media colorspaces*.rst: rename AdobeRGB to opRGB - - media: replace ADOBERGB by OPRGB - - media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC - - arm64: lse: remove -fcall-used-x0 flag - - rpmsg: smd: fix memory leak on channel create - - Cramfs: fix abad comparison when wrap-arounds occur - - ARM: dts: socfpga: Fix SDRAM node address for Arria10 - - arm64: dts: stratix10: Correct System Manager register size - - soc: qcom: rmtfs-mem: Validate that scm is available - - soc/tegra: pmc: Fix child-node lookup - - selftests/ftrace: Fix synthetic event test to delete event correctly - - selftests/powerpc: Fix ptrace tm failure - - tracing: Return -ENOENT if there is no target synthetic event - - btrfs: qgroup: Avoid calling qgroup functions if qgroup is not enabled - - btrfs: Handle owner mismatch gracefully when walking up tree - - btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock - - btrfs: fix error handling in free_log_tree - - btrfs: fix error handling in btrfs_dev_replace_start - - btrfs: Enhance btrfs_trim_fs function to handle error better - - btrfs: Ensure btrfs_trim_fs can trim the whole filesystem - - btrfs: iterate all devices during trim, instead of fs_devices::alloc_list - - btrfs: don't attempt to trim devices that don't support it - - btrfs: keep trim from interfering with transaction commits - - btrfs: wait on caching when putting the bg cache - - Btrfs: don't clean dirty pages during buffered writes - - btrfs: release metadata before running delayed refs - - btrfs: protect space cache inode alloc with GFP_NOFS - - btrfs: reset max_extent_size on clear in a bitmap - - btrfs: make sure we create all new block groups - - Btrfs: fix warning when replaying log after fsync of a tmpfile - - Btrfs: fix wrong dentries after fsync of file that got its parent replaced - - btrfs: qgroup: Dirty all qgroups before rescan - - Btrfs: fix null pointer dereference on compressed write path error - - Btrfs: fix assertion on fsync of regular file when using no-holes feature - - Btrfs: fix deadlock when writing out free space caches - - btrfs: reset max_extent_size properly - - btrfs: set max_extent_size properly - - btrfs: don't use ctl->free_space for max_extent_size - - btrfs: only free reserved extent if we didn't insert it - - btrfs: fix insert_reserved error handling - - btrfs: don't run delayed_iputs in commit - - btrfs: move the dio_sem higher up the callchain - - Btrfs: fix use-after-free during inode eviction - - Btrfs: fix use-after-free when dumping free space - - net: sched: Remove TCA_OPTIONS from policy - - vt: fix broken display when running aptitude - - bpf: wait for running BPF programs when updating map-in-map - - vga_switcheroo: Fix missing gpu_bound call at audio client registration - - MD: fix invalid stored role for a disk - try2 - - Linux 4.19.2 - - * [FEAT] Guest-dedicated Crypto Adapters (LP: #1787405) - - KVM: s390: vsie: simulate VCPU SIE entry/exit - - KVM: s390: introduce and use KVM_REQ_VSIE_RESTART - - KVM: s390: refactor crypto initialization - - s390: vfio-ap: base implementation of VFIO AP device driver - - s390: vfio-ap: register matrix device with VFIO mdev framework - - s390: vfio-ap: sysfs interfaces to configure adapters - - s390: vfio-ap: sysfs interfaces to configure domains - - s390: vfio-ap: sysfs interfaces to configure control domains - - s390: vfio-ap: sysfs interface to view matrix mdev matrix - - KVM: s390: interface to clear CRYCB masks - - s390: vfio-ap: implement mediated device open callback - - s390: vfio-ap: implement VFIO_DEVICE_GET_INFO ioctl - - s390: vfio-ap: zeroize the AP queues - - s390: vfio-ap: implement VFIO_DEVICE_RESET ioctl - - KVM: s390: Clear Crypto Control Block when using vSIE - - KVM: s390: vsie: Do the CRYCB validation first - - KVM: s390: vsie: Make use of CRYCB FORMAT2 clear - - KVM: s390: vsie: Allow CRYCB FORMAT-2 - - KVM: s390: vsie: allow CRYCB FORMAT-1 - - KVM: s390: vsie: allow CRYCB FORMAT-0 - - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-1 - - KVM: s390: vsie: allow guest FORMAT-1 CRYCB on host FORMAT-2 - - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-2 - - KVM: s390: device attrs to enable/disable AP interpretation - - KVM: s390: CPU model support for AP virtualization - - s390: doc: detailed specifications for AP virtualization - - KVM: s390: fix locking for crypto setting error path - - KVM: s390: Tracing APCB changes - - s390: vfio-ap: setup APCB mask using KVM dedicated function - - [Config:] Enable CONFIG_S390_AP_IOMMU and set CONFIG_VFIO_AP to module. - - * Bypass of mount visibility through userns + mount propagation (LP: #1789161) - - mount: Retest MNT_LOCKED in do_umount - - mount: Don't allow copying MNT_UNBINDABLE|MNT_LOCKED mounts - - * CVE-2018-18955: nested user namespaces with more than five extents - incorrectly grant privileges over inode (LP: #1801924) // CVE-2018-18955 - - userns: also map extents in the reverse map to kernel IDs - - * kdump fail due to an IRQ storm (LP: #1797990) - - SAUCE: x86/PCI: Export find_cap() to be used in early PCI code - - SAUCE: x86/quirks: Add parameter to clear MSIs early on boot - - SAUCE: x86/quirks: Scan all busses for early PCI quirks - - * Disable LPM for Raydium Touchscreens (LP: #1802248) - - USB: quirks: Add no-lpm quirk for Raydium touchscreens - - * Power consumption during s2idle is higher than long idle(sk hynix) - (LP: #1801875) - - SAUCE: pci: prevent sk hynix nvme from entering D3 - - SAUCE: nvme: add quirk to not call disable function when suspending - - * Disco update: v4.19.1 upstream stable release (LP: #1801739) - - bridge: do not add port to router list when receives query with source - 0.0.0.0 - - ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are - called - - net/mlx5e: fix csum adjustments caused by RXFCS - - net: sched: gred: pass the right attribute to gred_change_table_def() - - net: stmmac: Fix stmmac_mdio_reset() when building stmmac as modules - - net: udp: fix handling of CHECKSUM_COMPLETE packets - - Revert "net: simplify sock_poll_wait" - - rtnetlink: Disallow FDB configuration for non-Ethernet device - - vhost: Fix Spectre V1 vulnerability - - bonding: fix length of actor system - - openvswitch: Fix push/pop ethernet validation - - net/ipv6: Allow onlink routes to have a device mismatch if it is the default - route - - net/smc: fix smc_buf_unuse to use the lgr pointer - - mlxsw: spectrum_switchdev: Don't ignore deletions of learned MACs - - mlxsw: core: Fix devlink unregister flow - - net: drop skb on failure in ip_check_defrag() - - net: Properly unlink GRO packets on overflow. - - r8169: fix broken Wake-on-LAN from S5 (poweroff) - - Revert "be2net: remove desc field from be_eq_obj" - - sctp: check policy more carefully when getting pr status - - sparc64: Export __node_distance. - - sparc64: Make corrupted user stacks more debuggable. - - sparc64: Wire up compat getpeername and getsockname. - - net: bridge: remove ipv6 zero address check in mcast queries - - Linux 4.19.1 - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.7.11-1ubuntu1, zfs to 0.7.11-3ubuntu1 - - [Config] updateconfigs after 4.19.2 stable update - - [Config] Disable unneded options for s390 - - [Config] Update annotations for 4.19 - - -- Seth Forshee Thu, 15 Nov 2018 09:55:37 -0800 - -linux (4.19.0-4.5) disco; urgency=medium - - * Add checksum offload and TSO support for HiNIC adapters (LP: #1800664) - - net-next/hinic: add checksum offload and TSO support - - * [Bionic][Cosmic] Fix to ipmi to support vendor specific messages greater - than 255 bytes (LP: #1799794) - - ipmi:ssif: Add support for multi-part transmit messages > 2 parts - - * Packaging resync (LP: #1786013) - - [Package] add support for specifying the primary makefile - - * Update ENA driver to version 2.0.1K (LP: #1798182) - - net: ena: minor performance improvement - - net: ena: complete host info to match latest ENA spec - - net: ena: introduce Low Latency Queues data structures according to ENA spec - - net: ena: add functions for handling Low Latency Queues in ena_com - - net: ena: add functions for handling Low Latency Queues in ena_netdev - - net: ena: use CSUM_CHECKED device indication to report skb's checksum status - - net: ena: explicit casting and initialization, and clearer error handling - - net: ena: limit refill Rx threshold to 256 to avoid latency issues - - net: ena: change rx copybreak default to reduce kernel memory pressure - - net: ena: remove redundant parameter in ena_com_admin_init() - - net: ena: update driver version to 2.0.1 - - net: ena: fix indentations in ena_defs for better readability - - net: ena: Fix Kconfig dependency on X86 - - net: ena: enable Low Latency Queues - - net: ena: fix compilation error in xtensa architecture - - * [Bionic][Cosmic] ipmi: Fix timer race with module unload (LP: #1799281) - - ipmi: Fix timer race with module unload - - * Overlayfs in user namespace leaks directory content of inaccessible - directories (LP: #1793458) // CVE-2018-6559 - - SAUCE: overlayfs: ensure mounter privileges when reading directories - - * not able to unwind the stack from within __kernel_clock_gettime in the Linux - vDSO (LP: #1797963) - - powerpc/vdso: Correct call frame information - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Don't print secure boot state - from the efi stub" - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() use - efi_status_to_str() to print error messages." - - Revert "UBUNTU: SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err()." - - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() not complain - about cert lists that aren't present." - - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable - to be suppressed" - - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI - Secure Boot" - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser" - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add EFI signature data types" - - Revert "UBUNTU: SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time - addition of keys to secondary keyring" - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in - secure boot mode" - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to - indicate secure boot mode" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Copy secure_boot flag in boot params - across kexec reboot" - - Revert "UBUNTU: SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down perf" - - Revert "UBUNTU: SAUCE: (efi-lockdown) bpf: Restrict kernel image access - functions when the kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down kprobes" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down /proc/kcore" - - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the - testmmiotrace module" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down module params that specify - hardware parameters (eg. ioport)" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down TIOCSSERIAL" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable APEI error injection if - the kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable ACPI table override if - the kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param - when the kernel has been locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) ACPI: Limit access to custom_method - when the kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) x86: Lock down IO port access when the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) PCI: Lock down BAR access when the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is - locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) hibernate: Disable when the kernel is - locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Enforce module signatures if the - kernel is locked down" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Add a SysRq option to lift kernel - lockdown" - - Revert "UBUNTU: SAUCE: (efi-lockdown) Add the ability to lock down access to - the running kernel image" - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is - locked down - - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked - down - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Lock down module params that specify hardware - parameters (eg. ioport) - - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module - - SAUCE: (efi-lockdown) Lock down /proc/kcore - - SAUCE: (efi-lockdown) Lock down kprobes - - SAUCE: (efi-lockdown) Lock down perf - - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked - down - - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to - secondary keyring - - SAUCE: (efi-lockdown) efi: Add EFI signature data types - - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser - - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot - - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed - - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists - that aren't present. - - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err(). - - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) efi/x86: Call efi_parse_options() from efi_main() - - SAUCE: (efi-lockdown) Fix for module sig verification - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules - - [Packaging] generate Vcs-Git url from changelog - - [Config] CONFIG_SCSI_MQ_DEFAULT=y - - -- Seth Forshee Fri, 02 Nov 2018 14:22:55 -0500 - -linux (4.19.0-3.4) cosmic; urgency=medium - - * Support Edge Gateway's Bluetooth LED (LP: #1798332) - - SAUCE: Bluetooth: Support for LED on Edge Gateways - - * Support Edge Gateway's WIFI LED (LP: #1798330) - - SAUCE: mwifiex: Switch WiFi LED state according to the device status - - [ Upstream Kernel Changes ] - - * Rebase to v4.19 - - -- Seth Forshee Mon, 22 Oct 2018 09:13:39 -0500 - -linux (4.19.0-2.3) cosmic; urgency=medium - - * fscache: bad refcounting in fscache_op_complete leads to OOPS (LP: #1797314) - - SAUCE: fscache: Fix race in decrementing refcount of op->npages - - * Provide mode where all vCPUs on a core must be the same VM (LP: #1792957) - - KVM: PPC: Book3S HV: Provide mode where all vCPUs on a core must be the same - VM - - * The front MIC can't work on the Lenovo M715 (LP: #1797292) - - ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 - - * arm64: snapdragon: WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic.c:1016 - gic_irq_domain_translate (LP: #1797143) - - SAUCE: arm64: dts: msm8916: camms: fix gic_irq_domain_translate warnings - - * Dell new AIO requires a new uart backlight driver (LP: #1727235) - - SAUCE: platform/x86: dell-uart-backlight: new backlight driver for DELL AIO - - updateconfigs for Dell UART backlight driver - - * Please make CONFIG_PWM_LPSS_PCI and CONFIG_PWM_LPSS_PLATFORM built in to - make brightness adjustment working on various BayTrail/CherryTrail-based - devices (LP: #1783964) - - [Config]: Make PWM_LPSS_* built-in - - * check and fix zkey required kernel modules locations in debs, udebs, and - initramfs (LP: #1794346) - - [Config] add s390 crypto modules to crypt-modules udeb - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_VBOXGUEST=n - - ubuntu: vbox -- update to 5.2.18-dfsg-2 - - ubuntu: enable vbox build - - [ Upstream Kernel Changes ] - - * Rebase to v4.19-rc8 - - -- Seth Forshee Mon, 15 Oct 2018 10:52:04 -0500 - -linux (4.19.0-1.2) cosmic; urgency=medium - - * Page leaking in cachefiles_read_backing_file while vmscan is active - (LP: #1793430) - - SAUCE: cachefiles: Page leaking in cachefiles_read_backing_file while vmscan - is active - - * SRU: Enable middle button of touchpad on ThinkPad P72 (LP: #1793463) - - Input: elantech - enable middle button of touchpad on ThinkPad P72 - - * Improvements to the kernel source package preparation (LP: #1793461) - - [Packaging] startnewrelease: add support for backport kernels - - * Fix unusable NVIDIA GPU after S3 (LP: #1793338) - - SAUCE: PCI: Reprogram bridge prefetch registers on resume - - * Error reported when creating ZFS pool with "-t" option, despite successful - pool creation (LP: #1769937) - - SAUCE: (noup) Update zfs to 0.7.9-3ubuntu6 - - * device hotplug of vfio devices can lead to deadlock in vfio_pci_release - (LP: #1792099) - - SAUCE: vfio -- release device lock before userspace requests - - * Miscellaneous Ubuntu changes - - [Packaging] retpoline -- fix temporary filenaming - - CONFIG_BCH_CONST_PARAMS=n - - Packaging: final-checks: remove trailing backport suffix - - SAUCE: import aufs driver - - [ Upstream Kernel Changes ] - - * Rebase to v4.19-rc5 - - -- Seth Forshee Tue, 25 Sep 2018 16:32:24 -0500 - -linux (4.19.0-0.1) cosmic; urgency=medium - - * Miscellaneous Ubuntu changes - - ubuntu -- disable vbox build - - Disable zfs build - - SAUCE: Import aufs driver - - Update dropped.txt - - [ Upstream Kernel Changes ] - - * Rebase to v4.19-rc3 - - -- Seth Forshee Thu, 13 Sep 2018 07:54:47 -0500 - -linux (4.19.0-0.0) cosmic; urgency=medium - - * Dummy entry. - - -- Seth Forshee Thu, 13 Sep 2018 06:44:09 -0500 - -linux (4.18.0-8.9) cosmic; urgency=medium - - * linux: 4.18.0-8.9 -proposed tracker (LP: #1791663) - - * Cosmic update to v4.18.7 stable release (LP: #1791660) - - rcu: Make expedited GPs handle CPU 0 being offline - - net: 6lowpan: fix reserved space for single frames - - net: mac802154: tx: expand tailroom if necessary - - 9p/net: Fix zero-copy path in the 9p virtio transport - - spi: davinci: fix a NULL pointer dereference - - spi: pxa2xx: Add support for Intel Ice Lake - - spi: spi-fsl-dspi: Fix imprecise abort on VF500 during probe - - spi: cadence: Change usleep_range() to udelay(), for atomic context - - mmc: block: Fix unsupported parallel dispatch of requests - - mmc: renesas_sdhi_internal_dmac: mask DMAC interrupts - - mmc: renesas_sdhi_internal_dmac: fix #define RST_RESERVED_BITS - - readahead: stricter check for bdi io_pages - - block: fix infinite loop if the device loses discard capability - - block: blk_init_allocated_queue() set q->fq as NULL in the fail case - - block: really disable runtime-pm for blk-mq - - blkcg: Introduce blkg_root_lookup() - - block: Introduce blk_exit_queue() - - block: Ensure that a request queue is dissociated from the cgroup controller - - apparmor: fix bad debug check in apparmor_secid_to_secctx() - - dma-buf: Move BUG_ON from _add_shared_fence to _add_shared_inplace - - libertas: fix suspend and resume for SDIO connected cards - - media: Revert "[media] tvp5150: fix pad format frame height" - - mailbox: xgene-slimpro: Fix potential NULL pointer dereference - - Replace magic for trusting the secondary keyring with #define - - Fix kexec forbidding kernels signed with keys in the secondary keyring to - boot - - powerpc/fadump: handle crash memory ranges array index overflow - - powerpc/64s: Fix page table fragment refcount race vs speculative references - - powerpc/pseries: Fix endianness while restoring of r3 in MCE handler. - - powerpc/pkeys: Give all threads control of their key permissions - - powerpc/pkeys: Deny read/write/execute by default - - powerpc/pkeys: key allocation/deallocation must not change pkey registers - - powerpc/pkeys: Save the pkey registers before fork - - powerpc/pkeys: Fix calculation of total pkeys. - - powerpc/pkeys: Preallocate execute-only key - - powerpc/nohash: fix pte_access_permitted() - - powerpc64/ftrace: Include ftrace.h needed for enable/disable calls - - powerpc/powernv/pci: Work around races in PCI bridge enabling - - cxl: Fix wrong comparison in cxl_adapter_context_get() - - IB/mlx5: Honor cnt_set_id_valid flag instead of set_id - - IB/mlx5: Fix leaking stack memory to userspace - - IB/srpt: Fix srpt_cm_req_recv() error path (1/2) - - IB/srpt: Fix srpt_cm_req_recv() error path (2/2) - - IB/srpt: Support HCAs with more than two ports - - overflow.h: Add arithmetic shift helper - - RDMA/mlx5: Fix shift overflow in mlx5_ib_create_wq - - ib_srpt: Fix a use-after-free in srpt_close_ch() - - ib_srpt: Fix a use-after-free in __srpt_close_all_ch() - - RDMA/rxe: Set wqe->status correctly if an unexpected response is received - - 9p: fix multiple NULL-pointer-dereferences - - fs/9p/xattr.c: catch the error of p9_client_clunk when setting xattr failed - - 9p/virtio: fix off-by-one error in sg list bounds check - - net/9p/client.c: version pointer uninitialized - - net/9p/trans_fd.c: fix race-condition by flushing workqueue before the - kfree() - - dm integrity: change 'suspending' variable from bool to int - - dm thin: stop no_space_timeout worker when switching to write-mode - - dm cache metadata: save in-core policy_hint_size to on-disk superblock - - dm cache metadata: set dirty on all cache blocks after a crash - - dm crypt: don't decrease device limits - - dm writecache: fix a crash due to reading past end of dirty_bitmap - - uart: fix race between uart_put_char() and uart_shutdown() - - Drivers: hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() - - Drivers: hv: vmbus: Reset the channel callback in vmbus_onoffer_rescind() - - iio: sca3000: Fix missing return in switch - - iio: ad9523: Fix displayed phase - - iio: ad9523: Fix return value for ad952x_store() - - extcon: Release locking when sending the notification of connector state - - eventpoll.h: wrap casts in () properly - - vmw_balloon: fix inflation of 64-bit GFNs - - vmw_balloon: do not use 2MB without batching - - vmw_balloon: VMCI_DOORBELL_SET does not check status - - vmw_balloon: fix VMCI use when balloon built into kernel - - rtc: omap: fix resource leak in registration error path - - rtc: omap: fix potential crash on power off - - tracing: Do not call start/stop() functions when tracing_on does not change - - tracing/blktrace: Fix to allow setting same value - - printk/tracing: Do not trace printk_nmi_enter() - - livepatch: Validate module/old func name length - - uprobes: Use synchronize_rcu() not synchronize_sched() - - mfd: hi655x: Fix regmap area declared size for hi655x - - ovl: fix wrong use of impure dir cache in ovl_iterate() - - ACPICA: AML Parser: skip opcodes that open a scope upon parse failure - - ACPICA: Clear status of all events when entering sleep states - - drivers/block/zram/zram_drv.c: fix bug storing backing_dev - - sched: idle: Avoid retaining the tick when it has been stopped - - cpuidle: menu: Handle stopped tick more aggressively - - cpufreq: governor: Avoid accessing invalid governor_data - - PM / sleep: wakeup: Fix build error caused by missing SRCU support - - ALSA: ac97: fix device initialization in the compat layer - - ALSA: ac97: fix check of pm_runtime_get_sync failure - - ALSA: ac97: fix unbalanced pm_runtime_enable - - i2c: designware: Re-init controllers with pm_disabled set on resume - - KVM: VMX: fixes for vmentry_l1d_flush module parameter - - KVM: PPC: Book3S: Fix guest DMA when guest partially backed by THP pages - - xtensa: limit offsets in __loop_cache_{all,page} - - xtensa: increase ranges in ___invalidate_{i,d}cache_all - - block, bfq: return nbytes and not zero from struct cftype .write() method - - pnfs/blocklayout: off by one in bl_map_stripe() - - nfsd: fix leaked file lock with nfs exported overlayfs - - NFSv4 client live hangs after live data migration recovery - - NFSv4: Fix locking in pnfs_generic_recover_commit_reqs - - NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() - - ARM: tegra: Fix Tegra30 Cardhu PCA954x reset - - ARM: dts: am57xx-idk: Enable dual role for USB2 port - - pwm: omap-dmtimer: Return -EPROBE_DEFER if no dmtimer platform data - - mm/tlb: Remove tlb_remove_table() non-concurrent condition - - iommu/ipmmu-vmsa: Don't register as BUS IOMMU if machine doesn't have IPMMU- - VMSA - - iommu/vt-d: Add definitions for PFSID - - iommu/vt-d: Fix dev iotlb pfsid use - - sys: don't hold uts_sem while accessing userspace memory - - userns: move user access out of the mutex - - ubifs: Fix memory leak in lprobs self-check - - Revert "UBIFS: Fix potential integer overflow in allocation" - - ubifs: Check data node size before truncate - - ubifs: xattr: Don't operate on deleted inodes - - ubifs: Fix directory size calculation for symlinks - - ubifs: Fix synced_i_size calculation for xattr inodes - - pwm: tiehrpwm: Don't use emulation mode bits to control PWM output - - pwm: tiehrpwm: Fix disabling of output of PWMs - - fb: fix lost console when the user unplugs a USB adapter - - udlfb: fix semaphore value leak - - udlfb: fix display corruption of the last line - - udlfb: don't switch if we are switching to the same videomode - - udlfb: set optimal write delay - - udlfb: make a local copy of fb_ops - - udlfb: handle allocation failure - - udlfb: set line_length in dlfb_ops_set_par - - getxattr: use correct xattr length - - libnvdimm: Use max contiguous area for namespace size - - libnvdimm: fix ars_status output length calculation - - bcache: release dc->writeback_lock properly in bch_writeback_thread() - - kconfig: fix "Can't open ..." in parallel build - - perf auxtrace: Fix queue resize - - crypto: vmx - Fix sleep-in-atomic bugs - - crypto: aesni - Use unaligned loads from gcm_context_data - - crypto: arm64/sm4-ce - check for the right CPU feature bit - - crypto: caam - fix DMA mapping direction for RSA forms 2 & 3 - - crypto: caam/jr - fix descriptor DMA unmapping - - crypto: caam/qi - fix error path in xts setkey - - fs/quota: Fix spectre gadget in do_quotactl - - udf: Fix mounting of Win7 created UDF filesystems - - cpuidle: menu: Retain tick when shallow state is selected - - arm64: mm: always enable CONFIG_HOLES_IN_ZONE - - Linux 4.18.7 - - * CVE-2017-5715 - - s390: detect etoken facility - - KVM: s390: add etoken support for guests - - * Missing Intel GPU pci-id's (LP: #1789924) - - drm/i915/whl: Introducing Whiskey Lake platform - - drm/i915/aml: Introducing Amber Lake platform - - drm/i915/cfl: Add a new CFL PCI ID. - - * [18.10 FEAT] Add kernel config options for SMC-R/D (LP: #1789934) - - s390/ism: add device driver for internal shared memory - - CONFIG_ISM=y for s390 - - * Cosmic update to v4.18.6 stable release (LP: #1791105) - - PATCH scripts/kernel-doc - - scripts/kernel-doc: Escape all literal braces in regexes - - scsi: libsas: dynamically allocate and free ata host - - xprtrdma: Fix disconnect regression - - mei: don't update offset in write - - cifs: add missing support for ACLs in SMB 3.11 - - CIFS: fix uninitialized ptr deref in smb2 signing - - cifs: add missing debug entries for kconfig options - - cifs: use a refcount to protect open/closing the cached file handle - - cifs: check kmalloc before use - - smb3: enumerating snapshots was leaving part of the data off end - - smb3: Do not send SMB3 SET_INFO if nothing changed - - smb3: don't request leases in symlink creation and query - - smb3: fill in statfs fsid and correct namelen - - btrfs: use correct compare function of dirty_metadata_bytes - - btrfs: don't leak ret from do_chunk_alloc - - Btrfs: fix mount failure after fsync due to hard link recreation - - Btrfs: fix btrfs_write_inode vs delayed iput deadlock - - Btrfs: fix send failure when root has deleted files still open - - Btrfs: send, fix incorrect file layout after hole punching beyond eof - - hwmon: (k10temp) 27C Offset needed for Threadripper2 - - bpf, arm32: fix stack var offset in jit - - regulator: arizona-ldo1: Use correct device to get enable GPIO - - iommu/arm-smmu: Error out only if not enough context interrupts - - printk: Split the code for storing a message into the log buffer - - printk: Create helper function to queue deferred console handling - - printk/nmi: Prevent deadlock when accessing the main log buffer in NMI - - kprobes/arm64: Fix %p uses in error messages - - arm64: Fix mismatched cache line size detection - - arm64: Handle mismatched cache type - - arm64: mm: check for upper PAGE_SHIFT bits in pfn_valid() - - arm64: dts: rockchip: corrected uart1 clock-names for rk3328 - - KVM: arm/arm64: Fix potential loss of ptimer interrupts - - KVM: arm/arm64: Fix lost IRQs from emulated physcial timer when blocked - - KVM: arm/arm64: Skip updating PMD entry if no change - - KVM: arm/arm64: Skip updating PTE entry if no change - - s390/kvm: fix deadlock when killed by oom - - perf kvm: Fix subcommands on s390 - - stop_machine: Reflow cpu_stop_queue_two_works() - - stop_machine: Atomically queue and wake stopper threads - - ext4: check for NUL characters in extended attribute's name - - ext4: use ext4_warning() for sb_getblk failure - - ext4: sysfs: print ext4_super_block fields as little-endian - - ext4: reset error code in ext4_find_entry in fallback - - ext4: fix race when setting the bitmap corrupted flag - - x86/gpu: reserve ICL's graphics stolen memory - - platform/x86: wmi: Do not mix pages and kmalloc - - platform/x86: ideapad-laptop: Apply no_hw_rfkill to Y20-15IKBM, too - - mm: move tlb_table_flush to tlb_flush_mmu_free - - mm/tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE - - x86/speculation/l1tf: Fix overflow in l1tf_pfn_limit() on 32bit - - x86/speculation/l1tf: Fix off-by-one error when warning that system has too - much RAM - - x86/speculation/l1tf: Suggest what to do on systems with too much RAM - - x86/vdso: Fix vDSO build if a retpoline is emitted - - x86/process: Re-export start_thread() - - KVM: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd - - KVM: x86: SVM: Call x86_spec_ctrl_set_guest/host() with interrupts disabled - - fuse: Don't access pipe->buffers without pipe_lock() - - fuse: fix initial parallel dirops - - fuse: fix double request_end() - - fuse: fix unlocked access to processing queue - - fuse: umount should wait for all requests - - fuse: Fix oops at process_init_reply() - - fuse: Add missed unlock_page() to fuse_readpages_fill() - - lib/vsprintf: Do not handle %pO[^F] as %px - - udl-kms: change down_interruptible to down - - udl-kms: handle allocation failure - - udl-kms: fix crash due to uninitialized memory - - udl-kms: avoid division - - b43legacy/leds: Ensure NUL-termination of LED name string - - b43/leds: Ensure NUL-termination of LED name string - - ASoC: dpcm: don't merge format from invalid codec dai - - ASoC: zte: Fix incorrect PCM format bit usages - - ASoC: sirf: Fix potential NULL pointer dereference - - ASoC: wm_adsp: Correct DSP pointer for preloader control - - soc: qcom: rmtfs-mem: fix memleak in probe error paths - - pinctrl: freescale: off by one in imx1_pinconf_group_dbg_show() - - scsi: qla2xxx: Fix stalled relogin - - x86/vdso: Fix lsl operand order - - x86/nmi: Fix NMI uaccess race against CR3 switching - - x86/irqflags: Mark native_restore_fl extern inline - - x86/spectre: Add missing family 6 check to microcode check - - x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ - - hwmon: (nct6775) Fix potential Spectre v1 - - x86/entry/64: Wipe KASAN stack shadow before rewind_stack_do_exit() - - x86: Allow generating user-space headers without a compiler - - s390/mm: fix addressing exception after suspend/resume - - s390/lib: use expoline for all bcr instructions - - s390: fix br_r1_trampoline for machines without exrl - - s390/qdio: reset old sbal_state flags - - s390/numa: move initial setup of node_to_cpumask_map - - s390/purgatory: Fix crash with expoline enabled - - s390/purgatory: Add missing FORCE to Makefile targets - - kprobes: Show blacklist addresses as same as kallsyms does - - kprobes: Replace %p with other pointer types - - kprobes/arm: Fix %p uses in error messages - - kprobes: Make list and blacklist root user read only - - MIPS: Correct the 64-bit DSP accumulator register size - - MIPS: memset.S: Fix byte_fixup for MIPSr6 - - MIPS: Always use -march=, not - shortcuts - - MIPS: Change definition of cpu_relax() for Loongson-3 - - MIPS: lib: Provide MIPS64r6 __multi3() for GCC < 7 - - tpm: Return the actual size when receiving an unsupported command - - tpm: separate cmd_ready/go_idle from runtime_pm - - scsi: mpt3sas: Fix calltrace observed while running IO & reset - - scsi: mpt3sas: Fix _transport_smp_handler() error path - - scsi: sysfs: Introduce sysfs_{un,}break_active_protection() - - scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock - - iscsi target: fix session creation failure handling - - mtd: rawnand: hynix: Use ->exec_op() in hynix_nand_reg_write_op() - - mtd: rawnand: fsmc: Stop using chip->read_buf() - - mtd: rawnand: marvell: add suspend and resume hooks - - mtd: rawnand: qcom: wait for desc completion in all BAM channels - - clk: rockchip: fix clk_i2sout parent selection bits on rk3399 - - clk: npcm7xx: fix memory allocation - - PM / clk: signedness bug in of_pm_clk_add_clks() - - power: generic-adc-battery: fix out-of-bounds write when copying channel - properties - - power: generic-adc-battery: check for duplicate properties copied from iio - channels - - watchdog: Mark watchdog touch functions as notrace - - cdrom: Fix info leak/OOB read in cdrom_ioctl_drive_status - - x86/dumpstack: Don't dump kernel memory based on usermode RIP - - Linux 4.18.6 - - updateconfigs after v4.18.6 stable update - - * random oopses on s390 systems using NVMe devices (LP: #1790480) - - s390/pci: fix out of bounds access during irq setup - - * [18.10 FEAT] zcrypt DD: introduce APQN tags to support deterministic driver - binding (LP: #1784331) - - s390/zcrypt: code beautify - - s390/zcrypt: AP bus support for alternate driver(s) - - s390/zcrypt: hex string mask improvements for apmask and aqmask. - - * performance drop with ATS enabled (LP: #1788097) - - powerpc/powernv: Fix concurrency issue with npu->mmio_atsd_usage - - * Fix MCE handling for user access of poisoned device-dax mapping - (LP: #1774366) - - device-dax: Convert to vmf_insert_mixed and vm_fault_t - - device-dax: Enable page_mapping() - - device-dax: Set page->index - - filesystem-dax: Set page->index - - mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages - - mm, dev_pagemap: Do not clear ->mapping on final put - - mm, madvise_inject_error: Let memory_failure() optionally take a page - reference - - mm, memory_failure: Collect mapping size in collect_procs() - - filesystem-dax: Introduce dax_lock_mapping_entry() - - mm, memory_failure: Teach memory_failure() about dev_pagemap pages - - x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses - - x86/memory_failure: Introduce {set, clear}_mce_nospec() - - libnvdimm, pmem: Restore page attributes when clearing errors - - * Reconcile hns3 SAUCE patches with upstream (LP: #1787477) - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix comments for - hclge_get_ring_chain_from_mbx" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for using wrong mask and - shift in hclge_get_ring_chain_from_mbx" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for reset_level default - assignment probelm" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unnecessary ring - configuration operation while resetting" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix return value error in - hns3_reset_notify_down_enet" - - Revert "UBUNTU: SAUCE: net: hns3: Fix for phy link issue when using marvell - phy driver" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: separate roce from nic when - resetting" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: correct reset event status - register" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent to request reset - frequently" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: reset net device with rtnl_lock" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify the order of initializeing - command queue register" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent sending command during - global or core reset" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: Use roce handle when calling roce - callback function" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the warning when clear - reset cause" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix get_vector ops in - hclgevf_main module" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix warning bug when doing lp - selftest" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add configure for mac minimal - frame size" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mailbox message truncated - problem" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for l4 checksum offload bug" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for waterline not setting - correctly" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mac pause not disable in - pfc mode" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix tc setup when netdev is first - up" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add calling roce callback - function when link status change" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: optimize the process of notifying - roce client" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused struct member and - definition" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix mislead parameter name" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify inconsistent bit mask - macros" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: use decimal for bit offset - macros" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix unreasonable code comments" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove extra space and brackets" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: standardize the handle of return - value" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant - assignments" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify hnae_ to hnae3_" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead - of kzalloc/dma_map_single" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: give default option while - dependency HNS3 set" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some unused members of - some structures" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove a redundant - hclge_cmd_csq_done" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: using modulo for cyclic counters - in hclge_cmd_send" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant - assignments" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove useless code in - hclge_cmd_send" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused - hclge_ring_to_dma_dir" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: use lower_32_bits and - upper_32_bits" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove back in struct hclge_hw" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: add unlikely for error check" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the Redundant put_vector - in hns3_client_uninit" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: print the ret value in error - information" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: extraction an interface for state - state init|uninit" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused head file in - hnae3.c" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: add l4_type check for both ipv4 - and ipv6" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: add vector status check before - free vector" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: rename the interface for - init_client_instance and uninit_client_instance" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove hclge_get_vector_index - from hclge_bind_ring_with_vector" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: RX BD information valid only in - last BD except VLD bit and buffer size" - - Revert "UBUNTU: SAUCE: {topost} net: hns3: add support for serdes loopback - selftest" - - net: hns3: Updates RX packet info fetch in case of multi BD - - net: hns3: remove hclge_get_vector_index from hclge_bind_ring_with_vector - - net: hns3: rename the interface for init_client_instance and - uninit_client_instance - - net: hns3: add vector status check before free vector - - net: hns3: add l4_type check for both ipv4 and ipv6 - - net: hns3: add unlikely for error check - - net: hns3: remove unused head file in hnae3.c - - net: hns3: extraction an interface for state init|uninit - - net: hns3: print the ret value in error information - - net: hns3: remove the Redundant put_vector in hns3_client_uninit - - net: hns3: remove back in struct hclge_hw - - net: hns3: use lower_32_bits and upper_32_bits - - net: hns3: remove unused hclge_ring_to_dma_dir - - net: hns3: remove useless code in hclge_cmd_send - - net: hns3: remove some redundant assignments - - net: hns3: simplify hclge_cmd_csq_clean - - net: hns3: remove a redundant hclge_cmd_csq_done - - net: hns3: remove some unused members of some structures - - net: hns3: give default option while dependency HNS3 set - - net: hns3: use dma_zalloc_coherent instead of kzalloc/dma_map_single - - net: hns3: modify hnae_ to hnae3_ - - net: hns3: Fix tc setup when netdev is first up - - net: hns3: Fix for mac pause not disable in pfc mode - - net: hns3: Fix for waterline not setting correctly - - net: hns3: Fix for l4 checksum offload bug - - net: hns3: Fix for mailbox message truncated problem - - net: hns3: Add configure for mac minimal frame size - - net: hns3: Fix warning bug when doing lp selftest - - net: hns3: Fix get_vector ops in hclgevf_main module - - net: hns3: Remove the warning when clear reset cause - - net: hns3: Prevent sending command during global or core reset - - net: hns3: Modify the order of initializing command queue register - - net: hns3: Reset net device with rtnl_lock - - net: hns3: Prevent to request reset frequently - - net: hns3: Correct reset event status register - - net: hns3: Fix return value error in hns3_reset_notify_down_enet - - net: hns3: remove unnecessary ring configuration operation while resetting - - net: hns3: Fix for reset_level default assignment probelm - - net: hns3: Fix for using wrong mask and shift in - hclge_get_ring_chain_from_mbx - - net: hns3: Fix comments for hclge_get_ring_chain_from_mbx - - net: hns3: Remove some redundant assignments - - net: hns3: Standardize the handle of return value - - net: hns3: Remove extra space and brackets - - net: hns3: Correct unreasonable code comments - - net: hns3: Use decimal for bit offset macros - - net: hns3: Modify inconsistent bit mask macros - - net: hns3: Fix misleading parameter name - - net: hns3: Remove unused struct member and definition - - net: hns3: Add SPDX tags to HNS3 PF driver - - net: hns3: Add support for serdes loopback selftest - - net: hns3: Fix for phy link issue when using marvell phy driver - - * [Regression] kernel crashdump fails on arm64 (LP: #1786878) - - arm64: export memblock_reserve()d regions via /proc/iomem - - drivers: acpi: add dependency of EFI for arm64 - - efi/arm: preserve early mapping of UEFI memory map longer for BGRT - - efi/arm: map UEFI memory map even w/o runtime services enabled - - arm64: acpi: fix alignment fault in accessing ACPI - - [Config] CONFIG_ARCH_SUPPORTS_ACPI=y - - arm64: fix ACPI dependencies - - ACPI: fix menuconfig presentation of ACPI submenu - - * TB 16 issue on Dell Lattitude 7490 with large amount of data (LP: #1785780) - - r8152: disable RX aggregation on new Dell TB16 dock - - * Support Power Management for Thunderbolt Controller (LP: #1789358) - - thunderbolt: Use 64-bit DMA mask if supported by the platform - - thunderbolt: Do not unnecessarily call ICM get route - - thunderbolt: No need to take tb->lock in domain suspend/complete - - thunderbolt: Use correct ICM commands in system suspend - - thunderbolt: Add support for runtime PM - - * Enable AMD PCIe MP2 for AMDI0011 (LP: #1773940) - - SAUCE: i2c:amd I2C Driver based on PCI Interface for upcoming platform - - SAUCE: i2c:amd move out pointer in union i2c_event_base - - SAUCE: i2c:amd Depends on ACPI - - [Config] i2c: CONFIG_I2C_AMD_MP2=y on x86 - - * Microphone cannot be detected with front panel audio combo jack on HP Z8-G4 - machine (LP: #1789145) - - ALSA: hda/realtek - Fix HP Headset Mic can't record - - * Please enable CONFIG_PAGE_POISONING (LP: #1783651) - - [Config] Enable CONFIG_PAGE_POISONING configs - - * Tango platform uses __initcall without further checks (LP: #1787945) - - [Config] disable ARCH_TANGO - - * [18.10 FEAT] SMC-Direct (LP: #1786902) - - net/smc: determine port attributes independent from pnet table - - net/smc: add pnetid support - - net/smc: add base infrastructure for SMC-D and ISM - - net/smc: add pnetid support for SMC-D and ISM - - net/smc: add SMC-D support in CLC messages - - net/smc: add SMC-D support in data transfer - - net/smc: add SMC-D support in af_smc - - net/smc: add SMC-D diag support - - net/smc: provide smc mode in smc_diag.c - - net/smc: eliminate cursor read and write calls - - net/smc: add function to get link group from link - - net/smc: use DECLARE_BITMAP for rtokens_used_mask - - net/smc: remove local variable page in smc_rx_splice() - - net/smc: Remove a WARN_ON() statement - - net/smc: Simplify ib_post_(send|recv|srq_recv)() calls - - net/smc: fewer parameters for smc_llc_send_confirm_link() - - net/smc: use correct vlan gid of RoCE device - - net/smc: provide fallback reason code - - net/smc: improve delete link processing - - net: simplify sock_poll_wait - - net/smc: send response to test link signal - - * Miscellaneous Ubuntu changes - - [Config] update annotations for CONFIG_CRYPTO_SPECK_NEON - - [Config] fix up annotatios for CONFIG_CRYPTO_SPECK - - -- Seth Forshee Mon, 10 Sep 2018 07:08:38 -0500 - -linux (4.18.0-7.8) cosmic; urgency=medium - - * linux: 4.18.0-7.8 -proposed tracker (LP: #1789459) - - * pmtu.sh fails on 4.18 kernel (LP: #1789436) - - SAUCE: Revert "vti6: fix PMTU caching and reporting on xmit" - - -- Seth Forshee Tue, 28 Aug 2018 11:08:51 -0500 - -linux (4.18.0-6.7) cosmic; urgency=medium - - * linux: 4.18.0-6.7 -proposed tracker (LP: #1788881) - - * systemd 237-3ubuntu10 ADT test failure with linux 4.18.0-5.6 (LP: #1787440) - - Config: Disable BPF_JIT_ALWAYS_ON on i386 - - * execveat03 in ubuntu_ltp_syscalls failed on X/B (LP: #1786729) - - cap_inode_getsecurity: use d_find_any_alias() instead of d_find_alias() - - * Cosmic update to v4.18.5 stable release (LP: #1788874) - - EDAC: Add missing MEM_LRDDR4 entry in edac_mem_types[] - - pty: fix O_CLOEXEC for TIOCGPTPEER - - mm: Allow non-direct-map arguments to free_reserved_area() - - x86/mm/init: Pass unconverted symbol addresses to free_init_pages() - - x86/mm/init: Add helper for freeing kernel image pages - - x86/mm/init: Remove freed kernel image areas from alias mapping - - powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 - - ext4: fix spectre gadget in ext4_mb_regular_allocator() - - drm/i915/kvmgt: Fix potential Spectre v1 - - drm/amdgpu/pm: Fix potential Spectre v1 - - parisc: Remove unnecessary barriers from spinlock.h - - parisc: Remove ordered stores from syscall.S - - PCI: Restore resized BAR state on resume - - PCI / ACPI / PM: Resume all bridges on suspend-to-RAM - - PCI: hotplug: Don't leak pci_slot on registration failure - - PCI: aardvark: Size bridges before resources allocation - - PCI: Skip MPS logic for Virtual Functions (VFs) - - PCI: pciehp: Fix use-after-free on unplug - - PCI: pciehp: Fix unprotected list iteration in IRQ handler - - i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes - - i2c: imx: Fix race condition in dma read - - reiserfs: fix broken xattr handling (heap corruption, bad retval) - - Linux 4.18.5 - - * [18.10 FEAT] Add kernel config option "CONFIG_SCLP_OFB" (LP: #1787898) - - [Config] CONFIG_SCLP_OFB=y for s390x - - * errors when scanning partition table of corrupted AIX disk (LP: #1787281) - - partitions/aix: fix usage of uninitialized lv_info and lvname structures - - partitions/aix: append null character to print data from disk - - * Apply NVMe bugfix from Google that bjf asked for (LP: #1787635) - - nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event - - * ThinkPad systems have no HDMI sound when using the nvidia GPU (LP: #1787058) - - ACPI / OSI: Add OEM _OSI string to enable NVidia HDMI audio - - * Cosmic update to v4.18.4 stable release (LP: #1788454) - - l2tp: use sk_dst_check() to avoid race on sk->sk_dst_cache - - net_sched: fix NULL pointer dereference when delete tcindex filter - - net_sched: Fix missing res info when create new tc_index filter - - r8169: don't use MSI-X on RTL8168g - - ALSA: hda - Sleep for 10ms after entering D3 on Conexant codecs - - ALSA: hda - Turn CX8200 into D3 as well upon reboot - - ALSA: vx222: Fix invalid endian conversions - - ALSA: virmidi: Fix too long output trigger loop - - ALSA: cs5535audio: Fix invalid endian conversion - - ALSA: dice: fix wrong copy to rx parameters for Alesis iO26 - - ALSA: hda: Correct Asrock B85M-ITX power_save blacklist entry - - ALSA: memalloc: Don't exceed over the requested size - - ALSA: vxpocket: Fix invalid endian conversions - - ALSA: seq: Fix poll() error return - - media: gl861: fix probe of dvb_usb_gl861 - - USB: serial: sierra: fix potential deadlock at close - - USB: serial: pl2303: add a new device id for ATEN - - USB: option: add support for DW5821e - - ACPI / PM: save NVS memory for ASUS 1025C laptop - - tty: serial: 8250: Revert NXP SC16C2552 workaround - - serial: 8250_exar: Read INT0 from slave device, too - - serial: 8250_dw: always set baud rate in dw8250_set_termios - - serial: 8250_dw: Add ACPI support for uart on Broadcom SoC - - uio: fix wrong return value from uio_mmap() - - misc: sram: fix resource leaks in probe error path - - Revert "uio: use request_threaded_irq instead" - - Bluetooth: avoid killing an already killed socket - - isdn: Disable IIOCDBGVAR - - net: sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() - - hv/netvsc: Fix NULL dereference at single queue mode fallback - - r8169: don't use MSI-X on RTL8106e - - ip_vti: fix a null pointer deferrence when create vti fallback tunnel - - net: ethernet: mvneta: Fix napi structure mixup on armada 3700 - - net: mvneta: fix mvneta_config_rss on armada 3700 - - cls_matchall: fix tcf_unbind_filter missing - - Linux 4.18.4 - - * Cosmic update to v4.18.3 stable release (LP: #1788453) - - x86/speculation/l1tf: Exempt zeroed PTEs from inversion - - Linux 4.18.3 - - * Cosmic update to v4.18.2 stable release (LP: #1788452) - - x86/l1tf: Fix build error seen if CONFIG_KVM_INTEL is disabled - - x86: i8259: Add missing include file - - x86/hyper-v: Check for VP_INVAL in hyperv_flush_tlb_others() - - x86/platform/UV: Mark memblock related init code and data correctly - - x86/mm/pti: Clear Global bit more aggressively - - xen/pv: Call get_cpu_address_sizes to set x86_virt/phys_bits - - x86/mm: Disable ioremap free page handling on x86-PAE - - kbuild: verify that $DEPMOD is installed - - crypto: ccree - fix finup - - crypto: ccree - fix iv handling - - crypto: ccp - Check for NULL PSP pointer at module unload - - crypto: ccp - Fix command completion detection race - - crypto: x86/sha256-mb - fix digest copy in sha256_mb_mgr_get_comp_job_avx2() - - crypto: vmac - require a block cipher with 128-bit block size - - crypto: vmac - separate tfm and request context - - crypto: blkcipher - fix crash flushing dcache in error path - - crypto: ablkcipher - fix crash flushing dcache in error path - - crypto: skcipher - fix aligning block size in skcipher_copy_iv() - - crypto: skcipher - fix crash flushing dcache in error path - - ioremap: Update pgtable free interfaces with addr - - x86/mm: Add TLB purge to free pmd/pte page interfaces - - Linux 4.18.2 - - * Cosmic update to v4.18.2 stable release (LP: #1788452) // CVE-2018-9363 - - Bluetooth: hidp: buffer overflow in hidp_process_report - - * linux-cloud-tools-common: Ensure hv-kvp-daemon.service starts before - walinuxagent.service (LP: #1739107) - - [Debian] hyper-v -- Ensure that hv-kvp-daemon.service starts before - walinuxagent.service - - * Miscellaneous Ubuntu changes - - SAUCE: ipvs: remove nbsp characters from Kconfig - - [Config] CONFIG_MPROFILE_KERNEL=y for ppc64el - - [Config] CONFIG_DRM_RCAR_LVDS=m for snapdragon - - [Config] CONFIG_MDIO_MSCC_MIIM=n for s390x - - [Config] CONFIG_NET_VENDOR_MICROSEMI=n, CONFIG_NET_VENDOR_NI=n for s390x - - [Config] update annotations following config review - - [Debian] set CROSS_COMPILE when generating kernel configs - - [Config] Disable the Speck cipher - - -- Seth Forshee Fri, 24 Aug 2018 14:18:15 -0500 - -linux (4.18.0-5.6) cosmic; urgency=medium - - * Cosmic update to v4.18.1 stable release (LP: #1787264) - - x86/paravirt: Fix spectre-v2 mitigations for paravirt guests - - x86/speculation: Protect against userspace-userspace spectreRSB - - kprobes/x86: Fix %p uses in error messages - - x86/irqflags: Provide a declaration for native_save_fl - - x86/speculation/l1tf: Increase 32bit PAE __PHYSICAL_PAGE_SHIFT - - x86/speculation/l1tf: Change order of offset/type in swap entry - - x86/speculation/l1tf: Protect swap entries against L1TF - - x86/speculation/l1tf: Protect PROT_NONE PTEs against speculation - - x86/speculation/l1tf: Make sure the first page is always reserved - - x86/speculation/l1tf: Add sysfs reporting for l1tf - - x86/speculation/l1tf: Disallow non privileged high MMIO PROT_NONE mappings - - x86/speculation/l1tf: Limit swap file size to MAX_PA/2 - - x86/bugs: Move the l1tf function and define pr_fmt properly - - sched/smt: Update sched_smt_present at runtime - - x86/smp: Provide topology_is_primary_thread() - - x86/topology: Provide topology_smt_supported() - - cpu/hotplug: Make bringup/teardown of smp threads symmetric - - cpu/hotplug: Split do_cpu_down() - - cpu/hotplug: Provide knobs to control SMT - - x86/cpu: Remove the pointless CPU printout - - x86/cpu/AMD: Remove the pointless detect_ht() call - - x86/cpu/common: Provide detect_ht_early() - - x86/cpu/topology: Provide detect_extended_topology_early() - - x86/cpu/intel: Evaluate smp_num_siblings early - - x86/CPU/AMD: Do not check CPUID max ext level before parsing SMP info - - x86/cpu/AMD: Evaluate smp_num_siblings early - - x86/apic: Ignore secondary threads if nosmt=force - - x86/speculation/l1tf: Extend 64bit swap file size limit - - x86/cpufeatures: Add detection of L1D cache flush support. - - x86/CPU/AMD: Move TOPOEXT reenablement before reading smp_num_siblings - - x86/speculation/l1tf: Protect PAE swap entries against L1TF - - x86/speculation/l1tf: Fix up pte->pfn conversion for PAE - - Revert "x86/apic: Ignore secondary threads if nosmt=force" - - cpu/hotplug: Boot HT siblings at least once - - x86/KVM: Warn user if KVM is loaded SMT and L1TF CPU bug being present - - x86/KVM/VMX: Add module argument for L1TF mitigation - - x86/KVM/VMX: Add L1D flush algorithm - - x86/KVM/VMX: Add L1D MSR based flush - - x86/KVM/VMX: Add L1D flush logic - - x86/KVM/VMX: Split the VMX MSR LOAD structures to have an host/guest numbers - - x86/KVM/VMX: Add find_msr() helper function - - x86/KVM/VMX: Separate the VMX AUTOLOAD guest/host number accounting - - x86/KVM/VMX: Extend add_atomic_switch_msr() to allow VMENTER only MSRs - - x86/KVM/VMX: Use MSR save list for IA32_FLUSH_CMD if required - - cpu/hotplug: Online siblings when SMT control is turned on - - x86/litf: Introduce vmx status variable - - x86/kvm: Drop L1TF MSR list approach - - x86/l1tf: Handle EPT disabled state proper - - x86/kvm: Move l1tf setup function - - x86/kvm: Add static key for flush always - - x86/kvm: Serialize L1D flush parameter setter - - x86/kvm: Allow runtime control of L1D flush - - cpu/hotplug: Expose SMT control init function - - cpu/hotplug: Set CPU_SMT_NOT_SUPPORTED early - - x86/bugs, kvm: Introduce boot-time control of L1TF mitigations - - Documentation: Add section about CPU vulnerabilities - - x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures - - x86/KVM/VMX: Initialize the vmx_l1d_flush_pages' content - - Documentation/l1tf: Fix typos - - cpu/hotplug: detect SMT disabled by BIOS - - x86/KVM/VMX: Don't set l1tf_flush_l1d to true from vmx_l1d_flush() - - x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond' - - x86/KVM/VMX: Move the l1tf_flush_l1d test to vmx_l1d_flush() - - x86/irq: Demote irq_cpustat_t::__softirq_pending to u16 - - x86/KVM/VMX: Introduce per-host-cpu analogue of l1tf_flush_l1d - - x86: Don't include linux/irq.h from asm/hardirq.h - - x86/irq: Let interrupt handlers set kvm_cpu_l1tf_flush_l1d - - x86/KVM/VMX: Don't set l1tf_flush_l1d from vmx_handle_external_intr() - - Documentation/l1tf: Remove Yonah processors from not vulnerable list - - x86/speculation: Simplify sysfs report of VMX L1TF vulnerability - - x86/speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry - - KVM: VMX: Tell the nested hypervisor to skip L1D flush on vmentry - - cpu/hotplug: Fix SMT supported evaluation - - x86/speculation/l1tf: Invert all not present mappings - - x86/speculation/l1tf: Make pmd/pud_mknotpresent() invert - - x86/mm/pat: Make set_memory_np() L1TF safe - - x86/mm/kmmio: Make the tracer robust against L1TF - - tools headers: Synchronise x86 cpufeatures.h for L1TF additions - - x86/microcode: Allow late microcode loading with SMT disabled - - x86/smp: fix non-SMP broken build due to redefinition of - apic_id_is_primary_thread - - cpu/hotplug: Non-SMP machines do not make use of booted_once - - x86/init: fix build with CONFIG_SWAP=n - - Linux 4.18.1 - - [Config] updateconfigs after v4.18.1 stable update - - * Consider enabling CONFIG_NETWORK_PHY_TIMESTAMPING (LP: #1785816) - - [Config] Enable timestamping in network PHY devices - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_SYSCTL_SYSCALL=n - - [ Upstream Kernel Changes ] - - * Rebase to v4.18 - - -- Seth Forshee Wed, 15 Aug 2018 14:20:59 -0500 - -linux (4.18.0-4.5) cosmic; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v4.18-rc8 - - -- Seth Forshee Mon, 06 Aug 2018 13:54:02 -0500 - -linux (4.18.0-3.4) cosmic; urgency=medium - - * Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and - Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47) (LP: #1774950) - - ACPI / LPSS: Avoid PM quirks on suspend and resume from hibernation - - * hinic interfaces aren't getting predictable names (LP: #1783138) - - hinic: Link the logical network device to the pci device in sysfs - - * libvirtd is unable to configure bridge devices inside of LXD containers - (LP: #1784501) - - kernfs: allow creating kernfs objects with arbitrary uid/gid - - sysfs, kobject: allow creating kobject belonging to arbitrary users - - kobject: kset_create_and_add() - fetch ownership info from parent - - driver core: set up ownership of class devices in sysfs - - net-sysfs: require net admin in the init ns for setting tx_maxrate - - net-sysfs: make sure objects belong to container's owner - - net: create reusable function for getting ownership info of sysfs inodes - - bridge: make sure objects belong to container's owner - - sysfs: Fix regression when adding a file to an existing group - - * locking sockets broken due to missing AppArmor socket mediation patches - (LP: #1780227) - - UBUNTU SAUCE: apparmor: fix apparmor mediating locking non-fs, unix sockets - - * Update2 for ocxl driver (LP: #1781436) - - ocxl: Fix page fault handler in case of fault on dying process - - * HDMI/DP audio can't work on the laptop of Dell Latitude 5495 (LP: #1782689) - - ALSA: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA - - vga_switcheroo: set audio client id according to bound GPU id - - * Allow Raven Ridge's audio controller to be runtime suspended (LP: #1782540) - - ALSA: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge - - * Invoking obsolete 'firmware_install' target breaks snap build (LP: #1782166) - - snapcraft.yaml: stop invoking the obsolete (and non-existing) - 'firmware_install' target - - * snapcraft.yaml: missing ubuntu-retpoline-extract-one script breaks the build - (LP: #1782116) - - snapcraft.yaml: copy retpoline-extract-one to scripts before build - - [ Upstream Kernel Changes ] - - * Rebase to v4.18-rc7 - - -- Seth Forshee Wed, 01 Aug 2018 08:49:40 -0500 - -linux (4.18.0-2.3) cosmic; urgency=medium - - * Kernel error "task zfs:pid blocked for more than 120 seconds" (LP: #1781364) - - SAUCE: (noup) zfs to 0.7.9-3ubuntu4 - - * [Regression] EXT4-fs error (device sda1): ext4_validate_inode_bitmap:99: - comm stress-ng: Corrupt inode bitmap (LP: #1780137) - - SAUCE: ext4: fix ext4_validate_inode_bitmap: comm stress-ng: Corrupt inode - bitmap - - * Cloud-init causes potentially huge boot delays with 4.15 kernels - (LP: #1780062) - - random: Make getrandom() ready earlier - - * hisi_sas_v3_hw: internal task abort: timeout and not done. (LP: #1777736) - - scsi: hisi_sas: Update a couple of register settings for v3 hw - - * hisi_sas: Add missing PHY spinlock init (LP: #1777734) - - scsi: hisi_sas: Add missing PHY spinlock init - - * hisi_sas: improve read performance by pre-allocating slot DMA buffers - (LP: #1777727) - - scsi: hisi_sas: Use dmam_alloc_coherent() - - scsi: hisi_sas: Pre-allocate slot DMA buffers - - * hisi_sas: Failures during host reset (LP: #1777696) - - scsi: hisi_sas: Only process broadcast change in phy_bcast_v3_hw() - - scsi: hisi_sas: Fix the conflict between dev gone and host reset - - scsi: hisi_sas: Adjust task reject period during host reset - - scsi: hisi_sas: Add a flag to filter PHY events during reset - - scsi: hisi_sas: Release all remaining resources in clear nexus ha - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.7.9-3ubuntu2, zfs to 0.7.9-3ubuntu3 - - SAUCE: mm: Fix exports that inadvertently make put_page() EXPORT_SYMBOL_GPL - - Enable zfs build - - SAUCE: Import aufs driver - - Revert "UBUNTU: [Config]: set CONFIG_EDAC_DEBUG=y for ARM64" - - [Config] retpoline -- review and accept retpoline changes - - [ Upstream Kernel Changes ] - - * Rebase to v4.18-rc5 - * Rebase to v4.18-rc6 - - -- Seth Forshee Tue, 24 Jul 2018 08:41:22 -0500 - -linux (4.18.0-1.2) cosmic; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v4.18-rc4 - - -- Seth Forshee Mon, 09 Jul 2018 07:36:31 -0500 - -linux (4.18.0-0.1) cosmic; urgency=medium - - * Miscellaneous Ubuntu changes - - ubuntu -- disable vbox build - - Disable zfs build - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown - - SAUCE: (efi-lockdown) ima: require secure_boot rules in lockdown mode - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is - locked down - - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked - down - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Lock down module params that specify hardware - parameters (eg. ioport) - - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module - - SAUCE: (efi-lockdown) Lock down /proc/kcore - - SAUCE: (efi-lockdown) Lock down kprobes - - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the - kernel is locked down - - SAUCE: (efi-lockdown) Lock down perf - - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked - down - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to - secondary keyring - - SAUCE: (efi-lockdown) efi: Add EFI signature data types - - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser - - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot - - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed - - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists - that aren't present. - - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework - efi_status_to_err(). - - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print - error messages. - - SAUCE: (efi-lockdown) lockdown: fix coordination of kernel module signature - verification - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub - - SAUCE: (namespace) block_dev: Support checking inode permissions in - lookup_bdev() - - SAUCE: (namespace) block_dev: Check permissions towards block device inode - when mounting - - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode - when mounting - - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user - namespaces - - SAUCE: (namespace) ext4: Add module parameter to enable user namespace - mounts - - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is - opened for writing - - SAUCE: Import aufs driver - - Update dropped.txt - - [Config] updateconfigs after 4.18-rc3 rebase - - SAUCE: (no-up): ASoC: Intel: bytcr-rt5660: Remove snd_soc_codec use for 4.18 - - [ Upstream Kernel Changes ] - - * Rebase to v4.18-rc3 - - -- Seth Forshee Fri, 06 Jul 2018 10:46:37 -0500 - -linux (4.18.0-0.0) cosmic; urgency=medium - - * Dummy entry. - - -- Seth Forshee Tue, 03 Jul 2018 11:10:33 -0500 - -linux (4.17.0-4.5) cosmic; urgency=medium - - * linux: 4.17.0-4.5 -proposed tracker (LP: #1779399) - - * Update to ocxl driver for 18.04.1 (LP: #1775786) - - powerpc: Add TIDR CPU feature for POWER9 - - powerpc: Use TIDR CPU feature to control TIDR allocation - - powerpc: use task_pid_nr() for TID allocation - - ocxl: Rename pnv_ocxl_spa_remove_pe to clarify it's action - - ocxl: Expose the thread_id needed for wait on POWER9 - - ocxl: Add an IOCTL so userspace knows what OCXL features are available - - ocxl: Document new OCXL IOCTLs - - ocxl: Fix missing unlock on error in afu_ioctl_enable_p9_wait() - - * Please include ax88179_178a and r8152 modules in d-i udeb (LP: #1771823) - - [Config:] d-i: Add ax88179_178a and r8152 to nic-modules - - * glibc pkeys test fail on powerpc (LP: #1776967) - - [Config] Temporarily disable CONFIG_PPC_MEM_KEYS - - * After update to 4.13-43 Intel Graphics are Laggy (LP: #1773520) - - Revert "drm/i915/edp: Allow alternate fixed mode for eDP if available." - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.7.9-3ubuntu1, zfs to 0.7.9-3ubuntu1 - - -- Seth Forshee Fri, 29 Jun 2018 13:37:52 -0500 - -linux (4.17.0-3.4) cosmic; urgency=medium - - * linux: 4.17.0-3.4 -proposed tracker (LP: #1779124) - - * Cosmic update to v4.17.3 stable release (LP: #1778997) - - net: aquantia: fix unsigned numvecs comparison with less than zero - - bonding: re-evaluate force_primary when the primary slave name changes - - cdc_ncm: avoid padding beyond end of skb - - ipv6: allow PMTU exceptions to local routes - - net: dsa: add error handling for pskb_trim_rcsum - - net: phy: dp83822: use BMCR_ANENABLE instead of BMSR_ANEGCAPABLE for DP83620 - - net/sched: act_simple: fix parsing of TCA_DEF_DATA - - tcp: verify the checksum of the first data segment in a new connection - - tls: fix use-after-free in tls_push_record - - tls: fix waitall behavior in tls_sw_recvmsg - - socket: close race condition between sock_close() and sockfs_setattr() - - udp: fix rx queue len reported by diag and proc interface - - net: in virtio_net_hdr only add VLAN_HLEN to csum_start if payload holds - vlan - - hv_netvsc: Fix a network regression after ifdown/ifup - - ACPICA: AML parser: attempt to continue loading table after error - - ext4: fix hole length detection in ext4_ind_map_blocks() - - ext4: update mtime in ext4_punch_hole even if no blocks are released - - ext4: do not allow external inodes for inline data - - ext4: bubble errors from ext4_find_inline_data_nolock() up to ext4_iget() - - ext4: correctly handle a zero-length xattr with a non-zero e_value_offs - - ext4: fix fencepost error in check for inode count overflow during resize - - driver core: Don't ignore class_dir_create_and_add() failure. - - Btrfs: allow empty subvol= again - - Btrfs: fix clone vs chattr NODATASUM race - - Btrfs: fix memory and mount leak in btrfs_ioctl_rm_dev_v2() - - btrfs: return error value if create_io_em failed in cow_file_range - - btrfs: scrub: Don't use inode pages for device replace - - ALSA: usb-audio: Disable the quirk for Nura headset - - ALSA: hda/conexant - Add fixup for HP Z2 G4 workstation - - ALSA: hda - Handle kzalloc() failure in snd_hda_attach_pcm_stream() - - ALSA: hda: add dock and led support for HP EliteBook 830 G5 - - ALSA: hda: add dock and led support for HP ProBook 640 G4 - - x86/MCE: Fix stack out-of-bounds write in mce-inject.c: Flags_read() - - smb3: fix various xid leaks - - smb3: on reconnect set PreviousSessionId field - - CIFS: 511c54a2f69195b28afb9dd119f03787b1625bb4 adds a check for session - expiry - - cifs: For SMB2 security informaion query, check for minimum sized security - descriptor instead of sizeof FileAllInformation class - - nbd: fix nbd device deletion - - nbd: update size when connected - - nbd: use bd_set_size when updating disk size - - blk-mq: reinit q->tag_set_list entry only after grace period - - bdi: Move cgroup bdi_writeback to a dedicated low concurrency workqueue - - cpufreq: Fix new policy initialization during limits updates via sysfs - - cpufreq: ti-cpufreq: Fix an incorrect error return value - - cpufreq: governors: Fix long idle detection logic in load calculation - - libata: zpodd: small read overflow in eject_tray() - - libata: Drop SanDisk SD7UB3Q*G1001 NOLPM quirk - - nvme/pci: Sync controller reset for AER slot_reset - - w1: mxc_w1: Enable clock before calling clk_get_rate() on it - - x86/vector: Fix the args of vector_alloc tracepoint - - x86/apic/vector: Prevent hlist corruption and leaks - - x86/apic: Provide apic_ack_irq() - - x86/ioapic: Use apic_ack_irq() - - x86/platform/uv: Use apic_ack_irq() - - irq_remapping: Use apic_ack_irq() - - genirq/generic_pending: Do not lose pending affinity update - - genirq/affinity: Defer affinity setting if irq chip is busy - - genirq/migration: Avoid out of line call if pending is not set - - x86/intel_rdt: Enable CMT and MBM on new Skylake stepping - - media: uvcvideo: Prevent setting unavailable flags - - media: rc: ensure input/lirc device can be opened after register - - iwlwifi: fw: harden page loading code - - orangefs: set i_size on new symlink - - orangefs: report attributes_mask and attributes for statx - - HID: intel_ish-hid: ipc: register more pm callbacks to support hibernation - - HID: wacom: Correct logical maximum Y for 2nd-gen Intuos Pro large - - vhost: fix info leak due to uninitialized memory - - mm, page_alloc: do not break __GFP_THISNODE by zonelist reset - - Linux 4.17.3 - - * Use-after-free in sk_peer_label (LP: #1778646) - - SAUCE: apparmor: fix use after free in sk_peer_label - - * kernel: Fix memory leak on CCA and EP11 CPRB processing. (LP: #1775390) - - s390/zcrypt: Fix CCA and EP11 CPRB processing failure memory leak. - - * Various fixes for CXL kernel module (LP: #1774471) - - cxl: Configure PSL to not use APC virtual machines - - cxl: Disable prefault_mode in Radix mode - - * Bluetooth not working (LP: #1764645) - - Bluetooth: btusb: Apply QCA Rome patches for some ATH3012 models - - * Fake SAS addresses for SATA disks on HiSilicon D05 are non-unique - (LP: #1776750) - - scsi: hisi_sas: make SAS address of SATA disks unique - - * linux-snapdragon: wcn36xx: mac address generation on boot (LP: #1776491) - - [Config] arm64: snapdragon: WCN36XX_SNAPDRAGON_HACKS=y - - SAUCE: wcn36xx: read MAC from file or randomly generate one - - * Lenovo V330 needs patch in ideapad_laptop module for rfkill (LP: #1774636) - - SAUCE: Add Lenovo V330 to the ideapad_laptop rfkill blacklist - - * register on binfmt_misc may overflow and crash the system (LP: #1775856) - - fs/binfmt_misc.c: do not allow offset overflow - - * Network installs fail on SocioNext board (LP: #1775884) - - net: socionext: reset hardware in ndo_stop - - net: netsec: enable tx-irq during open callback - - * Fix several bugs in RDMA/hns driver (LP: #1770974) - - RDMA/hns: Drop local zgid in favor of core defined variable - - RDMA/hns: Add 64KB page size support for hip08 - - RDMA/hns: Rename the idx field of db - - RDMA/hns: Modify uar allocation algorithm to avoid bitmap exhaust - - RDMA/hns: Increase checking CMQ status timeout value - - RDMA/hns: Add reset process for RoCE in hip08 - - RDMA/hns: Fix the illegal memory operation when cross page - - RDMA/hns: Implement the disassociate_ucontext API - - * powerpc/livepatch: Implement reliable stack tracing for the consistency - model (LP: #1771844) - - powerpc/livepatch: Implement reliable stack tracing for the consistency - model - - * Adding back alx WoL feature (LP: #1772610) - - SAUCE: Revert "alx: remove WoL support" - - SAUCE: alx: add enable_wol paramenter - - * Lancer A0 Asic HBA's won't boot with 18.04 (LP: #1768103) - - scsi: lpfc: Fix WQ/CQ creation for older asic's. - - scsi: lpfc: Fix 16gb hbas failing cq create. - - * [LTCTest][OPAL][OP920] cpupower idle-info is not listing stop4 and stop5 - idle states when all CORES are guarded (LP: #1771780) - - powerpc/powernv/cpuidle: Init all present cpus for deep states - - * Huawei 25G/100G Network Adapters Unsupported (LP: #1770970) - - net-next/hinic: add pci device ids for 25ge and 100ge card - - * Expose arm64 CPU topology to userspace (LP: #1770231) - - drivers: base: cacheinfo: move cache_setup_of_node() - - drivers: base: cacheinfo: setup DT cache properties early - - cacheinfo: rename of_node to fw_token - - arm64/acpi: Create arch specific cpu to acpi id helper - - ACPI/PPTT: Add Processor Properties Topology Table parsing - - [Config] CONFIG_ACPI_PPTT=y - - ACPI: Enable PPTT support on ARM64 - - drivers: base cacheinfo: Add support for ACPI based firmware tables - - arm64: Add support for ACPI based firmware tables - - arm64: topology: rename cluster_id - - arm64: topology: enable ACPI/PPTT based CPU topology - - ACPI: Add PPTT to injectable table list - - arm64: topology: divorce MC scheduling domain from core_siblings - - * Vcs-Git header on bionic linux source package points to zesty git tree - (LP: #1766055) - - [Packaging]: Update Vcs-Git - - * Request to revert SAUCE patches in the 18.04 SRU and update with upstream - version (LP: #1768431) - - scsi: cxlflash: Handle spurious interrupts - - scsi: cxlflash: Remove commmands from pending list on timeout - - scsi: cxlflash: Synchronize reset and remove ops - - SAUCE: (no-up) cxlflash: OCXL diff between v2 and v3 - - * hisi_sas robustness fixes (LP: #1774466) - - scsi: hisi_sas: delete timer when removing hisi_sas driver - - scsi: hisi_sas: print device id for errors - - scsi: hisi_sas: Add some checks to avoid free'ing a sas_task twice - - scsi: hisi_sas: check host frozen before calling "done" function - - scsi: hisi_sas: check sas_dev gone earlier in hisi_sas_abort_task() - - scsi: hisi_sas: stop controller timer for reset - - scsi: hisi_sas: update PHY linkrate after a controller reset - - scsi: hisi_sas: change slot index allocation mode - - scsi: hisi_sas: Change common allocation mode of device id - - scsi: hisi_sas: Reset disks when discovered - - scsi: hisi_sas: Create a scsi_host_template per HW module - - scsi: hisi_sas: Init disks after controller reset - - scsi: hisi_sas: Try wait commands before before controller reset - - scsi: hisi_sas: Include TMF elements in struct hisi_sas_slot - - scsi: hisi_sas: Add v2 hw force PHY function for internal ATA command - - scsi: hisi_sas: Terminate STP reject quickly for v2 hw - - scsi: hisi_sas: Fix return value when get_free_slot() failed - - scsi: hisi_sas: Mark PHY as in reset for nexus reset - - * hisi_sas: Support newer v3 hardware (LP: #1774467) - - scsi: hisi_sas: update RAS feature for later revision of v3 HW - - scsi: hisi_sas: check IPTT is valid before using it for v3 hw - - scsi: hisi_sas: fix PI memory size - - scsi: hisi_sas: config ATA de-reset as an constrained command for v3 hw - - scsi: hisi_sas: remove redundant handling to event95 for v3 - - scsi: hisi_sas: add readl poll timeout helper wrappers - - scsi: hisi_sas: workaround a v3 hw hilink bug - - scsi: hisi_sas: Add LED feature for v3 hw - - * hisi_sas: improve performance by optimizing DQ locking (LP: #1774472) - - scsi: hisi_sas: optimise the usage of DQ locking - - scsi: hisi_sas: relocate smp sg map - - scsi: hisi_sas: make return type of prep functions void - - scsi: hisi_sas: allocate slot buffer earlier - - scsi: hisi_sas: Don't lock DQ for complete task sending - - scsi: hisi_sas: Use device lock to protect slot alloc/free - - scsi: hisi_sas: add check of device in hisi_sas_task_exec() - - scsi: hisi_sas: fix a typo in hisi_sas_task_prep() - - * FS-Cache: Assertion failed: FS-Cache: 6 == 5 is false (LP: #1774336) - - SAUCE: CacheFiles: fix a read_waiter/read_copier race - - * enable mic-mute hotkey and led on Lenovo M820z and M920z (LP: #1774306) - - ALSA: hda/realtek - Enable mic-mute hotkey for several Lenovo AIOs - - * hns3 driver updates (LP: #1768670) - - net: hns3: Remove error log when getting pfc stats fails - - net: hns3: fix to correctly fetch l4 protocol outer header - - net: hns3: Fixes the out of bounds access in hclge_map_tqp - - net: hns3: Fixes the error legs in hclge_init_ae_dev function - - net: hns3: fix for phy_addr error in hclge_mac_mdio_config - - net: hns3: Fix to support autoneg only for port attached with phy - - net: hns3: fix a dead loop in hclge_cmd_csq_clean - - net: hns3: Fix for packet loss due wrong filter config in VLAN tbls - - net: hns3: Remove packet statistics in the range of 8192~12287 - - net: hns3: Add support of hardware rx-vlan-offload to HNS3 VF driver - - net: hns3: Fix for setting mac address when resetting - - net: hns3: remove add/del_tunnel_udp in hns3_enet module - - net: hns3: fix for cleaning ring problem - - net: hns3: refactor the loopback related function - - net: hns3: Fix for deadlock problem occurring when unregistering ae_algo - - net: hns3: Fix for the null pointer problem occurring when initializing - ae_dev failed - - net: hns3: Add a check for client instance init state - - net: hns3: Change return type of hnae3_register_ae_dev - - net: hns3: Change return type of hnae3_register_ae_algo - - net: hns3: Change return value in hnae3_register_client - - net: hns3: Fixes the back pressure setting when sriov is enabled - - net: hns3: Fix for fiber link up problem - - net: hns3: Add support of .sriov_configure in HNS3 driver - - net: hns3: Fixes the missing PCI iounmap for various legs - - net: hns3: Fixes error reported by Kbuild and internal review - - net: hns3: Fixes API to fetch ethernet header length with kernel default - - net: hns3: cleanup of return values in hclge_init_client_instance() - - net: hns3: Fix the missing client list node initialization - - net: hns3: Fix for hns3 module is loaded multiple times problem - - net: hns3: Use enums instead of magic number in hclge_is_special_opcode - - net: hns3: Fix for netdev not running problem after calling net_stop and - net_open - - net: hns3: Fixes kernel panic issue during rmmod hns3 driver - - net: hns3: Fix for CMDQ and Misc. interrupt init order problem - - net: hns3: Updates RX packet info fetch in case of multi BD - - net: hns3: Add support for tx_accept_tag2 and tx_accept_untag2 config - - net: hns3: Add STRP_TAGP field support for hardware revision 0x21 - - net: hns3: Add support to enable TX/RX promisc mode for H/W rev(0x21) - - net: hns3: Fix for PF mailbox receving unknown message - - net: hns3: Fixes the state to indicate client-type initialization - - net: hns3: Fixes the init of the VALID BD info in the descriptor - - net: hns3: Removes unnecessary check when clearing TX/RX rings - - net: hns3: Clear TX/RX rings when stopping port & un-initializing client - - net: hns3: Remove unused led control code - - net: hns3: Adds support for led locate command for copper port - - net: hns3: Fixes initalization of RoCE handle and makes it conditional - - net: hns3: Disable vf vlan filter when vf vlan table is full - - net: hns3: Add support for IFF_ALLMULTI flag - - net: hns3: Add repeat address checking for setting mac address - - net: hns3: Fix setting mac address error - - net: hns3: Fix for service_task not running problem after resetting - - net: hns3: Fix for hclge_reset running repeatly problem - - net: hns3: Fix for phy not link up problem after resetting - - net: hns3: Add missing break in misc_irq_handle - - net: hns3: Fix for vxlan tx checksum bug - - net: hns3: Optimize the PF's process of updating multicast MAC - - net: hns3: Optimize the VF's process of updating multicast MAC - - SAUCE: {topost} net: hns3: add support for serdes loopback selftest - - SAUCE: {topost} net: hns3: RX BD information valid only in last BD except - VLD bit and buffer size - - SAUCE: {topost} net: hns3: remove hclge_get_vector_index from - hclge_bind_ring_with_vector - - SAUCE: {topost} net: hns3: rename the interface for init_client_instance and - uninit_client_instance - - SAUCE: {topost} net: hns3: add vector status check before free vector - - SAUCE: {topost} net: hns3: add l4_type check for both ipv4 and ipv6 - - SAUCE: {topost} net: hns3: remove unused head file in hnae3.c - - SAUCE: {topost} net: hns3: extraction an interface for state state - init|uninit - - SAUCE: {topost} net: hns3: print the ret value in error information - - SAUCE: {topost} net: hns3: remove the Redundant put_vector in - hns3_client_uninit - - SAUCE: {topost} net: hns3: add unlikely for error check - - SAUCE: {topost} net: hns3: remove back in struct hclge_hw - - SAUCE: {topost} net: hns3: use lower_32_bits and upper_32_bits - - SAUCE: {topost} net: hns3: remove unused hclge_ring_to_dma_dir - - SAUCE: {topost} net: hns3: remove useless code in hclge_cmd_send - - SAUCE: {topost} net: hns3: remove some redundant assignments - - SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean - - SAUCE: {topost} net: hns3: using modulo for cyclic counters in - hclge_cmd_send - - SAUCE: {topost} net: hns3: remove a redundant hclge_cmd_csq_done - - SAUCE: {topost} net: hns3: remove some unused members of some structures - - SAUCE: {topost} net: hns3: give default option while dependency HNS3 set - - SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead of - kzalloc/dma_map_single - - SAUCE: {topost} net: hns3: modify hnae_ to hnae3_ - - SAUCE: {topost} net: hns3: fix unused function warning in VF driver - - SAUCE: {topost} net: hns3: remove some redundant assignments - - SAUCE: {topost} net: hns3: standardize the handle of return value - - SAUCE: {topost} net: hns3: remove extra space and brackets - - SAUCE: {topost} net: hns3: fix unreasonable code comments - - SAUCE: {topost} net: hns3: use decimal for bit offset macros - - SAUCE: {topost} net: hns3: modify inconsistent bit mask macros - - SAUCE: {topost} net: hns3: fix mislead parameter name - - SAUCE: {topost} net: hns3: remove unused struct member and definition - - SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver - - SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE - - SAUCE: {topost} net: hns3: optimize the process of notifying roce client - - SAUCE: {topost} net: hns3: Add calling roce callback function when link - status change - - SAUCE: {topost} net: hns3: fix tc setup when netdev is first up - - SAUCE: {topost} net: hns3: fix for mac pause not disable in pfc mode - - SAUCE: {topost} net: hns3: fix for waterline not setting correctly - - SAUCE: {topost} net: hns3: fix for l4 checksum offload bug - - SAUCE: {topost} net: hns3: fix for mailbox message truncated problem - - SAUCE: {topost} net: hns3: Add configure for mac minimal frame size - - SAUCE: {topost} net: hns3: fix warning bug when doing lp selftest - - SAUCE: {topost} net: hns3: fix get_vector ops in hclgevf_main module - - SAUCE: {topost} net: hns3: remove the warning when clear reset cause - - SAUCE: {topost} net: hns3: Use roce handle when calling roce callback - function - - SAUCE: {topost} net: hns3: prevent sending command during global or core - reset - - SAUCE: {topost} net: hns3: modify the order of initializeing command queue - register - - SAUCE: {topost} net: hns3: reset net device with rtnl_lock - - SAUCE: {topost} net: hns3: prevent to request reset frequently - - SAUCE: {topost} net: hns3: correct reset event status register - - SAUCE: {topost} net: hns3: separate roce from nic when resetting - - SAUCE: net: hns3: Fix for phy link issue when using marvell phy driver - - SAUCE: {topost} net: hns3: fix return value error in - hns3_reset_notify_down_enet - - SAUCE: {topost} net: hns3: remove unnecessary ring configuration operation - while resetting - - SAUCE: {topost} net: hns3: fix for reset_level default assignment probelm - - SAUCE: {topost} net: hns3: fix for using wrong mask and shift in - hclge_get_ring_chain_from_mbx - - SAUCE: {topost} net: hns3: fix comments for hclge_get_ring_chain_from_mbx - - SAUCE: net: hns3: Fix for VF mailbox cannot receiving PF response - - SAUCE: net: hns3: Fix for VF mailbox receiving unknown message - - SAUCE: net: hns3: Optimize PF CMDQ interrupt switching process - - * CVE-2018-7755 - - SAUCE: floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl - - * Incorrect blacklist of bcm2835_wdt (LP: #1766052) - - [Packaging] Fix missing watchdog for Raspberry Pi - - * kernel: Fix arch random implementation (LP: #1775391) - - s390/archrandom: Rework arch random implementation. - - * [Ubuntu 1804][boston][ixgbe] EEH causes kernel BUG at /build/linux- - jWa1Fv/linux-4.15.0/drivers/pci/msi.c:352 (i2S) (LP: #1776389) - - ixgbe/ixgbevf: Free IRQ when PCI error recovery removes the device - - * Cosmic update to v4.17.2 stable release (LP: #1779117) - - crypto: chelsio - request to HW should wrap - - blkdev_report_zones_ioctl(): Use vmalloc() to allocate large buffers - - KVM: X86: Fix reserved bits check for MOV to CR3 - - KVM: x86: introduce linear_{read,write}_system - - kvm: fix typo in flag name - - kvm: nVMX: Enforce cpl=0 for VMX instructions - - KVM: x86: pass kvm_vcpu to kvm_read_guest_virt and - kvm_write_guest_virt_system - - kvm: x86: use correct privilege level for sgdt/sidt/fxsave/fxrstor access - - staging: android: ion: Switch to pr_warn_once in ion_buffer_destroy - - NFC: pn533: don't send USB data off of the stack - - usbip: vhci_sysfs: fix potential Spectre v1 - - usb-storage: Add support for FL_ALWAYS_SYNC flag in the UAS driver - - usb-storage: Add compatibility quirk flags for G-Technologies G-Drive - - Input: xpad - add GPD Win 2 Controller USB IDs - - phy: qcom-qusb2: Fix crash if nvmem cell not specified - - usb: core: message: remove extra endianness conversion in - usb_set_isoch_delay - - usb: typec: wcove: Remove dependency on HW FSM - - usb: gadget: function: printer: avoid wrong list handling in printer_write() - - usb: gadget: udc: renesas_usb3: fix double phy_put() - - usb: gadget: udc: renesas_usb3: should remove debugfs - - usb: gadget: udc: renesas_usb3: should call pm_runtime_enable() before add - udc - - usb: gadget: udc: renesas_usb3: should call devm_phy_get() before add udc - - usb: gadget: udc: renesas_usb3: should fail if devm_phy_get() returns error - - usb: gadget: udc: renesas_usb3: disable the controller's irqs for - reconnecting - - serial: sh-sci: Stop using printk format %pCr - - tty/serial: atmel: use port->name as name in request_irq() - - serial: samsung: fix maxburst parameter for DMA transactions - - serial: 8250: omap: Fix idling of clocks for unused uarts - - vmw_balloon: fixing double free when batching mode is off - - doc: fix sysfs ABI documentation - - arm64: defconfig: Enable CONFIG_PINCTRL_MT7622 by default - - tty: pl011: Avoid spuriously stuck-off interrupts - - crypto: ccree - correct host regs offset - - Input: goodix - add new ACPI id for GPD Win 2 touch screen - - Input: elan_i2c - add ELAN0612 (Lenovo v330 14IKB) ACPI ID - - crypto: caam - strip input zeros from RSA input buffer - - crypto: caam - fix DMA mapping dir for generated IV - - crypto: caam - fix IV DMA mapping and updating - - crypto: caam/qi - fix IV DMA mapping and updating - - crypto: caam - fix size of RSA prime factor q - - crypto: cavium - Fix fallout from CONFIG_VMAP_STACK - - crypto: cavium - Limit result reading attempts - - crypto: vmx - Remove overly verbose printk from AES init routines - - crypto: vmx - Remove overly verbose printk from AES XTS init - - crypto: omap-sham - fix memleak - - Linux 4.17.2 - - * Cosmic update to v4.17.1 stable release (LP: #1779116) - - netfilter: nf_flow_table: attach dst to skbs - - bnx2x: use the right constant - - ip6mr: only set ip6mr_table from setsockopt when ip6mr_new_table succeeds - - ipv6: omit traffic class when calculating flow hash - - l2tp: fix refcount leakage on PPPoL2TP sockets - - netdev-FAQ: clarify DaveM's position for stable backports - - net: metrics: add proper netlink validation - - net/packet: refine check for priv area size - - rtnetlink: validate attributes in do_setlink() - - sctp: not allow transport timeout value less than HZ/5 for hb_timer - - team: use netdev_features_t instead of u32 - - vrf: check the original netdevice for generating redirect - - net: dsa: b53: Fix for brcm tag issue in Cygnus SoC - - ipmr: fix error path when ipmr_new_table fails - - PCI: hv: Do not wait forever on a device that has disappeared - - Linux 4.17.1 - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: SAUCE: crypto: thunderx_zip: Fix fallout from - CONFIG_VMAP_STACK" - - Revert "UBUNTU: SAUCE: cred: Add clone_cred() interface" - - SAUCE: apparmor: userspace queries - - SAUCE: apparmor: patch to provide compatibility with v2.x net rules - - SAUCE: apparmor: af_unix mediation - - -- Seth Forshee Thu, 28 Jun 2018 08:03:32 -0500 - -linux (4.17.0-2.3) cosmic; urgency=medium - - * linux: 4.17.0-2.3 -proposed tracker (LP: #1776276) - - * Miscellaneous Ubuntu changes - - Config: remove IrDA from annotations - - Config: remove scsi drivers from annotations - - Config: remove BT_HCIBTUART from annotations - - Config: pstore zlib support was renamed - - Config: disable NVRAM for armhf on annotations - - Config: Disable VT on s390x - - Config: Update SSB and B43/B44 options - - Config: some options not supported on some arches anymore - - Config: renamed and removed options - - Config: TCG_CRB is required for IMA on ACPI systems - - Config: EXTCON_AXP288 depends on X86 - - Config: CONFIG_FSI depends on OF - - Config: DRM_RCAR_LVDS now depends on DRM - - CONFIG: Allow CONFIG_LEDS_MLXCPLD for i386 - - Config: Enable HINIC on arm64 - - Config: Set PPS and PTP_1588_CLOCK as y - - Config: Some NF_TABLES options are built-in now - - Config: GENERIC_CPU for ppc64el - - Config: KEXEC_FILE=n for s390x - - Config: CRYPTO_DEFLATE is needed by PSTORE_DEFLATE_COMPRESS - - Config: Disable STM32 support - - Config: Enable FORTIFY_SOURCE for armhf - - Config: use STRONG instead of AUTO for CC_STACKPROTECTOR - - [ Upstream Kernel Changes ] - - * Rebase to v4.17 - - -- Thadeu Lima de Souza Cascardo Mon, 11 Jun 2018 15:22:10 -0300 - -linux (4.17.0-1.2) cosmic; urgency=medium - - [ Seth Forshee ] - * [Config] enable EDAC_DEBUG on ARM64 (LP: #1772516) - - [Config]: set CONFIG_EDAC_DEBUG=y for ARM64 - - * Ubuntu 18.04 kernel crashed while in degraded mode (LP: #1770849) - - SAUCE: powerpc/perf: Fix memory allocation for core-imc based on - num_possible_cpus() - - * Integrated Webcam Realtek Integrated_Webcam_HD (0bda:58f4) not working in - DELL XPS 13 9370 with firmware 1.50 (LP: #1763748) - - SAUCE: media: uvcvideo: Support realtek's UVC 1.5 device - - * Switch Build-Depends: transfig to fig2dev (LP: #1770770) - - [Config] update Build-Depends: transfig to fig2dev - - * update-initramfs not adding i915 GuC firmware for Kaby Lake, firmware fails - to load (LP: #1728238) - - Revert "UBUNTU: SAUCE: (no-up) i915: Remove MODULE_FIRMWARE statements for - unreleased firmware" - - * No driver for Huawei network adapters on arm64 (LP: #1769899) - - net-next/hinic: add arm64 support - - * linux-snapdragon: reduce EPROBEDEFER noise during boot (LP: #1768761) - - [Config] snapdragon: DRM_I2C_ADV7511=y - - * Add d-i support for Huawei NICs (LP: #1767490) - - d-i: add hinic to nic-modules udeb - - * Acer Swift sf314-52 power button not managed (LP: #1766054) - - SAUCE: platform/x86: acer-wmi: add another KEY_POWER keycode - - * Include nfp driver in linux-modules (LP: #1768526) - - [Config] Add nfp.ko to generic inclusion list - - * Miscellaneous Ubuntu changes - - SAUCE: Import aufs driver - - [Config] Enable AUFS config options - - SAUCE: (efi-lockdown) Fix for module sig verification - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure - boot mode - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub - - [Config] CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT=y - - SAUCE: (efi-lockdown) really lock down kernel under EFI secure boot - - SAUCE: (noup) Update spl to 0.7.5-1ubuntu3, zfs to 0.7.5-1ubuntu17 - - enable zfs build - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: (efi-lockdown) ima: require secure_boot rules in - lockdown mode" - - Rebased to v4.17-rc6 - - -- Thadeu Lima de Souza Cascardo Tue, 22 May 2018 14:48:13 -0300 - -linux (4.17.0-0.1) bionic; urgency=medium - - [ Upstream Kernel Changes ] - - * Rebase to v4.17-rc4 - - -- Thadeu Lima de Souza Cascardo Tue, 08 May 2018 16:38:51 -0300 - -linux (4.17.0-0.0) bionic; urgency=medium - - * Dummy entry. - - -- Thadeu Lima de Souza Cascardo Fri, 27 Apr 2018 11:01:13 -0300 - -linux (4.16.0-4.5) bionic; urgency=medium - - * [18.04 FEAT] Add kvm_stat from kernel tree (LP: #1734130) - - tools/kvm_stat: Fix python3 syntax - - tools/kvm_stat: Don't use deprecated file() - - tools/kvm_stat: Remove unused function - - [Packaging] Add linux-tools-host package for VM host tools - - [Config] do_tools_host=true for amd64 - - * [Featire] CNL: Enable RAPL support (LP: #1685712) - - powercap: RAPL: Add support for Cannon Lake - - * Bionic update to v4.16.2 stable release (LP: #1763388) - - sparc64: Oracle DAX driver depends on SPARC64 - - arp: fix arp_filter on l3slave devices - - net: dsa: Discard frames from unused ports - - net/ipv6: Increment OUTxxx counters after netfilter hook - - net/sched: fix NULL dereference in the error path of tcf_bpf_init() - - pptp: remove a buggy dst release in pptp_connect() - - sctp: do not leak kernel memory to user space - - sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 - - vlan: also check phy_driver ts_info for vlan's real device - - net: fool proof dev_valid_name() - - ip_tunnel: better validate user provided tunnel names - - ipv6: sit: better validate user provided tunnel names - - ip6_gre: better validate user provided tunnel names - - ip6_tunnel: better validate user provided tunnel names - - vti6: better validate user provided tunnel names - - net_sched: fix a missing idr_remove() in u32_delete_key() - - nfp: use full 40 bits of the NSP buffer address - - Linux 4.16.2 - - * sky2 gigabit ethernet driver sometimes stops working after lid-open resume - from sleep (88E8055) (LP: #1758507) // Bionic update to v4.16.2 stable - release (LP: #1763388) - - sky2: Increase D3 delay to sky2 stops working after suspend - - * Merge the linux-snapdragon kernel into bionic master/snapdragon - (LP: #1763040) - - arm64: defconfig: enable REMOTEPROC - - arm64: defconfig: enable QCOM audio drivers for APQ8016 and DB410c - - kernel: configs; add distro.config - - arm64: configs: enable WCN36xx - - kernel: distro.config: enable debug friendly USB network adpater - - arm64: configs: enable QCOM Venus - - arm64: defconfig: Enable a53/apcs and avs - - arm64: defconfig: enable ondemand governor as default - - arm64: defconfig: enable QCOM_TSENS - - kernel: configs: enable dm_mod and dm_crypt - - Force the SMD regulator driver to be compiled-in - - arm64: defconfig: enable CFG80211_DEFAULT_PS by default - - arm64: configs: enable BT_QCOMSMD - - kernel: configs: add more USB net drivers - - arm64: defconfig: disable ANALOG_TV and DIGITAL_TV - - arm64: configs: Enable camera drivers - - kernel: configs: add freq stat to sysfs - - arm64: defconfig: enable CONFIG_USB_CONFIGFS_F_FS by default - - arm64: defconfig: Enable QRTR features - - kernel: configs: set USB_CONFIG_F_FS in distro.config - - kernel: distro.config: enable 'schedutil' CPUfreq governor - - kernel: distro.config: enable 'fq' and 'fq_codel' qdiscs - - kernel: distro.config: enable 'BBR' TCP congestion algorithm - - arm64: defconfig: enable LEDS_QCOM_LPG - - HACK: drm/msm/iommu: Remove runtime_put calls in map/unmap - - power: avs: Add support for CPR (Core Power Reduction) - - power: avs: cpr: Use raw mem access for qfprom - - power: avs: cpr: fix with new reg_sequence structures - - power: avs: cpr: Register with cpufreq-dt - - regulator: smd: Add floor and corner operations - - PM / OPP: Support adjusting OPP voltages at runtime - - PM / OPP: Drop RCU usage in dev_pm_opp_adjust_voltage() - - PM / OPP: HACK: Allow to set regulator without opp_list - - PM / OPP: Add a helper to get an opp regulator for device - - cpufreq: Add apq8016 to cpufreq-dt-platdev blacklist - - regulator: smd: Allow REGULATOR_QCOM_SMD_RPM=m - - ov5645: I2C address change - - i2c: Add Qualcomm Camera Control Interface driver - - camss: vfe: Skip first four frames from sensor - - camss: Do not register if no cameras are present - - i2c-qcom-cci: Fix run queue completion timeout - - i2c-qcom-cci: Fix I2C address bug - - media: ov5645: Fix I2C address - - drm/bridge/adv7511: Delay clearing of HPD interrupt status - - HACK: drm/msm/adv7511: Don't rely on interrupts for EDID parsing - - leds: Add driver for Qualcomm LPG - - wcn36xx: Fix warning due to duplicate scan_completed notification - - arm64: dts: Add CPR DT node for msm8916 - - arm64: dts: add spmi-regulator nodes - - arm64: dts: msm8916: Add cpufreq support - - arm64: dts: msm8916: Add a shared CPU opp table - - arm64: dts: msm8916: Add cpu cooling maps - - arm64: dts: pm8916: Mark the s2 regulator as always-on - - arm64: dts: qcom: msm8916: Add msm8916 A53 PLL DT node - - arm64: dts: qcom: msm8916: Use the new APCS mailbox driver - - arm64: dts: qcom: msm8916: Add clock properties to the APCS node - - dt-bindings: media: Binding document for Qualcomm Camera Control Interface - driver - - MAINTAINERS: Add Qualcomm Camera Control Interface driver - - DT: leds: Add Qualcomm Light Pulse Generator binding - - arm64: dts: qcom: msm8996: Add mpp and lpg blocks - - arm64: dts: qcom: Add pwm node for pm8916 - - arm64: dts: qcom: Add user LEDs on db820c - - arm64: dts: qcom: Add WiFI/BT LEDs on db820c - - ARM: dts: qcom: Add LPG node to pm8941 - - ARM: dts: qcom: honami: Add LPG node and RGB LED - - arm64: dts: qcom: Add Camera Control Interface support - - arm64: dts: qcom: Add apps_iommu vfe child node - - arm64: dts: qcom: Add camss device node - - arm64: dts: qcom: Add ov5645 device nodes - - arm64: dts: msm8916: Fix camera sensors I2C addresses - - arm: dts: qcom: db410c: Enable PWM signal on MPP4 - - packaging: arm64: add a uboot flavour - part1 - - packaging: arm64: add a uboot flavour - part2 - - packaging: arm64: add a uboot flavour - part3 - - packaging: arm64: add a uboot flavour - part4 - - packaging: arm64: add a uboot flavour - part5 - - packaging: arm64: rename uboot flavour to snapdragon - - [Config] updateconfigs after qcomlt import - - [Config] arm64: snapdragon: COMMON_CLK_QCOM=y - - [Config] arm64: snapdragon: MSM_GCC_8916=y - - [Config] arm64: snapdragon: REGULATOR_FIXED_VOLTAGE=y - - [Config] arm64: snapdragon: PINCTRL_MSM8916=y - - [Config] arm64: snapdragon: HWSPINLOCK_QCOM=y - - [Config] arm64: snapdragon: SPMI=y, SPMI_MSM_PMIC_ARB=y - - [Config] arm64: snapdragon: REGMAP_SPMI=y, PINCTRL_QCOM_SPMI_PMIC=y - - [Config] arm64: snapdragon: REGULATOR_QCOM_SPMI=y - - [Config] arm64: snapdragon: MFD_SPMI_PMIC=y - - [Config] arm64: snapdragon: QCOM_SMEM=y - - [Config] arm64: snapdragon: RPMSG=y, RPMSG_QCOM_SMD=y - - [Config] arm64: snapdragon: QCOM_SMD_RPM=y, REGULATOR_QCOM_SMD_RPM=y - - [Config] arm64: snapdragon: QCOM_CLK_SMD_RPM=y - - [Config] arm64: snapdragon: QCOM_BAM_DMA=y - - [Config] arm64: snapdragon: QCOM_HIDMA=y, QCOM_HIDMA_MGMT=y - - [Config] arm64: snapdragon: QCOM_CPR=y - - [Config] arm64: snapdragon: QCOM_QFPROM=y, QCOM_TSENS=y - - [Config] arm64: snapdragon: MMC_SDHCI=y, MMC_SDHCI_PLTFM=y, MMC_SDHCI_MSM=y - - [Config] turn off DRM_MSM_REGISTER_LOGGING - - [Config] arm64: snapdragon: I2C_QUP=y - - [Config] arm64: snapdragon: SPI_QUP=y - - [Config] arm64: snapdragon: USB_ULPI_BUS=y, PHY_QCOM_USB_HS=y - - [Config] arm64: snapdragon: QCOM_APCS_IPC=y - - [Config] arm64: snapdragon: QCOM_WCNSS_CTRL=y - - [Config] arm64: snapdragon: QCOM_SMSM=y - - [Config] arm64: snapdragon: QCOM_SMP2P=y - - [Config] arm64: snapdragon: DRM_MSM=y - - [Config] arm64: snapdragon: SND_SOC=y - - [Config] arm64: snapdragon: QCOM_WCNSS_PIL=m - - [Config] arm64: snapdragon: INPUT_PM8941_PWRKEY=y - - [Config] arm64: snapdragon: MEDIA_SUBDRV_AUTOSELECT=y, VIDEO_OV5645=m - - [Config] arm64: snapdragon: SND_SOC_APQ8016_SBC=y, SND_SOC_LPASS_APQ8016=y - - [Config] arm64: snapdragon: SND_SOC_MSM8916_WCD_ANALOG=y, - SND_SOC_MSM8916_WCD_DIGITAL=y - - SAUCE: media: ov5645: skip address change if dt addr == default addr - - SAUCE: drm/msm/adv7511: wrap hacks under CONFIG_ADV7511_SNAPDRAGON_HACKS - #ifdefs - - [Config] arm64: snapdragon: ADV7511_SNAPDRAGON_HACKS=y - - [Packaging] fix up snapdragon abi paths - - * LSM stacking patches for bionic (LP: #1763062) - - SAUCE: LSM stacking: procfs: add smack subdir to attrs - - SAUCE: LSM stacking: LSM: Manage credential security blobs - - SAUCE: LSM stacking: LSM: Manage file security blobs - - SAUCE: LSM stacking: LSM: Manage task security blobs - - SAUCE: LSM stacking: LSM: Manage remaining security blobs - - SAUCE: LSM stacking: LSM: General stacking - - SAUCE: LSM stacking: fixup initialize task->security - - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code - - SAUCE: LSM stacking: add support for stacking getpeersec_stream - - SAUCE: LSM stacking: add stacking support to apparmor network hooks - - SAUCE: LSM stacking: fixup apparmor stacking enablement - - SAUCE: LSM stacking: fixup stacking kconfig - - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params - - SAUCE: LSM stacking: provide prctl interface for setting context - - SAUCE: LSM stacking: inherit current display LSM - - SAUCE: LSM stacking: keep an index for each registered LSM - - SAUCE: LSM stacking: verify display LSM - - SAUCE: LSM stacking: provide a way to specify the default display lsm - - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries - - SAUCE: LSM stacking: add /proc//attr/display_lsm - - SAUCE: LSM stacking: add Kconfig to set default display LSM - - SAUCE: LSM stacking: add configs for LSM stacking - - SAUCE: LSM stacking: add apparmor and selinux proc dirs - - SAUCE: LSM stacking: remove procfs context interface - - * linux 4.13.0-13.14 ADT test failure with linux 4.13.0-13.14 - (LP: #1720779) // LSM stacking patches for bionic (LP: #1763062) - - SAUCE: LSM stacking: check for invalid zero sized writes - - * Support cq/rq record doorbell for RDMA on HSilicon hip08 systems - (LP: #1762755) - - RDMA/hns: Support rq record doorbell for the user space - - RDMA/hns: Support cq record doorbell for the user space - - RDMA/hns: Support rq record doorbell for kernel space - - RDMA/hns: Support cq record doorbell for kernel space - - RDMA/hns: Fix cqn type and init resp - - RDMA/hns: Fix init resp when alloc ucontext - - RDMA/hns: Fix cq record doorbell enable in kernel - - * Replace LPC patchset with upstream version (LP: #1762758) - - Revert "UBUNTU: SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver" - - Revert "UBUNTU: SAUCE: HISI LPC: Add ACPI support" - - Revert "UBUNTU: SAUCE: ACPI / scan: do not enumerate Indirect IO host - children" - - Revert "UBUNTU: SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT - bindings" - - Revert "UBUNTU: SAUCE: OF: Add missing I/O range exception for indirect-IO - devices" - - Revert "UBUNTU: SAUCE: PCI: Apply the new generic I/O management on PCI IO - hosts" - - Revert "UBUNTU: SAUCE: PCI: Add fwnode handler as input param of - pci_register_io_range()" - - Revert "UBUNTU: SAUCE: PCI: Remove unused __weak attribute in - pci_register_io_range()" - - Revert "UBUNTU: SAUCE: LIB: Introduce a generic PIO mapping method" - - lib: Add generic PIO mapping method - - PCI: Remove __weak tag from pci_register_io_range() - - PCI: Add fwnode handler as input param of pci_register_io_range() - - PCI: Apply the new generic I/O management on PCI IO hosts - - of: Add missing I/O range exception for indirect-IO devices - - HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings - - ACPI / scan: Rename acpi_is_serial_bus_slave() for more general use - - ACPI / scan: Do not enumerate Indirect IO host children - - HISI LPC: Add ACPI support - - MAINTAINERS: Add John Garry as maintainer for HiSilicon LPC driver - - * Enable Tunneled Operations on POWER9 (LP: #1762448) - - powerpc/powernv: Enable tunneled operations - - cxl: read PHB indications from the device tree - - * PSL traces reset after PERST for debug AFU image (LP: #1762462) - - cxl: Enable NORST bit in PSL_DEBUG register for PSL9 - - * NFS + sec=krb5 is broken (LP: #1759791) - - sunrpc: remove incorrect HMAC request initialization - - * Raspberry Pi 3 microSD support missing from the installer (LP: #1729128) - - d-i: add bcm2835 to block-modules - - * Backport USB core quirks (LP: #1762695) - - usb: core: Add "quirks" parameter for usbcore - - usb: core: Copy parameter string correctly and remove superfluous null check - - usb: core: Add USB_QUIRK_DELAY_CTRL_MSG to usbcore quirks - - * [Ubuntu 18.04] cryptsetup: 'device-mapper: reload ioctl on failed' when - setting up a second end-to-end encrypted disk (LP: #1762353) - - SAUCE: s390/crypto: Adjust s390 aes and paes cipher - - * System Z {kernel} UBUNTU18.04 wrong kernel config (LP: #1762719) - - s390: move nobp parameter functions to nospec-branch.c - - s390: add automatic detection of the spectre defense - - s390: report spectre mitigation via syslog - - s390: add sysfs attributes for spectre - - [Config] CONFIG_EXPOLINE_AUTO=y, CONFIG_KERNEL_NOBP=n for s390 - - s390: correct nospec auto detection init order - - * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 - - powerpc/64s: Wire up cpu_show_spectre_v2() - - * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5753 - - powerpc/64s: Wire up cpu_show_spectre_v1() - - * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5754 - - powerpc/rfi-flush: Move the logic to avoid a redo into the debugfs code - - powerpc/rfi-flush: Make it possible to call setup_rfi_flush() again - - powerpc/rfi-flush: Always enable fallback flush on pseries - - powerpc/rfi-flush: Differentiate enabled and patched flush types - - powerpc/rfi-flush: Call setup_rfi_flush() after LPM migration - - powerpc/64s: Move cpu_show_meltdown() - - powerpc/64s: Enhance the information in cpu_show_meltdown() - - powerpc/powernv: Use the security flags in pnv_setup_rfi_flush() - - powerpc/pseries: Use the security flags in pseries_setup_rfi_flush() - - * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 // - CVE-2017-5753 // CVE-2017-5754 - - powerpc/pseries: Add new H_GET_CPU_CHARACTERISTICS flags - - powerpc: Add security feature flags for Spectre/Meltdown - - powerpc/pseries: Set or clear security feature flags - - powerpc/powernv: Set or clear security feature flags - - * Hisilicon network subsystem 3 support (LP: #1761610) - - net: hns3: export pci table of hclge and hclgevf to userspace - - d-i: Add hns3 drivers to nic-modules - - * "ip a" command on a guest VM shows UNKNOWN status (LP: #1761534) - - virtio-net: Fix operstate for virtio when no VIRTIO_NET_F_STATUS - - * perf vendor events arm64: Enable JSON events for ThunderX2 B0 (LP: #1760712) - - perf vendor events: Drop incomplete multiple mapfile support - - perf vendor events: Fix error code in json_events() - - perf vendor events: Drop support for unused topic directories - - perf vendor events: Add support for pmu events vendor subdirectory - - perf vendor events arm64: Relocate ThunderX2 JSON to cavium subdirectory - - perf vendor events arm64: Relocate Cortex A53 JSONs to arm subdirectory - - perf vendor events: Add support for arch standard events - - perf vendor events arm64: Add armv8-recommended.json - - perf vendor events arm64: Fixup ThunderX2 to use recommended events - - perf vendor events arm64: fixup A53 to use recommended events - - perf vendor events arm64: add HiSilicon hip08 JSON file - - perf vendor events arm64: Enable JSON events for ThunderX2 B0 - - * Warning "cache flush timed out!" seen when unloading the cxl driver - (LP: #1762367) - - cxl: Check if PSL data-cache is available before issue flush request - - * Bionic update to v4.16.1 stable release (LP: #1763170) - - bitmap: fix memset optimization on big-endian systems - - USB: serial: ftdi_sio: add RT Systems VX-8 cable - - USB: serial: ftdi_sio: add support for Harman FirmwareHubEmulator - - USB: serial: cp210x: add ELDAT Easywave RX09 id - - serial: 8250: Add Nuvoton NPCM UART - - mei: remove dev_err message on an unsupported ioctl - - /dev/mem: Avoid overwriting "err" in read_mem() - - media: usbtv: prevent double free in error case - - parport_pc: Add support for WCH CH382L PCI-E single parallel port card. - - crypto: lrw - Free rctx->ext with kzfree - - crypto: ccp - Fill the result buffer only on digest, finup, and final ops - - crypto: talitos - don't persistently map req_ctx->hw_context and - req_ctx->buf - - crypto: inside-secure - fix clock management - - crypto: testmgr - Fix incorrect values in PKCS#1 test vector - - crypto: talitos - fix IPsec cipher in length - - crypto: ahash - Fix early termination in hash walk - - crypto: caam - Fix null dereference at error path - - crypto: ccp - return an actual key size from RSA max_size callback - - crypto: arm,arm64 - Fix random regeneration of S_shipped - - crypto: x86/cast5-avx - fix ECB encryption when long sg follows short one - - Bluetooth: hci_bcm: Add 6 new ACPI HIDs - - Btrfs: fix unexpected cow in run_delalloc_nocow - - siox: fix possible buffer overflow in device_add_store - - staging: comedi: ni_mio_common: ack ai fifo error interrupts. - - Revert "base: arch_topology: fix section mismatch build warnings" - - Input: ALPS - fix TrackStick detection on Thinkpad L570 and Latitude 7370 - - Input: i8042 - add Lenovo ThinkPad L460 to i8042 reset list - - Input: i8042 - enable MUX on Sony VAIO VGN-CS series to fix touchpad - - vt: change SGR 21 to follow the standards - - Fix slab name "biovec-(1<<(21-12))" - - signal: Correct the offset of si_pkey and si_lower in struct siginfo on m68k - - Linux 4.16.1 - - * [18.04][config] regression: nvme and nvme_core couldn't be built as modules - starting 4.15-rc2 (LP: #1759893) - - SAUCE: Revert "lightnvm: include NVM Express driver if OCSSD is selected for - build" - - [Config] CONFIG_BLK_DEV_NMVE=m - - * FFe: Enable configuring resume offset via sysfs (LP: #1760106) - - PM / hibernate: Make passing hibernate offsets more friendly - - * Ubuntu18.04:POWER9:DD2.2 - Unable to start a KVM guest with default machine - type(pseries-bionic) complaining "KVM implementation does not support - Transactional Memory, try cap-htm=off" (kvm) (LP: #1752026) - - powerpc: Use feature bit for RTC presence rather than timebase presence - - powerpc: Book E: Remove unused CPU_FTR_L2CSR bit - - powerpc: Free up CPU feature bits on 64-bit machines - - powerpc: Add CPU feature bits for TM bug workarounds on POWER9 v2.2 - - powerpc/powernv: Provide a way to force a core into SMT4 mode - - KVM: PPC: Book3S HV: Work around transactional memory bugs in POWER9 - - KVM: PPC: Book3S HV: Work around XER[SO] bug in fake suspend mode - - KVM: PPC: Book3S HV: Work around TEXASR bug in fake suspend state - - * [Feature][CFL][ICL] [CNL]Thunderbolt support (Titan Ridge) (LP: #1730775) - - thunderbolt: Resume control channel after hibernation image is created - - thunderbolt: Serialize PCIe tunnel creation with PCI rescan - - thunderbolt: Handle connecting device in place of host properly - - thunderbolt: Do not overwrite error code when domain adding fails - - thunderbolt: Wait a bit longer for root switch config space - - thunderbolt: Wait a bit longer for ICM to authenticate the active NVM - - thunderbolt: Handle rejected Thunderbolt devices - - thunderbolt: Factor common ICM add and update operations out - - thunderbolt: Correct function name in kernel-doc comment - - thunderbolt: Add tb_switch_get() - - thunderbolt: Add tb_switch_find_by_route() - - thunderbolt: Add tb_xdomain_find_by_route() - - thunderbolt: Add constant for approval timeout - - thunderbolt: Move driver ready handling to struct icm - - thunderbolt: Add 'boot' attribute for devices - - thunderbolt: Add support for preboot ACL - - thunderbolt: Introduce USB only (SL4) security level - - thunderbolt: Add support for Intel Titan Ridge - - * QCA9377 requires more IRAM banks for its new firmware (LP: #1748345) - - ath10k: update the IRAM bank number for QCA9377 - - * Fix an issue that when system in S3, USB keyboard can't wake up the system. - (LP: #1759511) - - ACPI / PM: Allow deeper wakeup power states with no _SxD nor _SxW - - * cxl: Fix timebase synchronization status on POWER9 missing (CAPI) - (LP: #1757228) - - cxl: Fix timebase synchronization status on P9 - - * [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug - fixes (LP: #1752182) - - scsi: lpfc: Fix frequency of Release WQE CQEs - - scsi: lpfc: Increase CQ and WQ sizes for SCSI - - scsi: lpfc: move placement of target destroy on driver detach - - scsi: lpfc: correct debug counters for abort - - scsi: lpfc: Add WQ Full Logic for NVME Target - - scsi: lpfc: Fix PRLI handling when topology type changes - - scsi: lpfc: Fix IO failure during hba reset testing with nvme io. - - scsi: lpfc: Fix RQ empty firmware trap - - scsi: lpfc: Allow set of maximum outstanding SCSI cmd limit for a target - - scsi: lpfc: Fix soft lockup in lpfc worker thread during LIP testing - - scsi: lpfc: Fix issue_lip if link is disabled - - scsi: lpfc: Indicate CONF support in NVMe PRLI - - scsi: lpfc: Fix SCSI io host reset causing kernel crash - - scsi: lpfc: Validate adapter support for SRIU option - - scsi: lpfc: Fix header inclusion in lpfc_nvmet - - scsi: lpfc: Treat SCSI Write operation Underruns as an error - - scsi: lpfc: Fix nonrecovery of NVME controller after cable swap. - - scsi: lpfc: update driver version to 11.4.0.7 - - scsi: lpfc: Update 11.4.0.7 modified files for 2018 Copyright - - scsi: lpfc: Rework lpfc to allow different sli4 cq and eq handlers - - scsi: lpfc: Rework sli4 doorbell infrastructure - - scsi: lpfc: Add SLI-4 if_type=6 support to the code base - - scsi: lpfc: Add push-to-adapter support to sli4 - - scsi: lpfc: Add PCI Ids for if_type=6 hardware - - scsi: lpfc: Add 64G link speed support - - scsi: lpfc: Add if_type=6 support for cycling valid bits - - scsi: lpfc: Enable fw download on if_type=6 devices - - scsi: lpfc: Add embedded data pointers for enhanced performance - - scsi: lpfc: Fix nvme embedded io length on new hardware - - scsi: lpfc: Work around NVME cmd iu SGL type - - scsi: lpfc: update driver version to 12.0.0.0 - - scsi: lpfc: Change Copyright of 12.0.0.0 modified files to 2018 - - scsi: lpfc: use __raw_writeX on DPP copies - - scsi: lpfc: Add missing unlock in WQ full logic - - * /dev/bcache/by-uuid links not created after reboot (LP: #1729145) - - SAUCE: (no-up) bcache: decouple emitting a cached_dev CHANGE uevent - - * DKMS driver builds fail with: Cannot use CONFIG_STACK_VALIDATION=y, please - install libelf-dev, libelf-devel or elfutils-libelf-devel (LP: #1760876) - - [Packaging] include the retpoline extractor in the headers - - * Use med_with_dipm SATA LPM to save more power for mobile platforms - (LP: #1759547) - - [Config] CONFIG_SATA_MOBILE_LPM_POLICY=3 - - * Miscellaneous Ubuntu changes - - [Packaging] Only install cloud init files when do_tools_common=true - - SAUCE: Import aufs driver - - [Config] Enable AUFS config options - - -- Seth Forshee Thu, 12 Apr 2018 09:30:56 -0500 - -linux (4.16.0-3.4) bionic; urgency=medium - - * Allow multiple mounts of zfs datasets (LP: #1759848) - - SAUCE: Allow mounting datasets more than once (LP: #1759848) - - * zfs system process hung on container stop/delete (LP: #1754584) - - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) - - Revert "UBUNTU: SAUCE: Fix non-prefaulted page deadlock (LP: #1754584)" - - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) - - * ubuntu_zram_smoke test will cause soft lockup on Artful ThunderX ARM64 - (LP: #1755073) - - SAUCE: crypto: thunderx_zip: Fix fallout from CONFIG_VMAP_STACK - - * CAPI Flash (cxlflash) update (LP: #1752672) - - SAUCE: cxlflash: Preserve number of interrupts for master contexts - - SAUCE: cxlflash: Avoid clobbering context control register value - - SAUCE: cxlflash: Add argument identifier names - - SAUCE: cxlflash: Introduce OCXL backend - - SAUCE: cxlflash: Hardware AFU for OCXL - - SAUCE: cxlflash: Read host function configuration - - SAUCE: cxlflash: Setup function acTag range - - SAUCE: cxlflash: Read host AFU configuration - - SAUCE: cxlflash: Setup AFU acTag range - - SAUCE: cxlflash: Setup AFU PASID - - SAUCE: cxlflash: Adapter context support for OCXL - - SAUCE: cxlflash: Use IDR to manage adapter contexts - - SAUCE: cxlflash: Support adapter file descriptors for OCXL - - SAUCE: cxlflash: Support adapter context discovery - - SAUCE: cxlflash: Support image reload policy modification - - SAUCE: cxlflash: MMIO map the AFU - - SAUCE: cxlflash: Support starting an adapter context - - SAUCE: cxlflash: Support process specific mappings - - SAUCE: cxlflash: Support AFU state toggling - - SAUCE: cxlflash: Support reading adapter VPD data - - SAUCE: cxlflash: Setup function OCXL link - - SAUCE: cxlflash: Setup OCXL transaction layer - - SAUCE: cxlflash: Support process element lifecycle - - SAUCE: cxlflash: Support AFU interrupt management - - SAUCE: cxlflash: Support AFU interrupt mapping and registration - - SAUCE: cxlflash: Support starting user contexts - - SAUCE: cxlflash: Support adapter context polling - - SAUCE: cxlflash: Support adapter context reading - - SAUCE: cxlflash: Support adapter context mmap and release - - SAUCE: cxlflash: Support file descriptor mapping - - SAUCE: cxlflash: Introduce object handle fop - - SAUCE: cxlflash: Setup LISNs for user contexts - - SAUCE: cxlflash: Setup LISNs for master contexts - - SAUCE: cxlflash: Update synchronous interrupt status bits - - SAUCE: cxlflash: Introduce OCXL context state machine - - SAUCE: cxlflash: Register for translation errors - - SAUCE: cxlflash: Support AFU reset - - SAUCE: cxlflash: Enable OCXL operations - - * [Artful][Wyse 3040] System hang when trying to enable an offlined CPU core - (LP: #1736393) - - SAUCE: drm/i915:Don't set chip specific data - - SAUCE: drm/i915: make previous commit affects Wyse 3040 only - - * zed process consuming 100% cpu (LP: #1751796) - - SAUCE: Fix ioctl loop-spin in zed (LP: #1751796) - - * Ubuntu18.04:PowerPC - Set Transparent Huge Pages (THP) by default to - "always" (LP: #1753708) - - Config: Set TRANSPARENT_HUGEPAGE_ALWAYS=y on ppc64el - - * retpoline hints: primary infrastructure and initial hints (LP: #1758856) - - [Packaging] retpoline -- add safe usage hint support - - [Packaging] retpoline-check -- only report additions - - [Packaging] retpoline -- widen indirect call/jmp detection - - [Packaging] retpoline -- elide %rip relative indirections - - [Packaging] retpoline -- clear hint information from packages - - SAUCE: apm -- annotate indirect calls within - firmware_restrict_branch_speculation_{start,end} - - SAUCE: EFI -- annotate indirect calls within - firmware_restrict_branch_speculation_{start,end} - - SAUCE: early/late -- annotate indirect calls in early/late initialisation - code - - SAUCE: vga_set_mode -- avoid jump tables - - [Config] retpoine -- switch to new format - - * Miscellaneous Ubuntu changes - - [Packaging] final-checks -- remove check for empty retpoline files - - [Packaging] skip cloud tools packaging when not building package - - [ Upstream Kernel Changes ] - - * Rebase to v4.16 - - -- Seth Forshee Mon, 02 Apr 2018 16:15:36 -0500 - -linux (4.16.0-2.3) bionic; urgency=medium - - * devpts: handle bind-mounts (LP: #1755857) - - SAUCE: devpts: hoist out check for DEVPTS_SUPER_MAGIC - - SAUCE: devpts: resolve devpts bind-mounts - - SAUCE: devpts: comment devpts_mntget() - - SAUCE: selftests: add devpts selftests - - * [bionic][arm64] d-i: add hisi_sas_v3_hw to scsi-modules (LP: #1756103) - - d-i: add hisi_sas_v3_hw to scsi-modules - - * [Bionic][ARM64] PCI and SAS driver patches for hip08 SoCs (LP: #1756094) - - SAUCE: scsi: hisi_sas: config for hip08 ES - - SAUCE: scsi: hisi_sas: export device table of v3 hw to userspace - - * s390/crypto: Fix kernel crash on aes_s390 module remove (LP: #1753424) - - SAUCE: s390/crypto: Fix kernel crash on aes_s390 module remove. - - * Fix ARC hit rate (LP: #1755158) - - SAUCE: Fix ARC hit rate (LP: #1755158) - - * ZFS setgid broken on 0.7 (LP: #1753288) - - SAUCE: Fix ZFS setgid - - * CONFIG_EFI=y on armhf (LP: #1726362) - - [Config] CONFIG_EFI=y on armhf, reconcile secureboot EFI settings - - * [Feature] Add xHCI debug device support in the driver (LP: #1730832) - - [Config] CONFIG_USB_XHCI_DBGCAP=y - - * retpoline: ignore %cs:0xNNN constant indirections (LP: #1752655) - - [Packaging] retpoline -- elide %cs:0xNNNN constants on i386 - - [Config] retpoline -- clean up i386 retpoline files - - * Miscellaneous Ubuntu changes - - [Packaging] retpoline-extract: flag *0xNNN(%reg) branches - - [Config] fix up retpoline abi files - - [Config] fix up retpoline abi files - - d-i: Add netsec to nic-modules - - [ Upstream Kernel Changes ] - - * Rebase to v4.16-rc6 - - -- Seth Forshee Mon, 19 Mar 2018 14:09:49 -0500 - -linux (4.16.0-1.2) bionic; urgency=medium - - * Driver not found in Ubuntu kernel does not detect interface (LP: #1745927) - - d-i: add cxgb4 to nic-modules - - * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) - - [Config] CONFIG_INDIRECT_PIO=y - - SAUCE: LIB: Introduce a generic PIO mapping method - - SAUCE: PCI: Remove unused __weak attribute in pci_register_io_range() - - SAUCE: PCI: Add fwnode handler as input param of pci_register_io_range() - - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts - - SAUCE: OF: Add missing I/O range exception for indirect-IO devices - - [Config] CONFIG_HISILICON_LPC=y - - SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings - - SAUCE: ACPI / scan: do not enumerate Indirect IO host children - - SAUCE: HISI LPC: Add ACPI support - - SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver - - * Miscellaneous Ubuntu changes - - SAUCE: tools: use CC for linking acpi tools - - [ Upstream Kernel Changes ] - - * Rebase to v4.16-rc3 - - -- Seth Forshee Wed, 28 Feb 2018 10:17:23 -0600 - -linux (4.16.0-0.1) bionic; urgency=medium - - * retpoline abi files are empty on i386 (LP: #1751021) - - [Packaging] retpoline-extract -- instantiate retpoline files for i386 - - [Packaging] final-checks -- sanity checking ABI contents - - [Packaging] final-checks -- check for empty retpoline files - - * Miscellaneous upstream changes - - disable vbox build - - Disable zfs build - - [ Upstream Kernel Changes ] - - * Rebase to v4.16-rc2 - - -- Seth Forshee Thu, 22 Feb 2018 08:58:57 -0600 - -linux (4.16.0-0.0) bionic; urgency=medium - - * Dummy entry - - -- Seth Forshee Wed, 21 Feb 2018 14:33:13 -0600 - -linux (4.15.0-10.11) bionic; urgency=medium - - * linux: 4.15.0-10.11 -proposed tracker (LP: #1749250) - - * "swiotlb: coherent allocation failed" dmesg spam with linux 4.15.0-9.10 - (LP: #1749202) - - swiotlb: suppress warning when __GFP_NOWARN is set - - drm/ttm: specify DMA_ATTR_NO_WARN for huge page pools - - * linux-tools: perf incorrectly linking libbfd (LP: #1748922) - - SAUCE: tools -- add ability to disable libbfd - - [Packaging] correct disablement of libbfd - - * [Artful] Realtek ALC225: 2 secs noise when a headset plugged in - (LP: #1744058) - - ALSA: hda/realtek - update ALC225 depop optimize - - * [Artful] Support headset mode for DELL WYSE (LP: #1723913) - - SAUCE: ALSA: hda/realtek - Add support headset mode for DELL WYSE - - * headset mic can't be detected on two Dell machines (LP: #1748807) - - ALSA: hda/realtek - Support headset mode for ALC215/ALC285/ALC289 - - ALSA: hda - Fix headset mic detection problem for two Dell machines - - * Bionic update to v4.15.3 stable release (LP: #1749191) - - ip6mr: fix stale iterator - - net: igmp: add a missing rcu locking section - - qlcnic: fix deadlock bug - - qmi_wwan: Add support for Quectel EP06 - - r8169: fix RTL8168EP take too long to complete driver initialization. - - tcp: release sk_frag.page in tcp_disconnect - - vhost_net: stop device during reset owner - - ipv6: addrconf: break critical section in addrconf_verify_rtnl() - - ipv6: change route cache aging logic - - Revert "defer call to mem_cgroup_sk_alloc()" - - net: ipv6: send unsolicited NA after DAD - - rocker: fix possible null pointer dereference in - rocker_router_fib_event_work - - tcp_bbr: fix pacing_gain to always be unity when using lt_bw - - cls_u32: add missing RCU annotation. - - ipv6: Fix SO_REUSEPORT UDP socket with implicit sk_ipv6only - - soreuseport: fix mem leak in reuseport_add_sock() - - net_sched: get rid of rcu_barrier() in tcf_block_put_ext() - - net: sched: fix use-after-free in tcf_block_put_ext - - media: mtk-vcodec: add missing MODULE_LICENSE/DESCRIPTION - - media: soc_camera: soc_scale_crop: add missing - MODULE_DESCRIPTION/AUTHOR/LICENSE - - media: tegra-cec: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - gpio: uniphier: fix mismatch between license text and MODULE_LICENSE - - crypto: tcrypt - fix S/G table for test_aead_speed() - - Linux 4.15.3 - - * bnx2x_attn_int_deasserted3:4323 MC assert! (LP: #1715519) // - CVE-2018-1000026 - - net: create skb_gso_validate_mac_len() - - bnx2x: disable GSO where gso_size is too big for hardware - - * ethtool -p fails to light NIC LED on HiSilicon D05 systems (LP: #1748567) - - net: hns: add ACPI mode support for ethtool -p - - * CVE-2017-5715 (Spectre v2 Intel) - - [Packaging] retpoline files must be sorted - - [Packaging] pull in retpoline files - - * [Feature] PXE boot with Intel Omni-Path (LP: #1712031) - - d-i: Add hfi1 to nic-modules - - * CVE-2017-5715 (Spectre v2 retpoline) - - [Packaging] retpoline -- add call site validation - - [Config] disable retpoline checks for first upload - - * Do not duplicate changelog entries assigned to more than one bug or CVE - (LP: #1743383) - - [Packaging] git-ubuntu-log -- handle multiple bugs/cves better - - -- Seth Forshee Tue, 13 Feb 2018 11:33:58 -0600 - -linux (4.15.0-9.10) bionic; urgency=medium - - * linux: 4.15.0-9.10 -proposed tracker (LP: #1748244) - - * Miscellaneous Ubuntu changes - - [Debian] tests -- remove gcc-multilib dependency for arm64 - - -- Seth Forshee Thu, 08 Feb 2018 11:25:04 -0600 - -linux (4.15.0-8.9) bionic; urgency=medium - - * linux: 4.15.0-8.9 -proposed tracker (LP: #1748075) - - * Bionic update to v4.15.2 stable release (LP: #1748072) - - KVM: x86: Make indirect calls in emulator speculation safe - - KVM: VMX: Make indirect call speculation safe - - module/retpoline: Warn about missing retpoline in module - - x86/cpufeatures: Add CPUID_7_EDX CPUID leaf - - x86/cpufeatures: Add Intel feature bits for Speculation Control - - x86/cpufeatures: Add AMD feature bits for Speculation Control - - x86/msr: Add definitions for new speculation control MSRs - - x86/pti: Do not enable PTI on CPUs which are not vulnerable to Meltdown - - x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre v2 microcodes - - x86/speculation: Add basic IBPB (Indirect Branch Prediction Barrier) support - - x86/alternative: Print unadorned pointers - - x86/nospec: Fix header guards names - - x86/bugs: Drop one "mitigation" from dmesg - - x86/cpu/bugs: Make retpoline module warning conditional - - x86/cpufeatures: Clean up Spectre v2 related CPUID flags - - x86/retpoline: Simplify vmexit_fill_RSB() - - x86/speculation: Simplify indirect_branch_prediction_barrier() - - auxdisplay: img-ascii-lcd: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - iio: adc/accel: Fix up module licenses - - pinctrl: pxa: pxa2xx: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - ASoC: pcm512x: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - KVM: nVMX: Eliminate vmcs02 pool - - KVM: VMX: introduce alloc_loaded_vmcs - - objtool: Improve retpoline alternative handling - - objtool: Add support for alternatives at the end of a section - - objtool: Warn on stripped section symbol - - x86/mm: Fix overlap of i386 CPU_ENTRY_AREA with FIX_BTMAP - - x86/spectre: Check CONFIG_RETPOLINE in command line parser - - x86/entry/64: Remove the SYSCALL64 fast path - - x86/entry/64: Push extra regs right away - - x86/asm: Move 'status' from thread_struct to thread_info - - Documentation: Document array_index_nospec - - array_index_nospec: Sanitize speculative array de-references - - x86: Implement array_index_mask_nospec - - x86: Introduce barrier_nospec - - x86: Introduce __uaccess_begin_nospec() and uaccess_try_nospec - - x86/usercopy: Replace open coded stac/clac with __uaccess_{begin, end} - - x86/uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec - - x86/get_user: Use pointer masking to limit speculation - - x86/syscall: Sanitize syscall table de-references under speculation - - vfs, fdtable: Prevent bounds-check bypass via speculative execution - - nl80211: Sanitize array index in parse_txq_params - - x86/spectre: Report get_user mitigation for spectre_v1 - - x86/spectre: Fix spelling mistake: "vunerable"-> "vulnerable" - - x86/cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on Intel - - x86/speculation: Use Indirect Branch Prediction Barrier in context switch - - x86/paravirt: Remove 'noreplace-paravirt' cmdline option - - KVM: VMX: make MSR bitmaps per-VCPU - - x86/kvm: Update spectre-v1 mitigation - - x86/retpoline: Avoid retpolines for built-in __init functions - - x86/spectre: Simplify spectre_v2 command line parsing - - x86/pti: Mark constant arrays as __initconst - - x86/speculation: Fix typo IBRS_ATT, which should be IBRS_ALL - - KVM/x86: Update the reverse_cpuid list to include CPUID_7_EDX - - KVM/x86: Add IBPB support - - KVM/VMX: Emulate MSR_IA32_ARCH_CAPABILITIES - - KVM/VMX: Allow direct access to MSR_IA32_SPEC_CTRL - - KVM/SVM: Allow direct access to MSR_IA32_SPEC_CTRL - - serial: core: mark port as initialized after successful IRQ change - - fpga: region: release of_parse_phandle nodes after use - - Linux 4.15.2 - - * Add support for the NIC on SynQuacer E-Series boards (LP: #1747792) - - net: phy: core: remove now uneeded disabling of interrupts - - [Config] CONFIG_NET_VENDOR_SOCIONEXT=y & CONFIG_SNI_NETSEC=m - - net: socionext: Add Synquacer NetSec driver - - net: socionext: include linux/io.h to fix build - - net: socionext: Fix error return code in netsec_netdev_open() - - * [Artful/Bionic] [Config] enable EDAC_GHES for ARM64 (LP: #1747746) - - [Config] CONFIG_EDAC_GHES=y - - * support thunderx2 vendor pmu events (LP: #1747523) - - perf pmu: Pass pmu as a parameter to get_cpuid_str() - - perf tools arm64: Add support for get_cpuid_str function. - - perf pmu: Add helper function is_pmu_core to detect PMU CORE devices - - perf vendor events arm64: Add ThunderX2 implementation defined pmu core - events - - perf pmu: Add check for valid cpuid in perf_pmu__find_map() - - * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) - - SAUCE: mm: disable vma based swap readahead by default - - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM - - * Miscellaneous Ubuntu changes - - [Config] Fix CONFIG_PROFILE_ALL_BRANCHES annotations - - -- Seth Forshee Wed, 07 Feb 2018 21:13:27 -0600 - -linux (4.15.0-7.8) bionic; urgency=medium - - * Bionic update to v4.15.1 stable release (LP: #1747169) - - Bluetooth: hci_serdev: Init hci_uart proto_lock to avoid oops - - tools/gpio: Fix build error with musl libc - - gpio: stmpe: i2c transfer are forbiden in atomic context - - gpio: Fix kernel stack leak to userspace - - ALSA: hda - Reduce the suspend time consumption for ALC256 - - crypto: ecdh - fix typo in KPP dependency of CRYPTO_ECDH - - crypto: aesni - handle zero length dst buffer - - crypto: aesni - fix typo in generic_gcmaes_decrypt - - crypto: aesni - add wrapper for generic gcm(aes) - - crypto: aesni - Fix out-of-bounds access of the data buffer in generic-gcm- - aesni - - crypto: aesni - Fix out-of-bounds access of the AAD buffer in generic-gcm- - aesni - - crypto: inside-secure - fix hash when length is a multiple of a block - - crypto: inside-secure - avoid unmapping DMA memory that was not mapped - - crypto: sha3-generic - fixes for alignment and big endian operation - - crypto: af_alg - whitelist mask and type - - HID: wacom: EKR: ensure devres groups at higher indexes are released - - HID: wacom: Fix reporting of touch toggle (WACOM_HID_WD_MUTE_DEVICE) events - - power: reset: zx-reboot: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - gpio: iop: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - gpio: ath79: add missing MODULE_DESCRIPTION/LICENSE - - mtd: nand: denali_pci: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE - - igb: Free IRQs when device is hotplugged - - ima/policy: fix parsing of fsuuid - - scsi: aacraid: Fix udev inquiry race condition - - scsi: aacraid: Fix hang in kdump - - scsi: storvsc: missing error code in storvsc_probe() - - staging: lustre: separate a connection destroy from free struct kib_conn - - staging: ccree: NULLify backup_info when unused - - staging: ccree: fix fips event irq handling build - - tty: fix data race between tty_init_dev and flush of buf - - usb: option: Add support for FS040U modem - - USB: serial: pl2303: new device id for Chilitag - - USB: cdc-acm: Do not log urb submission errors on disconnect - - CDC-ACM: apply quirk for card reader - - USB: serial: io_edgeport: fix possible sleep-in-atomic - - usbip: prevent bind loops on devices attached to vhci_hcd - - usbip: list: don't list devices attached to vhci_hcd - - USB: serial: simple: add Motorola Tetra driver - - usb: f_fs: Prevent gadget unbind if it is already unbound - - usb: uas: unconditionally bring back host after reset - - usb/gadget: Fix "high bandwidth" check in usb_gadget_ep_match_desc() - - ANDROID: binder: remove waitqueue when thread exits. - - android: binder: use VM_ALLOC to get vm area - - mei: me: allow runtime pm for platform with D0i3 - - serial: 8250_of: fix return code when probe function fails to get reset - - serial: 8250_uniphier: fix error return code in uniphier_uart_probe() - - serial: 8250_dw: Revert "Improve clock rate setting" - - serial: imx: Only wakeup via RTSDEN bit if the system has RTS/CTS - - spi: imx: do not access registers while clocks disabled - - iio: adc: stm32: fix scan of multiple channels with DMA - - iio: chemical: ccs811: Fix output of IIO_CONCENTRATION channels - - test_firmware: fix missing unlock on error in config_num_requests_store() - - Input: synaptics-rmi4 - unmask F03 interrupts when port is opened - - Input: synaptics-rmi4 - do not delete interrupt memory too early - - x86/efi: Clarify that reset attack mitigation needs appropriate userspace - - Linux 4.15.1 - - * Dell XPS 13 9360 bluetooth (Atheros) won't connect after resume - (LP: #1744712) - - Revert "Bluetooth: btusb: fix QCA Rome suspend/resume" - - Bluetooth: btusb: Restore QCA Rome suspend/resume fix with a "rewritten" - version - - * apparmor profile load in stacked policy container fails (LP: #1746463) - - SAUCE: apparmor: fix display of .ns_name for containers - - -- Seth Forshee Sun, 04 Feb 2018 11:56:32 +0100 - -linux (4.15.0-6.7) bionic; urgency=low - - * upload urgency should be medium by default (LP: #1745338) - - [Packaging] update urgency to medium by default - - * Shutdown hang on 16.04 with iscsi targets (LP: #1569925) - - scsi: libiscsi: Allow sd_shutdown on bad transport - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.7.5-1ubuntu1, zfs to 0.7.5-1ubuntu1 - - Revert "UBUNTU: SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM" - - Revert "UBUNTU: SAUCE: mm: disable vma based swap readahead by default" - - [ Upstream Kernel Changes ] - - * Rebase to v4.15 - - -- Seth Forshee Mon, 29 Jan 2018 08:47:07 -0600 - -linux (4.15.0-5.6) bionic; urgency=low - - * $(LOCAL_ENV_CC) and $(LOCAL_ENV_DISTCC_HOSTS) should be properly quoted - (LP: #1744077) - - [Debian] pass LOCAL_ENV_CC and LOCAL_ENV_DISTCC_HOSTS properly - - * Missing install-time driver for QLogic QED 25/40/100Gb Ethernet NIC - (LP: #1743638) - - [d-i] Add qede to nic-modules udeb - - * boot failure on AMD Raven + WesternXT (LP: #1742759) - - SAUCE: drm/amdgpu: add atpx quirk handling (v2) - - * Unable to handle kernel NULL pointer dereference at isci_task_abort_task - (LP: #1726519) - - SAUCE: Revert "scsi: libsas: allow async aborts" - - * Update Ubuntu-4.15.0 config to support Intel Atom devices (LP: #1739939) - - [Config] CONFIG_SERIAL_DEV_BUS=y, CONFIG_SERIAL_DEV_CTRL_TTYPORT=y - - * Miscellaneous Ubuntu changes - - Rebase to v4.15-rc7 - - [Config] CONFIG_CPU_ISOLATION=y - - [Config] Update annotations following config review - - Revert "UBUNTU: SAUCE: Import aufs driver" - - SAUCE: Import aufs driver - - ubuntu: vbox -- update to 5.2.6-dfsg-1 - - ubuntu: vbox: build fixes for 4.15 - - ubuntu: vbox -- update to 5.2.6-dfsg-2 - - hio: updates for timer api changes in 4.15 - - enable hio build - - Rebase to v4.15-rc9 - - [ Upstream Kernel Changes ] - - * Rebase to v4.15-rc9 - - -- Seth Forshee Mon, 22 Jan 2018 10:16:05 -0600 - -linux (4.15.0-4.5) bionic; urgency=low - - * [0cf3:e010] QCA6174A XR failed to pair with bt 4.0 device (LP: #1741166) - - SAUCE: Bluetooth: btusb: Add support for 0cf3:e010 - - * External HDMI monitor failed to show screen on Lenovo X1 series - (LP: #1738523) - - SAUCE: drm/i915: Disable writing of TMDS_OE on Lenovo ThinkPad X1 series - - * Miscellaneous Ubuntu changes - - [Debian] autoreconstruct - add resoration of execute permissions - - [ Upstream Kernel Changes ] - - * Rebase to v4.15-rc4 - - -- Seth Forshee Wed, 10 Jan 2018 10:24:22 -0600 - -linux (4.15.0-3.4) bionic; urgency=low - - * ubuntu/xr-usb-serial didn't get built in zesty and artful (LP: #1733281) - - SAUCE: make sure ubuntu/xr-usb-serial builds for x86 - - [ Upstream Kernel Changes ] - - * Rebase to v4.15-rc6 - - -- Seth Forshee Wed, 03 Jan 2018 20:20:43 -0600 - -linux (4.15.0-2.3) bionic; urgency=low - - * nvidia-graphics-drivers-384 384.90-0ubuntu6 ADT test failure with linux - 4.15.0-1.2 (LP: #1737752) - - x86/mm: Unbreak modules that use the DMA API - - * Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models (LP: #1734147) - - [Config] CONFIG_SPI_INTEL_SPI_*=n - - * power: commonise configs IBMVETH/IBMVSCSI and ensure both are in linux-image - and udebs (LP: #1521712) - - [Config] Include ibmvnic in nic-modules - - * Enable arm64 emulation of removed ARMv7 instructions (LP: #1545542) - - [Config] Enable support for emulation of deprecated ARMv8 instructions - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl with 4.15 compat fix (LP:#1737761) - - Enable zfs build - - [Debian] add icp to zfs-modules.ignore - - [ Upstream Kernel Changes ] - - * Rebase to v4.15-rc4 - - -- Seth Forshee Mon, 18 Dec 2017 09:27:13 -0600 - -linux (4.15.0-1.2) bionic; urgency=low - - * Disabling zfs does not always disable module checks for the zfs modules - (LP: #1737176) - - [Packaging] disable zfs module checks when zfs is disabled - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_UNWINDER_FRAME_POINTER=y for amd64 - - [ Upstream Kernel Changes ] - - * Rebase to v4.15-rc3 - - -- Seth Forshee Sun, 10 Dec 2017 22:07:19 -0600 - -linux (4.15.0-0.1) bionic; urgency=low - - * Miscellaneous Ubuntu changes - - ubuntu: vbox -- update to 5.2.2-dfsg-2 - - ubuntu: vbox: build fixes for 4.15 - - disable hio build - - [Config] Update kernel lockdown options to fix build errors - - Disable zfs build - - SAUCE: Import aufs driver - - [Config] Enable AUFS config options - - [ Upstream Kernel Changes ] - - * Rebase to v4.15-rc2 - - -- Seth Forshee Fri, 08 Dec 2017 13:55:42 -0600 - -linux (4.14.0-11.13) bionic; urgency=low - - * linux: 4.14.0-11.13 -proposed tracker (LP: #1736168) - - * CVE-2017-1000405 - - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() - - * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) - - SAUCE: mm: disable vma based swap readahead by default - - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM - - * Bionic update to v4.14.3 stable release (LP: #1735843) - - s390: fix transactional execution control register handling - - s390/noexec: execute kexec datamover without DAT - - s390/runtime instrumention: fix possible memory corruption - - s390/guarded storage: fix possible memory corruption - - s390/disassembler: add missing end marker for e7 table - - s390/disassembler: increase show_code buffer size - - ACPI / PM: Fix acpi_pm_notifier_lock vs flush_workqueue() deadlock - - ACPI / EC: Fix regression related to triggering source of EC event handling - - cpufreq: schedutil: Reset cached_raw_freq when not in sync with next_freq - - serdev: fix registration of second slave - - sched: Make resched_cpu() unconditional - - lib/mpi: call cond_resched() from mpi_powm() loop - - x86/boot: Fix boot failure when SMP MP-table is based at 0 - - x86/decoder: Add new TEST instruction pattern - - x86/entry/64: Fix entry_SYSCALL_64_after_hwframe() IRQ tracing - - x86/entry/64: Add missing irqflags tracing to native_load_gs_index() - - perf/x86/intel: Hide TSX events when RTM is not supported - - arm64: Implement arch-specific pte_access_permitted() - - ARM: 8722/1: mm: make STRICT_KERNEL_RWX effective for LPAE - - ARM: 8721/1: mm: dump: check hardware RO bit for LPAE - - uapi: fix linux/tls.h userspace compilation error - - uapi: fix linux/rxrpc.h userspace compilation errors - - MIPS: cmpxchg64() and HAVE_VIRT_CPU_ACCOUNTING_GEN don't work for 32-bit SMP - - MIPS: ralink: Fix MT7628 pinmux - - MIPS: ralink: Fix typo in mt7628 pinmux function - - net: mvneta: fix handling of the Tx descriptor counter - - nbd: wait uninterruptible for the dead timeout - - nbd: don't start req until after the dead connection logic - - PM / OPP: Add missing of_node_put(np) - - PCI/ASPM: Account for downstream device's Port Common_Mode_Restore_Time - - PCI/ASPM: Use correct capability pointer to program LTR_L1.2_THRESHOLD - - PCI: hv: Use effective affinity mask - - PCI: Set Cavium ACS capability quirk flags to assert RR/CR/SV/UF - - PCI: Apply Cavium ThunderX ACS quirk to more Root Ports - - ALSA: hda: Add Raven PCI ID - - dm integrity: allow unaligned bv_offset - - dm cache: fix race condition in the writeback mode overwrite_bio - optimisation - - dm crypt: allow unaligned bv_offset - - dm zoned: ignore last smaller runt zone - - dm mpath: remove annoying message of 'blk_get_request() returned -11' - - dm bufio: fix integer overflow when limiting maximum cache size - - ovl: Put upperdentry if ovl_check_origin() fails - - dm: allocate struct mapped_device with kvzalloc - - sched/rt: Simplify the IPI based RT balancing logic - - MIPS: pci: Remove KERN_WARN instance inside the mt7620 driver - - dm: fix race between dm_get_from_kobject() and __dm_destroy() - - dm: discard support requires all targets in a table support discards - - MIPS: Fix odd fp register warnings with MIPS64r2 - - MIPS: Fix MIPS64 FP save/restore on 32-bit kernels - - MIPS: dts: remove bogus bcm96358nb4ser.dtb from dtb-y entry - - MIPS: Fix an n32 core file generation regset support regression - - MIPS: BCM47XX: Fix LED inversion for WRT54GSv1 - - MIPS: math-emu: Fix final emulation phase for certain instructions - - rt2x00usb: mark device removed when get ENOENT usb error - - mm/z3fold.c: use kref to prevent page free/compact race - - autofs: don't fail mount for transient error - - nilfs2: fix race condition that causes file system corruption - - fscrypt: lock mutex before checking for bounce page pool - - eCryptfs: use after free in ecryptfs_release_messaging() - - libceph: don't WARN() if user tries to add invalid key - - bcache: check ca->alloc_thread initialized before wake up it - - fs: guard_bio_eod() needs to consider partitions - - fanotify: fix fsnotify_prepare_user_wait() failure - - isofs: fix timestamps beyond 2027 - - btrfs: change how we decide to commit transactions during flushing - - f2fs: expose some sectors to user in inline data or dentry case - - NFS: Fix typo in nomigration mount option - - NFS: Revert "NFS: Move the flock open mode check into nfs_flock()" - - nfs: Fix ugly referral attributes - - NFS: Avoid RCU usage in tracepoints - - NFS: revalidate "." etc correctly on "open". - - nfsd: deal with revoked delegations appropriately - - rtlwifi: rtl8192ee: Fix memory leak when loading firmware - - rtlwifi: fix uninitialized rtlhal->last_suspend_sec time - - iwlwifi: fix firmware names for 9000 and A000 series hw - - md: fix deadlock error in recent patch. - - md: don't check MD_SB_CHANGE_CLEAN in md_allow_write - - Bluetooth: btqcomsmd: Add support for BD address setup - - md/bitmap: revert a patch - - fsnotify: clean up fsnotify_prepare/finish_user_wait() - - fsnotify: pin both inode and vfsmount mark - - fsnotify: fix pinning group in fsnotify_prepare_user_wait() - - ata: fixes kernel crash while tracing ata_eh_link_autopsy event - - ext4: fix interaction between i_size, fallocate, and delalloc after a crash - - ext4: prevent data corruption with inline data + DAX - - ext4: prevent data corruption with journaling + DAX - - ALSA: pcm: update tstamp only if audio_tstamp changed - - ALSA: usb-audio: Add sanity checks to FE parser - - ALSA: usb-audio: Fix potential out-of-bound access at parsing SU - - ALSA: usb-audio: Add sanity checks in v2 clock parsers - - ALSA: timer: Remove kernel warning at compat ioctl error paths - - ALSA: hda/realtek - Fix ALC275 no sound issue - - ALSA: hda: Fix too short HDMI/DP chmap reporting - - ALSA: hda - Fix yet remaining issue with vmaster 0dB initialization - - ALSA: hda/realtek - Fix ALC700 family no sound issue - - ASoC: sun8i-codec: Invert Master / Slave condition - - ASoC: sun8i-codec: Fix left and right channels inversion - - ASoC: sun8i-codec: Set the BCLK divider - - mfd: lpc_ich: Avoton/Rangeley uses SPI_BYT method - - fix a page leak in vhost_scsi_iov_to_sgl() error recovery - - 9p: Fix missing commas in mount options - - fs/9p: Compare qid.path in v9fs_test_inode - - net/9p: Switch to wait_event_killable() - - scsi: qla2xxx: Suppress a kernel complaint in qla_init_base_qpair() - - scsi: sd_zbc: Fix sd_zbc_read_zoned_characteristics() - - scsi: lpfc: fix pci hot plug crash in timer management routines - - scsi: lpfc: fix pci hot plug crash in list_add call - - scsi: lpfc: Fix crash receiving ELS while detaching driver - - scsi: lpfc: Fix FCP hba_wqidx assignment - - scsi: lpfc: Fix oops if nvmet_fc_register_targetport fails - - iscsi-target: Make TASK_REASSIGN use proper se_cmd->cmd_kref - - iscsi-target: Fix non-immediate TMR reference leak - - target: fix null pointer regression in core_tmr_drain_tmr_list - - target: fix buffer offset in core_scsi3_pri_read_full_status - - target: Fix QUEUE_FULL + SCSI task attribute handling - - target: Fix caw_sem leak in transport_generic_request_failure - - target: Fix quiese during transport_write_pending_qf endless loop - - target: Avoid early CMD_T_PRE_EXECUTE failures during ABORT_TASK - - mtd: Avoid probe failures when mtd->dbg.dfs_dir is invalid - - mtd: nand: Export nand_reset() symbol - - mtd: nand: atmel: Actually use the PM ops - - mtd: nand: omap2: Fix subpage write - - mtd: nand: Fix writing mtdoops to nand flash. - - mtd: nand: mtk: fix infinite ECC decode IRQ issue - - mailbox: bcm-flexrm-mailbox: Fix FlexRM ring flush sequence - - p54: don't unregister leds when they are not initialized - - block: Fix a race between blk_cleanup_queue() and timeout handling - - raid1: prevent freeze_array/wait_all_barriers deadlock - - genirq: Track whether the trigger type has been set - - irqchip/gic-v3: Fix ppi-partitions lookup - - lockd: double unregister of inetaddr notifiers - - KVM: PPC: Book3S HV: Don't call real-mode XICS hypercall handlers if not - enabled - - KVM: nVMX: set IDTR and GDTR limits when loading L1 host state - - KVM: SVM: obey guest PAT - - kvm: vmx: Reinstate support for CPUs without virtual NMI - - dax: fix PMD faults on zero-length files - - dax: fix general protection fault in dax_alloc_inode - - SUNRPC: Fix tracepoint storage issues with svc_recv and svc_rqst_status - - clk: ti: dra7-atl-clock: fix child-node lookups - - libnvdimm, dimm: clear 'locked' status on successful DIMM enable - - libnvdimm, pfn: make 'resource' attribute only readable by root - - libnvdimm, namespace: fix label initialization to use valid seq numbers - - libnvdimm, region : make 'resource' attribute only readable by root - - libnvdimm, namespace: make 'resource' attribute only readable by root - - svcrdma: Preserve CB send buffer across retransmits - - IB/srpt: Do not accept invalid initiator port names - - IB/cm: Fix memory corruption in handling CM request - - IB/hfi1: Fix incorrect available receive user context count - - IB/srp: Avoid that a cable pull can trigger a kernel crash - - IB/core: Avoid crash on pkey enforcement failed in received MADs - - IB/core: Only maintain real QPs in the security lists - - NFC: fix device-allocation error return - - spi-nor: intel-spi: Fix broken software sequencing codes - - i40e: Use smp_rmb rather than read_barrier_depends - - igb: Use smp_rmb rather than read_barrier_depends - - igbvf: Use smp_rmb rather than read_barrier_depends - - ixgbevf: Use smp_rmb rather than read_barrier_depends - - i40evf: Use smp_rmb rather than read_barrier_depends - - fm10k: Use smp_rmb rather than read_barrier_depends - - ixgbe: Fix skb list corruption on Power systems - - parisc: Fix validity check of pointer size argument in new CAS - implementation - - powerpc: Fix boot on BOOK3S_32 with CONFIG_STRICT_KERNEL_RWX - - powerpc/mm/radix: Fix crashes on Power9 DD1 with radix MMU and STRICT_RWX - - powerpc/perf/imc: Use cpu_to_node() not topology_physical_package_id() - - powerpc/signal: Properly handle return value from uprobe_deny_signal() - - powerpc/64s: Fix masking of SRR1 bits on instruction fault - - powerpc/64s/radix: Fix 128TB-512TB virtual address boundary case allocation - - powerpc/64s/hash: Fix 512T hint detection to use >= 128T - - powerpc/64s/hash: Fix 128TB-512TB virtual address boundary case allocation - - powerpc/64s/hash: Fix fork() with 512TB process address space - - powerpc/64s/hash: Allow MAP_FIXED allocations to cross 128TB boundary - - media: Don't do DMA on stack for firmware upload in the AS102 driver - - media: rc: check for integer overflow - - media: rc: nec decoder should not send both repeat and keycode - - cx231xx-cards: fix NULL-deref on missing association descriptor - - media: v4l2-ctrl: Fix flags field on Control events - - media: venus: fix wrong size on dma_free - - media: venus: venc: fix bytesused v4l2_plane field - - media: venus: reimplement decoder stop command - - ARM64: dts: meson-gxl: Add alternate ARM Trusted Firmware reserved memory - zone - - iwlwifi: fix wrong struct for a000 device - - iwlwifi: add a new a000 device - - iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons - - iwlwifi: add new cards for a000 series - - iwlwifi: add new cards for 8265 series - - iwlwifi: add new cards for 8260 series - - iwlwifi: fix PCI IDs and configuration mapping for 9000 series - - iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command - - e1000e: Fix error path in link detection - - e1000e: Fix return value test - - e1000e: Separate signaling for link check/link up - - e1000e: Avoid receiver overrun interrupt bursts - - e1000e: fix buffer overrun while the I219 is processing DMA transactions - - Linux 4.14.3 - - * Miscellaneous Ubuntu changes - - SAUCE: s390/topology: don't inline cpu_to_node - - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 - - -- Seth Forshee Mon, 04 Dec 2017 09:08:07 -0600 - -linux (4.14.0-10.12) bionic; urgency=low - - * linux: 4.14.0-10.12 -proposed tracker (LP: #1734901) - - * Miscellaneous Ubuntu changes - - SAUCE: Enable the ACPI kernel debugger and acpidbg tool - - [Packaging] Include arch/arm64/kernel/ftrace-mod.o in headers package - - -- Seth Forshee Tue, 28 Nov 2017 08:46:49 -0600 - -linux (4.14.0-9.11) bionic; urgency=low - - * linux: 4.14.0-9.11 -proposed tracker (LP: #1734728) - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to - 0.7.3-1ubuntu1" - - -- Seth Forshee Mon, 27 Nov 2017 12:44:48 -0600 - -linux (4.14.0-8.10) bionic; urgency=low - - * linux: 4.14.0-8.10 -proposed tracker (LP: #1734695) - - * Bionic update to v4.14.2 stable release (LP: #1734694) - - bio: ensure __bio_clone_fast copies bi_partno - - af_netlink: ensure that NLMSG_DONE never fails in dumps - - vxlan: fix the issue that neigh proxy blocks all icmpv6 packets - - net: cdc_ncm: GetNtbFormat endian fix - - fealnx: Fix building error on MIPS - - net/sctp: Always set scope_id in sctp_inet6_skb_msgname - - ima: do not update security.ima if appraisal status is not INTEGRITY_PASS - - serial: omap: Fix EFR write on RTS deassertion - - serial: 8250_fintek: Fix finding base_port with activated SuperIO - - tpm-dev-common: Reject too short writes - - rcu: Fix up pending cbs check in rcu_prepare_for_idle - - mm/pagewalk.c: report holes in hugetlb ranges - - ocfs2: fix cluster hang after a node dies - - ocfs2: should wait dio before inode lock in ocfs2_setattr() - - ipmi: fix unsigned long underflow - - mm/page_alloc.c: broken deferred calculation - - mm/page_ext.c: check if page_ext is not prepared - - coda: fix 'kernel memory exposure attempt' in fsync - - ipmi: Prefer ACPI system interfaces over SMBIOS ones - - Linux 4.14.2 - - * Bionic update to v4.14.1 stable release (LP: #1734693) - - EDAC, sb_edac: Don't create a second memory controller if HA1 is not present - - dmaengine: dmatest: warn user when dma test times out - - media: imon: Fix null-ptr-deref in imon_probe - - media: dib0700: fix invalid dvb_detach argument - - crypto: dh - Fix double free of ctx->p - - crypto: dh - Don't permit 'p' to be 0 - - crypto: dh - Don't permit 'key' or 'g' size longer than 'p' - - crypto: brcm - Explicity ACK mailbox message - - USB: early: Use new USB product ID and strings for DbC device - - USB: usbfs: compute urb->actual_length for isochronous - - USB: Add delay-init quirk for Corsair K70 LUX keyboards - - usb: gadget: f_fs: Fix use-after-free in ffs_free_inst - - USB: serial: metro-usb: stop I/O after failed open - - USB: serial: Change DbC debug device binding ID - - USB: serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update - - USB: serial: garmin_gps: fix I/O after failed probe and remove - - USB: serial: garmin_gps: fix memory leak on probe errors - - selftests/x86/protection_keys: Fix syscall NR redefinition warnings - - x86/MCE/AMD: Always give panic severity for UC errors in kernel context - - platform/x86: peaq-wmi: Add DMI check before binding to the WMI interface - - platform/x86: peaq_wmi: Fix missing terminating entry for peaq_dmi_table - - HID: cp2112: add HIDRAW dependency - - HID: wacom: generic: Recognize WACOM_HID_WD_PEN as a type of pen collection - - rpmsg: glink: Add missing MODULE_LICENSE - - staging: wilc1000: Fix bssid buffer offset in Txq - - staging: sm750fb: Fix parameter mistake in poke32 - - staging: ccree: fix 64 bit scatter/gather DMA ops - - staging: greybus: spilib: fix use-after-free after deregistration - - staging: rtl8188eu: Revert 4 commits breaking ARP - - spi: fix use-after-free at controller deregistration - - sparc32: Add cmpxchg64(). - - sparc64: mmu_context: Add missing include files - - sparc64: Fix page table walk for PUD hugepages - - Linux 4.14.1 - - * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) - - [Config]: Set PANIC_TIMEOUT=10 on ppc64el - - * enable CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH easily confuse users - (LP: #1732627) - - [Config] CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=n - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 - - -- Seth Forshee Mon, 27 Nov 2017 07:43:44 -0600 - -linux (4.14.0-7.9) bionic; urgency=low - - * Miscellaneous Ubuntu changes - - SAUCE: apparmor: add base infastructure for socket mediation - - SAUCE: apparmor: af_unix mediation - - SAUCE: LSM stacking: procfs: add smack subdir to attrs - - SAUCE: LSM stacking: LSM: manage credential security blobs - - SAUCE: LSM stacking: LSM: Manage file security blobs - - SAUCE: LSM stacking: LSM: manage task security blobs - - SAUCE: LSM stacking: LSM: Infrastructure management of the remaining blobs - - SAUCE: LSM stacking: LSM: general but not extreme module stacking - - SAUCE: LSM stacking: LSM: Complete task_alloc hook - - SAUCE: LSM stacking: fixup procsfs: add smack subdir to attrs - - SAUCE: LSM stacking: fixup initialize task->security - - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code - - SAUCE: LSM stacking: add support for stacking getpeersec_stream - - SAUCE: LSM stacking: add stacking support to apparmor network hooks - - SAUCE: LSM stacking: fixup apparmor stacking enablement - - SAUCE: LSM stacking: fixup stacking kconfig - - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params - - SAUCE: LSM stacking: provide prctl interface for setting context - - SAUCE: LSM stacking: inherit current display LSM - - SAUCE: LSM stacking: keep an index for each registered LSM - - SAUCE: LSM stacking: verify display LSM - - SAUCE: LSM stacking: provide a way to specify the default display lsm - - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries - - SAUCE: LSM stacking: add /proc//attr/display_lsm - - SAUCE: LSM stacking: add Kconfig to set default display LSM - - SAUCE: LSM stacking: add configs for LSM stacking - - SAUCE: LSM stacking: check for invalid zero sized writes - - [Config] Run updateconfigs after merging LSM stacking - - [Config] CONFIG_AMD_MEM_ENCRYPT=y - - [ Upstream Kernel Changes ] - - * Rebase to v4.14 - - -- Seth Forshee Mon, 13 Nov 2017 08:12:08 -0600 - -linux (4.14.0-6.8) bionic; urgency=low - - * Miscellaneous Ubuntu changes - - SAUCE: add workarounds to enable ZFS for 4.14 - - [ Upstream Kernel Changes ] - - * Rebase to v4.14-rc8 - - -- Seth Forshee Mon, 06 Nov 2017 11:39:00 -0600 - -linux (4.14.0-5.7) bionic; urgency=low - - * Miscellaneous Ubuntu changes - - [Debian] Fix invocation of dh_prep for dbgsym packages - - -- Seth Forshee Tue, 31 Oct 2017 07:07:23 -0500 - -linux (4.14.0-4.5) bionic; urgency=low - - * Miscellaneous Ubuntu changes - - [Packaging] virtualbox -- reduce in kernel module versions - - vbox-update: Fix up KERN_DIR definitions - - ubuntu: vbox -- update to 5.2.0-dfsg-2 - - [Config] CONFIG_AMD_MEM_ENCRYPT=n - - [ Upstream Kernel Changes ] - - * Rebase to v4.14-rc7 - - -- Seth Forshee Mon, 30 Oct 2017 13:29:20 -0500 - -linux (4.14.0-3.4) artful; urgency=low - - * Touchpad and TrackPoint Dose Not Work on Lenovo X1C6 and X280 (LP: #1723986) - - SAUCE: Input: synaptics-rmi4 - RMI4 can also use SMBUS version 3 - - SAUCE: Input: synaptics - Lenovo X1 Carbon 5 should use SMBUS/RMI - - SAUCE: Input: synaptics - add Intertouch support on X1 Carbon 6th and X280 - - * powerpc/64s: Add workaround for P9 vector CI load issuenext (LP: #1721070) - - powerpc/64s: Add workaround for P9 vector CI load issue - - * Miscellaneous Ubuntu changes - - SAUCE: staging: vboxvideo: Fix reporting invalid suggested-offset-properties - - [Config] CONFIG_DRM_VBOXVIDEO=m - - SAUCE: Import aufs driver - - [Config] Enable aufs - - [Config] Reorder annotations file after enabling aufs - - vbox-update: Disable imported vboxvideo module - - ubuntu: vbox -- update to 5.1.30-dfsg-1 - - Enable vbox - - hio: Use correct sizes when initializing ssd_index_bits* arrays - - hio: Update io stat accounting for 4.14 - - Enable hio - - [ Upstream Kernel Changes ] - - * Rebase to v4.14-rc5 - * Rebase to v4.14-rc6 - - -- Seth Forshee Mon, 23 Oct 2017 13:53:52 -0500 - -linux (4.14.0-2.3) artful; urgency=low - - * [Bug] USB controller failed to respond on Denverton after loading - intel_th_pci module (LP: #1715833) - - SAUCE: PCI: Disable broken RTIT_BAR of Intel TH - - * CONFIG_DEBUG_FS is not enabled by "make zfcpdump_defconfig" with Ubuntu - 17.10 (kernel 4.13) (LP: #1719290) - - SAUCE: s390: update zfcpdump_defconfig - - * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) - - d-i: Add bnxt_en to nic-modules. - - * Miscellaneous Ubuntu changes - - [Config] Update annotations for 4.14-rc2 - - [ Upstream Kernel Changes ] - - * Rebase to v4.14-rc3 - * Rebase to v4.14-rc4 - - -- Seth Forshee Wed, 11 Oct 2017 16:04:27 -0500 - -linux (4.14.0-1.2) artful; urgency=low - - * [Bug] USB 3.1 Gen2 works as 5Gbps (LP: #1720045) - - xhci: set missing SuperSpeedPlus Link Protocol bit in roothub descriptor - - * Please make linux-libc-dev Provide: aufs-dev (LP: #1716091) - - [Packaging] Add aufs-dev to the Provides: for linux-libc-dev - - * Upgrade to 4.13.0-11.12 in artful amd64 VM breaks display on wayland - (LP: #1718679) - - [Config] CONFIG_DRM_VBOXVIDEO=n - - * ipmmu-vmsa driver breaks arm64 boots (LP: #1718734) - - [Config] Disable CONFIG_IPMMU_VMSA on arm64 - - * autopkgtest profile fails to build on armhf (LP: #1717920) - - [Packaging] autopkgtest -- disable d-i when dropping flavours - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_I2C_XLP9XX=m - - [Packaging] Use SRCPKGNAME rather than hard-coding the source package name - - [ Upstream Kernel Changes ] - - * Rebase to v4.14-rc2 - - -- Seth Forshee Fri, 29 Sep 2017 09:09:11 -0400 - -linux (4.14.0-0.1) artful; urgency=low - - * Miscellaneous Ubuntu changes - - Disable vbox build - - Disable hio build - - Disable zfs build - - [ Upstream Kernel Changes ] - - * Rebase to v4.14-rc1 - - -- Seth Forshee Tue, 19 Sep 2017 20:22:29 -0500 - -linux (4.13.0-11.12) artful; urgency=low - - * linux: 4.13.0-11.12 -proposed tracker (LP: #1716699) - - * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) - - s390/mm: fix local TLB flushing vs. detach of an mm address space - - s390/mm: fix race on mm->context.flush_mm - - * CVE-2017-1000251 - - Bluetooth: Properly check L2CAP config option output buffer length - - -- Seth Forshee Tue, 12 Sep 2017 10:18:38 -0500 - -linux (4.13.0-10.11) artful; urgency=low - - * linux: 4.13.0-10.11 -proposed tracker (LP: #1716287) - - * please add aufs-dkms to the Provides: for the kernel packages (LP: #1716093) - - [Packaging] Add aufs-dkms to the Provides: for kernel packages - - * Artful update to v4.13.1 stable release (LP: #1716284) - - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard - - USB: serial: option: add support for D-Link DWM-157 C1 - - usb: Add device quirk for Logitech HD Pro Webcam C920-C - - usb:xhci:Fix regression when ATI chipsets detected - - USB: musb: fix external abort on suspend - - ANDROID: binder: add padding to binder_fd_array_object. - - ANDROID: binder: add hwbinder,vndbinder to BINDER_DEVICES. - - USB: core: Avoid race of async_completed() w/ usbdev_release() - - staging/rts5208: fix incorrect shift to extract upper nybble - - staging: ccree: save ciphertext for CTS IV - - staging: fsl-dpaa2/eth: fix off-by-one FD ctrl bitmaks - - iio: adc: ti-ads1015: fix incorrect data rate setting update - - iio: adc: ti-ads1015: fix scale information for ADS1115 - - iio: adc: ti-ads1015: enable conversion when CONFIG_PM is not set - - iio: adc: ti-ads1015: avoid getting stale result after runtime resume - - iio: adc: ti-ads1015: don't return invalid value from buffer setup callbacks - - iio: adc: ti-ads1015: add adequate wait time to get correct conversion - - driver core: bus: Fix a potential double free - - HID: wacom: Do not completely map WACOM_HID_WD_TOUCHRINGSTATUS usage - - binder: free memory on error - - crypto: caam/qi - fix compilation with CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y - - crypto: caam/qi - fix compilation with DEBUG enabled - - thunderbolt: Fix reset response_type - - fpga: altera-hps2fpga: fix multiple init of l3_remap_lock - - intel_th: pci: Add Cannon Lake PCH-H support - - intel_th: pci: Add Cannon Lake PCH-LP support - - ath10k: fix memory leak in rx ring buffer allocation - - drm/vgem: Pin our pages for dmabuf exports - - drm/ttm: Fix accounting error when fail to get pages for pool - - drm/dp/mst: Handle errors from drm_atomic_get_private_obj_state() correctly - - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter - - Bluetooth: Add support of 13d3:3494 RTL8723BE device - - iwlwifi: pci: add new PCI ID for 7265D - - dlm: avoid double-free on error path in dlm_device_{register,unregister} - - mwifiex: correct channel stat buffer overflows - - MCB: add support for SC31 to mcb-lpc - - s390/mm: avoid empty zero pages for KVM guests to avoid postcopy hangs - - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default - - drm/nouveau: Fix error handling in nv50_disp_atomic_commit - - workqueue: Fix flag collision - - ahci: don't use MSI for devices with the silly Intel NVMe remapping scheme - - cs5536: add support for IDE controller variant - - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE - - scsi: sg: recheck MMAP_IO request length with lock held - - of/device: Prevent buffer overflow in of_device_modalias() - - rtlwifi: Fix memory leak when firmware request fails - - rtlwifi: Fix fallback firmware loading - - Linux 4.13.1 - - * Kernel has trouble recognizing Corsair Strafe RGB keyboard (LP: #1678477) - - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard - - * SRIOV: warning if unload VFs (LP: #1715073) - - PCI: Disable VF decoding before pcibios_sriov_disable() updates resources - - * [Patch] network-i40e:NVM bug fixes (cherrypick from 4.14) (LP: #1715578) - - i40e: avoid NVM acquire deadlock during NVM update - - i40e: point wb_desc at the nvm_wb_desc during i40e_read_nvm_aq - - * [P9,POwer NV] Perf PMU event : pm_br_2path and pm_ld_miss_l1 is counted - twice when perf stat is done (perf:) (LP: #1714571) - - perf vendor events powerpc: Remove duplicate events - - * Unable to install Ubuntu on the NVMe disk under VMD PCI domain - (LP: #1703339) - - [Config] Include vmd in storage-core-modules udeb - - * 17.10 fails to boot on POWER9 DD2.0 with Deep stop states (LP: #1715064) - - powerpc/powernv: Save/Restore additional SPRs for stop4 cpuidle - - powerpc/powernv: Clear PECE1 in LPCR via stop-api only on Hotplug - - SAUCE: powerpc/powernv: Clear LPCR[PECE1] via stop-api only for deep state - offline - - * Miscellaneous Ubuntu changes - - SAUCE: selftests/seccomp: Support glibc 2.26 siginfo_t.h - - Revert "UBUNTU: SAUCE: Import aufs driver" - - SAUCE: Import aufs driver - - -- Seth Forshee Sun, 10 Sep 2017 17:48:59 -0500 - -linux (4.13.0-9.10) artful; urgency=low - - * linux: 4.13.0-9.10 -proposed tracker (LP: #1715145) - - * EDAC sbridge: Failed to register device with error -22. (LP: #1714112) - - [Config] CONFIG_EDAC_GHES=n - - * Miscellaneous Ubuntu changes - - ubuntu: vbox -- update to 5.1.26-dfsg-2 - - [ Upstream Kernel Changes ] - - * Rebase to v4.13 - - -- Seth Forshee Tue, 05 Sep 2017 07:51:19 -0500 - -linux (4.13.0-8.9) artful; urgency=low - - * snapd 2.27.3+17.10 ADT test failure with linux 4.13.0-6.7 (LP: #1713103) - - SAUCE: apparmor: fix apparmorfs DAC access, permissions - - * enable ARCH_SUNXI (and friends) in arm64 kernel .config (LP: #1701137) - - [Config] Enable CONFIG_ARCH_SUNXI and related options for arm64 - - * [Bug] Harrisonville: pnd2_edac always fail to load on B1 stepping - Harrisonville SDP (LP: #1709257) - - EDAC, pnd2: Build in a minimal sideband driver for Apollo Lake - - EDAC, pnd2: Mask off the lower four bits of a BAR - - EDAC, pnd2: Conditionally unhide/hide the P2SB PCI device to read BAR - - EDAC, pnd2: Properly toggle hidden state for P2SB PCI device - - SAUCE: i2c: i801: Restore the presence state of P2SB PCI device after - reading BAR - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: SAUCE: Import aufs driver" - - SAUCE: Import aufs driver - - SAUCE: selftests/powerpc: Disable some ptrace selftests - - [Config] CONFIG_CRYPTO_DEV_NITROX_CNN55XX=n for s390x - - [Config] CONFIG_I2C_SLAVE=n for amd64, i386, ppc64el - - [Config] Disable CONFIG_MDIO_* options for s390x - - [Config] CONFIG_SCSI_MQ_DEFAULT=n for s390x - - [Config] Update annotations for 4.13 - - -- Seth Forshee Thu, 31 Aug 2017 14:27:09 -0500 - -linux (4.13.0-7.8) artful; urgency=low - - * linux 4.12.0-11.12 ADT test failure with linux 4.12.0-11.12 (LP: #1710904) - - SAUCE: selftests/powerpc: Use snprintf to construct DSCR sysfs interface - paths - - * Miscellaneous Ubuntu changes - - Revert "UBUNTU: SAUCE: seccomp: log actions even when audit is disabled" - - * Miscellaneous upstream changes - - seccomp: Provide matching filter for introspection - - seccomp: Sysctl to display available actions - - seccomp: Operation for checking if an action is available - - seccomp: Sysctl to configure actions that are allowed to be logged - - seccomp: Selftest for detection of filter flag support - - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW - - seccomp: Action to log before allowing - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc7 - - -- Seth Forshee Mon, 28 Aug 2017 08:12:24 -0500 - -linux (4.13.0-6.7) artful; urgency=low - - * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) - - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A - - * sort ABI files with C.UTF-8 locale (LP: #1712345) - - [Packaging] sort ABI files with C.UTF-8 locale - - * igb: Support using Broadcom 54616 as PHY (LP: #1712024) - - SAUCE: igb: add support for using Broadcom 54616 as PHY - - * RPT related fixes missing in Ubuntu 16.04.3 (LP: #1709220) - - powerpc/mm/radix: Improve _tlbiel_pid to be usable for PWC flushes - - powerpc/mm/radix: Improve TLB/PWC flushes - - powerpc/mm/radix: Avoid flushing the PWC on every flush_tlb_range - - * Linux 4.12 refuses to load self-signed modules under Secure Boot with - properly enrolled keys (LP: #1712168) - - SAUCE: (efi-lockdown) MODSIGN: Fix module signature verification - - * [17.10 FEAT] Enable NVMe driver - kernel (LP: #1708432) - - [Config] CONFIG_BLK_DEV_NVME=m for s390 - - * Artful: 4.12.0-11.12: Boot panic in vlv2_plat_configure_clock+0x3b/0xa0 - (LP: #1711298) - - [Config] CONFIG_INTEL_ATOMISP=n - - * Miscellaneous Ubuntu changes - - SAUCE: apparmor: af_unix mediation - - * Miscellaneous upstream changes - - apparmor: Fix shadowed local variable in unpack_trans_table() - - apparmor: Fix logical error in verify_header() - - apparmor: Fix an error code in aafs_create() - - apparmor: Redundant condition: prev_ns. in [label.c:1498] - - apparmor: add the ability to mediate signals - - apparmor: add mount mediation - - apparmor: cleanup conditional check for label in label_print - - apparmor: add support for absolute root view based labels - - apparmor: make policy_unpack able to audit different info messages - - apparmor: add more debug asserts to apparmorfs - - apparmor: add base infastructure for socket mediation - - apparmor: move new_null_profile to after profile lookup fns() - - apparmor: fix race condition in null profile creation - - apparmor: ensure unconfined profiles have dfas initialized - - apparmor: fix incorrect type assignment when freeing proxies - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc6 - - -- Seth Forshee Wed, 23 Aug 2017 08:10:38 -0500 - -linux (4.13.0-5.6) artful; urgency=low - - * Ubuntu17.10 - perf: Update Power9 PMU event JSON files (LP: #1708630) - - perf pmu-events: Support additional POWER8+ PVR in mapfile - - perf vendor events: Add POWER9 PMU events - - perf vendor events: Add POWER9 PVRs to mapfile - - SAUCE: perf vendor events powerpc: remove suffix in mapfile - - SAUCE: perf vendor events powerpc: Update POWER9 events - - * Disable CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE (LP: #1709171) - - [Config] CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=n for ppc64el - - * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for - kernels able to boot without initramfs (LP: #1700972) - - [Debian] Don't depend on initramfs-tools - - * Miscellaneous Ubuntu changes - - SAUCE: Import aufs driver - - SAUCE: aufs -- Add missing argument to loop_switch() call - - [Config] Enable aufs - - SAUCE: (noup) Update spl to 0.6.5.11-ubuntu1, zfs to 0.6.5.11-1ubuntu3 - - Enable zfs build - - SAUCE: powerpc: Always initialize input array when calling epapr_hypercall() - - [Packaging] switch up to debhelper 9 - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc5 - - -- Seth Forshee Tue, 15 Aug 2017 09:24:16 -0500 - -linux (4.13.0-4.5) artful; urgency=low - - * Lenovo Yoga 910 Sensors (LP: #1708120) - - SAUCE: (no-up) HID: Add quirk for Lenovo Yoga 910 with ITE Chips - - * Unable to install Ubuntu on the NVMe disk under VMD PCI domain - (LP: #1703339) - - [Config] Add vmd driver to generic inclusion list - - * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) - - [Config] CONFIG_SATA_HIGHBANK=y - - * Miscellaneous Ubuntu changes - - ubuntu: vbox -- update to 5.1.26-dfsg-1 - - SAUCE: hio: Build fixes for 4.13 - - Enable hio build - - SAUCE: (noup) Update spl to 0.6.5.11-1, zfs to 0.6.5.11-1ubuntu1 - - [debian] use all rather than amd64 dkms debs for sync - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc4 - - -- Seth Forshee Tue, 08 Aug 2017 11:31:48 -0500 - -linux (4.13.0-3.4) artful; urgency=low - - * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) - - [Packaging] tests -- reduce rebuild test to one flavour - - [Packaging] tests -- reduce rebuild test to one flavour -- use filter - - * snapd 2.26.8+17.10 ADT test failure with linux 4.12.0-6.7 (LP: #1704158) - - SAUCE: virtio_net: Revert mergeable buffer handling rework - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc3 - - -- Seth Forshee Mon, 31 Jul 2017 10:08:16 -0500 - -linux (4.13.0-2.3) artful; urgency=low - - * Change CONFIG_IBMVETH to module (LP: #1704479) - - [Config] CONFIG_IBMVETH=m - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc2 - - -- Seth Forshee Mon, 24 Jul 2017 13:58:08 -0500 - -linux (4.13.0-1.2) artful; urgency=low - - * Miscellaneous Ubuntu changes - - [Debian] Support sphinx-based kernel documentation - - -- Seth Forshee Thu, 20 Jul 2017 09:18:33 -0500 - -linux (4.13.0-0.1) artful; urgency=low - - * Miscellaneous Ubuntu changes - - Disable hio - - Disable zfs build - - ubuntu: vbox -- update to 5.1.24-dfsg-1 - - [ Upstream Kernel Changes ] - - * Rebase to v4.13-rc1 - - -- Seth Forshee Wed, 19 Jul 2017 15:09:31 -0500 - -linux (4.12.0-7.8) artful; urgency=low - - * ThunderX: soft lockup on 4.8+ kernels when running qemu-efi with vhost=on - (LP: #1673564) - - arm64: Add a facility to turn an ESR syndrome into a sysreg encoding - - KVM: arm/arm64: vgic-v3: Add accessors for the ICH_APxRn_EL2 registers - - KVM: arm64: Make kvm_condition_valid32() accessible from EL2 - - KVM: arm64: vgic-v3: Add hook to handle guest GICv3 sysreg accesses at EL2 - - KVM: arm64: vgic-v3: Add ICV_BPR1_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_IGRPEN1_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_IAR1_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_EOIR1_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_AP1Rn_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_HPPIR1_EL1 handler - - KVM: arm64: vgic-v3: Enable trapping of Group-1 system registers - - KVM: arm64: Enable GICv3 Group-1 sysreg trapping via command-line - - KVM: arm64: vgic-v3: Add ICV_BPR0_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_IGNREN0_EL1 handler - - KVM: arm64: vgic-v3: Add misc Group-0 handlers - - KVM: arm64: vgic-v3: Enable trapping of Group-0 system registers - - KVM: arm64: Enable GICv3 Group-0 sysreg trapping via command-line - - arm64: Add MIDR values for Cavium cn83XX SoCs - - arm64: Add workaround for Cavium Thunder erratum 30115 - - KVM: arm64: vgic-v3: Add ICV_DIR_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_RPR_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_CTLR_EL1 handler - - KVM: arm64: vgic-v3: Add ICV_PMR_EL1 handler - - KVM: arm64: Enable GICv3 common sysreg trapping via command-line - - KVM: arm64: vgic-v3: Log which GICv3 system registers are trapped - - KVM: arm64: Log an error if trapping a read-from-write-only GICv3 access - - KVM: arm64: Log an error if trapping a write-to-read-only GICv3 access - - * hns: under heavy load, NIC may fail and require reboot (LP: #1704146) - - net: hns: Bugfix for Tx timeout handling in hns driver - - * New ACPI identifiers for ThunderX SMMU (LP: #1703437) - - iommu/arm-smmu: Plumb in new ACPI identifiers - - * Transparent hugepages should default to enabled=madvise (LP: #1703742) - - SAUCE: use CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y as default - - * Artful update to v4.12.1 stable release (LP: #1703858) - - driver core: platform: fix race condition with driver_override - - RDMA/uverbs: Check port number supplied by user verbs cmds - - usb: dwc3: replace %p with %pK - - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick - - usb: usbip: set buffer pointers to NULL after free - - Add USB quirk for HVR-950q to avoid intermittent device resets - - usb: Fix typo in the definition of Endpoint[out]Request - - USB: core: fix device node leak - - USB: serial: option: add two Longcheer device ids - - USB: serial: qcserial: new Sierra Wireless EM7305 device ID - - xhci: Limit USB2 port wake support for AMD Promontory hosts - - gfs2: Fix glock rhashtable rcu bug - - Add "shutdown" to "struct class". - - tpm: Issue a TPM2_Shutdown for TPM2 devices. - - tpm: fix a kernel memory leak in tpm-sysfs.c - - powerpc/powernv: Fix CPU_HOTPLUG=n idle.c compile error - - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings - - sched/fair, cpumask: Export for_each_cpu_wrap() - - sched/core: Implement new approach to scale select_idle_cpu() - - sched/numa: Use down_read_trylock() for the mmap_sem - - sched/numa: Override part of migrate_degrades_locality() when idle balancing - - sched/fair: Simplify wake_affine() for the single socket case - - sched/numa: Implement NUMA node level wake_affine() - - sched/fair: Remove effective_load() - - sched/numa: Hide numa_wake_affine() from UP build - - xen: avoid deadlock in xenbus driver - - crypto: drbg - Fixes panic in wait_for_completion call - - Linux 4.12.1 - - * cxlflash update request in the Xenial SRU stream (LP: #1702521) - - scsi: cxlflash: Combine the send queue locks - - scsi: cxlflash: Update cxlflash_afu_sync() to return errno - - scsi: cxlflash: Reset hardware queue context via specified register - - scsi: cxlflash: Schedule asynchronous reset of the host - - scsi: cxlflash: Handle AFU sync failures - - scsi: cxlflash: Track pending scsi commands in each hardware queue - - scsi: cxlflash: Flush pending commands in cleanup path - - scsi: cxlflash: Add scsi command abort handler - - scsi: cxlflash: Create character device to provide host management interface - - scsi: cxlflash: Separate AFU internal command handling from AFU sync - specifics - - scsi: cxlflash: Introduce host ioctl support - - scsi: cxlflash: Refactor AFU capability checking - - scsi: cxlflash: Support LUN provisioning - - scsi: cxlflash: Support AFU debug - - scsi: cxlflash: Support WS16 unmap - - scsi: cxlflash: Remove zeroing of private command data - - scsi: cxlflash: Update TMF command processing - - scsi: cxlflash: Avoid double free of character device - - scsi: cxlflash: Update send_tmf() parameters - - scsi: cxlflash: Update debug prints in reset handlers - - * make snap-pkg support (LP: #1700747) - - make snap-pkg support - - * Quirk for non-compliant PCI bridge on HiSilicon D05 board (LP: #1698706) - - SAUCE: PCI: Support hibmc VGA cards behind a misbehaving HiSilicon bridge - - * arm64: fix crash reading /proc/kcore (LP: #1702749) - - fs/proc: kcore: use kcore_list type to check for vmalloc/module address - - arm64: mm: select CONFIG_ARCH_PROC_KCORE_TEXT - - * Opal and POWER9 DD2 (LP: #1702159) - - SAUCE: powerpc/powernv: Tell OPAL about our MMU mode on POWER9 - - * Data corruption with hio driver (LP: #1701316) - - SAUCE: hio: Fix incorrect use of enum req_opf values - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.6.5.10-1, zfs to 0.6.5.10-1ubuntu2 - - snapcraft.yaml: Sync with xenial - - [Config] CONFIG_CAVIUM_ERRATUM_30115=y - - * Miscellaneous upstream changes - - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and - MokSBState" - - -- Seth Forshee Fri, 14 Jul 2017 15:25:41 -0500 - -linux (4.12.0-6.7) artful; urgency=low - - * update ENA driver to 1.2.0k from net-next (LP: #1701575) - - net: ena: change return value for unsupported features unsupported return - value - - net: ena: add hardware hints capability to the driver - - net: ena: change sizeof() argument to be the type pointer - - net: ena: add reset reason for each device FLR - - net: ena: add support for out of order rx buffers refill - - net: ena: allow the driver to work with small number of msix vectors - - net: ena: use napi_schedule_irqoff when possible - - net: ena: separate skb allocation to dedicated function - - net: ena: use lower_32_bits()/upper_32_bits() to split dma address - - net: ena: update driver's rx drop statistics - - net: ena: update ena driver to version 1.2.0 - - * APST gets enabled against explicit kernel option (LP: #1699004) - - nvme: explicitly disable APST on quirked devices - - * Miscellaneous Ubuntu changes - - SAUCE: hio: Update to Huawei ES3000_V2 (2.1.0.40) - - SAUCE: hio updates for 4.12 - - SAUCE: Enable hio build - - -- Seth Forshee Wed, 05 Jul 2017 14:23:20 -0500 - -linux (4.12.0-5.6) artful; urgency=low - - * ERAT invalidate on context switch removal (LP: #1700819) - - powerpc: Only do ERAT invalidate on radix context switch on P9 DD1 - - * powerpc: Invalidate ERAT on powersave wakeup for POWER9 (LP: #1700521) - - SAUCE: powerpc: Invalidate ERAT on powersave wakeup for POWER9 - - * Miscellaneous Ubuntu changes - - d-i: Move qcom-emac from arm64 to shared nic-modules - - [ Upstream Kernel Changes ] - - * Rebase to v4.12 - - -- Seth Forshee Mon, 03 Jul 2017 07:52:02 -0500 - -linux (4.12.0-4.5) artful; urgency=low - - * aacraid driver may return uninitialized stack data to userspace - (LP: #1700077) - - SAUCE: scsi: aacraid: Don't copy uninitialized stack memory to userspace - - * KILLER1435-S[0489:e0a2] BT cannot search BT 4.0 device (LP: #1699651) - - Bluetooth: btusb: Add support for 0489:e0a2 QCA_ROME device - - * AACRAID for power9 platform (LP: #1689980) - - scsi: aacraid: Remove __GFP_DMA for raw srb memory - - scsi: aacraid: Fix DMAR issues with iommu=pt - - scsi: aacraid: Added 32 and 64 queue depth for arc natives - - scsi: aacraid: Set correct Queue Depth for HBA1000 RAW disks - - scsi: aacraid: Remove reset support from check_health - - scsi: aacraid: Change wait time for fib completion - - scsi: aacraid: Log count info of scsi cmds before reset - - scsi: aacraid: Print ctrl status before eh reset - - scsi: aacraid: Using single reset mask for IOP reset - - scsi: aacraid: Rework IOP reset - - scsi: aacraid: Add periodic checks to see IOP reset status - - scsi: aacraid: Rework SOFT reset code - - scsi: aacraid: Rework aac_src_restart - - scsi: aacraid: Use correct function to get ctrl health - - scsi: aacraid: Make sure ioctl returns on controller reset - - scsi: aacraid: Enable ctrl reset for both hba and arc - - scsi: aacraid: Add reset debugging statements - - scsi: aacraid: Remove reference to Series-9 - - scsi: aacraid: Update driver version to 50834 - - * hibmc driver does not include "pci:" prefix in bus ID (LP: #1698700) - - SAUCE: drm: hibmc: Use set_busid function from drm core - - * HiSilicon D05: installer doesn't appear on VGA (LP: #1698954) - - d-i: Add hibmc-drm to kernel-image udeb - - * Fix /proc/cpuinfo revision for POWER9 DD2 (LP: #1698844) - - SAUCE: powerpc: Fix /proc/cpuinfo revision for POWER9 DD2 - - * Miscellaneous Ubuntu changes - - [Config] CONFIG_SATA_MV=n and CONFIG_GENERIC_PHY=n for s390x - - [Config] CONFIG_ATA=n for s390x - - [Config] Update annotations for 4.12 - - [ Upstream Kernel Changes ] - - * Rebase to v4.12-rc7 - - -- Seth Forshee Mon, 26 Jun 2017 11:27:29 -0500 - -linux (4.12.0-3.4) artful; urgency=low - - * Miscellaneous upstream changes - - ufs: fix the logics for tail relocation - - [ Upstream Kernel Changes ] - - * Rebase to v4.12-rc6 - - -- Seth Forshee Mon, 19 Jun 2017 14:50:39 -0500 - -linux (4.12.0-2.3) artful; urgency=low - - * CVE-2014-9900 - - SAUCE: (no-up) net: Zeroing the structure ethtool_wolinfo in - ethtool_get_wol() - - * System doesn't boot properly on Gigabyte AM4 motherboards (AMD Ryzen) - (LP: #1671360) - - pinctrl/amd: Use regular interrupt instead of chained - - * extend-diff-ignore should use exact matches (LP: #1693504) - - [Packaging] exact extend-diff-ignore matches - - * Miscellaneous Ubuntu changes - - SAUCE: efi: Don't print secure boot state from the efi stub - - ubuntu: vbox -- Update to 5.1.22-dfsg-1 - - SAUCE: vbox fixes for 4.12 - - Re-enable virtualbox build - - [Config] CONFIG_ORANGEFS_FS=m - - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu2, zfs to 0.6.5.9-5ubuntu7 - - Enable zfs build - - [ Upstream Kernel Changes ] - - * Rebase to v4.12-rc4 - * Rebase to v4.12-rc5 - - -- Seth Forshee Sun, 11 Jun 2017 22:25:13 -0500 - -linux (4.12.0-1.2) artful; urgency=low - - * Enable Matrox driver for Ubuntu 16.04.3 (LP: #1693337) - - [Config] Enable CONFIG_DRM_MGAG200 as module - - * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) - - [Config] CONFIG_LIBIO=y on arm64 only - - SAUCE: LIBIO: Introduce a generic PIO mapping method - - SAUCE: OF: Add missing I/O range exception for indirect-IO devices - - [Config] CONFIG_HISILICON_LPC=y - - SAUCE: LPC: Support the device-tree LPC host on Hip06/Hip07 - - SAUCE: LIBIO: Support the dynamically logical PIO registration of ACPI host - I/O - - SAUCE: LPC: Add the ACPI LPC support - - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts - - SAUCE: PCI: Restore codepath for !CONFIG_LIBIO - - * POWER9: Additional patches for TTY and CPU_IDLE (LP: #1674325) - - SAUCE: tty: Fix ldisc crash on reopened tty - - * Miscellaneous Ubuntu changes - - [Debian] Add build-dep on libnuma-dev to enable 'perf bench numa' - - Rebase to v4.12-rc3 - - [ Upstream Kernel Changes ] - - * Rebase to v4.12-rc3 - - -- Seth Forshee Mon, 29 May 2017 20:56:29 -0500 - -linux (4.12.0-0.1) artful; urgency=low - - * please enable CONFIG_ARM64_LSE_ATOMICS (LP: #1691614) - - [Config] CONFIG_ARM64_LSE_ATOMICS=y - - * [Regression] NUMA_BALANCING disabled on arm64 (LP: #1690914) - - [Config] CONFIG_NUMA_BALANCING{,_DEFAULT_ENABLED}=y on arm64 - - * exec'ing a setuid binary from a threaded program sometimes fails to setuid - (LP: #1672819) - - SAUCE: exec: ensure file system accounting in check_unsafe_exec is correct - - * Miscellaneous Ubuntu changes - - Update find-missing-sauce.sh to compare to artful - - Update dropped.txt - - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is - locked down - - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode - - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been - set - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel - is locked down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Enable cold boot attack mitigation - - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the - kernel is locked down - - SAUCE: (efi-lockdown) scsi: Lock down the eata driver - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to - secondary keyring - - SAUCE: (efi-lockdown) efi: Add EFI signature data types - - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser - - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot - - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for - MokSBState - - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState - - [Config] Set values for UEFI secure boot lockdown options - - Disable virtualbox build - - Disable hio build - - SAUCE: securityfs: Replace CURRENT_TIME with current_time() - - Disable zfs build - - [Debian] Work out upstream tag for use with gen-auto-reconstruct - - SAUCE: Import aufs driver - - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h - - [Config] Enable aufs - - SAUCE: perf callchain: Include errno.h on x86 unconditinally - - [ Upstream Kernel Changes ] - - * Rebase to v4.12-rc2 - - -- Seth Forshee Sun, 21 May 2017 23:44:44 -0500 - -linux (4.11.0-3.8) artful; urgency=low - - [ Seth Forshee ] - - * Release Tracking Bug - - LP: #1690999 - - * apparmor_parser hangs indefinitely when called by multiple threads - (LP: #1645037) - - SAUCE: apparmor: fix lock ordering for mkdir - - * apparmor leaking securityfs pin count (LP: #1660846) - - SAUCE: apparmor: fix leak on securityfs pin count - - * apparmor reference count leak when securityfs_setup_d_inode\ () fails - (LP: #1660845) - - SAUCE: apparmor: fix reference count leak when securityfs_setup_d_inode() - fails - - * apparmor not checking error if security_pin_fs() fails (LP: #1660842) - - SAUCE: apparmor: fix not handling error case when securityfs_pin_fs() fails - - * libvirt profile is blocking global setrlimit despite having no rlimit rule - (LP: #1679704) - - SAUCE: apparmor: fix complain mode failure for rlimit mediation - - apparmor: update auditing of rlimit check to provide capability information - - * apparmor: does not provide a way to detect policy updataes (LP: #1678032) - - SAUCE: apparmor: add policy revision file interface - - * apparmor does not make support of query data visible (LP: #1678023) - - SAUCE: apparmor: add label data availability to the feature set - - * apparmor query interface does not make supported query info available - (LP: #1678030) - - SAUCE: apparmor: add information about the query inteface to the feature set - - * change_profile incorrect when using namespaces with a compound stack - (LP: #1677959) - - SAUCE: apparmor: fix label parse for stacked labels - - * Regression in 4.4.0-65-generic causes very frequent system crashes - (LP: #1669611) - - apparmor: sync of apparmor 3.6+ (17.04) - - * Artful update to 4.11.1 stable release (LP: #1690814) - - dm ioctl: prevent stack leak in dm ioctl call - - drm/sti: fix GDP size to support up to UHD resolution - - power: supply: lp8788: prevent out of bounds array access - - brcmfmac: Ensure pointer correctly set if skb data location changes - - brcmfmac: Make skb header writable before use - - sparc64: fix fault handling in NGbzero.S and GENbzero.S - - refcount: change EXPORT_SYMBOL markings - - net: macb: fix phy interrupt parsing - - tcp: fix access to sk->sk_state in tcp_poll() - - geneve: fix incorrect setting of UDP checksum flag - - bpf: enhance verifier to understand stack pointer arithmetic - - bpf, arm64: fix jit branch offset related to ldimm64 - - tcp: fix wraparound issue in tcp_lp - - net: ipv6: Do not duplicate DAD on link up - - net: usb: qmi_wwan: add Telit ME910 support - - tcp: do not inherit fastopen_req from parent - - ipv4, ipv6: ensure raw socket message is big enough to hold an IP header - - rtnetlink: NUL-terminate IFLA_PHYS_PORT_NAME string - - ipv6: initialize route null entry in addrconf_init() - - ipv6: reorder ip6_route_dev_notifier after ipv6_dev_notf - - tcp: randomize timestamps on syncookies - - bnxt_en: allocate enough space for ->ntp_fltr_bmap - - bpf: don't let ldimm64 leak map addresses on unprivileged - - net: mdio-mux: bcm-iproc: call mdiobus_free() in error path - - f2fs: sanity check segment count - - xen/arm,arm64: fix xen_dma_ops after 815dd18 "Consolidate get_dma_ops..." - - xen: Revert commits da72ff5bfcb0 and 72a9b186292d - - block: get rid of blk_integrity_revalidate() - - Linux 4.11.1 - - * Module signing exclusion for staging drivers does not work properly - (LP: #1690908) - - SAUCE: Fix module signing exclusion in package builds - - * perf: qcom: Add L3 cache PMU driver (LP: #1689856) - - [Config] CONFIG_QCOM_L3_PMU=y - - perf: qcom: Add L3 cache PMU driver - - * No PMU support for ACPI-based arm64 systems (LP: #1689661) - - drivers/perf: arm_pmu: rework per-cpu allocation - - drivers/perf: arm_pmu: manage interrupts per-cpu - - drivers/perf: arm_pmu: split irq request from enable - - drivers/perf: arm_pmu: remove pointless PMU disabling - - drivers/perf: arm_pmu: define armpmu_init_fn - - drivers/perf: arm_pmu: fold init into alloc - - drivers/perf: arm_pmu: factor out pmu registration - - drivers/perf: arm_pmu: simplify cpu_pmu_request_irqs() - - drivers/perf: arm_pmu: handle no platform_device - - drivers/perf: arm_pmu: rename irq request/free functions - - drivers/perf: arm_pmu: split cpu-local irq request/free - - drivers/perf: arm_pmu: move irq request/free into probe - - drivers/perf: arm_pmu: split out platform device probe logic - - arm64: add function to get a cpu's MADT GICC table - - [Config] CONFIG_ARM_PMU_ACPI=y - - drivers/perf: arm_pmu: add ACPI framework - - arm64: pmuv3: handle !PMUv3 when probing - - arm64: pmuv3: use arm_pmu ACPI framework - - * Fix NVLINK2 TCE route (LP: #1690155) - - powerpc/powernv: Fix TCE kill on NVLink2 - - * CVE-2017-0605 - - tracing: Use strlcpy() instead of strcpy() in __trace_find_cmdline() - - * Miscellaneous Ubuntu changes - - [Config] Restore powerpc arch to annotations file - - [Config] Disable runtime testing modules - - [Config] Disable drivers not needed on s390x - - [Config] Update annotations for 4.11 - - [Config] updateconfigs after apparmor updates - - * Miscellaneous upstream changes - - apparmor: use SHASH_DESC_ON_STACK - - apparmor: fix invalid reference to index variable of iterator line 836 - - apparmor: fix parameters so that the permission test is bypassed at boot - - apparmor: Make path_max parameter readonly - - apparmorfs: Combine two function calls into one in aa_fs_seq_raw_abi_show() - - apparmorfs: Use seq_putc() in two functions - - apparmor: provide information about path buffer size at boot - - apparmor: add/use fns to print hash string hex value - - -- Seth Forshee Tue, 16 May 2017 00:39:13 -0500 - -linux (4.11.0-2.7) artful; urgency=low - - * kernel-wedge fails in artful due to leftover squashfs-modules d-i files - (LP: #1688259) - - Remove squashfs-modules files from d-i - - [Config] as squashfs-modules is builtin kernel-image must Provides: it - - * [Zesty] d-i: replace msm_emac with qcom_emac (LP: #1677297) - - Revert "UBUNTU: d-i: initrd needs msm_emac on amberwing platform." - - d-i: initrd needs qcom_emac on amberwing platform. - - * update for V3 kernel bits and improved multiple fan slice support - (LP: #1470091) - - SAUCE: fan: tunnel multiple mapping mode (v3) - - * Miscellaneous Ubuntu changes - - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu1, zfs to 0.6.5.9-5ubuntu5 - - Enable zfs - - SAUCE: fan: add VXLAN implementation - - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit - - SAUCE: (efi-lockdown) Add the ability to lock down access to the running - kernel image - - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot - mode - - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down - - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is - locked down - - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode - - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down - - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec - reboot - - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been - set - - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down - - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked - down - - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is - locked down - - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked - down - - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel - is locked down - - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel - has been locked down - - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is - locked down - - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is - locked down - - SAUCE: (efi-lockdown) Enable cold boot attack mitigation - - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the - kernel is locked down - - SAUCE: (efi-lockdown) scsi: Lock down the eata driver - - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked - down - - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL - - SAUCE: (efi-lockdown) Add EFI signature data types - - SAUCE: (efi-lockdown) Add an EFI signature blob parser and key loader. - - SAUCE: (efi-lockdown) KEYS: Add a system blacklist keyring - - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot - - SAUCE: (efi-lockdown) MODSIGN: Support not importing certs from db - - SAUCE: (efi-lockdown) MODSIGN: Don't try secure boot if EFI runtime is - disabled - - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub - - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for - MokSBState - - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState - - [Config] Set values for UEFI secure boot lockdown options - - Update dropped.txt - - [ Upstream Kernel Changes ] - - * rebase to v4.11 - - -- Seth Forshee Fri, 05 May 2017 07:43:14 -0500 - -linux (4.11.0-1.6) artful; urgency=low - - * Miscellaneous Ubuntu changes - - [Debian] Use default compression for all packages - - SAUCE: (namespace) block_dev: Support checking inode permissions in - lookup_bdev() - - SAUCE: (namespace) block_dev: Check permissions towards block device inode - when mounting - - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode - when mounting - - SAUCE: (namespace) fs: Allow superblock owner to change ownership of inodes - - SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID for userns root - - SAUCE: (namespace) fs: Allow superblock owner to access do_remount_sb() - - SAUCE: (namespace) capabilities: Allow privileged user in s_user_ns to set - security.* xattrs - - SAUCE: (namespace) fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw - filesystems - - SAUCE: (namespace) fuse: Add support for pid namespaces - - SAUCE: (namespace) fuse: Support fuse filesystems outside of init_user_ns - - SAUCE: (namespace) fuse: Restrict allow_other to the superblock's namespace - or a descendant - - SAUCE: (namespace) fuse: Allow user namespace mounts - - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user - namespaces - - SAUCE: (namespace) evm: Don't update hmacs in user ns mounts - - SAUCE: (namespace) ext4: Add module parameter to enable user namespace - mounts - - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is - opened for writing - - -- Seth Forshee Wed, 26 Apr 2017 10:08:29 -0500 - -linux (4.11.0-0.5) artful; urgency=low - - * [Hyper-V][SAUCE] pci-hyperv: Use only 16 bit integer for PCI domain - (LP: #1684971) - - SAUCE: pci-hyperv: Use only 16 bit integer for PCI domain - - * [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups - (LP: #1470250) - - SAUCE: Tools: hv: vss: Thaw the filesystem and continue after freeze fails - - * Enable virtual scsi server driver for Power (LP: #1615665) - - SAUCE: Return TCMU-generated sense data to fabric module - - * include/linux/security.h header syntax error with !CONFIG_SECURITYFS - (LP: #1630990) - - SAUCE: (no-up) include/linux/security.h -- fix syntax error with - CONFIG_SECURITYFS=n - - * Miscellaneous Ubuntu changes - - SAUCE: Import aufs driver - - [Config] Enable aufs - - [Debian] Add script to update virtualbox - - ubuntu: vbox -- Update to 5.1.20-dfsg-2 - - Enable vbox - - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h - - [ Upstream Kernel Changes ] - - * rebase to v4.11-rc8 - - -- Seth Forshee Tue, 25 Apr 2017 13:42:54 -0500 - -linux (4.11.0-0.4) zesty; urgency=low - - * POWER9: Improve performance on memory management (LP: #1681429) - - SAUCE: powerpc/mm/radix: Don't do page walk cache flush when doing full mm - flush - - SAUCE: powerpc/mm/radix: Remove unnecessary ptesync - - * Miscellaneous Ubuntu changes - - find-missing-sauce.sh - - [ Upstream Kernel Changes ] - - * rebase to v4.11-rc7 - - -- Seth Forshee Tue, 18 Apr 2017 08:19:43 -0500 - -linux (4.11.0-0.3) zesty; urgency=low - - * Disable CONFIG_HVC_UDBG on ppc64el (LP: #1680888) - - [Config] Disable CONFIG_HVC_UDBG on ppc64el - - * smartpqi driver needed in initram disk and installer (LP: #1680156) - - [Config] Add smartpqi to d-i - - * Disable CONFIG_SECURITY_SELINUX_DISABLE (LP: #1680315) - - [Config] CONFIG_SECURITY_SELINUX_DISABLE=n - - * Miscellaneous Ubuntu changes - - [Config] flash-kernel should be a Breaks - - [Config] drop the info directory - - [Config] drop NOTES as obsolete - - [Config] drop changelog.historical as obsolete - - rebase to v4.11-rc6 - - [ Upstream Kernel Changes ] - - * rebase to v4.11-rc6 - - -- Tim Gardner Tue, 11 Apr 2017 07:16:52 -0600 - -linux (4.11.0-0.2) zesty; urgency=low - - [ Upstream Kernel Changes ] - - * rebase to v4.11-rc5 - - -- Tim Gardner Mon, 03 Apr 2017 08:26:07 +0100 - -linux (4.11.0-0.1) zesty; urgency=low - - [ Upstream Kernel Changes ] - - * rebase to v4.11-rc4 - - LP: #1591053 - - -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 - -linux (4.11.0-0.0) zesty; urgency=low - - * dummy entry - - -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 From 28a3608b26dbbae516ef1919c26d336ebe999b61 Mon Sep 17 00:00:00 2001 From: "Kernel Builder (gloin)" Date: Wed, 1 Dec 2021 04:38:45 -0500 Subject: [PATCH 186/192] configs (based on Ubuntu-5.15.0-13.13) --- .../config/amd64/config.common.amd64 | 2 +- .../config/arm64/config.flavour.generic | 2 +- debian.master/config/config.common.ubuntu | 27 ++----------------- 3 files changed, 4 insertions(+), 27 deletions(-) diff --git a/debian.master/config/amd64/config.common.amd64 b/debian.master/config/amd64/config.common.amd64 index b39dc03a035c43..8a13ed6ae8bc3c 100644 --- a/debian.master/config/amd64/config.common.amd64 +++ b/debian.master/config/amd64/config.common.amd64 @@ -59,7 +59,7 @@ CONFIG_CADENCE_WATCHDOG=m CONFIG_CAIF=m CONFIG_CAN=m CONFIG_CB710_CORE=m -CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0" +CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 11.2.0-12ubuntu1) 11.2.0" CONFIG_CDROM_PKTCDVD=m # CONFIG_CMA is not set CONFIG_CMDLINE_PARTITION=y diff --git a/debian.master/config/arm64/config.flavour.generic b/debian.master/config/arm64/config.flavour.generic index d6e3ffa1d269c2..b7e35f458cc2f0 100644 --- a/debian.master/config/arm64/config.flavour.generic +++ b/debian.master/config/arm64/config.flavour.generic @@ -9,5 +9,5 @@ CONFIG_ARM64_4K_PAGES=y CONFIG_ARM64_CONT_PMD_SHIFT=4 CONFIG_ARM64_CONT_PTE_SHIFT=4 CONFIG_ARM64_PAGE_SHIFT=12 -CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_FORCE_MAX_ZONEORDER=11 CONFIG_PGTABLE_LEVELS=4 diff --git a/debian.master/config/config.common.ubuntu b/debian.master/config/config.common.ubuntu index dcaa371d8bee00..45bd42597791f4 100644 --- a/debian.master/config/config.common.ubuntu +++ b/debian.master/config/config.common.ubuntu @@ -33,7 +33,6 @@ CONFIG_9P_FS=m CONFIG_9P_FSCACHE=y CONFIG_9P_FS_POSIX_ACL=y CONFIG_9P_FS_SECURITY=y -CONFIG_AAEON_IWMI_WDT=m CONFIG_ABP060MG=m # CONFIG_ACCESSIBILITY is not set CONFIG_ACENIC=m @@ -292,10 +291,7 @@ CONFIG_AMD_XGBE_DCB=y CONFIG_AMD_XGBE_HAVE_ECC=y CONFIG_AMILO_RFKILL=m CONFIG_AMLOGIC_THERMAL=m -CONFIG_ANDROID_BINDERFS=m -CONFIG_ANDROID_BINDER_DEVICES="" -CONFIG_ANDROID_BINDER_IPC=m -# CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set +# CONFIG_ANDROID_BINDER_IPC is not set CONFIG_APDS9300=m CONFIG_APDS9960=m # CONFIG_APM_EMULATION is not set @@ -829,7 +825,7 @@ CONFIG_ARM_VEXPRESS_SPC_CPUFREQ=m CONFIG_ARM_VIRT_EXT=y CONFIG_AS3935=m CONFIG_AS73211=m -CONFIG_ASHMEM=m +# CONFIG_ASHMEM is not set CONFIG_ASM_MODVERSIONS=y CONFIG_ASN1=y CONFIG_ASN1_ENCODER=y @@ -2661,7 +2657,6 @@ CONFIG_DELL_SMBIOS=m CONFIG_DELL_SMBIOS_SMM=y CONFIG_DELL_SMBIOS_WMI=y CONFIG_DELL_SMO8800=m -CONFIG_DELL_UART_BACKLIGHT=m CONFIG_DELL_WMI=m CONFIG_DELL_WMI_AIO=m CONFIG_DELL_WMI_DESCRIPTOR=m @@ -3932,7 +3927,6 @@ CONFIG_GPIO_104_IDIO_16=m CONFIG_GPIO_104_IDI_48=m CONFIG_GPIO_74X164=m CONFIG_GPIO_74XX_MMIO=m -CONFIG_GPIO_AAEON=m CONFIG_GPIO_ACPI=y CONFIG_GPIO_ADNP=m CONFIG_GPIO_ADP5520=m @@ -4407,7 +4401,6 @@ CONFIG_HIGHMEM=y CONFIG_HIGHPTE=y CONFIG_HIGH_RES_TIMERS=y CONFIG_HINIC=m -# CONFIG_HIO is not set CONFIG_HIP04_ETH=m # CONFIG_HIPPI is not set CONFIG_HISILICON_ERRATUM_161010101=y @@ -5615,7 +5608,6 @@ CONFIG_LD_IS_BFD=y CONFIG_LD_ORPHAN_WARN=y CONFIG_LD_VERSION=23700 CONFIG_LEDS_88PM860X=m -CONFIG_LEDS_AAEON=m CONFIG_LEDS_AAT1290=m CONFIG_LEDS_ACER_A500=m CONFIG_LEDS_ADP5520=m @@ -5767,7 +5759,6 @@ CONFIG_LOCKDEP_SUPPORT=y CONFIG_LOCKD_V4=y CONFIG_LOCKUP_DETECTOR=y CONFIG_LOCK_DEBUGGING_SUPPORT=y -CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y # CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY is not set # CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY is not set CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE=y @@ -6057,7 +6048,6 @@ CONFIG_MESON_SM=y CONFIG_MESON_WATCHDOG=m CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 CONFIG_MFD_88PM860X=y -CONFIG_MFD_AAEON=m CONFIG_MFD_AAT2870_CORE=y # CONFIG_MFD_AC100 is not set CONFIG_MFD_ACER_A500_EC=m @@ -9107,13 +9097,6 @@ CONFIG_RTW88_CORE=m CONFIG_RTW88_DEBUG=y CONFIG_RTW88_DEBUGFS=y CONFIG_RTW88_PCI=m -CONFIG_RTW89=m -CONFIG_RTW89_8852AE=m -CONFIG_RTW89_CORE=m -CONFIG_RTW89_DEBUG=y -CONFIG_RTW89_DEBUGFS=y -CONFIG_RTW89_DEBUGMSG=y -CONFIG_RTW89_PCI=m # CONFIG_RT_GROUP_SCHED is not set CONFIG_RT_MUTEXES=y CONFIG_RUNTIME_TESTING_MENU=y @@ -9351,7 +9334,6 @@ CONFIG_SECURITY_LOCKDOWN_LSM_EARLY=y CONFIG_SECURITY_NETWORK=y CONFIG_SECURITY_NETWORK_XFRM=y CONFIG_SECURITY_PATH=y -CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y CONFIG_SECURITY_SAFESETID=y CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_AVC_STATS=y @@ -9375,7 +9357,6 @@ CONFIG_SECURITY_YAMA=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SENSIRION_SGP30=m CONFIG_SENSIRION_SGP40=m -CONFIG_SENSORS_AAEON=m CONFIG_SENSORS_ABITUGURU=m CONFIG_SENSORS_ABITUGURU3=m CONFIG_SENSORS_ACPI_POWER=m @@ -9739,7 +9720,6 @@ CONFIG_SGI_XP=m CONFIG_SGL_ALLOC=y CONFIG_SG_POOL=y CONFIG_SG_SPLIT=y -# CONFIG_SHIFT_FS is not set CONFIG_SHMEM=y CONFIG_SHUFFLE_PAGE_ALLOCATOR=y CONFIG_SH_ETH=m @@ -11401,8 +11381,6 @@ CONFIG_UBIFS_FS_XATTR=y CONFIG_UBIFS_FS_ZLIB=y CONFIG_UBIFS_FS_ZSTD=y # CONFIG_UBSAN is not set -CONFIG_UBUNTU_HOST=m -CONFIG_UBUNTU_ODM_DRIVERS=y CONFIG_UCB1400_CORE=m CONFIG_UCC=y CONFIG_UCC_FAST=y @@ -11972,7 +11950,6 @@ CONFIG_VDSO=y CONFIG_VDSO32=y CONFIG_VEML6030=m CONFIG_VEML6070=m -CONFIG_VERSION_SIGNATURE="" CONFIG_VETH=m CONFIG_VEXPRESS_CONFIG=y CONFIG_VF610_ADC=m From c89f263d89ae792a5c892e1bd695c516038e4799 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 11 Oct 2019 13:29:16 -0600 Subject: [PATCH 187/192] System76 Linux --- .gitignore | 4 +- debian.master/control.d/linux-libc-dev.stub | 2 +- debian.master/control.d/vars.generic | 2 +- debian.master/control.d/vars.lowlatency | 6 -- debian.master/control.stub.in | 79 +++++++++++++++++++++ debian.master/etc/getabis | 2 +- debian.master/rules.d/amd64.mk | 4 +- debian.master/rules.d/i386.mk | 18 ----- debian.master/variants | 2 - debian/rules | 1 - debian/rules.d/2-binary-arch.mk | 38 +++++++++- debian/source/format | 2 +- rebuild.sh | 14 ++++ reinstall.sh | 14 ++++ system76.sh | 29 ++++++++ 15 files changed, 182 insertions(+), 35 deletions(-) delete mode 100644 debian.master/control.d/vars.lowlatency delete mode 100644 debian.master/rules.d/i386.mk create mode 100755 rebuild.sh create mode 100755 reinstall.sh create mode 100755 system76.sh diff --git a/.gitignore b/.gitignore index 7afd412dadd2c1..796101eecd5cf3 100644 --- a/.gitignore +++ b/.gitignore @@ -75,7 +75,9 @@ modules.order # # Debian directory (make deb-pkg) # -/debian/ +#/debian/ +/debian/build/ +/debian/files # # Snap directory (make snap-pkg) diff --git a/debian.master/control.d/linux-libc-dev.stub b/debian.master/control.d/linux-libc-dev.stub index fb045233d40178..38b97a2c528d23 100644 --- a/debian.master/control.d/linux-libc-dev.stub +++ b/debian.master/control.d/linux-libc-dev.stub @@ -1,5 +1,5 @@ Package: linux-libc-dev -Architecture: amd64 armhf arm64 i386 ppc64el riscv64 s390x +Architecture: amd64 armhf arm64 ppc64el riscv64 s390x Depends: ${misc:Depends} Conflicts: linux-kernel-headers Replaces: linux-kernel-headers diff --git a/debian.master/control.d/vars.generic b/debian.master/control.d/vars.generic index ca144cfac8962b..92f563f1007732 100644 --- a/debian.master/control.d/vars.generic +++ b/debian.master/control.d/vars.generic @@ -2,5 +2,5 @@ arch="amd64 armhf arm64 ppc64el s390x" supported="Generic" target="Geared toward desktop and server systems." desc="=HUMAN= SMP" -bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el]" +bootloader="kernelstub [amd64] | grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el]" provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.master/control.d/vars.lowlatency b/debian.master/control.d/vars.lowlatency deleted file mode 100644 index 02af97ae921aad..00000000000000 --- a/debian.master/control.d/vars.lowlatency +++ /dev/null @@ -1,6 +0,0 @@ -arch="amd64" -supported="Lowlatency" -target="Geared toward desktop and server systems." -desc="=HUMAN= SMP" -bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf]" -provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.master/control.stub.in b/debian.master/control.stub.in index 4d0cb5f3aca7b0..a873a0f40648b7 100644 --- a/debian.master/control.stub.in +++ b/debian.master/control.stub.in @@ -153,3 +153,82 @@ Depends: ${misc:Depends}, python3 Description: Linux kernel VM host tools This package provides kernel tools useful for VM hosts. +# linux-meta { + +Package: SRCPKGNAME-headers-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Depends: + ${misc:Depends}, + linux-headers-PKGVER-ABINUM-generic (= ${source:Version}) +Description: Generic Linux kernel headers + This package will always depend on the latest generic kernel headers + available. + +Package: SRCPKGNAME-image-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Depends: + ${misc:Depends}, + linux-image-PKGVER-ABINUM-generic (= ${source:Version}), + linux-firmware, + intel-microcode [amd64], + amd64-microcode [amd64] +Recommends: thermald [amd64] +Description: Generic Linux kernel image + This package will always depend on the latest generic kernel image + available. + +Package: SRCPKGNAME-tools-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Provides: linux-tools +Depends: + ${misc:Depends}, + linux-tools-PKGVER-ABINUM-generic (= ${source:Version}) +Description: Generic Linux kernel tools + This package will always depend on the latest generic kernel tools + available. + +Package: SRCPKGNAME-cloud-tools-generic +Build-Profiles: +Architecture: amd64 +Section: kernel +Provides: linux-cloud-tools +Depends: + ${misc:Depends}, + linux-cloud-tools-PKGVER-ABINUM-generic (= ${source:Version}) +Description: Generic Linux kernel cloud tools + This package will always depend on the latest generic kernel cloud tools + available. + +Package: SRCPKGNAME-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Depends: + ${misc:Depends}, + SRCPKGNAME-image-generic (= ${binary:Version}), + SRCPKGNAME-headers-generic (= ${binary:Version}) +Description: Complete Generic Linux kernel and headers + This package will always depend on the latest complete generic Linux kernel + and headers. + +# } linux-meta + +# linux-system76 { + +Package: SRCPKGNAME-system76 +Build-Profiles: +Architecture: amd64 +Section: kernel +Depends: + ${misc:Depends}, + SRCPKGNAME-generic (= ${binary:Version}) +Description: System76 recommended Linux kernel + This package depends upon the recommended kernel for System76 users. + +# } linux-system76 diff --git a/debian.master/etc/getabis b/debian.master/etc/getabis index 19e1aa8da3a4b6..ac7450c8840fc5 100644 --- a/debian.master/etc/getabis +++ b/debian.master/etc/getabis @@ -12,7 +12,7 @@ package_prefixes linux-buildinfo getall armhf generic getall armhf generic-lpae -getall amd64 generic lowlatency +getall amd64 generic getall arm64 generic generic-64k getall ppc64el generic getall s390x generic diff --git a/debian.master/rules.d/amd64.mk b/debian.master/rules.d/amd64.mk index 7654171a8637ce..754cc858b90e55 100644 --- a/debian.master/rules.d/amd64.mk +++ b/debian.master/rules.d/amd64.mk @@ -2,13 +2,13 @@ human_arch = 64 bit x86 build_arch = x86 header_arch = $(build_arch) defconfig = defconfig -flavours = generic lowlatency +flavours = generic build_image = bzImage kernel_file = arch/$(build_arch)/boot/bzImage install_file = vmlinuz vdso = vdso_install no_dumpfile = true -uefi_signed = true +uefi_signed = false do_tools_usbip = true do_tools_cpupower = true do_tools_perf = true diff --git a/debian.master/rules.d/i386.mk b/debian.master/rules.d/i386.mk deleted file mode 100644 index 30c9ecb85bc2fc..00000000000000 --- a/debian.master/rules.d/i386.mk +++ /dev/null @@ -1,18 +0,0 @@ -human_arch = 32 bit x86 -build_arch = i386 -header_arch = $(build_arch) -defconfig = defconfig -flavours = generic lowlatency -build_image = bzImage -kernel_file = arch/$(build_arch)/boot/bzImage -install_file = vmlinuz -vdso = vdso_install -no_dumpfile = true -do_flavour_image_package = false -do_tools = false -do_tools_common = false -do_extras_package = false -do_source_package = false -do_doc_package = false -do_flavour_header_package = false -do_common_headers_indep = false diff --git a/debian.master/variants b/debian.master/variants index 6830778569ab54..4ba280517af592 100644 --- a/debian.master/variants +++ b/debian.master/variants @@ -1,3 +1 @@ -- --hwe-20.04 --hwe-20.04-edge diff --git a/debian/rules b/debian/rules index 16a069766e592c..5b68098c1fa4b6 100755 --- a/debian/rules +++ b/debian/rules @@ -80,7 +80,6 @@ endif # Being used to build a mainline build -- turn off things which do not work. ifeq ($(do_mainline_build),true) do_extras_package=false - do_tools=false no_dumpfile=1 do_zfs=false skipabi=true diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index f5ce021276c91f..b41d5559c41fbf 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -775,10 +775,46 @@ ifeq ($(do_cloud_tools),true) $(call dh_all,$(cloudpkg)) endif +meta_version=$(release).$(revision) +define dh_all_meta + dh_installchangelogs -p$(1) + dh_installdocs -p$(1) + dh_compress -p$(1) + dh_fixperms -p$(1) -X/boot/ + dh_shlibdeps -p$(1) $(shlibdeps_opts) + dh_installdeb -p$(1) + dh_installdebconf -p$(1) + $(lockme) dh_gencontrol -p$(1) -- -Vlinux:rprovides='$(rprovides)' -v$(meta_version) + dh_md5sums -p$(1) + dh_builddeb -p$(1) +endef + +binary-meta: + @echo Debug: $@ + +ifeq ($(do_flavour_image_package),true) + $(call dh_all_meta,$(src_pkg_name)-headers-generic) +endif # do_flavour_image_package +ifeq ($(do_flavour_header_package),true) + $(call dh_all_meta,$(src_pkg_name)-image-generic) +endif # do_flavour_header_package +ifeq ($(do_linux_tools),true) + $(call dh_all_meta,$(src_pkg_name)-tools-generic) +endif # do_linux_tools +ifeq ($(do_cloud_tools),true) + $(call dh_all_meta,$(src_pkg_name)-cloud-tools-generic) +endif # do_cloud_tools +ifeq ($(do_flavour_image_package),true) +ifeq ($(do_flavour_header_package),true) + $(call dh_all_meta,$(src_pkg_name)-generic) + $(call dh_all_meta,$(src_pkg_name)-system76) +endif # do_flavour_header_package +endif # do_flavour_image_package + binary-debs: signing = $(CURDIR)/debian/$(bin_pkg_name)-signing binary-debs: signingv = $(CURDIR)/debian/$(bin_pkg_name)-signing/$(release)-$(revision) binary-debs: signing_tar = $(src_pkg_name)_$(release)-$(revision)_$(arch).tar.gz -binary-debs: binary-perarch $(addprefix binary-,$(flavours)) +binary-debs: binary-perarch binary-meta $(addprefix binary-,$(flavours)) @echo Debug: $@ ifeq ($(any_signed),true) install -d $(signingv)/control diff --git a/debian/source/format b/debian/source/format index d3827e75a5cadb..89ae9db8f88b82 100644 --- a/debian/source/format +++ b/debian/source/format @@ -1 +1 @@ -1.0 +3.0 (native) diff --git a/rebuild.sh b/rebuild.sh new file mode 100755 index 00000000000000..1e0a53261c9400 --- /dev/null +++ b/rebuild.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +set -ex + +if ! diff -u debian/changelog debian.master/changelog +then + fakeroot debian/rules clean +fi + +dh_clean + +rm -rf debian/build/build-generic/_____________________________________dkms/ + +time debuild --no-lintian -b -nc -uc -us diff --git a/reinstall.sh b/reinstall.sh new file mode 100755 index 00000000000000..a0b4aa72555efa --- /dev/null +++ b/reinstall.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +set -e + +version="$(dpkg-parsechangelog -S Version | sed 's/-76/*76/g')" +sudo dpkg -i \ + ../linux-generic_${version}_amd64.deb \ + ../linux-headers-*_${version}_*.deb \ + ../linux-image-*_${version}_amd64.deb \ + ../linux-libc-dev_${version}_amd64.deb \ + ../linux-modules-*_${version}_amd64.deb \ + ../linux-system76_${version}_amd64.deb \ + ../linux-tools-*_${version}_amd64.deb \ + ../linux-tools-common_${version}_all.deb diff --git a/system76.sh b/system76.sh new file mode 100755 index 00000000000000..a7d1f0f25d4fdc --- /dev/null +++ b/system76.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +set -e + +if [ -n "$(git status --porcelain)" ] +then + echo "ERROR: uncommitted changes" + exit 1 +fi + +package="$(dpkg-parsechangelog --file "debian.master/changelog" --show-field Source)" +version="$(dpkg-parsechangelog --file "debian.master/changelog" --show-field Version)" + +linux_version="$(echo "${version}" | cut -d "-" -f1)" +debian_version="$(echo "${version}" | cut -d "-" -f2-)" + +if [[ "${debian_version}" == "76"* ]] +then + echo "${package} ${version} already updated for system76" +else + new_version="${linux_version}-76${debian_version}" + sed -i "s/${package} (${version})/${package} (${new_version})/" "debian.master/changelog" + dch --changelog "debian.master/changelog" --release 'Release for System76' +fi + +fakeroot debian/rules clean + +git add . +git commit -s -m "DROP ON REBASE: ${new_version} based on ${version}" From 79db579e4ff32bfecef35eb91c02a8dd98e966d7 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Wed, 26 Aug 2020 18:43:17 -0600 Subject: [PATCH 188/192] ALSA: hda/realtek - Reapply pin fixup for oryp5 The pin fixup is required to detect headset microphones on the oryp5. Fixes: 80690a276f444 ("ALSA: hda/realtek - Add quirk for Tuxedo XC 1509") Signed-off-by: Tim Crawford --- sound/pci/hda/patch_realtek.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 9ce7457533c966..9d0f67ca7e23d1 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -2552,8 +2552,8 @@ static const struct snd_pci_quirk alc882_fixup_tbl[] = { SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950), - SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950), - SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950), + SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_PB51ED_PINS), + SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950), SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD), SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD), From 9f80fed7733319d723781d3feb895b5f5c39c985 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 14 Sep 2021 12:08:15 -0600 Subject: [PATCH 189/192] pinctrl: Export intel_pinctrl_probe --- drivers/pinctrl/intel/pinctrl-intel.c | 5 +++-- drivers/pinctrl/intel/pinctrl-intel.h | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/pinctrl/intel/pinctrl-intel.c b/drivers/pinctrl/intel/pinctrl-intel.c index 85750974d18252..c7cdec2bf50776 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.c +++ b/drivers/pinctrl/intel/pinctrl-intel.c @@ -1456,8 +1456,8 @@ static int intel_pinctrl_pm_init(struct intel_pinctrl *pctrl) return 0; } -static int intel_pinctrl_probe(struct platform_device *pdev, - const struct intel_pinctrl_soc_data *soc_data) +int intel_pinctrl_probe(struct platform_device *pdev, + const struct intel_pinctrl_soc_data *soc_data) { struct intel_pinctrl *pctrl; int i, ret, irq; @@ -1571,6 +1571,7 @@ static int intel_pinctrl_probe(struct platform_device *pdev, return 0; } +EXPORT_SYMBOL_GPL(intel_pinctrl_probe); int intel_pinctrl_probe_by_hid(struct platform_device *pdev) { diff --git a/drivers/pinctrl/intel/pinctrl-intel.h b/drivers/pinctrl/intel/pinctrl-intel.h index c4fef03b663f7b..95f89154cae86d 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.h +++ b/drivers/pinctrl/intel/pinctrl-intel.h @@ -244,6 +244,8 @@ struct intel_pinctrl { int irq; }; +int intel_pinctrl_probe(struct platform_device *pdev, + const struct intel_pinctrl_soc_data *soc_data); int intel_pinctrl_probe_by_hid(struct platform_device *pdev); int intel_pinctrl_probe_by_uid(struct platform_device *pdev); From ad3cc0f6d418f02ff6d6174a359d0ebec3e79204 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 14 Sep 2021 12:09:00 -0600 Subject: [PATCH 190/192] pinctrl: tigerlake: Workaround for old communities on System76 gaze16 --- drivers/pinctrl/intel/pinctrl-tigerlake.c | 71 ++++++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/drivers/pinctrl/intel/pinctrl-tigerlake.c b/drivers/pinctrl/intel/pinctrl-tigerlake.c index 0bcd19597e4ada..fdf193a3ac0d99 100644 --- a/drivers/pinctrl/intel/pinctrl-tigerlake.c +++ b/drivers/pinctrl/intel/pinctrl-tigerlake.c @@ -13,6 +13,8 @@ #include +#include + #include "pinctrl-intel.h" #define TGL_PAD_OWN 0x020 @@ -699,6 +701,73 @@ static const struct pinctrl_pin_desc tglh_pins[] = { PINCTRL_PIN(290, "CPU_TRSTB"), }; +static const struct intel_padgroup tglh_old_community0_gpps[] = { + TGL_GPP(0, 0, 24, 0), /* GPP_A */ + TGL_GPP(1, 25, 44, 128), /* GPP_R */ + TGL_GPP(2, 45, 70, 32), /* GPP_B */ + TGL_GPP(3, 71, 78, INTEL_GPIO_BASE_NOMAP), /* vGPIO_0 */ +}; + +static const struct intel_padgroup tglh_old_community1_gpps[] = { + TGL_GPP(0, 79, 104, 96), /* GPP_D */ + TGL_GPP(1, 105, 128, 64), /* GPP_C */ + TGL_GPP(2, 129, 136, 160), /* GPP_S */ + TGL_GPP(3, 137, 153, 192), /* GPP_G */ + TGL_GPP(4, 154, 180, 224), /* vGPIO */ +}; + +static const struct intel_padgroup tglh_old_community3_gpps[] = { + TGL_GPP(0, 181, 193, 256), /* GPP_E */ + TGL_GPP(1, 194, 217, 288), /* GPP_F */ +}; + +static const struct intel_padgroup tglh_old_community4_gpps[] = { + TGL_GPP(0, 218, 241, 320), /* GPP_H */ + TGL_GPP(1, 242, 251, 384), /* GPP_J */ + TGL_GPP(2, 252, 266, 352), /* GPP_K */ +}; + +static const struct intel_padgroup tglh_old_community5_gpps[] = { + TGL_GPP(0, 267, 281, 416), /* GPP_I */ + TGL_GPP(1, 282, 290, INTEL_GPIO_BASE_NOMAP), /* JTAG */ +}; + +static const struct intel_community tglh_old_communities[] = { + TGL_H_COMMUNITY(0, 0, 78, tglh_old_community0_gpps), + TGL_H_COMMUNITY(1, 79, 180, tglh_old_community1_gpps), + TGL_H_COMMUNITY(2, 181, 217, tglh_old_community3_gpps), + TGL_H_COMMUNITY(3, 218, 266, tglh_old_community4_gpps), + TGL_H_COMMUNITY(4, 267, 290, tglh_old_community5_gpps), +}; + +static const struct intel_pinctrl_soc_data tglh_old_soc_data = { + .pins = tglh_pins, + .npins = ARRAY_SIZE(tglh_pins), + .communities = tglh_old_communities, + .ncommunities = ARRAY_SIZE(tglh_old_communities), +}; + +static int tgl_pinctrl_probe(struct platform_device *pdev) +{ + const struct intel_pinctrl_soc_data *data; + + data = device_get_match_data(&pdev->dev); + if (!data) + return -ENODATA; + + /* + * The first System76 gaze16 firmware had an older version of + * the TGL-H GPIO table, before it was normalized with Windows. + */ + if (dmi_match(DMI_SYS_VENDOR, "System76") && + (dmi_match(DMI_PRODUCT_VERSION, "gaze16-3050") || + dmi_match(DMI_PRODUCT_VERSION, "gaze16-3060")) && + dmi_match(DMI_BIOS_VERSION, "2021-07-20_93c2809")) + data = &tglh_old_soc_data; + + return intel_pinctrl_probe(pdev, data); +} + static const struct intel_padgroup tglh_community0_gpps[] = { TGL_GPP(0, 0, 24, 0), /* GPP_A */ TGL_GPP(1, 25, 44, 32), /* GPP_R */ @@ -757,7 +826,7 @@ MODULE_DEVICE_TABLE(acpi, tgl_pinctrl_acpi_match); static INTEL_PINCTRL_PM_OPS(tgl_pinctrl_pm_ops); static struct platform_driver tgl_pinctrl_driver = { - .probe = intel_pinctrl_probe_by_hid, + .probe = tgl_pinctrl_probe, .driver = { .name = "tigerlake-pinctrl", .acpi_match_table = tgl_pinctrl_acpi_match, From 86cd5faa874b68d8af99743e5e8b0c5feddf942d Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 24 Sep 2021 13:45:38 -0600 Subject: [PATCH 191/192] Disable tb_acpi_is_native for System76 coreboot machines --- drivers/thunderbolt/acpi.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/thunderbolt/acpi.c b/drivers/thunderbolt/acpi.c index b67e72d5644b3b..0fba37d205003a 100644 --- a/drivers/thunderbolt/acpi.c +++ b/drivers/thunderbolt/acpi.c @@ -8,6 +8,8 @@ #include +#include + #include "tb.h" static acpi_status tb_acpi_add_link(acpi_handle handle, u32 level, void *data, @@ -125,6 +127,11 @@ void tb_acpi_add_links(struct tb_nhi *nhi) */ bool tb_acpi_is_native(void) { + // System76 devices using coreboot only support firmware based connection manager + if (dmi_match(DMI_SYS_VENDOR, "System76") && + dmi_match(DMI_BIOS_VENDOR, "coreboot")) + return false; + return osc_sb_native_usb4_support_confirmed && osc_sb_native_usb4_control; } From e45c7f0e819f611d1f1cd54856001f7bdc71202d Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 1 Dec 2021 06:55:52 -0700 Subject: [PATCH 192/192] DROP ON REBASE: 5.15.6-76051506.202112010437 based on 5.15.6-051506.202112010437 Signed-off-by: Jeremy Soller --- debian.master/abi/modules.ignore | 11 + debian.master/changelog | 6 +- debian/canonical-certs.pem | 246 ++++++++++ debian/canonical-revoked-certs.pem | 86 ++++ debian/changelog | 6 + debian/control | 663 +++++++++++++++++++++++++++ debian/copyright | 29 ++ scripts/ubuntu-retpoline-extract-one | 270 +++++++++++ 8 files changed, 1314 insertions(+), 3 deletions(-) create mode 100644 debian.master/abi/modules.ignore create mode 100644 debian/canonical-certs.pem create mode 100644 debian/canonical-revoked-certs.pem create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 scripts/ubuntu-retpoline-extract-one diff --git a/debian.master/abi/modules.ignore b/debian.master/abi/modules.ignore new file mode 100644 index 00000000000000..987d577ec9e8e3 --- /dev/null +++ b/debian.master/abi/modules.ignore @@ -0,0 +1,11 @@ +icp +spl +splat +zavl +zcommon +zfs +zlua +znvpair +zpios +zunicode +zzstd diff --git a/debian.master/changelog b/debian.master/changelog index ba57d719cea6cc..fbf5d6de4b7617 100644 --- a/debian.master/changelog +++ b/debian.master/changelog @@ -1,6 +1,6 @@ -linux (5.15.6-051506.202112010437) jammy; urgency=low +linux (5.15.6-76051506.202112010437) jammy; urgency=low + [ Mainline Build ] Mainline build at commit: v5.15.6 - -- Mainline Build Wed, 01 Dec 2021 04:37:57 -0500 - + -- Jeremy Soller Wed, 01 Dec 2021 06:55:51 -0700 diff --git a/debian/canonical-certs.pem b/debian/canonical-certs.pem new file mode 100644 index 00000000000000..6972cf6a7c1bbd --- /dev/null +++ b/debian/canonical-certs.pem @@ -0,0 +1,246 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + c7:7e:51:6a:1c:25:cd:40 + Signature Algorithm: sha512WithRSAEncryption + Issuer: CN = Canonical Ltd. Live Patch Signing + Validity + Not Before: Jul 18 23:41:27 2016 GMT + Not After : Jul 16 23:41:27 2026 GMT + Subject: CN = Canonical Ltd. Live Patch Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public-Key: (4096 bit) + Modulus: + 00:bd:74:ee:72:b3:4a:ab:e6:31:e8:29:24:c2:bd: + 46:98:32:c0:39:ee:a3:fb:8a:ad:fe:ab:1a:5b:a3: + 2e:a1:80:db:79:61:9e:47:79:2c:75:57:a2:21:f0: + 93:f6:87:f2:9b:4b:9d:2f:b3:58:61:28:3c:41:70: + 13:16:a1:72:90:c9:d5:16:71:7c:e0:30:f9:28:5e: + 48:20:36:00:69:b7:59:9f:a3:ec:a8:eb:55:41:9f: + 38:1e:22:4a:57:20:f4:83:59:49:c5:00:93:d3:33: + 02:92:d1:fc:f0:84:3b:4a:5b:8f:b6:73:9a:89:fa: + 30:1e:e6:2a:68:f2:91:ef:59:57:3d:dc:1c:52:6f: + 5e:e6:9b:b5:b8:7c:98:c9:13:d1:39:68:01:67:91: + e0:d3:67:72:16:0a:5e:16:83:45:31:4f:b5:2b:b3: + f6:40:86:89:3a:84:6e:6f:16:61:bc:70:84:be:5a: + 13:36:7b:82:ea:07:19:fc:18:c1:16:c6:32:0b:7d: + 2c:6b:c4:21:b9:38:6b:31:dc:d9:0c:ad:56:40:68: + 7c:e3:c6:64:8e:bf:1c:e0:72:3e:6c:db:d2:73:79: + da:d7:c5:2f:5d:04:7d:b0:07:1e:95:dd:2a:47:5e: + bf:3e:3a:c8:66:f6:67:0f:d4:2a:f1:e2:71:59:d2: + 6c:7b:a0:37:ac:e6:97:80:30:13:97:48:d5:74:fc: + 38:68:e4:57:cb:99:69:5a:84:27:ac:98:51:e4:64: + bd:91:62:e8:58:27:06:2a:b9:0b:b8:08:e5:e5:b4: + 51:a7:a2:10:df:4e:07:6c:a0:3b:96:f2:6e:df:75: + 8c:97:1e:64:a0:9a:86:9b:98:26:f9:d8:b7:de:5b: + 21:b7:af:89:01:a3:f7:98:6b:da:19:ba:86:ef:ef: + f1:ce:bb:2f:89:ed:c0:b6:1b:e5:5b:f8:90:11:9a: + 52:93:e9:be:f7:35:b9:08:cb:ba:c3:ed:2f:73:af: + cc:96:07:55:b5:de:f6:03:f6:f1:89:f9:21:40:76: + c1:69:f2:61:cc:9a:94:df:9c:ec:6a:65:38:be:d1: + 4e:2a:87:c7:2f:3e:53:ae:8b:9f:54:a1:09:59:64: + 25:aa:a9:d8:44:a9:a8:a0:71:e1:32:aa:4c:32:fd: + 44:28:cc:9c:6f:8e:db:81:7e:6f:fa:00:56:c5:e5: + 03:46:63:fb:8e:71:8d:e3:13:91:9f:ac:60:3e:64: + f3:df:25:34:09:fa:2d:96:9f:16:05:ea:93:f5:e6: + 00:08:27:32:7b:3c:bd:ee:70:24:6c:3b:55:e9:db: + f4:10:2d:20:06:b4:ca:e9:29:65:55:ad:f6:52:54: + 5f:e5:a3 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Key Usage: + Digital Signature + X509v3 Subject Key Identifier: + 14:DF:34:D1:A8:7C:F3:76:25:AB:EC:03:9E:F2:BF:52:12:49:B9:69 + X509v3 Authority Key Identifier: + keyid:14:DF:34:D1:A8:7C:F3:76:25:AB:EC:03:9E:F2:BF:52:12:49:B9:69 + + Signature Algorithm: sha512WithRSAEncryption + 30:e7:48:02:37:e9:28:cf:04:a2:4d:5c:fa:d8:4e:c9:76:c7: + 14:3f:bd:2c:51:3d:33:f0:1a:bc:49:f1:47:95:8f:69:d8:a9: + 54:14:44:6c:4d:9f:55:82:08:1e:c6:5b:d5:91:d9:bc:2e:b0: + af:d6:25:65:74:96:aa:36:de:ae:31:a8:11:f2:a4:2c:5a:e1: + 4f:73:f8:4a:c3:35:b0:76:96:71:f2:b5:7d:4b:75:ee:5d:bf: + 86:a5:ba:0b:a9:52:cb:ec:ab:e5:23:4b:f2:74:55:28:17:1e: + b3:ac:27:ad:45:13:6e:69:b3:5a:be:42:36:29:48:db:e7:5c: + 22:58:a0:90:82:2c:2a:21:2b:db:f4:64:b7:91:5d:1f:2c:48: + a4:1a:85:e3:86:a5:aa:19:cd:19:e8:a5:fb:a3:7b:94:77:48: + 25:a4:cf:a0:cf:71:82:5c:6f:71:22:7c:d6:97:a0:53:bb:ec: + 30:f6:cb:16:fb:7b:fd:16:94:7a:53:6e:bd:04:64:a2:01:10: + 9f:f0:5b:b5:a6:73:41:9d:5f:6f:45:73:0d:05:f7:30:6d:39: + 90:b6:7d:55:7d:4c:2f:ae:5f:38:56:2f:8b:df:f4:bf:12:06: + 93:6e:0d:02:23:bf:71:91:57:88:e8:bd:62:72:99:00:40:29: + 1e:c9:13:11:da:7e:8e:e1:d2:a5:0d:bf:f7:d6:ec:01:0d:89: + 41:cd:d5:dc:d2:f7:5f:33:0d:4c:2f:85:b7:85:b7:81:e4:17: + 29:f0:74:cf:0e:15:8c:1a:50:0b:08:63:1a:91:4f:e7:76:97: + f1:d4:3b:7e:72:d4:c5:45:58:0c:6a:e9:0d:f2:85:d8:91:1e: + 37:bd:78:e3:39:4d:2e:fd:85:31:c1:a6:3b:6a:cc:2c:53:72: + 1d:8e:7b:f0:e6:76:86:09:6f:1a:f3:e4:a1:e2:dd:76:5f:b0: + 8c:e2:2a:54:5d:c1:88:49:90:10:15:42:7d:05:24:53:8c:54: + ff:48:18:1a:36:e3:31:d3:54:32:78:0d:fe:f2:3d:aa:0d:37: + 15:84:b4:36:47:31:e8:85:6e:0b:58:38:ff:21:91:09:c9:a8: + 43:a3:ea:60:cb:7e:ed:f7:41:6f:4e:91:c1:fd:77:46:e7:d4: + e7:86:c0:1b:fd:50:6c:aa:be:00:b3:63:02:ff:4e:c7:a5:57: + 6e:29:64:e9:54:d5:30:63:38:5f:2d:5a:db:49:5f:14:14:22: + d2:81:1f:61:9e:ee:ee:16:66:d6:bc:bd:ac:1b:5c:fb:38:31: + 95:33:2e:84:6e:7a:de:ee:b9:fc:97:17:06:13:bf:70:1c:6e: + 76:ed:66:38:e2:70:08:00 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIJAMd+UWocJc1AMA0GCSqGSIb3DQEBDQUAMCwxKjAoBgNV +BAMMIUNhbm9uaWNhbCBMdGQuIExpdmUgUGF0Y2ggU2lnbmluZzAeFw0xNjA3MTgy +MzQxMjdaFw0yNjA3MTYyMzQxMjdaMCwxKjAoBgNVBAMMIUNhbm9uaWNhbCBMdGQu +IExpdmUgUGF0Y2ggU2lnbmluZzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC +ggIBAL107nKzSqvmMegpJMK9RpgywDnuo/uKrf6rGlujLqGA23lhnkd5LHVXoiHw +k/aH8ptLnS+zWGEoPEFwExahcpDJ1RZxfOAw+SheSCA2AGm3WZ+j7KjrVUGfOB4i +Slcg9INZScUAk9MzApLR/PCEO0pbj7Zzmon6MB7mKmjyke9ZVz3cHFJvXuabtbh8 +mMkT0TloAWeR4NNnchYKXhaDRTFPtSuz9kCGiTqEbm8WYbxwhL5aEzZ7guoHGfwY +wRbGMgt9LGvEIbk4azHc2QytVkBofOPGZI6/HOByPmzb0nN52tfFL10EfbAHHpXd +Kkdevz46yGb2Zw/UKvHicVnSbHugN6zml4AwE5dI1XT8OGjkV8uZaVqEJ6yYUeRk +vZFi6FgnBiq5C7gI5eW0UaeiEN9OB2ygO5bybt91jJceZKCahpuYJvnYt95bIbev +iQGj95hr2hm6hu/v8c67L4ntwLYb5Vv4kBGaUpPpvvc1uQjLusPtL3OvzJYHVbXe +9gP28Yn5IUB2wWnyYcyalN+c7GplOL7RTiqHxy8+U66Ln1ShCVlkJaqp2ESpqKBx +4TKqTDL9RCjMnG+O24F+b/oAVsXlA0Zj+45xjeMTkZ+sYD5k898lNAn6LZafFgXq +k/XmAAgnMns8ve5wJGw7Venb9BAtIAa0yukpZVWt9lJUX+WjAgMBAAGjXTBbMAwG +A1UdEwEB/wQCMAAwCwYDVR0PBAQDAgeAMB0GA1UdDgQWBBQU3zTRqHzzdiWr7AOe +8r9SEkm5aTAfBgNVHSMEGDAWgBQU3zTRqHzzdiWr7AOe8r9SEkm5aTANBgkqhkiG +9w0BAQ0FAAOCAgEAMOdIAjfpKM8Eok1c+thOyXbHFD+9LFE9M/AavEnxR5WPadip +VBREbE2fVYIIHsZb1ZHZvC6wr9YlZXSWqjberjGoEfKkLFrhT3P4SsM1sHaWcfK1 +fUt17l2/hqW6C6lSy+yr5SNL8nRVKBces6wnrUUTbmmzWr5CNilI2+dcIligkIIs +KiEr2/Rkt5FdHyxIpBqF44alqhnNGeil+6N7lHdIJaTPoM9xglxvcSJ81pegU7vs +MPbLFvt7/RaUelNuvQRkogEQn/BbtaZzQZ1fb0VzDQX3MG05kLZ9VX1ML65fOFYv +i9/0vxIGk24NAiO/cZFXiOi9YnKZAEApHskTEdp+juHSpQ2/99bsAQ2JQc3V3NL3 +XzMNTC+Ft4W3geQXKfB0zw4VjBpQCwhjGpFP53aX8dQ7fnLUxUVYDGrpDfKF2JEe +N7144zlNLv2FMcGmO2rMLFNyHY578OZ2hglvGvPkoeLddl+wjOIqVF3BiEmQEBVC +fQUkU4xU/0gYGjbjMdNUMngN/vI9qg03FYS0Nkcx6IVuC1g4/yGRCcmoQ6PqYMt+ +7fdBb06Rwf13RufU54bAG/1QbKq+ALNjAv9Ox6VXbilk6VTVMGM4Xy1a20lfFBQi +0oEfYZ7u7hZm1ry9rBtc+zgxlTMuhG563u65/JcXBhO/cBxudu1mOOJwCAA= +-----END CERTIFICATE----- +Certificate: + Data: + Version: 3 (0x2) + Serial Number: + e9:df:13:0f:92:92:a9:b7 + Signature Algorithm: sha512WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Kernel Module Signing + Validity + Not Before: May 31 16:06:09 2016 GMT + Not After : May 29 16:06:09 2026 GMT + Subject: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Kernel Module Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public-Key: (4096 bit) + Modulus: + 00:b3:b0:4f:c6:0a:77:8b:f9:d1:53:33:34:d2:80: + b5:63:6f:e1:f6:a2:83:99:d5:b6:b1:e4:99:91:fa: + 6c:19:c6:d0:91:2a:b9:7d:b5:98:a6:0d:28:01:b8: + 7c:8e:aa:38:ec:51:37:33:96:f0:b0:9b:8d:86:5f: + 67:23:69:2f:d7:c2:f3:fb:c5:d7:f9:04:ff:f2:e5: + 61:68:b7:29:b9:c6:8e:4b:4d:2d:8f:92:0c:00:b3: + a3:d2:5a:08:64:cd:f2:09:0b:a5:0e:e6:64:75:d5: + 41:f4:4d:49:3a:0d:dc:b9:27:8e:c4:d6:b1:df:8f: + 6c:f0:e4:f7:31:cb:a9:04:a1:f9:a7:aa:15:da:59: + 03:4d:46:14:d0:dd:bf:e0:f5:9e:f0:71:0c:70:78: + 2b:08:fb:e0:b6:68:a4:74:12:9d:f7:f2:64:88:17: + 2a:8a:ed:1a:91:b5:6c:13:bd:4c:10:0a:0b:72:0b: + 90:db:7d:f3:78:44:4c:d2:a5:41:f7:1c:77:7d:5a: + 8a:54:bc:8f:fe:b7:ee:e1:bc:59:37:c4:d4:e8:14: + d0:5b:42:9b:04:00:8e:6d:83:8a:25:21:5b:08:c4: + 7b:b2:d9:99:52:c9:5e:59:6d:c4:aa:52:59:e2:e4: + 2f:7e:7e:ac:05:01:99:bf:13:72:b7:45:c5:17:da: + 8a:d5:3e:71:73:2e:d8:aa:e6:eb:5a:d0:9a:c4:93: + f3:be:eb:d2:47:25:34:16:29:fa:dd:9a:2f:b1:20: + e5:41:4e:ed:ea:51:7c:23:80:ba:3d:b5:3a:0b:8c: + 9c:85:48:6c:3c:8b:29:2f:2f:12:c7:52:34:02:ea: + 0f:ac:53:23:3c:f8:3e:40:1b:30:63:e9:2d:e6:f6: + 58:cc:51:f9:eb:08:4a:b4:c7:16:80:d1:8b:c2:64: + 6a:71:a9:70:31:a4:a7:3a:c0:93:99:1b:0e:42:c1: + 00:6d:43:27:99:6c:e5:fd:23:16:c1:8e:b5:66:17: + 2b:4c:53:5a:6d:1e:96:16:13:6a:c6:d4:85:5b:74: + 2e:ce:7c:45:2f:ad:cb:75:9e:5e:91:bd:9a:6a:86: + 1a:06:bd:39:be:a3:50:56:ea:e1:f6:e3:95:69:d7: + 31:e4:66:f7:36:b5:51:c2:22:b4:9c:74:9c:44:0b: + 0e:16:5f:53:f0:23:c6:b9:40:bd:d6:b8:7d:1b:f6: + 73:f6:27:e7:c0:e3:65:a0:58:ab:5c:59:b7:80:8c: + 8c:04:b4:a9:ae:a0:51:40:10:3b:63:59:49:87:d1: + 9b:df:a3:8c:c4:2e:eb:70:c1:0a:18:1f:cb:22:c2: + f2:4a:65:0d:e5:81:74:d8:ce:72:c6:35:be:ba:63: + 72:c4:f9 + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Key Usage: + Digital Signature + X509v3 Subject Key Identifier: + 88:F7:52:E5:60:A1:E0:73:7E:31:16:3A:46:6A:D7:B7:0A:85:0C:19 + X509v3 Authority Key Identifier: + keyid:88:F7:52:E5:60:A1:E0:73:7E:31:16:3A:46:6A:D7:B7:0A:85:0C:19 + + Signature Algorithm: sha512WithRSAEncryption + 04:85:16:27:58:ba:71:28:57:86:7b:c2:83:db:e5:72:6f:1e: + b2:1c:63:b0:db:ad:c0:42:96:c0:4f:65:f6:35:4d:c0:07:0d: + 46:be:d3:1e:ec:f1:22:18:2a:18:5d:bb:69:a6:a6:d4:0d:c3: + 57:03:b9:e7:45:49:28:ca:6d:98:17:68:97:cb:7b:36:81:0a: + 37:9e:34:79:f3:e1:0e:5b:77:43:bb:5a:a5:45:b7:16:50:86: + fd:12:a4:96:0f:15:19:09:1c:e1:fa:80:a5:80:09:be:bb:c8: + 26:0b:3e:de:03:d2:c2:18:a4:8d:0d:de:c5:32:82:0b:fb:75: + 55:66:1a:2a:bb:e4:bd:25:91:20:15:d4:be:b8:3f:53:e3:fb: + a8:c3:55:e3:d5:e7:82:18:95:df:39:09:a7:fc:89:6e:b4:1c: + aa:2d:e8:67:c2:0d:34:34:3e:f9:fa:0b:ce:81:92:11:ae:12: + 0a:fe:35:63:ce:46:29:c4:2b:4f:cb:4e:05:0a:a1:11:e2:35: + f6:5a:5d:b5:e8:d2:6f:4c:fc:3d:24:a6:03:4b:dd:98:6b:f2: + 71:58:16:1d:a5:25:ef:d9:06:7c:e8:db:7b:88:6a:89:5c:59: + 01:92:64:db:44:08:63:6c:7c:32:d6:55:98:63:09:26:61:67: + 0a:fe:5d:ee:fd:23:59:b3:4d:91:c1:4d:41:8b:cd:20:58:fa: + 2d:45:e5:bd:1d:69:5c:03:a0:49:a6:97:54:13:b6:c9:e0:f8: + 56:83:a1:2a:c3:f4:6c:fd:ab:20:ca:3d:9c:95:c0:cf:04:bb: + 46:39:cf:34:81:65:45:27:64:01:7d:62:b3:b8:72:ea:10:d5: + 0f:53:7d:39:88:25:09:6f:8c:bc:e0:49:bb:39:e2:0e:8d:cf: + 56:4d:c1:82:6d:87:d2:e7:fc:c0:9f:a7:65:60:d2:6c:65:18: + 59:38:6e:d0:9c:d7:c3:81:9a:9a:29:8f:83:84:c3:b5:44:ff: + 28:ac:13:17:64:f2:26:13:d9:55:06:b7:69:68:7c:bf:ec:d1: + 8c:ef:b7:da:76:e1:07:73:c6:31:62:31:cb:b6:e1:e7:7f:0c: + c3:f7:4c:52:be:25:36:8e:a1:bb:60:02:c3:cb:3e:6f:29:fc: + 7f:6a:fa:f8:ec:0a:df:49:e2:57:0e:bc:bd:93:c3:1b:d5:36: + 8a:ff:d8:1b:17:c7:1f:cb:69:00:d2:54:9e:ad:61:89:92:95: + 11:f8:ea:17:83:9f:9b:09:7d:b8:94:a4:ea:f5:ae:ea:dc:dd: + 62:b9:9e:68:9c:18:ec:19:c4:13:08:c8:b1:62:ab:8e:84:69: + 11:3c:da:ea:0d:b7:22:bd +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIJAOnfEw+Skqm3MA0GCSqGSIb3DQEBDQUAMH0xCzAJBgNV +BAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEQMA4GA1UEBwwHRG91Z2xhczEX +MBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xLTArBgNVBAMMJENhbm9uaWNhbCBMdGQu +IEtlcm5lbCBNb2R1bGUgU2lnbmluZzAeFw0xNjA1MzExNjA2MDlaFw0yNjA1Mjkx +NjA2MDlaMH0xCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEQMA4G +A1UEBwwHRG91Z2xhczEXMBUGA1UECgwOQ2Fub25pY2FsIEx0ZC4xLTArBgNVBAMM +JENhbm9uaWNhbCBMdGQuIEtlcm5lbCBNb2R1bGUgU2lnbmluZzCCAiIwDQYJKoZI +hvcNAQEBBQADggIPADCCAgoCggIBALOwT8YKd4v50VMzNNKAtWNv4faig5nVtrHk +mZH6bBnG0JEquX21mKYNKAG4fI6qOOxRNzOW8LCbjYZfZyNpL9fC8/vF1/kE//Ll +YWi3KbnGjktNLY+SDACzo9JaCGTN8gkLpQ7mZHXVQfRNSToN3LknjsTWsd+PbPDk +9zHLqQSh+aeqFdpZA01GFNDdv+D1nvBxDHB4Kwj74LZopHQSnffyZIgXKortGpG1 +bBO9TBAKC3ILkNt983hETNKlQfccd31ailS8j/637uG8WTfE1OgU0FtCmwQAjm2D +iiUhWwjEe7LZmVLJXlltxKpSWeLkL35+rAUBmb8TcrdFxRfaitU+cXMu2Krm61rQ +msST877r0kclNBYp+t2aL7Eg5UFO7epRfCOAuj21OguMnIVIbDyLKS8vEsdSNALq +D6xTIzz4PkAbMGPpLeb2WMxR+esISrTHFoDRi8JkanGpcDGkpzrAk5kbDkLBAG1D +J5ls5f0jFsGOtWYXK0xTWm0elhYTasbUhVt0Ls58RS+ty3WeXpG9mmqGGga9Ob6j +UFbq4fbjlWnXMeRm9za1UcIitJx0nEQLDhZfU/AjxrlAvda4fRv2c/Yn58DjZaBY +q1xZt4CMjAS0qa6gUUAQO2NZSYfRm9+jjMQu63DBChgfyyLC8kplDeWBdNjOcsY1 +vrpjcsT5AgMBAAGjXTBbMAwGA1UdEwEB/wQCMAAwCwYDVR0PBAQDAgeAMB0GA1Ud +DgQWBBSI91LlYKHgc34xFjpGate3CoUMGTAfBgNVHSMEGDAWgBSI91LlYKHgc34x +FjpGate3CoUMGTANBgkqhkiG9w0BAQ0FAAOCAgEABIUWJ1i6cShXhnvCg9vlcm8e +shxjsNutwEKWwE9l9jVNwAcNRr7THuzxIhgqGF27aaam1A3DVwO550VJKMptmBdo +l8t7NoEKN540efPhDlt3Q7tapUW3FlCG/RKklg8VGQkc4fqApYAJvrvIJgs+3gPS +whikjQ3exTKCC/t1VWYaKrvkvSWRIBXUvrg/U+P7qMNV49XnghiV3zkJp/yJbrQc +qi3oZ8INNDQ++foLzoGSEa4SCv41Y85GKcQrT8tOBQqhEeI19lpdtejSb0z8PSSm +A0vdmGvycVgWHaUl79kGfOjbe4hqiVxZAZJk20QIY2x8MtZVmGMJJmFnCv5d7v0j +WbNNkcFNQYvNIFj6LUXlvR1pXAOgSaaXVBO2yeD4VoOhKsP0bP2rIMo9nJXAzwS7 +RjnPNIFlRSdkAX1is7hy6hDVD1N9OYglCW+MvOBJuzniDo3PVk3Bgm2H0uf8wJ+n +ZWDSbGUYWThu0JzXw4GamimPg4TDtUT/KKwTF2TyJhPZVQa3aWh8v+zRjO+32nbh +B3PGMWIxy7bh538Mw/dMUr4lNo6hu2ACw8s+byn8f2r6+OwK30niVw68vZPDG9U2 +iv/YGxfHH8tpANJUnq1hiZKVEfjqF4Ofmwl9uJSk6vWu6tzdYrmeaJwY7BnEEwjI +sWKrjoRpETza6g23Ir0= +-----END CERTIFICATE----- diff --git a/debian/canonical-revoked-certs.pem b/debian/canonical-revoked-certs.pem new file mode 100644 index 00000000000000..06c116eec54fe7 --- /dev/null +++ b/debian/canonical-revoked-certs.pem @@ -0,0 +1,86 @@ +Certificate: + Data: + Version: 3 (0x2) + Serial Number: 1 (0x1) + Signature Algorithm: sha256WithRSAEncryption + Issuer: C = GB, ST = Isle of Man, L = Douglas, O = Canonical Ltd., CN = Canonical Ltd. Master Certificate Authority + Validity + Not Before: Apr 12 11:39:08 2012 GMT + Not After : Apr 11 11:39:08 2042 GMT + Subject: C = GB, ST = Isle of Man, O = Canonical Ltd., OU = Secure Boot, CN = Canonical Ltd. Secure Boot Signing + Subject Public Key Info: + Public Key Algorithm: rsaEncryption + RSA Public-Key: (2048 bit) + Modulus: + 00:c9:5f:9b:62:8f:0b:b0:64:82:ac:be:c9:e2:62: + e3:4b:d2:9f:1e:8a:d5:61:1a:2b:5d:38:f4:b7:ce: + b9:9a:b8:43:b8:43:97:77:ab:4f:7f:0c:70:46:0b: + fc:7f:6d:c6:6d:ea:80:5e:01:d2:b7:66:1e:87:de: + 0d:6d:d0:41:97:a8:a5:af:0c:63:4f:f7:7c:c2:52: + cc:a0:31:a9:bb:89:5d:99:1e:46:6f:55:73:b9:76: + 69:ec:d7:c1:fc:21:d6:c6:07:e7:4f:bd:22:de:e4: + a8:5b:2d:db:95:34:19:97:d6:28:4b:21:4c:ca:bb: + 1d:79:a6:17:7f:5a:f9:67:e6:5c:78:45:3d:10:6d: + b0:17:59:26:11:c5:57:e3:7f:4e:82:ba:f6:2c:4e: + c8:37:4d:ff:85:15:84:47:e0:ed:3b:7c:7f:bc:af: + e9:01:05:a7:0c:6f:c3:e9:8d:a3:ce:be:a6:e3:cd: + 3c:b5:58:2c:9e:c2:03:1c:60:22:37:39:ff:41:02: + c1:29:a4:65:51:ff:33:34:aa:42:15:f9:95:78:fc: + 2d:f5:da:8a:85:7c:82:9d:fb:37:2c:6b:a5:a8:df: + 7c:55:0b:80:2e:3c:b0:63:e1:cd:38:48:89:e8:14: + 06:0b:82:bc:fd:d4:07:68:1b:0f:3e:d9:15:dd:94: + 11:1b + Exponent: 65537 (0x10001) + X509v3 extensions: + X509v3 Basic Constraints: critical + CA:FALSE + X509v3 Extended Key Usage: + Code Signing, 1.3.6.1.4.1.311.10.3.6 + Netscape Comment: + OpenSSL Generated Certificate + X509v3 Subject Key Identifier: + 61:48:2A:A2:83:0D:0A:B2:AD:5A:F1:0B:72:50:DA:90:33:DD:CE:F0 + X509v3 Authority Key Identifier: + keyid:AD:91:99:0B:C2:2A:B1:F5:17:04:8C:23:B6:65:5A:26:8E:34:5A:63 + + Signature Algorithm: sha256WithRSAEncryption + 8f:8a:a1:06:1f:29:b7:0a:4a:d5:c5:fd:81:ab:25:ea:c0:7d: + e2:fc:6a:96:a0:79:93:67:ee:05:0e:25:12:25:e4:5a:f6:aa: + 1a:f1:12:f3:05:8d:87:5e:f1:5a:5c:cb:8d:23:73:65:1d:15: + b9:de:22:6b:d6:49:67:c9:a3:c6:d7:62:4e:5c:b5:f9:03:83: + 40:81:dc:87:9c:3c:3f:1c:0d:51:9f:94:65:0a:84:48:67:e4: + a2:f8:a6:4a:f0:e7:cd:cd:bd:94:e3:09:d2:5d:2d:16:1b:05: + 15:0b:cb:44:b4:3e:61:42:22:c4:2a:5c:4e:c5:1d:a3:e2:e0: + 52:b2:eb:f4:8b:2b:dc:38:39:5d:fb:88:a1:56:65:5f:2b:4f: + 26:ff:06:78:10:12:eb:8c:5d:32:e3:c6:45:af:25:9b:a0:ff: + 8e:ef:47:09:a3:e9:8b:37:92:92:69:76:7e:34:3b:92:05:67: + 4e:b0:25:ed:bc:5e:5f:8f:b4:d6:ca:40:ff:e4:e2:31:23:0c: + 85:25:ae:0c:55:01:ec:e5:47:5e:df:5b:bc:14:33:e3:c6:f5: + 18:b6:d9:f7:dd:b3:b4:a1:31:d3:5a:5c:5d:7d:3e:bf:0a:e4: + e4:e8:b4:59:7d:3b:b4:8c:a3:1b:b5:20:a3:b9:3e:84:6f:8c: + 21:00:c3:39 +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIBATANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMCR0Ix +FDASBgNVBAgMC0lzbGUgb2YgTWFuMRAwDgYDVQQHDAdEb3VnbGFzMRcwFQYDVQQK +DA5DYW5vbmljYWwgTHRkLjE0MDIGA1UEAwwrQ2Fub25pY2FsIEx0ZC4gTWFzdGVy +IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0xMjA0MTIxMTM5MDhaFw00MjA0MTEx +MTM5MDhaMH8xCzAJBgNVBAYTAkdCMRQwEgYDVQQIDAtJc2xlIG9mIE1hbjEXMBUG +A1UECgwOQ2Fub25pY2FsIEx0ZC4xFDASBgNVBAsMC1NlY3VyZSBCb290MSswKQYD +VQQDDCJDYW5vbmljYWwgTHRkLiBTZWN1cmUgQm9vdCBTaWduaW5nMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyV+bYo8LsGSCrL7J4mLjS9KfHorVYRor +XTj0t865mrhDuEOXd6tPfwxwRgv8f23GbeqAXgHSt2Yeh94NbdBBl6ilrwxjT/d8 +wlLMoDGpu4ldmR5Gb1VzuXZp7NfB/CHWxgfnT70i3uSoWy3blTQZl9YoSyFMyrsd +eaYXf1r5Z+ZceEU9EG2wF1kmEcVX439Ogrr2LE7IN03/hRWER+DtO3x/vK/pAQWn +DG/D6Y2jzr6m4808tVgsnsIDHGAiNzn/QQLBKaRlUf8zNKpCFfmVePwt9dqKhXyC +nfs3LGulqN98VQuALjywY+HNOEiJ6BQGC4K8/dQHaBsPPtkV3ZQRGwIDAQABo4Gg +MIGdMAwGA1UdEwEB/wQCMAAwHwYDVR0lBBgwFgYIKwYBBQUHAwMGCisGAQQBgjcK +AwYwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRl +MB0GA1UdDgQWBBRhSCqigw0Ksq1a8QtyUNqQM93O8DAfBgNVHSMEGDAWgBStkZkL +wiqx9RcEjCO2ZVomjjRaYzANBgkqhkiG9w0BAQsFAAOCAQEAj4qhBh8ptwpK1cX9 +gasl6sB94vxqlqB5k2fuBQ4lEiXkWvaqGvES8wWNh17xWlzLjSNzZR0Vud4ia9ZJ +Z8mjxtdiTly1+QODQIHch5w8PxwNUZ+UZQqESGfkovimSvDnzc29lOMJ0l0tFhsF +FQvLRLQ+YUIixCpcTsUdo+LgUrLr9Isr3Dg5XfuIoVZlXytPJv8GeBAS64xdMuPG +Ra8lm6D/ju9HCaPpizeSkml2fjQ7kgVnTrAl7bxeX4+01spA/+TiMSMMhSWuDFUB +7OVHXt9bvBQz48b1GLbZ992ztKEx01pcXX0+vwrk5Oi0WX07tIyjG7Ugo7k+hG+M +IQDDOQ== +-----END CERTIFICATE----- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000000000..fbf5d6de4b7617 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +linux (5.15.6-76051506.202112010437) jammy; urgency=low + + [ Mainline Build ] + Mainline build at commit: v5.15.6 + + -- Jeremy Soller Wed, 01 Dec 2021 06:55:51 -0700 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000000000..4e5c5f63ace18a --- /dev/null +++ b/debian/control @@ -0,0 +1,663 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + cpio, + kmod , + makedumpfile [amd64] , + libcap-dev , + libelf-dev , + libnewt-dev , + libiberty-dev , + default-jdk-headless , + java-common , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + gawk , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , + libnuma-dev [amd64 arm64 ppc64el s390x] , + dkms , + curl , + zstd [amd64 s390x] , + dwarves [amd64 arm64 armhf ppc64el s390x] , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-sphinx , + python3-sphinx-rtd-theme , + fontconfig , + python3-docutils , + imagemagick , + graphviz , + dvipng , + fonts-noto-cjk , + latexmk , + librsvg2-bin , +Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: linux-source-5.15.6 +Build-Profiles: +Architecture: all +Section: devel +Priority: optional +Provides: linux-source +Depends: ${misc:Depends}, binutils, bzip2, coreutils +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version 5.15.6 with Ubuntu patches + This package provides the source code for the Linux kernel version + 5.15.6. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: linux-headers-5.15.6-76051506 +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version 5.15.6 + This package provides kernel header files for version 5.15.6, for sites + that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-5.15.6-76051506/debian.README.gz for details + +Package: linux-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, lsb-release +Description: Linux kernel version specific tools for version 5.15.6 + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 5.15.6. + +Package: linux-tools-5.15.6-76051506 +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 5.15.6-76051506 on + 64 bit x86. + You probably want to install linux-tools-5.15.6-76051506-. + +Package: linux-cloud-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel version specific cloud tools for version 5.15.6 + This package provides the architecture independent parts for kernel + version locked tools for cloud tools for version 5.15.6. + +Package: linux-cloud-tools-5.15.6-76051506 +Build-Profiles: +Architecture: amd64 armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version 5.15.6-76051506 on + 64 bit x86. + You probably want to install linux-cloud-tools-5.15.6-76051506-. + +Package: linux-tools-host +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, python3 +Description: Linux kernel VM host tools + This package provides kernel tools useful for VM hosts. + +# linux-meta { + +Package: linux-headers-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Depends: + ${misc:Depends}, + linux-headers-5.15.6-76051506-generic (= ${source:Version}) +Description: Generic Linux kernel headers + This package will always depend on the latest generic kernel headers + available. + +Package: linux-image-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Depends: + ${misc:Depends}, + linux-image-5.15.6-76051506-generic (= ${source:Version}), + linux-firmware, + intel-microcode [amd64], + amd64-microcode [amd64] +Recommends: thermald [amd64] +Description: Generic Linux kernel image + This package will always depend on the latest generic kernel image + available. + +Package: linux-tools-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Provides: linux-tools +Depends: + ${misc:Depends}, + linux-tools-5.15.6-76051506-generic (= ${source:Version}) +Description: Generic Linux kernel tools + This package will always depend on the latest generic kernel tools + available. + +Package: linux-cloud-tools-generic +Build-Profiles: +Architecture: amd64 +Section: kernel +Provides: linux-cloud-tools +Depends: + ${misc:Depends}, + linux-cloud-tools-5.15.6-76051506-generic (= ${source:Version}) +Description: Generic Linux kernel cloud tools + This package will always depend on the latest generic kernel cloud tools + available. + +Package: linux-generic +Build-Profiles: +Architecture: amd64 armhf arm64 powerpc ppc64el s390x +Section: kernel +Depends: + ${misc:Depends}, + linux-image-generic (= ${binary:Version}), + linux-headers-generic (= ${binary:Version}) +Description: Complete Generic Linux kernel and headers + This package will always depend on the latest complete generic Linux kernel + and headers. + +# } linux-meta + +# linux-system76 { + +Package: linux-system76 +Build-Profiles: +Architecture: amd64 +Section: kernel +Depends: + ${misc:Depends}, + linux-generic (= ${binary:Version}) +Description: System76 recommended Linux kernel + This package depends upon the recommended kernel for System76 users. + +# } linux-system76 + +Package: linux-libc-dev +Architecture: amd64 armhf arm64 ppc64el riscv64 s390x +Depends: ${misc:Depends} +Conflicts: linux-kernel-headers +Replaces: linux-kernel-headers +Provides: linux-kernel-headers, aufs-dev +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use linux-headers-* packages for that. + +Package: linux-doc +Build-Profiles: +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel specific documentation for version 5.15.6 + This package provides the various documents in the 5.15.6 kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/linux-doc/00-INDEX for a list of what is + contained in each file. + + +Package: linux-image-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64], ${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.6-76051506-generic +Recommends: kernelstub [amd64] | grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el], initramfs-tools | linux-initramfs-tool +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image-unsigned-5.15.6-76051506-generic +Suggests: fdutils, linux-doc | linux-source-5.15.6, linux-tools, linux-headers-5.15.6-76051506-generic, linux-modules-extra-5.15.6-76051506-generic +Description: Linux kernel image for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel image for version 5.15.6 on + 64 bit x86 SMP. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.6-76051506-generic | linux-image-unsigned-5.15.6-76051506-generic +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version 5.15.6 on 64 bit x86 SMP + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.6-76051506-generic | linux-image-unsigned-5.15.6-76051506-generic, crda | wireless-crda +Description: Linux kernel extra modules for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel extra modules for version 5.15.6 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-5.15.6-76051506, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 5.15.6 on 64 bit x86 SMP + This package provides kernel header files for version 5.15.6 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-5.15.6-76051506/debian.README.gz for details. + +Package: linux-image-5.15.6-76051506-generic-dbgsym +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 5.15.6 on 64 bit x86 SMP + This package provides the kernel debug image for version 5.15.6 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-5.15.6-76051506 +Description: Linux kernel version specific tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 5.15.6-76051506 on + 64 bit x86. + +Package: linux-cloud-tools-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-5.15.6-76051506 +Description: Linux kernel version specific cloud tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 5.15.6-76051506 on + 64 bit x86. + + +Package: linux-buildinfo-5.15.6-76051506-generic +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel buildinfo for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel buildinfo for version 5.15.6 on + 64 bit x86 SMP. + . + You likely do not want to install this package. + + +Package: linux-image-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.6-76051506-generic-64k +Recommends: grub-efi-arm64 [arm64] | flash-kernel [arm64], initramfs-tools | linux-initramfs-tool +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image-unsigned-5.15.6-76051506-generic-64k +Suggests: fdutils, linux-doc | linux-source-5.15.6, linux-tools, linux-headers-5.15.6-76051506-generic-64k, linux-modules-extra-5.15.6-76051506-generic-64k +Description: Linux kernel image for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel image for version 5.15.6 on + 64 bit x86 SMP. + . + Supports Generic 64K pages processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-64k meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.6-76051506-generic-64k | linux-image-unsigned-5.15.6-76051506-generic-64k +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version 5.15.6 on 64 bit x86 SMP + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic 64K pages processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-64k meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.6-76051506-generic-64k | linux-image-unsigned-5.15.6-76051506-generic-64k, crda | wireless-crda +Description: Linux kernel extra modules for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel extra modules for version 5.15.6 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic 64K pages processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-64k meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-5.15.6-76051506, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 5.15.6 on 64 bit x86 SMP + This package provides kernel header files for version 5.15.6 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-5.15.6-76051506/debian.README.gz for details. + +Package: linux-image-5.15.6-76051506-generic-64k-dbgsym +Build-Profiles: +Architecture: arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 5.15.6 on 64 bit x86 SMP + This package provides the kernel debug image for version 5.15.6 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-5.15.6-76051506 +Description: Linux kernel version specific tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 5.15.6-76051506 on + 64 bit x86. + +Package: linux-cloud-tools-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-5.15.6-76051506 +Description: Linux kernel version specific cloud tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 5.15.6-76051506 on + 64 bit x86. + + +Package: linux-buildinfo-5.15.6-76051506-generic-64k +Build-Profiles: +Architecture: arm64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel buildinfo for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel buildinfo for version 5.15.6 on + 64 bit x86 SMP. + . + You likely do not want to install this package. + + +Package: linux-image-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.6-76051506-generic-lpae +Recommends: flash-kernel [armhf] | grub-efi-arm [armhf], initramfs-tools | linux-initramfs-tool +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image-unsigned-5.15.6-76051506-generic-lpae +Suggests: fdutils, linux-doc | linux-source-5.15.6, linux-tools, linux-headers-5.15.6-76051506-generic-lpae, linux-modules-extra-5.15.6-76051506-generic-lpae +Description: Linux kernel image for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel image for version 5.15.6 on + 64 bit x86 SMP. + . + Supports Generic LPAE processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-lpae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.6-76051506-generic-lpae | linux-image-unsigned-5.15.6-76051506-generic-lpae +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version 5.15.6 on 64 bit x86 SMP + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic LPAE processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-lpae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.6-76051506-generic-lpae | linux-image-unsigned-5.15.6-76051506-generic-lpae, crda | wireless-crda +Description: Linux kernel extra modules for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel extra modules for version 5.15.6 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic LPAE processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-lpae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-5.15.6-76051506, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 5.15.6 on 64 bit x86 SMP + This package provides kernel header files for version 5.15.6 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-5.15.6-76051506/debian.README.gz for details. + +Package: linux-image-5.15.6-76051506-generic-lpae-dbgsym +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 5.15.6 on 64 bit x86 SMP + This package provides the kernel debug image for version 5.15.6 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-tools-5.15.6-76051506 +Description: Linux kernel version specific tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 5.15.6-76051506 on + 64 bit x86. + +Package: linux-cloud-tools-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-cloud-tools-5.15.6-76051506 +Description: Linux kernel version specific cloud tools for version 5.15.6-76051506 + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version 5.15.6-76051506 on + 64 bit x86. + + +Package: linux-buildinfo-5.15.6-76051506-generic-lpae +Build-Profiles: +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel buildinfo for version 5.15.6 on 64 bit x86 SMP + This package contains the Linux kernel buildinfo for version 5.15.6 on + 64 bit x86 SMP. + . + You likely do not want to install this package. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000000000..d1d04a6d669749 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/scripts/ubuntu-retpoline-extract-one b/scripts/ubuntu-retpoline-extract-one new file mode 100755 index 00000000000000..b203bfbf8df5c7 --- /dev/null +++ b/scripts/ubuntu-retpoline-extract-one @@ -0,0 +1,270 @@ +#!/bin/bash + +exec &2 + exit 1 + fi +} + +# Form an associative lookup for the section numbers in the ELF symbol table. +# Uses 8 character 0 expanded hexadecimal key for ease of consumption. +__sectionmap_init() +{ + readelf -W --headers "$1" | \ + awk ' + { sub("\\[", ""); sub("\\]", ""); } + ($1 ~ /^[0-9][0-9]*/) { printf("%08x %s %s %s\n", int($1), $2, $3, $4); } + ' | \ + { + while read section_num section_name section_type section_vma + do + echo "sectionmap_$section_num='$section_name'" + echo "sectionvma_$section_num='$section_vma'" + case "$section_type" in + REL|RELA) section_relocation="$section_type" ;; + esac + done + echo "section_relocation='$section_relocation'" + } +} +sectionmap_init() +{ + eval $(__sectionmap_init "$1") +} +sectionmap() +{ + eval RET="\$sectionmap_$1" + if [ "$RET" = '' ]; then + echo "sectionmap: $1: invalid section" 1>&2 + exit 1 + fi +} +sectionvma() +{ + eval RET="\$sectionvma_$1" + if [ "$RET" = '' ]; then + echo "sectionvma: $1: invalid section" 1>&2 + exit 1 + fi +} + +# Read and parse the hex-dump output. +hex="[0-9a-f]" +hex_8="$hex$hex$hex$hex$hex$hex$hex$hex" +hexspc="[0-9a-f ]" +hexspc_8="$hexspc$hexspc$hexspc$hexspc$hexspc$hexspc$hexspc$hexspc" + +raw32() +{ + readelf --hex-dump "$2" "$1" 2>/dev/null | + sed \ + -e '/^Hex/d' -e '/^$/d' -e '/^ *NOTE/d' \ + -e 's/ *[^ ][^ ]* *\('"$hex_8"'\) \('"$hexspc_8"'\) \('"$hexspc_8"'\) \('"$hexspc_8"'\) .*/\1 \2 \3 \4 /' \ + -e 's/\('"$hex$hex"'\)\('"$hex$hex"'\)\('"$hex$hex"'\)\('"$hex$hex"'\) /\4\3\2\1 /g' \ + -e 's/ $//g' -e 's/ /\n/g' +} +#-e 's/\([^ ][^ ][^ ][^ ][^ ][^ ][^ ][^ ]\) \([^ ][^ ][^ ][^ ][^ ][^ ][^ ][^ ]\) /\2\1 /g' \ + +rela() +{ + #file="$(basename "$1")" + file="$1" + + # Read relocation information for a 64bit binary. Each relocation entry + # is 3 long longs so we collect 6 quads here. Note that the dump is in + # listed in increasing byte order not withstanding the quad split. + # + # The record says to take the value of add and + # shove that into in the segment of the . + # + # Format: + # 64 bits + # 32 bits + # 32 bits + # 64 bits + raw32 "$1" ".rela$SECTION" | \ + { + a1=''; a2=''; a3=''; a4=''; a5='' + while read a6 + do + [ "$a1" = '' ] && { a1="$a6"; continue; } + [ "$a2" = '' ] && { a2="$a6"; continue; } + [ "$a3" = '' ] && { a3="$a6"; continue; } + [ "$a4" = '' ] && { a4="$a6"; continue; } + [ "$a5" = '' ] && { a5="$a6"; continue; } + + #echo ">$a1< >$a2< >$a3< >$a4< >$a5< >$a6<" 1>&2 + #echo "type<$a3> symbol<$a4> offset<$a2$a1> addr<$a6a5>" 1>&2 + + symbolmap "$a4"; section_num="$RET" + #echo "section_num<$section_num>" 1>&2 + + sectionmap "$section_num"; section="$RET" + sectionvma "$section_num"; vma="$RET" + #echo "section<$section> vma<$vma>" 1>&2 + + # Adjust the segment addressing by the segment offset. + printf -v addr "%u" "0x$a6$a5" + printf -v vma "%u" "0x$vma" + let offset="$addr + $vma" + printf -v offset "%x" "$offset" + + echo "$file-$section-$offset" + + a1=''; a2=''; a3=''; a4=''; a5='' + done + } | sed -e 's/-00*\([0-9a-f]\)/-\1/' +} + +# Form an associative lookup for the raw contents for an ELF section. +# Uses 8 character 0 expanded hexadecimal key for ease of consumption. +contentmap_init() +{ + raw32 "$1" "$2" >"$tmp" + let offset=0 + while read value + do + printf -v offset_hex "%08x" $offset + eval contentmap_$offset_hex=\'$value\' + + let offset="$offset + 4" + done <"$tmp" + rm -f "$tmp" +} +contentmap() +{ + eval RET="\$contentmap_$1" + if [ "$RET" = '' ]; then + echo "contentmap: $1: invalid offset" 1>&2 + exit 1 + fi +} + +rel() +{ + # Load up the current contents of the $SECTION segment + # as the offsets (see below) are recorded there and we will need + # those to calculate the actuall address. + contentmap_init "$1" "$SECTION" + + #file="$(basename "$1")" + file="$1" + + # Read relocation information for a 32bit binary. Each relocation entry + # is 3 longs so we collect 3 quads here. Note that the dump is in + # listed in increasing byte order not withstanding the quad split. + # + # The record says to take the value of and add that to the + # existing contents of in the segment of the . + # + # Format: + # 32 bits + # 24 bits + # 8 bits + raw32 "$1" ".rel$SECTION" | \ + { + a1='' + while read a2 + do + [ "$a1" = '' ] && { a1="$a2"; continue; } + + #echo ">$a1< >$a2<" + contentmap "$a1"; offset="$RET" + symbolmap "00${a2%??}"; section_num="$RET" + + sectionmap "$section_num"; section="$RET" + sectionvma "$section_num"; vma="$RET" + #echo ">$a1< >$a2< >$offset< >$section<" + + echo "$file-$section-$offset" + + a1='' + done + } | sed -e 's/-00*\([0-9a-f]\)/-\1/' +} + +tmp=$(mktemp --tmpdir "retpoline-extract-XXXXXX") + +disassemble() +{ + local object="$1" + local src="$2" + local options="$3" + local selector="$4" + + objdump $options --disassemble --no-show-raw-insn "$object" | \ + awk -F' ' ' + BEGIN { file="'"$object"'"; src="'"$src"'"; } + /Disassembly of section/ { segment=$4; sub(":", "", segment); } + /^[0-9a-f][0-9a-f]* <.*>:/ { tag=$0; sub(".*<", "", tag); sub(">.*", "", tag); } + $0 ~ /(call|jmp)q? *\*0x[0-9a-f]*\(%rip\)/ { + next + } + $0 ~ /(call|jmp)q? *\*.*%/ { + sub(":", "", $1); + if ('"$selector"') { + offset=$1 + $1=tag + print(file "-" segment "-" offset " " src " " segment " " $0); + } + } + ' +} + +# Accumulate potentially vunerable indirect call/jmp sequences. We do this +# by examining the raw disassembly for affected forms, recording the location +# of each. +case "$bit16" in +'') disassemble "$object" "$src" '' 'segment != ".init.text"' ;; +*) disassemble "$object" "$src" '--disassembler-options=i8086' 'segment != ".init.text" && segment != ".text32" && segment != ".text64"' + disassemble "$object" "$src" '--disassembler-options=i386' 'segment == ".text32"' + disassemble "$object" "$src" '--disassembler-options=x86-64' 'segment == ".text64"' + ;; +esac | sort -k 1b,1 >"$object.ur-detected" +[ ! -s "$object.ur-detected" ] && rm -f "$object.ur-detected" + +# Load up the symbol table and section mappings. +symbolmap_init "$object" +sectionmap_init "$object" + +# Accumulate annotated safe indirect call/jmp sequences. We do this by examining +# the $SECTION sections (and their associated relocation information), +# each entry represents the address of an instruction which has been marked +# as ok. +case "$section_relocation" in +REL) rel "$object" ;; +RELA) rela "$object" ;; +esac | sort -k 1b,1 >"$object.ur-safe" +[ ! -s "$object.ur-safe" ] && rm -f "$object.ur-safe" + +# We will perform the below join on the summarised and sorted fragments +# formed above. This is performed in retpoline-check. +#join -v 1 -j 1 "$tmp.extracted" "$tmp.safe" | sed -s 's/[^ ]* *//' + +rm -f "$tmp"